diff --git a/.flake8 b/.flake8 index b8d6ca33b5..c53ad8835c 100644 --- a/.flake8 +++ b/.flake8 @@ -1,5 +1,5 @@ [flake8] -min_python_version = 3.8 +min_python_version = 3.9 # Incompatible with black see https://github.com/ambv/black/issues/315 ignore = diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index d343b50a5c..11a4b0d8d8 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,6 +1,12 @@ * @Pycord-Development/maintainers -/tests/ @Pycord-Development/maintain-tests -/discord/ext/testing/ @Pycord-Development/maintain-tests -/discord/ext/bridge/ @Pycord-Development/maintain-ext-bridge -/.github/ @Pycord-Development/project-leads +/tests/ @Pycord-Development/maintain-tests @Pycord-Development/maintainers +/discord/ext/testing/ @Pycord-Development/maintain-tests @Pycord-Development/maintainers +/discord/ext/bridge/ @Pycord-Development/maintain-ext-bridge @Pycord-Development/maintainers +/.github/ @Pycord-Development/maintainers @Lulalaby +/docs/locales/ @Pycord-Development/maintain-translations +/docs/build/locales/ @Pycord-Development/maintain-translations +/.github/workflows/docs-localization-download.yml @Pycord-Development/maintain-translations +/.github/workflows/docs-localization-upload.yml @Pycord-Development/maintain-translations +/crowdin.yml @Pycord-Development/maintain-translations +/requirements/_locale.txt @Pycord-Development/maintain-translations diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index ac8bf3c65e..061ec492ab 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,6 +1,6 @@ name: Bug Report description: Report broken or incorrect behaviour -labels: unconfirmed bug +labels: ["unconfirmed bug"] body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 67572c9bea..5409e28b3f 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,6 +1,6 @@ name: Feature Request description: Suggest a feature for this library -labels: feature request +labels: ["feature request"] body: - type: input attributes: diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a5b317a336..d26063e675 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,16 +2,30 @@ version: 2 updates: - package-ecosystem: "pip" directory: "/" + groups: + minor-version-bumps: + update-types: ["minor"] + patch-version-bumps: + update-types: ["patch"] + major-version-bumps: + update-types: ["major"] schedule: - interval: "daily" + interval: "weekly" commit-message: prefix: "chore" prefix-development: "chore" include: "scope" - package-ecosystem: "github-actions" directory: "/" + groups: + minor-version-bumps: + update-types: ["minor"] + patch-version-bumps: + update-types: ["patch"] + major-version-bumps: + update-types: ["major"] schedule: - interval: "daily" + interval: "weekly" commit-message: prefix: "ci" include: "scope" diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml deleted file mode 100644 index 8462f34514..0000000000 --- a/.github/workflows/check.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: Checks -on: [pull_request, push] - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -jobs: - codespell: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: "3.12" - cache: "pip" - cache-dependency-path: "requirements/dev.txt" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements/dev.txt - - run: - codespell --ignore-words-list="groupt,nd,ot,ro,falsy,BU" \ - --exclude-file=".github/workflows/codespell.yml" - bandit: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: "3.12" - cache: "pip" - cache-dependency-path: "requirements/dev.txt" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements/dev.txt - - run: bandit --recursive --skip B101,B104,B105,B110,B307,B311,B404,B603,B607 . diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml deleted file mode 100644 index 4fbb2b5b8a..0000000000 --- a/.github/workflows/codeql-analysis.yml +++ /dev/null @@ -1,73 +0,0 @@ -# For most projects, this workflow file will not need changing; you simply need -# to commit it to your repository. -# -# You may wish to alter this file to override the set of languages analyzed, -# or to provide custom queries or build logic. -# -# ******** NOTE ******** -# We have attempted to detect the languages in your repository. Please check -# the `language` matrix defined below to confirm you have the correct set of -# supported CodeQL languages. -# -name: "CodeQL" - -on: - push: null - pull_request: null - schedule: - - cron: "26 6 * * 6" - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -jobs: - analyze: - # if: github.event.pull_request.user.type != 'Bot' && !contains(github.event.pull_request.labels.*.name, 'skip-ci') - name: Analyze - runs-on: ubuntu-latest - permissions: - actions: read - contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: ["python"] - # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] - # Learn more: - # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v3 - with: - languages: ${{ matrix.language }} - # If you wish to specify custom queries, you can do so here or in a config file. - # By default, queries listed here will override any specified in a config file. - # Prefix the list here with "+" to use these queries and those in the config file. - # queries: ./path/to/local/query, your-org/your-repo/queries@main - - # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). - # If this step fails, then you should remove it and run the build manually (see below) - - name: Autobuild - uses: github/codeql-action/autobuild@v3 - - # ℹ️ Command-line programs to run using the OS shell. - # 📚 https://git.io/JvXDl - - # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines - # and modify them (or add more) to build your code if your project - # uses a compiled language - - #- run: | - # make bootstrap - # make release - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000000..ef7d88e37e --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,37 @@ +name: "CodeQL" + +on: + push: + branches: [master] + pull_request: + workflow_dispatch: + schedule: + - cron: "0 0 * * 0" + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +jobs: + analyze: + name: "Analyze" + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + strategy: + fail-fast: false + matrix: + language: ["python"] + steps: + - name: "Checkout repository" + uses: actions/checkout@v4 + - name: "Initialize CodeQL" + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + - name: "Autobuild" + uses: github/codeql-action/autobuild@v3 + - name: "Perform CodeQL Analysis" + uses: github/codeql-action/analyze@v3 diff --git a/.github/workflows/docs-checks.yml b/.github/workflows/docs-checks.yml new file mode 100644 index 0000000000..6f8d9ad61a --- /dev/null +++ b/.github/workflows/docs-checks.yml @@ -0,0 +1,54 @@ +name: "Documentation Checks" + +on: + push: + paths: + - "discord/**" + - "docs/**" + - "requirements/**" + - "*.toml" + - "*.py" + branches: [master] + pull_request: + paths: + - "discord/**" + - "docs/**" + - "requirements/" + - "*.toml" + - "*.py" + workflow_dispatch: + schedule: + - cron: "0 0 * * *" + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +permissions: write-all + +jobs: + docs: + runs-on: ubuntu-latest + steps: + - name: "Checkout Repository" + uses: actions/checkout@v4 + - name: "Setup Python" + uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: "pip" + cache-dependency-path: "requirements/docs.txt" + check-latest: true + - name: Install dependencies + run: | + python -m pip install -U pip + pip install ".[docs]" + - name: "Check Links" + if: ${{ github.event_name == 'schedule' }} + run: | + cd docs + make linkcheck + - name: "Compile to html" + run: | + cd docs + make -e SPHINXOPTS="-D language='en'" html diff --git a/.github/workflows/docs-localization-download.yml b/.github/workflows/docs-localization-download.yml new file mode 100644 index 0000000000..cc62511ed0 --- /dev/null +++ b/.github/workflows/docs-localization-download.yml @@ -0,0 +1,133 @@ +name: "Multilingual Docs Download" + +on: + workflow_dispatch: + +permissions: write-all + +jobs: + download: + name: "Download localizations from Crowdin" + runs-on: ubuntu-latest + outputs: + pr_ref: ${{ steps.convert_outputs.outputs.pr_ref }} + pr_id: ${{ steps.convert_outputs.outputs.pr_id }} + steps: + - name: "Checkout Repository" + uses: actions/checkout@v4 + with: + fetch-tags: true + - 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 ja -l de -l ja -l fr -l it -l en -l hi -l ko -l pt_BR -l es -l zh_CN -l ru + working-directory: ./docs + - name: "Crowdin" + id: 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: "docs: Update localizations from Crowdin" + pull_request_body: "Crowdin download was triggered due to completely translated file or project. Starting sync. CC @Lulalaby" + pull_request_base_branch_name: "master" + pull_request_reviewers: "Lulalaby" + config: "crowdin.yml" + base_path: "." + commit_message: "docs: Update localizations from Crowdin" + env: + GITHUB_TOKEN: ${{ secrets.CI_TOKEN }} + CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_API_TOKEN }} + - name: "Convert Outputs" + id: convert_outputs + run: | + PR_REF="l10n_master" + PR_ID="${{ steps.crowdin.outputs.pull_request_number }}" + echo "pr_ref=$(echo -n "$PR_REF" | base64)" >> $GITHUB_OUTPUT + echo "pr_id=$(echo -n "$PR_ID" | base64)" >> $GITHUB_OUTPUT + + pr: + name: "PR operations" + needs: [download] + runs-on: ubuntu-latest + steps: + - name: "Checkout Repository" + uses: actions/checkout@v4 + - name: "Refresh Pull" + run: | + git fetch --all + git reset --hard origin/master + git pull + - name: "Convert Outputs" + id: convert_outputs + run: | + PR_REF=$(echo -n "${{ needs.download.outputs.pr_ref }}" | base64 --decode) + PR_ID=$(echo -n "${{ needs.download.outputs.pr_id }}" | base64 --decode) + echo "pr_ref=$PR_REF" >> $GITHUB_OUTPUT + echo "pr_id=$PR_ID" >> $GITHUB_OUTPUT + #- name: Invoke checks workflow + #uses: benc-uk/workflow-dispatch@v1.2.4 + #with: + #workflow: check.yml + #ref: ${{ steps.convert_outputs.outputs.pr_ref }} + #- name: Invoke codeql workflow + #uses: benc-uk/workflow-dispatch@v1.2.4 + #with: + #workflow: codeql-analysis.yml + #ref: ${{ steps.convert_outputs.outputs.pr_ref }} + #- name: Invoke lint workflow + #uses: benc-uk/workflow-dispatch@v1.2.4 + #with: + #workflow: lint.yml + #ref: ${{ steps.convert_outputs.outputs.pr_ref }} + #- name: Invoke pr workflow + #uses: benc-uk/workflow-dispatch@v1.2.4 + #with: + #workflow: pr.yml + #ref: ${{ steps.convert_outputs.outputs.pr_ref }} + #- name: Invoke test workflow + #uses: benc-uk/workflow-dispatch@v1.2.4 + #with: + #workflow: test.yml + #ref: ${{ steps.convert_outputs.outputs.pr_ref }} + #- name: Invoke todo workflow + #uses: benc-uk/workflow-dispatch@v1.2.4 + #with: + #workflow: todo.yml + #ref: ${{ steps.convert_outputs.outputs.pr_ref }} + #- name: Invoke version updates workflow + #uses: benc-uk/workflow-dispatch@v1.2.4 + #with: + #workflow: version-updates.yml + #ref: ${{ steps.convert_outputs.outputs.pr_ref }} + - name: "Auto Approve" + run: gh pr review --approve -b "auto-approval for localization sync :3" "$PR_ID" + env: + PR_ID: ${{ steps.convert_outputs.outputs.pr_id }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: "Enable Auto Merge" + if: ${{ always() }} + run: gh pr merge --auto --squash $PR_ID + env: + PR_ID: ${{ steps.convert_outputs.outputs.pr_id }} + GITHUB_TOKEN: ${{ secrets.CI_TOKEN }} diff --git a/.github/workflows/docs-localization-upload.yml b/.github/workflows/docs-localization-upload.yml new file mode 100644 index 0000000000..9bf2d5317a --- /dev/null +++ b/.github/workflows/docs-localization-upload.yml @@ -0,0 +1,54 @@ +name: "Multilingual Docs Upload" + +on: + push: + paths: + - "discord/**" + - "docs/**" + branches: [master] + workflow_dispatch: + schedule: + - cron: "0 0 * * 1" + +permissions: write-all + +jobs: + upload: + name: "Upload localization base to Crowdin" + runs-on: ubuntu-latest + if: ${{ contains(github.event.head_commit.message, '!crowdin upload') || github.event_name == 'workflow_dispatch' }} + 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 ja -l de -l ja -l fr -l it -l en -l hi -l ko -l pt_BR -l es -l zh_CN -l ru + 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.CI_TOKEN }} + CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_API_TOKEN }} diff --git a/.github/workflows/lib-checks.yml b/.github/workflows/lib-checks.yml new file mode 100644 index 0000000000..6c4a4941bb --- /dev/null +++ b/.github/workflows/lib-checks.yml @@ -0,0 +1,158 @@ +name: "Library Checks" + +on: + push: + paths: + - "discord/**" + - "requirements/**" + - "*.toml" + - "*.py" + - ".*" + branches: [master] + pull_request: + paths: + - "discord/**" + - "requirements/**" + - "*.toml" + - "*.py" + - ".*" + workflow_dispatch: + schedule: + - cron: "0 0 * * *" + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +permissions: write-all + +jobs: + codespell: + if: ${{ github.event_name != 'schedule' }} + runs-on: ubuntu-latest + steps: + - name: "Checkout Repository" + uses: actions/checkout@v4 + - name: "Setup Python" + uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: "pip" + cache-dependency-path: "requirements/dev.txt" + - name: "Install dependencies" + run: | + python -m pip install --upgrade pip + pip install -r requirements/dev.txt + - name: "Run codespell" + run: + codespell --ignore-words-list="groupt,nd,ot,ro,falsy,BU" \ + --exclude-file=".github/workflows/codespell.yml" + bandit: + if: ${{ github.event_name != 'schedule' }} + runs-on: ubuntu-latest + steps: + - name: "Checkout Repository" + uses: actions/checkout@v4 + - name: "Setup Python" + uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: "pip" + cache-dependency-path: "requirements/dev.txt" + - name: "Install dependencies" + run: | + python -m pip install --upgrade pip + pip install -r requirements/dev.txt + - name: "Run bandit" + run: bandit --recursive --skip B101,B104,B105,B110,B307,B311,B404,B603,B607 . + pylint: + if: ${{ github.event_name != 'schedule' }} + runs-on: ubuntu-latest + steps: + - name: "Checkout Repository" + uses: actions/checkout@v4 + - name: "Setup Python" + uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: "pip" + cache-dependency-path: "requirements/dev.txt" + - name: "Install dependencies" + run: | + python -m pip install --upgrade pip + pip install -r requirements/dev.txt + - name: "Setup cache" + id: cache-pylint + uses: actions/cache@v4 + with: + path: .pylint.d + key: pylint + - name: "Run pylint" + run: pylint discord/ --exit-zero + mypy: + if: ${{ github.event_name != 'schedule' }} + runs-on: ubuntu-latest + steps: + - name: "Checkout Repository" + uses: actions/checkout@v4 + - name: "Setup Python" + uses: actions/setup-python@v5 + with: + python-version: "3.12" + cache: "pip" + cache-dependency-path: "requirements/dev.txt" + - name: "Install dependencies" + run: | + python -m pip install --upgrade pip + pip install -r requirements/dev.txt + - name: "Setup cache" + id: cache-mypy + uses: actions/cache@v4 + with: + path: .mypy_cache + key: mypy + - name: "Make mypy cache directory" + id: cache-dir-mypy + run: mkdir -p -v .mypy_cache + - name: "Run mypy" + run: mypy --non-interactive discord/ + pytest: + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + python-version: ["3.9", "3.10", "3.11", "3.12"] + exclude: + - { python-version: "3.9", os: "macos-latest" } + include: + - { python-version: "3.9", os: "macos-13" } + runs-on: ${{ matrix.os }} + env: + OS: ${{ matrix.os }} + PYTHON: ${{ matrix.python-version }} + steps: + - name: "Checkout Repository" + uses: actions/checkout@v4 + - name: "Setup Python" + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + cache: "pip" + cache-dependency-path: "requirements/dev.txt" + check-latest: true + - name: "Install dependencies" + run: | + python -m pip install --upgrade pip + pip install flake8 + pip install -r requirements/dev.txt + - name: "Setup cache" + id: cache-pytest + uses: actions/cache@v4 + with: + path: .pytest_cache + key: ${{ matrix.os }}-${{ matrix.python-version }}-pytest + - name: "Lint with flake8" + run: | + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=120 --statistics diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index d7238f4c3c..0000000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,53 +0,0 @@ -name: Type Check and Lint -on: [push, pull_request] - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -jobs: - pylint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: "3.12" - cache: "pip" - cache-dependency-path: "requirements/dev.txt" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements/dev.txt - - name: Setup cache - id: cache-pylint - uses: actions/cache@v4 - with: - path: .pylint.d - key: pylint - - name: Analyse code with pylint - run: | - pylint discord/ --exit-zero - mypy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: "3.12" - cache: "pip" - cache-dependency-path: "requirements/dev.txt" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements/dev.txt - - name: Setup cache - id: cache-mypy - uses: actions/cache@v4 - with: - path: .mypy_cache - key: mypy - - name: Make mypy cache directory - run: mkdir -p -v .mypy_cache - - name: Run type checks with Mypy - run: mypy --non-interactive discord/ diff --git a/.github/workflows/pr-auto-approve.yml b/.github/workflows/pr-auto-approve.yml new file mode 100644 index 0000000000..2337c1dadb --- /dev/null +++ b/.github/workflows/pr-auto-approve.yml @@ -0,0 +1,30 @@ +name: "Auto Approve" + +on: [pull_request] + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +permissions: write-all + +jobs: + auto-approve: + runs-on: ubuntu-latest + if: + ${{ github.actor == 'dependabot[bot]' || github.actor == 'crowdin-bot' || + github.actor == 'Crowdin Bot' || github.actor_id == 106019021 || github.actor_id + == 58779643 }} + continue-on-error: true + steps: + - name: "Auto Approve" + run: gh pr review --approve "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + - name: "Enable Auto Merge" + if: ${{ always() }} + run: gh pr merge --auto --squash "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr-checks.yml similarity index 53% rename from .github/workflows/pr.yml rename to .github/workflows/pr-checks.yml index 19a1206409..8448acc094 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr-checks.yml @@ -1,6 +1,7 @@ -name: "Lint PR" +name: "Pull Request Checks" on: + workflow_dispatch: pull_request_target: types: [opened, synchronize, reopened, edited] @@ -8,18 +9,22 @@ concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true +permissions: write-all + jobs: - check_dependencies: + pr-dependencies: runs-on: ubuntu-latest - name: Check Dependencies + name: "Check PR Dependencies" steps: - - uses: gregsdennis/dependencies-action@main + - name: PR Dependency Check + uses: gregsdennis/dependencies-action@v1.4.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - check_title: - name: Check Title + semantic-title: + name: "Check Semantic Title" runs-on: ubuntu-latest steps: - - uses: amannn/action-semantic-pull-request@v5 + - name: "Check Semantic Pull Request" + uses: amannn/action-semantic-pull-request@v5.5.3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 9c500580ee..0000000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,80 +0,0 @@ -name: Unit Tests - -on: - push: - pull_request: - schedule: - - cron: "0 0 * * *" - -concurrency: - group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} - cancel-in-progress: true - -jobs: - pytest: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] - # Python 3.8/3.9 are on macos-13 but not macos-latest (macos-14-arm64) - # https://github.com/actions/setup-python/issues/696#issuecomment-1637587760 - exclude: - - { python-version: "3.8", os: "macos-latest" } - - { python-version: "3.9", os: "macos-latest" } - include: - - { python-version: "3.8", os: "macos-13" } - - { python-version: "3.9", os: "macos-13" } - - env: - OS: ${{ matrix.os }} - PYTHON: ${{ matrix.python-version }} - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - cache: "pip" - cache-dependency-path: "requirements/dev.txt" - check-latest: true - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install flake8 - pip install -r requirements/dev.txt - - name: Setup cache - id: cache-pytest - uses: actions/cache@v4 - with: - path: .pytest_cache - key: ${{ matrix.os }}-${{ matrix.python-version }}-pytest - - name: Lint with flake8 - run: | - # stop the build if there are Python syntax errors or undefined names - flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings. - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=120 --statistics - docs: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: "3.8" - cache: "pip" - cache-dependency-path: "requirements/docs.txt" - check-latest: true - - name: Install dependencies - run: | - python -m pip install -U pip - pip install ".[docs]" - - name: Check Links - if: github.event_name == 'schedule' - run: | - cd docs - make linkcheck - - name: Compile to html - run: | - cd docs - make html diff --git a/.github/workflows/todo-checks.yml b/.github/workflows/todo-checks.yml new file mode 100644 index 0000000000..ec52cf510c --- /dev/null +++ b/.github/workflows/todo-checks.yml @@ -0,0 +1,34 @@ +name: "TODO Checks" + +on: + push: + paths: + - "discord/**" + - "docs/**" + - "examples/**" + - "tests/**" + branches: [master] + workflow_dispatch: + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true + +permissions: write-all + +jobs: + todo-check: + runs-on: ubuntu-latest + steps: + - name: "Checkout Repository" + uses: actions/checkout@v4 + - name: "Track TODO Action" + uses: ribtoks/tdg-github-action@v0.4.11-beta + with: + TOKEN: ${{ secrets.GITHUB_TOKEN }} + REPO: ${{ github.repository }} + SHA: ${{ github.sha }} + REF: ${{ github.ref }} + COMMENT_ON_ISSUES: true + EXCLUDE_PATTERN: "\\.(doctree|doctrees|pickle)$" + ASSIGN_FROM_BLAME: true diff --git a/.github/workflows/todo.yml b/.github/workflows/todo.yml deleted file mode 100644 index 08271e51e8..0000000000 --- a/.github/workflows/todo.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: Check TODO -on: [push, pull_request] -jobs: - todo: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Run tdg-github-action - uses: ribtoks/tdg-github-action@v0.4.11-beta - with: - TOKEN: ${{ secrets.GITHUB_TOKEN }} - REPO: ${{ github.repository }} - SHA: ${{ github.sha }} - REF: ${{ github.ref }} - COMMENT_ON_ISSUES: true diff --git a/.github/workflows/version-updates.yml b/.github/workflows/version-updates.yml deleted file mode 100644 index f98f1f34ed..0000000000 --- a/.github/workflows/version-updates.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Version Update Auto Merge -on: pull_request - -permissions: - contents: write - pull-requests: write - -jobs: - auto-merge: - runs-on: ubuntu-latest - if: ${{ github.actor == 'dependabot[bot]' }} - steps: - - run: gh pr review --approve "$PR_URL" - env: - PR_URL: ${{github.event.pull_request.html_url}} - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - - run: gh pr merge --auto --squash "$PR_URL" - env: - PR_URL: ${{github.event.pull_request.html_url}} - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} 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..3aa0288d23 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|yml|yaml)$ - id: end-of-file-fixer + exclude: \.(po|pot|yml|yaml)$ - 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|yml|yaml)$ - repo: https://github.com/PyCQA/isort rev: 5.13.2 hooks: - id: isort + exclude: \.(po|pot|yml|yaml)$ - repo: https://github.com/psf/black - rev: 24.4.2 + rev: 24.8.0 hooks: - id: black args: [--safe, --quiet] + exclude: \.(po|pot|yml|yaml)$ - 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|yml|yaml)$ - repo: https://github.com/DanielNoord/pydocstringformatter rev: v0.7.3 hooks: - id: pydocstringformatter + exclude: \.(po|pot|yml|yaml)$ args: [ --style=numpydoc, diff --git a/.readthedocs.yml b/.readthedocs.yml index 59842ef8bb..7113eb48e6 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -4,7 +4,7 @@ formats: [] build: os: ubuntu-22.04 tools: - python: "3.8" + python: "3.12" sphinx: configuration: docs/conf.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 2bd37dd602..2e71e51acc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,11 +10,20 @@ possible (see our [Version Guarantees] for more info). These changes are available on the `master` branch, but have not yet been released. +⚠️ **This Version Removes Support For Python 3.8** ⚠️ + ### Changed - Renamed `cover` property of `ScheduledEvent` and `cover` argument of `ScheduledEvent.edit` to `image`. ([#2496](https://github.com/Pycord-Development/pycord/pull/2496)) +- ⚠️ **This Version Removes Support For Python 3.8** ⚠️ + ([#2521](https://github.com/Pycord-Development/pycord/pull/2521)) + +### Added + +- Added `Guild.fetch_role` method. + ([#2528](https://github.com/Pycord-Development/pycord/pull/2528)) ## [2.6.0] - 2024-07-09 diff --git a/README.rst b/README.rst index ae74c857e0..5e82acb518 100644 --- a/README.rst +++ b/README.rst @@ -16,8 +16,11 @@ 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://translations.pycord.dev/documentation/?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. + Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python. Key Features ------------ @@ -30,7 +33,7 @@ Key Features Installing ---------- -**Python 3.8 or higher is required** +**Python 3.9 or higher is required** To install the library without full voice support, run the following command: @@ -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..d9142bc3db --- /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: + - 1 + +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 08ad9048b6..bb52ce1b05 100644 --- a/discord/client.py +++ b/discord/client.py @@ -266,6 +266,9 @@ def __init__( VoiceClient.warn_nacl = False _log.warning("PyNaCl is not installed, voice will NOT be supported") + # Used to hard-reference tasks so they don't get garbage collected (discarded with done_callbacks) + self._tasks = set() + async def __aenter__(self) -> Client: loop = asyncio.get_running_loop() self.loop = loop @@ -453,8 +456,12 @@ def _schedule_event( **kwargs: Any, ) -> asyncio.Task: wrapped = self._run_event(coro, event_name, *args, **kwargs) - # Schedules the task - return asyncio.create_task(wrapped, name=f"pycord: {event_name}") + + # Schedule task and store in set to avoid task garbage collection + task = asyncio.create_task(wrapped, name=f"pycord: {event_name}") + self._tasks.add(task) + task.add_done_callback(self._tasks.discard) + return task def dispatch(self, event: str, *args: Any, **kwargs: Any) -> None: _log.debug("Dispatching event %s", event) @@ -1064,7 +1071,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: :: @@ -1088,7 +1095,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/commands/options.py b/discord/commands/options.py index 9c56e3aeee..721a03ffe3 100644 --- a/discord/commands/options.py +++ b/discord/commands/options.py @@ -424,7 +424,7 @@ def option(name, input_type=None, **kwargs): Attributes ---------- parameter_name: :class:`str` - The name of the target parameter this option is mapped to. + The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name. """ diff --git a/discord/ext/bridge/core.py b/discord/ext/bridge/core.py index 384e9ab37a..103f345693 100644 --- a/discord/ext/bridge/core.py +++ b/discord/ext/bridge/core.py @@ -660,7 +660,7 @@ def bridge_option(name, input_type=None, **kwargs): Attributes ---------- parameter_name: :class:`str` - The name of the target parameter this option is mapped to. + The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name. """ 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/guild.py b/discord/guild.py index eda67a2e13..52d2acd783 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -2815,6 +2815,30 @@ async def fetch_roles(self) -> list[Role]: data = await self._state.http.get_roles(self.id) return [Role(guild=self, state=self._state, data=d) for d in data] + async def fetch_role(self, role_id: int) -> Role: + """|coro| + + Retrieves a :class:`Role` that the guild has. + + .. note:: + + This method is an API call. For general usage, consider using :attr:`get_role` instead. + + .. versionadded:: 2.7 + + Returns + ------- + :class:`Role` + The role in the guild with the specified ID. + + Raises + ------ + HTTPException + Retrieving the role failed. + """ + data = await self._state.http.get_role(self.id, role_id) + return Role(guild=self, state=self._state, data=data) + async def _fetch_role(self, role_id: int) -> Role: """|coro| diff --git a/discord/http.py b/discord/http.py index 112afda281..04bee531e1 100644 --- a/discord/http.py +++ b/discord/http.py @@ -2117,6 +2117,16 @@ def delete_invite( def get_roles(self, guild_id: Snowflake) -> Response[list[role.Role]]: return self.request(Route("GET", "/guilds/{guild_id}/roles", guild_id=guild_id)) + def get_role(self, guild_id: Snowflake, role_id: Snowflake) -> Response[role.Role]: + return self.request( + Route( + "GET", + "/guilds/{guild_id}/roles/{role_id}", + guild_id=guild_id, + role_id=role_id, + ) + ) + def edit_role( self, guild_id: Snowflake, 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/discord/ui/input_text.py b/discord/ui/input_text.py index 115f9708af..dd7438be21 100644 --- a/discord/ui/input_text.py +++ b/discord/ui/input_text.py @@ -36,7 +36,7 @@ class InputText: The maximum number of characters that can be entered. Must be between 1 and 4000. required: Optional[:class:`bool`] - Whether the input text field is required or not. Defaults to `True`. + Whether the input text field is required or not. Defaults to ``True``. value: Optional[:class:`str`] Pre-fills the input text field with this value. Must be 4000 characters or fewer. @@ -151,7 +151,7 @@ def placeholder(self, value: str | None): @property def min_length(self) -> int | None: - """The minimum number of characters that must be entered. Defaults to `0`.""" + """The minimum number of characters that must be entered. Defaults to 0.""" return self._underlying.min_length @min_length.setter @@ -177,7 +177,7 @@ def max_length(self, value: int | None): @property def required(self) -> bool | None: - """Whether the input text field is required or not. Defaults to `True`.""" + """Whether the input text field is required or not. Defaults to ``True``.""" return self._underlying.required @required.setter 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/api/enums.rst b/docs/api/enums.rst index bd319f86eb..c734e2fd1e 100644 --- a/docs/api/enums.rst +++ b/docs/api/enums.rst @@ -418,13 +418,13 @@ of :class:`enum.Enum`. Represents a slash command interaction. .. attribute:: component - Represents a component based interaction, i.e. using the Discord Bot UI Kit. + Represents a component-based interaction, i.e. using the Discord Bot UI Kit. .. attribute:: auto_complete Represents a autocomplete interaction for slash commands. .. attribute:: modal_submit - Represents a modal based interaction. + Represents a modal-based interaction. .. class:: InteractionResponseType diff --git a/docs/build/locales/.doctrees/api/abcs.doctree b/docs/build/locales/.doctrees/api/abcs.doctree new file mode 100644 index 0000000000..4bd66ea63e 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..ad217db584 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..a79a9e8f98 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..57206fe304 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..ed889a25ca 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..2cc7e81218 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..0ff6e2a955 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..9a898c569a 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..40b779a378 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..924bdcd6c8 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..b7806e4a3e 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..93b129f593 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..c511829beb 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..b1c712b38a 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..6c4ea620e3 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..4df3c01bc9 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..9f5c6c9b8a 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..f1bb9dc9e7 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..cd7358c7c8 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..1772812037 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..c6c9307df0 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..93d5916176 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..e9fe878e59 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..0271d6926e 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..8e6556a7c5 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..2f153f4bab 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..1e1555113c 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..61405cd271 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..345cf5f36b 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..e47a54816e 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..a1ee59714b 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..993a5c9c6a 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..e1a046da4b 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..c6ed61f017 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..f26a49c5e7 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..c388906763 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..a7f24d26e2 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..812be27a73 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..47c8a1c64d 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..8a627192b8 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..ed10e03c88 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..5fca3afd53 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..063196b285 --- /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-13 10:18+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..7f4c9e6f9b --- /dev/null +++ b/docs/build/locales/api/application_commands.pot @@ -0,0 +1,1903 @@ +# 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-13 10:18+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 +#: a0e267ca8cbb4cdc92ee405b3a8b5906 +#: a0e267ca8cbb4cdc92ee405b3a8b5906 +#: 235625d33ce645a7b043c3677e586ff9 +#: a0e267ca8cbb4cdc92ee405b3a8b5906 +#: a0e267ca8cbb4cdc92ee405b3a8b5906 +#: a0e267ca8cbb4cdc92ee405b3a8b5906 +#: a0e267ca8cbb4cdc92ee405b3a8b5906 +#: a0e267ca8cbb4cdc92ee405b3a8b5906 +#: a0e267ca8cbb4cdc92ee405b3a8b5906 +#: a0e267ca8cbb4cdc92ee405b3a8b5906 +#: a0e267ca8cbb4cdc92ee405b3a8b5906 +#: a0e267ca8cbb4cdc92ee405b3a8b5906 +#: a0e267ca8cbb4cdc92ee405b3a8b5906 +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 +#: 96f7f9fedd3e4084838b9340c26d3781 +#: 96f7f9fedd3e4084838b9340c26d3781 +#: 96f7f9fedd3e4084838b9340c26d3781 +#: 96f7f9fedd3e4084838b9340c26d3781 +#: 96f7f9fedd3e4084838b9340c26d3781 +#: 96f7f9fedd3e4084838b9340c26d3781 +#: 96f7f9fedd3e4084838b9340c26d3781 +#: 96f7f9fedd3e4084838b9340c26d3781 +#: 96f7f9fedd3e4084838b9340c26d3781 +#: 96f7f9fedd3e4084838b9340c26d3781 +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 +#: 51571b876dcd4446b30ec38ef632db2c +#: 51571b876dcd4446b30ec38ef632db2c +#: 51571b876dcd4446b30ec38ef632db2c +#: 51571b876dcd4446b30ec38ef632db2c +#: 51571b876dcd4446b30ec38ef632db2c +#: 51571b876dcd4446b30ec38ef632db2c +#: 51571b876dcd4446b30ec38ef632db2c +#: 51571b876dcd4446b30ec38ef632db2c +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 +#: da2632a415b247ba849b48310b8c9939 +#: da2632a415b247ba849b48310b8c9939 +#: da2632a415b247ba849b48310b8c9939 +#: da2632a415b247ba849b48310b8c9939 +#: da2632a415b247ba849b48310b8c9939 +#: da2632a415b247ba849b48310b8c9939 +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 +#: 1cd0f7372eb94a76a4c4eb766a807d99 +#: 1cd0f7372eb94a76a4c4eb766a807d99 +#: 1cd0f7372eb94a76a4c4eb766a807d99 +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 +#: bb14163d838f4df5be0e9d0ed62b84d9 +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 +#: 3d0e2ed16525455d96c8cb1edadb5bc9 +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 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +#: f422915c4028467f9272f041e90ac356 +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 +#: b2ced8f32ef84169b7d0feed3cfdffb8 +#: b2ced8f32ef84169b7d0feed3cfdffb8 +#: b2ced8f32ef84169b7d0feed3cfdffb8 +#: b2ced8f32ef84169b7d0feed3cfdffb8 +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 +#: eb1bd96acf84423f9aeaf5c3aef8d405 +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 +#: 7a48bea72ed14e6ca0b55c39805de1e2 +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 +#: 77e0016800534470945d60987fed7899 +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 +#: 2b5abad428324601971b5a7d306bdc79 +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 +#: fe40b49ec6f643979b0a4dc4f8f53c79 +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 +#: 6d50a38d0a17491a8badbba7e2e94860 +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 +#: 59b49969a86549fe97fef27fa01c037d +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 +#: 5fd417671e594f12bbdb4eebee581649 +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 +#: 5f2fbe31f5d74ba7a5419816d2ee36a0 +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 +#: b34d5a804a5b4cf6afadd914bfc11a59 +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 +#: d9d5c1770b794a5aa348922c71a848cd +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 +#: 67af798da00f47a391dffbdf1d1b782b +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 +#: 1942d1f115bd4ac0a990bf73d0a49126 +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 +#: 58f857b842d14e26b594f8771048b67f +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 +#: 8aeea10a4b16406bb4fabc8f5e266f29 +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 +#: 7897fe9f532240669b41fd64f8d327df +#: 7897fe9f532240669b41fd64f8d327df +#: 7897fe9f532240669b41fd64f8d327df +#: 7897fe9f532240669b41fd64f8d327df +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 +#: 6eb640cae00c453a89aab91f7b489f5b +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 +#: fca44b50de0b4821acb8f06f88efc30b +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 +#: 31d87139a8b540bc9e1c77b8b1829f09 +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 +#: be0630b9503f4c4fa51e83cc51cb43de +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.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 +#: f5cc870407294386a12e5e92859cf1ba +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 +#: e5ac68f43e54493b955c34ffa4045d84 +msgid "The installation contexts where this command is available. Unapplicable for guild commands." +msgstr "" + +#: ../../../discord/commands/core.py:docstring of discord.commands.core.MessageCommand:85 +#: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:85 +#: f07350db291c4c9eb79da175bcf9ccd0 +#: f07350db291c4c9eb79da175bcf9ccd0 +msgid "The interaction contexts where this command is available. 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 +#: 08ccceedd6f14b3f8c7d1509b11157a9 +#: 08ccceedd6f14b3f8c7d1509b11157a9 +#: 08ccceedd6f14b3f8c7d1509b11157a9 +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 +#: 735d3b8688e648a5aaf59912c322ab40 +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 +#: 825a171e7cc64dd2a99a0905e70528dc +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 +#: 3c66cc9483d34081a22536fa12eccf5c +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 +#: d6f68d1b5a754d4faff41bef78e15ad3 +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 +#: 731cda54c14a44f4a88a9bc501f056d7 +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 +#: 68f22a8232be41a3b2b45d850414330f +#: 68f22a8232be41a3b2b45d850414330f +#: 68f22a8232be41a3b2b45d850414330f +#: 68f22a8232be41a3b2b45d850414330f +#: 68f22a8232be41a3b2b45d850414330f +#: 68f22a8232be41a3b2b45d850414330f +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 +#: d233902b55f7474383181ef505b0deb0 +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 +#: 4b936a2efdbe459c87055d540910dc3b +#: 4b936a2efdbe459c87055d540910dc3b +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 +#: a23bdff51b9347ed9b843ee572eca90a +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 +#: 4afdc5be01c04197bb07738ff36e4ef3 +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 +#: e5c93968e5e54442b2c01ffb864b3784 +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 +#: 249a00f69dd7404b8a18dd990aedf15e +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 +#: 88d5f696c2574d0fbd7638e815a9f7cd +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 +#: 2d273ae38e5f4004b94c01caa64f2f1a +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 +#: c95324c20b714dce8cea04b4cfa5b6eb +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 +#: 4e6235b751b24b81bd560956f1f7cb67 +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 +#: 551054b03c444d50a2a60ca32e8e9f16 +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 +#: 0a737ffed25c468a8fa88b66f105c037 +#: 0a737ffed25c468a8fa88b66f105c037 +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 +#: 9da3c6f904e749d2a70116da7b9f91b4 +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 +#: baf2da1b3eea467899a28632a9051c98 +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 +#: 6dda90c3ae154814a40ba59bed13deb3 +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..7c7b1c703b --- /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-13 10:18+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..976b813927 --- /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-13 10:18+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..70a40d0039 --- /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-13 10:18+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..c06642dcef --- /dev/null +++ b/docs/build/locales/api/clients.pot @@ -0,0 +1,3935 @@ +# 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-13 10:18+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 +#: fda9202ed81f4662b3410aefa9fee419 +#: fda9202ed81f4662b3410aefa9fee419 +#: fda9202ed81f4662b3410aefa9fee419 +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 +#: ba970c9790144df49b7b45acd8f64d8f +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 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: ab586c5a25de46ad95f31d7932fa193a +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: aa170a708a2748799b64e1d6e92be480 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: e0f6f617681043f796f22dae5afb1682 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +#: 7a83a9a6026f4952ac18057feeedb044 +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 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: ec487369222e4fca9c3158f3caec9ae7 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: 27ce0d1faae44f67b52ec5fe02ef48d2 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: 1964b28d4c46484697f52e43a3640e3d +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: 709dc58325c146ad8a210ad694c05c1d +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: aff4a87e8ab24e42a5821a9016ae8c94 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: 661ae464da8e493ebd3265ad9d14cc99 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +#: 606afb97d6624f858e67593ee96461ba +#: c776ad51021d4b88a50e1e87662bf4a5 +#: c776ad51021d4b88a50e1e87662bf4a5 +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 +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 5fe56a006d574708abe19ebbaf839261 +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 923b691c5eda4326a0fe4609ae128330 +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +#: 2666501d112943b8b6641e0ee36d76ed +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 +#: 2d6af0e10e374eb2848aaf6af07794ca +#: 2d6af0e10e374eb2848aaf6af07794ca +#: 2d6af0e10e374eb2848aaf6af07794ca +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 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: b09e7584c7924b8c878f3b38d8698fbe +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 61bdd2138a7145e49fcfbb06c5819cdc +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 944756aa81e34907af880c9ea3ddd943 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 080b97188f5a44679891cfb716d50114 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: a32d372fc9f34a179efb70f960db2fcd +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +#: 99d7d45c973e4cab836405c222bbdf74 +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 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 88c3ad85bb944f3da68503ca6321c03e +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +#: 1916ebc54d4d4a9f979821f8449a61a4 +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 +#: ae7d062cf9c948289a20102ae95031b7 +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 +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: d9eb2e4a9e234e37b248d23a246f8522 +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: 9023f922e3924c4dae0ada2a128df325 +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +#: a7ce19c3920f40ab91a7d270dfff2d0e +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 +#: 6114d56696924f85a50ec7eab18cea6d +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 +#: a5872f2048ac46379625289291357eca +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 +#: 54b695951125498384300fe6b62bdf48 +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 +#: 67affa321575466d843d881e79ff9660 +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 +#: 2e2b4b77bc7549c0a05965d9694ef840 +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 +#: 01fe01284ae748c8b1eddfddd1d73e21 +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 +#: e065be27c22342a28fae8bfee39dc5f6 +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 +#: c36b8e522ef8432ab9d32865a6f89cda +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 +#: a58e962af7324b1b9e2e450d359efb44 +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 +#: 1013a998dd0644bf8b8ed20ec4161d3f +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 +#: b8bf3f05b8b94e4fae6fc0fad6b15b09 +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 +#: d09eadf06e9343dd83a47871e2abc31f +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 +#: bed18856144c4cbe822ac5211c71b28a +#: bed18856144c4cbe822ac5211c71b28a +#: bed18856144c4cbe822ac5211c71b28a +#: bed18856144c4cbe822ac5211c71b28a +#: bed18856144c4cbe822ac5211c71b28a +#: bed18856144c4cbe822ac5211c71b28a +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 +#: f784f833af4f43caa6cf59467766ead4 +#: f784f833af4f43caa6cf59467766ead4 +#: f784f833af4f43caa6cf59467766ead4 +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 +#: 6a66fb7c4171403a94a25a3808826652 +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 +#: 0eae2453da7c4316a4e3c6d00c680cb1 +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 +#: af1413448fd64215ad8a510b736adb91 +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 +#: 888fcfea7fa34ba888f8c0857b965c37 +#: 888fcfea7fa34ba888f8c0857b965c37 +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 +#: 5004a72d009b4ad48da460e3f0226d5e +#: 5004a72d009b4ad48da460e3f0226d5e +msgid "This is equivalent to: ::" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_channels:11 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_channels:11 +#: 14df624bee0b4d23b1f9088155d3e882 +#: 14df624bee0b4d23b1f9088155d3e882 +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:15 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_channels:15 +#: 5eab19fe94124dbcab31f439d0973160 +#: 5eab19fe94124dbcab31f439d0973160 +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 +#: 1e23815e30ed4e7fba2bd525936c0e85 +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 +#: 71e5351f43c7453b898f2b71db1af20e +msgid ":class:`.Member` -- A member the client can see." +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 +#: c164f779fe0a43e6a2f6abf608af6f93 +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 +#: 3614dd7b6e5d41d1b0d77e9c10a3f598 +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 +#: 815d098582864c5aa45ebb68a53bc46b +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 +#: cf283a472c614b6a97c06ca4bc4a33f0 +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 +#: eddc2d6f8feb4541a1e35da5fb5fa865 +#: eddc2d6f8feb4541a1e35da5fb5fa865 +#: eddc2d6f8feb4541a1e35da5fb5fa865 +#: eddc2d6f8feb4541a1e35da5fb5fa865 +#: eddc2d6f8feb4541a1e35da5fb5fa865 +#: eddc2d6f8feb4541a1e35da5fb5fa865 +#: eddc2d6f8feb4541a1e35da5fb5fa865 +#: eddc2d6f8feb4541a1e35da5fb5fa865 +#: eddc2d6f8feb4541a1e35da5fb5fa865 +#: eddc2d6f8feb4541a1e35da5fb5fa865 +#: eddc2d6f8feb4541a1e35da5fb5fa865 +#: eddc2d6f8feb4541a1e35da5fb5fa865 +#: eddc2d6f8feb4541a1e35da5fb5fa865 +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 +#: d9a90139b5c84016a67669abf356d83b +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 +#: de8a5b88032c47fa9f2e41bfa71842c3 +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 +#: 9525ca2de02e4964817f1a037363a3a2 +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 +#: 9c674dcf871343f694a42135680a1736 +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 +#: 00d7fd8a5ae747b7a60a6c550b8c741d +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 +#: c69d0ea814a84230941d413794f573c9 +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 +#: e0ee40e0766047a2be7ce2f868ab810b +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 +#: 134847e462854ae78b1f4d67f66abf09 +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 +#: 181ecf7ccc494ba8b6465d66a0ef5483 +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 +#: 4844d10606e145829c103661a39a42a0 +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 +#: 876b35b70409440bbe9860921ed2bdde +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 +#: 909a4ebed88b418eb3fc8ad783de4fc2 +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 +#: ef34cecd55904074aadf36c69ae1a3fe +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 +#: 7a08fd22da7640b392c99f8c05c6c4e6 +#: 7a08fd22da7640b392c99f8c05c6c4e6 +#: 7a08fd22da7640b392c99f8c05c6c4e6 +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 +#: 759defbb355844809d78aa0b07143820 +#: 759defbb355844809d78aa0b07143820 +#: 759defbb355844809d78aa0b07143820 +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 +#: 044e87bce77b4fec8f6ad808a56bd064 +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 +#: f2ce805dc0414f5a9e5a8755ea1c9643 +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 +#: c8479fc87aa246648dbeeb0dc0bd2523 +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 +#: 56b0308cd9eb42b28481f6a554cd5570 +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 +#: dcf7536cc4744aa9b4c7648d2327410f +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 +#: daa543ad6df34e43a2d9864afb81d0d8 +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 +#: f33a04665ff84187a4db076f2d509d54 +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 +#: fce34a83deb34fb09d2fb065f7e9aabc +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 +#: 9e724f2a11ec44c4869443876f200c94 +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 +#: c742fb9939e244578e66f27785b9e0b3 +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 +#: 3d786cc212a44afea512d29b0e007d4e +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 +#: d433f0da2b6945b390f4785d5e45686d +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 +#: 2c039b3d063d4d5daad23166bc2998bc +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 +#: f10646f6188b45e79224058f73d2f2a8 +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 +#: c15a89f27028488cb7b2336b8063f854 +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 +#: a8df3300fa7947d1885ff98542d67aeb +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 +#: 6340a201b4ee40d08e8349272ea2eb4f +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 +#: ad521edf83024b639b0931097a70fbc6 +msgid "Returns a user with the given ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.group:1 +#: 3534240b400047cf99d43a0882749281 +#: 3534240b400047cf99d43a0882749281 +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 +#: 12eda575d2994bb9b8ec76bc781e2b9f +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 +#: 2f2a3e8f246c4f30b877af0e3e88001b +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 +#: 21faa16203234f99a69b91b463601bd2 +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 +#: 1195a817f20744f69117a573c7f4c5d1 +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 +#: 1044d7a76781488d8e388f935f5d4867 +#: 1044d7a76781488d8e388f935f5d4867 +#: 1044d7a76781488d8e388f935f5d4867 +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 +#: e491ff5681a44d58918b01dea27ff898 +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 +#: 1d19112534464592be462f4549362eed +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 +#: 62af1fa7dcf84492b242000ea4241503 +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 +#: c5ab6840e90349f19ce335c373c2303d +#: c5ab6840e90349f19ce335c373c2303d +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 +#: 421f8b497847440fbd6dbe4be0a01720 +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 +#: 2fd13f9b72724c3a93c62cbf7ce3e595 +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 +#: d98754a427e84ae682ce85cdb8557bec +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 +#: 4872f607b11d4176b8657dc8de35a45e +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 +#: 235222cbb8c44095937e8b67a59eba52 +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 +#: e1406c82b3ec42d7ba4f1a9a7f0bc9d8 +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 +#: 287d8e3cd45341309195aa3dd7ab8c94 +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 +#: 83832163d58347d7a6e6af84f4c8e4fb +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 +#: 85002126743f4f13988ae3b6842068e6 +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 +#: 67911d91ed4a43efbe1e31b46fc74e6d +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 +#: 049a0834b6b047f99314936f2f1163ba +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 +#: 37485eb978c94d0ab2f8e20f3c9d44f0 +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 +#: 441a4bc07886491dbe40a2d51a9d6027 +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 +#: e47b353c4c374b69a0516a6c01b5f5db +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 +#: b7bea11ed3954e4d8bb8ceba44c2c5a3 +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 +#: 57179a6f7b13404b8d698521898a6d9c +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 +#: 58a09ed6103242578e6f09b9c61c0f17 +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 +#: 0ddbaefb41734b77ad0d3ad0792c3d18 +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 +#: 7052b64d58da473a956cb108172efa05 +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 +#: c2acbbccabb944aeb2cfcdebcfaaa94c +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 +#: c9cd8785f1e7403e86e3a939de337f91 +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 +#: 8033302734aa4ce0a6cb372c445cdb12 +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 +#: 8faca78fa87f4d3bb12fb70fd01d35e3 +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 +#: 7a51594d4dce42bc92a656b664696dce +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 +#: f402b73bece24cc49036238c228a2cf6 +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 +#: 0ae89918698b491f89b9233a129a1897 +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 +#: 515f9c536b89476fba576f7ce5614414 +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 +#: 571249fef8cd45c2981975498a4e7851 +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 +#: 2106434fbe294fed9159326a73846c02 +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 +#: bf32743d60dc4a47b2809974b262f96b +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 +#: 5068dc186f7d4b5c98caaa8752b6b428 +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 +#: 904fe45f358146e683fec60eee80c2e5 +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 +#: 02034fb9cb9c44b7810a0d146353bf07 +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 +#: ab9038811b594d4ea2ea96f42440f117 +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 +#: b39bab7b652b4d4f98cf18b2b9db6484 +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 +#: 4a2351568c31486793eb53e153daa658 +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 +#: 6f4ba32dcd474a5bb21ddc0448b64cc8 +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 +#: f35e47ae72cb45fbbd43a5849db2f4ed +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 +#: 157edf86c4214bac9cc97778a341cb81 +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 +#: a88e758c5a764f1b9008d208a82a5baf +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 +#: 6d3be79316ad4aed8e4440853891714e +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 +#: b67ba7a02b43409aaa2626f955f79fd2 +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 +#: 9075a14b38ea45a6b0a11e551ef621f2 +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 +#: 6487197b421c48bba8784b3fa1ff4ac9 +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 +#: 0b048b61ad98439db8940a4d2d8d3701 +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 +#: 689487a846eb47e093ba8e1d91517750 +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 +#: 0cef96bb40b84218860e67a2b01b3370 +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 +#: ee2bd0327d864fb28565cad59831a983 +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 +#: cd139f56acdc485595a3eb1113c5e0ff +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 +#: 41e9fd8669df481ba87c83815fb92f01 +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 +#: b5ccde8f18c74e6e8939f7d64c2241f9 +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 +#: ea5b0123a5434897907777cc1da3e32b +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 +#: fe1e49bf56f0410eb7b43d04fc145ddd +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 +#: fbf53c322b9b4a2190fb5211f9148bfe +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 +#: 3f2b62ede5b54e9cadcfbb3edf7e3f81 +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 +#: 374ebcd380c14eaebda917973c9c27a6 +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.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..ec8ea4cc10 --- /dev/null +++ b/docs/build/locales/api/cogs.pot @@ -0,0 +1,355 @@ +# 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-13 10:18+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 +#: a548999373424e22a1eef592535cb0e9 +#: a548999373424e22a1eef592535cb0e9 +#: a548999373424e22a1eef592535cb0e9 +#: a548999373424e22a1eef592535cb0e9 +#: a548999373424e22a1eef592535cb0e9 +#: a548999373424e22a1eef592535cb0e9 +#: a548999373424e22a1eef592535cb0e9 +#: a548999373424e22a1eef592535cb0e9 +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.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 +#: bd530b05086c4698967d87151c86bf4d +#: bd530b05086c4698967d87151c86bf4d +#: bd530b05086c4698967d87151c86bf4d +#: bd530b05086c4698967d87151c86bf4d +#: bd530b05086c4698967d87151c86bf4d +#: bd530b05086c4698967d87151c86bf4d +#: bd530b05086c4698967d87151c86bf4d +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 +#: bae3ff62cd7046098fd26a064a87ab95 +#: bae3ff62cd7046098fd26a064a87ab95 +#: bae3ff62cd7046098fd26a064a87ab95 +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 +#: 74a72b4805f9400f99581374cdd6e25d +#: 74a72b4805f9400f99581374cdd6e25d +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 +#: 21d75be906eb43a4839ac7c2ac76eb49 +#: 21d75be906eb43a4839ac7c2ac76eb49 +#: 21d75be906eb43a4839ac7c2ac76eb49 +#: 21d75be906eb43a4839ac7c2ac76eb49 +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 +#: bc04772b95eb445880b68aa35b50195a +#: bc04772b95eb445880b68aa35b50195a +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 +#: 2e2fb136a8f54e59a37867e585a665fa +#: 2e2fb136a8f54e59a37867e585a665fa +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 +#: 89b6db804e56474fb08d5a060b7ed69d +#: 89b6db804e56474fb08d5a060b7ed69d +#: 89b6db804e56474fb08d5a060b7ed69d +msgid "type" +msgstr "" + +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:37 +#: ../../../discord/cog.py:docstring of discord.cog.CogMeta:45 +#: 459eaf51b3d74a869ea18e53f787fcea +#: 459eaf51b3d74a869ea18e53f787fcea +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..392bfcc42b --- /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-13 10:18+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..d2e5fc20fd --- /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-13 10:18+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/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..6111d5f708 --- /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-13 10:18+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..e36341bdf4 --- /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-13 10:18+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..e49d96cb36 --- /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-13 10:18+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/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..5bf47a50f1 --- /dev/null +++ b/docs/build/locales/api/models.pot @@ -0,0 +1,19613 @@ +# 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-13 10:18+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 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: 2ad70d3718a4499cb9197f85eb4abf87 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: 32729bb6214c4a0d9faddbd2797c356b +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: 9a1e6f7439c24f38a40e2ec918fd55a0 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: 8c746e49c2e643eda46543886844bdd0 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: 6dc5c2e21b9b469dacb81a1e43968511 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +#: b5873e6ce92f4f3ab50f63c347178ee1 +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 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: 9c5c89e0d0874a8691ae9c0e0face8be +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: 3744d240485643bfaaeedd4801535130 +#: f32707707ee74b6dbff49ed14a238389 +#: d90d732a2bb845569dedb27e471e7f93 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: 94da0913b5064103b4a4f1317d286d3e +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: 8bafa417e0a24d19bfcfdbf5ca4e1358 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: d59c249cca4e40d9b26dded2423e6c8a +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: 28a6e45ecb76421b97a31e146ad93502 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: 26610a2e71004eada14dc49724dd1382 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: aa1bdf38092843cf94b6334d56e761af +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: 0d5ce9ac536f48c3af3a64b83a094777 +#: f32707707ee74b6dbff49ed14a238389 +#: 079c4c874eb34aa28b2cea04d85364e1 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: 31d62f9c893e41399081d48e4866956f +#: f32707707ee74b6dbff49ed14a238389 +#: 18f9e3ed114d4d68973ef2d37672349e +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f900904408044c2c8359e71f54e614b0 +#: f32707707ee74b6dbff49ed14a238389 +#: 03760cb475ed45078357270d9b6c3b33 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: fc43e15d2f0b45ddb8f71cb25d370b0a +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: 2dff2df236b04c128a3de69f4dde566c +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +#: f32707707ee74b6dbff49ed14a238389 +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 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +#: d5f84379d77d42a0860bc6eab1204514 +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 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 2e2ac69c07864724996d15ad04f08e14 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: f66ddfebd98a4697bb828487d4a14e10 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8aa9e45ae0fe4b84b38aee62c912c235 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8343fcad75ca44efb89693f19ebe898f +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: ac28978c972f468e98bb5e4bf37dd28e +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 7d34f29ac67047a78da568e9efd49f1b +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 3c5b5f52348b43289904fa2dbb2419ab +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 79b32f14b5754c49b9a269a076411656 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 542167f6d3384e2a8ae24d73888b2ef4 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: ca546d5bd9894f37a369d569f89868c5 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +#: 8283e51b1c044e2fb9250dd199dcac71 +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 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 2d288ac0eca6428fa8068b8aeb74e498 +#: 3902ae0d9db246adb81666c177be7db2 +#: 1f953a100c764d178b276431e62b1992 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: dd7eff5537e64034b184274723af6237 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 446b6f350b954c8c8ca60e07388a4126 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 658633a44db7427a933b8fcc6b93326f +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 76b96bec186e4b33864bf75de01575e8 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: b3a7951b4ce7467b884d54b09e4d7ffc +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 8ee99948456b49e09dec4c13c8e74348 +#: 47de5658d9204fcd9828e2471198708a +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: ee39cb64ba8349c2bb405000597a9be7 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3589314f4d734e988d58db8fc3fec995 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: b8b585cf380b493987d48a0079963528 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: bb7e2df55f9946449cbc87ba99d8e00a +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +#: 3902ae0d9db246adb81666c177be7db2 +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_role: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 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: a7d1faaa3453418aa9971cf314037c1b +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 160d2bd81c0b42bdbab49cfa35cacd7c +#: 2aa6d567d1ec428a91a5b27e3a557493 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: e3d44c95286a4379abdb70ce1c62f695 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 1f0e792748e34d5f94de6b86e6e95609 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 871e2985ad244d5180e3968e7f08c87a +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 698b1cd3a9ed4599a6c56924f2c5e2f2 +#: 910794dd47a748b5b041934ea50a6337 +#: 131568ab740844ef85bf80dbb6a876a6 +#: 910794dd47a748b5b041934ea50a6337 +#: a31aba33f0f74e3482abbedb0bfb3c6b +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: c85efd72728d4227bb290ae439c27b81 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +#: 910794dd47a748b5b041934ea50a6337 +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 +#: 0a45793fa09947b5b76f788948db618b +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 +#: 61bde54de96944b9b82f92d99b94300f +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 +#: 5dda9975005547e4beb396e3191f0db8 +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 +#: 34973bc8542a42cd997c216b94cce104 +#: 34973bc8542a42cd997c216b94cce104 +#: 34973bc8542a42cd997c216b94cce104 +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 +#: 0926c1a57e1d42ca8306857809e2bbf9 +#: 0926c1a57e1d42ca8306857809e2bbf9 +#: 0926c1a57e1d42ca8306857809e2bbf9 +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 +#: 9cdae5cd0ee548be87ed7cba9ee65aff +#: 9cdae5cd0ee548be87ed7cba9ee65aff +#: 9cdae5cd0ee548be87ed7cba9ee65aff +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 +#: 53a10fbce32c4c78adf94540d77378d2 +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 +#: 7bc5cf8ede5a45639de67d42ca5aca08 +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 +#: 148b8fad8702458e82dda1d1d36058f9 +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 +#: 05679ca6d69e48cd90a4c771b4725c81 +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 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: 271a7d1b5dc64585a8287a2229b96d39 +#: 271a7d1b5dc64585a8287a2229b96d39 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +#: d69750ecda48449186ede1be30a7b7d1 +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 +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 4ca295d01b0b49c58f92e474e0ed1fc7 +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 38411a48b02d428999e9c0ecf39097ae +#: 65b623a6ad5942158f94d51716ea4f68 +#: 6f14d3ecd2f343f7bb7a86e1056f87e5 +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 89686148b0db4a0f9ea120462a7f62b3 +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: f23cf6ac9be042dbb7f0bbecb578259d +#: 977d255a45434383aa099d0cffd1a8f2 +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 39b4f683f3684b8cb1b34e32eea8ac7c +#: e107404ea2c94a5aaa45cbcc63c9130c +#: 1f9651133d7a430f8a24b9a645ada2ce +#: bb72445df2564b78b5412dd3dab80028 +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 986840e8778c40bf91c6791d5f91ac9d +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 24e335c8ccce4904aa18f16df1c37ff0 +#: ae93341707b647f7ac229290218e5ebd +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 78e960b05b6f460ca4e148d0b59efded +#: c9fabdb2315b487abfb348c35ed9aeb0 +#: 0543f30da3e5475c9bd5eb027436314e +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: f32c17be6b6e42cbbcc690990b864b62 +#: 440f85a803964393857b04290988e1dc +#: 2e73b3fbe6374c54a25603c479a50d5b +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 00d1af14de6d4547ac426408cfb3330e +#: c036b2d5a57e4a3d89c4ac92c77e08bf +#: 8011afda364b4ad79ae0165dd6b60d40 +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: d5c8ea805b224e0e93e2aaefc85d438b +#: 6f42d562ae7947699c87a27afae00ca2 +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 6d42276c22a945b28406f8e09ad56b0f +#: 88b635d0d40c4f37a563725261f1c623 +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +#: 1f9651133d7a430f8a24b9a645ada2ce +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 +#: 8dd5694c8ba7416c96e14265ef887819 +#: c0f57792bcc94fe6a59671a5e2fb01b3 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 285640291e424cc5beb45388126d03a9 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: c0f57792bcc94fe6a59671a5e2fb01b3 +#: c0f57792bcc94fe6a59671a5e2fb01b3 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: c0f57792bcc94fe6a59671a5e2fb01b3 +#: 8dd5694c8ba7416c96e14265ef887819 +#: c0f57792bcc94fe6a59671a5e2fb01b3 +#: 8dd5694c8ba7416c96e14265ef887819 +#: c0f57792bcc94fe6a59671a5e2fb01b3 +#: c0f57792bcc94fe6a59671a5e2fb01b3 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +#: 8dd5694c8ba7416c96e14265ef887819 +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 +#: 0dd0b8ab160843ff8798020ac2f60772 +#: 0dd0b8ab160843ff8798020ac2f60772 +#: 0dd0b8ab160843ff8798020ac2f60772 +#: 0dd0b8ab160843ff8798020ac2f60772 +#: 0dd0b8ab160843ff8798020ac2f60772 +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 +#: a55a872065654b93971d8c6ecb32ddcf +#: a55a872065654b93971d8c6ecb32ddcf +#: a55a872065654b93971d8c6ecb32ddcf +#: a55a872065654b93971d8c6ecb32ddcf +#: a55a872065654b93971d8c6ecb32ddcf +#: a55a872065654b93971d8c6ecb32ddcf +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 +#: 2e7906ec63d841a4878301bd49409146 +#: 2e7906ec63d841a4878301bd49409146 +#: 2e7906ec63d841a4878301bd49409146 +#: 2e7906ec63d841a4878301bd49409146 +#: 2e7906ec63d841a4878301bd49409146 +#: 2e7906ec63d841a4878301bd49409146 +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 +#: f3e0f8c526b743fdb038573a85012d71 +#: f3e0f8c526b743fdb038573a85012d71 +#: f3e0f8c526b743fdb038573a85012d71 +#: f3e0f8c526b743fdb038573a85012d71 +#: f3e0f8c526b743fdb038573a85012d71 +#: f3e0f8c526b743fdb038573a85012d71 +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 +#: 25b6541bc41841ccbf8b1649f85a1f9d +#: 25b6541bc41841ccbf8b1649f85a1f9d +#: 25b6541bc41841ccbf8b1649f85a1f9d +#: 25b6541bc41841ccbf8b1649f85a1f9d +#: 25b6541bc41841ccbf8b1649f85a1f9d +#: 25b6541bc41841ccbf8b1649f85a1f9d +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 +#: fdbcb5604d10415c86135acc54b67c0c +#: fdbcb5604d10415c86135acc54b67c0c +#: fdbcb5604d10415c86135acc54b67c0c +#: fdbcb5604d10415c86135acc54b67c0c +#: fdbcb5604d10415c86135acc54b67c0c +#: fdbcb5604d10415c86135acc54b67c0c +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 +#: e18b1b81cff840a99be2aaac63a6f05e +#: e18b1b81cff840a99be2aaac63a6f05e +#: e18b1b81cff840a99be2aaac63a6f05e +#: e18b1b81cff840a99be2aaac63a6f05e +#: e18b1b81cff840a99be2aaac63a6f05e +#: e18b1b81cff840a99be2aaac63a6f05e +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 +#: e0e1920c1d0342bab09dc720dc295044 +#: e0e1920c1d0342bab09dc720dc295044 +#: e0e1920c1d0342bab09dc720dc295044 +#: e0e1920c1d0342bab09dc720dc295044 +#: e0e1920c1d0342bab09dc720dc295044 +#: e0e1920c1d0342bab09dc720dc295044 +#: e0e1920c1d0342bab09dc720dc295044 +#: e0e1920c1d0342bab09dc720dc295044 +#: e0e1920c1d0342bab09dc720dc295044 +#: e0e1920c1d0342bab09dc720dc295044 +#: e0e1920c1d0342bab09dc720dc295044 +#: e0e1920c1d0342bab09dc720dc295044 +#: e0e1920c1d0342bab09dc720dc295044 +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 +#: 6f8b6217053e47479783af39a2aff1f6 +#: 6f8b6217053e47479783af39a2aff1f6 +#: 6f8b6217053e47479783af39a2aff1f6 +#: 6f8b6217053e47479783af39a2aff1f6 +#: 6f8b6217053e47479783af39a2aff1f6 +#: 6f8b6217053e47479783af39a2aff1f6 +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 +#: 013831d1e99644938c6dd757927e6079 +#: 013831d1e99644938c6dd757927e6079 +#: 013831d1e99644938c6dd757927e6079 +#: 013831d1e99644938c6dd757927e6079 +#: 013831d1e99644938c6dd757927e6079 +#: 013831d1e99644938c6dd757927e6079 +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 +#: 72cd9cf4d7734dba8283d21a3e6a2960 +#: 72cd9cf4d7734dba8283d21a3e6a2960 +#: 72cd9cf4d7734dba8283d21a3e6a2960 +#: 72cd9cf4d7734dba8283d21a3e6a2960 +#: 72cd9cf4d7734dba8283d21a3e6a2960 +#: 72cd9cf4d7734dba8283d21a3e6a2960 +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 +#: 34a4d40c3a264dc996c94056170a151d +#: 34a4d40c3a264dc996c94056170a151d +#: 34a4d40c3a264dc996c94056170a151d +#: 34a4d40c3a264dc996c94056170a151d +#: 34a4d40c3a264dc996c94056170a151d +#: 34a4d40c3a264dc996c94056170a151d +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 +#: d846b20a22f54d4bbaf1433acb092177 +#: d846b20a22f54d4bbaf1433acb092177 +#: d846b20a22f54d4bbaf1433acb092177 +#: d846b20a22f54d4bbaf1433acb092177 +#: d846b20a22f54d4bbaf1433acb092177 +#: d846b20a22f54d4bbaf1433acb092177 +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 +#: cedec68e61774ccd965a29d9620bb85b +#: cedec68e61774ccd965a29d9620bb85b +#: cedec68e61774ccd965a29d9620bb85b +#: cedec68e61774ccd965a29d9620bb85b +#: cedec68e61774ccd965a29d9620bb85b +#: cedec68e61774ccd965a29d9620bb85b +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 +#: b18b7dbe82754883974c8fb7505d4715 +#: b18b7dbe82754883974c8fb7505d4715 +#: b18b7dbe82754883974c8fb7505d4715 +#: b18b7dbe82754883974c8fb7505d4715 +#: b18b7dbe82754883974c8fb7505d4715 +#: b18b7dbe82754883974c8fb7505d4715 +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 +#: ad29354d07e7456d9ac05382a07917a3 +#: ad29354d07e7456d9ac05382a07917a3 +#: ad29354d07e7456d9ac05382a07917a3 +#: ad29354d07e7456d9ac05382a07917a3 +#: ad29354d07e7456d9ac05382a07917a3 +#: ad29354d07e7456d9ac05382a07917a3 +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 +#: ddf1d1beab504636ab1745bb2a90b04f +#: ddf1d1beab504636ab1745bb2a90b04f +#: ddf1d1beab504636ab1745bb2a90b04f +#: ddf1d1beab504636ab1745bb2a90b04f +#: ddf1d1beab504636ab1745bb2a90b04f +#: ddf1d1beab504636ab1745bb2a90b04f +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 +#: 5755a7ad7f454b7cac7a362f9721ba8b +#: 5755a7ad7f454b7cac7a362f9721ba8b +#: 5755a7ad7f454b7cac7a362f9721ba8b +#: 5755a7ad7f454b7cac7a362f9721ba8b +#: 5755a7ad7f454b7cac7a362f9721ba8b +#: 5755a7ad7f454b7cac7a362f9721ba8b +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 +#: 5fdbbfc37c264fbdac887a1d265d4d0d +#: 5fdbbfc37c264fbdac887a1d265d4d0d +#: 5fdbbfc37c264fbdac887a1d265d4d0d +#: 5fdbbfc37c264fbdac887a1d265d4d0d +#: 5fdbbfc37c264fbdac887a1d265d4d0d +#: 5fdbbfc37c264fbdac887a1d265d4d0d +#: 5fdbbfc37c264fbdac887a1d265d4d0d +#: 5fdbbfc37c264fbdac887a1d265d4d0d +#: 5fdbbfc37c264fbdac887a1d265d4d0d +#: 5fdbbfc37c264fbdac887a1d265d4d0d +#: 5fdbbfc37c264fbdac887a1d265d4d0d +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 +#: 1362e64547b04b19aa2381aeab3e61a4 +#: 1362e64547b04b19aa2381aeab3e61a4 +#: 1362e64547b04b19aa2381aeab3e61a4 +#: 1362e64547b04b19aa2381aeab3e61a4 +#: 1362e64547b04b19aa2381aeab3e61a4 +#: 1362e64547b04b19aa2381aeab3e61a4 +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 +#: 08bc04473e1c44da9381c5b7866fb287 +#: 08bc04473e1c44da9381c5b7866fb287 +#: 08bc04473e1c44da9381c5b7866fb287 +#: 08bc04473e1c44da9381c5b7866fb287 +#: 08bc04473e1c44da9381c5b7866fb287 +#: 08bc04473e1c44da9381c5b7866fb287 +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 +#: f77840d45e1943359bf5aa4d7cbafd58 +#: f77840d45e1943359bf5aa4d7cbafd58 +#: f77840d45e1943359bf5aa4d7cbafd58 +#: f77840d45e1943359bf5aa4d7cbafd58 +#: f77840d45e1943359bf5aa4d7cbafd58 +#: f77840d45e1943359bf5aa4d7cbafd58 +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 +#: ed437085f8744eecbf24ae254b3e43af +#: ed437085f8744eecbf24ae254b3e43af +#: ed437085f8744eecbf24ae254b3e43af +#: ed437085f8744eecbf24ae254b3e43af +#: ed437085f8744eecbf24ae254b3e43af +#: ed437085f8744eecbf24ae254b3e43af +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 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +#: bc6b48a124404bd1892f9edada1a6b58 +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 +#: edbc71da771842d3aea9af593db2f036 +#: edbc71da771842d3aea9af593db2f036 +#: edbc71da771842d3aea9af593db2f036 +#: edbc71da771842d3aea9af593db2f036 +#: edbc71da771842d3aea9af593db2f036 +#: edbc71da771842d3aea9af593db2f036 +#: edbc71da771842d3aea9af593db2f036 +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 +#: d3f3a3b667f54db189761cb1f7a9880c +#: d3f3a3b667f54db189761cb1f7a9880c +#: d3f3a3b667f54db189761cb1f7a9880c +#: d3f3a3b667f54db189761cb1f7a9880c +#: d3f3a3b667f54db189761cb1f7a9880c +#: d3f3a3b667f54db189761cb1f7a9880c +#: d3f3a3b667f54db189761cb1f7a9880c +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 +#: bd8f03a7a627458e993b3312ffe4d046 +#: bd8f03a7a627458e993b3312ffe4d046 +#: bd8f03a7a627458e993b3312ffe4d046 +#: bd8f03a7a627458e993b3312ffe4d046 +#: bd8f03a7a627458e993b3312ffe4d046 +#: bd8f03a7a627458e993b3312ffe4d046 +#: bd8f03a7a627458e993b3312ffe4d046 +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 +#: dc000ded9dd346c096a38a8956dfdc6a +#: dc000ded9dd346c096a38a8956dfdc6a +#: dc000ded9dd346c096a38a8956dfdc6a +#: dc000ded9dd346c096a38a8956dfdc6a +#: dc000ded9dd346c096a38a8956dfdc6a +#: dc000ded9dd346c096a38a8956dfdc6a +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 +#: 08b2f9ec55a44bf8a9f0ca1e3fd0c560 +#: 08b2f9ec55a44bf8a9f0ca1e3fd0c560 +#: 08b2f9ec55a44bf8a9f0ca1e3fd0c560 +#: 08b2f9ec55a44bf8a9f0ca1e3fd0c560 +#: 08b2f9ec55a44bf8a9f0ca1e3fd0c560 +#: 08b2f9ec55a44bf8a9f0ca1e3fd0c560 +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 +#: e283aaccd4144d6e95f83432985ac90c +#: e283aaccd4144d6e95f83432985ac90c +#: e283aaccd4144d6e95f83432985ac90c +#: e283aaccd4144d6e95f83432985ac90c +#: e283aaccd4144d6e95f83432985ac90c +#: e283aaccd4144d6e95f83432985ac90c +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 +#: 1b6e9a8893454a5db4741c00c3bc8031 +#: 1b6e9a8893454a5db4741c00c3bc8031 +#: 1b6e9a8893454a5db4741c00c3bc8031 +#: 1b6e9a8893454a5db4741c00c3bc8031 +#: 1b6e9a8893454a5db4741c00c3bc8031 +#: 1b6e9a8893454a5db4741c00c3bc8031 +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 +#: 5f422bc795f7480fa14af883be52f572 +#: 5f422bc795f7480fa14af883be52f572 +#: 5f422bc795f7480fa14af883be52f572 +#: 5f422bc795f7480fa14af883be52f572 +#: 5f422bc795f7480fa14af883be52f572 +#: 5f422bc795f7480fa14af883be52f572 +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 +#: ed69aa77f03b4955bbe3d5671c0e8088 +#: ed69aa77f03b4955bbe3d5671c0e8088 +#: ed69aa77f03b4955bbe3d5671c0e8088 +#: ed69aa77f03b4955bbe3d5671c0e8088 +#: ed69aa77f03b4955bbe3d5671c0e8088 +#: ed69aa77f03b4955bbe3d5671c0e8088 +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 +#: bb15699719b54825b8d487d07891ab85 +#: bb15699719b54825b8d487d07891ab85 +#: bb15699719b54825b8d487d07891ab85 +#: bb15699719b54825b8d487d07891ab85 +#: bb15699719b54825b8d487d07891ab85 +#: bb15699719b54825b8d487d07891ab85 +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 +#: 724dcfafc4784a6e9190169d5b4ff6fc +#: 724dcfafc4784a6e9190169d5b4ff6fc +#: 724dcfafc4784a6e9190169d5b4ff6fc +#: 724dcfafc4784a6e9190169d5b4ff6fc +#: 724dcfafc4784a6e9190169d5b4ff6fc +#: 724dcfafc4784a6e9190169d5b4ff6fc +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 +#: 12384d2719ae45da97444ff82dc4f2d6 +#: 12384d2719ae45da97444ff82dc4f2d6 +#: 12384d2719ae45da97444ff82dc4f2d6 +#: 12384d2719ae45da97444ff82dc4f2d6 +#: 12384d2719ae45da97444ff82dc4f2d6 +#: 12384d2719ae45da97444ff82dc4f2d6 +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 +#: 67ccce517035472ea66a0b51302a98cb +#: 67ccce517035472ea66a0b51302a98cb +#: 67ccce517035472ea66a0b51302a98cb +#: 67ccce517035472ea66a0b51302a98cb +#: 67ccce517035472ea66a0b51302a98cb +#: 67ccce517035472ea66a0b51302a98cb +#: 67ccce517035472ea66a0b51302a98cb +#: 67ccce517035472ea66a0b51302a98cb +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 +#: 9fce481c33fe4f38ae23dab3e4faf570 +#: 9fce481c33fe4f38ae23dab3e4faf570 +#: 9fce481c33fe4f38ae23dab3e4faf570 +#: 9fce481c33fe4f38ae23dab3e4faf570 +#: 9fce481c33fe4f38ae23dab3e4faf570 +#: 9fce481c33fe4f38ae23dab3e4faf570 +#: 9fce481c33fe4f38ae23dab3e4faf570 +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 +#: 270d2242a6ec45928378eb596ae18294 +#: 270d2242a6ec45928378eb596ae18294 +#: 270d2242a6ec45928378eb596ae18294 +#: 270d2242a6ec45928378eb596ae18294 +#: 270d2242a6ec45928378eb596ae18294 +#: 270d2242a6ec45928378eb596ae18294 +#: 270d2242a6ec45928378eb596ae18294 +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 +#: e16b27219fda4529824444922c14f332 +#: e16b27219fda4529824444922c14f332 +#: e16b27219fda4529824444922c14f332 +#: e16b27219fda4529824444922c14f332 +#: e16b27219fda4529824444922c14f332 +#: e16b27219fda4529824444922c14f332 +#: e16b27219fda4529824444922c14f332 +#: e16b27219fda4529824444922c14f332 +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 +#: 3a17a09c33884706a4449b3f40d6cdd6 +#: 3a17a09c33884706a4449b3f40d6cdd6 +#: 3a17a09c33884706a4449b3f40d6cdd6 +#: 3a17a09c33884706a4449b3f40d6cdd6 +#: 3a17a09c33884706a4449b3f40d6cdd6 +#: 3a17a09c33884706a4449b3f40d6cdd6 +#: 3a17a09c33884706a4449b3f40d6cdd6 +#: 3a17a09c33884706a4449b3f40d6cdd6 +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 +#: 88a081070fd044f1962c54e034ac21e6 +#: 88a081070fd044f1962c54e034ac21e6 +#: 88a081070fd044f1962c54e034ac21e6 +#: 88a081070fd044f1962c54e034ac21e6 +#: 88a081070fd044f1962c54e034ac21e6 +#: 88a081070fd044f1962c54e034ac21e6 +#: 88a081070fd044f1962c54e034ac21e6 +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 +#: 926fcea09e55478190f384b73306866a +#: 926fcea09e55478190f384b73306866a +#: 926fcea09e55478190f384b73306866a +#: 926fcea09e55478190f384b73306866a +#: 926fcea09e55478190f384b73306866a +#: 926fcea09e55478190f384b73306866a +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 +#: 33fb702867244946add0e91965debb6d +#: 33fb702867244946add0e91965debb6d +#: 33fb702867244946add0e91965debb6d +#: 33fb702867244946add0e91965debb6d +#: 33fb702867244946add0e91965debb6d +#: 33fb702867244946add0e91965debb6d +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 +#: a316e7fd64e540af960514409d0e2f77 +#: a316e7fd64e540af960514409d0e2f77 +#: a316e7fd64e540af960514409d0e2f77 +#: a316e7fd64e540af960514409d0e2f77 +#: a316e7fd64e540af960514409d0e2f77 +#: a316e7fd64e540af960514409d0e2f77 +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 +#: 1d43d14e53314fd98fb480f4c227d8c2 +#: 1d43d14e53314fd98fb480f4c227d8c2 +#: 1d43d14e53314fd98fb480f4c227d8c2 +#: 1d43d14e53314fd98fb480f4c227d8c2 +#: 1d43d14e53314fd98fb480f4c227d8c2 +#: 1d43d14e53314fd98fb480f4c227d8c2 +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 +#: d8b69682b7294cac8417eaa4662fb1fb +#: d8b69682b7294cac8417eaa4662fb1fb +#: d8b69682b7294cac8417eaa4662fb1fb +#: d8b69682b7294cac8417eaa4662fb1fb +#: d8b69682b7294cac8417eaa4662fb1fb +#: d8b69682b7294cac8417eaa4662fb1fb +#: d8b69682b7294cac8417eaa4662fb1fb +#: d8b69682b7294cac8417eaa4662fb1fb +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 +#: 4637e02b33794bb39d8bbf9635ea207f +#: 4637e02b33794bb39d8bbf9635ea207f +#: 4637e02b33794bb39d8bbf9635ea207f +#: 4637e02b33794bb39d8bbf9635ea207f +#: 4637e02b33794bb39d8bbf9635ea207f +#: 4637e02b33794bb39d8bbf9635ea207f +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 +#: 0da0de0227bd4c8b9819086cd5d59cf0 +#: 0da0de0227bd4c8b9819086cd5d59cf0 +#: 0da0de0227bd4c8b9819086cd5d59cf0 +#: 0da0de0227bd4c8b9819086cd5d59cf0 +#: 0da0de0227bd4c8b9819086cd5d59cf0 +#: 0da0de0227bd4c8b9819086cd5d59cf0 +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 +#: a203a5bbf16240e6b0b6018534cfb6cb +#: a203a5bbf16240e6b0b6018534cfb6cb +#: a203a5bbf16240e6b0b6018534cfb6cb +#: a203a5bbf16240e6b0b6018534cfb6cb +#: a203a5bbf16240e6b0b6018534cfb6cb +#: a203a5bbf16240e6b0b6018534cfb6cb +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 +#: f3fbe7c7e9574f468a6adc37e05b90a0 +#: f3fbe7c7e9574f468a6adc37e05b90a0 +#: f3fbe7c7e9574f468a6adc37e05b90a0 +#: f3fbe7c7e9574f468a6adc37e05b90a0 +#: f3fbe7c7e9574f468a6adc37e05b90a0 +#: f3fbe7c7e9574f468a6adc37e05b90a0 +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 +#: cf005a229e6e4514a0a1788d1edc0f3e +#: cf005a229e6e4514a0a1788d1edc0f3e +#: cf005a229e6e4514a0a1788d1edc0f3e +#: cf005a229e6e4514a0a1788d1edc0f3e +#: cf005a229e6e4514a0a1788d1edc0f3e +#: cf005a229e6e4514a0a1788d1edc0f3e +#: cf005a229e6e4514a0a1788d1edc0f3e +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 +#: bcf7573f6fb444e38ceeeb4e08a9b320 +#: bcf7573f6fb444e38ceeeb4e08a9b320 +#: bcf7573f6fb444e38ceeeb4e08a9b320 +#: bcf7573f6fb444e38ceeeb4e08a9b320 +#: bcf7573f6fb444e38ceeeb4e08a9b320 +#: bcf7573f6fb444e38ceeeb4e08a9b320 +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 +#: f324a93551a240b98f56ccda5ac85d13 +#: f324a93551a240b98f56ccda5ac85d13 +#: f324a93551a240b98f56ccda5ac85d13 +#: f324a93551a240b98f56ccda5ac85d13 +#: f324a93551a240b98f56ccda5ac85d13 +#: f324a93551a240b98f56ccda5ac85d13 +#: f324a93551a240b98f56ccda5ac85d13 +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 +#: 4fb386188eb34f18a71304f7add2e62b +#: 4fb386188eb34f18a71304f7add2e62b +#: 4fb386188eb34f18a71304f7add2e62b +#: 4fb386188eb34f18a71304f7add2e62b +#: 4fb386188eb34f18a71304f7add2e62b +#: 4fb386188eb34f18a71304f7add2e62b +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 +#: 291f28b0846e48b18cf6bf41c291be37 +#: 291f28b0846e48b18cf6bf41c291be37 +#: 291f28b0846e48b18cf6bf41c291be37 +#: 291f28b0846e48b18cf6bf41c291be37 +#: 291f28b0846e48b18cf6bf41c291be37 +#: 291f28b0846e48b18cf6bf41c291be37 +#: 291f28b0846e48b18cf6bf41c291be37 +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 +#: 5fd776e27b6b4fd59ec695fbd41b251a +#: 5fd776e27b6b4fd59ec695fbd41b251a +#: 5fd776e27b6b4fd59ec695fbd41b251a +#: 5fd776e27b6b4fd59ec695fbd41b251a +#: 5fd776e27b6b4fd59ec695fbd41b251a +#: 5fd776e27b6b4fd59ec695fbd41b251a +#: 5fd776e27b6b4fd59ec695fbd41b251a +#: 5fd776e27b6b4fd59ec695fbd41b251a +#: 5fd776e27b6b4fd59ec695fbd41b251a +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 +#: 7b98f69bb68f41769f08d7f4087f8aca +#: 7b98f69bb68f41769f08d7f4087f8aca +#: 7b98f69bb68f41769f08d7f4087f8aca +#: 7b98f69bb68f41769f08d7f4087f8aca +#: 7b98f69bb68f41769f08d7f4087f8aca +#: 7b98f69bb68f41769f08d7f4087f8aca +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 +#: c5df4f33c29747b78f070b6c57fe5c31 +#: c5df4f33c29747b78f070b6c57fe5c31 +#: c5df4f33c29747b78f070b6c57fe5c31 +#: c5df4f33c29747b78f070b6c57fe5c31 +#: c5df4f33c29747b78f070b6c57fe5c31 +#: c5df4f33c29747b78f070b6c57fe5c31 +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 +#: 172e6867a25d47b49adfa19666d2445a +#: 172e6867a25d47b49adfa19666d2445a +#: 172e6867a25d47b49adfa19666d2445a +#: 172e6867a25d47b49adfa19666d2445a +#: 172e6867a25d47b49adfa19666d2445a +#: 172e6867a25d47b49adfa19666d2445a +#: 172e6867a25d47b49adfa19666d2445a +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 +#: 4d02fb8bd44244f4ab7c7a7edcc06076 +#: 4d02fb8bd44244f4ab7c7a7edcc06076 +#: 4d02fb8bd44244f4ab7c7a7edcc06076 +#: 4d02fb8bd44244f4ab7c7a7edcc06076 +#: 4d02fb8bd44244f4ab7c7a7edcc06076 +#: 4d02fb8bd44244f4ab7c7a7edcc06076 +#: 4d02fb8bd44244f4ab7c7a7edcc06076 +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 +#: 5ef39d889467448fa24ecf26ae56b3e5 +#: 5ef39d889467448fa24ecf26ae56b3e5 +#: 5ef39d889467448fa24ecf26ae56b3e5 +#: 5ef39d889467448fa24ecf26ae56b3e5 +#: 5ef39d889467448fa24ecf26ae56b3e5 +#: 5ef39d889467448fa24ecf26ae56b3e5 +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 +#: 4fd022a21beb4f86a7a42bb8fc34934c +#: 4fd022a21beb4f86a7a42bb8fc34934c +#: 4fd022a21beb4f86a7a42bb8fc34934c +#: 4fd022a21beb4f86a7a42bb8fc34934c +#: 4fd022a21beb4f86a7a42bb8fc34934c +#: 4fd022a21beb4f86a7a42bb8fc34934c +#: 4fd022a21beb4f86a7a42bb8fc34934c +#: 4fd022a21beb4f86a7a42bb8fc34934c +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 +#: 4505f54833d2487e9273977980d743f3 +#: 4505f54833d2487e9273977980d743f3 +#: 4505f54833d2487e9273977980d743f3 +#: 4505f54833d2487e9273977980d743f3 +#: 4505f54833d2487e9273977980d743f3 +#: 4505f54833d2487e9273977980d743f3 +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 +#: 922ccd9a531a4fc2a1b337e4b5b65624 +#: 922ccd9a531a4fc2a1b337e4b5b65624 +#: 922ccd9a531a4fc2a1b337e4b5b65624 +#: 922ccd9a531a4fc2a1b337e4b5b65624 +#: 922ccd9a531a4fc2a1b337e4b5b65624 +#: 922ccd9a531a4fc2a1b337e4b5b65624 +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 +#: da262d70dc734e058487c9d9d7fb55da +#: da262d70dc734e058487c9d9d7fb55da +#: da262d70dc734e058487c9d9d7fb55da +#: da262d70dc734e058487c9d9d7fb55da +#: da262d70dc734e058487c9d9d7fb55da +#: da262d70dc734e058487c9d9d7fb55da +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 +#: 7fa85cc40e9a4280a73c347dfd23b6c1 +#: 7fa85cc40e9a4280a73c347dfd23b6c1 +#: 7fa85cc40e9a4280a73c347dfd23b6c1 +#: 7fa85cc40e9a4280a73c347dfd23b6c1 +#: 7fa85cc40e9a4280a73c347dfd23b6c1 +#: 7fa85cc40e9a4280a73c347dfd23b6c1 +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 +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: 38872441954a4937b4adbe036302e6e8 +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: 29925c0db7454fd6a47a22df42a1d4f7 +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +#: d6e84ae4d1504d90b0e567c3f8d16ffa +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 +#: 0d3a00bc83d3498495522af06e5f9829 +#: 0d3a00bc83d3498495522af06e5f9829 +#: 0d3a00bc83d3498495522af06e5f9829 +#: 0d3a00bc83d3498495522af06e5f9829 +#: 0d3a00bc83d3498495522af06e5f9829 +#: 0d3a00bc83d3498495522af06e5f9829 +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 +#: b115df81ecdf400cb4077a062bac2160 +#: b115df81ecdf400cb4077a062bac2160 +#: b115df81ecdf400cb4077a062bac2160 +#: b115df81ecdf400cb4077a062bac2160 +#: b115df81ecdf400cb4077a062bac2160 +#: b115df81ecdf400cb4077a062bac2160 +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 +#: a59c82762ab04a37b73a0ad680efb1c5 +#: a59c82762ab04a37b73a0ad680efb1c5 +#: a59c82762ab04a37b73a0ad680efb1c5 +#: a59c82762ab04a37b73a0ad680efb1c5 +#: a59c82762ab04a37b73a0ad680efb1c5 +#: a59c82762ab04a37b73a0ad680efb1c5 +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 +#: 5a69aa7fa8774768bebc130243d33f24 +#: 5a69aa7fa8774768bebc130243d33f24 +#: 5a69aa7fa8774768bebc130243d33f24 +#: 5a69aa7fa8774768bebc130243d33f24 +#: 5a69aa7fa8774768bebc130243d33f24 +#: 5a69aa7fa8774768bebc130243d33f24 +#: 5a69aa7fa8774768bebc130243d33f24 +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 +#: 9b14b15d4eb74f3f82993eca73ef83e5 +#: 9b14b15d4eb74f3f82993eca73ef83e5 +#: 9b14b15d4eb74f3f82993eca73ef83e5 +#: 9b14b15d4eb74f3f82993eca73ef83e5 +#: 9b14b15d4eb74f3f82993eca73ef83e5 +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 +#: 823983a7d48b436491e7c7d6c382dd49 +#: 823983a7d48b436491e7c7d6c382dd49 +#: 823983a7d48b436491e7c7d6c382dd49 +#: 823983a7d48b436491e7c7d6c382dd49 +#: 823983a7d48b436491e7c7d6c382dd49 +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 +#: 98efec157ebb473c808aae14f50e6d61 +#: 98efec157ebb473c808aae14f50e6d61 +#: 98efec157ebb473c808aae14f50e6d61 +#: 98efec157ebb473c808aae14f50e6d61 +#: 98efec157ebb473c808aae14f50e6d61 +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 +#: 02f2a7118c294c018c9461a938ec529b +#: 02f2a7118c294c018c9461a938ec529b +#: 02f2a7118c294c018c9461a938ec529b +#: 02f2a7118c294c018c9461a938ec529b +#: 02f2a7118c294c018c9461a938ec529b +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 +#: 5d6e1bf5a673406c9a939d94eda6212d +#: 5d6e1bf5a673406c9a939d94eda6212d +#: 5d6e1bf5a673406c9a939d94eda6212d +#: 5d6e1bf5a673406c9a939d94eda6212d +#: 5d6e1bf5a673406c9a939d94eda6212d +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 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 3f94ada44c5a4e4f96a478f2eba12ba9 +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 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +#: 304736d9c87440b1b4d8f573adc7def8 +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 +#: 135fd10138e84d4ba3551678d985b183 +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 +#: e0bc6b1e888d4fa680977bfd269d8d8a +#: e0bc6b1e888d4fa680977bfd269d8d8a +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 +#: 4a11e8cca87344baa2a0b654de88fa39 +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 +#: 2d5f274e11504b99938c8ba60c312acb +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 +#: d7be525e0b7b494d9f5b256e3f118474 +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 +#: 7f0c8d792b204d7eb76a4f9cdbbc9b4a +#: 7f0c8d792b204d7eb76a4f9cdbbc9b4a +#: 7f0c8d792b204d7eb76a4f9cdbbc9b4a +#: 7f0c8d792b204d7eb76a4f9cdbbc9b4a +#: 7f0c8d792b204d7eb76a4f9cdbbc9b4a +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 +#: 2812004ba59d451cacbb47175f8796f9 +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 +#: 31ce2a2adcdb4fc0adc3e688aed0d2b0 +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 +#: 6473a06d5de84d299e4903e3cb389bac +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 +#: 8a837858c9c74dd78408d01365b40b96 +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 +#: 19c5cfcf169d466a949ae4cad69dd539 +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 +#: 960251d52e934e4c92c9bd0a0aa77ea8 +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 +#: ccc5662bbccc488a8bd98f228735b700 +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 +#: 45683405846449d59048c3085f095887 +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 +#: c089af58b0c7402cb4dee2dcb39632a4 +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 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: f50b8fb8640844a6933c62864952effb +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 18233b5f8f524f30ae9d138abb7b02e3 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +#: 310192c648264bc086b55a67115104f5 +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 +#: 9dd1e8c3b999410fa6625ba6f279c7c7 +#: 9dd1e8c3b999410fa6625ba6f279c7c7 +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 +#: 2654a66e65374bf188f55b35405bed50 +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 +#: 918b2eb266e64d8b92a504fe13d28665 +#: 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 +#: 30fc507352f2434c88bf8dae92a030f3 +#: 30fc507352f2434c88bf8dae92a030f3 +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 +#: 1b1c8d98c40d4a1db673aba02af8ab84 +#: 1b1c8d98c40d4a1db673aba02af8ab84 +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 +#: 14c5970e926b4bdba9cf225c428573be +#: 14c5970e926b4bdba9cf225c428573be +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 +#: 67b05d01e4534778912bcc2bc182d711 +#: 12c60e70af4046e8ba10b2e84f4f0bb3 +#: 12c60e70af4046e8ba10b2e84f4f0bb3 +#: 12c60e70af4046e8ba10b2e84f4f0bb3 +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 +#: c412555942314e6abb96db9bca6ed6c0 +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 +#: 30e22d15e90d4423afb572096bc361de +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 +#: 9f646bb40e254fe0b597541bce565ff5 +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 +#: 1edc4b26a7b14e7ebc76ed185b7258dd +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 +#: 402fe8591df646adab6f23b2f9d9081b +#: 402fe8591df646adab6f23b2f9d9081b +#: 402fe8591df646adab6f23b2f9d9081b +#: 402fe8591df646adab6f23b2f9d9081b +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 +#: 6fb31e7daaac48ecb8ae0f2ad021074f +#: 6fb31e7daaac48ecb8ae0f2ad021074f +#: 6fb31e7daaac48ecb8ae0f2ad021074f +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 +#: 063021b717da4ac1bbe2b9d24f4e77a8 +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 +#: 2b49c4d121db43b194ffa1bfff78a702 +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 +#: 3dd36482d6584e0caa30ff04b7f88ac2 +#: 3dd36482d6584e0caa30ff04b7f88ac2 +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 +#: d8382b4b46e949acbd18ad7290999e60 +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 +#: 445e7ca3ca40409399381cc3fa66c395 +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 +#: 5249f14b4df34180913d70dc0424dff8 +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 +#: 10f333753a3f485ab9e166f5fa769198 +#: 10f333753a3f485ab9e166f5fa769198 +#: 10f333753a3f485ab9e166f5fa769198 +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 +#: 0114eb9f7deb4dadaa52b41a0ecda85d +#: 0114eb9f7deb4dadaa52b41a0ecda85d +#: 0114eb9f7deb4dadaa52b41a0ecda85d +#: 0114eb9f7deb4dadaa52b41a0ecda85d +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 +#: a152e92313ea4bb89cecd1b6400cdbc6 +#: a152e92313ea4bb89cecd1b6400cdbc6 +#: a152e92313ea4bb89cecd1b6400cdbc6 +#: a152e92313ea4bb89cecd1b6400cdbc6 +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 +#: e4a529edf2a7427d9f0d448e950c5a3d +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 +#: f81dfca9eaf142aabf6243ffebb15d3a +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 +#: 6e383a0f60374e1792867357bb73d27a +#: 6e383a0f60374e1792867357bb73d27a +#: 0401bd2a8e2641b4b33a27e26bec88b9 +#: 6e383a0f60374e1792867357bb73d27a +#: 6e383a0f60374e1792867357bb73d27a +#: 845342df7f694a18b74e63bd8283fbf9 +#: 6e383a0f60374e1792867357bb73d27a +#: 6e383a0f60374e1792867357bb73d27a +#: 6e383a0f60374e1792867357bb73d27a +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 +#: 9c735f0e65834a429826e96e1cd0e8e1 +#: 9c735f0e65834a429826e96e1cd0e8e1 +#: 9c735f0e65834a429826e96e1cd0e8e1 +#: 9c735f0e65834a429826e96e1cd0e8e1 +#: 9c735f0e65834a429826e96e1cd0e8e1 +#: 9c735f0e65834a429826e96e1cd0e8e1 +#: 9c735f0e65834a429826e96e1cd0e8e1 +#: 9c735f0e65834a429826e96e1cd0e8e1 +#: 9c735f0e65834a429826e96e1cd0e8e1 +#: 9c735f0e65834a429826e96e1cd0e8e1 +#: 9c735f0e65834a429826e96e1cd0e8e1 +#: 9c735f0e65834a429826e96e1cd0e8e1 +#: 9c735f0e65834a429826e96e1cd0e8e1 +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 +#: fc14665c6b8c42f7b2021236fbe289a1 +#: fc14665c6b8c42f7b2021236fbe289a1 +#: fc14665c6b8c42f7b2021236fbe289a1 +#: fc14665c6b8c42f7b2021236fbe289a1 +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 +#: f604401cde9a47eeb37838e3eefdad3d +#: f604401cde9a47eeb37838e3eefdad3d +#: f604401cde9a47eeb37838e3eefdad3d +#: f604401cde9a47eeb37838e3eefdad3d +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 +#: 6211cc2aa291498796952ffa64eee7c9 +#: 6211cc2aa291498796952ffa64eee7c9 +#: 6211cc2aa291498796952ffa64eee7c9 +#: 6211cc2aa291498796952ffa64eee7c9 +#: 6211cc2aa291498796952ffa64eee7c9 +#: 6211cc2aa291498796952ffa64eee7c9 +#: 6211cc2aa291498796952ffa64eee7c9 +#: 6211cc2aa291498796952ffa64eee7c9 +#: 6211cc2aa291498796952ffa64eee7c9 +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 +#: 81f00aa66a804c659436513d84f58331 +#: 81f00aa66a804c659436513d84f58331 +#: 81f00aa66a804c659436513d84f58331 +#: 81f00aa66a804c659436513d84f58331 +#: 81f00aa66a804c659436513d84f58331 +#: 81f00aa66a804c659436513d84f58331 +#: 81f00aa66a804c659436513d84f58331 +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 +#: 99e2ef5f06e840b49beef674316afa93 +#: 99e2ef5f06e840b49beef674316afa93 +#: 99e2ef5f06e840b49beef674316afa93 +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 +#: a35aad3bdf6a4eab97d658e6525ce10a +#: a35aad3bdf6a4eab97d658e6525ce10a +#: a35aad3bdf6a4eab97d658e6525ce10a +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 +#: 74f1849dc85b465e874fdcba96c50071 +#: 74f1849dc85b465e874fdcba96c50071 +#: 74f1849dc85b465e874fdcba96c50071 +#: 74f1849dc85b465e874fdcba96c50071 +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 +#: a582a220595b498096d03893062a9df0 +#: a582a220595b498096d03893062a9df0 +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 +#: 944b63c7272645ac8e3cb2e3e21563fe +#: 944b63c7272645ac8e3cb2e3e21563fe +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 +#: fb90b1ef5ff84a2fa79294890e940a4e +#: 3312ce3f569645198e48c2b41085b692 +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.fetch_role:3 +#: 681fb3ca2ecf4e84ac864c64062b94f3 +msgid "Retrieves a :class:`Role` that the guild has." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_role:7 +#: 1f6a9aaf78384eabae7f935cc30d3215 +msgid "This method is an API call. For general usage, consider using :attr:`get_role` instead." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_role:11 +#: 5903ec8f839b4c2d9dc2d902b5329cf4 +msgid "The role in the guild with the specified ID." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.create_role:45 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_role:12 +#: ../../../discord/role.py:docstring of discord.role.Role.edit:51 +#: 79519cee140f4bafa12f86a5c341f0e7 +#: 79519cee140f4bafa12f86a5c341f0e7 +#: 79519cee140f4bafa12f86a5c341f0e7 +msgid ":class:`Role`" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_role:14 +#: b28ab0944bac46fcb93d05451f0c7447 +msgid "Retrieving the role 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 +#: dcfe27cdb7b04f7785b896b227db69aa +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 +#: 25b3022700bc40c98280cd7ad9067eac +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 +#: 44506364e73a40a2b43adf68402543c1 +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 +#: 9cdff82aa82a440db4251f66f2e822f6 +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: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 +#: 71041b43fe424416b87fd77ec0c5d5e4 +#: 71041b43fe424416b87fd77ec0c5d5e4 +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 +#: 7898787d528947f9b335b0550794b0da +#: 7898787d528947f9b335b0550794b0da +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 +#: f12004652b6a44c3aac2cd2af378b28a +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 +#: f0ed8f3842b8443994b81e6081dc5d00 +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 +#: 9afd0935187a461ab98d15477738fc11 +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 +#: 9544932f24934807a6ea75123701b991 +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 +#: a8775024ec8c4156acf05824fcf64a34 +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 +#: 0645a3e4c2e94af68988b850f3ac4c16 +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 +#: f0b106b23b04473aa6fcdc972261afae +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 +#: d6c4741ad35f4feda1007d4313472b28 +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 +#: 05a7a458521d4d14b6b4d4b4d4ee44fa +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 +#: 001bef1ddd0c4b4e84fcd27b8df3d96b +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 +#: 6003dd88fec7420199985ef5024bb31a +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 +#: ea335cf575724209b2c07a48814c2c53 +#: 86baf481154547959ddb8413c5939b28 +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 +#: 55dcb7456e3f40efbcb954cea6d49413 +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 +#: 2377bfb5becb4b0591ce93ddfe51545a +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 +#: 5f56ce92853748bdb97c7d6a998a2956 +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 +#: 6f0e0e8f39384675bc1794823cb3fa20 +#: 6f0e0e8f39384675bc1794823cb3fa20 +#: 6f0e0e8f39384675bc1794823cb3fa20 +#: 6f0e0e8f39384675bc1794823cb3fa20 +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 +#: 5d785162986749e2945e8c651dc507eb +#: 5d785162986749e2945e8c651dc507eb +#: 5d785162986749e2945e8c651dc507eb +#: 5d785162986749e2945e8c651dc507eb +#: 5d785162986749e2945e8c651dc507eb +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 +#: f4cb677bf946444db00720582cadf54e +#: cf5d9362cb0f4a96ae1fcd563b178d27 +#: f4cb677bf946444db00720582cadf54e +#: f4cb677bf946444db00720582cadf54e +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 +#: b9a3c3d15f1d42158f2d6557141abe8f +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 +#: 761219e812e54e64acae665e0f0a3ee0 +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 +#: c343d9d40bae4a43bd68f1af8e94f4e8 +#: c343d9d40bae4a43bd68f1af8e94f4e8 +#: c343d9d40bae4a43bd68f1af8e94f4e8 +#: c343d9d40bae4a43bd68f1af8e94f4e8 +#: c343d9d40bae4a43bd68f1af8e94f4e8 +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 +#: 0882c5ddfa7e4b1a9f4c9a828646c692 +#: 0882c5ddfa7e4b1a9f4c9a828646c692 +#: 0882c5ddfa7e4b1a9f4c9a828646c692 +#: 0882c5ddfa7e4b1a9f4c9a828646c692 +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 +#: 45a92da581e04fa2b319585280d42b15 +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 +#: cafaefe922dd48c5ba61c50a27ec28dd +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 +#: 5d6d3ca99aa8482dbc6ffda9436fbe5b +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 +#: 74763711887947678db4c474731cbcea +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 +#: 4efb14b400af448684e8daabbaf07bfb +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 +#: b2acfb4f157841e4b7c8d566142234e4 +#: b2acfb4f157841e4b7c8d566142234e4 +#: b2acfb4f157841e4b7c8d566142234e4 +#: b2acfb4f157841e4b7c8d566142234e4 +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 +#: 3f3449ad058c4ff6bf3428a177b5aaa8 +#: 3f3449ad058c4ff6bf3428a177b5aaa8 +#: 3f3449ad058c4ff6bf3428a177b5aaa8 +#: 3f3449ad058c4ff6bf3428a177b5aaa8 +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 +#: 86b87547d2ed4552ac12516dc869b8f1 +#: 86b87547d2ed4552ac12516dc869b8f1 +#: 86b87547d2ed4552ac12516dc869b8f1 +#: 86b87547d2ed4552ac12516dc869b8f1 +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 +#: d1bc287ff89b4eea9c60ff6c175ddc51 +#: d1bc287ff89b4eea9c60ff6c175ddc51 +#: d1bc287ff89b4eea9c60ff6c175ddc51 +#: d1bc287ff89b4eea9c60ff6c175ddc51 +#: d1bc287ff89b4eea9c60ff6c175ddc51 +#: d1bc287ff89b4eea9c60ff6c175ddc51 +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 +#: 9fcd0b74f14347da8c2bbb599a1d6f8a +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 +#: 290a334f5b9f48f0ad5f62553d07c555 +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 +#: ce0d879a4399461a90bc27598271760b +#: ce0d879a4399461a90bc27598271760b +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 +#: b8e1833f3ac147369e252c5d8801de52 +#: b8e1833f3ac147369e252c5d8801de52 +#: b8e1833f3ac147369e252c5d8801de52 +#: b8e1833f3ac147369e252c5d8801de52 +#: b8e1833f3ac147369e252c5d8801de52 +#: b8e1833f3ac147369e252c5d8801de52 +#: b8e1833f3ac147369e252c5d8801de52 +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 +#: ad7ae992e9464d198f1ab9b5ae6b4efa +#: ad7ae992e9464d198f1ab9b5ae6b4efa +#: ad7ae992e9464d198f1ab9b5ae6b4efa +#: ad7ae992e9464d198f1ab9b5ae6b4efa +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 +#: 977e60b646b7448a8979fb130ee01916 +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 +#: 972be385b13d440092cdccd620111c7a +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 +#: 33c32e64d0434d23a47aa521c5f83dad +#: 33c32e64d0434d23a47aa521c5f83dad +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 +#: 848ba8fba5d94c7da78956880b9befd4 +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 +#: 1b34d636f1674e9f9a8297e79af3aa07 +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 +#: 87c8fe8fea4441edb52f0ea109aaae0a +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 +#: 4605c05e782c449fbb9df453c31e8668 +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 +#: 7ece475c494647459b908955f3d194df +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 +#: b3a97afc4a6d45f1b595e20dcfd61b00 +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 +#: 45776a9178224707a1d5cf4ebfff169b +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 +#: 93d2a832d86246279c35490b6c878a86 +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 +#: e194cbb46c32457d858d2e294d45765b +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 +#: 95e9950220b84e359463a51ad286e6c9 +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 +#: 30b235b76e1342cf941b30523684f372 +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 +#: f9335d3f6f084e94a23c90b76421fca3 +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 +#: cf5680cc558b4f1c9ee058a815a6aa99 +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 +#: 141d223702fe42af8e2c67e1fe220ad8 +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 +#: 34fdd30888cc4a69a2ecff38e80c7735 +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 +#: bf4b576b58b64dbcaa30f9f34b305d1c +#: bf4b576b58b64dbcaa30f9f34b305d1c +#: bf4b576b58b64dbcaa30f9f34b305d1c +#: bf4b576b58b64dbcaa30f9f34b305d1c +#: bf4b576b58b64dbcaa30f9f34b305d1c +#: bf4b576b58b64dbcaa30f9f34b305d1c +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 +#: d9cb26c43e2f4fdf8263a762822511b3 +#: d9cb26c43e2f4fdf8263a762822511b3 +#: d9cb26c43e2f4fdf8263a762822511b3 +#: d9cb26c43e2f4fdf8263a762822511b3 +#: d9cb26c43e2f4fdf8263a762822511b3 +#: d9cb26c43e2f4fdf8263a762822511b3 +#: d9cb26c43e2f4fdf8263a762822511b3 +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 +#: 888ee5b5c54841b18baa7f2ba1dfd8c2 +#: 888ee5b5c54841b18baa7f2ba1dfd8c2 +#: 888ee5b5c54841b18baa7f2ba1dfd8c2 +#: 888ee5b5c54841b18baa7f2ba1dfd8c2 +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 +#: 38c5c5e52ebf42a8a131562a6bf58a86 +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 +#: cc61dfae294c4579ba596a34ef3fa088 +#: cc61dfae294c4579ba596a34ef3fa088 +#: cc61dfae294c4579ba596a34ef3fa088 +#: cc61dfae294c4579ba596a34ef3fa088 +#: cc61dfae294c4579ba596a34ef3fa088 +#: cc61dfae294c4579ba596a34ef3fa088 +#: cc61dfae294c4579ba596a34ef3fa088 +#: cc61dfae294c4579ba596a34ef3fa088 +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 +#: 1342d2d0aed64ae7ba75ee42534a7a8b +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 +#: 5438a938169f4597aa1a5242f21d12e2 +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 +#: cdfb40b39a994b05a328decf47ec528d +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 +#: 29af72e8c0344ccb8418d3680362e11f +#: 29af72e8c0344ccb8418d3680362e11f +#: 29af72e8c0344ccb8418d3680362e11f +#: 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 +#: 0c1c2e3e84764a568b297d90d0b75c5c +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 +#: a64cb72cf711477f9207ff71bbd6fe6f +#: a64cb72cf711477f9207ff71bbd6fe6f +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 +#: 0dd701dcf1ed49b09e55f614e36c0301 +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 +#: 6700d1737c4640a1a5e0c6c939a0fa53 +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 +#: 12fc1d61e1c04c398375cfcebedcf0be +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 +#: 70201762314944bdbac8ef5b336e95a7 +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 +#: c3b4464213de424f9c6a0efe01a7ad89 +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 +#: 736b84d05e0a460ca50bbea976a37066 +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 +#: 6efdd1d676b6498ea7a7b933c7a4fcc8 +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 +#: 9796bc5b9de64095a1c6c4b1297d91e1 +#: 9796bc5b9de64095a1c6c4b1297d91e1 +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 +#: ee79d1da943c4e048638ebf74603e904 +#: ee79d1da943c4e048638ebf74603e904 +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 +#: a15dc03a69304c0ea67001bdcc74eeea +#: a15dc03a69304c0ea67001bdcc74eeea +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 +#: 7bd5e756a20541969248ddb62fce3937 +#: 7bd5e756a20541969248ddb62fce3937 +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 +#: 21d3b7a2c2794cbb899e0d71e058a150 +#: 21d3b7a2c2794cbb899e0d71e058a150 +msgid ":class:`IntegrationAccount`" +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.BotIntegration:37 +#: ../../../discord/integrations.py:docstring of discord.integrations.Integration:43 +#: 457c653cc8d74125bcd46da778f939b9 +#: 457c653cc8d74125bcd46da778f939b9 +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 +#: 0b0e4b93e0074ce3bde5c03b1389b3ef +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 +#: f03b50bb386e47e88f5080d349b75439 +#: f03b50bb386e47e88f5080d349b75439 +#: f03b50bb386e47e88f5080d349b75439 +#: f03b50bb386e47e88f5080d349b75439 +#: f03b50bb386e47e88f5080d349b75439 +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 +#: 4e301d5d8f414b4a8fca6cb4433976e7 +#: 4e301d5d8f414b4a8fca6cb4433976e7 +#: 4e301d5d8f414b4a8fca6cb4433976e7 +#: 4e301d5d8f414b4a8fca6cb4433976e7 +#: 4e301d5d8f414b4a8fca6cb4433976e7 +#: 4e301d5d8f414b4a8fca6cb4433976e7 +#: 4e301d5d8f414b4a8fca6cb4433976e7 +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 +#: 22ee64cf3e304d3fa699868a43f6e342 +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 +#: 79224463831a451c8339369ad55335d1 +#: 79224463831a451c8339369ad55335d1 +#: 79224463831a451c8339369ad55335d1 +#: 79224463831a451c8339369ad55335d1 +#: 79224463831a451c8339369ad55335d1 +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 +#: 086f64f83b2e45448c6e193790788fb9 +#: 086f64f83b2e45448c6e193790788fb9 +#: 086f64f83b2e45448c6e193790788fb9 +#: 086f64f83b2e45448c6e193790788fb9 +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 +#: 1fa6735ff47b46a5a2bd90070d218c40 +#: 1fa6735ff47b46a5a2bd90070d218c40 +#: 1fa6735ff47b46a5a2bd90070d218c40 +#: 1fa6735ff47b46a5a2bd90070d218c40 +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 +#: 53538facaa654a67be082b8dfbf4f8d3 +#: 53538facaa654a67be082b8dfbf4f8d3 +#: 53538facaa654a67be082b8dfbf4f8d3 +#: 53538facaa654a67be082b8dfbf4f8d3 +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 +#: 8bb271610b164ef2a44fba616a0bb416 +#: 8bb271610b164ef2a44fba616a0bb416 +#: 8bb271610b164ef2a44fba616a0bb416 +#: 8bb271610b164ef2a44fba616a0bb416 +#: 8bb271610b164ef2a44fba616a0bb416 +#: 8bb271610b164ef2a44fba616a0bb416 +#: 8bb271610b164ef2a44fba616a0bb416 +#: 8bb271610b164ef2a44fba616a0bb416 +#: 8bb271610b164ef2a44fba616a0bb416 +#: 8bb271610b164ef2a44fba616a0bb416 +#: 8bb271610b164ef2a44fba616a0bb416 +#: 8bb271610b164ef2a44fba616a0bb416 +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 +#: e66dee0dc32745b5b1c3998855c064eb +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 +#: 692f32fef56d4dc2a04da0f0d03690c3 +#: 692f32fef56d4dc2a04da0f0d03690c3 +#: 692f32fef56d4dc2a04da0f0d03690c3 +#: 692f32fef56d4dc2a04da0f0d03690c3 +#: 692f32fef56d4dc2a04da0f0d03690c3 +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 +#: 5f9a51f4c1324ef39f021d40602fc2ca +#: 5f9a51f4c1324ef39f021d40602fc2ca +#: 5f9a51f4c1324ef39f021d40602fc2ca +#: 5f9a51f4c1324ef39f021d40602fc2ca +#: 5f9a51f4c1324ef39f021d40602fc2ca +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 +#: 4affbef6d844449eb70b5f03da656576 +#: 4affbef6d844449eb70b5f03da656576 +#: 4affbef6d844449eb70b5f03da656576 +#: 4affbef6d844449eb70b5f03da656576 +#: 4affbef6d844449eb70b5f03da656576 +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 +#: ebe51a2429f948418f2ba027284602e4 +#: ebe51a2429f948418f2ba027284602e4 +#: ebe51a2429f948418f2ba027284602e4 +#: ebe51a2429f948418f2ba027284602e4 +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 +#: efb41e6c99054ced96096e8407c04478 +#: efb41e6c99054ced96096e8407c04478 +#: efb41e6c99054ced96096e8407c04478 +#: efb41e6c99054ced96096e8407c04478 +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 +#: 95d403544c7b470d8e62307238c84394 +#: 95d403544c7b470d8e62307238c84394 +#: 95d403544c7b470d8e62307238c84394 +#: 95d403544c7b470d8e62307238c84394 +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 +#: 44d243e208e74dabaf00f2898f37a386 +#: 44d243e208e74dabaf00f2898f37a386 +#: 44d243e208e74dabaf00f2898f37a386 +#: 44d243e208e74dabaf00f2898f37a386 +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 +#: 12ac8c2d1ee24602b36d469637750012 +#: 12ac8c2d1ee24602b36d469637750012 +#: 12ac8c2d1ee24602b36d469637750012 +#: 12ac8c2d1ee24602b36d469637750012 +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 +#: 258275aa7a7f40928cd773403e9d2750 +#: 258275aa7a7f40928cd773403e9d2750 +#: 258275aa7a7f40928cd773403e9d2750 +#: 258275aa7a7f40928cd773403e9d2750 +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 +#: 8fc880d585134a17a0024216a1164444 +#: 8fc880d585134a17a0024216a1164444 +#: 8fc880d585134a17a0024216a1164444 +#: 8fc880d585134a17a0024216a1164444 +#: 8fc880d585134a17a0024216a1164444 +#: 8fc880d585134a17a0024216a1164444 +#: 8fc880d585134a17a0024216a1164444 +#: 8fc880d585134a17a0024216a1164444 +#: 8fc880d585134a17a0024216a1164444 +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 +#: a1442b5bbdf74f6e8b31ae84a2726b54 +#: a1442b5bbdf74f6e8b31ae84a2726b54 +#: a1442b5bbdf74f6e8b31ae84a2726b54 +#: a1442b5bbdf74f6e8b31ae84a2726b54 +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 +#: 8411b93430f2431482fd0973f5fe5166 +#: 8411b93430f2431482fd0973f5fe5166 +#: 8411b93430f2431482fd0973f5fe5166 +#: 8411b93430f2431482fd0973f5fe5166 +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 +#: 313dc26247974242aaf1193cdd259b8f +#: 313dc26247974242aaf1193cdd259b8f +#: 313dc26247974242aaf1193cdd259b8f +#: 313dc26247974242aaf1193cdd259b8f +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 +#: 20bf7bf6e69540dc87705f873d0610d7 +#: 20bf7bf6e69540dc87705f873d0610d7 +#: 20bf7bf6e69540dc87705f873d0610d7 +#: 20bf7bf6e69540dc87705f873d0610d7 +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 +#: 48531b89c2704243bdba0081c736b094 +#: 48531b89c2704243bdba0081c736b094 +#: 48531b89c2704243bdba0081c736b094 +#: 48531b89c2704243bdba0081c736b094 +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 +#: 73a25e191e4d427eb290e5ad194aeb46 +#: 73a25e191e4d427eb290e5ad194aeb46 +#: 73a25e191e4d427eb290e5ad194aeb46 +#: 73a25e191e4d427eb290e5ad194aeb46 +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 +#: 6e83155f849f4352a4bfa760384b8b9e +#: 6e83155f849f4352a4bfa760384b8b9e +#: 6e83155f849f4352a4bfa760384b8b9e +#: 6e83155f849f4352a4bfa760384b8b9e +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 +#: 7aa18cb895d644e19053e2eec14ee6c0 +#: 7aa18cb895d644e19053e2eec14ee6c0 +#: 7aa18cb895d644e19053e2eec14ee6c0 +#: 7aa18cb895d644e19053e2eec14ee6c0 +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 +#: 083fb0803d4f4b939e1a15944a2584cf +#: 083fb0803d4f4b939e1a15944a2584cf +#: 083fb0803d4f4b939e1a15944a2584cf +#: 083fb0803d4f4b939e1a15944a2584cf +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 +#: 0a6dd8d4b88c4a3e9b3e4e250790250e +#: 0a6dd8d4b88c4a3e9b3e4e250790250e +#: 0a6dd8d4b88c4a3e9b3e4e250790250e +#: 0a6dd8d4b88c4a3e9b3e4e250790250e +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 +#: 7981dc8e7bf44631bc14eaefc415734a +#: 7981dc8e7bf44631bc14eaefc415734a +#: 7981dc8e7bf44631bc14eaefc415734a +#: 7981dc8e7bf44631bc14eaefc415734a +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 +#: e2aad5ac64c24915bdc0bbe81ec6228f +#: e2aad5ac64c24915bdc0bbe81ec6228f +#: e2aad5ac64c24915bdc0bbe81ec6228f +#: e2aad5ac64c24915bdc0bbe81ec6228f +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 +#: b0c8e3b1df6f47d9a418cb9029926cb7 +#: b0c8e3b1df6f47d9a418cb9029926cb7 +#: b0c8e3b1df6f47d9a418cb9029926cb7 +#: b0c8e3b1df6f47d9a418cb9029926cb7 +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 +#: 75f5a744aaeb45b9800325ba52e32825 +#: 75f5a744aaeb45b9800325ba52e32825 +#: 75f5a744aaeb45b9800325ba52e32825 +#: 75f5a744aaeb45b9800325ba52e32825 +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 +#: 55ac3c5f07e84d59b3459547d1ec5ebb +#: 55ac3c5f07e84d59b3459547d1ec5ebb +#: 55ac3c5f07e84d59b3459547d1ec5ebb +#: 55ac3c5f07e84d59b3459547d1ec5ebb +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 +#: 67669bca174940f0a790b768a423a88b +#: 67669bca174940f0a790b768a423a88b +#: 67669bca174940f0a790b768a423a88b +#: 67669bca174940f0a790b768a423a88b +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 +#: 0be10d93f961436c9de4fab78f0fe327 +#: 0be10d93f961436c9de4fab78f0fe327 +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 +#: 5bbc21eca8354cd8a2ba719986db0064 +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 +#: cbc78674793e480aaaf2d52a99574eb8 +#: cbc78674793e480aaaf2d52a99574eb8 +#: cbc78674793e480aaaf2d52a99574eb8 +#: cbc78674793e480aaaf2d52a99574eb8 +#: cbc78674793e480aaaf2d52a99574eb8 +#: cbc78674793e480aaaf2d52a99574eb8 +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 +#: 91b7e5fb35174e4c8cab7571141a7cd9 +#: 91b7e5fb35174e4c8cab7571141a7cd9 +#: 91b7e5fb35174e4c8cab7571141a7cd9 +#: 91b7e5fb35174e4c8cab7571141a7cd9 +#: 91b7e5fb35174e4c8cab7571141a7cd9 +#: 91b7e5fb35174e4c8cab7571141a7cd9 +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 +#: 40b19f0e11a242c3878748f60e579d3c +#: 40b19f0e11a242c3878748f60e579d3c +#: 40b19f0e11a242c3878748f60e579d3c +#: 40b19f0e11a242c3878748f60e579d3c +#: 40b19f0e11a242c3878748f60e579d3c +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 +#: c3008f4769c14c198b601e8cc3c70be8 +#: c3008f4769c14c198b601e8cc3c70be8 +#: c3008f4769c14c198b601e8cc3c70be8 +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 +#: b116e2cea92b420eac9aea8cc1ab81f0 +#: b116e2cea92b420eac9aea8cc1ab81f0 +#: b116e2cea92b420eac9aea8cc1ab81f0 +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 +#: e4d03f1e47a9494392429ae5f2172724 +#: e4d03f1e47a9494392429ae5f2172724 +#: e4d03f1e47a9494392429ae5f2172724 +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 +#: 10d9af8b3c114f4f9be973e412b03fb3 +#: 10d9af8b3c114f4f9be973e412b03fb3 +#: 10d9af8b3c114f4f9be973e412b03fb3 +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 +#: 7bce4c601b7e4d13af2c0eeb1288ed61 +#: 7bce4c601b7e4d13af2c0eeb1288ed61 +#: 7bce4c601b7e4d13af2c0eeb1288ed61 +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 +#: 17d5c49b53b94e559f645697fdc954fc +#: 17d5c49b53b94e559f645697fdc954fc +#: 17d5c49b53b94e559f645697fdc954fc +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 +#: 88d6ddb0b6ae4b87b31b7db5c79da00b +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 +#: 2a5f6761e17f48c2b0d616d81972d964 +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 +#: 1ea0cbbbbdeb41d28a69cf68b30e94ce +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 +#: 0e3d32b5c2244ca6a0d83a892a081f8d +#: 0e3d32b5c2244ca6a0d83a892a081f8d +#: 0e3d32b5c2244ca6a0d83a892a081f8d +#: 0e3d32b5c2244ca6a0d83a892a081f8d +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 +#: 47f3fed9c90f4f96a742e7c04818b2d5 +#: 47f3fed9c90f4f96a742e7c04818b2d5 +#: 47f3fed9c90f4f96a742e7c04818b2d5 +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 +#: 0605656b32984ab9a75c79ef67a728b8 +#: 0605656b32984ab9a75c79ef67a728b8 +#: 0605656b32984ab9a75c79ef67a728b8 +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 +#: c129d88ab0874303b120799a19d7c0ec +#: c129d88ab0874303b120799a19d7c0ec +#: c129d88ab0874303b120799a19d7c0ec +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 +#: d32cf9eeeb9847b2830a4a6c876ef451 +#: d32cf9eeeb9847b2830a4a6c876ef451 +#: d32cf9eeeb9847b2830a4a6c876ef451 +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 +#: 4a1a304024aa4bbb960259df3ba1226e +#: 4a1a304024aa4bbb960259df3ba1226e +#: 4a1a304024aa4bbb960259df3ba1226e +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 +#: 85ddcd8c95604e5fb9d65095ba79d614 +#: 85ddcd8c95604e5fb9d65095ba79d614 +#: 85ddcd8c95604e5fb9d65095ba79d614 +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 +#: 77801db3060a4d5a90b6e7d0b67b7bc3 +#: 77801db3060a4d5a90b6e7d0b67b7bc3 +#: 77801db3060a4d5a90b6e7d0b67b7bc3 +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 +#: 1ea0953ddb0b4b89b78d9d96a62ccf8f +#: 1ea0953ddb0b4b89b78d9d96a62ccf8f +#: 1ea0953ddb0b4b89b78d9d96a62ccf8f +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 +#: c3a5508c1b064afc9513a06272a1fd9c +#: c3a5508c1b064afc9513a06272a1fd9c +#: c3a5508c1b064afc9513a06272a1fd9c +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 +#: 969c1c3c82834ac695633f8b76d5447b +#: 969c1c3c82834ac695633f8b76d5447b +#: 969c1c3c82834ac695633f8b76d5447b +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 +#: 879233ad70174408b4dfc419d65951e2 +#: 879233ad70174408b4dfc419d65951e2 +#: 879233ad70174408b4dfc419d65951e2 +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 +#: ad33f0ecada7446aa29ccb4cb4652d46 +#: ad33f0ecada7446aa29ccb4cb4652d46 +#: ad33f0ecada7446aa29ccb4cb4652d46 +#: ad33f0ecada7446aa29ccb4cb4652d46 +#: ad33f0ecada7446aa29ccb4cb4652d46 +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 +#: a1ab293dca0a4d679744b60f873832a7 +#: a1ab293dca0a4d679744b60f873832a7 +#: a1ab293dca0a4d679744b60f873832a7 +#: a1ab293dca0a4d679744b60f873832a7 +#: a1ab293dca0a4d679744b60f873832a7 +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 +#: fcad9386059d42feb4e79e5a14931208 +#: fcad9386059d42feb4e79e5a14931208 +#: fcad9386059d42feb4e79e5a14931208 +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 +#: 81fb2b5fd70b4af792ed7a8d92cbfb55 +#: 81fb2b5fd70b4af792ed7a8d92cbfb55 +#: 81fb2b5fd70b4af792ed7a8d92cbfb55 +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 +#: 713c44f071794ebf9a814632d2c5da11 +#: 713c44f071794ebf9a814632d2c5da11 +#: 713c44f071794ebf9a814632d2c5da11 +#: 713c44f071794ebf9a814632d2c5da11 +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 +#: fa64ba8bf0624293b23cc2cc03daf2b4 +#: fa64ba8bf0624293b23cc2cc03daf2b4 +#: fa64ba8bf0624293b23cc2cc03daf2b4 +#: fa64ba8bf0624293b23cc2cc03daf2b4 +#: fa64ba8bf0624293b23cc2cc03daf2b4 +#: fa64ba8bf0624293b23cc2cc03daf2b4 +#: fa64ba8bf0624293b23cc2cc03daf2b4 +#: fa64ba8bf0624293b23cc2cc03daf2b4 +#: fa64ba8bf0624293b23cc2cc03daf2b4 +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 +#: f1500ea7686647ea9b0c9b51d0928759 +#: f1500ea7686647ea9b0c9b51d0928759 +#: f1500ea7686647ea9b0c9b51d0928759 +#: f1500ea7686647ea9b0c9b51d0928759 +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 +#: dc75b4e91a0f4f2a8abef5896e012117 +#: dc75b4e91a0f4f2a8abef5896e012117 +#: dc75b4e91a0f4f2a8abef5896e012117 +#: dc75b4e91a0f4f2a8abef5896e012117 +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 +#: a01edf3b9cdb4626b6737bfec16c617d +#: a01edf3b9cdb4626b6737bfec16c617d +#: a01edf3b9cdb4626b6737bfec16c617d +#: a01edf3b9cdb4626b6737bfec16c617d +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 +#: 3788fffc313c4e17a7031c304b84dbf1 +#: 3788fffc313c4e17a7031c304b84dbf1 +#: 3788fffc313c4e17a7031c304b84dbf1 +#: 3788fffc313c4e17a7031c304b84dbf1 +#: 3788fffc313c4e17a7031c304b84dbf1 +#: 3788fffc313c4e17a7031c304b84dbf1 +#: 3788fffc313c4e17a7031c304b84dbf1 +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 +#: 155260cb1d8e4613b0448e82854766f1 +#: 9c9686e2d0a14683a181e9e88b509a14 +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 +#: 2a69f4fcb45f4ade8fa8261598454b6d +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 +#: b2e2f851c87a4d75806ec5d84d91f6a8 +#: b2e2f851c87a4d75806ec5d84d91f6a8 +#: b2e2f851c87a4d75806ec5d84d91f6a8 +#: b2e2f851c87a4d75806ec5d84d91f6a8 +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 +#: 70e1ecd5420a44c482cdc6d7970e356e +#: 70e1ecd5420a44c482cdc6d7970e356e +#: 70e1ecd5420a44c482cdc6d7970e356e +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 +#: b3042033fc1f41e0a7ca362c7fc6b2b4 +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 +#: 9a4fe72c71564b6dac1e273987ca267d +#: 9a4fe72c71564b6dac1e273987ca267d +#: 9a4fe72c71564b6dac1e273987ca267d +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 +#: 28b85d3d9a3e42c690aebcdc756b8659 +#: 28b85d3d9a3e42c690aebcdc756b8659 +#: 28b85d3d9a3e42c690aebcdc756b8659 +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 +#: 7a7108c1fdb34bed8937a7877d4f1c06 +#: 7a7108c1fdb34bed8937a7877d4f1c06 +#: 7a7108c1fdb34bed8937a7877d4f1c06 +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 +#: c0b3b7fe32594f7c93abe776da7dd8f6 +#: c0b3b7fe32594f7c93abe776da7dd8f6 +#: c0b3b7fe32594f7c93abe776da7dd8f6 +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 +#: e9fbe45828cb4bd19e93296ab98065b3 +#: e9fbe45828cb4bd19e93296ab98065b3 +#: e9fbe45828cb4bd19e93296ab98065b3 +#: e9fbe45828cb4bd19e93296ab98065b3 +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 +#: cd77eae84e4c47198b881cc8c19d7012 +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 +#: eee74368fc62419e83a5fa7e4547b372 +#: eee74368fc62419e83a5fa7e4547b372 +#: eee74368fc62419e83a5fa7e4547b372 +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 +#: f4eee836c1ef4595a1249c72fc4aa856 +#: f4eee836c1ef4595a1249c72fc4aa856 +#: f4eee836c1ef4595a1249c72fc4aa856 +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 +#: 09cedcdcfe6748fd9851abb128364216 +#: 09cedcdcfe6748fd9851abb128364216 +#: 09cedcdcfe6748fd9851abb128364216 +#: 09cedcdcfe6748fd9851abb128364216 +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 +#: 79a25807046443a6bc1b79a1b106bd6e +#: 79a25807046443a6bc1b79a1b106bd6e +#: 79a25807046443a6bc1b79a1b106bd6e +#: 79a25807046443a6bc1b79a1b106bd6e +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 +#: 48031388459c4cebb09fdaaa927a12bd +#: 48031388459c4cebb09fdaaa927a12bd +#: 48031388459c4cebb09fdaaa927a12bd +#: 48031388459c4cebb09fdaaa927a12bd +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 +#: f7deaa2bbc044f24af765d5b1e3a0b1c +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 +#: d70b0c0665824f279f6f2d8f4c33368a +msgid "This requires :attr:`Intents.voice_states`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:9 +#: 43aeaecd4b2643a6bc63951f0bafe328 +#: 43aeaecd4b2643a6bc63951f0bafe328 +msgid "The timeout in seconds to wait for the voice endpoint." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:12 +#: 3c5bc8937793432ca7daa817aed76aa8 +#: 3c5bc8937793432ca7daa817aed76aa8 +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 +#: 614c4fd2722841e08c133eba1eea755c +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 +#: a7e95f41fa914cf38d3b0c61c7b2ff7a +msgid "A voice client that is fully connected to the voice server." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:22 +#: 978309374c9a4fcaa9ec5d4b81c4ea4f +#: 978309374c9a4fcaa9ec5d4b81c4ea4f +msgid ":class:`~discord.VoiceProtocol`" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:24 +#: ef6bea38102e444ea718dad6b316d70b +#: ef6bea38102e444ea718dad6b316d70b +msgid "Could not connect to the voice channel in time." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:25 +#: 3803ca73e6ff4e6e8a3660e0fb82b23c +#: 3803ca73e6ff4e6e8a3660e0fb82b23c +msgid "You are already connected to a voice channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.Connectable.connect:26 +#: 2d6a9796e95542f184dc8040a1e90187 +#: 2d6a9796e95542f184dc8040a1e90187 +msgid "The opus library has not been loaded." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:3 +#: 8284b6f7a985425eb7b9096b97fee46f +#: 8284b6f7a985425eb7b9096b97fee46f +#: 8284b6f7a985425eb7b9096b97fee46f +#: 8284b6f7a985425eb7b9096b97fee46f +#: 8284b6f7a985425eb7b9096b97fee46f +msgid "Creates an instant invite from a text or voice channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:5 +#: 70c428800cb74bfdb244a446a5c7f7ed +#: 70c428800cb74bfdb244a446a5c7f7ed +#: 70c428800cb74bfdb244a446a5c7f7ed +#: 70c428800cb74bfdb244a446a5c7f7ed +#: 70c428800cb74bfdb244a446a5c7f7ed +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 +#: bbb89bbf5cd24082927b096b88b65cfe +#: bbb89bbf5cd24082927b096b88b65cfe +#: bbb89bbf5cd24082927b096b88b65cfe +#: bbb89bbf5cd24082927b096b88b65cfe +#: bbb89bbf5cd24082927b096b88b65cfe +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 +#: bedcf4e2057b460d975ee26ec8e6b9f3 +#: bedcf4e2057b460d975ee26ec8e6b9f3 +#: bedcf4e2057b460d975ee26ec8e6b9f3 +#: bedcf4e2057b460d975ee26ec8e6b9f3 +#: bedcf4e2057b460d975ee26ec8e6b9f3 +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 +#: a639ea144cef4a2d8e7b0b5d1a2db86a +#: a639ea144cef4a2d8e7b0b5d1a2db86a +#: a639ea144cef4a2d8e7b0b5d1a2db86a +#: a639ea144cef4a2d8e7b0b5d1a2db86a +#: a639ea144cef4a2d8e7b0b5d1a2db86a +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 +#: 6eeeb747c2df4cf4b68c675601f7d3bf +#: 6eeeb747c2df4cf4b68c675601f7d3bf +#: 6eeeb747c2df4cf4b68c675601f7d3bf +#: 6eeeb747c2df4cf4b68c675601f7d3bf +#: 6eeeb747c2df4cf4b68c675601f7d3bf +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 +#: 3e5d68bfef38424ea4dd2e8dec8ea22e +#: 3e5d68bfef38424ea4dd2e8dec8ea22e +#: 3e5d68bfef38424ea4dd2e8dec8ea22e +#: 3e5d68bfef38424ea4dd2e8dec8ea22e +#: 3e5d68bfef38424ea4dd2e8dec8ea22e +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 +#: f7c3557ed02049ffa29494923a1632a1 +#: f7c3557ed02049ffa29494923a1632a1 +#: f7c3557ed02049ffa29494923a1632a1 +#: f7c3557ed02049ffa29494923a1632a1 +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 +#: 7856f6d98f9b4686a4aae6e6dc45240f +#: 7856f6d98f9b4686a4aae6e6dc45240f +#: 7856f6d98f9b4686a4aae6e6dc45240f +#: 7856f6d98f9b4686a4aae6e6dc45240f +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 +#: ba2d82cc52254953bd13d32eceaf43ef +#: ba2d82cc52254953bd13d32eceaf43ef +#: ba2d82cc52254953bd13d32eceaf43ef +#: ba2d82cc52254953bd13d32eceaf43ef +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 +#: 5aaa5f7dc0ff4ce587ae704ccf6526fa +#: 5aaa5f7dc0ff4ce587ae704ccf6526fa +#: 5aaa5f7dc0ff4ce587ae704ccf6526fa +#: 5aaa5f7dc0ff4ce587ae704ccf6526fa +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 +#: f1e931cf80764eb79c66781cbe3eb218 +#: f1e931cf80764eb79c66781cbe3eb218 +#: f1e931cf80764eb79c66781cbe3eb218 +#: f1e931cf80764eb79c66781cbe3eb218 +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 +#: 46f587a58bad446fbfa6950cdc349794 +#: 46f587a58bad446fbfa6950cdc349794 +#: 46f587a58bad446fbfa6950cdc349794 +#: 46f587a58bad446fbfa6950cdc349794 +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 +#: 5abd69aa39664224ab1cde302dbba8ee +#: 5abd69aa39664224ab1cde302dbba8ee +#: 5abd69aa39664224ab1cde302dbba8ee +#: 5abd69aa39664224ab1cde302dbba8ee +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 +#: fa1870165cd547d0ac1334f32bb75083 +#: fa1870165cd547d0ac1334f32bb75083 +#: fa1870165cd547d0ac1334f32bb75083 +#: fa1870165cd547d0ac1334f32bb75083 +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 +#: d5fe56ca5d4e4b62bb563b9daab914c9 +#: d5fe56ca5d4e4b62bb563b9daab914c9 +#: d5fe56ca5d4e4b62bb563b9daab914c9 +#: d5fe56ca5d4e4b62bb563b9daab914c9 +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 +#: ad6d07cc0ecc4daf8e70e62b42c54694 +#: ad6d07cc0ecc4daf8e70e62b42c54694 +#: ad6d07cc0ecc4daf8e70e62b42c54694 +#: ad6d07cc0ecc4daf8e70e62b42c54694 +#: ad6d07cc0ecc4daf8e70e62b42c54694 +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 +#: a44a756d8ef54c06b9c598b3c5057293 +#: a44a756d8ef54c06b9c598b3c5057293 +#: a44a756d8ef54c06b9c598b3c5057293 +#: a44a756d8ef54c06b9c598b3c5057293 +#: a44a756d8ef54c06b9c598b3c5057293 +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 +#: c31e3444e11d47d5a0c7c01273e242e2 +#: c31e3444e11d47d5a0c7c01273e242e2 +#: c31e3444e11d47d5a0c7c01273e242e2 +#: c31e3444e11d47d5a0c7c01273e242e2 +#: c31e3444e11d47d5a0c7c01273e242e2 +msgid "Invite creation failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.create_invite:59 +#: e7cf9d4d551c4341a736ddfb07f036b8 +#: e7cf9d4d551c4341a736ddfb07f036b8 +#: e7cf9d4d551c4341a736ddfb07f036b8 +#: e7cf9d4d551c4341a736ddfb07f036b8 +#: e7cf9d4d551c4341a736ddfb07f036b8 +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 +#: 76d4b05d53d24bb89f07ef3ea80937ae +#: 76d4b05d53d24bb89f07ef3ea80937ae +#: 76d4b05d53d24bb89f07ef3ea80937ae +#: 76d4b05d53d24bb89f07ef3ea80937ae +msgid "Deletes the channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.delete:5 +#: 790b7e62afe845a6b6bb0860e617ff2e +#: 790b7e62afe845a6b6bb0860e617ff2e +#: 790b7e62afe845a6b6bb0860e617ff2e +#: 790b7e62afe845a6b6bb0860e617ff2e +#: 790b7e62afe845a6b6bb0860e617ff2e +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 +#: 8db538d28f594660bf8aa72c650e4d61 +#: 8db538d28f594660bf8aa72c650e4d61 +#: 8db538d28f594660bf8aa72c650e4d61 +#: 8db538d28f594660bf8aa72c650e4d61 +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 +#: 0bde2d677c4c442d81074ef53bffa892 +#: 0bde2d677c4c442d81074ef53bffa892 +#: 0bde2d677c4c442d81074ef53bffa892 +#: 0bde2d677c4c442d81074ef53bffa892 +msgid "You do not have proper permissions to delete the channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.delete:13 +#: 76703abb28a94196bc3fe2539ff0fd17 +#: 76703abb28a94196bc3fe2539ff0fd17 +#: 76703abb28a94196bc3fe2539ff0fd17 +#: 76703abb28a94196bc3fe2539ff0fd17 +#: 76703abb28a94196bc3fe2539ff0fd17 +msgid "The channel was not found or was already deleted." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.delete:14 +#: 2242d4491ce5454f938e820c8e6e0f88 +#: 2242d4491ce5454f938e820c8e6e0f88 +#: 2242d4491ce5454f938e820c8e6e0f88 +#: 2242d4491ce5454f938e820c8e6e0f88 +#: 2242d4491ce5454f938e820c8e6e0f88 +msgid "Deleting the channel failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.invites:3 +#: dbc4b30c00eb410ebe53ad9b4896990c +#: dbc4b30c00eb410ebe53ad9b4896990c +#: dbc4b30c00eb410ebe53ad9b4896990c +#: dbc4b30c00eb410ebe53ad9b4896990c +#: dbc4b30c00eb410ebe53ad9b4896990c +msgid "Returns a list of all active instant invites from this channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.invites:5 +#: 5fcbbff57b014ff6a73619b4e701ef56 +#: 5fcbbff57b014ff6a73619b4e701ef56 +#: 5fcbbff57b014ff6a73619b4e701ef56 +#: 5fcbbff57b014ff6a73619b4e701ef56 +#: 5fcbbff57b014ff6a73619b4e701ef56 +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 +#: 05cac3b74a5f4adaad5d3d265f4819de +#: 05cac3b74a5f4adaad5d3d265f4819de +#: 05cac3b74a5f4adaad5d3d265f4819de +#: 05cac3b74a5f4adaad5d3d265f4819de +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 +#: 61992eebcf9d49e5b62a6f71ca4ffa9d +#: 61992eebcf9d49e5b62a6f71ca4ffa9d +#: 61992eebcf9d49e5b62a6f71ca4ffa9d +#: 61992eebcf9d49e5b62a6f71ca4ffa9d +#: 61992eebcf9d49e5b62a6f71ca4ffa9d +#: 61992eebcf9d49e5b62a6f71ca4ffa9d +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 +#: 6811b1001649454db7b2e3ee65c02d6a +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 +#: 928cb0355b304182beda16e7827b0e90 +#: 928cb0355b304182beda16e7827b0e90 +#: 928cb0355b304182beda16e7827b0e90 +#: 928cb0355b304182beda16e7827b0e90 +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 +#: 62bbf4b228aa4f73963ec11bde6809b4 +#: 62bbf4b228aa4f73963ec11bde6809b4 +#: 62bbf4b228aa4f73963ec11bde6809b4 +#: 62bbf4b228aa4f73963ec11bde6809b4 +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 +#: 64354ecf425049c18b97220a3cc8b93f +#: 64354ecf425049c18b97220a3cc8b93f +#: 64354ecf425049c18b97220a3cc8b93f +#: 64354ecf425049c18b97220a3cc8b93f +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 +#: 19e6d5cf82be4209980612975d29dff8 +#: 19e6d5cf82be4209980612975d29dff8 +#: 19e6d5cf82be4209980612975d29dff8 +#: 19e6d5cf82be4209980612975d29dff8 +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 +#: 28d86464680f49afa0f33bf4938eac79 +#: 28d86464680f49afa0f33bf4938eac79 +#: 28d86464680f49afa0f33bf4938eac79 +#: 28d86464680f49afa0f33bf4938eac79 +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 +#: 1f21d2ba65cc4e88bc94ccc4a533aba5 +#: 1f21d2ba65cc4e88bc94ccc4a533aba5 +#: 1f21d2ba65cc4e88bc94ccc4a533aba5 +#: 1f21d2ba65cc4e88bc94ccc4a533aba5 +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 +#: 6f149660295343d2bef512e3122f3cf9 +#: 6f149660295343d2bef512e3122f3cf9 +#: 6f149660295343d2bef512e3122f3cf9 +#: 6f149660295343d2bef512e3122f3cf9 +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 +#: 243b0f6c1dd942f09e1f66f4333f2937 +#: 243b0f6c1dd942f09e1f66f4333f2937 +#: 243b0f6c1dd942f09e1f66f4333f2937 +#: 243b0f6c1dd942f09e1f66f4333f2937 +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 +#: b8bbf52e3eb842fab9307ed3207602b0 +#: b8bbf52e3eb842fab9307ed3207602b0 +#: b8bbf52e3eb842fab9307ed3207602b0 +#: b8bbf52e3eb842fab9307ed3207602b0 +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 +#: b43c9a7f761945eaa7ff4de5fc52e741 +#: b43c9a7f761945eaa7ff4de5fc52e741 +#: b43c9a7f761945eaa7ff4de5fc52e741 +#: b43c9a7f761945eaa7ff4de5fc52e741 +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 +#: e78b0fba71c449c6b22bc68d7a42b8b7 +#: e78b0fba71c449c6b22bc68d7a42b8b7 +#: e78b0fba71c449c6b22bc68d7a42b8b7 +#: e78b0fba71c449c6b22bc68d7a42b8b7 +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 +#: eb8261bde35e4cf4b4cd36dcbf3084a6 +#: eb8261bde35e4cf4b4cd36dcbf3084a6 +#: eb8261bde35e4cf4b4cd36dcbf3084a6 +#: eb8261bde35e4cf4b4cd36dcbf3084a6 +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 +#: ec5967cc04484df9aaaa322214ff2ebf +#: ec5967cc04484df9aaaa322214ff2ebf +#: ec5967cc04484df9aaaa322214ff2ebf +#: ec5967cc04484df9aaaa322214ff2ebf +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 +#: 13385efe88d34243bb30e64a26401394 +#: 13385efe88d34243bb30e64a26401394 +#: 13385efe88d34243bb30e64a26401394 +#: 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 +#: b7dc82bf54634320a5031a32b5afd0e0 +#: b7dc82bf54634320a5031a32b5afd0e0 +#: b7dc82bf54634320a5031a32b5afd0e0 +#: b7dc82bf54634320a5031a32b5afd0e0 +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 +#: d2fe158d967147c8b4ef1867798ca82b +#: d2fe158d967147c8b4ef1867798ca82b +#: d2fe158d967147c8b4ef1867798ca82b +#: d2fe158d967147c8b4ef1867798ca82b +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 +#: cf5f4a1ff74146fb903c23deb37c3299 +#: cf5f4a1ff74146fb903c23deb37c3299 +#: cf5f4a1ff74146fb903c23deb37c3299 +#: cf5f4a1ff74146fb903c23deb37c3299 +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 +#: 83956f5a5333400b902ec3cbf55ef987 +#: 83956f5a5333400b902ec3cbf55ef987 +#: 83956f5a5333400b902ec3cbf55ef987 +#: 83956f5a5333400b902ec3cbf55ef987 +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 +#: f9b2ad6e19814664ac9b8151811dd122 +#: f9b2ad6e19814664ac9b8151811dd122 +#: f9b2ad6e19814664ac9b8151811dd122 +#: f9b2ad6e19814664ac9b8151811dd122 +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 +#: 424f1b06e4ca49da8f3ae55bd2b5a833 +#: 424f1b06e4ca49da8f3ae55bd2b5a833 +#: 424f1b06e4ca49da8f3ae55bd2b5a833 +#: 424f1b06e4ca49da8f3ae55bd2b5a833 +msgid "The role or user denoting whose overwrite to get." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.overwrites_for:8 +#: 941badf662e24af6bdb04e39a1020079 +#: 941badf662e24af6bdb04e39a1020079 +#: 941badf662e24af6bdb04e39a1020079 +#: 941badf662e24af6bdb04e39a1020079 +#: 941badf662e24af6bdb04e39a1020079 +msgid "The permission overwrites for this object." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.overwrites_for:9 +#: fc3fff034d7048b592fe35dcd866a631 +#: fc3fff034d7048b592fe35dcd866a631 +#: fc3fff034d7048b592fe35dcd866a631 +#: fc3fff034d7048b592fe35dcd866a631 +#: fc3fff034d7048b592fe35dcd866a631 +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 +#: ad61cc31ac914379a2e312de3d43ffe8 +#: ad61cc31ac914379a2e312de3d43ffe8 +#: ad61cc31ac914379a2e312de3d43ffe8 +#: ad61cc31ac914379a2e312de3d43ffe8 +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 +#: a116f87071af41338aeba09a8eb992af +#: a116f87071af41338aeba09a8eb992af +#: a116f87071af41338aeba09a8eb992af +#: a116f87071af41338aeba09a8eb992af +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 +#: 412081ad6b56428da03c40fe91e46896 +#: 412081ad6b56428da03c40fe91e46896 +#: 412081ad6b56428da03c40fe91e46896 +#: 412081ad6b56428da03c40fe91e46896 +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 +#: 3d8a5b7caf8449499a5df8e5f52da039 +#: 3d8a5b7caf8449499a5df8e5f52da039 +#: 3d8a5b7caf8449499a5df8e5f52da039 +#: 3d8a5b7caf8449499a5df8e5f52da039 +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 +#: f5a7c4f10acd4fc78ace8d9c7ae71a1e +#: f5a7c4f10acd4fc78ace8d9c7ae71a1e +#: f5a7c4f10acd4fc78ace8d9c7ae71a1e +#: f5a7c4f10acd4fc78ace8d9c7ae71a1e +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 +#: bb22b5f45b9744aba2495cbe1c5c3927 +#: bb22b5f45b9744aba2495cbe1c5c3927 +#: bb22b5f45b9744aba2495cbe1c5c3927 +#: bb22b5f45b9744aba2495cbe1c5c3927 +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 +#: 7792fc4132114a33a1d0dd6a31c0d67f +#: 7792fc4132114a33a1d0dd6a31c0d67f +#: 7792fc4132114a33a1d0dd6a31c0d67f +#: 7792fc4132114a33a1d0dd6a31c0d67f +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 +#: a9f75d8e2445493f8f13f904067552f4 +#: a9f75d8e2445493f8f13f904067552f4 +#: a9f75d8e2445493f8f13f904067552f4 +#: a9f75d8e2445493f8f13f904067552f4 +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 +#: f7edbbec0ac84cbc88a8a26badcac519 +#: f7edbbec0ac84cbc88a8a26badcac519 +#: f7edbbec0ac84cbc88a8a26badcac519 +#: f7edbbec0ac84cbc88a8a26badcac519 +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 +#: 6174d926cc1b4b0d99f7af83decc22fe +#: 6174d926cc1b4b0d99f7af83decc22fe +#: 6174d926cc1b4b0d99f7af83decc22fe +#: 6174d926cc1b4b0d99f7af83decc22fe +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 +#: 0de4faae977c4d34ba5ebf875178efb2 +#: 0de4faae977c4d34ba5ebf875178efb2 +#: 0de4faae977c4d34ba5ebf875178efb2 +#: 0de4faae977c4d34ba5ebf875178efb2 +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 +#: 5afc09453dd94d4aa2b35273e549c663 +#: 5afc09453dd94d4aa2b35273e549c663 +#: 5afc09453dd94d4aa2b35273e549c663 +#: 5afc09453dd94d4aa2b35273e549c663 +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 +#: 981749f5cb0242b8855f2826a6dc6bf4 +#: 981749f5cb0242b8855f2826a6dc6bf4 +#: 981749f5cb0242b8855f2826a6dc6bf4 +#: 981749f5cb0242b8855f2826a6dc6bf4 +msgid "If there is no category then this is ``False``." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:3 +#: 3a5fa731cfa147c7a0bfaa31890a8fe1 +#: 3a5fa731cfa147c7a0bfaa31890a8fe1 +#: 3a5fa731cfa147c7a0bfaa31890a8fe1 +#: 3a5fa731cfa147c7a0bfaa31890a8fe1 +#: 3a5fa731cfa147c7a0bfaa31890a8fe1 +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 +#: 3ef3986ccc4a47cf960c7dd5d60a5557 +#: 3ef3986ccc4a47cf960c7dd5d60a5557 +#: 3ef3986ccc4a47cf960c7dd5d60a5557 +#: 3ef3986ccc4a47cf960c7dd5d60a5557 +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 +#: b07e547adb1545f8a3616be524559dd4 +#: b07e547adb1545f8a3616be524559dd4 +#: b07e547adb1545f8a3616be524559dd4 +#: b07e547adb1545f8a3616be524559dd4 +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 +#: 764ab65cb31c493594eaa77947707624 +#: 764ab65cb31c493594eaa77947707624 +#: 764ab65cb31c493594eaa77947707624 +#: 764ab65cb31c493594eaa77947707624 +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 +#: 146970e2d3814a7188e3cbb525453e55 +#: 146970e2d3814a7188e3cbb525453e55 +#: 146970e2d3814a7188e3cbb525453e55 +#: 146970e2d3814a7188e3cbb525453e55 +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 +#: 346d7572d6cd45afa3d668860d51d232 +#: 346d7572d6cd45afa3d668860d51d232 +#: 346d7572d6cd45afa3d668860d51d232 +#: 346d7572d6cd45afa3d668860d51d232 +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:26 +#: 637f3a1a21694797a9ac311c64c0c911 +#: 637f3a1a21694797a9ac311c64c0c911 +#: 637f3a1a21694797a9ac311c64c0c911 +#: 637f3a1a21694797a9ac311c64c0c911 +#: 637f3a1a21694797a9ac311c64c0c911 +msgid "Setting allow and deny: ::" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:31 +#: 810d95b1d4994c63862f68887c77e831 +#: 810d95b1d4994c63862f68887c77e831 +#: 810d95b1d4994c63862f68887c77e831 +#: 810d95b1d4994c63862f68887c77e831 +#: 810d95b1d4994c63862f68887c77e831 +msgid "Deleting overwrites ::" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:35 +#: dae2ea6fc6544c64bf6008937d45f7d0 +#: dae2ea6fc6544c64bf6008937d45f7d0 +#: dae2ea6fc6544c64bf6008937d45f7d0 +#: dae2ea6fc6544c64bf6008937d45f7d0 +#: dae2ea6fc6544c64bf6008937d45f7d0 +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:43 +#: 03cfeadeceb24469845f590f9734b5ac +#: 03cfeadeceb24469845f590f9734b5ac +#: 03cfeadeceb24469845f590f9734b5ac +#: 03cfeadeceb24469845f590f9734b5ac +#: 03cfeadeceb24469845f590f9734b5ac +msgid "The member or role to overwrite permissions for." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:46 +#: dcf66235aaf14217aaf08ce4c7556408 +#: dcf66235aaf14217aaf08ce4c7556408 +#: dcf66235aaf14217aaf08ce4c7556408 +#: dcf66235aaf14217aaf08ce4c7556408 +#: dcf66235aaf14217aaf08ce4c7556408 +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 +#: 6f036719a4ef44aeb1c05e3412443113 +#: 6f036719a4ef44aeb1c05e3412443113 +#: 6f036719a4ef44aeb1c05e3412443113 +#: 6f036719a4ef44aeb1c05e3412443113 +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 +#: 9efb0463f8ca4001ab156472387d2537 +#: 9efb0463f8ca4001ab156472387d2537 +#: 9efb0463f8ca4001ab156472387d2537 +#: 9efb0463f8ca4001ab156472387d2537 +msgid "You do not have permissions to edit channel specific permissions." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:57 +#: 61bb29fcb29e4916a4342d95e7354727 +#: 61bb29fcb29e4916a4342d95e7354727 +#: 61bb29fcb29e4916a4342d95e7354727 +#: 61bb29fcb29e4916a4342d95e7354727 +#: 61bb29fcb29e4916a4342d95e7354727 +msgid "Editing channel specific permissions failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.abc.GuildChannel.set_permissions:58 +#: 4e7647606bd44e0b98e6cf273cb2d1ec +#: 4e7647606bd44e0b98e6cf273cb2d1ec +#: 4e7647606bd44e0b98e6cf273cb2d1ec +#: 4e7647606bd44e0b98e6cf273cb2d1ec +#: 4e7647606bd44e0b98e6cf273cb2d1ec +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 +#: eed46e2237c8429cb10297b23b78e9a2 +#: eed46e2237c8429cb10297b23b78e9a2 +#: eed46e2237c8429cb10297b23b78e9a2 +#: eed46e2237c8429cb10297b23b78e9a2 +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 +#: aac395884ca44a2f930fe268dfbcf173 +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 +#: ff1a46da477a45748d4878f27e338736 +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 +#: b0a39ba35b224de5b9bc4829d6564c07 +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 +#: e44ca07452324be283fc857fbc182383 +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 +#: 6008728ed3b44140a9d0d21ecc5f3928 +#: 6008728ed3b44140a9d0d21ecc5f3928 +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 +#: c6a9f7b9c9cf4b248b01fab6c0256cce +#: c6a9f7b9c9cf4b248b01fab6c0256cce +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 +#: 1fc0cdfa3ed24c29b2f792d652f54f7b +#: 1fc0cdfa3ed24c29b2f792d652f54f7b +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 +#: 28ba605672334ec98d75cfc20d4534bc +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 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +#: 62d4b92033714c14a7e588f356deec68 +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 +#: 575fb80fa5ad41f294d33252d69885fc +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 +#: 4bc04d411af54a45b89a5c855ec2ab0f +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 +#: c142aeb5a3c949ccb4255648b0bd5d10 +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 +#: 49b41174c824449cbd07131376945e32 +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 +#: 5d0e4e83b4f24731b34a35e79c46a8c1 +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 +#: 78ab2785551d40aebdd0c9db2b357a8e +#: 78ab2785551d40aebdd0c9db2b357a8e +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 +#: 1bfea59e058349e6983197c48ebab23c +#: 1bfea59e058349e6983197c48ebab23c +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 +#: 60ad98432301495e81b9d767d8bc2752 +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 +#: 6f346031716245248cab708988aa9e2b +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 +#: ded433826a6d40e98463ddc4efddb20e +#: ded433826a6d40e98463ddc4efddb20e +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 +#: 57b7e0b2c9594f87a4f6a794d8f8311d +#: 6e9e9dc0d2334596a368697a50b9bcdf +#: 6e9e9dc0d2334596a368697a50b9bcdf +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 +#: c9d4555a10334b05844245ef0bb77543 +#: bac68fd9b9b94a4db357840571c0db30 +#: bac68fd9b9b94a4db357840571c0db30 +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 +#: b305b4b190304f928eacfe9998ad4a2b +#: 78d68e26f3c249a587002c93966ab85f +#: 78d68e26f3c249a587002c93966ab85f +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 +#: 0e2e17416ca94d62957d593de02de4f8 +#: 4fd1e2553b774feead560beb83cb9a10 +#: 4fd1e2553b774feead560beb83cb9a10 +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 +#: a5114f88c58f463b828b0bbcdf8ea0cf +#: 02602cf743b24b9c840aa0cd9efd0edd +#: 02602cf743b24b9c840aa0cd9efd0edd +#: 02602cf743b24b9c840aa0cd9efd0edd +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 +#: febbc9cba8d34c6586876cd40429ec3b +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 +#: c94a1b5cbea24b01a9797e6870ae5ea4 +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 +#: 190377437a99469fbe3f65af715e569b +#: 190377437a99469fbe3f65af715e569b +#: 190377437a99469fbe3f65af715e569b +#: c2f8b5e3b60f49c2ae55cb0c96d9c761 +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 +#: e2024a8f3ffb496d9c436a8a62f58ff2 +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 +#: 7f960d2316a846959186aa98cc5bdc80 +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 +#: e9458a1d2e184ba08cb95ee060a70b67 +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 +#: f81c11da386445dbbb02292e3bc450c1 +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 +#: c7fa145264a345959a3d9ee21d0d3f9b +#: c7fa145264a345959a3d9ee21d0d3f9b +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 +#: 93341d8aa4fb44959bf727bb0998ab94 +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 +#: 44bf70fa78894c1daddd55e9d90838e2 +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 +#: d2a07b8aa3ab40839e60c1d979b40ceb +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 +#: 4c8a36b9a18a42cc928f6013bb72307c +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 +#: 2a7b951e1a5b452d93036b3794628d0d +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 +#: 1eda185924ee4e90b494cdb8b767c886 +#: 1eda185924ee4e90b494cdb8b767c886 +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 +#: 28cadf33bcaa4284b510b25b352040ba +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 +#: de489b1b036047c99f633e4585c04d92 +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 +#: 77a34e9892e94686b1a5737a8469fde8 +#: 77a34e9892e94686b1a5737a8469fde8 +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 +#: fab80e171db445d78867efd958f0536b +#: fab80e171db445d78867efd958f0536b +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 +#: 50ed6ace112b45399a2e24de081c9951 +#: 50ed6ace112b45399a2e24de081c9951 +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 +#: 39c3e1849aea42b1a5e44b6b35945813 +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 +#: c03fe611956149aba94e3914962f92df +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 +#: 1d1be76fe7b04528b2c3ee29212c3c84 +#: 1d1be76fe7b04528b2c3ee29212c3c84 +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 +#: b736174baf734a728df41ae7c8846701 +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 +#: 795407065f204ab394d5d71e46f4f9e4 +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 +#: aec9e5551cb74af8b49d87aceac3742b +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 +#: 2b1b27b29de74dada9a54eb48be4b94e +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 +#: a07120a4d00149718bbcb809103cc6a7 +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 +#: 0fc3c3b030404e49b32d2e3452611428 +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 +#: fbf735600cc44f92ab131b1a3b735685 +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 +#: 0102ac1b4d7c4838bb44d69f8d60d28c +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 +#: fd6df08adf534a90b14c140cbd59529b +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 +#: f3041c1cfd4f4cd0b84d05aec3166d18 +msgid "Starting the thread failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:1 +#: 53020510c3264070868a136e9d819a55 +#: 53020510c3264070868a136e9d819a55 +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 +#: eade018b8df94654aade6c41b12a606a +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 +#: d96d787d544246e8955385af1e212084 +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 +#: 18c4a1c74591444e8ab0eadccd6068a4 +msgid "Retrieve archived channels before the given date or ID." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:17 +#: 47e0f3baf0144f1ba8b3c4d5ef0bfe34 +#: 47e0f3baf0144f1ba8b3c4d5ef0bfe34 +msgid "Whether to retrieve private archived threads." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:20 +#: 53a32620bfa14fbb874c660624fe5617 +#: 53a32620bfa14fbb874c660624fe5617 +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 +#: 7893ab8ad95343709b667196bff9d808 +msgid ":class:`Thread` -- The archived threads." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:26 +#: 2d87b8ad74d74790955f8a8f7521ae0c +#: 2d87b8ad74d74790955f8a8f7521ae0c +msgid "You do not have permissions to get archived threads." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:27 +#: 00056e8969fc401c9d8d3a593d399d7b +#: 00056e8969fc401c9d8d3a593d399d7b +msgid "The request to get the archived threads failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:29 +#: 2e2ff553e8684e86a18df67eca7e1566 +#: 2e2ff553e8684e86a18df67eca7e1566 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:1 +#: dd7fe9e0e5104c1bb97c25dc8254e260 +#: dd7fe9e0e5104c1bb97c25dc8254e260 +msgid "Follows a channel using a webhook." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:3 +#: 20936b5e624649fe9dc85c8cc9da0a31 +#: 20936b5e624649fe9dc85c8cc9da0a31 +msgid "Only news channels can be followed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:7 +#: 4e6a755a76a24f0dac7823c73d8eeed5 +#: 4e6a755a76a24f0dac7823c73d8eeed5 +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 +#: 3a6238bf9ce5438aa21950c2d2f44a49 +msgid "The channel you would like to follow from." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:16 +#: 0e891d00bbcf4a789ddad17a6d35832c +#: 0e891d00bbcf4a789ddad17a6d35832c +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 +#: 7c0e19b5677c49e9ace5407d47115d0c +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 +#: 6e59b434e5ea44f28ea64487973c3373 +msgid "Following the channel failed." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:25 +#: aafe6d980d8c46cd89c2a0d6c857ced5 +#: aafe6d980d8c46cd89c2a0d6c857ced5 +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 +#: d3a81ce636a44a9e88b3eea449b50f70 +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 +#: f4fe0d12fcea454aa752afbccfa50240 +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 +#: 7241a3894f7647c99e02bf6dc83f92d7 +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 +#: 07d26c6d19384c6f86ae530ce8a92741 +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 +#: 2e3a7be955924d12b02a8a67a62243ce +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 +#: 8a6bd8833e2e4eb1b5b91fec38efc1a7 +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 +#: 5bd63434d23d47ef9405d7cd8f3c0792 +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 +#: b7f135a3e450454281ecbc95203edfe9 +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 +#: 37714f0cf619431f859f64895e535122 +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 +#: 0fd9fff73f23420c954048e6c55bbdae +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 +#: 298831af02f147868ac4921ae73b06f5 +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 +#: d7e569b01dcb4dcb8c79e2a0ca7cd9b0 +#: d7e569b01dcb4dcb8c79e2a0ca7cd9b0 +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 +#: 9f3b6e968acc47f09ad051f70e94b1d1 +#: 9f3b6e968acc47f09ad051f70e94b1d1 +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 +#: 8d7c7c56f12947279193129bd979cf00 +#: 8d7c7c56f12947279193129bd979cf00 +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 +#: e70e6c2d80344d49b442735fce54a425 +#: e70e6c2d80344d49b442735fce54a425 +#: e70e6c2d80344d49b442735fce54a425 +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 +#: 39127218ef194b2580d66ec98a1b28ef +#: 39127218ef194b2580d66ec98a1b28ef +#: 39127218ef194b2580d66ec98a1b28ef +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 +#: dffad35450864bf1ae2ea28d86a0cbe2 +#: dffad35450864bf1ae2ea28d86a0cbe2 +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 +#: 6bad54d4ee5a461daf1e24145a5bf9b4 +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 +#: 5e0919e094cc42b68aecea6053e15de7 +#: 5e0919e094cc42b68aecea6053e15de7 +#: 5e0919e094cc42b68aecea6053e15de7 +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 +#: 0947335f49564c9a9845a931f348d155 +#: 0947335f49564c9a9845a931f348d155 +#: 0947335f49564c9a9845a931f348d155 +msgid ":class:`StickerFormatType`" +msgstr "" + +#: ../../../discord/sticker.py:docstring of discord.sticker.Sticker:51 +#: ../../../discord/sticker.py:docstring of discord.sticker.StickerItem:39 +#: eb58efe02ae4445b8b7404efa57f07f4 +#: eb58efe02ae4445b8b7404efa57f07f4 +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 +#: 6de13fa5309f426d97885e856de66c2d +#: 6de13fa5309f426d97885e856de66c2d +#: 6de13fa5309f426d97885e856de66c2d +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 +#: a0ae038460cc4afeb1f55fc31edad93b +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 +#: be68507029b84b93bc3189b87e423c23 +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 +#: 5b0c86bf3fe74bc59f7526bb295a5f6b +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 +#: 3fc3b9a31e0843e99300bef5908239ae +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 +#: ed2e7768cefa4a21841b18d806ae7e22 +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 +#: c56a434ae2034ed1a139116a20d9e828 +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 +#: 0e1a2663052f464386761f009fafc287 +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..80b39b1e0f --- /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-13 10:18+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..65e400af14 --- /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-13 10:18+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..abc245ba15 --- /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-13 10:18+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..19645209d0 --- /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-13 10:18+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/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..3ff8d5c81f --- /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-13 10:18+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..0f7887abaa --- /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-13 10:18+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..1881448511 --- /dev/null +++ b/docs/build/locales/changelog.pot @@ -0,0 +1,1921 @@ +# 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-13 10:18+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" + +#: ../../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 +#: b32d85acd95341dfb2e580a11f6272ca +msgid "⚠️ **This Version Removes Support For Python 3.8** ⚠️" +msgstr "" + +#: ../../changelog.md:15 +#: ../../changelog.md:101 +#: ../../changelog.md:227 +#: ../../changelog.md:379 +#: ../../changelog.md:425 +#: ../../changelog.md:502 +#: ../../changelog.md:641 +#: ../../changelog.md:743 +#: ../../changelog.md:850 +#: 6f3f624eef944b38a861d712cf1c2dd3 +#: 6f3f624eef944b38a861d712cf1c2dd3 +#: 6f3f624eef944b38a861d712cf1c2dd3 +#: 6f3f624eef944b38a861d712cf1c2dd3 +#: 6f3f624eef944b38a861d712cf1c2dd3 +#: 6f3f624eef944b38a861d712cf1c2dd3 +#: 6f3f624eef944b38a861d712cf1c2dd3 +#: 6f3f624eef944b38a861d712cf1c2dd3 +#: 6f3f624eef944b38a861d712cf1c2dd3 +msgid "Changed" +msgstr "" + +#: ../../changelog.md:17 +#: 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:20 +#: 9fe0dfdfa63e4ad4b9c4e4043aef28b3 +msgid "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "" + +#: ../../changelog.md:23 +#: ../../changelog.md:30 +#: ../../changelog.md:137 +#: ../../changelog.md:398 +#: ../../changelog.md:471 +#: ../../changelog.md:526 +#: ../../changelog.md:542 +#: ../../changelog.md:610 +#: ../../changelog.md:711 +#: ../../changelog.md:800 +#: e8cf33c496dc4074adbbcfbbce555d76 +#: e8cf33c496dc4074adbbcfbbce555d76 +#: e8cf33c496dc4074adbbcfbbce555d76 +#: e8cf33c496dc4074adbbcfbbce555d76 +#: e8cf33c496dc4074adbbcfbbce555d76 +#: e8cf33c496dc4074adbbcfbbce555d76 +#: e8cf33c496dc4074adbbcfbbce555d76 +#: e8cf33c496dc4074adbbcfbbce555d76 +#: e8cf33c496dc4074adbbcfbbce555d76 +#: e8cf33c496dc4074adbbcfbbce555d76 +msgid "Added" +msgstr "" + +#: ../../changelog.md:25 +#: 73f8d143b51e4d75ba380e16b08e6dcb +msgid "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" +msgstr "" + +#: ../../changelog.md:28 +#: 2ea9c95bdc934b7bbbe972ad30512eb5 +msgid "[2.6.0] - 2024-07-09" +msgstr "" + +#: ../../changelog.md:32 +#: ee1185f07728432d90acac5a21dbec45 +msgid "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" +msgstr "" + +#: ../../changelog.md:34 +#: d88667c6f5dd4c8789c7f597cbcc5b58 +msgid "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" +msgstr "" + +#: ../../changelog.md:36 +#: 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:38 +#: 73f8d143b51e4d75ba380e16b08e6dcb +msgid "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" +msgstr "" + +#: ../../changelog.md:40 +#: 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:42 +#: f56f60d027c34c1c96d0aae7504b6cfb +msgid "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" +msgstr "" + +#: ../../changelog.md:44 +#: f9988dfe7b23484b9ba4809f9bb95d74 +msgid "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" +msgstr "" + +#: ../../changelog.md:46 +#: 9ac720e03f6142e4ac4e0b6de0379c55 +msgid "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" +msgstr "" + +#: ../../changelog.md:48 +#: a8616b9a932f4606b85de797fc499ba7 +msgid "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "" + +#: ../../changelog.md:50 +#: 1c4f1fdcf05c43aba319d2e797df1b3e +msgid "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" +msgstr "" + +#: ../../changelog.md:52 +#: 44550f6f16534a32aae326204a92f827 +msgid "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" +msgstr "" + +#: ../../changelog.md:54 +#: fc13286743f845d19a7cab16bf48759f +msgid "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "" + +#: ../../changelog.md:55 +#: 90ea693eff9d4606a4c04da0d022efe1 +msgid "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "" + +#: ../../changelog.md:57 +#: b0e2a36ec1474943ac739d3a17c79296 +msgid "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" +msgstr "" + +#: ../../changelog.md:58 +#: 1acba6757cf74da68c1302cbed5100b5 +msgid "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" +msgstr "" + +#: ../../changelog.md:61 +#: ../../changelog.md:269 +#: ../../changelog.md:385 +#: ../../changelog.md:435 +#: ../../changelog.md:453 +#: ../../changelog.md:464 +#: ../../changelog.md:492 +#: ../../changelog.md:518 +#: ../../changelog.md:531 +#: ../../changelog.md:574 +#: ../../changelog.md:588 +#: ../../changelog.md:595 +#: ../../changelog.md:603 +#: ../../changelog.md:651 +#: ../../changelog.md:757 +#: ../../changelog.md:863 +#: ../../changelog.md:900 +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +#: 25748af9e8d041dc8b2c9e7a88663f4f +msgid "Fixed" +msgstr "" + +#: ../../changelog.md:63 +#: 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:65 +#: 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:68 +#: 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:70 +#: 9d69c269ed79425ab60e09f9b5e2ee4b +msgid "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" +msgstr "" + +#: ../../changelog.md:72 +#: 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:74 +#: 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:76 +#: 8b40273b3f334953b36d4e726019a6d1 +msgid "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" +msgstr "" + +#: ../../changelog.md:78 +#: 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:80 +#: ef1005168cfb44b6b8f2055793ee601d +msgid "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "" + +#: ../../changelog.md:82 +#: 7869c915b3f14f07a5bf3a4475157805 +msgid "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" +msgstr "" + +#: ../../changelog.md:84 +#: 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:86 +#: 878001efd2cc45dead2ee90071cecf01 +msgid "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" +msgstr "" + +#: ../../changelog.md:88 +#: 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:90 +#: 55d4ea1bd82340bcb8c23812b5179448 +msgid "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" +msgstr "" + +#: ../../changelog.md:92 +#: 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:94 +#: 6861ca06f105483bbc97a0928b422c0a +msgid "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" +msgstr "" + +#: ../../changelog.md:96 +#: 0fe082c072ae49f581e23f1910056ed8 +msgid "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "" + +#: ../../changelog.md:98 +#: af74ad39a1b34e1fa81b9328b1540ea5 +msgid "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" +msgstr "" + +#: ../../changelog.md:103 +#: c07af9a4c1fd4892ae280f8510c5161f +msgid "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" +msgstr "" + +#: ../../changelog.md:105 +#: 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:107 +#: 3131b38385834d42af1359ccf1b8e9e8 +msgid "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "" + +#: ../../changelog.md:109 +#: 38abe22de33943b2b3ff6091e2c3779f +msgid "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "" + +#: ../../changelog.md:111 +#: 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:113 +#: 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:116 +#: 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:118 +#: 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:121 +#: 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:124 +#: ../../changelog.md:262 +#: ../../changelog.md:511 +#: ../../changelog.md:752 +#: cb54f87243e542f6bdc3742c26311fa6 +#: cb54f87243e542f6bdc3742c26311fa6 +#: cb54f87243e542f6bdc3742c26311fa6 +#: cb54f87243e542f6bdc3742c26311fa6 +msgid "Removed" +msgstr "" + +#: ../../changelog.md:126 +#: 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:129 +#: 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:132 +#: 4d2440e51f8346a5894152a1e3ac6351 +msgid "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" +msgstr "" + +#: ../../changelog.md:135 +#: 6a0c9c7b35c54520a5ae4547c8382a6e +msgid "[2.5.0] - 2024-03-02" +msgstr "" + +#: ../../changelog.md:139 +#: 60a5bb23d20a46b29897ff0b90b12c68 +msgid "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" +msgstr "" + +#: ../../changelog.md:141 +#: 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:143 +#: 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:146 +#: 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:148 +#: 3dc5ef7302d8499f8f3b37132cad769a +msgid "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" +msgstr "" + +#: ../../changelog.md:150 +#: b26f8600ddae4ee7adf165d713c4c520 +msgid "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "" + +#: ../../changelog.md:152 +#: 4c1d702a0fd34e05b931d0149b6d2e88 +msgid "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" +msgstr "" + +#: ../../changelog.md:154 +#: c424e9e7177746638415ee55b969a529 +msgid "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" +msgstr "" + +#: ../../changelog.md:156 +#: 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:159 +#: af0b802a69904f288b90a992f9990483 +msgid "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "" + +#: ../../changelog.md:161 +#: 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:164 +#: 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:167 +#: 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:170 +#: 9d551823bcc84935a681e5d58adf5111 +msgid "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" +msgstr "" + +#: ../../changelog.md:172 +#: c3f3b5baaf6d4bf3a3deaa582d1444a1 +msgid "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" +msgstr "" + +#: ../../changelog.md:174 +#: 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:177 +#: 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:180 +#: b21a35a76bac4e2d9ae6a07c7a3a696a +msgid "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" +msgstr "" + +#: ../../changelog.md:182 +#: 74a9e9832d4c4a6fa8734778209c65e4 +msgid "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" +msgstr "" + +#: ../../changelog.md:184 +#: f2ec2163c71c48b9a21d3bd75fff5064 +msgid "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "" + +#: ../../changelog.md:186 +#: 85eb170585cb42f598e263c7b60a31e0 +msgid "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" +msgstr "" + +#: ../../changelog.md:188 +#: 7959cb02aa124f1b82dc5adbc03e84c5 +msgid "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" +msgstr "" + +#: ../../changelog.md:190 +#: 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:192 +#: 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:195 +#: 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:197 +#: 42ed7327fefc4b54872053b06dc3d128 +msgid "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" +msgstr "" + +#: ../../changelog.md:199 +#: 72df647a50374daa932d83ec54fadbce +msgid "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" +msgstr "" + +#: ../../changelog.md:201 +#: dddf1b7b1aba48dfb0f3282e4d0658a2 +msgid "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" +msgstr "" + +#: ../../changelog.md:203 +#: 3b2c11ddd69145ff9b65a168d5f20f04 +msgid "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "" + +#: ../../changelog.md:205 +#: 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:208 +#: 4620d311330a4c04b6b2b7b4de078652 +msgid "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" +msgstr "" + +#: ../../changelog.md:210 +#: 90293effcc9a4c0cbe82b4d50f4e2604 +msgid "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" +msgstr "" + +#: ../../changelog.md:212 +#: f1c971d407c9454c85b3b93e5be66b65 +msgid "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" +msgstr "" + +#: ../../changelog.md:214 +#: 4f80fa16c23e41c19ad5f98cb4764338 +msgid "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" +msgstr "" + +#: ../../changelog.md:216 +#: 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:218 +#: 4d570b6175b846b7b096d02a18bf1053 +msgid "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" +msgstr "" + +#: ../../changelog.md:220 +#: 6e961ffbbb9c4e43a860891df7ed6fa5 +msgid "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" +msgstr "" + +#: ../../changelog.md:222 +#: ee841b6b671d4856b893970d196abd64 +msgid "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" +msgstr "" + +#: ../../changelog.md:224 +#: 2608a06bd147422aa67260fc397061b3 +msgid "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" +msgstr "" + +#: ../../changelog.md:229 +#: 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:232 +#: 3f5b3c8765174ac6aaefd7493e389482 +msgid "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" +msgstr "" + +#: ../../changelog.md:234 +#: 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:236 +#: 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:238 +#: 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:241 +#: 97745879546247a08a47059715774c5b +msgid "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "" + +#: ../../changelog.md:243 +#: 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:247 +#: 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:250 +#: 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:253 +#: 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:255 +#: 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:257 +#: 3bab78924e3d402698ce98a72ddc2c78 +msgid "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" +msgstr "" + +#: ../../changelog.md:259 +#: ca59a473432d434ca872411f9c66003d +msgid "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" +msgstr "" + +#: ../../changelog.md:264 +#: 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:266 +#: 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:271 +#: 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:274 +#: 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:276 +#: 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:279 +#: 26359420acd84d13b7ec8078c585de73 +msgid "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" +msgstr "" + +#: ../../changelog.md:281 +#: 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:283 +#: 18befe9e39544595a7a2036d48d19470 +msgid "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "" + +#: ../../changelog.md:285 +#: 084a586848d74bfeb5f2ceba591293d0 +msgid "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "" + +#: ../../changelog.md:287 +#: 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:289 +#: a3a4c596689748fe814636d674727419 +msgid "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "" + +#: ../../changelog.md:291 +#: 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:294 +#: fae4d3fe283e4ea396db05e19418ce5d +msgid "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" +msgstr "" + +#: ../../changelog.md:296 +#: eaf24d26663f4e6380db8ad8f0172cbe +msgid "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" +msgstr "" + +#: ../../changelog.md:298 +#: 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:300 +#: 47c28724914e4fc9a18709531f47c88d +msgid "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" +msgstr "" + +#: ../../changelog.md:302 +#: 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:304 +#: a148a83edd1f4f7b845a87b1a987c516 +msgid "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "" + +#: ../../changelog.md:306 +#: 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:308 +#: 1770b0d4e2994906acfa30119c7eb482 +msgid "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" +msgstr "" + +#: ../../changelog.md:310 +#: df13f489e5fa4cc48904626e021c027d +msgid "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" +msgstr "" + +#: ../../changelog.md:312 +#: 269b54a1fd2744a7866a615c72ace4a8 +msgid "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" +msgstr "" + +#: ../../changelog.md:314 +#: 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:317 +#: 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:319 +#: 2b542989e4474b1497f08ac6f19f99ed +msgid "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" +msgstr "" + +#: ../../changelog.md:321 +#: b5e55bb544e94272b3397bbc0e072ec3 +msgid "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" +msgstr "" + +#: ../../changelog.md:323 +#: 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:326 +#: 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:328 +#: 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:330 +#: c17344409e9f492a8fd6b8c55ed614aa +msgid "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" +msgstr "" + +#: ../../changelog.md:332 +#: 12ea4e48fc584a9c87ef676eeacfcd07 +msgid "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" +msgstr "" + +#: ../../changelog.md:334 +#: 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:336 +#: 7327cd43427e488999e090c78cac0b79 +msgid "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" +msgstr "" + +#: ../../changelog.md:338 +#: 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:340 +#: 8f18e8d005b1496387f152f3df8662b7 +msgid "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" +msgstr "" + +#: ../../changelog.md:342 +#: d15ec1bf07934c9d86604965290c99bf +msgid "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" +msgstr "" + +#: ../../changelog.md:344 +#: 2eb6e57c0a364efd86ffa8096f540133 +msgid "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" +msgstr "" + +#: ../../changelog.md:346 +#: 5b2283d5d5e640999855ad3042fc5e6b +msgid "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" +msgstr "" + +#: ../../changelog.md:348 +#: d3b786079fea46bc8786e6b5154c03ed +msgid "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" +msgstr "" + +#: ../../changelog.md:350 +#: b25e60c5a037415e80243abad7f9df8f +msgid "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" +msgstr "" + +#: ../../changelog.md:352 +#: 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:354 +#: 17ed8177c40a476fb48f4d90f37837c7 +msgid "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" +msgstr "" + +#: ../../changelog.md:356 +#: 5114e2e8307349088415bbbee6af60e4 +msgid "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" +msgstr "" + +#: ../../changelog.md:358 +#: 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:361 +#: 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:363 +#: 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:365 +#: 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:367 +#: 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:370 +#: 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:372 +#: 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:374 +#: 8ef80de7fad747f88bcdb50c5d39b51b +msgid "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" +msgstr "" + +#: ../../changelog.md:377 +#: b4456318b5c84fd28244fb8d7f496360 +msgid "[2.4.1] - 2023-03-20" +msgstr "" + +#: ../../changelog.md:381 +#: 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:387 +#: 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:389 +#: 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:392 +#: 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:396 +#: c101984320c34ce99992f9fe847e0e88 +msgid "[2.4.0] - 2023-02-10" +msgstr "" + +#: ../../changelog.md:400 +#: 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:403 +#: 7fd8831246324c0ba80b842014371a93 +msgid "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" +msgstr "" + +#: ../../changelog.md:405 +#: 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:409 +#: 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:413 +#: f5ee939eced64359a65e9e63f4c50556 +msgid "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "" + +#: ../../changelog.md:415 +#: ee535bdbc1cd4d558c6fa469a5b0d528 +msgid "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" +msgstr "" + +#: ../../changelog.md:417 +#: fa69515bb7074d55a6b5abe0177aac95 +msgid "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "" + +#: ../../changelog.md:419 +#: 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:422 +#: 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:427 +#: 571ca9ff303e4bd994e1179a0cadb5b3 +msgid "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" +msgstr "" + +#: ../../changelog.md:429 +#: 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:432 +#: 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:437 +#: 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:441 +#: 8818ab33e8604db2877b20c041af6723 +msgid "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" +msgstr "" + +#: ../../changelog.md:443 +#: 9fe0dfdfa63e4ad4b9c4e4043aef28b3 +msgid "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" +msgstr "" + +#: ../../changelog.md:446 +#: ea5b04755aae4a53a625348b5d5f945d +msgid "[2.3.3] - 2023-02-10" +msgstr "" + +#: ../../changelog.md:448 +#: 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:451 +#: aeae11c1ec9e4f4ca20b998880bc4e5b +msgid "[2.3.2] - 2022-12-03" +msgstr "" + +#: ../../changelog.md:455 +#: 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:457 +#: 7b22f35de99640918b24cf129a8708a1 +msgid "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" +msgstr "" + +#: ../../changelog.md:459 +#: b940bd229d2b4e6891eec2561e8e815c +msgid "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" +msgstr "" + +#: ../../changelog.md:462 +#: 1b92099482524c32940e7b2962f78c68 +msgid "[2.3.1] - 2022-11-27" +msgstr "" + +#: ../../changelog.md:466 +#: 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:469 +#: eeb4225156bc403cb9430c14142f0030 +msgid "[2.3.0] - 2022-11-23" +msgstr "" + +#: ../../changelog.md:473 +#: 1f69a42547d7413d81ac3be425763eca +msgid "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" +msgstr "" + +#: ../../changelog.md:475 +#: faba5859b8964373ba18f34a5830b58a +msgid "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" +msgstr "" + +#: ../../changelog.md:476 +#: 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:479 +#: 99a675fe67cf47bd8552026dcb0d7680 +msgid "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" +msgstr "" + +#: ../../changelog.md:481 +#: ee8b90ba67724d46a3efd5335b0a029a +msgid "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" +msgstr "" + +#: ../../changelog.md:483 +#: 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:485 +#: 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:487 +#: 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:489 +#: 2a37ee55e00e4e68b43bcf62c0b6c16b +msgid "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" +msgstr "" + +#: ../../changelog.md:494 +#: b96a634b3523470b9c6321bfe1d0d386 +msgid "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" +msgstr "" + +#: ../../changelog.md:496 +#: cc90297f0d5b47c7b04fcc3561b2ee44 +msgid "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" +msgstr "" + +#: ../../changelog.md:498 +#: 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:504 +#: 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:507 +#: 7421d3fe662f4595af3381037136c502 +msgid "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" +msgstr "" + +#: ../../changelog.md:513 +#: 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:516 +#: a11bd7aede7844c6b417faeae902549d +msgid "[2.2.2] - 2022-10-05" +msgstr "" + +#: ../../changelog.md:520 +#: 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:524 +#: 804d49d35a1a4950bb1844cb14422c04 +msgid "[2.2.1] - 2022-10-05" +msgstr "" + +#: ../../changelog.md:528 +#: 96fc9a6acc3d412eb0e4fe8e93e6bce4 +msgid "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "" + +#: ../../changelog.md:533 +#: 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:535 +#: cdff853f73034e329f46051f2eee14d5 +msgid "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" +msgstr "" + +#: ../../changelog.md:537 +#: 6e43909d03324ff994e8e0c5521b4ab8 +msgid "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" +msgstr "" + +#: ../../changelog.md:540 +#: 7c216775f43c4a4283eada7e4c5566be +msgid "[2.2.0] - 2022-10-02" +msgstr "" + +#: ../../changelog.md:544 +#: 887646ff61cc484c8fb5a1b77f4705b3 +msgid "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" +msgstr "" + +#: ../../changelog.md:546 +#: 1cab4dd437fc47059e14c6622b309200 +msgid "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" +msgstr "" + +#: ../../changelog.md:548 +#: 628dc16b78d7462d9e752a6fd5c34f0d +msgid "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "" + +#: ../../changelog.md:550 +#: 62fc2f7a9b7647efb0eaeabe6e18b131 +msgid "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "" + +#: ../../changelog.md:552 +#: 86674d77e2244a8f9a2273474845bc45 +msgid "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" +msgstr "" + +#: ../../changelog.md:554 +#: eaa5c0bba1a24094995e8bb0a52b7ca0 +msgid "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "" + +#: ../../changelog.md:556 +#: f3da627f546c4aebadcf3322597750da +msgid "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" +msgstr "" + +#: ../../changelog.md:558 +#: 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:560 +#: 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:564 +#: 5b535d4b52244097b05ec474ea2121c6 +msgid "Deprecated" +msgstr "" + +#: ../../changelog.md:566 +#: 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:569 +#: 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:576 +#: 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:579 +#: e24fad332ee74561882cb0fe5683d373 +msgid "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" +msgstr "" + +#: ../../changelog.md:581 +#: 1658154957934f93aea580480a93f06d +msgid "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" +msgstr "" + +#: ../../changelog.md:583 +#: 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:586 +#: 2dd2c8f954934bb593bf96a65aaf49ce +msgid "[2.1.3] - 2022-09-06" +msgstr "" + +#: ../../changelog.md:590 +#: f97d21f188914b99a02eddf404a430d9 +msgid "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" +msgstr "" + +#: ../../changelog.md:593 +#: 20f3c230725b4f879eaf13fe8fab8861 +msgid "[2.1.2] - 2022-09-06" +msgstr "" + +#: ../../changelog.md:597 +#: 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:601 +#: 439fb1afd83545f8b5d955600ad11510 +msgid "[2.1.1] - 2022-08-25" +msgstr "" + +#: ../../changelog.md:605 +#: e74d531343704a3faafa44b907a76e3f +msgid "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" +msgstr "" + +#: ../../changelog.md:608 +#: d08ad13239c7439cbbd09aae4a16c23d +msgid "[2.1.0] - 2022-08-25" +msgstr "" + +#: ../../changelog.md:612 +#: 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:614 +#: 59b42b5316384e81b6ef5f2cfeee36ff +msgid "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "" + +#: ../../changelog.md:616 +#: 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:619 +#: 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:622 +#: 5a44482095724e8c854fb0dac8a1b688 +msgid "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" +msgstr "" + +#: ../../changelog.md:624 +#: f384ae7bd39d4645a038b219cc5e3d41 +msgid "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" +msgstr "" + +#: ../../changelog.md:626 +#: 84fd56364f2e426f8059ab543cf8fa9f +msgid "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" +msgstr "" + +#: ../../changelog.md:628 +#: 116daae4f3be479d91f71c1dfb2e158e +msgid "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:630 +#: aa264304900847509610971067c61d13 +msgid "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:632 +#: f3a1898c5fb94d22ad268c1b80c06956 +msgid "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:634 +#: 6bbb2d7903f94ccf928e6d4a39d6181c +msgid "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:636 +#: bf536e2d15b34745aa6202fefc7ecb86 +msgid "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:638 +#: e9a5cb929d2a400996754846071ec5b6 +msgid "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "" + +#: ../../changelog.md:643 +#: 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:646 +#: 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:648 +#: 1656bec918854d6297b74bb1e35a904f +msgid "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" +msgstr "" + +#: ../../changelog.md:653 +#: a16756bd1a69469ab4a723abc6249124 +msgid "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" +msgstr "" + +#: ../../changelog.md:655 +#: 22c69d421a4e44b5a09e1885e5b1db36 +msgid "Fix type issues in options.py ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" +msgstr "" + +#: ../../changelog.md:657 +#: 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:659 +#: c18c8cdfbd014c69bef54df5485b077e +msgid "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" +msgstr "" + +#: ../../changelog.md:661 +#: 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:663 +#: 74ba25ff24a7407f928e6a503cd7731a +msgid "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" +msgstr "" + +#: ../../changelog.md:665 +#: 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:668 +#: 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:670 +#: 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:672 +#: 203cde94f8b84494a4910014cfd9cb86 +msgid "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" +msgstr "" + +#: ../../changelog.md:674 +#: 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:676 +#: 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:678 +#: db74b72ec1cb4f2ca20c8ec590aecc57 +msgid "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" +msgstr "" + +#: ../../changelog.md:680 +#: 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:682 +#: e8f97a297155469dad5bf1c0065f7248 +msgid "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" +msgstr "" + +#: ../../changelog.md:684 +#: 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:687 +#: 6f46f75334964b6e803da39b08058134 +msgid "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" +msgstr "" + +#: ../../changelog.md:689 +#: f8eb486c25734047862d39115603e056 +msgid "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" +msgstr "" + +#: ../../changelog.md:691 +#: 98838fe24b00482b90f84b4aeef38bdf +msgid "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" +msgstr "" + +#: ../../changelog.md:694 +#: 1a3f1825ed6940388193b1ef07b1dc76 +msgid "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" +msgstr "" + +#: ../../changelog.md:697 +#: ../../changelog.md:704 +#: 4b8d0071a17948a789b4a3850b4cfd3e +#: 4b8d0071a17948a789b4a3850b4cfd3e +msgid "Security" +msgstr "" + +#: ../../changelog.md:699 +#: 595d6f7ff4074370b90bec1e9625132b +msgid "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" +msgstr "" + +#: ../../changelog.md:702 +#: 0cd65ab173c0451bb9ae1ba3fb40b232 +msgid "[2.0.1] - 2022-08-16" +msgstr "" + +#: ../../changelog.md:706 +#: ee4dccbc90654cbcb8d0c05f33e124bd +msgid "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" +msgstr "" + +#: ../../changelog.md:709 +#: 97414cf074d2496da5acf484c69838a0 +msgid "[2.0.0] - 2022-07-08" +msgstr "" + +#: ../../changelog.md:713 +#: f926a09ced2d481492984936a41f6dc7 +msgid "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "" + +#: ../../changelog.md:715 +#: 1ecb7fa75dff41449dde4615b6e710bf +msgid "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" +msgstr "" + +#: ../../changelog.md:717 +#: 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:719 +#: 825af1ddcde1480883171e981e1da9cb +msgid "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" +msgstr "" + +#: ../../changelog.md:721 +#: 98bfc9d190a748579e55cb74c092cc50 +msgid "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" +msgstr "" + +#: ../../changelog.md:723 +#: 63e71264efce40bc9ac3f7f177759671 +msgid "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" +msgstr "" + +#: ../../changelog.md:725 +#: 583f0a83c644415fbd248eee5f5d8fc5 +msgid "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" +msgstr "" + +#: ../../changelog.md:727 +#: 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:729 +#: d30d886bcbdc4227805bd6ddb03ba9ae +msgid "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "" + +#: ../../changelog.md:731 +#: eaf48b5278cf458da58e8d6c74d872d5 +msgid "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" +msgstr "" + +#: ../../changelog.md:733 +#: 618f1139d2854adb9498024de569eae4 +msgid "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" +msgstr "" + +#: ../../changelog.md:735 +#: 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:737 +#: bcd876b3c5524167af08b9c49fc9461d +msgid "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" +msgstr "" + +#: ../../changelog.md:738 +#: 8963ace1487b41d689eaed24f1cbf62f +msgid "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" +msgstr "" + +#: ../../changelog.md:740 +#: 8768c70fc00d4e31b7a80d6b00075daa +msgid "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" +msgstr "" + +#: ../../changelog.md:745 +#: ee060919f00041db8b5be55cafb2c8c8 +msgid "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" +msgstr "" + +#: ../../changelog.md:747 +#: dc5c99a601e643378a95fd67cc096a3a +msgid "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "" + +#: ../../changelog.md:749 +#: 8c2807db86ce44949802e774add43122 +msgid "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" +msgstr "" + +#: ../../changelog.md:754 +#: 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:759 +#: 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:761 +#: c7e8ed3ea27249a3ba3139f4749fe67f +msgid "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" +msgstr "" + +#: ../../changelog.md:763 +#: 138b4b66eaaa464cbd8b470b39dfe3cf +msgid "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "" + +#: ../../changelog.md:765 +#: 83f10b99afb54627877654d2f7d13542 +msgid "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" +msgstr "" + +#: ../../changelog.md:767 +#: f5ed697972464eef896be8d20a91d41f +msgid "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" +msgstr "" + +#: ../../changelog.md:769 +#: 718f4fb72ad84abbb9e6433b4106c70a +msgid "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" +msgstr "" + +#: ../../changelog.md:771 +#: 3af4499fd5724a2bbab36758855eefba +msgid "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" +msgstr "" + +#: ../../changelog.md:773 +#: 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:775 +#: 879a1e7ca8194078b8b54e0d9399b4b4 +msgid "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" +msgstr "" + +#: ../../changelog.md:777 +#: 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:779 +#: 980b8f6131b547259c6e3243f776160f +msgid "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "" + +#: ../../changelog.md:781 +#: 1579cb6ca4374946ae9d2aa00c6a2a05 +msgid "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" +msgstr "" + +#: ../../changelog.md:783 +#: 1addb165c9c3437ca5dca418e2638d46 +msgid "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" +msgstr "" + +#: ../../changelog.md:785 +#: d4ea2324cedb4d729a6e016ed9914ed1 +msgid "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" +msgstr "" + +#: ../../changelog.md:787 +#: d965df96de2444d2a3da4bac5f41fa32 +msgid "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" +msgstr "" + +#: ../../changelog.md:789 +#: a426447d83a0416b82a2ad38cf28f165 +msgid "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" +msgstr "" + +#: ../../changelog.md:791 +#: 8f82c1560e2a4beca1d49b51032693c7 +msgid "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" +msgstr "" + +#: ../../changelog.md:793 +#: 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:795 +#: 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:798 +#: dbcf3c4d21c14c479387995847602e95 +msgid "[2.0.0-rc.1] - 2022-05-17" +msgstr "" + +#: ../../changelog.md:802 +#: 71808897a05a4d3791bc6f9dac867d50 +msgid "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" +msgstr "" + +#: ../../changelog.md:804 +#: 1666cc8af144493294f14e435b91e247 +msgid "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" +msgstr "" + +#: ../../changelog.md:806 +#: 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:809 +#: 65fefed9ae734de68d3bf2484df13eee +msgid "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" +msgstr "" + +#: ../../changelog.md:811 +#: e51f6c5505f84ed69127a68178587f84 +msgid "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" +msgstr "" + +#: ../../changelog.md:813 +#: 3b7406b62a0941a398ac7fdd33ea2a0b +msgid "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" +msgstr "" + +#: ../../changelog.md:815 +#: 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:818 +#: 6d7c1c2574e84c82aa22abf622baf28d +msgid "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" +msgstr "" + +#: ../../changelog.md:820 +#: e7e85506316f4046a79bf1bee7c0213e +msgid "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" +msgstr "" + +#: ../../changelog.md:822 +#: 20413647edf3450886b175cd2f53edc2 +msgid "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" +msgstr "" + +#: ../../changelog.md:824 +#: d29d910018724595a72b329b086dae1b +msgid "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" +msgstr "" + +#: ../../changelog.md:826 +#: 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:828 +#: 715f3642c43e4b818b36ac879254a1ad +msgid "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" +msgstr "" + +#: ../../changelog.md:830 +#: 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:833 +#: a1b658522e74433b8248a8632c132c83 +msgid "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" +msgstr "" + +#: ../../changelog.md:835 +#: 45b48efa33e2445ea77ca5d350cbc1f7 +msgid "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" +msgstr "" + +#: ../../changelog.md:837 +#: 9201af3619a241128b9361d32485948e +msgid "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" +msgstr "" + +#: ../../changelog.md:839 +#: bd0157bc4b0f4b8f8628064afc16fae9 +msgid "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" +msgstr "" + +#: ../../changelog.md:841 +#: 6e19fe31455347129e5a8bc95d7b3572 +msgid "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" +msgstr "" + +#: ../../changelog.md:843 +#: 99861fea2ef74154a4150f91fa8eef16 +msgid "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" +msgstr "" + +#: ../../changelog.md:845 +#: 0a54f2b4c9764c26a62124a36810df1f +msgid "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" +msgstr "" + +#: ../../changelog.md:847 +#: 99d5ef66098a46d3a923357f8a26c740 +msgid "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" +msgstr "" + +#: ../../changelog.md:852 +#: 3fc4ac26224f413589a65d539f172b72 +msgid "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" +msgstr "" + +#: ../../changelog.md:854 +#: c6ba3c12853545738f571c0366063c82 +msgid "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" +msgstr "" + +#: ../../changelog.md:856 +#: 916c6e9e2e524421870ac2ad12af1c1b +msgid "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" +msgstr "" + +#: ../../changelog.md:858 +#: 8d7dea175fb24794a355b13007c92e01 +msgid "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" +msgstr "" + +#: ../../changelog.md:860 +#: eb953d6d30db42809fb6a250571f29b1 +msgid "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" +msgstr "" + +#: ../../changelog.md:865 +#: 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:867 +#: 6a79d4a32b634bd3a7b74c101fa54a7e +msgid "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "" + +#: ../../changelog.md:869 +#: 05aa589e0a9a469d96f811423c1b3bd2 +msgid "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "" + +#: ../../changelog.md:871 +#: 3da23a6d6d4b4324a36f0b33cc59f82e +msgid "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" +msgstr "" + +#: ../../changelog.md:873 +#: d463353b612449e89a9a7015a794e5e2 +msgid "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" +msgstr "" + +#: ../../changelog.md:875 +#: 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:877 +#: 7d105926ee684e439657e29d1a57156a +msgid "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" +msgstr "" + +#: ../../changelog.md:879 +#: 54b42e8bc31145a9a8831d96c1c7a836 +msgid "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" +msgstr "" + +#: ../../changelog.md:881 +#: 5797d5a4023d458aa6eaefe95fdcbe70 +msgid "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" +msgstr "" + +#: ../../changelog.md:883 +#: 98b7cc4cbd3b4529bd64539cdc0166e7 +msgid "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" +msgstr "" + +#: ../../changelog.md:885 +#: 89cd1c71990c439c8187661846e4817c +msgid "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" +msgstr "" + +#: ../../changelog.md:887 +#: 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:889 +#: fec7f8bc5c1c40638b2c7541a613f3b3 +msgid "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" +msgstr "" + +#: ../../changelog.md:891 +#: 1b22b1b48af64ab082e28d5be38e9470 +msgid "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" +msgstr "" + +#: ../../changelog.md:893 +#: 109809acf2d545559ad5bd7c1d9d668d +msgid "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" +msgstr "" + +#: ../../changelog.md:895 +#: c648e6fc6f44425195f326fb578e61d3 +msgid "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" +msgstr "" + +#: ../../changelog.md:898 +#: 7de5791d77fa4367bcc58a2b9db9f7dc +msgid "[2.0.0-beta.7] - 2022-04-09" +msgstr "" + +#: ../../changelog.md:902 +#: 681f7f806d614707ae86fcc2e8c3042e +msgid "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" +msgstr "" + +#: ../../changelog.md:941 +#: c3d9893dfd4c43e1af3405c2b96d7e8a +msgid "Older Versions" +msgstr "" + +#: ../../changelog.md:943 +#: 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..3893a687de --- /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-13 10:18+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" + +#: ../../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..492fe09b58 --- /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-13 10:18+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" + +#: ../../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..812a987829 --- /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-13 10:18+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..a5fe2b4d26 --- /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-13 10:18+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/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..a527fa034a --- /dev/null +++ b/docs/build/locales/ext/commands/api.pot @@ -0,0 +1,8978 @@ +# 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-13 10:18+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 +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 108b348c252b4fc789b680c4989870da +#: 54a780ec9c5b4270b61cb1c40f28ae63 +#: 99c61ff23a9f43c1a74a3608cf5bc810 +#: 1448a02e23c546f4aa4a5072438e16fb +#: d6182d5081b04a73b45cdab6770e7195 +#: de6c28dbc55944cba7b85d7aa7fcbd63 +#: b010c0c3b0fa454a90311a3446f9c49b +#: bb7a8a01292b449d92d4b82befbce7c0 +#: 8ea34deeeeef47bea5ed8bf17d465dd5 +#: 723b2bd90f97499ba5dc2f350d048982 +#: 6704eed5f747450d8dfdeaeec60cbbd4 +#: e0d28de49a3749f3948e2f460a2bc193 +#: e20543c5f090466484011ef7bf9cb1c9 +#: 49345f7753d447cf9094bb2cdecd0929 +#: e81e864ce6e74c53a1da0ea0da311d4b +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +#: 6d8c11bb47b2404baadf295e73360b7c +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 +#: af2f1296905749558682b61c1f7363ae +#: af2f1296905749558682b61c1f7363ae +#: af2f1296905749558682b61c1f7363ae +#: 028c17ce435547ffae49bfe544b27746 +#: af2f1296905749558682b61c1f7363ae +#: e56be582fd2f43eb94adef4955c9abc0 +#: af2f1296905749558682b61c1f7363ae +#: 8eca1380293a4e09adb2fe3078136d93 +#: af2f1296905749558682b61c1f7363ae +#: af2f1296905749558682b61c1f7363ae +#: 8eca1380293a4e09adb2fe3078136d93 +#: af2f1296905749558682b61c1f7363ae +#: af2f1296905749558682b61c1f7363ae +#: af2f1296905749558682b61c1f7363ae +#: af2f1296905749558682b61c1f7363ae +#: af2f1296905749558682b61c1f7363ae +#: af2f1296905749558682b61c1f7363ae +#: 8eca1380293a4e09adb2fe3078136d93 +#: af2f1296905749558682b61c1f7363ae +#: af2f1296905749558682b61c1f7363ae +#: af2f1296905749558682b61c1f7363ae +#: af2f1296905749558682b61c1f7363ae +#: af2f1296905749558682b61c1f7363ae +#: af2f1296905749558682b61c1f7363ae +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 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: cd224adfd8e945a795b92654c0537e46 +#: 634b9b9ff2e24fdd91b9e3cd5b880d80 +#: 5b1a773778e843eea6be076e295ca033 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 440b7315543740c799170efcdd4c8f0e +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: e979a2cb64c144f08aaf2803550cb543 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 102f67d17332471589053ba459ce6673 +#: 3dbc0c3d62ea4dd1817205318f484376 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 0376d1f3354048868ddfbd60acc27c3f +#: 37a692f9433046b2adc05d7f464911ab +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: d18243f289de4f3aa562ec83d726eb9c +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +#: 3750ee9874a649329aece5d76398dd35 +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 +#: 25b3652c08d44d8393ec6f0711deff0e +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 +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 7ae1c7e45ccf4e3583a54ff7c5d20a74 +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +#: 4518277f66b34d9ea6be92e3704fe30a +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 +#: d8c011efa50c47929c394609e419d093 +#: d8c011efa50c47929c394609e419d093 +#: d8c011efa50c47929c394609e419d093 +#: d8c011efa50c47929c394609e419d093 +#: d8c011efa50c47929c394609e419d093 +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 +#: ff1c1be395074d0bb084578f9648eed3 +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 +#: d64565eb8c0f49fabf5ba8ebd0408016 +#: d64565eb8c0f49fabf5ba8ebd0408016 +#: d64565eb8c0f49fabf5ba8ebd0408016 +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 +#: 66c60cbf615a4450a0177eb8da660fe0 +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 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: ae1200f79d0048e199cda9ddbb154333 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 6a9df72d6343436e8a5d6be1812ec065 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 3e6b25fcdbcd450dba91025338af56fb +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 6d76557cfaf549eb9bbc18d2a380ba49 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +#: 21f49b5974d544ffa30d029b89640d48 +msgid "Returns" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.command:4 +#: 230236e4038a412abf293a0551512e31 +#: f2b7b7f29eb2477e9258c08e49fb3a95 +#: f2b7b7f29eb2477e9258c08e49fb3a95 +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 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: 83f34d28e50d49638d87349d48d2369e +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: 10722e3a6685409b8ad039a73479cf66 +#: 53e94d21edab4737b42673ee97fdb49c +#: fc5da63fdcca41d5a4742949f05235c9 +#: 09d2baeccc6b4e50adbfb853f2ddf881 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: 33ed8c12d23741c6880f5a1831375fdf +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: c34bb5212e8843d885c20cbf2eb7d819 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: 9d778ca7356943e294915c2454341f4a +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: 3c4a3dc146ea4ead9cbc60eaff2e0088 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: 9d5d85b51d48428ba902d02b951bcffb +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: 77e4fafb7b5f4845b9d186a0206d03e2 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +#: fc5da63fdcca41d5a4742949f05235c9 +msgid "Return type" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.command:5 +#: 0fac82441bda46b2857b66cc3d6fc1ab +#: 44da924bb9b14d1e8a47ed370ae96009 +#: 44da924bb9b14d1e8a47ed370ae96009 +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 +#: 2d92005457764c1c8814201cecd4d501 +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 +#: dc51e15c515241e1b7db18a0e7ddfb03 +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 +#: ffe6eb92b0224834b83f3814c9c5df5f +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 +#: 20ea5167076042deabb0d765a6285277 +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 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: e03239f359674e139b092cf33b2fc6b8 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +#: af9c896fbca541199d50ed6f9311ec05 +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 +#: 892271b7879440eba8bad74a82d01f99 +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 +#: 6e7cfb1130eb428fbd9da148ceb6848a +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 +#: d005cfa388ba4c9c93b28569e45a9895 +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 +#: 4058311b664443489c2bdcf7ccdf0294 +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 +#: 0624e7fcbdab454e8a678d05ead1d15a +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 +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 8d5d8cf44a1143208772382e441a15f3 +#: fe4bb802cda24bcca261d0efa60e2fc0 +#: d424f44f65dc4c50bc16b509389106d6 +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +#: 62c513a80a3c4ec5b566f2dfe95621cb +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 +#: 23309f092f064da6afced5088b16900c +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 +#: acdddbfef28f4deeba67e1c0eeae3126 +#: acdddbfef28f4deeba67e1c0eeae3126 +#: e2d006ad6c904920bebc27cd7a383901 +#: acdddbfef28f4deeba67e1c0eeae3126 +#: acdddbfef28f4deeba67e1c0eeae3126 +#: acdddbfef28f4deeba67e1c0eeae3126 +#: acdddbfef28f4deeba67e1c0eeae3126 +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 +#: 1713b7f68ab24b69904742961b2e7c20 +#: 1713b7f68ab24b69904742961b2e7c20 +#: 1713b7f68ab24b69904742961b2e7c20 +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:11 +#: 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:15 +#: 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.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 +#: 8075abb274e04650a70502fe718d48e1 +#: 8075abb274e04650a70502fe718d48e1 +#: 8075abb274e04650a70502fe718d48e1 +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 +#: a0421f9c994a4d42b5d1d086df607ef7 +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 +#: 5ff022119a8143e9b08a979f66a6e2a0 +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 +#: 976de055999f46f58eea47f454eaef7a +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 +#: 3b38ccebb4774f71be6c3c835dd6d70e +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 +#: abb8574be99a40e3abe788514c73ab7a +#: abb8574be99a40e3abe788514c73ab7a +#: abb8574be99a40e3abe788514c73ab7a +#: abb8574be99a40e3abe788514c73ab7a +#: abb8574be99a40e3abe788514c73ab7a +#: abb8574be99a40e3abe788514c73ab7a +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 +#: 076958fd76f448899e7a5f907e409cea +#: 076958fd76f448899e7a5f907e409cea +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 +#: d555628fb6a74c5697817061624609d9 +#: d555628fb6a74c5697817061624609d9 +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 +#: 77d72aaabce64e60a149d21b1319d604 +#: 77d72aaabce64e60a149d21b1319d604 +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 +#: 3f540ff7c6ba442abc0635a2ce276025 +#: 3f540ff7c6ba442abc0635a2ce276025 +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 +#: d9354bca6a4948efb9716c2410e9413a +#: d9354bca6a4948efb9716c2410e9413a +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 +#: 98d36fa1cabf419197df81cba05fdb4e +#: 98d36fa1cabf419197df81cba05fdb4e +#: 98d36fa1cabf419197df81cba05fdb4e +#: 98d36fa1cabf419197df81cba05fdb4e +#: 98d36fa1cabf419197df81cba05fdb4e +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 +#: a0ddffa324eb4f69b621dc78d6085347 +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 +#: 6750b7f88cee434d86d97c6e26df794e +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 +#: 0f638f48f50f4c09993a064ea83cd283 +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 +#: f2d2ffb4c5de4294b00e0d6960df1d3d +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 +#: 7f2cff7a3dcb41ef859adebe2c9703ac +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 +#: 85cb40e2b8f843238e36491f437ae881 +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 +#: 318cf231125c4652934e2e3dcd11f3b4 +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 +#: e772cf6937df4d08811f8b5aca62ed7e +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 +#: 3cecd5dac3b1428186b2006eed2a09ea +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 +#: f8f0294e84b04031843107316a63aa39 +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 +#: 236d07f9e65049aead2c01b2e184cb28 +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 +#: 52b9fd3899444591860e9ea100e5b710 +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 +#: 94d3b957e1c145fba0c65ca08b4a9e7d +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 +#: 66802051ce734e8097ec34d915787746 +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 +#: 1cfd6552a76b4aa8a505f6638f251018 +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 +#: 2bccaf197b874b678e4c7e0f4392290a +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 +#: 7182196090184bd2924a20549adf2d46 +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 +#: 4fae560ecd074d41a1539bb3058d9c8e +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 +#: c70634c2e0434418a3a5d78525171060 +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 +#: d41fd7f478444437aa26d461b53c89b0 +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 +#: 72e56541aba94b5094116625bae069d9 +#: 72e56541aba94b5094116625bae069d9 +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 +#: e1f8b4c4d35e4ad8b57c3d018b6f4174 +#: e1f8b4c4d35e4ad8b57c3d018b6f4174 +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 +#: d399c8aa90334ed29d8c347beafa631d +#: d399c8aa90334ed29d8c347beafa631d +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 +#: 6edfdbe1280e4cf398df37fe2792d8ee +#: 6edfdbe1280e4cf398df37fe2792d8ee +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 +#: 99f6a7ad97a24341a814e6f291e294d2 +#: 99f6a7ad97a24341a814e6f291e294d2 +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 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 +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.ext.commands.core.GroupMixin.walk_commands:1 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:1 +#: 1456f4943caa4b34a8e69f60b5a07808 +#: 1456f4943caa4b34a8e69f60b5a07808 +#: 1456f4943caa4b34a8e69f60b5a07808 +msgid "An iterator that recursively walks through all commands and subcommands." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:3 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:3 +#: 49f59fb863cd4209bd0f1f4182299127 +#: 49f59fb863cd4209bd0f1f4182299127 +#: 49f59fb863cd4209bd0f1f4182299127 +msgid "Duplicates due to aliases are no longer returned" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:6 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:6 +#: c046361221d6494fa948452872c5775c +#: c046361221d6494fa948452872c5775c +#: c046361221d6494fa948452872c5775c +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 +#: 94c1395e027c46d6ade3d6e434844537 +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 +#: 08d36c605612426784eaf9ec301a665e +#: 08d36c605612426784eaf9ec301a665e +#: 08d36c605612426784eaf9ec301a665e +#: 08d36c605612426784eaf9ec301a665e +#: 08d36c605612426784eaf9ec301a665e +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 +#: 7db908c9bd4146148c671612f1a21c16 +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 +#: 2fa587e86d45443b9e8de44d3a40adb3 +#: 2fa587e86d45443b9e8de44d3a40adb3 +#: 1cae6d584b4042669667b6b5b19e8ca7 +#: 2fa587e86d45443b9e8de44d3a40adb3 +#: 2fa587e86d45443b9e8de44d3a40adb3 +#: 2fa587e86d45443b9e8de44d3a40adb3 +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 +#: bc8667441e1444d0897a7803d2b26f77 +#: bc8667441e1444d0897a7803d2b26f77 +#: bc8667441e1444d0897a7803d2b26f77 +#: bc8667441e1444d0897a7803d2b26f77 +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 +#: 90e414e8d0b44cd79cab048aefdf6405 +#: 90e414e8d0b44cd79cab048aefdf6405 +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 +#: d32e1cac49544fd5ae400c1fba138334 +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 +#: 51aa7afdb49f4da6ac20b1dcf6b57e06 +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 +#: 19f8492ddfb9427abc3cde521480b85d +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 +#: 7ae4c11caa124e808c7fb7b202116f45 +#: 7ae4c11caa124e808c7fb7b202116f45 +#: 7ae4c11caa124e808c7fb7b202116f45 +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 +#: 855503b6108245fcb68107267c49085e +#: 855503b6108245fcb68107267c49085e +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 +#: cf73320a95f4476b80a6f070ab5b02e3 +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 +#: 06e921e2b2fb4c21a72f500bd46a2810 +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 +#: 40fdc1fda7b94b879512d0e996f8258d +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 +#: e84346f5de634da79e860d51d22db014 +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 +#: f38c35e1e73e491699c0f0ddb73663c7 +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 +#: 23a93b3beb964d8cbe69ad9ff6b02688 +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 +#: 20f06aa013104c82b4b355c39d43a727 +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 +#: ad8decf8dfa04986bacfea9596033dc8 +msgid "Adds a check to the command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.add_check:3 +#: ade7620bbb9c4a79a2272aa1abd4ec09 +#: ade7620bbb9c4a79a2272aa1abd4ec09 +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 +#: 94e53b88c7864946aa8238fa03858fcf +#: 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 +#: c9b66986248346dba1791fd1cb802588 +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 +#: 03c21e4d038949829e3d40810fc4b45d +#: 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 +#: dc6b6d44452748f48fb47d44228fb6fa +#: 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 +#: 2d740adac15a4ca48c6960d4946687a2 +msgid "Updates :class:`Command` instance with updated attribute." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.update:3 +#: 3420696530994c2dbd03cb86dbc54b25 +#: 3420696530994c2dbd03cb86dbc54b25 +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 +#: 71c24cc891e04432849002e8709dfdf0 +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 +#: 422208602e70468a8cc4695ddaf9285c +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 +#: 697abd5fedc04c189332444f2135a9ac +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 +#: 512c2c1ea4184e77bfd168579929e201 +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 +#: c3494ed24b134e688ac5f49b5eb047d7 +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 +#: b6e4c6ca7e85435f9351a14cbf9b2bcb +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 +#: 21ee38bff0764697b17dd22c2db5ed96 +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 +#: 5eedd15d7f0045a89807cee976a97cc0 +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 +#: e65c9a5c570a416f969edeec9068e39a +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 +#: 2f1f6da9123b4f4aa3d0a56f508f3e3b +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 +#: 6521e09bdf944e6db9d3f60cbe90b65f +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 +#: bcf9477a72ac4c729bb905cfcb4e2405 +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 +#: d070d67e1ecf455b8dfd8194fa5d3e29 +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 +#: 30141c30cc364576aac449f316b52da0 +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 +#: 6e7a91b24b664b699c0791b676c4aaac +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 +#: b4eff87099ad4ac9852614c8f3eb7862 +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 +#: 8a5495bda5cb470183ef2086755ce0f0 +msgid "Resets the cooldown on this command." +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.reset_cooldown:4 +#: ca312cee971a438abb381bf66fb2cbff +#: ca312cee971a438abb381bf66fb2cbff +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 +#: 51fa09d7f11f43a1b781787a52ce8436 +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 +#: 45878d40a5fa4890ad42de0e8e9edc6e +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 +#: fdf38ba24dc14b689ad1e1eab70c6c1d +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 +#: 34090bfda6e1409eb479e3b919bede99 +#: 34090bfda6e1409eb479e3b919bede99 +#: 34090bfda6e1409eb479e3b919bede99 +#: 34090bfda6e1409eb479e3b919bede99 +msgid ":class:`float`" +msgstr "" + +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command.has_error_handler:1 +#: 3970666bdb78497b8d5a65197482a7bc +#: 3970666bdb78497b8d5a65197482a7bc +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 +#: a5a5f0ae305348feb8f1456838a1ee4a +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 +#: a359e8b0858f4bff80df0d29205d3ab0 +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 +#: 8f95d0a88a984f439e3dadb59ef199aa +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 +#: 0c0b9317fcac46ecae100cfc277bf9f6 +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 +#: cc5fd641e6244884961560f59e53c689 +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 +#: 3950bda5fbf14e40adee997651342820 +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 +#: a6de3b877d0e4c7a991b4259bdb1f086 +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 +#: ff73ac563b12400cbce6a1ad1f8c9d09 +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 +#: 076a8f5c048c40b2bcc438d5a1ea5158 +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.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 +#: 308cf1e234b44a168f5eb03f15d8e8be +#: 308cf1e234b44a168f5eb03f15d8e8be +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 +#: 9d4ac7ff40e040b3b6a9aeb703e66c99 +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 +#: b3103498c74f46489696da57302a113e +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 +#: 0870226ae3fd45bbb1d7b250eedd749c +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 +#: a9b1544b7406441bbc26c947190156a5 +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 +#: 36db3ba452e247c3ad141758bb50a822 +#: 36db3ba452e247c3ad141758bb50a822 +#: 36db3ba452e247c3ad141758bb50a822 +#: 36db3ba452e247c3ad141758bb50a822 +#: 36db3ba452e247c3ad141758bb50a822 +#: 36db3ba452e247c3ad141758bb50a822 +#: 36db3ba452e247c3ad141758bb50a822 +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 +#: 11d5736edd904be0909712cba6262a08 +#: 11d5736edd904be0909712cba6262a08 +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 +#: 221263475094489f990e402ae86805f6 +#: f8c115ff7057440482dceb4d05d3c394 +#: 221263475094489f990e402ae86805f6 +#: 0da023124b764228803413e8e928ba2e +#: 4c8415699f38454caa3f28ff7645e137 +#: 0fff7255071443deb952fb069385e343 +#: 221263475094489f990e402ae86805f6 +#: 221263475094489f990e402ae86805f6 +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 +#: 7463ee9371c746469ce380c3c6a9f69b +#: 7463ee9371c746469ce380c3c6a9f69b +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 +#: d4a4dc4660df41218b1ef139ba681fc6 +#: d4a4dc4660df41218b1ef139ba681fc6 +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 +#: 22ac12821be84e64abe4208c66e428ca +#: 22ac12821be84e64abe4208c66e428ca +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 +#: bb2b8cf7f8da4ab498331b3d6bfb0f42 +#: 1a16d349e6b147ea8072bbe46e99443b +#: 145f3f00a2854c308de39ac9f2935d3d +#: 44d8a4471f8d46199d03cf08d9d852fb +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 +#: 8733bb9051b04e2f91d902a402af6929 +#: 2d550440e5cf4edc8ced1cacaeea627b +#: d2912db2232849caa145cdcedd335057 +#: 92cd46fd01884b549196ce7d6f3affaf +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 +#: 85592828042a4467a6777ebda074bc0c +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 +#: 98cc93d14ebe483c8ea65f00dd5b35bb +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 +#: ad75381379ab48acb3057dc68b6c4a37 +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 +#: fcb81f11c0f146b49699484d0ce0f808 +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 +#: bdb32d5c391a4020a14aa9e04df4dfb3 +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 +#: 3ed75e87187148e5b3a2193a292ef53b +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 +#: 506d95ebb9664f17a10381534561613a +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 +#: 1ad02dd72b1b4b84a48ebbb3b20dcf54 +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 +#: eb7ca19c2ce740f49eafb5aa2225772f +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 +#: ea5d814f698e427c927fe26e57311142 +#: ea5d814f698e427c927fe26e57311142 +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 +#: 604e96dc969d4a16ab5e5513a0590f96 +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 +#: 56429d0375c84befb1b01caa55354f47 +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 +#: 7b8dc415474a458294ed699b814d8908 +#: 7b8dc415474a458294ed699b814d8908 +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 +#: 9624b70cfbee4ca3af484bcf68e4e8ab +#: d1219c96be1d44378e6cc2e7e6537aaa +#: 9624b70cfbee4ca3af484bcf68e4e8ab +#: d1219c96be1d44378e6cc2e7e6537aaa +#: 9624b70cfbee4ca3af484bcf68e4e8ab +#: 9624b70cfbee4ca3af484bcf68e4e8ab +#: 9624b70cfbee4ca3af484bcf68e4e8ab +#: 9624b70cfbee4ca3af484bcf68e4e8ab +#: 9624b70cfbee4ca3af484bcf68e4e8ab +#: 9624b70cfbee4ca3af484bcf68e4e8ab +#: 641aba9d9e1242ee81b39f49ea575ac7 +#: 9624b70cfbee4ca3af484bcf68e4e8ab +#: 9624b70cfbee4ca3af484bcf68e4e8ab +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 +#: a718cc3afe304175996a7f319afead4a +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 +#: 1a5e6e01b634462489aa2c9b72d75c8e +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 +#: 4149b91a8b9b4f4ebcb203d68f34a4c2 +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 +#: 9205feec771a4b34b5d819ac90529941 +#: 9205feec771a4b34b5d819ac90529941 +#: 9205feec771a4b34b5d819ac90529941 +#: 9205feec771a4b34b5d819ac90529941 +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 +#: 2f6f2c77fe9f49d6af547d8b4d988847 +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 +#: 07908514f89544cd8fadb56e8b84c9ea +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 +#: 44cfdba165a2496f86c393e4ff002312 +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 +#: 1baacf7f645a4a3e98b1d53ae7e82fa4 +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 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: 2b33792d59994112b5f8ae2f18cdd1e9 +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 +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +#: 9d9f9443ace94d45aff747a2a2a753af +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 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: 8e1557a164a24dd18a9d3e3d7524d840 +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 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +#: 28f8742b518343c0a0621906d8c7afa4 +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 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +#: 4d5298f99ee649468bc32cbb48858423 +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 +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +#: e5f482e53ee44aa2a15113dc1e1e41de +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 +#: 8908a3f472604dd1b17e67bf4cce1a98 +#: 8908a3f472604dd1b17e67bf4cce1a98 +#: 8908a3f472604dd1b17e67bf4cce1a98 +#: 8908a3f472604dd1b17e67bf4cce1a98 +#: 8908a3f472604dd1b17e67bf4cce1a98 +#: 8908a3f472604dd1b17e67bf4cce1a98 +#: 8908a3f472604dd1b17e67bf4cce1a98 +#: 8908a3f472604dd1b17e67bf4cce1a98 +#: 8908a3f472604dd1b17e67bf4cce1a98 +#: 8908a3f472604dd1b17e67bf4cce1a98 +#: 8908a3f472604dd1b17e67bf4cce1a98 +#: 8908a3f472604dd1b17e67bf4cce1a98 +#: 8908a3f472604dd1b17e67bf4cce1a98 +#: 8908a3f472604dd1b17e67bf4cce1a98 +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 +#: 81bc7f6190a44dfdad07b950eef59a75 +#: 81bc7f6190a44dfdad07b950eef59a75 +#: 81bc7f6190a44dfdad07b950eef59a75 +#: 81bc7f6190a44dfdad07b950eef59a75 +#: 81bc7f6190a44dfdad07b950eef59a75 +#: 81bc7f6190a44dfdad07b950eef59a75 +#: 81bc7f6190a44dfdad07b950eef59a75 +#: 81bc7f6190a44dfdad07b950eef59a75 +#: 81bc7f6190a44dfdad07b950eef59a75 +#: 81bc7f6190a44dfdad07b950eef59a75 +#: 81bc7f6190a44dfdad07b950eef59a75 +#: 81bc7f6190a44dfdad07b950eef59a75 +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 +#: 437a2f3b32a94663b8596fabd903f9b8 +#: 437a2f3b32a94663b8596fabd903f9b8 +#: 437a2f3b32a94663b8596fabd903f9b8 +#: 437a2f3b32a94663b8596fabd903f9b8 +#: 437a2f3b32a94663b8596fabd903f9b8 +#: 437a2f3b32a94663b8596fabd903f9b8 +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 +#: 2f289a0b34b94af6b7788cb39ee945d5 +#: 2f289a0b34b94af6b7788cb39ee945d5 +#: 2f289a0b34b94af6b7788cb39ee945d5 +#: 2f289a0b34b94af6b7788cb39ee945d5 +#: 2f289a0b34b94af6b7788cb39ee945d5 +#: 2f289a0b34b94af6b7788cb39ee945d5 +#: 2f289a0b34b94af6b7788cb39ee945d5 +#: 2f289a0b34b94af6b7788cb39ee945d5 +#: 2f289a0b34b94af6b7788cb39ee945d5 +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 +#: 0d48779a2f444266936b946c2049cc49 +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 +#: cb41bf47efbc46a88f1fb382c99df3a8 +#: cb41bf47efbc46a88f1fb382c99df3a8 +#: cb41bf47efbc46a88f1fb382c99df3a8 +#: cb41bf47efbc46a88f1fb382c99df3a8 +#: cb41bf47efbc46a88f1fb382c99df3a8 +#: cb41bf47efbc46a88f1fb382c99df3a8 +#: cb41bf47efbc46a88f1fb382c99df3a8 +#: cb41bf47efbc46a88f1fb382c99df3a8 +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 +#: 34555afe05c64c22ba65fa8c467758fb +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 +#: 4ea1417c2e794a5e9f8755ffbf256902 +#: 4ea1417c2e794a5e9f8755ffbf256902 +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 +#: b0e0e871ab064289a32c66c40214fd9e +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 +#: b755efe3ab02421ebf20dd845a99ba63 +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 +#: c1628f75af2142f1a0c57e3232afa38b +#: c1628f75af2142f1a0c57e3232afa38b +#: c1628f75af2142f1a0c57e3232afa38b +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 +#: 59bc4fd8d04e4eec9b78caa9b9dcee7d +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 +#: a7b6a5d248994baa9f94e2df8562e74b +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 +#: 165ab37adc89428e90ff4df2f0b80314 +#: 165ab37adc89428e90ff4df2f0b80314 +#: 165ab37adc89428e90ff4df2f0b80314 +#: 165ab37adc89428e90ff4df2f0b80314 +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 +#: ac767ecf96d642aeac005e669fd48fea +#: ac767ecf96d642aeac005e669fd48fea +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 +#: 71e587d424b0450b9e26f4c4abad9240 +#: 71e587d424b0450b9e26f4c4abad9240 +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 +#: bfb5f51c531d44e49c5ae964e7432593 +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 +#: e17c717ab6224038bba2f6a093d6be4e +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 +#: 9cfe57c2d101467d87400e0d145a2c08 +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 +#: dbb9cfa723ce4683a0356453833bc9c9 +#: dbb9cfa723ce4683a0356453833bc9c9 +#: dbb9cfa723ce4683a0356453833bc9c9 +#: dbb9cfa723ce4683a0356453833bc9c9 +#: dbb9cfa723ce4683a0356453833bc9c9 +#: dbb9cfa723ce4683a0356453833bc9c9 +#: dbb9cfa723ce4683a0356453833bc9c9 +#: dbb9cfa723ce4683a0356453833bc9c9 +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 +#: 21521951fe3645c599f43042bd74017f +#: 21521951fe3645c599f43042bd74017f +#: 21521951fe3645c599f43042bd74017f +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 +#: e51c110bd8cb4f13b2f0dc5eb781134e +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 +#: cafbbd3a5904470cbe7817bdf3a418bf +#: cafbbd3a5904470cbe7817bdf3a418bf +#: cafbbd3a5904470cbe7817bdf3a418bf +#: cafbbd3a5904470cbe7817bdf3a418bf +#: cafbbd3a5904470cbe7817bdf3a418bf +#: cafbbd3a5904470cbe7817bdf3a418bf +#: cafbbd3a5904470cbe7817bdf3a418bf +#: cafbbd3a5904470cbe7817bdf3a418bf +#: cafbbd3a5904470cbe7817bdf3a418bf +#: cafbbd3a5904470cbe7817bdf3a418bf +#: cafbbd3a5904470cbe7817bdf3a418bf +#: cafbbd3a5904470cbe7817bdf3a418bf +#: cafbbd3a5904470cbe7817bdf3a418bf +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 +#: 5ada78a870114789b2525dfb7258f469 +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 +#: 464aff7b7d6d4edab7c5c9f1d4b1390e +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 +#: 495f17f5f821498f8c20b5437e881ce8 +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 +#: 4800e7486dea463f9b780669f880aaee +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 +#: 91798d8c295b4e5a95ae65bc3717c132 +#: 91798d8c295b4e5a95ae65bc3717c132 +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 +#: 53f5b703a1754889b6501bc0bb13587d +#: 53f5b703a1754889b6501bc0bb13587d +#: 53f5b703a1754889b6501bc0bb13587d +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..e9cbf8215f --- /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-13 10:18+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/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..0afa8a047f --- /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-13 10:18+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/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..6c54c918ac --- /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-13 10:18+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/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..4729cbef7d --- /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-13 10:18+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/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..ec4a6a37c5 --- /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-13 10:18+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..11580d8fb6 --- /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-13 10:18+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..ea6ef50322 --- /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-13 10:18+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" + +#: ../../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..6fca0e585f --- /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-13 10:18+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" + +#: ../../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..82075ae96a --- /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-13 10:18+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" + +#: ../../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..b24f3e5b9d --- /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-13 10:18+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" + +#: ../../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..ff00183317 --- /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-13 10:18+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" + +#: ../../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..cdf1798eae --- /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-13 10:18+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" + +#: ../../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..b9bbe5a3cb --- /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-13 10:18+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" + +#: ../../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..fe58fc197b --- /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-13 10:18+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" + +#: ../../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..ca25c22ae0 --- /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-13 10:18+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" + +#: ../../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..558341341e --- /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-13 10:18+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" + +#: ../../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..2a7fdb532e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,7 +18,7 @@ old_changelog = os.path.join(os.path.dirname(__file__), "..", "CHANGELOG.md") new_changelog = os.path.join(os.path.dirname(__file__), "changelog.md") -with open(old_changelog) as f: +with open(old_changelog, encoding="utf-8") as f: changelog_lines = f.readlines() # Inject relative documentation links @@ -39,12 +39,12 @@ # Only write if it's changed to avoid recompiling the docs def write_new(): - with open(new_changelog, "w") as fw: + with open(new_changelog, "w", encoding="utf-8") as fw: fw.write(CHANGELOG_TEXT) try: - c_file = open(new_changelog) + c_file = open(new_changelog, encoding="utf-8") except FileNotFoundError: write_new() else: @@ -52,7 +52,6 @@ def write_new(): write_new() c_file.close() - # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. @@ -70,6 +69,8 @@ def write_new(): extensions = [ # "builder", "sphinx.ext.autodoc", + "sphinx.ext.autosectionlabel", + "sphinx.ext.autosummary", "sphinx.ext.extlinks", "sphinx.ext.intersphinx", "sphinx.ext.napoleon", @@ -89,6 +90,7 @@ def write_new(): always_document_param_types = True toc_object_entries_show_parents = "hide" +autosectionlabel_prefix_document = True ogp_site_url = "https://pycord.dev/" ogp_image = "https://pycord.dev/static/img/logo.png" @@ -99,8 +101,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 @@ -115,6 +117,9 @@ def write_new(): .. |maybecoro| replace:: This function *could be a* |coroutine_link|_. .. |coroutine_link| replace:: *coroutine* .. _coroutine_link: https://docs.python.org/3/library/asyncio-task.html#coroutine +.. |gateway| replace:: |gateway_link|_ +.. |gateway_link| replace:: *gateway* +.. _gateway_link: https://discord.com/developers/docs/topics/gateway-events """ # Add any paths that contain templates here, relative to this directory. @@ -164,6 +169,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 +180,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 +211,7 @@ def write_new(): nitpick_ignore_files = [ "migrating_to_v1", "whats_new", + "old_changelog", ] # -- Options for HTML output ---------------------------------------------- @@ -306,8 +314,8 @@ def write_new(): # A shorter title for the navigation bar. Default is the same as html_title. # html_short_title = None -# The name of an image file (relative to this directory) to place at the top -# of the sidebar. +# The name of an image file (relative to this directory) to place at the top of +# the sidebar. html_logo = "./images/pycord_logo.png" # The name of an image file (within the static path) to use as favicon of the @@ -372,7 +380,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 +388,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"] @@ -391,13 +399,13 @@ def write_new(): latex_elements = { # The paper size ('letterpaper' or 'a4paper'). - #'papersize': 'letterpaper', + # 'papersize': 'letterpaper', # The font size ('10pt', '11pt' or '12pt'). - #'pointsize': '10pt', + # 'pointsize': '10pt', # Additional stuff for the LaTeX preamble. - #'preamble': '', + # 'preamble': '', # Latex figure (float) alignment - #'figure_align': 'htbp', + # 'figure_align': 'htbp', } # Grouping the document tree into LaTeX files. List of tuples @@ -473,3 +481,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..45e3563666 --- /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 "Abstrakte Basisklassen" + +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 "Eine :term:`abstract base class` (auch bekannt als ``abc``) ist eine Klasse, die Modelle erben können, um ihr Verhalten zu erlangen. **Abstrakte Basisklassen sollten nicht instanziiert werden**. Sie sind hauptsächlich für die Verwendung mit :func:`isinstance` und :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 "Diese Bibliothek hat ein Modul für abstrakte Basisklassen, in dem alle ABCs Unterklassen von :class:`typing.Protocol` sind." + +msgid "An ABC that details the common operations on a Discord model." +msgstr "Ein ABC, der die gängigen Operationen nach einem Discord-Modell ausführt." + +msgid "Almost all :ref:`Discord models ` meet this abstract base class." +msgstr "Fast alle :ref:`Discord Models ` erfüllen diese abstrakte Basisklasse." + +msgid "If you want to create a snowflake on your own, consider using :class:`.Object`." +msgstr "Wenn du selbst eine `snowflake` erstellen möchtest, überlege die Verwendung von :class:`. Object`." + +msgid "The model's unique ID." +msgstr "Die einzigartige ID des Modells." + +msgid "type" +msgstr "typ" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "An ABC that details the common operations on a Discord user." +msgstr "Ein ABC, der die gängigen Operationen nach einem Discord-Modell ausführt." + +msgid "The following implement this ABC:" +msgstr "Folgende Implementierung dieser 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 "Diese ABC muss auch :class:`~discord.abc.Snowflake` implementieren." + +msgid "The user's username." +msgstr "Der Nutzername des Nutzers." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's discriminator." +msgstr "Diskriminator des Benutzers." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "Wenn der Benutzer auf das neue Benutzernamens-System migriert ist, wird dies immer \"0\" sein." + +msgid "The user's global name." +msgstr "Der globale Name des Benutzers." + +msgid "The avatar asset the user has." +msgstr "Das Avatar Asset über das der Benutzer verfügt." + +msgid ":class:`~discord.Asset`" +msgstr ":class:`~discord.Asset`" + +msgid "If the user is a bot account." +msgstr "Wenn der Benutzer ein Bot-Konto ist." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Returns the user's display name." +msgstr "Gibt den Anzeigenamen des Benutzers zurück." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Gibt eine Zeichenkette zurück, mit der Sie den angegebenen Benutzer erwähnen können." + +msgid "An ABC that details the common operations on a private Discord channel." +msgstr "Ein ABC, das die gängigen Operationen auf einem privaten Discord Kanal ausführt." + +msgid ":class:`~discord.DMChannel`" +msgstr ":class:`~discord.DMChannel`" + +msgid ":class:`~discord.GroupChannel`" +msgstr ":class:`~discord.GroupChannel`" + +msgid "The user presenting yourself." +msgstr "Der Benutzer, der sich selbst repräsentiert." + +msgid "An ABC that details the common operations on a Discord guild channel." +msgstr "Eine ABC, die die üblichen Operationen auf einem Discord Server Channel detailliert beschreibt." + +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 "Der Name des Kanals." + +msgid "The guild the channel belongs to." +msgstr "Die Gilde, zu der der Kanal gehört." + +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 "Die Position in der Kanalliste. Beginnt bei 0 z.B. der obere Kanal ist Position 0." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Gibt eine Liste von Rollen zurück, die von ihren Standardwerten im Attribut :attr:`~discord.Guild.roles` überschrieben wurden." + +msgid "The string that allows you to mention the channel." +msgstr "Die Zeichenkette, mit der du den Kanal erwähnen kannst." + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Gibt eine URL zurück, die es dem Client erlaubt, in den Kanal zu springen." + +msgid "Returns the channel's creation time in UTC." +msgstr "Gibt die Erstellungszeit des Kanals im UTC Format zurück." + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Gibt die kanalspezifischen Überschreibungen eines Mitglieds oder einer Rolle zurück." + +msgid "Parameters" +msgstr "Parameter" + +msgid "The role or user denoting whose overwrite to get." +msgstr "Die Rolle oder der Benutzer, deren Überschreibung erhalten bleiben soll." + +msgid "Returns" +msgstr "Gibt zurück" + +msgid "The permission overwrites for this object." +msgstr "Die Berechtigung überschreibt dieses Objekt." + +msgid "Return type" +msgstr "Rückgabetyp" + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "Returns all of the channel's overwrites." +msgstr "Gibt alle Überschreibungen des Kanals zurück." + +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 "Dies wird als Dictionary zurückgegeben, in dem der Schlüssel das Ziel enthält, das entweder :class:`~discord.Role` oder :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite` sein kann." + +msgid "The channel's permission overwrites." +msgstr "Die Berechtigung des Kanals wird überschrieben." + +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 "Die Kategorie, zu der dieser Channel gehört." + +msgid "If there is no category then this is ``None``." +msgstr "Wenn es keine Kategorie gibt, dann ist das ``None``." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Ob die Berechtigungen für diesen Kanal mit der Kategorie synchronisiert werden, zu der er gehört." + +msgid "If there is no category then this is ``False``." +msgstr "Wenn es keine Kategorie gibt, dann ist dies ``False``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Behandelt die Berechtigungsauflösung für :class:`~discord.Member` oder :class:`~discord.Role`." + +msgid "This function takes into consideration the following cases:" +msgstr "Diese Funktion berücksichtigt die folgenden Fälle:" + +msgid "Guild owner" +msgstr "Gilden Besitzer" + +msgid "Guild roles" +msgstr "Gilden Rollen" + +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 "Die Standardrollenberechtigung" + +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 "Löscht den Kanal." + +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 "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 "Der Kanal wurde nicht gefunden oder schon gelöscht." + +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 "Beispiele" + +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 "Das Mitglied oder die Rolle, für die Berechtigungen überschrieben werden sollen." + +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 "Du hast keine Berechtigungen, um kanalspezifische Berechtigungen zu bearbeiten." + +msgid "Editing channel specific permissions failed." +msgstr "Bearbeitung der kanalspezifischen Berechtigungen ist fehlgeschlagen." + +msgid "The role or member being edited is not part of the guild." +msgstr "Die Rolle oder das Mitglied, das bearbeitet wird, ist nicht Teil des Servers." + +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 "Der Channel, welcher erstellt wurde." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "Du hast nicht die nötigen Berechtigungen, um diesen Kanal zu erstellen." + +msgid "Creating the channel failed." +msgstr "Erstellung des Kanals ist fehlgeschlagen." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "Eine umfangreiche Schnittstelle, die dabei hilft, einen Kanal relativ zu anderen Kanälen zu verschieben." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "Wenn eine exakte Positionsbewegung erforderlich ist, sollte stattdessen ``edit`` verwendet werden." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Sprachkanäle werden immer unter Textkanäle sortiert. Dies ist eine Einschränkung von Discord selbst." + +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 "Gibt an, ob der Kanal an den Anfang der Kanalliste (oder an die Kategorie, falls gegeben) verschoben werden soll. Dies schließt sich mit ``end``, ``before`` und ``after`` gegenseitig aus." + +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 "Gibt an, ob der Kanal an das Ende der Kanalliste (oder an die Kategorie, wenn gegeben) verschoben werden soll. Dies schließt sich gegenseitig mit ``beginning``, ``before`` und ``after`` aus." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "Der Kanal, der vor unserem aktuellen Kanal liegen soll. Dies schließt sich mit ``beginning``, ``end``, und ``after`` gegenseitig aus." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "Der Kanal, der nach unserem aktuellen Kanal liegen soll. Dies schließt sich gegenseitig mit ``beginning``, ``end``, und ``after`` aus." + +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 "Die Anzahl der Kanäle, um die der Zug versetzt werden soll. Zum Beispiel würde ein Offset von ``2`` mit ``beginning=True`` ihn 2 nach dem Anfang verschieben. Eine positive Zahl verschiebt sie nach unten, während sich eine negative Zahl nach oben bewegt. Beachten Sie, dass diese Zahl relativ ist und nach den Parametern ``Anfangs``, ``Ende``, ``before`` und ``after`` berechnet wird." + +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 "Die Kategorie, unter die dieser Kanal verschoben wird. Wenn ``None`` gegeben wird, bewegt er ihn aus der Kategorie. Dieser Parameter wird ignoriert, wenn ein Kategorie-Kanal verschoben wird." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Gibt an, ob die Berechtigungen mit der Kategorie synchronisiert werden sollen (falls vorhanden)." + +msgid "The reason for the move." +msgstr "Der Grund für den Umzug des Kanals." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "Eine ungültige Position wurde angegeben oder eine nicht ausführbare Mischung von Argumenten wurde übergeben." + +msgid "You do not have permissions to move the channel." +msgstr "Du hast nicht die nötigen Berechtigungen, um den Kanal zu verschieben." + +msgid "Moving the channel failed." +msgstr "Verschiebung des Kanals fehlgeschlagen." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Erstellt eine Soforteinladung von einem Text oder Sprachkanal." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "Sie müssen die :attr:`~discord.Permissions.create_instant_invite` Berechtigung haben, um dies tun zu können." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "Wie lange soll die Einladung zum Ablaufen Brauchen? Wenn die zahl, 0 ist, wird die Einladung nicht ablaufen. Standard ist ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "Wie viele Verwendungen User können durch diese Einladung beitreten? Wenn die Zahl 0 ist, sind die Verwendungen unbegrenzt. Standardmäßig ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Gibt an, dass die Einladung eine vorübergehende Mitgliedschaft gewährt (d. h. sie werden gekickt, nachdem sie die Verbindung getrennt haben). Der Standardwert ist „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 "Gibt an, ob ein einzigartiger Einladungslink erstellt werden soll. Standardmäßig auf True. Wenn dies auf ``False`` gesetzt ist, wird es eine kürzlich erstellte Einladung zurückgeben." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "Der Grund für die Erstellung dieser Einladung. Wird im Audit-Log angezeigt." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "Der Typ des Ziels für die Sprachkanaleinladung, falls vorhanden. … Version hinzugefügt: : 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "Der Typ des Ziels für die Sprachkanaleinladung, falls vorhanden." + +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 "Der Benutzer, dessen Stream für diese Einladung angezeigt werden soll. Erforderlich, wenn „target_type“ „TargetType.stream“ ist. Der Benutzer muss im Kanal streamen. Version hinzugefügt: : 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 "Der Benutzer, dessen Stream für diese Einladung angezeigt werden soll, erforderlich, wenn „target_type“ „TargetType.stream“ ist. Der Benutzer muss im Kanal streamen." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "Die Id der eingebetteten Anwendung für die Einladung, erforderlich, wenn „target_type“ „TargetType.embedded_application“ ist. Version hinzugefügt: : 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "Die ID der eingebetteten Anwendung für die Einladung, erforderlich, wenn „target_type“ „TargetType.embedded_application“ ist." + +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 "Das geplante Ereignisobjekt, das mit dem Ereignis verknüpft werden soll. Verknüpfung zu :meth:`.Invite.set_scheduled_event` Weitere Informationen zur Verknüpfung von Veranstaltungseinladungen finden Sie unter :meth:`.Invite.set_scheduled_event`. .. Version hinzugefügt:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "Das geplante Ereignisobjekt, das mit dem Ereignis verknüpft werden soll. Verknüpfung zu :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "Weitere Informationen zur Verknüpfung von Veranstaltungseinladungen finden Sie unter :meth:`.Invite.set_scheduled_event`." + +msgid "The invite that was created." +msgstr "Die Einladung wurde erfolgreich erstellt." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Erstellen der Einladung ist Fehlgeschlagen." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "Der übergebene Kanal ist eine Kategorie oder ein ungültiger Kanal." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Gibt eine Liste aller aktiven Soforteinladungen von diesem Kanal zurück." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "Sie müssen über :attr:`~discord.Permissions.manage_channels` verfügen, um diese Informationen zu erhalten." + +msgid "The list of invites that are currently active." +msgstr "Liste der Einladungen, die derzeit aktiv sind." + +msgid "List[:class:`~discord.Invite`]" +msgstr "Liste[:class:`~discord.Invite`]" + +msgid "You do not have proper permissions to get the information." +msgstr "Sie verfügen nicht über die erforderlichen Berechtigungen, um die Informationen abzurufen." + +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 "Du musst :attr:`~discord.Permissions.read_message_history` Berechtigungen haben, um dies verwenden zu können." + +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 "Die Anfrage, den Nachrichtenverlauf zu bekommen, ist fehlgeschlagen." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Usage ::" +msgstr "Nutzung ::" + +msgid "Flattening into a list: ::" +msgstr "Flattening into a list: ::" + +msgid "All parameters are optional." +msgstr "Alle Parameter sind optional." + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Gibt einen Kontextmanager zurück, der es Ihnen erlaubt, auf unbegrenzte Zeit zu schreiben." + +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 "Dies ist sowohl ein regulärer Kontextmanager als auch ein Async-Kontextmanager. Das heißt, dass sowohl ```with``` als auch ```async with``` hiermit funktionieren." + +msgid "Example Usage: ::" +msgstr "Example Usage: ::" + +msgid "Sends a message to the destination with the content given." +msgstr "Sendet eine Nachricht an das Ziel mit dem gegebenen Inhalt." + +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 "Der Inhalt der zu sendenden Nachricht." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Gibt an, ob die Nachricht mit Text-zu-Sprache gesendet werden soll." + +msgid "The rich embed for the content." +msgstr "The rich embed for the content." + +msgid "The file to upload." +msgstr "Die hochzuladende Datei." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "Eine Liste von hochzuladenden Dateien. Es dürfen maximal 10 sein." + +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 "Die zu sendende Umfrage." + +msgid "The message that was sent." +msgstr "Die Nachricht, die gesendet wurde." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "Sending the message failed." +msgstr "Das Senden der Nachricht ist fehlgeschlagen." + +msgid "You do not have the proper permissions to send the message." +msgstr "Du hast nicht die nötigen Berechtigungen, um die Nachricht zu senden." + +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 "Die angefragte Nachricht." + +msgid "The specified message was not found." +msgstr "Die angegebene Nachricht wurde nicht gefunden." + +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 "Das Abrufen der Nachricht ist fehlgeschlagen." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Ruft alle Nachrichten ab, die aktuell im Kanal angepinnt sind." + +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 "Die aktuell angepinnten Nachrichten." + +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..747430e8d8 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,877 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Anwendungsbefehle" + +msgid "Command Permission Decorators" +msgstr "Befehlsberechtigungs Dekoratoren" + +msgid "A decorator that limits the usage of an application command to members with certain permissions." +msgstr "Ein Dekorateur welcher die Verwendung eines Anwendungsbefehls auf einige Nutzer mit bestimmten Berechtigungen beschränkt." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "Die übergebenen Berechtigungen müssen exakt mit den Eigenschaften in :class:`.discord.Permissions` übereinstimmen." + +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 "Diese Berechtigungen können von jedem Server Administrator je Discord-Server verändert werden. Aus diesem Grund heißt die Funktion auch nur \"default\" da die benötigten Berechtigungen geändert werden können. Wenn du wirklich sicher gehen willst das der Nutzer **immer** die festgelegten Berechtigungen hat, solltest du das selber intern prüfen mit einer Funktion wie :func:`~ext-commands.hast_permissions`." + +msgid "Parameters" +msgstr "Parameter" + +msgid "An argument list of permissions to check for." +msgstr "Eine Liste mit Berechtigungen gegen die geprüft werden soll." + +msgid "Return type" +msgstr "Rückgabetyp" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" + +msgid "Example" +msgstr "Beispiel" + +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 "Ein Decorator welcher die Nutzung eines App-Befehls nur in Discord-Servern erlaubt. Das heißt, der Befehl ist nicht mehr in Direktnachrichten verfügbar." + +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 "Ein Decorator welcher die Nutzung des App-Befehls nur in Discord-Kanälen mit aktivierter NSFW Einstellung erlaubt. Nutzer müssen, um den Befehl in Direktnachrichten zu nutzen, in ihren Privatsphäre Einstellungen \"Zugriff auf altersbegrenzte Befehle von Apps in Direknachrichten zulassen\" aktiviert haben." + +msgid "Note that apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Beachten Sie, dass Apps, die im App-Verzeichnis aufgelistet werden sollen, keine NSFW-Befehle haben können." + +msgid "Commands" +msgstr "Befehle" + +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 "tftftfEin Decorator welcher eine Funktion in eine :class:`.ApplicationCommand` verwandelt. Meistens eines von :class:`.SlashCommand`, :class:`.UserCommand` oder :class:`.MessageCommand` wobei die exakte Klasse von dem ``cls`` Parameter abhängt. Normalerweise ist die ``Beschreibung`` direkt aus der Funktionsbeschreibung entnommen und wird von ``inspect.cleandoc`` gereinigt. Falls die Funktionsbeschreibung vom Typen ``bytes`` ist, wird es in einen :class:`str` mit Utf-8 Codierung dekodiert. Das ``Name`` Attribut ist normalerweise der Funktionsname ungeändert." + +msgid "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." +msgstr "Die Klasse zum Erschaffen. Normalerweise :class:`.SlashCommand`, normalerweise wird es nicht geändert." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Argumente welche in den Konstruktor der ``cls`` Klasse gegeben werden." + +msgid "Returns" +msgstr "Gibt zurück" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." +msgstr "Ein Decorator, der die angegebene Methode in einen :class:`.ApplicationCommand`, oder Unterklasse davon konvertiert." + +msgid "Callable[..., :class:`.ApplicationCommand`]" +msgstr "Callable[..., :class:`.ApplicationCommand`]" + +msgid "Raises" +msgstr "Mögliche Fehlermeldungen" + +msgid "If the function is not a coroutine or is already a command." +msgstr "Die Funktion ist keine Coroutine oder ist bereits ein Befehl" + +msgid "An alias for :meth:`application_command`." +msgstr "Ein Alias für :meth:`application_command`." + +msgid "This decorator is overridden by :func:`ext.commands.command`." +msgstr "Dieser Decorator wird von :func:`ext.commands.command` überschrieben." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`." +msgstr "Ein Decorator, der die angegebene Methode in einen :class:`.ApplicationCommand` umwandelt." + +msgid "Decorator for slash commands that invokes :func:`application_command`." +msgstr "Decorator für Slash Befehle, die :func:`application_command` aufrufen." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`." +msgstr "Ein Decorator, der die angegebene Methode in einen :class:`.SlashCommand` umwandelt." + +msgid "Callable[..., :class:`.SlashCommand`]" +msgstr "Callable[..., :class:`.SlashCommand`]" + +msgid "Decorator for user commands that invokes :func:`application_command`." +msgstr "Decorator für Nutzer Befehle, die :func:`application_command` aufrufen." + +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 für Nachrichten Befehle, die :func:`application_command` aufrufen." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`." +msgstr "Ein Decorator, der die angegebene Methode in einen :class:`.MessageCommand` umwandelt." + +msgid "Callable[..., :class:`.MessageCommand`]" +msgstr "Callable[..., :class:`.MessageCommand`]" + +msgid "Objects" +msgstr "Objekte" + +msgid "Checks whether the command is currently on cooldown." +msgstr "Prüft, ob der Befehl momentan in der Abklingzeit ist." + +msgid "This uses the current time instead of the interaction time." +msgstr "Dies verwendet die aktuelle Zeit anstelle der Interaktionszeit." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "Der Kontext mit welchem die Befehls Abklingzeit geprüft werden soll." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "Ein boolescher Ausdruck, ob der Befehl noch abklingt." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Resets the cooldown on this command." +msgstr "Setzt die Abklingzeit dieses Befehls zurück." + +msgid "The invocation context to reset the cooldown under." +msgstr "Der Kontext des Befehls zum Zurücksetzen der Abklingzeit." + +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 "Ruft die Anzahl der Sekunden ab, bevor dieser Befehl erneut ausgeführt werden kann." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "Der Kontext des Befehls zum Erhalten der Abklingzeit." + +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 "Die verbleibende Abklingzeit des Befehls in Sekunden. Wenn dies ``0.0`` ist, ist der Befehl nicht am Abklingen." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "Ein Decorator welcher die Coroutine zur lokalen Fehlerbehandlung registriert." + +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 "Ein lokaler Fehlerhändler ist ein :func:`.on_command_error` Ereignis auf einen einzigen Befehl limitiert. Trotz des Fehlerhändlers wird danach noch :func:`.on_command_error` aufgerufen, um alle Fehler zu behandeln." + +msgid "The coroutine to register as the local error handler." +msgstr "Die Coroutine, die als lokale Fehlerbehandlung registriert werden soll." + +msgid "The coroutine passed is not actually a coroutine." +msgstr "Die übergebene Coroutine ist keine Coroutine." + +msgid "Checks whether the command has an error handler registered." +msgstr "Prüft, ob der Befehl einen Fehlerhändler registriert hat." + +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 "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..9f098f8d8d --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/clients.po @@ -0,0 +1,1567 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Verursacht" + +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 "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 "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 "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..eef645fe26 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/cogs.po @@ -0,0 +1,187 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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 "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 ":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..8230d7612c --- /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 "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 ":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..b12fa4f3a2 --- /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 "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/de/LC_MESSAGES/api/events.po b/docs/locales/de/LC_MESSAGES/api/events.po new file mode 100644 index 0000000000..2e9a4c56ee --- /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 "Übersicht der Events" + +msgid "This section outlines the different types of events listened by :class:`Client`." +msgstr "Dieser Bereich beschreibt die verschiedenen Arten von Ereignissen in :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 "Anwendungsbefehle" + +msgid "Called when an application command is received." +msgstr "Ausgelöst, wenn ein Anwendungsbefehl empfangen wird." + +msgid "Parameters" +msgstr "Parameter" + +msgid "The ApplicationContext associated to the command being received." +msgstr "Der ApplicationContext verbunden mit dem Befehl, der empfangen wurde." + +msgid "Called when an application command is completed, after any checks have finished." +msgstr "Aufgerufen, wenn ein Anwendungsbefehl vollendet ist, nachdem alle Überprüfungen fertig sind." + +msgid "The ApplicationContext associated to the command that was completed." +msgstr "Der ApplicationContext verbunden mit dem Befehl, der vollendet wurde." + +msgid "Called when an application command has an error." +msgstr "Ausgelöst, wenn ein Anwendungsbefehl einen Fehler hat." + +msgid "The ApplicationContext associated to the command that has an error." +msgstr "Der ApplicationContext verbunden mit dem Befehl, der einen Fehler hat." + +msgid "The DiscordException associated to the error." +msgstr "Die DiscordException verbunden mit dem Fehler." + +msgid "Called when an application command was not found in the bot's internal cache." +msgstr "Aufgerufen, wenn ein Anwendungsbefehl nicht im bot internen Zwischenspeicher gefunden werden konnte." + +msgid "The interaction associated to the unknown command." +msgstr "Die Interaktion verbunden mit dem unbekannten Befehl." + +msgid "Audit Logs" +msgstr "Protokolle" + +msgid "Called when an audit log entry is created." +msgstr "Aufgerufen, wenn ein Eintrag im Protokoll erstellt wurde." + +msgid "The bot must have :attr:`~Permissions.view_audit_log` to receive this, and :attr:`Intents.moderation` must be enabled." +msgstr "Der Bot muss die Berechtigung :attr:`~Permissions.view_audit_log` haben, damit dieses empfangen werden kann und :attr:`Intents.moderation` muss aktiviert sein." + +msgid "The audit log entry that was created." +msgstr "Der Eintrag vom Protokoll, der erstellt wurde." + +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..8d62e39e44 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/api/models.po @@ -0,0 +1,7804 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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 ":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 "Der Nutzername des Nutzers." + +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 "Der globale Name des Benutzers." + +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 "Gibt eine Zeichenkette zurück, mit der Sie den angegebenen Benutzer erwähnen können." + +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 "Die Position in der Kanalliste. Beginnt bei 0 z.B. der obere Kanal ist 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 "Du hast nicht die nötigen Berechtigungen, um diesen Kanal zu erstellen." + +msgid "Creating the channel failed." +msgstr "Erstellung des Kanals ist fehlgeschlagen." + +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 "Sie verfügen nicht über die erforderlichen Berechtigungen, um die Informationen abzurufen." + +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 "Liste der Einladungen, die derzeit aktiv sind." + +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 "Retrieves a :class:`Role` that the guild has." +msgstr "Retrieves a :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider using :attr:`get_role` instead." +msgstr "This method is an API call. For general usage, consider using :attr:`get_role` instead." + +msgid "The role in the guild with the specified ID." +msgstr "The role in the guild with the specified ID." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "Retrieving the role failed." +msgstr "Retrieving the role 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 "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 "Die Zeichenkette, mit der du den Kanal erwähnen kannst." + +msgid "Returns the channel's creation time in UTC." +msgstr "Gibt die Erstellungszeit des Kanals im UTC Format zurück." + +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 "Behandelt die Berechtigungsauflösung für :class:`~discord.Member` oder :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 "Der Name des Kanals." + +msgid "The guild the channel belongs to." +msgstr "Die Gilde, zu der der Kanal gehört." + +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 "Die Kategorie, zu der dieser Channel gehört." + +msgid "If there is no category then this is ``None``." +msgstr "Wenn es keine Kategorie gibt, dann ist das ``None``." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Gibt eine Liste von Rollen zurück, die von ihren Standardwerten im Attribut :attr:`~discord.Guild.roles` überschrieben wurden." + +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 "Erstellt eine Soforteinladung von einem Text oder Sprachkanal." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "Sie müssen die :attr:`~discord.Permissions.create_instant_invite` Berechtigung haben, um dies tun zu können." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "Wie lange soll die Einladung zum Ablaufen Brauchen? Wenn die zahl, 0 ist, wird die Einladung nicht ablaufen. Standard ist ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "Wie viele Verwendungen User können durch diese Einladung beitreten? Wenn die Zahl 0 ist, sind die Verwendungen unbegrenzt. Standardmäßig ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Gibt an, dass die Einladung eine vorübergehende Mitgliedschaft gewährt (d. h. sie werden gekickt, nachdem sie die Verbindung getrennt haben). Der Standardwert ist „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 "Gibt an, ob ein einzigartiger Einladungslink erstellt werden soll. Standardmäßig auf True. Wenn dies auf ``False`` gesetzt ist, wird es eine kürzlich erstellte Einladung zurückgeben." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "Der Grund für die Erstellung dieser Einladung. Wird im Audit-Log angezeigt." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "Der Typ des Ziels für die Sprachkanaleinladung, falls vorhanden. … Version hinzugefügt: : 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "Der Typ des Ziels für die Sprachkanaleinladung, falls vorhanden." + +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 "Der Benutzer, dessen Stream für diese Einladung angezeigt werden soll. Erforderlich, wenn „target_type“ „TargetType.stream“ ist. Der Benutzer muss im Kanal streamen. Version hinzugefügt: : 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 "Der Benutzer, dessen Stream für diese Einladung angezeigt werden soll, erforderlich, wenn „target_type“ „TargetType.stream“ ist. Der Benutzer muss im Kanal streamen." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "Die Id der eingebetteten Anwendung für die Einladung, erforderlich, wenn „target_type“ „TargetType.embedded_application“ ist. Version hinzugefügt: : 2.0" + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." +msgstr "Die ID der eingebetteten Anwendung für die Einladung, erforderlich, wenn „target_type“ „TargetType.embedded_application“ ist." + +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 "Das geplante Ereignisobjekt, das mit dem Ereignis verknüpft werden soll. Verknüpfung zu :meth:`.Invite.set_scheduled_event` Weitere Informationen zur Verknüpfung von Veranstaltungseinladungen finden Sie unter :meth:`.Invite.set_scheduled_event`. .. Version hinzugefügt:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "Das geplante Ereignisobjekt, das mit dem Ereignis verknüpft werden soll. Verknüpfung zu :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "Weitere Informationen zur Verknüpfung von Veranstaltungseinladungen finden Sie unter :meth:`.Invite.set_scheduled_event`." + +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 "Erstellen der Einladung ist Fehlgeschlagen." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "Der übergebene Kanal ist eine Kategorie oder ein ungültiger Kanal." + +msgid "Deletes the channel." +msgstr "Löscht den Kanal." + +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 "Der Kanal wurde nicht gefunden oder schon gelöscht." + +msgid "Deleting the channel failed." +msgstr "Deleting the channel failed." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Gibt eine Liste aller aktiven Soforteinladungen von diesem Kanal zurück." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "Sie müssen über :attr:`~discord.Permissions.manage_channels` verfügen, um diese Informationen zu erhalten." + +msgid "List[:class:`~discord.Invite`]" +msgstr "Liste[:class:`~discord.Invite`]" + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Gibt eine URL zurück, die es dem Client erlaubt, in den Kanal zu springen." + +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 "Eine umfangreiche Schnittstelle, die dabei hilft, einen Kanal relativ zu anderen Kanälen zu verschieben." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "Wenn eine exakte Positionsbewegung erforderlich ist, sollte stattdessen ``edit`` verwendet werden." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Sprachkanäle werden immer unter Textkanäle sortiert. Dies ist eine Einschränkung von Discord selbst." + +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 "Gibt an, ob der Kanal an den Anfang der Kanalliste (oder an die Kategorie, falls gegeben) verschoben werden soll. Dies schließt sich mit ``end``, ``before`` und ``after`` gegenseitig aus." + +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 "Gibt an, ob der Kanal an das Ende der Kanalliste (oder an die Kategorie, wenn gegeben) verschoben werden soll. Dies schließt sich gegenseitig mit ``beginning``, ``before`` und ``after`` aus." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "Der Kanal, der vor unserem aktuellen Kanal liegen soll. Dies schließt sich mit ``beginning``, ``end``, und ``after`` gegenseitig aus." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "Der Kanal, der nach unserem aktuellen Kanal liegen soll. Dies schließt sich gegenseitig mit ``beginning``, ``end``, und ``after`` aus." + +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 "Die Anzahl der Kanäle, um die der Zug versetzt werden soll. Zum Beispiel würde ein Offset von ``2`` mit ``beginning=True`` ihn 2 nach dem Anfang verschieben. Eine positive Zahl verschiebt sie nach unten, während sich eine negative Zahl nach oben bewegt. Beachten Sie, dass diese Zahl relativ ist und nach den Parametern ``Anfangs``, ``Ende``, ``before`` und ``after`` berechnet wird." + +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 "Die Kategorie, unter die dieser Kanal verschoben wird. Wenn ``None`` gegeben wird, bewegt er ihn aus der Kategorie. Dieser Parameter wird ignoriert, wenn ein Kategorie-Kanal verschoben wird." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Gibt an, ob die Berechtigungen mit der Kategorie synchronisiert werden sollen (falls vorhanden)." + +msgid "The reason for the move." +msgstr "Der Grund für den Umzug des Kanals." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "Eine ungültige Position wurde angegeben oder eine nicht ausführbare Mischung von Argumenten wurde übergeben." + +msgid "You do not have permissions to move the channel." +msgstr "Du hast nicht die nötigen Berechtigungen, um den Kanal zu verschieben." + +msgid "Moving the channel failed." +msgstr "Verschiebung des Kanals fehlgeschlagen." + +msgid "Returns all of the channel's overwrites." +msgstr "Gibt alle Überschreibungen des Kanals zurück." + +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 "Dies wird als Dictionary zurückgegeben, in dem der Schlüssel das Ziel enthält, das entweder :class:`~discord.Role` oder :class:`~discord.Member` and the value is the overwrite as a :class:`~discord.PermissionOverwrite` sein kann." + +msgid "The channel's permission overwrites." +msgstr "Die Berechtigung des Kanals wird überschrieben." + +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 "Gibt die kanalspezifischen Überschreibungen eines Mitglieds oder einer Rolle zurück." + +msgid "The role or user denoting whose overwrite to get." +msgstr "Die Rolle oder der Benutzer, deren Überschreibung erhalten bleiben soll." + +msgid "The permission overwrites for this object." +msgstr "Die Berechtigung überschreibt dieses Objekt." + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "This function takes into consideration the following cases:" +msgstr "Diese Funktion berücksichtigt die folgenden Fälle:" + +msgid "Guild owner" +msgstr "Gilden Besitzer" + +msgid "Guild roles" +msgstr "Gilden Rollen" + +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 "Die Standardrollenberechtigung" + +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 "Ob die Berechtigungen für diesen Kanal mit der Kategorie synchronisiert werden, zu der er gehört." + +msgid "If there is no category then this is ``False``." +msgstr "Wenn es keine Kategorie gibt, dann ist dies ``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 "Das Mitglied oder die Rolle, für die Berechtigungen überschrieben werden sollen." + +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 "Du hast keine Berechtigungen, um kanalspezifische Berechtigungen zu bearbeiten." + +msgid "Editing channel specific permissions failed." +msgstr "Bearbeitung der kanalspezifischen Berechtigungen ist fehlgeschlagen." + +msgid "The role or member being edited is not part of the guild." +msgstr "Die Rolle oder das Mitglied, das bearbeitet wird, ist nicht Teil des Servers." + +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 "Der Benutzer, der sich selbst repräsentiert." + +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..6cfb6bf93c --- /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 "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/de/LC_MESSAGES/api/ui_kit.po b/docs/locales/de/LC_MESSAGES/api/ui_kit.po new file mode 100644 index 0000000000..4f1e8f3fe7 --- /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 "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 ":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..d99c3de957 --- /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 "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 ":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..a016b11b35 --- /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 "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 ":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..782e6cae2d --- /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 "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 ":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..8b3003f0c5 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/changelog.po @@ -0,0 +1,1111 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️" + +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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" + +msgid "Added" +msgstr "Added" + +msgid "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" +msgstr "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +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..eb9c8c8820 --- /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 Referenz" + +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 "Übersicht der Events" + +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 "Dieses Ereignis wird unabhängig davon aufgerufen, ob der Befehl erfolgreich ausgeführt wird oder einen Fehler verursacht." + +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 "Ein Decorator, der eine Coroutine als lokalen Fehlerbehandler registriert." + +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 "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 ":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..bb7c13a7ec --- /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 "Dieses Modul erlaubt es einen Befehl Callback für Prefix Command und Slash Command zu nutzen. Diese Seite enthält die API Referenzen und Dokumentation für dieses Modul aber nur ein kurzes Beispiel. Für einen besseren Guide wie man das Modul nutzen kann schau dir `discord.ext.bridge guide `_ an." + +msgid "Example usage:" +msgstr "Beispiel Verwendung:" + 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..3afc65ebb9 --- /dev/null +++ b/docs/locales/de/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4105 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Die Verwendung von Präfix-Befehlen in Gilden erfordert die Aktivierung von :attr:`Intents.message_content`." + +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 "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 "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 "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 "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 "An iterator that recursively walks through all commands and subcommands." +msgstr "An iterator that recursively walks through all commands and subcommands." + +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 "Übersicht der Events" + +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 "Dieses Ereignis wird unabhängig davon aufgerufen, ob der Befehl erfolgreich ausgeführt wird oder einen Fehler verursacht." + +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 "Ein Decorator, der eine Coroutine als lokalen Fehlerbehandler registriert." + +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 "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..6410b40cb1 --- /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 "Befehle" + +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 "Einer der attraktivsten Aspekte der Befehlserweiterung ist die einfache Definition von Befehlen und die Möglichkeit, Gruppen und Befehle beliebig zu verschachteln, um ein umfangreiches System von Unterbefehlen zu erhalten." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Die Verwendung von Präfix-Befehlen in Gilden erfordert die Aktivierung von :attr:`Intents.message_content`." + +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 "Befehle werden durch Anhängen einer regulären Python-Funktion definiert. Der Befehl wird dann vom Benutzer mit einer ähnlichen Signatur wie die Python-Funktion aufgerufen." + +msgid "For example, in the given command definition:" +msgstr "Zum Beispiel in der angegebenen Befehlsdefinition:" + +msgid "With the following prefix (``$``), it would be invoked by the user via:" +msgstr "Mit dem folgenden Präfix (``$``) würde es vom Benutzer aufgerufen werden über:" + +msgid "A command must always have at least one parameter, ``ctx``, which is the :class:`.Context` as the first one." +msgstr "Ein Befehl muss immer mindestens einen Parameter haben, ``ctx``, das ist die :class:`.Context` als erster Parameter." + +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 "Es gibt zwei Möglichkeiten, einen Befehl zu registrieren. Die erste ist die Verwendung von :meth:`.Bot.command` Dekorator, wie im obigen Beispiel zu sehen. Der zweite benutzt :func:`~ext.commands.command` Dekorator, gefolgt von :meth:`.Bot.add_command` in der Instanz." + +msgid "Essentially, these two are equivalent: ::" +msgstr "Im Wesentlichen sind diese beiden gleichwertig: ::" + +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..17effe63cc --- /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 "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 ":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..bbf13cb606 --- /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 "Wie gehe ich mit :exc:`asyncio.CancelledError` um?" + +msgid "What do I do if the internet goes out?" +msgstr "Was mache ich, wenn das Internet ausgeht?" + +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 "Verursacht" + +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..5326557f7a --- /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 "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/de/LC_MESSAGES/index.po b/docs/locales/de/LC_MESSAGES/index.po new file mode 100644 index 0000000000..5d0647120b --- /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, funktionsreicher und asynchroner 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 "Vernünftige 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 "Nutzen Sie die Bibliothek zum ersten Mal? Dies ist der Ort, an dem Sie loslegen können!" + +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 in der :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 "Probieren Sie 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:`searching `." + +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 darauf ein, was die API kann." + +msgid "Core API" +msgstr "Kern 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 Slash-Befehle zu Prefixed-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..c4110cad89 --- /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 "Pycord installieren" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "Dies ist die Dokumentation für Pycord, eine Bibliothek für Python, die bei der Erstellung von Anwendungen hilft, die die Discord API verwenden." + +msgid "Prerequisites" +msgstr "Voraussetzungen" + +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 funktioniert mit Python 3.8 oder höher. Es wird keine Unterstützung für frühere Python-Versionen bereitgestellt. Python 2.7 oder niedriger wird nicht unterstützt. Python 3.7 oder niedriger wird nicht unterstützt." + +msgid "Installing" +msgstr "Installieren" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "Für neue Funktionen in kommenden Versionen müssen Sie die Vorversion installieren, bis eine stabile Version veröffentlicht ist. ::" + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "Für Windows-Benutzer sollte dieser Befehl verwendet werden, um die Betaversion zu installieren: ::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "Sie können die Bibliothek direkt von PyPI erhalten: ::" + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "Wenn Sie Windows verwenden, sollte stattdessen folgendes verwendet werden: ::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "Um zusätzliche Pakete für Beschleunigung zu installieren, sollten Sie ``py-cord[speed]`` anstelle von ``py-cord`` verwenden, z.B." + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "Um Sprachunterstützung zu erhalten, sollten Sie ``py-cord[voice]`` anstelle von ``py-cord`` verwenden, z. B. ::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "Auf Linux-Umgebungen erfordert das Installieren der Sprachunterstützung folgende Abhängigkeiten:" + +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 "Für ein Debian-basiertes System erhält der folgende Befehl folgende Abhängigkeiten:" + +msgid "Remember to check your permissions!" +msgstr "Denken Sie daran, Ihre Berechtigungen zu überprüfen!" + +msgid "Virtual Environments" +msgstr "Virtuelle Umgebungen" + +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 "Manchmal möchten Sie Bibliotheken davon abhalten, System Installationen zu verschmutzen oder eine andere Version von Bibliotheken als die auf dem System installierten zu verwenden. Möglicherweise haben Sie ebenfalls nicht die Berechtigung, Bibliotheken systemweit zu installieren. Zu diesem Zweck enthält die Standardbibliothek ab Python 3.3 ein Konzept mit dem Namen \"Virtuelle Umgebung\"en, um diese separaten Versionen zu unterhalten." + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "Eine ausführlichere Anleitung finden Sie auf :doc:`py:tutorial/venv`." + +msgid "However, for the quick and dirty:" +msgstr "Aber für die Schnellen und Schmutzigen:" + +msgid "Go to your project's working directory:" +msgstr "Gehen Sie zum Arbeitsverzeichnis Ihres Projekts:" + +msgid "Activate the virtual environment:" +msgstr "Aktivieren Sie die virtuelle Umgebung:" + +msgid "On Windows you activate it with:" +msgstr "Auf Windows aktivieren Sie diese mit:" + +msgid "Use pip like usual:" +msgstr "Pip wie üblich verwenden:" + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "Glückwunsch. Sie haben nun eine virtuelle Umgebung eingerichtet." + +msgid "Basic Concepts" +msgstr "Basiskonzepte" + +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 dreht sich um das Konzept von :ref:`events `. Ein Event ist etwas, auf das Sie hören und dann reagieren. Zum Beispiel, wenn eine Nachricht passiert, erhalten Sie ein Event darüber, auf das Sie reagieren können." + +msgid "A quick example to showcase how events work:" +msgstr "Ein schnelles Beispiel, um zu zeigen, wie Events funktionieren:" + diff --git a/docs/locales/de/LC_MESSAGES/intents.po b/docs/locales/de/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..fe7c5027a9 --- /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 "Einführung zu 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 "Welche Intents werden benötigt?" + +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 "Privilegierte 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 "Privilegierte Intents müssen im Developer-Portal von dir manuell aktiviert werden. Um privilegierte Intents zu aktivieren, tu Folgendes:" + +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 "Klicke auf den Bot, für den du Intents mit Privilegien aktivieren willst." + +msgid "Navigate to the bot tab on the left side of the screen." +msgstr "Navigieren um Bot-Tab auf der linken Seite des Bildschirms." + +msgid "The bot tab in the application page." +msgstr "Der Bot-Tab auf der Seite der Anwendung." + +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 "Der privilegierte Gateway-intents Selektor." + +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 "Brauche ich Intents mit Privilegien?" + +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 "Präsenz 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 "Nachrichteninhalts-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 "Der Bot kann weiterhin Nachrichteninhalte in DMs, in Nachrichten, in welchen der Bot erwähnt wurde und in eigenen Nachrichten erhalten." + +msgid "Member Cache" +msgstr "Mitglieder-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 "Abrufen von Mitgliedern" + +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..e9058e99e9 --- /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 "Logging einrichten" + +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* protokolliert Fehler und Debug-Informationen über das :mod:`logging` Python-Modul. Es wird dringend empfohlen, dass das Logging-Modul konfiguriert ist, da keine Fehler oder Warnungen ausgegeben werden, wenn es nicht eingerichtet ist. Konfiguration des ``logging`` Moduls kann so einfach sein als::" + +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 "Am Anfang der Anwendung platziert. Dies gibt die Protokolle von Discord sowie andere Bibliotheken, die das ``logging`` Modul verwenden direkt auf die Konsole aus." + +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 "Das optionale ``level`` Argument gibt an, welche Ebene der Events geloggt werden soll und kann einer von ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO`` und ``DEBUG`` sein und wenn nicht angegeben, standardmäßig ``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 "Weitere erweiterte Setups sind mit dem :mod:`logging` Modul möglich. Zum Beispiel um die Protokolle in eine Datei namens ``discord.log`` zu protokollieren, anstatt sie auf die Konsole auszugeben, kann folgendes Snippet verwendet werden::" + +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 "Dies wird empfohlen, vor allem auf ausgedehnten Ebenen wie ``INFO`` und ``DEBUG``, da viele Ereignisse protokolliert sind und es den Stdout Ihres Programms verstopfen würde." + +msgid "For more information, check the documentation and tutorial of the :mod:`logging` module." +msgstr "Weitere Informationen finden Sie in der Dokumentation und Anleitung des :mod:`logging` Moduls." + 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..d121fd5a5f --- /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 "Migrieren zu v1.0" + +msgid "v1.0 is one of the biggest breaking changes in the library due to a complete redesign." +msgstr "v1.0 ist eine der größten Erneuerungen in der Bibliothek aufgrund eines kompletten Redesigns." + +msgid "The amount of changes are so massive and long that for all intents and purposes, it is a completely new library." +msgstr "Die Anzahl der Änderungen sind so massiv und lang, dass es in jeder Hinsicht eine völlig neue Bibliothek ist." + +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 "Ein Teil der Neugestaltung besteht darin, die Dinge einfacher und natürlicher zu gestalten. Dinge werden auf den :ref:`models ` erledigt, anstatt eine :class:`Client` Instanz zu benötigen, um irgendeine Arbeit zu leisten." + +msgid "Python Version Change" +msgstr "Änderung der Python-Version" + +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 "Um die Entwicklung zu vereinfachen und auch ein Upgrade unserer Abhängigkeiten zu ermöglichen, um die Verwendung von 3.7 oder höher zu ermöglichen, musste die Bibliothek die Unterstützung für Python-Versionen vor 3.5.3 entfernen, was im Wesentlichen bedeutet, dass **die Unterstützung für Python 3.4 fallen gelassen wurde.**." + +msgid "Major Model Changes" +msgstr "Wichtige Modelländerungen" + +msgid "Below are major model changes that have happened in v1.0" +msgstr "Im Folgenden sind die wichtigsten Änderungen aufgeführt, die in Version 1.0 vorgenommen wurden" + +msgid "Snowflakes are int" +msgstr "Snowflakes sind int" + +msgid "Before v1.0, all snowflakes (the ``id`` attribute) were strings. This has been changed to :class:`int`." +msgstr "Vor v1.0 waren alle snowflakes (das ``id`` Attribut) strings. Dies wurde zu :class:`int` umgeändert." + +msgid "Quick example: ::" +msgstr "Schnelles Beispiel: ::" + +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 "Diese Änderung ermöglicht weniger Fehler bei der Verwendung der Kopier-ID Funktion im offiziellen Client, da Sie diese nicht mehr in Anführungszeichen einpacken müssen und Optimierungsmöglichkeiten ermöglichen können, indem intern ETF anstelle von JSON verwenden werden kann." + +msgid "Server is now Guild" +msgstr "Server ist jetzt 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 "Die offizielle API-Dokumentation nennt das \"Server\"-Konzept stattdessen eine \"Guild\". Um bei Bedarf besser mit der API-Dokumentation übereinstimmen zu können, wurde das Modell in :class:`Guild` umbenannt und alle darauf bezogenen Instanzen wurden ebenfalls geändert." + +msgid "A list of changes is as follows:" +msgstr "Eine Liste der Änderungen lautet wie folgt:" + +msgid "Before" +msgstr "Vor / Bevor" + +msgid "After" +msgstr "Nach" + +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 "Modelle sind Zustands-fähig" + +msgid "As mentioned earlier, a lot of functionality was moved out of :class:`Client` and put into their respective :ref:`model `." +msgstr "Wie bereits erwähnt, wurde eine Menge Funktionalität aus :class:`Client` verschoben und in ihre jeweilige :ref:`model ` aufgenommen." + +msgid "A list of these changes is enumerated below." +msgstr "Eine Liste dieser Änderungen ist unten aufgeführt." + +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` oder :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` und :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` mit ``overwrite`` auf ``None`` gesetzt" + +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` oder :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` oder :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` (Sie bekommen diese von :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` oder :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..c16df29670 --- /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 "Migrieren zu v2.0" + +msgid "v2.0 introduced new Discord features and deprecated some old ones." +msgstr "v2.0 führte neue Discord-Funktionen ein und verwarf einige alte." + +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 "Ein Teil der Neugestaltung umfasst die Erstellung von Anwendungsbefehlen und -komponenten. Zu diesen Änderungen gehören eine neue :class:`Bot`-Klasse, :class:`ui.View` 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 "Änderung der Python-Version" + +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 vereinfachen und auch ein Upgrade unserer Abhängigkeiten zu ermöglichen, um die Verwendung von 3.8 oder höher zu ermöglichen, musste die Bibliothek die Unterstützung für Python-Versionen vor 3.7 entfernen, was im Wesentlichen bedeutet, dass die Unterstützung für Python 3.7 und niedriger fallen gelassen wurde.**." + +msgid "Major Model Changes" +msgstr "Wichtige Modelländerungen" + +msgid "Below are major changes that have happened in v2.0:" +msgstr "Im Folgenden sind die wichtigsten Änderungen aufgeführt, die in Version 2.0 vorgenommen wurden:" + +msgid "Dropped User Accounts Support" +msgstr "Unterstützung für gelöschte Benutzerkonten" + +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 verstieß gegen den Geist der Bibliotheks- und Discord-Nutzungsbedingungen und wurde entfernt. Daher werden diese Funktionen entfernt, die nur für sie galten:" + +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 ``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“ (HINWEIS: „GroupChannel“ selbst bleibt weiterhin bestehen)" + +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 "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``, ``block``, ``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 "Zeitzonenbezogene Zeit" + +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 Sie :class:`datetime.datetime`` selbst erstellen, übergeben Sie ``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 "Beachten Sie, dass das neu hinzugefügte :meth:`utils.utcnow()` als Alias ​​von ``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 "Assetbezogene Attribute, die zuvor Hash-Strings zurückgegeben haben (z. B. :attr:`User.avatar`), geben jetzt :class:`Asset` zurück. :attr:`Asset.key` gibt von nun an den Hash 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. Die Methoden :meth:`Asset.replace` oder :meth:`Asset.with_x` können verwendet werden, um bestimmte Asset-Größen oder -Typen abzurufen." + +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` anstelle von :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 festgelegt ist und stattdessen der Standard-Avatar ist; Verwenden Sie :attr:`User.display_avatar` für das Verhalten vor 2.0." + +msgid "Before" +msgstr "Vor / Bevor" + +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 "``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/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..2267fe9161 --- /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 "Schnellstart" + +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 "Diese Seite gibt eine kurze Einführung in die Bibliothek. Es wird davon ausgegangen, dass du die Bibliothek installiert hast. Falls nicht, schau dir den :ref:`Installieren`-Abschnitt an." + +msgid "A Minimal Bot" +msgstr "Ein minimaler Bot" + +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "Lass uns einen Bot erstellen, der auf eine bestimmte Nachricht antwortet und dich dabei begleiten." + +msgid "It looks something like this:" +msgstr "Es sieht in etwa so aus:" + +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "Da dieses Beispiel den Nachrichteninhalts-Intent nutzt, wird der :attr:`Intents.message_content privilegierter Intents benötigt." + +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 "Lass uns diese Datei ``beispiel_bot.py`` nennen. Nenn die Datei nicht ``discord.py`` das dies mit der Bibliothek in Konflikt kommen wird." + +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 "Jetzt, wo wir einen Bot erstellt haben, müssen wir diesen *starten*. Glücklicherweise ist dies einfach, da dies nur ein Python-Skript ist und wir es direkt starten können." + +msgid "On Windows:" +msgstr "Unter Windows:" + +msgid "On other systems:" +msgstr "Unter anderen Systemen:" + +msgid "Now you can try playing around with your basic bot." +msgstr "Jetzt kannst du probieren, mit deinem einfachen Bot herumzuspielen." + +msgid "A Minimal Bot with Slash Commands" +msgstr "Ein minimaler Bot mit Slash Commands" + +msgid "As a continuation, let's create a bot that registers a simple slash command!" +msgstr "Lass uns als Fortsetzung einen Bot erstellen, der einen einfachen Slash Command registriert!" + +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 "Die erste Zeile bleibt unverändert." + +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..0cb719a91e --- /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 erheben keinen Anspruch auf Vollständigkeit." + +msgid "Examples of Breaking Changes" +msgstr "Beispiele für bahnbrechende Änderungen" + +msgid "Changing the default parameter value to something else." +msgstr "Ändern des Standardparameterwerts in einen anderen Wert." + +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 bahnbrechende Änderungen" + +msgid "Adding or removing private underscored attributes." +msgstr "Hinzufügen oder Entfernen privater unterstrichener Attribute." + +msgid "Adding an element into the ``__slots__`` of a data class." +msgstr "Hinzufügen eines Elements zu den „__slots__“ einer Datenklasse." + +msgid "Changing the behaviour of a function to fix a bug." +msgstr "Hinzufügen eines Elements zu den „__slots__“ einer Datenklasse." + +msgid "Changes in the documentation." +msgstr "Änderungen in der Dokumentation." + +msgid "Modifying the internal HTTP handling." +msgstr "Ändern der internen HTTP-Verarbeitung." + +msgid "Upgrading the dependencies to a new version, major or otherwise." +msgstr "Aktualisieren der Abhängigkeiten auf eine neue Version, ob Hauptversion oder nicht." + diff --git a/docs/locales/en/LC_MESSAGES/api/abcs.po b/docs/locales/en/LC_MESSAGES/api/abcs.po new file mode 100644 index 0000000000..bf133d6e16 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/abcs.po @@ -0,0 +1,1245 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 "" + +#: 4741c9654bd94685b8e9999b040bceb8 discord.abc.Snowflake:1 of +msgid "An ABC that details the common operations on a Discord model." +msgstr "" + +#: 47bea6eba12a4be891c27a511774e540 discord.abc.Snowflake:3 of +msgid "" +"Almost all :ref:`Discord models ` meet this abstract " +"base class." +msgstr "" + +#: 68f54081d0324c8f9a60a03121228419 discord.abc.Snowflake:6 of +msgid "" +"If you want to create a snowflake on your own, consider using " +":class:`.Object`." +msgstr "" + +#: b48d28bcb8944448a302ec1728849ca1 discord.abc.Snowflake:11 of +msgid "The model's unique ID." +msgstr "" + +#: 066672777afe48e7b6b41fad1a12de64 0c86631d2d114c45bf1c165d105fb12e +#: 0ee679abcb1c4b25b364befb02132adb 16478c3543f84403bbfebe2cf3bdef50 +#: 1bafe7fad7964f38b1650c05822ee835 b5cc4d4d66184893b35a75a892c300f0 +#: d28c40e6890642de932360bf411ac494 d8eede98a7ca45ea915927dc318de4d7 +#: discord.abc.GuildChannel discord.abc.PrivateChannel discord.abc.Snowflake +#: discord.abc.User f6df80c3f3ae47f7be4d5ada55e8d6dd +#: f85ce9cfcafa43e8b2b80a84c7b8cc6c of +msgid "type" +msgstr "" + +#: 5fae1913d1234d4da3cd77b627a1f629 7d2cfbf10de24809b10f59e074b942c1 +#: discord.abc.GuildChannel:30 discord.abc.Snowflake:13 of +msgid ":class:`int`" +msgstr "" + +#: discord.abc.User:1 f476d58c613c4534abc37bc55a8f9d56 of +msgid "An ABC that details the common operations on a Discord user." +msgstr "" + +#: 19e8ddb2cda941c3a30ca8850cb2ede7 7ab357637db845ee9b87d385a8042b16 +#: 8befbe76d57647a3852a44b494c4ab44 aba0180fb52b4fa5a21ed6608a3565a3 +#: discord.abc.Connectable:4 discord.abc.GuildChannel:3 +#: discord.abc.Messageable:3 discord.abc.PrivateChannel:3 discord.abc.User:3 +#: fb6cfafebb154551983f5af556cf1207 of +msgid "The following implement this ABC:" +msgstr "" + +#: 1d9d8cc193684ade90b957be4d0ba02b 868d75a8b3c540dfaeff9ef186445cae +#: discord.abc.Messageable:10 discord.abc.User:5 of +msgid ":class:`~discord.User`" +msgstr "" + +#: 206eb8b27cea4ecb9819a39a3e676154 discord.abc.PrivateChannel:14 +#: discord.abc.User:6 f4d5f92d7c904e11abae69a42643ceb9 of +msgid ":class:`~discord.ClientUser`" +msgstr "" + +#: 3ac169cb9ed249fa97d87f2dda08a310 c347cd4097e847ffbe940543abd9a768 +#: discord.abc.Messageable:11 discord.abc.User:7 of +msgid ":class:`~discord.Member`" +msgstr "" + +#: 55dafc24f36c42108379ba9621534719 8fc2b8cbc76642b594d6aed520962c34 +#: c3f82876a05b42f6b9f142abd42d440c discord.abc.GuildChannel:11 +#: discord.abc.PrivateChannel:8 discord.abc.User:9 of +msgid "This ABC must also implement :class:`~discord.abc.Snowflake`." +msgstr "" + +#: 320a5745d7ef4dc3bddc68db57041ebc discord.abc.User:13 of +msgid "The user's username." +msgstr "" + +#: 3b698b51590948fa87fc4141683b8fb0 9d83050e55374544aac91208fd9717c2 +#: b9a9b156f455466c8b320984644c257e discord.abc.GuildChannel:17 +#: discord.abc.User:15 discord.abc.User:25 discord.abc.User:33 +#: e9af1898d3c64b1f96af932c9b217551 of +msgid ":class:`str`" +msgstr "" + +#: discord.abc.User:19 e78c45aef3ca431fbf8f309c887fc29f of +msgid "The user's discriminator." +msgstr "" + +#: 73dd772201aa4748b316068b05957002 discord.abc.User:23 of +msgid "" +"If the user has migrated to the new username system, this will always be " +"\"0\"." +msgstr "" + +#: 62a458c9df53441eb015ac21dbe34fa6 discord.abc.User:29 of +msgid "The user's global name." +msgstr "" + +#: discord.abc.User:37 f6f47d554883461dad161445c30916cf of +msgid "The avatar asset the user has." +msgstr "" + +#: 9c5bd5888cf448da93b8a0153a44b233 discord.abc.User:39 of +msgid ":class:`~discord.Asset`" +msgstr "" + +#: 881d7e60a8f54fbc984f3e9e4b366b02 discord.abc.User:43 of +msgid "If the user is a bot account." +msgstr "" + +#: 07229964898b4b1e9cefda4c38d26e2b 6803ab70e67446aba9dc35de91a33f48 +#: discord.abc.Messageable.can_send:4 discord.abc.User:45 of +msgid ":class:`bool`" +msgstr "" + +#: bef028b1be27469588e3b8c6d6ff28a9 discord.abc.User.display_name:1 of +msgid "Returns the user's display name." +msgstr "" + +#: discord.abc.User.mention:1 f4d6145bdb3f46f0b5b8abe16d25f8cd of +msgid "Returns a string that allows you to mention the given user." +msgstr "" + +#: 9695a64a7cd84cca8c68f3f8a6e63b4b discord.abc.PrivateChannel:1 of +msgid "An ABC that details the common operations on a private Discord channel." +msgstr "" + +#: discord.abc.Messageable:8 discord.abc.PrivateChannel:5 +#: eb3f6696e98746a4b3bb06a7c593f16f f4e761a32f2b4fa293005967bb5b8876 of +msgid ":class:`~discord.DMChannel`" +msgstr "" + +#: 08b37c00170d4c158d05b2eac6301dc8 96b1ff47f3f74315b1a978afd462a4ab +#: discord.abc.Messageable:9 discord.abc.PrivateChannel:6 of +msgid ":class:`~discord.GroupChannel`" +msgstr "" + +#: 522ecffdca534152a4deb8b05e5f346d discord.abc.PrivateChannel:12 of +msgid "The user presenting yourself." +msgstr "" + +#: 492a04d7e12c4af4b00be2a3ea5fd3fe discord.abc.GuildChannel:1 of +msgid "An ABC that details the common operations on a Discord guild channel." +msgstr "" + +#: 5a75adff819f43ae87cfb42e1805b4a4 c8804dd897f849f48691c36fc620a3ec +#: discord.abc.GuildChannel:5 discord.abc.Messageable:5 of +msgid ":class:`~discord.TextChannel`" +msgstr "" + +#: 2ef9d2cfbbc042adaafadf244b6a5b53 a8e12520fc6a4be1bdbb3a81c26f9ee8 +#: c091a21e09614c85820c51243cc2bbd6 discord.abc.Connectable:6 +#: discord.abc.GuildChannel:6 discord.abc.Messageable:6 of +msgid ":class:`~discord.VoiceChannel`" +msgstr "" + +#: 5da78147f5344fbaad7a4001cc44040d discord.abc.GuildChannel:7 of +msgid ":class:`~discord.CategoryChannel`" +msgstr "" + +#: 488b0b469a564d86816765265e3b68ee 5b3700ea3b1849e6a06cf2af4caf90c3 +#: a982e135d8264dd3b151c14dd9a7cba1 discord.abc.Connectable:7 +#: discord.abc.GuildChannel:8 discord.abc.Messageable:7 of +msgid ":class:`~discord.StageChannel`" +msgstr "" + +#: 16d6633c0f3542a1a41e7948325fa027 discord.abc.GuildChannel:9 of +msgid ":class:`~discord.ForumChannel`" +msgstr "" + +#: 4448a57c2a004e7d90cb0fdcad86f569 discord.abc.GuildChannel:15 of +msgid "The channel name." +msgstr "" + +#: 55cf37366ce440999ab4cd6f6581a820 discord.abc.GuildChannel:21 of +msgid "The guild the channel belongs to." +msgstr "" + +#: discord.abc.GuildChannel:23 e12d19edd0734c218616a4df98ce6504 of +msgid ":class:`~discord.Guild`" +msgstr "" + +#: ad6bcb47ccfc49a2b921875096d086fc discord.abc.GuildChannel:27 of +msgid "" +"The position in the channel list. This is a number that starts at 0. e.g." +" the top channel is position 0." +msgstr "" + +#: 92a7be071e894a5082eb58bd4de4c891 discord.abc.GuildChannel.changed_roles:1 of +msgid "" +"Returns a list of roles that have been overridden from their default " +"values in the :attr:`~discord.Guild.roles` attribute." +msgstr "" + +#: 4d559a5b43c34293b208f473e162cd40 discord.abc.GuildChannel.mention:1 of +msgid "The string that allows you to mention the channel." +msgstr "" + +#: 40aba981504d4f568bee500d593152a9 discord.abc.GuildChannel.jump_url:1 of +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "" + +#: 3b4fdc22e96e4ac39a90773db776db85 discord.abc.GuildChannel.created_at:1 of +msgid "Returns the channel's creation time in UTC." +msgstr "" + +#: a709d1fb206e462c96fcfb98f7b1fabb discord.abc.GuildChannel.overwrites_for:1 +#: of +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "" + +#: ../../api/abcs.rst 3b20d94d071448afb0cbcba6c02e4d62 +#: 5e160138a0124ebfb2463589a38c520a 60a67e189f30413bb931557ae0d677e5 +#: 66c20e4761ee48f487e2336799758e70 697615a7dc374833a2a4dc54e612d578 +#: a397ed5dee4e403b968a341016bfaff6 ce1db15f4b774f6eb4047d5e0dc10eb7 +#: d0147bebe9a04d399c13c8a22b7256aa d939dcebd14648b9b876851182b079a2 +#: discord.abc.Messageable.history f599952a5df34d498f5b7113811451b4 of +msgid "Parameters" +msgstr "" + +#: 7b5be37d473945f980d080501395944e discord.abc.GuildChannel.overwrites_for:4 +#: of +msgid "The role or user denoting whose overwrite to get." +msgstr "" + +#: ../../api/abcs.rst 0becae8c7a3343bfa74ee70d0bcf63fa +#: 1d2679ae9f514304bd3579ef87f81507 2c633fc68b5748e1adfc9ec3aff4f8ed +#: 65b08451ad3a43d093e03f3f5e7a55c6 66f37f1f6ffc4532b5e7767864a5222b +#: 8101933b7aca44b491e77ce2b88e718e 8e507fe851d946d5a39bf30a61c1b560 +#: 9a9cab84cf46487ab80637c624490b36 c1807c81320a4c4a9eea27db6d535110 +#: ef49855ea26e49d18e9c5f14cd4d5a2b +msgid "Returns" +msgstr "" + +#: cbf2b10aa86a450aae949d4afbb72b83 discord.abc.GuildChannel.overwrites_for:8 +#: of +msgid "The permission overwrites for this object." +msgstr "" + +#: ../../api/abcs.rst 0c2690be6dc44bd99487721b1c473943 +#: 11a136a4062b498a8539ad8c06771df5 1da797b8dd684105852b0c651b5b1369 +#: 37f01e30f738487bbe95997ed7571b62 41f62d98c7404eabaebc4820fa6da3e6 +#: 6012b511381143e9ab71be1e7d0e2ec6 64aa35176668433594fbf6d7bb7a9b57 +#: 65da9d2f771749c6870d5bc0e175f919 6623b7471154462a8a89a38165cebaac +#: 7bcc922e527d44179d22772f6c16984f ae7e9663432d4aa99ce5152a8849b58b +#: bfd321f562164c8592b70e22b870cb1b d748e7f595124a2caf29f95f0c884c4e +#: discord.abc.Messageable.history f458fbadecb448e38f1f3085d9edc8a6 of +msgid "Return type" +msgstr "" + +#: discord.abc.GuildChannel.overwrites_for:9 e5ea510d86c149fcb18fa591625d5d07 +#: of +msgid ":class:`~discord.PermissionOverwrite`" +msgstr "" + +#: 90ad1cb5997e40b69c61f7457281e1de discord.abc.GuildChannel.overwrites:1 of +msgid "Returns all of the channel's overwrites." +msgstr "" + +#: 2bf4c5fafdf6429b84330957fb24ab01 discord.abc.GuildChannel.overwrites:3 of +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.GuildChannel.overwrites:7 f15eda417e19494ea604c6f5770c6a45 of +msgid "The channel's permission overwrites." +msgstr "" + +#: 55f132c1266245bcb389221b13679775 discord.abc.GuildChannel.overwrites:8 of +msgid "" +"Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], " +":class:`~discord.PermissionOverwrite`]" +msgstr "" + +#: 1db80abbda8a4911a7711ae56f513ab8 discord.abc.GuildChannel.category:1 of +msgid "The category this channel belongs to." +msgstr "" + +#: 5bbfc6c0820a44b3a0dd8f1df312d334 discord.abc.GuildChannel.category:3 of +msgid "If there is no category then this is ``None``." +msgstr "" + +#: discord.abc.GuildChannel.permissions_synced:1 +#: eeffa71045734b85965aeb971081f6a3 of +msgid "" +"Whether the permissions for this channel are synced with the category it " +"belongs to." +msgstr "" + +#: 1171e47cfc5a4f0791d740508bc37158 +#: discord.abc.GuildChannel.permissions_synced:4 of +msgid "If there is no category then this is ``False``." +msgstr "" + +#: 4fecc3795fa142dbb33ae3ca2d91327f discord.abc.GuildChannel.permissions_for:1 +#: of +msgid "" +"Handles permission resolution for the :class:`~discord.Member` or " +":class:`~discord.Role`." +msgstr "" + +#: cd4470a1d45d429a999e7b9f6ec55f49 discord.abc.GuildChannel.permissions_for:4 +#: of +msgid "This function takes into consideration the following cases:" +msgstr "" + +#: 1de0c73c6d9143b9956741d16b697ecd discord.abc.GuildChannel.permissions_for:6 +#: of +msgid "Guild owner" +msgstr "" + +#: c9503941e19b4afa99e57615839294ca discord.abc.GuildChannel.permissions_for:7 +#: of +msgid "Guild roles" +msgstr "" + +#: 750911e7b8c44983a5c47f0ac5a700a5 discord.abc.GuildChannel.permissions_for:8 +#: of +msgid "Channel overrides" +msgstr "" + +#: 528c11379a8d438ebb0b2de3e7891832 discord.abc.GuildChannel.permissions_for:9 +#: of +msgid "Member overrides" +msgstr "" + +#: discord.abc.GuildChannel.permissions_for:11 fc56ba9a38b84c8a875576b8cd474972 +#: of +msgid "" +"If a :class:`~discord.Role` is passed, then it checks the permissions " +"someone with that role would have, which is essentially:" +msgstr "" + +#: 38d1440864c84ffe9afa2a0b241b6135 discord.abc.GuildChannel.permissions_for:14 +#: of +msgid "The default role permissions" +msgstr "" + +#: b5684951350d41eb8b164a4b8ebd41d9 discord.abc.GuildChannel.permissions_for:15 +#: of +msgid "The permissions of the role used as a parameter" +msgstr "" + +#: b406f8eb396844c091af41fa29263d3d discord.abc.GuildChannel.permissions_for:16 +#: of +msgid "The default role permission overwrites" +msgstr "" + +#: 6dfa8f8d44de4c9286669355380503ec discord.abc.GuildChannel.permissions_for:17 +#: of +msgid "The permission overwrites of the role used as a parameter" +msgstr "" + +#: 8f5ce4ed137b4992bbba7cf650c6a546 discord.abc.GuildChannel.permissions_for:19 +#: of +msgid "The object passed in can now be a role object." +msgstr "" + +#: 538dd64346cf4fcabbbb3e054d8ae27e discord.abc.GuildChannel.permissions_for:23 +#: of +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 "" + +#: 2743b663c2604ac99153b71658dd7955 discord.abc.GuildChannel.permissions_for:28 +#: of +msgid "The resolved permissions for the member or role." +msgstr "" + +#: d160215e8fd0483b803e4feb607722fe discord.abc.GuildChannel.permissions_for:29 +#: of +msgid ":class:`~discord.Permissions`" +msgstr "" + +#: 00f7634217064d6295a6924fadd26f6d 0c2bd17b81764ad9b602a4bcf46e7adb +#: 53afb5db720048589629b816ddb03782 5516007d80a04f27b710e8e89440c211 +#: 68a664b278c7485c8e45e152218a4c8e 76535a41a98d42889332c5da6b2421a5 +#: 9321611b3f474e18a58779e48164f1d1 c2c158e15aff478c90ebe68ed8119565 +#: db09d175309e4f788bdd7945b1d9f0c6 discord.abc.GuildChannel.clone:1 +#: discord.abc.GuildChannel.create_invite:1 discord.abc.GuildChannel.delete:1 +#: discord.abc.GuildChannel.invites:1 discord.abc.GuildChannel.move:1 +#: discord.abc.GuildChannel.set_permissions:1 +#: discord.abc.Messageable.fetch_message:1 discord.abc.Messageable.pins:1 +#: discord.abc.Messageable.send:1 discord.abc.Messageable.trigger_typing:1 +#: fc11191cacf3443f913a5bd69d919a77 of +msgid "|coro|" +msgstr "" + +#: 8d7099b6e32a4784bfd22162bb7f12a4 discord.abc.GuildChannel.delete:3 of +msgid "Deletes the channel." +msgstr "" + +#: 9283174a29fe4cd3a999cbe16e91c338 discord.abc.GuildChannel.delete:5 of +msgid "" +"You must have :attr:`~discord.Permissions.manage_channels` permission to " +"use this." +msgstr "" + +#: c0a16afcdf024c34870bd9610e6ec5a7 discord.abc.GuildChannel.delete:8 of +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "" + +#: ../../api/abcs.rst 0e8239ac7ddc4e048eb60772728e419d +#: 31de3a885a3e42c387e130575ac07bf7 5448d7297cf24ec3b2d30012a69f357a +#: 72d120a0412a4abc8b158e77726150f2 989d13fe26cf462bafcec9e32b983161 +#: bc1f6f8dfabf4e2bbd3ad10f31bd169c c41fe790e3f04807b5d5eea4918ecbda +#: c4357f7a3367410786087828206f5204 c5942183ac1b422d874ef5456324b188 +#: cb61738138474c3093f076891a253869 discord.abc.Messageable.history +#: f18991acfb0a458899f3d2977c2c26ef of +msgid "Raises" +msgstr "" + +#: a49551604bb2441d8e393e9f3af5e9da discord.abc.GuildChannel.delete:12 of +msgid "You do not have proper permissions to delete the channel." +msgstr "" + +#: 63d9b0eca3194eed86f22730f97e7150 discord.abc.GuildChannel.delete:13 of +msgid "The channel was not found or was already deleted." +msgstr "" + +#: 9cd0a14d775240ffb2a793071bf27195 discord.abc.GuildChannel.delete:14 of +msgid "Deleting the channel failed." +msgstr "" + +#: 1556d0b7324e43e59611bd803079f548 2aadba38a10941c69fa83833c49a1a92 +#: 9208896e58034a57b97105d1329b9793 discord.abc.GuildChannel.delete:16 +#: discord.abc.GuildChannel.move:51 discord.abc.Messageable.trigger_typing:8 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: b8f02982c07e44c5bbb8db8be80671cd discord.abc.GuildChannel.set_permissions:3 +#: of +msgid "" +"Sets the channel specific permission overwrites for a target in the " +"channel." +msgstr "" + +#: 7dcca40512ec450194ea16cf8c9a7a4b discord.abc.GuildChannel.set_permissions:6 +#: of +msgid "" +"The ``target`` parameter should either be a :class:`~discord.Member` or a" +" :class:`~discord.Role` that belongs to guild." +msgstr "" + +#: 871aaa962e9b4e968d2de6add1cee24c discord.abc.GuildChannel.set_permissions:9 +#: of +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 "" + +#: c620b3a1289d4243818bf61b2723c7b6 discord.abc.GuildChannel.set_permissions:15 +#: of +msgid "" +"If the ``overwrite`` parameter is ``None``, then the permission " +"overwrites are deleted." +msgstr "" + +#: 36fce7cdc7e14f338aade9cbe9b4867a discord.abc.GuildChannel.set_permissions:18 +#: of +msgid "" +"You must have the :attr:`~discord.Permissions.manage_roles` permission to" +" use this." +msgstr "" + +#: 6fc26ef2306144f6959be12618f1cd4b discord.abc.GuildChannel.set_permissions:22 +#: of +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "" + +#: 1c3537f7b30748c58ac9d43193c9f927 b3123c1220764f4a8b84f628beded5d3 +#: discord.abc.GuildChannel.set_permissions:25 +#: discord.abc.Messageable.history:39 of +msgid "Examples" +msgstr "" + +#: 7c968c31b8d04886bfe002b8e3bdae48 discord.abc.GuildChannel.set_permissions:26 +#: of +msgid "Setting allow and deny: ::" +msgstr "" + +#: discord.abc.GuildChannel.set_permissions:31 fb8414d061584b7588c4e86d1e578aca +#: of +msgid "Deleting overwrites ::" +msgstr "" + +#: 3defedc1bafe4560bc9af54a32898c5d discord.abc.GuildChannel.set_permissions:35 +#: of +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "" + +#: 485de860e7344ec187d3a688a62de855 discord.abc.GuildChannel.set_permissions:43 +#: of +msgid "The member or role to overwrite permissions for." +msgstr "" + +#: 8c40fdfce8134dc59ff5c6679a00d902 discord.abc.GuildChannel.set_permissions:46 +#: of +msgid "" +"The permissions to allow and deny to the target, or ``None`` to delete " +"the overwrite." +msgstr "" + +#: discord.abc.GuildChannel.set_permissions:50 e7f7d10378184b0aaa47718a1e093c10 +#: of +msgid "" +"A keyword argument list of permissions to set for ease of use. Cannot be " +"mixed with ``overwrite``." +msgstr "" + +#: 939f5bb4041f4e0b9fcdf458e14897dc discord.abc.GuildChannel.set_permissions:53 +#: of +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "" + +#: discord.abc.GuildChannel.set_permissions:56 f63a735d3a4d4034b9438307d367dc88 +#: of +msgid "You do not have permissions to edit channel specific permissions." +msgstr "" + +#: 6c0304de1eeb4b0e81657a73cb4e95a8 discord.abc.GuildChannel.set_permissions:57 +#: of +msgid "Editing channel specific permissions failed." +msgstr "" + +#: 494eb950335d4e05a041da8532184f22 discord.abc.GuildChannel.set_permissions:58 +#: of +msgid "The role or member being edited is not part of the guild." +msgstr "" + +#: 5778c3b54842442fac40cd6ba0c908d4 discord.abc.GuildChannel.set_permissions:59 +#: of +msgid "" +"The overwrite parameter invalid or the target type was not " +":class:`~discord.Role` or :class:`~discord.Member`." +msgstr "" + +#: b4e299b0812040b6839744affa65da33 discord.abc.GuildChannel.clone:3 of +msgid "" +"Clones this channel. This creates a channel with the same properties as " +"this channel." +msgstr "" + +#: 2f18c9d119994ab8a883fcf5443ea905 c779e7a36d1843dcbe3974bd0e3a4bdf +#: discord.abc.GuildChannel.clone:6 discord.abc.GuildChannel.move:7 of +msgid "" +"You must have the :attr:`~discord.Permissions.manage_channels` permission" +" to do this." +msgstr "" + +#: 360c43d24fa74755bda0102e63a76cff discord.abc.GuildChannel.clone:12 of +msgid "" +"The name of the new channel. If not provided, defaults to this channel " +"name." +msgstr "" + +#: b2f146eeab2f4f11807d42190f8a89cc discord.abc.GuildChannel.clone:16 of +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "" + +#: d367046630b7470d9c8d06bb32180838 discord.abc.GuildChannel.clone:19 of +msgid "The channel that was created." +msgstr "" + +#: de39b87932bf438db36166200b73139d discord.abc.GuildChannel.clone:20 of +msgid ":class:`.abc.GuildChannel`" +msgstr "" + +#: cb28f80aab9c490187e2c98c048c7820 discord.abc.GuildChannel.clone:22 of +msgid "You do not have the proper permissions to create this channel." +msgstr "" + +#: 250258f74b3c4ed08624a53468130d36 discord.abc.GuildChannel.clone:23 of +msgid "Creating the channel failed." +msgstr "" + +#: 4773012fadba4dbcb8942054ed8c5ad9 discord.abc.GuildChannel.move:3 of +msgid "A rich interface to help move a channel relative to other channels." +msgstr "" + +#: 9c635d863bd24468856063b882cad9c4 discord.abc.GuildChannel.move:5 of +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "" + +#: discord.abc.GuildChannel.move:12 e2c4c9ea9a9648518842d72f4c9c8dff of +msgid "" +"Voice channels will always be sorted below text channels. This is a " +"Discord limitation." +msgstr "" + +#: b882cc51a7ad474681af109780a81703 discord.abc.GuildChannel.move:17 of +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.GuildChannel.move:21 f53f0ae69f4e4c8493fb10007349ad2c of +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 "" + +#: bb849b4f9a6840e1b6342329b8447c97 discord.abc.GuildChannel.move:25 of +msgid "" +"The channel that should be before our current channel. This is mutually " +"exclusive with ``beginning``, ``end``, and ``after``." +msgstr "" + +#: discord.abc.GuildChannel.move:28 f166889e839547cfaef7ac191f9ebb72 of +msgid "" +"The channel that should be after our current channel. This is mutually " +"exclusive with ``beginning``, ``end``, and ``before``." +msgstr "" + +#: 3cb8ec6f605a4b6d8760ec5acaf9e5fe discord.abc.GuildChannel.move:31 of +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 "" + +#: 985bb6762b4846608c9fdee1eb2d3130 discord.abc.GuildChannel.move:38 of +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.GuildChannel.move:42 e4f1bd9df7254ee79c53f425e8660c97 of +msgid "Whether to sync the permissions with the category (if given)." +msgstr "" + +#: acd13dc38b3a4b30bd06f2d26ef753ff discord.abc.GuildChannel.move:44 of +msgid "The reason for the move." +msgstr "" + +#: aa669646fb7f4579ab583200bde6fa6d discord.abc.GuildChannel.move:47 of +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "" + +#: 15f0f73fe34443ed9e6d76844242705f discord.abc.GuildChannel.move:48 of +msgid "You do not have permissions to move the channel." +msgstr "" + +#: a0847e6cc4554dd98733b963fc276acf discord.abc.GuildChannel.move:49 of +msgid "Moving the channel failed." +msgstr "" + +#: discord.abc.GuildChannel.create_invite:3 f02edcc48c864d91a36b513454558dd6 of +msgid "Creates an instant invite from a text or voice channel." +msgstr "" + +#: 34adcc82842045da90a6cfd749c610ea discord.abc.GuildChannel.create_invite:5 of +msgid "" +"You must have the :attr:`~discord.Permissions.create_instant_invite` " +"permission to do this." +msgstr "" + +#: 4eb6418694f1494283948d66ac960704 discord.abc.GuildChannel.create_invite:9 of +msgid "" +"How long the invite should last in seconds. If it's 0 then the invite " +"doesn't expire. Defaults to ``0``." +msgstr "" + +#: 07a8460c4fe9448bb3db83bcb6d018d3 discord.abc.GuildChannel.create_invite:13 +#: of +msgid "" +"How many uses the invite could be used for. If it's 0 then there are " +"unlimited uses. Defaults to ``0``." +msgstr "" + +#: 11951229c921453caee1f5675104dcba discord.abc.GuildChannel.create_invite:17 +#: of +msgid "" +"Denotes that the invite grants temporary membership (i.e. they get kicked" +" after they disconnect). Defaults to ``False``." +msgstr "" + +#: a86de9b685ad42ffa90d9ea0270d6cfd discord.abc.GuildChannel.create_invite:21 +#: of +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 "" + +#: 171e94fa826649ab8ad94306ea899c77 discord.abc.GuildChannel.create_invite:26 +#: of +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "" + +#: 12fd38ebd4204bf78f629058406087af discord.abc.GuildChannel.create_invite:29 +#: of +msgid "" +"The type of target for the voice channel invite, if any. .. " +"versionadded:: 2.0" +msgstr "" + +#: 15724914e5a945fabdaef1bc755d3124 discord.abc.GuildChannel.create_invite:29 +#: of +msgid "The type of target for the voice channel invite, if any." +msgstr "" + +#: discord.abc.GuildChannel.create_invite:34 fa0b61268b8141998a559ae6c1c0c5f9 +#: of +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 "" + +#: dc382d48216649049091b622ec2e8f87 discord.abc.GuildChannel.create_invite:34 +#: of +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 "" + +#: 1b1964c4a03941e3b7bce3f9c4f06ca3 discord.abc.GuildChannel.create_invite:40 +#: of +msgid "" +"The id of the embedded application for the invite, required if " +"`target_type` is `TargetType.embedded_application`. .. versionadded:: " +"2.0" +msgstr "" + +#: 6ba3482efdb746bca8e28039741a9af2 discord.abc.GuildChannel.create_invite:40 +#: of +msgid "" +"The id of the embedded application for the invite, required if " +"`target_type` is `TargetType.embedded_application`." +msgstr "" + +#: 521736117c4242fba055232291762b15 discord.abc.GuildChannel.create_invite:46 +#: of +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 "" + +#: b50d9e6892874d2aa4af1bdee1c3770a discord.abc.GuildChannel.create_invite:46 +#: of +msgid "" +"The scheduled event object to link to the event. Shortcut to " +":meth:`.Invite.set_scheduled_event`" +msgstr "" + +#: d7f1b2d7092744cb91950605410cae8e discord.abc.GuildChannel.create_invite:49 +#: of +msgid "" +"See :meth:`.Invite.set_scheduled_event` for more info on event invite " +"linking." +msgstr "" + +#: c1591d1610d248bd8ea0edea53adc715 discord.abc.GuildChannel.create_invite:55 +#: of +msgid "The invite that was created." +msgstr "" + +#: discord.abc.GuildChannel.create_invite:56 fb13c77b9ff04c5e974244df057a8dd4 +#: of +msgid ":class:`~discord.Invite`" +msgstr "" + +#: 281a37e3d83f4183b84745a5b3b39845 discord.abc.GuildChannel.create_invite:58 +#: of +msgid "Invite creation failed." +msgstr "" + +#: 0a2a328e0e6442da8b9d78b0bda608f3 discord.abc.GuildChannel.create_invite:59 +#: of +msgid "The channel that was passed is a category or an invalid channel." +msgstr "" + +#: 3cdf4ff1dff745a9ae74cb84b01e3d21 discord.abc.GuildChannel.invites:3 of +msgid "Returns a list of all active instant invites from this channel." +msgstr "" + +#: 871cbc7f5c6549e39dc2d06a60160091 discord.abc.GuildChannel.invites:5 of +msgid "" +"You must have :attr:`~discord.Permissions.manage_channels` to get this " +"information." +msgstr "" + +#: 16959e08182541d5868181d88d2d5db9 discord.abc.GuildChannel.invites:7 of +msgid "The list of invites that are currently active." +msgstr "" + +#: a19e94cde12044ef92a1a1fb63ab75e2 discord.abc.GuildChannel.invites:8 of +msgid "List[:class:`~discord.Invite`]" +msgstr "" + +#: c7dcbacf8a4f4680867ff28e5816f535 discord.abc.GuildChannel.invites:10 of +msgid "You do not have proper permissions to get the information." +msgstr "" + +#: 4be34f522adc4c8896cd32447b209027 discord.abc.GuildChannel.invites:11 of +msgid "An error occurred while fetching the information." +msgstr "" + +#: dc4c7ad0c8ad4feca3d041e12eb7d777 discord.abc.Messageable:1 of +msgid "" +"An ABC that details the common operations on a model that can send " +"messages." +msgstr "" + +#: discord.abc.Messageable:12 f001d854c2194b5f851170ae75cb56c6 of +msgid ":class:`~discord.ext.commands.Context`" +msgstr "" + +#: d4a798d4e25a4aff902d032b4d6d0f37 discord.abc.Messageable:13 of +msgid ":class:`~discord.Thread`" +msgstr "" + +#: b4dda8ab4def475190eb4024614c47fe discord.abc.Messageable:14 of +msgid ":class:`~discord.ApplicationContext`" +msgstr "" + +#: 8d2e215bc6854b1e8881b8e7b0be7886 discord.abc.Messageable.history:1 of +msgid "" +"Returns an :class:`~discord.AsyncIterator` that enables receiving the " +"destination's message history." +msgstr "" + +#: db7fe24b56174ba88b9125364a39bcef discord.abc.Messageable.history:3 of +msgid "" +"You must have :attr:`~discord.Permissions.read_message_history` " +"permissions to use this." +msgstr "" + +#: 3be41d26fe6c4db691d0f996edd896cd discord.abc.Messageable.history:6 of +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.Messageable.history:11 e0043231e9594810ad87d803a3aff895 of +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.Messageable.history:16 ff0bf9e08202470aa16b177a95f3b0b4 of +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 "" + +#: 092c37264fd94af1837bac3590cc8eac discord.abc.Messageable.history:21 of +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 "" + +#: 4165af23ce0140a68f19a493053730ba discord.abc.Messageable.history:28 of +msgid "" +"If set to ``True``, return messages in oldest->newest order. Defaults to " +"``True`` if ``after`` is specified, otherwise ``False``." +msgstr "" + +#: 330775df4db2489d90277342ad6022c7 discord.abc.Messageable.history of +msgid "Yields" +msgstr "" + +#: discord.abc.Messageable.history:32 e35f0d17cb834683a8458b8c6e4114fc of +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr "" + +#: 8349b412e06c40b48b2c0f6e024d4f2d discord.abc.Messageable.history:34 of +msgid "You do not have permissions to get channel message history." +msgstr "" + +#: af34c7e456e0477fbca5300f91c8e3e2 discord.abc.Messageable.history:35 of +msgid "The request to get message history failed." +msgstr "" + +#: 7ca3e15ee8da46e69208f4ceab5d85f5 discord.abc.Messageable.history:36 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr "" + +#: cc41fde924a646b2a66d6e1950f15cde discord.abc.Messageable.history:40 of +msgid "Usage ::" +msgstr "" + +#: 8fe09bfbadaa4e0d9f16f3d6de860f92 discord.abc.Messageable.history:47 of +msgid "Flattening into a list: ::" +msgstr "" + +#: 62bb3065f7c048abb84b05680ea83ed7 discord.abc.Messageable.history:52 of +msgid "All parameters are optional." +msgstr "" + +#: 9d11f981eddd4528981b271e6724cdbe discord.abc.Messageable.typing:1 of +msgid "" +"Returns a context manager that allows you to type for an indefinite " +"period of time." +msgstr "" + +#: 1ce571c393ad4909a237f0df41acf5ac discord.abc.Messageable.typing:3 of +msgid "" +"This is useful for denoting long computations in your bot. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "" + +#: 6d2c4668d8fc4cfda30eccbf8458acbf discord.abc.Messageable.typing:9 of +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 "" + +#: 05520cdec2f14434a84fe4504e8ae4e3 discord.abc.Messageable.typing:12 of +msgid "Example Usage: ::" +msgstr "" + +#: 2d718f3d7f8a4088acdd3329b88a90e8 discord.abc.Messageable.send:3 of +msgid "Sends a message to the destination with the content given." +msgstr "" + +#: 873ac6c9a5b544c691bcf227c6664151 discord.abc.Messageable.send:5 of +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 "" + +#: 4a6a164da91543aabab378380a1a18dd discord.abc.Messageable.send:9 of +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 "" + +#: 71df7005611241afb3db54461fcbe060 discord.abc.Messageable.send:14 of +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 "" + +#: b9ee3ce694294708b4db54d1df7bd691 discord.abc.Messageable.send:20 of +msgid "The content of the message to send." +msgstr "" + +#: a00789ca06e84d5fa7a73478180f1ef2 discord.abc.Messageable.send:23 of +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "" + +#: 906186ab0b7e4bd79159b563a30e5968 discord.abc.Messageable.send:26 of +msgid "The rich embed for the content." +msgstr "" + +#: discord.abc.Messageable.send:29 fe4e6add04cc42c1bb5d44e2fa610082 of +msgid "The file to upload." +msgstr "" + +#: a3c6608e1d1942a4b1be5b61abda01bd discord.abc.Messageable.send:32 of +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "" + +#: 11b9fd65f5ca4474a330776ef3c6de1a discord.abc.Messageable.send:35 of +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 "" + +#: 0face4ee444e42a3b407aac7ea0318a4 discord.abc.Messageable.send:39 of +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "" + +#: ba5de4a08a864d7984364e85ac5c6fa9 discord.abc.Messageable.send:39 of +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "" + +#: 7239324fe23047feaa25e23a03b6521b discord.abc.Messageable.send:44 of +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 "" + +#: 2c8173bcb34847058431ea4859c49300 discord.abc.Messageable.send:49 of +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 "" + +#: a0a579827fe147f6a86010948fcf7967 discord.abc.Messageable.send:49 of +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 "" + +#: 9309ccd20be043ffa5aee6e61d6082ff discord.abc.Messageable.send:59 of +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 "" + +#: b4916e6a8e914fe9b0f1786b0a5b52df discord.abc.Messageable.send:59 of +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 "" + +#: 26f39c2265e84ac1853fb843b86d9989 discord.abc.Messageable.send:68 of +msgid "" +"If set, overrides the :attr:`~discord.AllowedMentions.replied_user` " +"attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "" + +#: 401e6af57ea8422c89021bc656d1b595 discord.abc.Messageable.send:68 of +msgid "" +"If set, overrides the :attr:`~discord.AllowedMentions.replied_user` " +"attribute of ``allowed_mentions``." +msgstr "" + +#: 10915d3a739946e3a99a0a739b1588de discord.abc.Messageable.send:73 of +msgid "A Discord UI View to add to the message." +msgstr "" + +#: 8c86dff03f9a4a3fb7f2dcc83c7c6ad4 discord.abc.Messageable.send:76 of +msgid "" +"A list of embeds to upload. Must be a maximum of 10. .. versionadded:: " +"2.0" +msgstr "" + +#: 3910a221735f4f569868b11b1d1a8c98 discord.abc.Messageable.send:76 of +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "" + +#: 8235aade03164b52932298971f0f5907 discord.abc.Messageable.send:81 of +msgid "" +"A list of stickers to upload. Must be a maximum of 3. .. versionadded:: " +"2.0" +msgstr "" + +#: 963c1db27b8240dd92f403d36e2a18ba discord.abc.Messageable.send:81 of +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "" + +#: discord.abc.Messageable.send:86 f555e2676dea4bbc8de31ebb2fc36278 of +msgid "Whether to suppress embeds for the message." +msgstr "" + +#: a8ffcca916894215a919fa2c72d7c55d discord.abc.Messageable.send:89 of +msgid "" +"Whether to suppress push and desktop notifications for the message. .. " +"versionadded:: 2.4" +msgstr "" + +#: 4648ba0d48fc42beb889718460aeeb32 discord.abc.Messageable.send:89 of +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "" + +#: discord.abc.Messageable.send:94 fd5dcbe211744affb08358b1a28785bb of +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "" + +#: dc470e02b06b4622a2c6fd26976e2906 discord.abc.Messageable.send:94 of +msgid "The poll to send." +msgstr "" + +#: 59ad41ca439e4131bf64421a1ae40eef discord.abc.Messageable.send:99 of +msgid "The message that was sent." +msgstr "" + +#: 999c449e088140378a9aca3429066337 b2c842a4fe6f435fafe3c2b2a1e47515 +#: discord.abc.Messageable.fetch_message:10 discord.abc.Messageable.send:100 of +msgid ":class:`~discord.Message`" +msgstr "" + +#: 8b714ce1774145368992ec4a36dbc6b5 discord.abc.Messageable.send:102 of +msgid "Sending the message failed." +msgstr "" + +#: 00e3027c97ff4cba80129df3ba41816f discord.abc.Messageable.send:103 of +msgid "You do not have the proper permissions to send the message." +msgstr "" + +#: 5083bf05922c4f949f5e1a47bef0c2f4 discord.abc.Messageable.send:104 of +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 "" + +#: d5c9d9a021c946059bda8a05bbe44016 discord.abc.Messageable.trigger_typing:3 of +msgid "Triggers a *typing* indicator to the destination." +msgstr "" + +#: discord.abc.Messageable.trigger_typing:5 e2b3446f4c904abd9daf0ea1995bbac1 of +msgid "" +"*Typing* indicator will go away after 10 seconds, or after a message is " +"sent." +msgstr "" + +#: 70f06690476641b4908fe5c58523a0ec discord.abc.Messageable.fetch_message:3 of +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "" + +#: 47f6cd2a5bd6410a98561b8d764e594e discord.abc.Messageable.fetch_message:6 of +msgid "The message ID to look for." +msgstr "" + +#: 335e57a361304f68b36db3f717e341b7 discord.abc.Messageable.fetch_message:9 of +msgid "The message asked for." +msgstr "" + +#: d2feef3e4cfb47b9afc4c248ad2d1891 discord.abc.Messageable.fetch_message:12 of +msgid "The specified message was not found." +msgstr "" + +#: 4da989d152b844d4aff41f6835dda941 discord.abc.Messageable.fetch_message:13 of +msgid "You do not have the permissions required to get a message." +msgstr "" + +#: bd18b40e6eb143dc97a468a9f8ca190a discord.abc.Messageable.fetch_message:14 of +msgid "Retrieving the message failed." +msgstr "" + +#: 4bbececd17ce4733aa89e7a128cc27cb discord.abc.Messageable.pins:3 of +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "" + +#: 19f6cad4e0a748608bac294104790fb3 discord.abc.Messageable.pins:7 of +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 "" + +#: 08f13fe21c66434ba1000150fb780040 discord.abc.Messageable.pins:11 of +msgid "The messages that are currently pinned." +msgstr "" + +#: discord.abc.Messageable.pins:12 e2d50204039c4ebbb8cb5794d26a930b of +msgid "List[:class:`~discord.Message`]" +msgstr "" + +#: 4cfb764c52fa4d2da0b34a29ae460acb discord.abc.Messageable.pins:14 of +msgid "Retrieving the pinned messages failed." +msgstr "" + +#: 97efca508c8545a0a10cee9651abdf07 discord.abc.Messageable.can_send:1 of +msgid "" +"Returns a :class:`bool` indicating whether you have the permissions to " +"send the object(s)." +msgstr "" + +#: 676c249107d744bea35ba99071b98e52 discord.abc.Messageable.can_send:3 of +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "" + +#: 73bfb2a074b84597bbe6ae500e1f8501 discord.abc.Messageable.can_send:6 of +msgid "An invalid type has been passed." +msgstr "" + +#: 207660df821e48deaf1a2c5b1759f812 discord.abc.Connectable:1 of +msgid "" +"An ABC that details the common operations on a channel that can connect " +"to a voice server." +msgstr "" + +#: 53703426ebb74318920660391f075491 discord.abc.Connectable:11 of +msgid "" +"This ABC is not decorated with :func:`typing.runtime_checkable`, so will " +"fail :func:`isinstance`/:func:`issubclass` checks." +msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/application_commands.po b/docs/locales/en/LC_MESSAGES/api/application_commands.po new file mode 100644 index 0000000000..0d7f65abfe --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,1849 @@ +# 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 , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-12 14:51+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\n" + +#: ../../api/application_commands.rst:4 b5bef56dc22e4024907f0ad2189496f0 +msgid "Application Commands" +msgstr "" + +#: ../../api/application_commands.rst:8 963047d00b9c4705b2c508ea059cbc84 +msgid "Command Permission Decorators" +msgstr "" + +#: da8262203adc4a9c9195749e22fca186 +#: discord.commands.permissions.default_permissions:1 of +msgid "" +"A decorator that limits the usage of an application command to members " +"with certain permissions." +msgstr "" + +#: 797b65f8f8274cc38a258f0e361b6f7e +#: discord.commands.permissions.default_permissions:4 of +msgid "" +"The permissions passed in must be exactly like the properties shown under" +" :class:`.discord.Permissions`." +msgstr "" + +#: 732445569fbe4b5abb9130e40d7fd143 +#: discord.commands.permissions.default_permissions:8 of +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 0b368aa254aa4b86a89105ba0e327415 +#: 235625d33ce645a7b043c3677e586ff9 2f82411ffec84c53bcd002c61cacf0de +#: 36bdb8c4ce3245f58c14273b19fd5d62 52bf2928121f4472b33d87c293c520da +#: 54d966885d634d83990edfce5e98bd30 62e059169acd42789ad242cd2083fa36 +#: 64675ca2cf37474fb4db23c7d15af9ab 7226b11745ba4ebd82c9da2a758ffeb5 +#: 9dfd81ba143848a1a20bebc948d1df16 a0e267ca8cbb4cdc92ee405b3a8b5906 +#: aea96c3c11354ac09ca840e760f27c54 c14ee1b991e847c999bf9442dbe40e1d +#: cad84173c056435d98f90e7005c27b55 eb72f0aca1244dea81410658346315d8 +msgid "Parameters" +msgstr "" + +#: discord.commands.permissions.default_permissions:13 +#: fe3a3eb41ae7453c8c76fe996fa9f277 of +msgid "An argument list of permissions to check for." +msgstr "" + +#: ../../api/application_commands.rst 10183c9a2d6e45fc9ffd212a67c67ee5 +#: 254924570d314fcfad7eec28414aa754 34f6fc248eea4c0486bab68b1ebdd1c5 +#: 466e0a2592dd47b6a53225e7c79ec12b 53ceb21104a641c484d4b8e7645d7b6d +#: 661e5de699854673aba3514ac463b12e 7bfccaa86ce54a64bf7d92ec6a576066 +#: 8b31e5c89bc94600b0402b4043851360 8f97231c3b074c83a4e0b711360aa13a +#: 9381c2802da0445eb460cb72496ecd58 96f7f9fedd3e4084838b9340c26d3781 +#: a2184453371145008ab8edb2bebc1828 b0facd7208864b9190e27e037ea8aa7b +#: c55cfd8217574ea6877c770ca4d590e1 c8daf70be35f4fcfaafc3aca82447190 +#: c99f60322d564ed586c09436e487f125 +msgid "Return type" +msgstr "" + +#: 2621196e617c4416b2ee3425087fb013 bb593fc55f5845e282c0678c4ca7c3a4 +#: d2975d1552964ea69abf9e2d9f2c34a1 +#: discord.commands.permissions.default_permissions:15 +#: discord.commands.permissions.guild_only:4 +#: discord.commands.permissions.is_nsfw:7 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" +msgstr "" + +#: 170709aea05e4d6596430ecbcdc6b2ff 27314595e4ad42478ecac584522b5b5c +#: 56ccd2f7a26a431a88df94847e449b3c +#: discord.commands.permissions.default_permissions:18 +#: discord.commands.permissions.guild_only:7 +#: discord.commands.permissions.is_nsfw:10 of +msgid "Example" +msgstr "" + +#: df97a064550e4e33b11916afeef4ae71 discord.commands.permissions.guild_only:1 +#: of +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 "" + +#: b5580ad100f0493cb5162e2b598e7d5e discord.commands.permissions.is_nsfw:1 of +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 "" + +#: 3b38db1261c540ed9b38b50b257ebf93 discord.commands.permissions.is_nsfw:5 of +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 "" + +#: 3cb707e319364046ba6f2ef6af0fc306 discord.commands.core.application_command:1 +#: of +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 "" + +#: 82b42afe09934b35b5443bc04a2b2a31 +#: discord.commands.core.application_command:13 of +msgid "" +"The class to construct with. By default, this is :class:`.SlashCommand`. " +"You usually do not change this." +msgstr "" + +#: discord.commands.core.application_command:17 +#: fe1f10e52d624dc9970ec9f9478becb5 of +msgid "" +"Keyword arguments to pass into the construction of the class denoted by " +"``cls``." +msgstr "" + +#: ../../api/application_commands.rst 1cb924fd415e4ddc9496206f971ced35 +#: 1f9a0fed83444d2d8cc1cb8f25d4f832 35882ccb7511412fa8a02fe91cb6a83c +#: 3de69d0bb23d41e1bdf1fc7ec71268b0 48a171e781d247f4be4cd083cd7b649a +#: 51571b876dcd4446b30ec38ef632db2c af727a1e0df74d818b684591442a53cb +#: be9cd2081e584a819bf1549f7325376d d2b91ddf551d443299606af43f270971 +#: dacfb5c6315c4fd8abe70b44fde4055d e860e3aa9c454db6bed32e3b32b70bf2 +msgid "Returns" +msgstr "" + +#: 5de61b114ef1402fa1afc797a823a6b0 +#: discord.commands.core.application_command:20 of +msgid "" +"A decorator that converts the provided method into an " +":class:`.ApplicationCommand`, or subclass of it." +msgstr "" + +#: 159c15c1b9114f6583215bac45623357 24179cdfea13469288bbb0caf076a82e +#: discord.commands.core.application_command:21 discord.commands.core.command:9 +#: of +msgid "Callable[..., :class:`.ApplicationCommand`]" +msgstr "" + +#: ../../api/application_commands.rst 31661879ced84eb38fdd4d6a898269f7 +#: 454861253a404ca6bc8c6eaaa62bc4c8 7c1227bd25ec4399acd53fe97346b37c +#: 85a0b34d9d504b9486cfd759b70a5269 da2632a415b247ba849b48310b8c9939 +msgid "Raises" +msgstr "" + +#: a2b10a34bc48445cb7547b3753e2d22d +#: discord.commands.core.application_command:23 of +msgid "If the function is not a coroutine or is already a command." +msgstr "" + +#: ad5e2ce4a65d4cc0a741ef3faa6ffe30 discord.commands.core.command:1 of +msgid "An alias for :meth:`application_command`." +msgstr "" + +#: 16ef3af73cd247bb82eab2f0d0a86833 discord.commands.core.command:4 of +msgid "This decorator is overridden by :func:`ext.commands.command`." +msgstr "" + +#: discord.commands.core.command:8 f5c240410616469db3e29b24ac97bb37 of +msgid "" +"A decorator that converts the provided method into an " +":class:`.ApplicationCommand`." +msgstr "" + +#: 8cd0e804deae471a957d22fb730f0d62 discord.commands.core.slash_command:1 of +msgid "Decorator for slash commands that invokes :func:`application_command`." +msgstr "" + +#: cf83ee0ad1984b10b9a2a1665f3baf2a discord.commands.core.slash_command:5 of +msgid "" +"A decorator that converts the provided method into a " +":class:`.SlashCommand`." +msgstr "" + +#: 3648e7b30ffa4a508caa6eb5fd8dd3c3 discord.commands.core.slash_command:6 of +msgid "Callable[..., :class:`.SlashCommand`]" +msgstr "" + +#: 94a75693b49d4729a08c55224a6635e3 discord.commands.core.user_command:1 of +msgid "Decorator for user commands that invokes :func:`application_command`." +msgstr "" + +#: a34c5627137a4a6abbee91d8ef916da5 discord.commands.core.user_command:5 of +msgid "" +"A decorator that converts the provided method into a " +":class:`.UserCommand`." +msgstr "" + +#: 1a5230d2f97b4c4088a308912ad57d76 discord.commands.core.user_command:6 of +msgid "Callable[..., :class:`.UserCommand`]" +msgstr "" + +#: 64dea31eec8149c9bc5aa4611ae732d0 discord.commands.core.message_command:1 of +msgid "Decorator for message commands that invokes :func:`application_command`." +msgstr "" + +#: b06aa2c156234565b94cc7a9adc52354 discord.commands.core.message_command:5 of +msgid "" +"A decorator that converts the provided method into a " +":class:`.MessageCommand`." +msgstr "" + +#: 8fe7341163d9401f8749dbb5d7ed7952 discord.commands.core.message_command:6 of +msgid "Callable[..., :class:`.MessageCommand`]" +msgstr "" + +#: ../../api/application_commands.rst:42 ../../api/application_commands.rst:73 +#: 90d12871fc60443cab43a4d2a559062f f29d6e2aba484c70ac570333290b6b69 +msgid "Objects" +msgstr "" + +#: discord.commands.core.ApplicationCommand.is_on_cooldown:1 +#: e5824d49a8ec4fd58c46756aa4ec9a8c of +msgid "Checks whether the command is currently on cooldown." +msgstr "" + +#: 22f96d6322cd4a01843b0facf9a060c8 43592460bb624523b6b7dddc218d6418 +#: discord.commands.core.ApplicationCommand.get_cooldown_retry_after:5 +#: discord.commands.core.ApplicationCommand.is_on_cooldown:5 of +msgid "This uses the current time instead of the interaction time." +msgstr "" + +#: 48c966a97d1e4323aaf2c55e947af55b +#: discord.commands.core.ApplicationCommand.is_on_cooldown:8 of +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "" + +#: 109268d7b8734d31b6f6a78fc32cc37e +#: discord.commands.core.ApplicationCommand.is_on_cooldown:11 of +msgid "A boolean indicating if the command is on cooldown." +msgstr "" + +#: 1cd0f7372eb94a76a4c4eb766a807d99 1d938773f96a4ec29acb39fe95a085e1 +#: 469210f5cf914546997454d384d9029d 5f86ec376bce414983af08e853bde10c +#: 6c64647e98224b3580a97a6971e0460f +#: discord.commands.core.ApplicationCommand.is_on_cooldown:12 +#: discord.commands.core.MessageCommand:31 +#: discord.commands.core.MessageCommand:38 +#: discord.commands.core.SlashCommand:58 discord.commands.core.SlashCommand:65 +#: discord.commands.core.SlashCommandGroup:38 +#: discord.commands.core.SlashCommandGroup:45 +#: discord.commands.core.UserCommand:31 discord.commands.core.UserCommand:38 +#: e46ea6aa9eee426bb7dfc66cd3cba65a of +msgid ":class:`bool`" +msgstr "" + +#: 4865f290a1c34beba2817f93eab500c5 +#: discord.commands.core.ApplicationCommand.reset_cooldown:1 of +msgid "Resets the cooldown on this command." +msgstr "" + +#: 53643f7f9ef1492a8092f43b8e5fc523 +#: discord.commands.core.ApplicationCommand.reset_cooldown:4 of +msgid "The invocation context to reset the cooldown under." +msgstr "" + +#: c8c22acd0edf4230bcd59ce97fe0e0bf +#: discord.commands.context.ApplicationContext.delete:14 +#: discord.commands.core.ApplicationCommand.reset_cooldown:7 +#: ea0c376e7639475c96884d6741d8e471 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: 5786055907dd47e8aa0184ae5d9858cb +#: discord.commands.core.ApplicationCommand.get_cooldown_retry_after:1 of +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "" + +#: d765407e83ec4b058b4b301fce4072e3 +#: discord.commands.core.ApplicationCommand.get_cooldown_retry_after:8 of +msgid "The invocation context to retrieve the cooldown from." +msgstr "" + +#: 91fcc0e4733b45df860a71abe4390a06 +#: discord.commands.core.ApplicationCommand.get_cooldown_retry_after:11 of +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.ApplicationCommand.get_cooldown_retry_after:13 +#: e5f76f402c5749b58d8def0d7b027cd7 of +msgid ":class:`float`" +msgstr "" + +#: 85341dba3db7499bbc2e89d1674b185a +#: discord.commands.core.ApplicationCommand.error:1 of +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "" + +#: 989d30b8f9a848129807a4f4a5055d14 +#: discord.commands.core.ApplicationCommand.error:3 of +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 "" + +#: 5fc1de69a66a4f1782fbbda61bfbd616 +#: discord.commands.core.ApplicationCommand.error:8 of +msgid "The coroutine to register as the local error handler." +msgstr "" + +#: 195c64eb9cf94087be8baf2674ba96a2 69cdb18feeb7405c8d90991e2504ff43 +#: discord.commands.core.ApplicationCommand.after_invoke:13 +#: discord.commands.core.ApplicationCommand.before_invoke:13 +#: discord.commands.core.ApplicationCommand.error:11 +#: ee192f4da1984910bb904352619efac9 of +msgid "The coroutine passed is not actually a coroutine." +msgstr "" + +#: 9ccf990d16f34941828a6515cc6f831d +#: discord.commands.core.ApplicationCommand.has_error_handler:1 of +msgid "Checks whether the command has an error handler registered." +msgstr "" + +#: aa27a8c0af014a0d8c7b4f3d6eb24ed9 +#: discord.commands.core.ApplicationCommand.has_error_handler:4 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 74e0ecf9b20d47e4ae7716f3cf075065 +#: discord.commands.core.ApplicationCommand.before_invoke:1 of +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 "" + +#: 9433b4a378614120ac4f31f90266b22e +#: discord.commands.core.ApplicationCommand.before_invoke:6 of +msgid "" +"This pre-invoke hook takes a sole parameter, an " +":class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more " +"info." +msgstr "" + +#: 6b73c4f26de94db6b23222b72e7033a8 +#: discord.commands.core.ApplicationCommand.before_invoke:10 of +msgid "The coroutine to register as the pre-invoke hook." +msgstr "" + +#: 9ebaa0682ce8427187430baa7a30a62a +#: discord.commands.core.ApplicationCommand.after_invoke:1 of +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 "" + +#: 8a42dbff4d8c4c50bff5f0d280665b55 +#: discord.commands.core.ApplicationCommand.after_invoke:6 of +msgid "" +"This post-invoke hook takes a sole parameter, an " +":class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more " +"info." +msgstr "" + +#: discord.commands.core.ApplicationCommand.after_invoke:10 +#: ff065a961e3349d899a4f61dc14101c1 of +msgid "The coroutine to register as the post-invoke hook." +msgstr "" + +#: 38de70f34b1f42c7a6b8db99f5580b96 +#: discord.ApplicationCommand.full_parent_name:1 of +msgid "Retrieves the fully qualified parent command name." +msgstr "" + +#: ca09f438cfef40768c157b677b5ac3ac +#: discord.ApplicationCommand.full_parent_name:3 of +msgid "" +"This the base command name required to execute it. For example, in ``/one" +" two three`` the parent name would be ``one two``." +msgstr "" + +#: 3c6db7d1726b459190301e3810022172 discord.ApplicationCommand.qualified_name:1 +#: of +msgid "Retrieves the fully qualified command name." +msgstr "" + +#: discord.ApplicationCommand.qualified_name:3 ffcb16ee006d4bcda5eb72e7313ac7d9 +#: of +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.ApplicationCommand.qualified_id:1 ee3fbd20f3e34193b2f31f0c6570c05e +#: of +msgid "Retrieves the fully qualified command ID." +msgstr "" + +#: c967bb36bdac4affbd4cb3fa91587415 discord.ApplicationCommand.qualified_id:3 +#: of +msgid "" +"This is the root parent ID. For example, in ``/one two three`` the " +"qualified ID would return ``one.id``." +msgstr "" + +#: 41fd24c1ab6b4016b6615a8b699a0bb9 discord.commands.core.SlashCommand:1 of +msgid "A class that implements the protocol for a slash command." +msgstr "" + +#: 6bf0393672874d60ace4dad3aeff4e49 bb14163d838f4df5be0e9d0ed62b84d9 +#: discord.commands.core.MessageCommand:3 discord.commands.core.SlashCommand:3 +#: discord.commands.core.UserCommand:3 of +msgid "" +"These are not created manually, instead they are created via the " +"decorator or functional interface." +msgstr "" + +#: 3d0e2ed16525455d96c8cb1edadb5bc9 67aaf53865d34b4eab081611d1af6dda +#: discord.commands.core.MessageCommand:8 discord.commands.core.SlashCommand:10 +#: discord.commands.core.SlashCommandGroup:8 +#: discord.commands.core.UserCommand:8 ed6cdb67d88c45f4a8824353790cf8fa of +msgid "The name of the command." +msgstr "" + +#: 105bde31bfd1417f987e4b7508657466 126aeaeefbb74756bd0d4c3712f68106 +#: 1d48447ce4dd4b40b0a9168a6c0a741d 2942f73e141945c5b9e84e3edfe83610 +#: 32ab576baabd4da4aa50f054bac960fa 4f19817a7d6541e3ac62dfb873551675 +#: 55edae3110864faaa4f01ec37013384d 596eaab5c9b44f7b966904a10dd285a1 +#: 65589f4eefce486783298b62563c29e6 69ca3d2c2367457d80020171f7956f20 +#: 78fbd9eecfff4a74921c5676a3badb3f 7e705d84c94d4d27988a51bd99c66d40 +#: 82d9281a794342ca80ecedb36ce845e8 8d8e59d3422e4073b73af34dec59df56 +#: 90b11fa54ccf460eb6ef527c265a5be3 94eb1b4764b941a09dbf0a90e5abab6d +#: a1abbc14d2b2467da83e741de3dfdf76 a2e513d5b07b4dfaaa4d578776fe3d5b +#: b033a7a3b7224e2ca5d25b6b39f19909 b458a250a6b34994b97107d1e2913f34 +#: b880b344500049db96d5e21f275c6531 cc22d99cfe4343559ceb67784268ad07 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 d346586079e040aeaa3ce95efc7de925 +#: da86647139e241c9b5091ecda8d8a7a3 discord.commands.context.ApplicationContext +#: discord.commands.context.AutocompleteContext +#: discord.commands.core.MessageCommand discord.commands.core.SlashCommand +#: discord.commands.core.SlashCommandGroup discord.commands.core.UserCommand +#: discord.commands.options.Option discord.commands.options.OptionChoice +#: discord.commands.options.option f2e9e70af4b14850a489ad1bc26923a7 +#: f422915c4028467f9272f041e90ac356 f4d4ca31df8b4d2196f56fbf4bb71e61 +#: fa5207c6c9a346c4a604a81b19fa4efc fe884d1963e24986a26db506c9fe20dd of +msgid "type" +msgstr "" + +#: 49221d04f03b4b12a9d0c0a9c637ef9a b2ced8f32ef84169b7d0feed3cfdffb8 +#: discord.commands.core.MessageCommand:10 +#: discord.commands.core.SlashCommand:12 discord.commands.core.SlashCommand:49 +#: discord.commands.core.SlashCommandGroup:10 +#: discord.commands.core.UserCommand:10 discord.commands.options.Option:16 +#: discord.commands.options.OptionChoice:9 discord.commands.options.option:10 +#: e1a8d5b422ad43aa838454c7a548d093 e73d6cccfb5e4378b06a018f2cb3a728 of +msgid ":class:`str`" +msgstr "" + +#: d7c8826678824334acd35d914ce6d3da discord.commands.core.MessageCommand:14 +#: discord.commands.core.SlashCommand:16 discord.commands.core.UserCommand:14 +#: eb1bd96acf84423f9aeaf5c3aef8d405 of +msgid "The coroutine that is executed when the command is called." +msgstr "" + +#: 7a48bea72ed14e6ca0b55c39805de1e2 94656ea4509f484995757bcea3759b36 +#: discord.commands.core.MessageCommand:16 +#: discord.commands.core.SlashCommand:18 discord.commands.core.UserCommand:16 +#: of +msgid ":ref:`coroutine `" +msgstr "" + +#: a1a8e38c697444e686ead501a98d1164 ca717fd502eb4d4eb6bcad8d95da302c +#: discord.commands.core.SlashCommand:22 +#: discord.commands.core.SlashCommandGroup:14 of +msgid "The description for the command." +msgstr "" + +#: 219ed0b9b95f4158a6f0a49a5ce2decb 457e3625a42542f28892b83df6b3d440 +#: 4c502354c8d74bf7b7c8f98c11b6a5bd discord.commands.core.SlashCommand:24 +#: discord.commands.core.SlashCommandGroup:16 +#: discord.commands.options.Option:23 of +msgid "Optional[:class:`str`]" +msgstr "" + +#: 64a250a8f0ac40d4aecc323b2ac9a050 77e0016800534470945d60987fed7899 +#: d206fd0ddbb94163a1152cfc1c826c06 discord.commands.core.MessageCommand:20 +#: discord.commands.core.SlashCommand:28 +#: discord.commands.core.SlashCommandGroup:20 +#: discord.commands.core.UserCommand:20 of +msgid "The ids of the guilds where this command will be registered." +msgstr "" + +#: 2b5abad428324601971b5a7d306bdc79 a8524dff9e6d4ac8a3a4b6229ad12e63 +#: c586c88145e24838a7a0f08feae5b3db discord.commands.core.MessageCommand:22 +#: discord.commands.core.SlashCommand:30 +#: discord.commands.core.SlashCommandGroup:22 +#: discord.commands.core.UserCommand:22 of +msgid "Optional[List[:class:`int`]]" +msgstr "" + +#: c8c15229d16d4fc89b3f7e19cf7180b6 discord.commands.core.SlashCommand:34 of +msgid "The parameters for this command." +msgstr "" + +#: 75862e9bf0b84d2897d613fc7e3fe683 discord.commands.core.SlashCommand:36 of +msgid "List[:class:`Option`]" +msgstr "" + +#: discord.commands.core.SlashCommand:40 fa69b266672c4ec99ee70ac16be2a608 of +msgid "" +"The parent group that this command belongs to. ``None`` if there isn't " +"one." +msgstr "" + +#: 66350ee1c0624f379d399a081ac541e8 b2cb8c97a7a84023a2de84bcf4d91e50 +#: discord.commands.core.SlashCommand:43 +#: discord.commands.core.SlashCommandGroup:29 of +msgid "Optional[:class:`SlashCommandGroup`]" +msgstr "" + +#: b3c411e124ea4def938df41c39d0adac discord.commands.core.SlashCommand:47 of +msgid "Returns a string that allows you to mention the slash command." +msgstr "" + +#: 243e82cb8df04a368273abf6f3e337e6 90c2f3e57f6b4b12a2db96f0229f59a6 +#: aedee1abd900459caa0824d9395135f2 discord.commands.core.MessageCommand:26 +#: discord.commands.core.SlashCommand:53 +#: discord.commands.core.SlashCommandGroup:33 +#: discord.commands.core.SlashCommandGroup.create_subgroup:13 +#: discord.commands.core.UserCommand:26 fe40b49ec6f643979b0a4dc4f8f53c79 of +msgid "Whether the command should only be usable inside a guild." +msgstr "" + +#: 04acf48e5dc641f2b7369a4dc4d0eb3c 3083ae8030e942ea85aab949de3ad70d +#: discord.commands.core.SlashCommand:55 +#: discord.commands.core.SlashCommandGroup:35 of +msgid "Use the :attr:`contexts` parameter instead." +msgstr "" + +#: 3f98034506304fa5adcbcb706311be39 6d50a38d0a17491a8badbba7e2e94860 +#: a1c4ecc9455b4ba4bf4c25be0df33521 c1b7134cf52d42c2950bd14e6152aed8 +#: discord.commands.core.MessageCommand:35 +#: discord.commands.core.SlashCommand:62 +#: discord.commands.core.SlashCommandGroup:42 +#: discord.commands.core.SlashCommandGroup.create_subgroup:15 +#: discord.commands.core.UserCommand:35 of +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 "" + +#: 4093e966648f402ab9e9a3821479bc17 59b49969a86549fe97fef27fa01c037d +#: 6b3bc7e04f3640fbbc49a1f5f1444291 d0cf02f6c33d40f480e6dcdfa59e5bed +#: discord.commands.core.MessageCommand:42 +#: discord.commands.core.SlashCommand:69 +#: discord.commands.core.SlashCommandGroup:49 +#: discord.commands.core.SlashCommandGroup.create_subgroup:18 +#: discord.commands.core.UserCommand:42 of +msgid "The default permissions a member needs to be able to run the command." +msgstr "" + +#: 128da93392f74a34b75d9da47a07e5d3 5fd417671e594f12bbdb4eebee581649 +#: c8f15213fe404ecc80f0efbad85ce25f discord.commands.core.MessageCommand:44 +#: discord.commands.core.SlashCommand:71 +#: discord.commands.core.SlashCommandGroup:51 +#: discord.commands.core.UserCommand:44 of +msgid ":class:`~discord.Permissions`" +msgstr "" + +#: 5f2fbe31f5d74ba7a5419816d2ee36a0 bd5e5e0d5f4b411c8e40eab4878085bc +#: discord.commands.core.MessageCommand:48 +#: discord.commands.core.SlashCommand:75 discord.commands.core.UserCommand:48 +#: of +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "" + +#: aa48e1fdf4ed4288b34a01330ba573c1 b34d5a804a5b4cf6afadd914bfc11a59 +#: discord.commands.core.MessageCommand:50 +#: discord.commands.core.SlashCommand:77 discord.commands.core.UserCommand:50 +#: of +msgid "Optional[:class:`Cog`]" +msgstr "" + +#: 0b88f443adf9434cab24c10d11dd4d90 1d352bc3635141cda4848e4fb7e0973e +#: 99e057769f604564828ec66970d09051 d9d5c1770b794a5aa348922c71a848cd +#: discord.commands.core.MessageCommand:54 +#: discord.commands.core.SlashCommand:81 +#: discord.commands.core.SlashCommandGroup:55 +#: discord.commands.core.SlashCommandGroup.create_subgroup:20 +#: discord.commands.core.UserCommand:54 of +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 "" + +#: 67af798da00f47a391dffbdf1d1b782b ad45d2349ec14cf6a18c5b8b7dc2a062 +#: discord.commands.core.MessageCommand:61 +#: discord.commands.core.SlashCommand:88 +#: discord.commands.core.SlashCommandGroup:62 +#: discord.commands.core.UserCommand:61 ec1f97a3576f474d878bf3caa4bef5f8 of +msgid "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" +msgstr "" + +#: 1942d1f115bd4ac0a990bf73d0a49126 1abebabad8514274a040cb70960603ce +#: discord.commands.core.MessageCommand:65 +#: discord.commands.core.SlashCommand:92 discord.commands.core.UserCommand:65 +#: of +msgid "" +"The cooldown applied when the command is invoked. ``None`` if the command" +" doesn't have a cooldown." +msgstr "" + +#: 4403e107ddec48139ba57ac55414cb0d 58f857b842d14e26b594f8771048b67f +#: discord.commands.core.MessageCommand:68 +#: discord.commands.core.SlashCommand:95 discord.commands.core.UserCommand:68 +#: of +msgid "Optional[:class:`~discord.ext.commands.Cooldown`]" +msgstr "" + +#: 21ed930c27b2453195f0faa34f14457e 4c7491a6786349beb7d12103568687d9 +#: 6e99029583a841a9ab1d74653b3b85ac 808dd134efa0495ea9b213fcf9b366a3 +#: 8aeea10a4b16406bb4fabc8f5e266f29 discord.commands.core.MessageCommand:72 +#: discord.commands.core.SlashCommand:99 +#: discord.commands.core.SlashCommandGroup:66 +#: discord.commands.core.SlashCommandGroup.create_subgroup:27 +#: discord.commands.core.UserCommand:72 of +msgid "" +"The name localizations for this command. The values of this should be " +"``\"locale\": \"name\"``. See `here " +"`_ for a list of " +"valid locales." +msgstr "" + +#: 023e1e7e67f84b929dedc87e98bf488f 7897fe9f532240669b41fd64f8d327df +#: 7f013ded205c49e4a449eb1a8356e3b8 94ef4db9991241619146371c2d241eec +#: 9fb8440c83b64b5da889a607e563f44c discord.commands.core.MessageCommand:75 +#: discord.commands.core.SlashCommand:102 +#: discord.commands.core.SlashCommand:109 +#: discord.commands.core.SlashCommandGroup:69 +#: discord.commands.core.SlashCommandGroup:76 +#: discord.commands.core.UserCommand:75 discord.commands.options.Option:99 +#: discord.commands.options.Option:106 discord.commands.options.OptionChoice:22 +#: of +msgid "Dict[:class:`str`, :class:`str`]" +msgstr "" + +#: 232bbcc643034214afd2c8bf7793034c 465be0fc2ca64e46ab11324883be8c39 +#: 9f23516b8763437599e6707336f93a13 b589efc99cfc492e9e2d1b0070562e2c +#: discord.commands.core.SlashCommand:106 +#: discord.commands.core.SlashCommandGroup:73 +#: discord.commands.core.SlashCommandGroup.create_subgroup:30 of +msgid "" +"The description localizations for this command. The values of this should" +" be ``\"locale\": \"description\"``. See `here " +"`_ for a list of " +"valid locales." +msgstr "" + +#: 5d7c88e616bd457884fb476a7d2f4ab0 709b29ca67a54df18bd7293c19e29cf2 +#: discord.commands.core.SlashCommand:113 +#: discord.commands.core.SlashCommandGroup:80 of +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 "" + +#: 667c0fef77a5473cb31b94fd02113660 6eb640cae00c453a89aab91f7b489f5b +#: bde9fd66a882485c806403a935a2799b discord.commands.core.MessageCommand:81 +#: discord.commands.core.SlashCommand:117 +#: discord.commands.core.SlashCommandGroup:84 +#: discord.commands.core.UserCommand:81 of +msgid "Set[:class:`IntegrationType`]" +msgstr "" + +#: 69dad4ce1f7b4caab795a3f006adcd96 discord.commands.core.SlashCommand:121 of +msgid "" +"The location where this command can be used. Cannot be set if this is a " +"guild command." +msgstr "" + +#: 5f7622e9d98e4fa78b9fdc2edd148970 discord.commands.core.MessageCommand:87 +#: discord.commands.core.SlashCommand:123 +#: discord.commands.core.SlashCommandGroup:90 +#: discord.commands.core.UserCommand:87 e4cf9dee7685447693343bc155de82b8 +#: fca44b50de0b4821acb8f06f88efc30b of +msgid "Set[:class:`InteractionContextType`]" +msgstr "" + +#: 31d87139a8b540bc9e1c77b8b1829f09 discord.commands.core.MessageCommand.copy:1 +#: discord.commands.core.SlashCommand.copy:1 +#: discord.commands.core.UserCommand.copy:1 e09041a18e2048f885c27f005740a3b7 of +msgid "Creates a copy of this command." +msgstr "" + +#: a8105025c5e2494aa3f98b742ce48850 be0630b9503f4c4fa51e83cc51cb43de +#: discord.commands.core.MessageCommand.copy:3 +#: discord.commands.core.SlashCommand.copy:3 +#: discord.commands.core.UserCommand.copy:3 of +msgid "A new instance of this command." +msgstr "" + +#: 0be8c140c01d413fa23ff654727f9145 discord.commands.core.SlashCommand.copy:4 +#: of +msgid ":class:`SlashCommand`" +msgstr "" + +#: 3926a5a0cdd54defa1b2dcae0f38112e discord.commands.core.SlashCommandGroup:1 +#: of +msgid "A class that implements the protocol for a slash command group." +msgstr "" + +#: 86b3efd9357249c382571006517aadb2 discord.commands.core.SlashCommandGroup:3 +#: of +msgid "" +"These can be created manually, but they should be created via the " +"decorator or functional interface." +msgstr "" + +#: 1ba00e6c6a9c4381845f27b44a09f0a3 discord.commands.core.SlashCommandGroup:26 +#: of +msgid "The parent group that this group belongs to. ``None`` if there isn't one." +msgstr "" + +#: 86feaefaaaf34288af79998e7d3eb3a9 discord.commands.core.SlashCommandGroup:88 +#: of +msgid "" +"The location where this command can be used. Unapplicable for guild " +"commands." +msgstr "" + +#: 7a10b1d79da74255bdd7a7e59b681aa6 +#: discord.commands.core.SlashCommandGroup.create_subgroup:1 of +msgid "Creates a new subgroup for this SlashCommandGroup." +msgstr "" + +#: discord.commands.core.SlashCommandGroup.create_subgroup:4 +#: f0a5c570cc0640daaab5e1d358b07b15 of +msgid "The name of the group to create." +msgstr "" + +#: 03f96678c3fe4b73a5300b9b76942114 +#: discord.commands.core.SlashCommandGroup.create_subgroup:7 +#: discord.commands.core.SlashCommandGroup.subgroup:10 +#: e19cf1315db44335b86b91dc9de63e5b of +msgid "The description of the group to create." +msgstr "" + +#: 07c545d36d2845a09d3492826661765e +#: discord.commands.core.SlashCommandGroup.create_subgroup:10 +#: discord.commands.core.SlashCommandGroup.subgroup:13 +#: e16839754dd74ff0b55c2565c7a3bbfb of +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 "" + +#: 0097a80d2c364ccea8530212bdc8538a 50bd9f43948a48cda18b0348eeacf075 +#: discord.commands.core.SlashCommandGroup.create_subgroup:34 +#: discord.commands.core.SlashCommandGroup.subgroup:17 of +msgid "The slash command group that was created." +msgstr "" + +#: 110713e4d85d40cd8deed214a911e308 +#: discord.commands.core.SlashCommandGroup.subgroup:1 of +msgid "" +"A shortcut decorator that initializes the provided subclass of " +":class:`.SlashCommandGroup` as a subgroup." +msgstr "" + +#: ad149ced4c7d487494e7d269414157b3 +#: discord.commands.core.SlashCommandGroup.subgroup:7 of +msgid "" +"The name of the group to create. This will resolve to the name of the " +"decorated class if ``None`` is passed." +msgstr "" + +#: 9c71c512414541089ea38638c3dde77f +#: discord.commands.core.SlashCommandGroup.walk_commands:1 of +msgid "" +"An iterator that recursively walks through all slash commands and groups " +"in this group." +msgstr "" + +#: 7d6810cb23814948bfd06437dddc2d2a +#: discord.commands.core.SlashCommandGroup.walk_commands of +msgid "Yields" +msgstr "" + +#: 626e588005a54eccbe4bbd0263385625 +#: discord.commands.core.SlashCommandGroup.walk_commands:3 of +msgid "" +":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash " +"command or slash command group from the group." +msgstr "" + +#: 2030810b53b74013855efa8e43381af4 +#: discord.commands.core.SlashCommandGroup.copy:1 of +msgid "Creates a copy of this command group." +msgstr "" + +#: a0a6be77abba47a6afbd4561554df107 +#: discord.commands.core.SlashCommandGroup.copy:3 of +msgid "A new instance of this command group." +msgstr "" + +#: dc5f23a83726415ca441522fcf41075c +#: discord.commands.core.SlashCommandGroup.copy:4 of +msgid ":class:`SlashCommandGroup`" +msgstr "" + +#: 86543ac679bf4bb992a6ca78b1197fda discord.commands.core.UserCommand:1 of +msgid "A class that implements the protocol for user context menu commands." +msgstr "" + +#: discord.commands.core.MessageCommand:28 discord.commands.core.UserCommand:28 +#: f5cc870407294386a12e5e92859cf1ba of +msgid "Use the ``contexts`` parameter instead." +msgstr "" + +#: discord.commands.core.MessageCommand:79 discord.commands.core.UserCommand:79 +#: e5ac68f43e54493b955c34ffa4045d84 of +msgid "" +"The installation contexts where this command is available. Unapplicable " +"for guild commands." +msgstr "" + +#: discord.commands.core.MessageCommand:85 discord.commands.core.UserCommand:85 +#: f07350db291c4c9eb79da175bcf9ccd0 of +msgid "" +"The interaction contexts where this command is available. Unapplicable " +"for guild commands." +msgstr "" + +#: 0d24d6d88aa94aa59018232cc846f80a discord.commands.core.UserCommand.copy:4 of +msgid ":class:`UserCommand`" +msgstr "" + +#: 3a43c2f228a14e06a35102516117c170 discord.commands.core.MessageCommand:1 of +msgid "A class that implements the protocol for message context menu commands." +msgstr "" + +#: 1e28dc4b29a24786a69df8ff2df47b97 discord.commands.core.MessageCommand.copy:4 +#: of +msgid ":class:`MessageCommand`" +msgstr "" + +#: ../../api/application_commands.rst:65 0d9d93397a80433d9df6280b37e9cf0b +msgid "Options" +msgstr "" + +#: 0130075e1ddf4a318c804b668301c131 discord.commands.options.option:1 of +msgid "A decorator that can be used instead of typehinting :class:`.Option`." +msgstr "" + +#: c2a9f34a52a64a518c507218e1d9de01 discord.commands.options.option:7 of +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 "" + +#: 1e9056c43c884b5199898e497949e25d discord.commands.options.Option:1 of +msgid "Represents a selectable option for a slash command." +msgstr "" + +#: 75bfc064c11744c99eac785fa3f2ff23 discord.commands.options.Option:5 of +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 "" + +#: 593026b5a1fc40e4a80311b243cb7877 discord.commands.options.Option:9 of +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 "" + +#: c8d02ef8523442db84373cc1d2e0f28a discord.commands.options.Option:13 of +msgid "" +"The name of this option visible in the UI. Inherits from the variable " +"name if not provided as a parameter." +msgstr "" + +#: 3259bdeac333496c8faa60dc608eb5bb discord.commands.options.Option:20 of +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 "" + +#: 8e4ceb8ea36443469f1f85747c903c87 discord.commands.options.Option:27 of +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.Option:31 fe9b03d557c84b05b541b96464195697 of +msgid "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" +msgstr "" + +#: 2e528dec6b9b4726961a48ce6fe92acc discord.commands.options.Option:35 of +msgid "Whether this option is required." +msgstr "" + +#: 000b0bda94bd42cfb1633ef646d23a12 discord.commands.options.Option:37 of +msgid "Optional[:class:`bool`]" +msgstr "" + +#: a02cb6965835437f949bf2191a6fb459 discord.commands.options.Option:41 of +msgid "" +"The default value for this option. If provided, ``required`` will be " +"considered ``False``." +msgstr "" + +#: 7d22d3c43d274365972d6535159232dc discord.commands.options.Option:43 of +msgid "Optional[:class:`Any`]" +msgstr "" + +#: a47d1621967a4f648c720a1a3111eccc discord.commands.options.Option:47 of +msgid "" +"The minimum value that can be entered. Only applies to Options with an " +":attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "" + +#: 08ccceedd6f14b3f8c7d1509b11157a9 discord.commands.options.Option:50 +#: discord.commands.options.Option:57 discord.commands.options.Option:64 +#: discord.commands.options.Option:71 of +msgid "Optional[:class:`int`]" +msgstr "" + +#: 31ea4924990843f8adfbf6e88a51d7fd discord.commands.options.Option:54 of +msgid "" +"The maximum value that can be entered. Only applies to Options with an " +":attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "" + +#: db3a329f3a3f417ba0ae05f79aeade46 discord.commands.options.Option:61 of +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.Option:68 fe01838097b34805b0b2a859034446dd of +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 "" + +#: b16be74fd64a4d818577dc51a2d75445 discord.commands.options.Option:75 of +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 "" + +#: 96075db6b84448e8ae59a0aaf54aa561 discord.commands.options.Option:82 of +msgid "Does not validate the input value against the autocomplete results." +msgstr "" + +#: 6b97e34cbdd640fc848c3a62b0ce3ea3 discord.commands.options.Option:84 of +msgid "" +"Optional[Callable[[:class:`.AutocompleteContext`], " +"Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`]," +" Iterable[:class:`int`], Iterable[:class:`float`]]]]]" +msgstr "" + +#: discord.commands.options.Option:88 efe2d8d761e245b5b1cbca504fe5a3b6 of +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 "" + +#: 3895aa7de025406b82492d8871b80352 discord.commands.options.Option:92 of +msgid "list[:class:`discord.ChannelType`] | None" +msgstr "" + +#: dbae42fcf31241ada80858c6674efcfc discord.commands.options.Option:96 of +msgid "" +"The name localizations for this option. The values of this should be " +"``\"locale\": \"name\"``. See `here " +"`_ for a list of " +"valid locales." +msgstr "" + +#: 3d90448f536f49ed990f5e5cb38b5f0a discord.commands.options.Option:103 of +msgid "" +"The description localizations for this option. The values of this should " +"be ``\"locale\": \"description\"``. See `here " +"`_ for a list of " +"valid locales." +msgstr "" + +#: 73185a2e6c6e4d739ed5f24132cf9742 discord.commands.options.Option:109 of +msgid "Examples" +msgstr "" + +#: cc7ba7cb42254be2b8f3f28c2631f7b6 discord.commands.options.Option:110 of +msgid "Basic usage: ::" +msgstr "" + +#: 058fb547f7e048828c72114ef59e3b91 discord.commands.options.ThreadOption:1 of +msgid "" +"Represents a class that can be passed as the ``input_type`` for an " +":class:`Option` class." +msgstr "" + +#: 11b1db26d5f242b89c1358190f5c8a6b discord.commands.options.ThreadOption:6 of +msgid "The thread type to expect for this options input." +msgstr "" + +#: 032809522c5048eb89074eb12f49ebc8 discord.commands.options.OptionChoice:1 of +msgid "Represents a name:value pairing for a selected :class:`.Option`." +msgstr "" + +#: bd518b6ccee34ebe9742c780738d2419 discord.commands.options.OptionChoice:7 of +msgid "The name of the choice. Shown in the UI when selecting an option." +msgstr "" + +#: a2f07edb1eef44989abe7094570a69dc discord.commands.options.OptionChoice:13 of +msgid "The value of the choice. If not provided, will use the value of ``name``." +msgstr "" + +#: 3e81a8bc741042d78ff4dbbe111b99d1 discord.commands.options.OptionChoice:15 of +msgid "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" +msgstr "" + +#: 2ded24f7f3464286b1bdeb7668a8d8ac discord.commands.options.OptionChoice:19 of +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 "" + +#: 615595b5b70b452096a0d3bf17be3fb3 +#: discord.commands.context.ApplicationContext:1 of +msgid "Represents a Discord application command interaction context." +msgstr "" + +#: c7eb010280b1438baa0b3bfa57aada25 +#: discord.commands.context.ApplicationContext:3 of +msgid "" +"This class is not created manually and is instead passed to application " +"commands as the first parameter." +msgstr "" + +#: 735d3b8688e648a5aaf59912c322ab40 +#: discord.commands.context.ApplicationContext:10 +#: discord.commands.context.AutocompleteContext:9 of +msgid "The bot that the command belongs to." +msgstr "" + +#: 825a171e7cc64dd2a99a0905e70528dc +#: discord.commands.context.ApplicationContext:12 +#: discord.commands.context.AutocompleteContext:11 of +msgid ":class:`.Bot`" +msgstr "" + +#: 5f80d2b271b94a57ac853c1925574447 +#: discord.commands.context.ApplicationContext:16 of +msgid "The interaction object that invoked the command." +msgstr "" + +#: 38ff2d92f89246838e966fd79f106c78 3c66cc9483d34081a22536fa12eccf5c +#: discord.ApplicationContext.send_response:48 +#: discord.commands.context.ApplicationContext:18 +#: discord.commands.context.AutocompleteContext:17 of +msgid ":class:`.Interaction`" +msgstr "" + +#: d6f68d1b5a754d4faff41bef78e15ad3 +#: discord.commands.context.ApplicationContext:22 +#: discord.commands.context.AutocompleteContext:21 of +msgid "The command that this context belongs to." +msgstr "" + +#: 731cda54c14a44f4a88a9bc501f056d7 +#: discord.commands.context.ApplicationContext:24 +#: discord.commands.context.AutocompleteContext:23 of +msgid ":class:`.ApplicationCommand`" +msgstr "" + +#: 68f22a8232be41a3b2b45d850414330f discord.ApplicationContext.defer:1 +#: discord.ApplicationContext.edit:1 discord.ApplicationContext.respond:1 +#: discord.ApplicationContext.send_followup:1 +#: discord.ApplicationContext.send_response:1 +#: discord.commands.context.ApplicationContext.delete:1 +#: discord.commands.context.ApplicationContext.invoke:1 of +msgid "|coro|" +msgstr "" + +#: 140199d2d8ca46f49bcf52390154703f +#: discord.commands.context.ApplicationContext.invoke:3 of +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 "" + +#: b49a2bc4dd68462fbb58bfb224685326 +#: discord.commands.context.ApplicationContext.invoke:9 of +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 "" + +#: bfec2e6b68394ab198c335a849c17ba2 +#: discord.commands.context.ApplicationContext.invoke:16 of +msgid "The command that is going to be called." +msgstr "" + +#: 92ab2efc601041a5b5a340bce07ea766 +#: discord.commands.context.ApplicationContext.invoke:19 of +msgid "The arguments to use." +msgstr "" + +#: 777b8be609c64373bbf341f9900b74cb +#: discord.commands.context.ApplicationContext.invoke:21 of +msgid "The keyword arguments to use." +msgstr "" + +#: 438aa440953846879cfbfe87145d195c +#: discord.commands.context.ApplicationContext.invoke:23 of +msgid "The command argument to invoke is missing." +msgstr "" + +#: 5021455f669a48f38102c39a6acbab6a +#: discord.commands.context.ApplicationContext.invoke:25 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\" +" \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr "" + +#: ../../docstring b609dea40cc743b08e49d5c7be8c7bcb +#: discord.ApplicationContext.channel:1 of +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 discord.ApplicationContext.channel_id:1 +#: e2e42bf39f034fa09a42af3e0df8cb7b of +msgid "" +"Returns the ID of the channel associated with this context's command. " +"Shorthand for :attr:`.Interaction.channel_id`." +msgstr "" + +#: ../../docstring 328542dec1c2423f82d4288770e7acfb +#: discord.ApplicationContext.guild:1 of +msgid "" +"Returns the guild associated with this context's command. Shorthand for " +":attr:`.Interaction.guild`." +msgstr "" + +#: ../../docstring 18c9865ad4024501a55ff86619379a13 +#: discord.ApplicationContext.guild_id:1 of +msgid "" +"Returns the ID of the guild associated with this context's command. " +"Shorthand for :attr:`.Interaction.guild_id`." +msgstr "" + +#: ../../docstring 4d0d154dfb024841ae4273ee278d35cb +#: discord.ApplicationContext.locale:1 of +msgid "" +"Returns the locale of the guild associated with this context's command. " +"Shorthand for :attr:`.Interaction.locale`." +msgstr "" + +#: ../../docstring 0f7171062ad34e40ba2a50d12af92493 +#: discord.ApplicationContext.guild_locale:1 of +msgid "" +"Returns the locale of the guild associated with this context's command. " +"Shorthand for :attr:`.Interaction.guild_locale`." +msgstr "" + +#: ../../docstring discord.ApplicationContext.me:1 +#: fb27d9ced4754e0bba9315eda057f24d of +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 360aae08d5ec4329a775a2b12cb73428 +#: discord.ApplicationContext.message:1 of +msgid "" +"Returns the message sent with this context's command. Shorthand for " +":attr:`.Interaction.message`, if applicable." +msgstr "" + +#: ../../docstring d233902b55f7474383181ef505b0deb0 +#: discord.ApplicationContext.author:1 discord.ApplicationContext.user:1 of +msgid "" +"Returns the user that sent this context's command. Shorthand for " +":attr:`.Interaction.user`." +msgstr "" + +#: 5e34a6aec3cd404da736946c09eef422 discord.ApplicationContext.voice_client:1 +#: of +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 57de46aa89ee401b90d87d96729b87d8 +#: discord.ApplicationContext.response:1 of +msgid "" +"Returns the response object associated with this context's command. " +"Shorthand for :attr:`.Interaction.response`." +msgstr "" + +#: b5efacea0c6d490588ed532029be97f3 +#: discord.ApplicationContext.selected_options:1 of +msgid "" +"The options and values that were selected by the user when sending the " +"command." +msgstr "" + +#: 2009dbc6355d49f988849abe62887432 +#: discord.ApplicationContext.selected_options:3 of +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 "" + +#: 8ac4f572c7f54f3181360191f521eb43 +#: discord.ApplicationContext.selected_options:6 of +msgid "Optional[List[Dict[:class:`str`, Any]]]" +msgstr "" + +#: 29e31a1123c242e1aa2b472c55404b69 +#: discord.ApplicationContext.unselected_options:1 of +msgid "The options that were not provided by the user when sending the command." +msgstr "" + +#: 5eacd869453c4caa94b8f1973d4bd707 +#: discord.ApplicationContext.unselected_options:3 of +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 "" + +#: 55cf6af7b08a4f7c93e92c2ec39a8632 +#: discord.ApplicationContext.unselected_options:5 of +msgid "Optional[List[:class:`.Option`]]" +msgstr "" + +#: discord.ApplicationContext.send_modal:1 fcd8fc00fc3444d4a347984fd3b9ed1d of +msgid "" +"|coro| Responds to this interaction by sending a modal dialog. This " +"cannot be used to respond to another modal dialog submission." +msgstr "" + +#: 76458eafc6a84b0aaff8d4cd995a9882 discord.ApplicationContext.send_modal:6 of +msgid "The modal dialog to display to the user." +msgstr "" + +#: d92a2d6d8ca043e8bb5c226c9c62684a discord.ApplicationContext.send_modal:9 of +msgid "Sending the modal failed." +msgstr "" + +#: 4b936a2efdbe459c87055d540910dc3b discord.ApplicationContext.defer:33 +#: discord.ApplicationContext.send_modal:10 +#: discord.ApplicationContext.send_response:53 of +msgid "This interaction has already been responded to before." +msgstr "" + +#: discord.ApplicationContext.respond:3 f5ed250977d64274ab69f28890c2d5fc of +msgid "" +"Sends either a response or a message using the followup webhook " +"determined by whether the interaction has been responded to or not." +msgstr "" + +#: ab5a3790be0349bab8d2da6a2877c752 discord.ApplicationContext.respond:6 of +msgid "" +"The response, its type depending on whether it's an interaction response " +"or a followup." +msgstr "" + +#: discord.ApplicationContext.respond:7 fadaf0ad570449299f73d46bbc211ff3 of +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "" + +#: 088524dc5e4f4da8addf23d2dcc81b09 discord.ApplicationContext.send_response:3 +#: of +msgid "Responds to this interaction by sending a message." +msgstr "" + +#: a23bdff51b9347ed9b843ee572eca90a discord.ApplicationContext.send_followup:15 +#: discord.ApplicationContext.send_response:6 of +msgid "The content of the message to send." +msgstr "" + +#: 4afdc5be01c04197bb07738ff36e4ef3 discord.ApplicationContext.send_followup:55 +#: discord.ApplicationContext.send_response:9 of +msgid "" +"A list of embeds to send with the content. Maximum of 10. This cannot be " +"mixed with the ``embed`` parameter." +msgstr "" + +#: discord.ApplicationContext.send_followup:51 +#: discord.ApplicationContext.send_response:13 e5c93968e5e54442b2c01ffb864b3784 +#: of +msgid "" +"The rich embed for the content to send. This cannot be mixed with " +"``embeds`` parameter." +msgstr "" + +#: 249a00f69dd7404b8a18dd990aedf15e discord.ApplicationContext.send_followup:33 +#: discord.ApplicationContext.send_response:17 of +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "" + +#: 5ee37397dded4a3faf8aa45347f4d3c9 discord.ApplicationContext.send_response:20 +#: of +msgid "The view to send with the message." +msgstr "" + +#: 19b8764e6eb742cfbd6c211ce6de49cf discord.ApplicationContext.send_response:23 +#: of +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 "" + +#: 88d5f696c2574d0fbd7638e815a9f7cd discord.ApplicationContext.edit:33 +#: discord.ApplicationContext.send_response:28 of +msgid "" +"Controls the mentions being processed in this message. See " +":meth:`.abc.Messageable.send` for more information." +msgstr "" + +#: 2d273ae38e5f4004b94c01caa64f2f1a discord.ApplicationContext.send_followup:87 +#: discord.ApplicationContext.send_response:32 of +msgid "" +"If provided, the number of seconds to wait in the background before " +"deleting the message we just sent." +msgstr "" + +#: c26323cc36d2444db93f04f6a16a61f1 discord.ApplicationContext.send_response:36 +#: of +msgid "The file to upload." +msgstr "" + +#: 5eb5de67847f4fbe95b625a06067be80 discord.ApplicationContext.send_response:39 +#: of +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "" + +#: c95324c20b714dce8cea04b4cfa5b6eb discord.ApplicationContext.send_followup:91 +#: discord.ApplicationContext.send_response:42 of +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "" + +#: 4e6235b751b24b81bd560956f1f7cb67 discord.ApplicationContext.send_followup:91 +#: discord.ApplicationContext.send_response:42 of +msgid "The poll to send." +msgstr "" + +#: 730b8b62d16c46f6aa4792bf63da9bb1 discord.ApplicationContext.send_response:47 +#: of +msgid "The interaction object associated with the sent message." +msgstr "" + +#: 551054b03c444d50a2a60ca32e8e9f16 discord.ApplicationContext.send_followup:99 +#: discord.ApplicationContext.send_response:50 of +msgid "Sending the message failed." +msgstr "" + +#: a0f75187304f404fb792a05b68249126 discord.ApplicationContext.send_response:51 +#: of +msgid "You specified both ``embed`` and ``embeds``." +msgstr "" + +#: 0a737ffed25c468a8fa88b66f105c037 discord.ApplicationContext.edit:55 +#: discord.ApplicationContext.send_followup:103 +#: discord.ApplicationContext.send_response:52 of +msgid "The length of ``embeds`` was invalid." +msgstr "" + +#: discord.ApplicationContext.send_followup:3 fd293a3f95634cac801f0b23e274ba24 +#: of +msgid "Sends a message using the webhook." +msgstr "" + +#: b9d3f9751ae6461e9faa2907517ba730 discord.ApplicationContext.send_followup:5 +#: of +msgid "" +"The content must be a type that can convert to a string through " +"``str(content)``." +msgstr "" + +#: discord.ApplicationContext.send_followup:7 e10e94fd9c024d6a9ac88264447d65fe +#: of +msgid "" +"To upload a single file, the ``file`` parameter should be used with a " +"single :class:`File` object." +msgstr "" + +#: discord.ApplicationContext.send_followup:10 fc47d5f58198427fbec351375429a249 +#: of +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 "" + +#: be98261f001f4289b337e61c209204d3 discord.ApplicationContext.send_followup:18 +#: of +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 "" + +#: 0f617a954d2040c4b314ea44e8f86eca discord.ApplicationContext.send_followup:24 +#: of +msgid "" +"The username to send with this message. If no username is provided then " +"the default username for the webhook is used." +msgstr "" + +#: 9d64c46ae5eb48c283625b543241afcd discord.ApplicationContext.send_followup:28 +#: of +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 "" + +#: 9e7158552f3945e9aa3eda56703c50f3 discord.ApplicationContext.send_followup:36 +#: of +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 "" + +#: 507d76c002f74e14b168047e5741ec68 discord.ApplicationContext.send_followup:36 +#: of +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 "" + +#: 9da3c6f904e749d2a70116da7b9f91b4 discord.ApplicationContext.edit:22 +#: discord.ApplicationContext.send_followup:44 of +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "" + +#: baf2da1b3eea467899a28632a9051c98 discord.ApplicationContext.edit:25 +#: discord.ApplicationContext.send_followup:47 of +msgid "" +"A list of files to send with the content. This cannot be mixed with the " +"``file`` parameter." +msgstr "" + +#: 1d48d94dfbdf48bc929205a105a85b6e discord.ApplicationContext.send_followup:59 +#: of +msgid "" +"Controls the mentions being processed in this message. .. versionadded::" +" 1.4" +msgstr "" + +#: 5f0205ad28b04c84be092358d620971f discord.ApplicationContext.send_followup:59 +#: of +msgid "Controls the mentions being processed in this message." +msgstr "" + +#: 11877168a21647ad9d25a5b521cd8e6b discord.ApplicationContext.send_followup:64 +#: of +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 "" + +#: a12ec104a407447aa3d2cf73b4909fee discord.ApplicationContext.send_followup:64 +#: of +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 "" + +#: 786aa546c1184b81b7ad96a239797b3a discord.ApplicationContext.send_followup:72 +#: of +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "" + +#: 87d19dcf19354880973a710d703a6d4e discord.ApplicationContext.send_followup:72 +#: of +msgid "The thread to send this webhook to." +msgstr "" + +#: discord.ApplicationContext.send_followup:77 f9beaed2ddb0425fa4072973b6b228ab +#: of +msgid "" +"The name of the thread to create. Only works for forum channels. .. " +"versionadded:: 2.0" +msgstr "" + +#: discord.ApplicationContext.send_followup:77 f84ffbc14b01477fbf984092850d7a62 +#: of +msgid "The name of the thread to create. Only works for forum channels." +msgstr "" + +#: discord.ApplicationContext.send_followup:82 fdd72a094f5141ab94b0a7157efea41a +#: of +msgid "" +"A list of tags to apply to the message. Only works for threads. .. " +"versionadded:: 2.5" +msgstr "" + +#: dbad2a8ee2cd46f8ac199fdffe2d1b6d discord.ApplicationContext.send_followup:82 +#: of +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "" + +#: 8ed2b127aab547adb416b946c1ff5afb discord.ApplicationContext.send_followup:96 +#: of +msgid "" +"If ``wait`` is ``True`` then the message that was sent, otherwise " +"``None``." +msgstr "" + +#: discord.ApplicationContext.send_followup:97 eb56c247fe6743d79f1325e5cfbecf33 +#: of +msgid "Optional[:class:`WebhookMessage`]" +msgstr "" + +#: 376082779e6a496a92c04b5372816a43 +#: discord.ApplicationContext.send_followup:100 of +msgid "This webhook was not found." +msgstr "" + +#: b1376346972d42b1a3c9e82098f6c2ee +#: discord.ApplicationContext.send_followup:101 of +msgid "The authorization token for the webhook is incorrect." +msgstr "" + +#: c6b8b47999374b87931c77b60a96a2d4 +#: discord.ApplicationContext.send_followup:102 of +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "" + +#: discord.ApplicationContext.send_followup:104 +#: f003bf666ab2407abfdd4416f87c1363 of +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.ApplicationContext.defer:3 eafc302ded3343bfa7c60d20da0291cb of +msgid "Defers the interaction response." +msgstr "" + +#: df92e0185cc94f369a94a9f7c3e4d4f4 discord.ApplicationContext.defer:5 of +msgid "" +"This is typically used when the interaction is acknowledged and a " +"secondary action will be done later." +msgstr "" + +#: 820010f987a64387a35e5c0080467f76 discord.ApplicationContext.defer:8 of +msgid "This can only be used with the following interaction types:" +msgstr "" + +#: 2178e13bd96246b2b10c95327192cd9d discord.ApplicationContext.defer:10 of +msgid ":attr:`InteractionType.application_command`" +msgstr "" + +#: 1456b98d7fe04bd6867edc1cdb4abd0c discord.ApplicationContext.defer:11 of +msgid ":attr:`InteractionType.component`" +msgstr "" + +#: 29822a6142e9410ca2d1d9d83a96fd15 discord.ApplicationContext.defer:12 of +msgid ":attr:`InteractionType.modal_submit`" +msgstr "" + +#: 14e0ba720bca419b8e522b34e997f1b0 discord.ApplicationContext.defer:15 of +msgid "" +"The follow-up response will also be non-ephemeral if the `ephemeral` " +"argument is ``False``, and ephemeral if ``True``." +msgstr "" + +#: discord.ApplicationContext.defer:19 f1f0c011e33343a69a5fe55bee726d78 of +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 "" + +#: d756d7d3612f4083829475d5026de3f2 discord.ApplicationContext.defer:24 of +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 "" + +#: a14d5150e093472dbe422e4c56667fcf discord.ApplicationContext.defer:32 of +msgid "Deferring the interaction failed." +msgstr "" + +#: 7cf892fc660444d698051a80c722de6b discord.ApplicationContext.followup:1 of +msgid "Returns the followup webhook for followup interactions." +msgstr "" + +#: 4b5c695549c54ef7ab2bb8aa2415c8f5 +#: discord.commands.context.ApplicationContext.delete:3 of +msgid "Deletes the original interaction response message." +msgstr "" + +#: 282a94146db246ec9bceb2e4b6fefed7 +#: discord.commands.context.ApplicationContext.delete:5 of +msgid "" +"This is a higher level interface to " +":meth:`Interaction.delete_original_response`." +msgstr "" + +#: 394d4b023ed84168a9f8389747a7b41b +#: discord.commands.context.ApplicationContext.delete:8 of +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "" + +#: discord.commands.context.ApplicationContext.delete:11 +#: ea3684f1004940f3b8e8de7102aefd59 of +msgid "Deleting the message failed." +msgstr "" + +#: 6891dda8e4994181b173976f49c55d59 +#: discord.commands.context.ApplicationContext.delete:12 of +msgid "You do not have proper permissions to delete the message." +msgstr "" + +#: 6f30e222be6247b4ace76de5ba0c5b27 discord.ApplicationContext.edit:3 of +msgid "Edits the original interaction response message." +msgstr "" + +#: 5c47f45c0da14d5d9d7848955f02fb2f discord.ApplicationContext.edit:5 of +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 "" + +#: 71a97a38704a49a2bec5f4c577e4fcf6 discord.ApplicationContext.edit:8 of +msgid "" +"This method is also the only way to edit the original message if the " +"message sent was ephemeral." +msgstr "" + +#: discord.ApplicationContext.edit:12 f9e671739a04499897ad79ca3d4e41b2 of +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "" + +#: 0813010dcf904b128b2dc4d7167b3f0e discord.ApplicationContext.edit:15 of +msgid "A list of embeds to edit the message with." +msgstr "" + +#: c346ef612dc144f8aa1653c2ca3e6c3e discord.ApplicationContext.edit:18 of +msgid "" +"The embed to edit the message with. ``None`` suppresses the embeds. This " +"should not be mixed with the ``embeds`` parameter." +msgstr "" + +#: 8cf7f2b7a8294feabbba1e3be5da1c33 discord.ApplicationContext.edit:29 of +msgid "" +"A list of attachments to keep in the message. If ``[]`` is passed then " +"all attachments are removed." +msgstr "" + +#: 6221bcc307ca47fd83865c20efddaf57 discord.ApplicationContext.edit:37 of +msgid "" +"The updated view to update this message with. If ``None`` is passed then " +"the view is removed." +msgstr "" + +#: 828436be57f74170a414271192eb3539 discord.ApplicationContext.edit:41 of +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 "" + +#: cdfc2e90938c457f9ab2737ffab74a5c discord.ApplicationContext.edit:46 of +msgid "Whether to suppress embeds for the message." +msgstr "" + +#: 9a308a4a2c34444995ab4570d2376b10 discord.ApplicationContext.edit:49 of +msgid "The newly edited message." +msgstr "" + +#: 4904bcae5564406d9f48ae6887540994 discord.ApplicationContext.edit:50 of +msgid ":class:`InteractionMessage`" +msgstr "" + +#: 332fa654af644c9aafa1d235b4466dec discord.ApplicationContext.edit:52 of +msgid "Editing the message failed." +msgstr "" + +#: 7cd8271b907b4b21854be77974f8ce05 discord.ApplicationContext.edit:53 of +msgid "Edited a message that is not yours." +msgstr "" + +#: 1e9fa9fbd69e4e4cb54484433e9101cf discord.ApplicationContext.edit:54 of +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "" + +#: 6dda90c3ae154814a40ba59bed13deb3 discord.ApplicationContext.cog:1 +#: discord.AutocompleteContext.cog:1 of +msgid "" +"Returns the cog associated with this context's command. ``None`` if it " +"does not exist." +msgstr "" + +#: 48def13f6174498892c7611747545cd9 +#: discord.commands.context.AutocompleteContext:1 of +msgid "Represents context for a slash command's option autocomplete." +msgstr "" + +#: d78982df0e9a4cd99797b03021587f19 +#: discord.commands.context.AutocompleteContext:3 of +msgid "" +"This class is not created manually and is instead passed to an " +":class:`.Option`'s autocomplete callback." +msgstr "" + +#: discord.commands.context.AutocompleteContext:15 +#: ee98d3f82d63421bb90c23a0c914479a of +msgid "The interaction object that invoked the autocomplete." +msgstr "" + +#: 59a530105ac6485197b9bf2cefe8e50a +#: discord.commands.context.AutocompleteContext:27 of +msgid "The option the user is currently typing." +msgstr "" + +#: 326327f43433488a8304984c578d455b +#: discord.commands.context.AutocompleteContext:29 of +msgid ":class:`.Option`" +msgstr "" + +#: 59f72990e3c14649938ce6341ee0005f +#: discord.commands.context.AutocompleteContext:33 of +msgid "The content of the focused option." +msgstr "" + +#: 58801cfd58d44239a96812222e3aa822 +#: discord.commands.context.AutocompleteContext:35 of +msgid ":class:`.str`" +msgstr "" + +#: 4c4055bc1b5242568ae0246a1a990d13 +#: discord.commands.context.AutocompleteContext:39 of +msgid "" +"A name to value mapping of the options that the user has selected before " +"this option." +msgstr "" + +#: 808133417bf3421090c005298b52fda3 +#: discord.commands.context.AutocompleteContext:41 of +msgid "Dict[:class:`str`, Any]" +msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/application_info.po b/docs/locales/en/LC_MESSAGES/api/application_info.po new file mode 100644 index 0000000000..4f66e05088 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/application_info.po @@ -0,0 +1,321 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\n" + +#: ../../api/application_info.rst:4 74cc9bfd5756481fb562646a5aa70d5d +msgid "Application Info" +msgstr "" + +#: 67cc303e9e844f1ca659a36456c444ee discord.appinfo.AppInfo:1 of +msgid "Represents the application info for the bot provided by Discord." +msgstr "" + +#: 1124ffb2e42b46588081249f2347d068 1b1d4c131f034b3586d4deae1e0c9601 +#: discord.appinfo.AppInfo:5 discord.appinfo.PartialAppInfo:7 of +msgid "The application ID." +msgstr "" + +#: 013f2f903b8043b7ab1845f5f84bbe26 0674149be2a944ca999ae49f5e601996 +#: 069b37b065144aebb132d31f645d12c2 0af3be474a06423e977f2b441f84cd59 +#: 0beb967a69ef45ceb7763eeb3dc4c123 181b416bd32a4c09a0a558bccc6edb1f +#: 19576e9482234cf2aa10aee0803837ee 2025f53e11bd4695875937f126fc3d5d +#: 21b80740c5a44c28902b1147c2097f18 29b3cee3bbe84611b068b6b259bd0580 +#: 385296ec5bd14426bc90f124bd4e133c 3f5abcc229fc4eedbbd75cd841d5ffe6 +#: 4a30598bc54c4a3aab96264ecd6d8ee9 5457fab930b0423aae0f654e0c5c4636 +#: 56e392ad0d3243deaf3e3cb944f6c042 57950b71f84747a1934ec1e67a3b0da6 +#: 6fc93b77dea445ffa9533c19add272e3 703da5fbb2b64cfabeb8bb91296bf423 +#: 7528d93cc1f84431b0810b651a652439 7b68c801a7ec4e5789d94ebd2f9141cd +#: 8a2bdc95647948cfb921dc46c63ab9c0 8a71354038764ef894e1dcc7d9fecd94 +#: 92ed3996583c43d59eac823d7dfd43b6 987d58c35c3e4c338a33f6a2fdf5a7ca +#: 9f0fc6db0cfd4bc9b00d2518bd3f98a2 a92646588c9f4cc0ae6e61772d477ab2 +#: bf705be8aecf4e6b9dc48e2f7600a388 cfb243f065514d19b860b62d1ccaa127 +#: d393db4b36b34bf8b9ccacec2284d786 de414c3332244706ae4557f3a87dfe8c +#: discord.appinfo.AppInfo discord.appinfo.PartialAppInfo discord.team.Team +#: discord.team.TeamMember e3a96ae485014a2fb9be751474f5fcc2 +#: e5ba1ed92fc74de5a6950d97e6ff1a88 e8d765c6eae84e9fb157dae64cad6d74 +#: eb9e87675d7448bd9c87c88d4a1120fa f36425ac77184829b251c51ecf9fb3bf of +msgid "type" +msgstr "" + +#: 28dcab5434c6413fb97f42588f4f39ea 3f80eef1cfd346a9bd2e6c43cc081baf +#: 457812db4b314881a926ee03e86a9898 9e634374a91345b49183cdc6fd9e24f2 +#: discord.appinfo.AppInfo:7 discord.appinfo.PartialAppInfo:9 +#: discord.team.Team:7 discord.team.Team:19 discord.team.TeamMember:33 +#: fcbc9af0bba843ee8657a882e3a09cd3 of +msgid ":class:`int`" +msgstr "" + +#: bba498da8c0d4d148a5d76b2aa544210 discord.appinfo.AppInfo:11 +#: discord.appinfo.PartialAppInfo:13 efd203ceea5943b8b4c6604167817498 of +msgid "The application name." +msgstr "" + +#: 0c48a2fb50114deea8bd0f6949c2c9c2 2cdaedee07e34da18f8d4c3a51981a4e +#: 326981a57a1e457e8b448cfcfc2ee4a3 3f30e80dd97841a5b80cbc2f3b87cacd +#: 5d459ea63fdb4d3cac7c675933be4037 5db2364da5be4f2281478dcf2be04e23 +#: 979cc869319543979b872a000e8ffe54 a324d24a8b594416aacdaafb5e674459 +#: b18f16bc10504511852b2d398c7332ef b643514396354533a6acfa1127ad419f +#: dca178caa46944bd96eacce75e750097 discord.appinfo.AppInfo:13 +#: discord.appinfo.AppInfo:33 discord.appinfo.AppInfo:62 +#: discord.appinfo.AppInfo:71 discord.appinfo.PartialAppInfo:15 +#: discord.appinfo.PartialAppInfo:21 discord.appinfo.PartialAppInfo:34 +#: discord.appinfo.PartialAppInfo:41 discord.team.Team:13 +#: discord.team.TeamMember:27 discord.team.TeamMember:43 +#: discord.team.TeamMember:51 ee1525281bc84b7cbe2b2b314f49dace of +msgid ":class:`str`" +msgstr "" + +#: d723203de31d4393b5d900748a147753 discord.appinfo.AppInfo:17 of +msgid "The application owner." +msgstr "" + +#: b407039bb0ec4c978c9ddba84f0bc8a2 discord.appinfo.AppInfo:19 of +msgid ":class:`User`" +msgstr "" + +#: 44cdbd2ebe8f4f7db3a5643f5659b2d5 discord.appinfo.AppInfo:23 of +msgid "The application's team." +msgstr "" + +#: discord.appinfo.AppInfo:27 ea4867fdec25441a8351aefd9d2f5f73 of +msgid "Optional[:class:`Team`]" +msgstr "" + +#: 4e8e2eb7fe7d46a49fc65690284ddc64 897452b1fc6b4b7c8c58a40ad2300f6f +#: discord.appinfo.AppInfo:31 discord.appinfo.PartialAppInfo:19 of +msgid "The application description." +msgstr "" + +#: 08f798d700fc429cacbbbe837dac3ec6 discord.appinfo.AppInfo:37 of +msgid "" +"Whether the bot can be invited by anyone or if it is locked to the " +"application owner." +msgstr "" + +#: 331891c1013643e99d25bd56396c6484 4ffdc171660e444d8572edeebb447f76 +#: 749b73d6cbd44f47a2f04fb424d1778b discord.appinfo.AppInfo:40 +#: discord.appinfo.AppInfo:47 discord.team.TeamMember:63 of +msgid ":class:`bool`" +msgstr "" + +#: d607c73714124830ab4b1beaa5982315 discord.appinfo.AppInfo:44 of +msgid "" +"Whether the bot requires the completion of the full OAuth2 code grant " +"flow to join." +msgstr "" + +#: 23387591c8984590b91cb7eed48d8bdb 6101d10d23e2492bb99926518b019347 +#: discord.appinfo.AppInfo:51 discord.appinfo.PartialAppInfo:25 of +msgid "A list of RPC origin URLs, if RPC is enabled." +msgstr "" + +#: 7b9060949a424ef68146ea7243a6ae14 discord.appinfo.AppInfo:53 +#: discord.appinfo.PartialAppInfo:27 fe8d034329534fc9a8b8e5226e7009cf of +msgid "Optional[List[:class:`str`]]" +msgstr "" + +#: 0a1ea5c4c37743259ba5f6ce858d1720 2e7625a1090a480e841f2bbf9c2de937 +#: discord.appinfo.AppInfo:57 discord.appinfo.PartialAppInfo:31 of +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 "" + +#: 25824f9683ad4427b8de0c38d4051a04 c3de806ffd2541109c481affee79c8f8 +#: discord.appinfo.AppInfo:66 discord.appinfo.PartialAppInfo:38 of +msgid "" +"The hex encoded key for verification in interactions and the GameSDK's " +"`GetTicket `_." +msgstr "" + +#: b4b25b0e55f0433e83562bdd22959cd2 discord.appinfo.AppInfo:75 of +msgid "" +"If this application is a game sold on Discord, this field will be the " +"guild to which it has been linked to." +msgstr "" + +#: d542b7fb344647adabfa084a333ae9c1 discord.appinfo.AppInfo:80 +#: discord.appinfo.AppInfo:90 ecff4b129f4f45509cc190e1a82c3ce6 of +msgid "Optional[:class:`int`]" +msgstr "" + +#: a16580ffeec747d596b4e9077fe2b2e3 discord.appinfo.AppInfo:84 of +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 "" + +#: 3ea1bf80312b4ed6b5c59a1c5e7dc3c8 discord.appinfo.AppInfo:94 of +msgid "" +"If this application is a game sold on Discord, this field will be the URL" +" slug that links to the store page." +msgstr "" + +#: 14554aaaeafc4c07887d3af848a4648f 3e73e9e7460e4b319ed0f37536125521 +#: 5c5f38add34f465c92bc538636bdadd7 9157f2f39f01457387245ac79a958496 +#: d284414d044b4587b7bb242d9468f4c1 d8ea2bd900a0489684084903b6c36dde +#: discord.appinfo.AppInfo:99 discord.appinfo.AppInfo:107 +#: discord.appinfo.AppInfo:115 discord.appinfo.PartialAppInfo:47 +#: discord.appinfo.PartialAppInfo:53 discord.team.TeamMember:57 of +msgid "Optional[:class:`str`]" +msgstr "" + +#: 2acfd418ba5246fcb21ef2b3596edbe6 732e1ba0b3de4383a9ef9b83cf245d73 +#: discord.appinfo.AppInfo:103 discord.appinfo.PartialAppInfo:45 of +msgid "The application's terms of service URL, if set." +msgstr "" + +#: 645cd576ee2c4680b5a56d946d532840 658b05ab5b334ae1bb899028050da520 +#: discord.appinfo.AppInfo:111 discord.appinfo.PartialAppInfo:51 of +msgid "The application's privacy policy URL, if set." +msgstr "" + +#: ../../api/application_info.rst 0205a0d7e3004bae839d1cc65a73e96a +#: 7c5cc8a7f2c5408bbe7c6be139abb163 c7cec794944443f5ba534b9bd63acbb7 +#: e7d8765c380a4c9eb0944c511eed77ab +msgid "Parameters" +msgstr "" + +#: 0ff389dd282443c0a171af3d78775fa8 bff94f7e897b4f60867da6300aa80604 +#: discord.AppInfo.icon:1 discord.PartialAppInfo.icon:1 of +msgid "Retrieves the application's icon asset, if any." +msgstr "" + +#: 7730be7e119d4951b2cf3f0ca8bcda19 discord.AppInfo.cover_image:1 of +msgid "Retrieves the cover image on a store embed, if any." +msgstr "" + +#: 5fd587ca1e8e4b848ec3523fdbaf3d20 discord.AppInfo.cover_image:3 of +msgid "This is only available if the application is a game sold on Discord." +msgstr "" + +#: ae938df96b6443e2822efc053c40bdf7 discord.AppInfo.guild:1 of +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.PartialAppInfo:1 f36a0f6452e24fdc8ed50b109685437f of +msgid "" +"Represents a partial AppInfo given by " +":func:`~discord.abc.GuildChannel.create_invite`" +msgstr "" + +#: 11145d31bf024c7bab80025c64b7c96e discord.team.Team:1 of +msgid "Represents an application team for a bot provided by Discord." +msgstr "" + +#: 6fd71d9ed5b14389a1ae4e17d712b453 discord.team.Team:5 of +msgid "The team ID." +msgstr "" + +#: 28ef979653274e248c6ff0c8a55caf7e discord.team.Team:11 of +msgid "The team name." +msgstr "" + +#: discord.team.Team:17 fc41a0ab74f048359f01ba1c0968cb76 of +msgid "The team's owner ID." +msgstr "" + +#: d9c75b2bebe443d89d306c35b9e84253 discord.team.Team:23 of +msgid "A list of the members in the team." +msgstr "" + +#: 3d9afc4316934f55b07913d7e58251d0 discord.team.Team:27 of +msgid "List[:class:`TeamMember`]" +msgstr "" + +#: 463a76fee53f40b9b2a9609a55b59143 discord.Team.icon:1 of +msgid "Retrieves the team's icon asset, if any." +msgstr "" + +#: 63b9080cfbc8482893b8eb12edbf7051 discord.Team.owner:1 of +msgid "The team's owner." +msgstr "" + +#: 63ff0073e60346fa9a97204437389398 discord.team.TeamMember:1 of +msgid "Represents a team member in a team." +msgstr "" + +#: discord.team.TeamMember:7 e3f7fa8116ac45168cab02e5b26f882c of +msgid "Checks if two team members are equal." +msgstr "" + +#: discord.team.TeamMember:11 f0d991c870f546a6b3319505f2cd0730 of +msgid "Checks if two team members are not equal." +msgstr "" + +#: 5266854fb4bd43669d9b8e72e938dfd6 discord.team.TeamMember:15 of +msgid "Return the team member's hash." +msgstr "" + +#: 83a317ee5a0b408a9f4758fda47626d8 discord.team.TeamMember:19 of +msgid "Returns the team member's name with discriminator or global_name." +msgstr "" + +#: b01570cd3fef418eb1ce60372ab3dcba discord.team.TeamMember:25 of +msgid "The team member's username." +msgstr "" + +#: 2bb030dc84814e048a006790d4ffaa0f discord.team.TeamMember:31 of +msgid "The team member's unique ID." +msgstr "" + +#: 606ede4553ca4c83abeb3ec166dde072 discord.team.TeamMember:37 of +msgid "" +"The team member's discriminator. This is given when the username has " +"conflicts." +msgstr "" + +#: 8cbf4ee534434f2a86504f300e21d3d5 discord.team.TeamMember:41 of +msgid "" +"If the user has migrated to the new username system, this will always be " +"\"0\"." +msgstr "" + +#: c3884e88100b42d7b70c00c9b99fa3ad discord.team.TeamMember:47 of +msgid "The team member's global name." +msgstr "" + +#: 49d9f91963544551be434d0d46347ff3 discord.team.TeamMember:55 of +msgid "The avatar hash the team member has. Could be ``None``." +msgstr "" + +#: 35c4e103f2254c92b80b8d875089dae3 discord.team.TeamMember:61 of +msgid "Specifies if the user is a bot account." +msgstr "" + +#: discord.team.TeamMember:67 fcd21ee7de4e4c99916043f99c1e02f0 of +msgid "The team that the member is from." +msgstr "" + +#: discord.team.TeamMember:69 fb5cd5a9218c4fce92ea9f2d95ab46fb of +msgid ":class:`Team`" +msgstr "" + +#: discord.team.TeamMember:73 f5d05cc227b3458a8e126c87397c8666 of +msgid "The membership state of the member (e.g. invited or accepted)" +msgstr "" + +#: d7cc240edc334834aedd925553167159 discord.team.TeamMember:75 of +msgid ":class:`TeamMembershipState`" +msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/async_iter.po b/docs/locales/en/LC_MESSAGES/api/async_iter.po new file mode 100644 index 0000000000..365809dfca --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/async_iter.po @@ -0,0 +1,178 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 +#: 4f95ac8bdd4e4ed5860bb668349643c0 50240befea20487a938b5c3a1962b897 +#: 88aa64e2c65e49549cc72afb29d11079 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 06e87b915f3e4228881a5514b6a00865 +#: 5e49651663164532b4c188e7f9394698 647540de23184651ae6d19f426de83ae +#: 71a78339b59244759117eab739d2bf8d +msgid "Parameters" +msgstr "" + +#: ../../api/async_iter.rst:64 980baa97820542859943b5e915b7291e +msgid "The predicate to use. Could be a |coroutine_link|_." +msgstr "" + +#: ../../api/async_iter.rst 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 8d1fdc4db23d471aa821ca1ace2f2cbe +#: aab818990f18433e93d0cb25aaab6308 d1d2046aaf5c4fd69ff7ef7375d0b3d2 +#: 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 7774370fc45f4f54b7e247891786b2af +#: c6022e74eeaf41deabfef4ae43c8f694 d482560e0a4b46a792f1cbeaa515857c +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/locales/en/LC_MESSAGES/api/audit_logs.po b/docs/locales/en/LC_MESSAGES/api/audit_logs.po new file mode 100644 index 0000000000..aca80768e6 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/audit_logs.po @@ -0,0 +1,804 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 "" + +#: c16e0a4155244540969a7ad0dbbb4106 discord.audit_logs.AuditLogEntry:1 of +msgid "Represents an Audit Log entry." +msgstr "" + +#: 37848f380eba497886afcb59340fa3ff discord.audit_logs.AuditLogEntry:3 of +msgid "You retrieve these via :meth:`Guild.audit_logs`." +msgstr "" + +#: 01d8023134d6484b904d45265e979c57 discord.audit_logs.AuditLogEntry:9 of +msgid "Checks if two entries are equal." +msgstr "" + +#: cefb6c8408f94b1f9c157fb84ac1bd04 discord.audit_logs.AuditLogEntry:13 of +msgid "Checks if two entries are not equal." +msgstr "" + +#: 75e42cbd096245d3ac7fae79dadf793a discord.audit_logs.AuditLogEntry:17 of +msgid "Returns the entry's hash." +msgstr "" + +#: b9c1b72d908a4400a3263cf3f638c8b3 discord.audit_logs.AuditLogEntry:19 of +msgid "Audit log entries are now comparable and hashable." +msgstr "" + +#: discord.audit_logs.AuditLogEntry:24 fdc08052c4c940a1b7e0a45a4e86e46f of +msgid "The action that was done." +msgstr "" + +#: ../../api/audit_logs.rst 018838c92cf443998e3528806f535ef1 +#: 07ec8ed57b334e898b2027ce9a23f533 0a9a730958434cb6b48de053b91f207f +#: 0e91bcd374344924b95f83fbe77acdc7 12669c582e7f45689043622ba5bd5b40 +#: 14d7b570aa5440ac91af03d9d8ddc1ce 1b29fadde7984fd8b4998aaaad2f28e8 +#: 1b2f941479d9453db940b802623e13ed 20f20240e73442398f90c533449c5b62 +#: 25e96b71d7d84bceabf66ebd3ff12b25 287eae04e8bc4c0b8bc2f459950882e6 +#: 3165fb299696495fbf798eff6314b71b 31de64c8a9ef44bb90b82785f4a755c2 +#: 34a455ed93514bab850d4f8a8b31fb79 3b08ecbcedce4e1e8f7d65b0166100fe +#: 3c577c20e66c4e9c8d87d90f55396906 4d2c80465b854d4d80922e7e5ca5a332 +#: 52630aeafd804fa999184290dcdd066e 54c6f9deb1f74456aab58fa1853da21c +#: 5873a38c4b474eb49674201367bc55e7 5af4849d13ad467c9c761975b562b685 +#: 619d10656cab4f38a8f13dd01055559a 626724f8358847c199a526221635442c +#: 6299ba933ef74274a75ee97287374ad5 6f39b2f108094f9381a9a3838f656705 +#: 7095e060ff754284a061d7debf035204 72a4088527df4f81954a2771767fc5d7 +#: 74d33a3f44e64e60a33e576170b5aa76 77fc83cde9ff4a79b7698efcbf4442c7 +#: 7962ad5ea3f8408995139fc1864a0906 83b846ddac2a43d3939bd1f1847b5ef1 +#: 83c485385fe3478290a0e78dedcf9cb2 88015128497741aaa3336ce4accd8cd3 +#: 888211cdb8ab46758cfb862cc4a3d5bd 8b1ecea53f54442eb26246fcc07156f7 +#: 9167517e1b4440e488acc02f4d53b6dd 93fafdc3767245c1b52628509caf0af2 +#: 99df7c68d5f24841a158b287d5cc41df 9e1f7ebe763c4148acace5eaffee8b7d +#: 9edb5cae872e4dd3877591d5a7001b92 a5e79d2bf9b0440abeb92e949a5878a6 +#: ae9ec0bda90b41c1804663b15d03ff46 b78a900781d64dfb8728cde0bc78ff60 +#: c3d2889d125c481ebd191ec6a179c253 c49d2a0985e145e7a383f0123dc1ff52 +#: c57b847ed99d48408e23d66e88a31c68 c60356036ca745f4b40fed50de3b3474 +#: cbac2288ff274b719bdcf57f8b9661fb cdbfcba6d6cb422084edcdfc438027f0 +#: ce2b8b2a277d418c8ffd666502e64697 d2a278e08dde4150b5dcd92ddb321dcf +#: d4d94dd92843423db8465de85409e5bf dd73304f0e1a477799a52784017c8a51 +#: discord.audit_logs.AuditLogEntry ea85bad4af264314aa2c7ec6e16d1e53 +#: ed7384c9d8d6407eb8b0b145cd1b0a43 f1b22b933ffd4502ae08190e61ab1dd3 +#: f4b0051464374dffbab9e489460a9e4a f6dc9c09512e4f42875d84f023641208 +#: f719b0f52c4349f7a1114e8c16abd49e f7a45a775bde4406bea1e457c7060dea +#: f840f1761b5a4a508ba57b2113a897a9 f8c4ba816552415482b1c2d63e8f4a14 +#: f93ebef541414ae4a422ba3257083910 fb0c7fd0eed34636a9a0c40ae5cc04c5 of +msgid "type" +msgstr "" + +#: discord.audit_logs.AuditLogEntry:26 eb1bb86761ed47aa9289333648a2f29c of +msgid ":class:`AuditLogAction`" +msgstr "" + +#: 066412f2b2574cd89fc465846f4a13c3 discord.audit_logs.AuditLogEntry:30 of +msgid "" +"The user who initiated this action. Usually a :class:`Member`\\, unless " +"gone then it's a :class:`User`." +msgstr "" + +#: b35aa754f9f648fba64070e2a6494f49 discord.audit_logs.AuditLogEntry:33 of +msgid "Optional[:class:`abc.User`]" +msgstr "" + +#: 32ae59d50cad4b0186310a8e7eadd72d discord.audit_logs.AuditLogEntry:37 of +msgid "The entry ID." +msgstr "" + +#: ../../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 033ec36b1cc443ce925d8006608c9306 +#: 119dcd786d094e9fa3d9f9355d2acdcc 3a3211324625490bb19bcb97d023071c +#: 4b30306c6a9742db97a87c0642f0b06b 4c3c46c457d945369a3529520a9d230a +#: 56703ed09270429582f88902d4dcbfc1 6200ce13167d41ccbf154adf09263591 +#: 711f82da8b154c25827aca6f3e1bdf44 77f9a261fe6a44be9899d99d86a3eb8d +#: 9cd5338801f9430abae7be7fe8f678fa b19f850def9247d191d5a1f6f0ef6c51 +#: c51f09691c8f4659a5cddce1f4e07943 discord.audit_logs.AuditLogEntry:39 +#: efae14602d334dc6af7f23da6d78cf2e efceb465209a4a239309f1b5d1afe3de of +msgid ":class:`int`" +msgstr "" + +#: c524a8a01fb44a2f83e94cb40e722a2e discord.audit_logs.AuditLogEntry:43 of +msgid "" +"The target that got changed. The exact type of this depends on the action" +" being done." +msgstr "" + +#: 63c82e15ae6c4b81b56c84ed06a65f35 d765c3c8a02c4108b5f0d7fa50a155cf +#: discord.audit_logs.AuditLogEntry:46 discord.audit_logs.AuditLogEntry:61 of +msgid "Any" +msgstr "" + +#: c4f3e86c1f3445358a51a82414495e6b discord.audit_logs.AuditLogEntry:50 of +msgid "The reason this action was done." +msgstr "" + +#: ../../api/audit_logs.rst:294 8552845caae447a6a93c291d3468bc18 +#: ab1fd845cf7847fdb5f84ece35f22c4a discord.audit_logs.AuditLogEntry:52 of +msgid "Optional[:class:`str`]" +msgstr "" + +#: 1fafdfdb8be5486fb6c469d4a8e9ccdf discord.audit_logs.AuditLogEntry:56 of +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 c08175ab86fd405fb649cf0d0c775b14 +msgid "Parameters" +msgstr "" + +#: ../../docstring 35c34734a85b4772ab44cafcdb0c1487 +#: discord.AuditLogEntry.created_at:1 of +msgid "Returns the entry's creation time in UTC." +msgstr "" + +#: ../../docstring 42a54accd66e4774b590c0e2c23cef74 +#: discord.AuditLogEntry.category:1 of +msgid "The category of the action, if applicable." +msgstr "" + +#: ../../docstring 3f099394b54d4de38f2c30f64db98003 +#: discord.AuditLogEntry.changes:1 of +msgid "The list of changes this entry has." +msgstr "" + +#: ../../docstring 413918f132a3422e93b9002da753ffe3 +#: discord.AuditLogEntry.before:1 of +msgid "The target's prior state." +msgstr "" + +#: ../../docstring 3a963ab211594298b7dce384b294f823 +#: discord.AuditLogEntry.after:1 of +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 +#: 4d9f86b779414b2bb942360ba5e35da7 525ec285c87441b886ce406e12a9d4d6 +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 +#: 0373be925ad74c8691a4b7b06d0a7d89 739dd30af79f4035b167f2cc35db3041 +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 +#: 446725aaf65d4ddfb3011dd6c382a9bf 4b2ddc1049304c70bfa9ea00ac6484df +#: 8d014103b85e4d18bbf90074f7f42db2 a30eef0197584b019e89d220d779e48a +#: c5c4e0ae4e45496eb32c7907364cb483 d40120b690fa458fb3677608ad3130cb +#: d41973787ca043fe878e0c937df69154 e3f884ad7910494394662d3476eaa4d8 +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 27f36233f3e748669f14d6b5a674e1aa +#: 2bbdc8f9bd49492ebf765dbefaf45f2f 4c1306f7d9c04f5fb67d12193248a253 +#: 5c48319392134b6aacddc014c3f33a96 a8c90701ac52439082d83abf62f9e7ac +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 +#: 4f3c183d07a647a68232bc6f960e39dc 752da77502a64b3f80cda3b10ece282d +#: 75f60680df544cd6bd165b17b47dcae0 ede7bc22df7845f8ae20d1d1831204b4 +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 7668ff4c498d417094db3a518125a694 +#: 96ccebfcd99048b8b8f130eddd487b0f d70c738ba4ed464387fe8d9dd4469707 +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 +#: 150d6c683e5e43338ea9c52fcb44296e 41b6b46f42b542cca84e22064c42649d +#: 5ea7f3ebf0e3458aab55647bc2b6b207 6b1ec8059db9461eba7c85c1813e9749 +#: 6d333e9edc9743f889dfaf5c46e70264 aab3070967ec4ba68ad8d040d459b62a +#: b66e3d7285524390ac5536c97ffcb8fa d354c177497e4afeb2eda288f2c1ed27 +#: da435cbab68b4c9bb613f0a21f9d3e9b eb1dc1ce86b84aeb9a7498d83da1ed2b +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 +#: b28c52db483d462d9a4a19cb548cb0a2 b8ee17b89d06486894ada8257b51077a +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/locales/en/LC_MESSAGES/api/clients.po b/docs/locales/en/LC_MESSAGES/api/clients.po new file mode 100644 index 0000000000..1bb8199023 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/clients.po @@ -0,0 +1,3193 @@ +# 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 , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-12 14:51+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\n" + +#: ../../api/clients.rst:4 723ac37bda644d2181cb3df9c4c833f9 +msgid "Client Objects" +msgstr "" + +#: ../../api/clients.rst:7 f5a4ed36d6a84272acf23c5afab0c592 +msgid "Bots" +msgstr "" + +#: 8400a3a76ec1437498368512f2bcd8e6 discord.bot.Bot:1 of +msgid "Represents a discord bot." +msgstr "" + +#: 5c56ee85934b4790b06f26caec909ed9 discord.bot.Bot:3 of +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 "" + +#: 241bd5c3a34e4392b8a6581c2767d0a3 discord.bot.Bot:7 of +msgid "" +"This class also subclasses ``ApplicationCommandMixin`` to provide the " +"functionality to manage commands." +msgstr "" + +#: 76747a81bf1d4154946509eeddff1408 discord.bot.Bot:14 of +msgid "The content prefixed into the default help message." +msgstr "" + +#: 306f1e629eb74fb8897156f57deef766 4b9ecfa5eb284deeb0548250176a4191 +#: 560eb5d041474f8b93073a52bae970da 5b8e12be2e2244f2b1f628987c52633e +#: 5f2243a92d4c43f28cb1a2e4daf1c0c6 7d1a0d003e9a4f24bc90817b46fa956b +#: 82dc8e078ca8440b98e99a943f7ad1ee discord.Bot.store_url +#: discord.Client.store_url discord.bot.Bot discord.client.Client +#: discord.shard.AutoShardedClient fda9202ed81f4662b3410aefa9fee419 of +msgid "type" +msgstr "" + +#: 4ba364e8ffa94975b363bbe62943da28 ba970c9790144df49b7b45acd8f64d8f +#: discord.Bot.store_url:5 discord.Client.store_url:5 discord.bot.Bot:16 of +msgid ":class:`str`" +msgstr "" + +#: discord.bot.Bot:20 f0a6d897b9a74825856b3ed0d0bdf075 of +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 "" + +#: 28670aa78ebf4c3895e10886d6316c0e discord.bot.Bot:24 of +msgid "Optional[:class:`int`]" +msgstr "" + +#: dc016a35e8654b73b6546b2366030431 discord.bot.Bot:28 of +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 "" + +#: 7a7751b24b674cfeb944b5d46e42d6d6 discord.bot.Bot:36 of +msgid "Optional[Collection[:class:`int`]]" +msgstr "" + +#: 45a36a811f6a45e184e6cc9343cf8dc3 discord.bot.Bot:40 of +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 "" + +#: 78e894745191469fb6df43ad5513b831 8634aab7c85847109ab9f0cddc8753e7 +#: discord.bot.Bot:45 discord.shard.AutoShardedClient:25 of +msgid "Optional[List[:class:`int`]]" +msgstr "" + +#: c0b305ec45b44c44834fc2584f057881 discord.bot.Bot:49 of +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 "" + +#: 374d768efc3849968fe9c8d012de6b22 b45762ac677e4ede8a83b12bd8bcedc0 +#: discord.bot.Bot:54 discord.bot.BotBase.is_owner:18 of +msgid ":class:`bool`" +msgstr "" + +#: c00ff4be197447e3964bbc0d13cb246b discord.bot.Bot:58 of +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 "" + +#: 1851a493f6f14c01ac9393ca67e53686 discord.bot.Bot:64 of +msgid "Collection[:class:`InteractionContextType`]" +msgstr "" + +#: 55913631ea9743b8a11dd7c19978ef24 discord.bot.Bot:68 of +msgid "" +"The default integration types that the bot will use for commands. " +"Defaults to a set containing :attr:`IntegrationType.guild_install`." +msgstr "" + +#: 0f9f34c953de411c945a851f32bc0ec7 discord.bot.Bot:73 of +msgid "Collection[:class:`IntegrationType`]]" +msgstr "" + +#: discord.bot.ApplicationCommandMixin.command:1 +#: ede0ee8579c24e949538216bce9a910e of +msgid "An alias for :meth:`application_command`." +msgstr "" + +#: abc8f0b084cd401aacc2646108465bdc +#: discord.bot.ApplicationCommandMixin.command:5 of +msgid "This decorator is overridden by :class:`discord.ext.commands.Bot`." +msgstr "" + +#: ../../api/clients.rst 29c266428c724030856e400f0321170c +#: 3157343eb8dc43c38f49f7485b6f3d24 383b7b70518e4373a487cda57b5af7e9 +#: 3cb58a3abe1b42c1819b2852310d653a 50b3f627d64d43968598406f8a54b014 +#: 54efaf79f48a481191c6c2ef7a886625 59323c4d26924524b3f0a37f55605994 +#: 76dd9328c31b4a4f950ccd0e3951a95b 7a83a9a6026f4952ac18057feeedb044 +#: 894ca1b95aa546fa989ebc8cdeba861f 8dcb3fd905cc4640a1d94643105dd392 +#: 96723fb434f94be5a857bec15ed52438 aa170a708a2748799b64e1d6e92be480 +#: ab586c5a25de46ad95f31d7932fa193a ad2dc10d548c40968eb973127142a32b +#: b147c7c183114833a614aa7b243e3b87 c846f5d2939f47388cb6d8ca7e75a1a5 +#: c938d82420ef4100a294a971ae9ed880 cd605e7e5962488ab3e2441535990042 +#: cd623e270a47436b8f61ff60505e83cf d26b63e1b0dd4241989d229e204c2df0 +#: discord.client.Client.wait_for e0f6f617681043f796f22dae5afb1682 +#: e6969df24be54c1da77efc157913d736 e93403a910dc4626bba9fb32741c8826 +#: e9d1b7d02e6341219d94f03c85af5364 fd85f38bdfd648178e90d9d7b75e359b of +msgid "Returns" +msgstr "" + +#: 1dac05e697c7439aacc0f377b675f758 3ac657fe5790429d993c8722d4db5e8d +#: discord.bot.ApplicationCommandMixin.application_command:6 +#: discord.bot.ApplicationCommandMixin.command:9 of +msgid "" +"A decorator that converts the provided method into an " +":class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "" + +#: ../../api/clients.rst 00df3d9a2f42415fb50effb3dcc752e2 +#: 026a834fb831418abc59198052da3f3d 065b24140ad64f89bb8aebb7cbaaab81 +#: 169835626ad247a4bcc302daabf74f2b 1964b28d4c46484697f52e43a3640e3d +#: 1e47d1137dd948f7a4766ae5501226cd 211c294473a74b80966d5142f36889f0 +#: 27ce0d1faae44f67b52ec5fe02ef48d2 30cedd7bc2524dcd8393358dc4220ba0 +#: 3f756d9875684a0ebe2664b9ca14132a 47506201077a4cf2a2d31c3225e7f066 +#: 49511cb9a7ad486a880ef83bf2b1b2e5 554f6802f4174ca49a08c4f404762728 +#: 5572b6fc69b947b6b4a38b5a3a0919fd 5dc7f8a955dc46239ce157d05489e188 +#: 606afb97d6624f858e67593ee96461ba 655d0d4943ab4822aa21d4e4a750d74b +#: 6587a9a35be04d6ebd805391f1cfaeae 661ae464da8e493ebd3265ad9d14cc99 +#: 679603f71c3842ceb9ab9301877e0a68 6a5cda973d654ea292590a860372879c +#: 709dc58325c146ad8a210ad694c05c1d 755dcc201bf14875a0f66b9268ab8006 +#: 802bd62917a4494ba82f62bcf514d251 804ec08a0674477f81206af58d000d7a +#: 80db389f7eb84893ab0b237312ef5b00 87d6c1142b8d4e4f84dbc4462fa8af12 +#: 8df350c04c424a6ba39097fe0b5f8a9c 94fb92d7017746558cdd49a5591ea65f +#: 9ea4f8399da44aaea81fb23e3636094a a135a1aad44744079848b59aa8959a9b +#: ab9ba099fcf94cbb9bb79464abb21fa8 aff4a87e8ab24e42a5821a9016ae8c94 +#: b5a22ed2f79040b2a8deb95f91416849 b7ac4b96f8d2402ba0daae8c56c55910 +#: c08ffb6b169b4e5d9ea796330e158ba4 c776ad51021d4b88a50e1e87662bf4a5 +#: c813b855074d4004962e777b87bdb92b d01fd2e5a7ce4d7c8e3c738e2769c0b3 +#: d13af68c11444be193cc57060b9a1dd7 d70f77a306c44a01b87030581102cfb4 +#: discord.client.Client.entitlements discord.client.Client.fetch_guilds +#: discord.client.Client.wait_for ec487369222e4fca9c3158f3caec9ae7 +#: ecaa6e582e60430db9758f5ad91318c7 fef47654c88e403dad85dc4284b5a5ab +#: ff2fb46d9b514c9db7c97625b6860b5f of +msgid "Return type" +msgstr "" + +#: 345ed55a66c44c4983a66090789aecc8 474ab42ae6e948239450d90239bdcbf9 +#: discord.bot.ApplicationCommandMixin.application_command:8 +#: discord.bot.ApplicationCommandMixin.command:11 of +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "" + +#: 35cfe3da5dfe44d2995bf87aeb1a214e 441663afc2e74b37a0ddd0c6805b8773 +#: discord.client.Client.event:1 of +msgid "A decorator that registers an event to listen to." +msgstr "" + +#: 7d5f8e58c1464f75826c12241640cae5 c6dc5e087bec4eac9b921c9a20528fad +#: discord.client.Client.event:3 of +msgid "" +"You can find more info about the events on the :ref:`documentation below " +"`." +msgstr "" + +#: 58aa1c39e6954e56ba22f92148d0d097 b90fa4213ca24bf38c3510fa7c307036 +#: discord.client.Client.event:5 of +msgid "" +"The events must be a :ref:`coroutine `, if not, " +":exc:`TypeError` is raised." +msgstr "" + +#: c1c2cb3ef1b0421ab29258750cf15303 discord.client.Client.event:9 +#: e29528c36b9b4f09937e3c217970dacc of +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 "" + +#: ../../api/clients.rst 00e6bd39c7fa4184844b6f7e7afcc5ef +#: 0a5f7aa535f24ca794e3c8734d4caf5f 2666501d112943b8b6641e0ee36d76ed +#: 2bb0d55c9f1e4b3489bd47b620ca3883 378fed9230884b5e9680753fe70c3989 +#: 3888f66b0d7d4eb7bfc805f9807a41d7 4727e7dbff374a62b8a56c79dc66082d +#: 51511a34fb6745aab1ca324ba180e340 5333ac2171494bb08f73a1fad01039bf +#: 5dedee9ffe954a98b442886bf9d3ad82 5fe56a006d574708abe19ebbaf839261 +#: 6ab72d7126304941a2843cd3f79e15bc 6c9daf6bb4464e6cbc2c184b3ccea998 +#: 6dcc2de71d1343bc93b3f0bca6661072 853e4bafa2c8478789b84f073f328614 +#: 923b691c5eda4326a0fe4609ae128330 93af98486bf7445e9912df5e0da0b0ea +#: 9dddf4f4551d4eb09d25088e95eed7b5 ad56de6ed3ee40d4b537dfd9f8bcc2c4 +#: b4b22e18c1bf40269e3dcfbaec8aae03 b897a699a6ae41eb83dee4e67d3b0f4a +#: be57f62d640d498db3acc576e8c69090 cab1be0a9d7a4ab18612dc4bdf535020 +#: d365fec41ab64fd19b3077f49a1088a4 discord.client.Client.entitlements +#: discord.client.Client.fetch_guilds discord.client.Client.wait_for +#: e4def2a95d484a9584fa73e8d26c4d1b e83bdfd3d60a4138a597146189b7446c +#: efa73facdf57418f9086572e7be0917d f7d3143efeea400d85cc0fcf45b1e15b of +msgid "Raises" +msgstr "" + +#: a11c6d8215d44d1b970f9f4eec435480 abc0b29447334a61ab35f241b27c1a3b +#: baba393bb0ae49f19ceb10505a6118f6 dac8224ddbd144bc80991d9f8509ae1b +#: discord.bot.BotBase.after_invoke:19 discord.bot.BotBase.before_invoke:18 +#: discord.client.Client.event:13 of +msgid "The coroutine passed is not actually a coroutine." +msgstr "" + +#: 24b2a7241cb049de8a09e3130bf59982 2d6af0e10e374eb2848aaf6af07794ca +#: 40c782af18fa4b6d95ff04ed328711de 4b54c577282844ab83de80cfe4c6af2e +#: 833994483f0d48bcb79e761846317133 8afe70b1dc3e415bbcb3587ae113f646 +#: ba886c1958ae47468695dc36cd20fa30 discord.bot.BotBase.check:12 +#: discord.bot.BotBase.check_once:18 discord.client.Client.add_listener:15 +#: discord.client.Client.change_presence:16 discord.client.Client.event:16 +#: discord.client.Client.listen:11 of +msgid "Example" +msgstr "" + +#: ../../api/clients.rst 029cc544048741f8a32c92d8ea711013 +#: 080b97188f5a44679891cfb716d50114 0a0a385dda714190bf496404866e2af0 +#: 17352eb8d90a471c86796deec5f40361 197545f9c6ed4c5da3e235134e4fe25a +#: 1995e834bfa04ce98aa43f02bd2745a4 1c0e015c47964f358c1c5adc8047b7c2 +#: 27e559c2588446bfb64518202432bf28 3200a85e4002416db55ed3790af21f4e +#: 340efc183485425687d5238c1b4e8ee3 3a0cbb5f03924ae4b02a402fe8156523 +#: 3c6cba4ba69e43249df187fcaeb5f207 53782ddd4eb34037ad076fa1e2cdfa2e +#: 566abd84b14f427a9dbe20726cd99445 61bdd2138a7145e49fcfbb06c5819cdc +#: 76ebe78f49d5406b8bcff947b1188cda 8bf1ef24b9714c1c8e0436865b442e9a +#: 944756aa81e34907af880c9ea3ddd943 99d7d45c973e4cab836405c222bbdf74 +#: 9fd02f2306464787b89f67ed08c49f2a a03bb4ec204c4867b740eb2c4bc3d398 +#: a32d372fc9f34a179efb70f960db2fcd b09e7584c7924b8c878f3b38d8698fbe +#: b9c75f273aa84490bb67b9aacb293eb7 c0bb632d73734973a0c9803a773856c4 +#: cab4484c55b54eacba7c50e15f403e73 cc185377777045ed8cae6a6f8d16080f +#: d374bb7d88ff4ad88004319adbe16e45 d569963daf604dc0929b2cc260f6e425 +#: da55697a42454226914e63e848802002 db76e6d208474bfc84b77836563a197a +#: discord.client.Client.entitlements discord.client.Client.fetch_guilds +#: discord.client.Client.wait_for f706cf333c1a47f1a2976aa784a20ba9 +#: f95bc5d223ff4f8ead1fe5ba86b4fd3a ff5108bb0b184c7082382a51ee4ba248 of +msgid "Parameters" +msgstr "" + +#: 92a9bc95fa124cc2a6481b3544402054 a4d2aa79666649ca85e4e8832e7231b4 +#: discord.client.Client.event:25 of +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 "" + +#: 368652e3c875428c9e7ed908c22e2bbb +#: discord.bot.ApplicationCommandMixin.message_command:1 of +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 "" + +#: 230957d3b00d465ba1057bb8dde0375d +#: discord.bot.ApplicationCommandMixin.message_command:7 of +msgid "" +"A decorator that converts the provided method into a " +":class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "" + +#: 446d89e18a984c0899a05c5dae9c9d25 +#: discord.bot.ApplicationCommandMixin.message_command:9 of +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "" + +#: a72b3011a0c2494e95b73c91ef1bc5d8 +#: discord.bot.ApplicationCommandMixin.slash_command:1 of +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.ApplicationCommandMixin.slash_command:7 +#: fa51a00b24dc4eb8b85cb16e577cd0cb of +msgid "" +"A decorator that converts the provided method into a " +":class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "" + +#: 8cb4f64fc9b842e99f656c4edc427b1c +#: discord.bot.ApplicationCommandMixin.slash_command:9 of +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "" + +#: d09c64206574417eaa7824f3ba7b7070 +#: discord.bot.ApplicationCommandMixin.user_command:1 of +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 "" + +#: 2a5a5484ad2640a090cb56f82cfed16f +#: discord.bot.ApplicationCommandMixin.user_command:7 of +msgid "" +"A decorator that converts the provided method into a " +":class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "" + +#: 47980633a0e74e72af51935d418cd0e5 +#: discord.bot.ApplicationCommandMixin.user_command:9 of +msgid "Callable[..., :class:`UserCommand`]" +msgstr "" + +#: 9048c5a633c04c42af7a06b523435b08 b990261ea99f4f60a22b8c2f020d9aeb +#: discord.client.Client.listen:1 of +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 "" + +#: 28112742cc894834a4199c50514e92b9 5c8494eb3a3847a28ea86a13f622b0ca +#: discord.client.Client.listen:5 of +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "" + +#: 62d1c8d54d9e4c5f8dd4f61219b254f1 7d847ee8a4554a5da695f22ce3d5313c +#: discord.client.Client.listen:7 of +msgid "The function being listened to is not a coroutine." +msgstr "" + +#: 05065b5c67e1401295e5b37bd9a647ce 0b4f57fc36b548dc991b0b9d9359c3db +#: 176d61be271e4a91a68e8a2183190329 discord.client.Client.add_listener:11 +#: discord.client.Client.listen:8 eefde4a89ebe4183b4d58c68754a33a3 of +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "" + +#: 467abba7c2824825bf9ac0b065144559 discord.client.Client.listen:29 +#: f2f041a61e2c4d96ae51fe3d10cfbc89 of +msgid "Would print one and two in an unspecified order." +msgstr "" + +#: 1ad893ae6d404e859a724d1384c3e12a d3c9f02c02b647ffab3f8609f92bef67 +#: discord.client.Client.listen:35 of +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 "" + +#: 6fab55fc960c41ab9946f4589469eba9 discord.Bot.activity:1 +#: discord.Client.activity:1 e0fb8761f68647b98e67aaf36915f6df of +msgid "The activity being used upon logging in." +msgstr "" + +#: 07fab2799a934430abec2938a4bcf215 a411bbe5b00c45c7a62f7f721f3d5fdd +#: discord.Bot.activity:3 discord.Client.activity:3 of +msgid "Optional[:class:`.BaseActivity`]" +msgstr "" + +#: 1c8bb7dda2c643708eff19f7c8e760ba +#: discord.bot.ApplicationCommandMixin.add_application_command:1 of +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "" + +#: 96cc010f3bdb49578bdc4e547b0bc6cc +#: discord.bot.ApplicationCommandMixin.add_application_command:3 of +msgid "" +"This is usually not called, instead the :meth:`command` or other shortcut" +" decorators are used instead." +msgstr "" + +#: bafc9036dfbf4fae92be90bb73f90d70 +#: discord.bot.ApplicationCommandMixin.add_application_command:9 of +msgid "The command to add." +msgstr "" + +#: 020ff49101bb40e38da9f516406c9bb9 1916ebc54d4d4a9f979821f8449a61a4 +#: 396fefe4d32b423d959c3f887cbca407 410ed683533f4e69b309b898a2e56c7d +#: 4e36c2c3e0ae4be2ba520d3da81da7b8 88c3ad85bb944f3da68503ca6321c03e +#: aeaa8913e17b4c6094e865bc4eb2758f af1fa242a1ce4af9a40dba844bc2afb3 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: discord.bot.ApplicationCommandMixin.add_application_command:12 +#: discord.bot.ApplicationCommandMixin.invoke_application_command:10 +#: discord.bot.ApplicationCommandMixin.process_application_commands:26 +#: discord.bot.ApplicationCommandMixin.sync_commands:55 +#: discord.bot.BotBase.add_check:10 +#: discord.bot.BotBase.on_application_command_error:14 +#: discord.bot.BotBase.remove_check:12 discord.client.Client.add_listener:12 +#: discord.client.Client.add_view:20 +#: discord.client.Client.before_identify_hook:18 discord.client.Client.clear:8 +#: discord.client.Client.close:6 discord.client.Client.connect:18 +#: discord.client.Client.delete_invite:16 discord.client.Client.login:14 +#: discord.client.Client.on_error:15 discord.client.Client.remove_listener:10 +#: discord.client.Client.run:28 discord.client.Client.start:11 +#: discord.client.Client.wait_until_ready:6 discord.cog.CogMixin.add_cog:24 +#: discord.cog.CogMixin.reload_extension:26 +#: discord.cog.CogMixin.unload_extension:27 +#: discord.shard.AutoShardedClient.change_presence:28 +#: discord.shard.AutoShardedClient.close:6 +#: discord.shard.AutoShardedClient.connect:18 e593feebb1924681b8862ef74835f00c +#: f1b8003468d840da8d87720db56a2d49 f96cd92a798a4613a4949f67c608e4ba of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: 4676b197eaa64f3c8557578155cb0212 discord.bot.BotBase.add_check:1 of +msgid "" +"Adds a global check to the bot. This is the non-decorator interface to " +":meth:`.check` and :meth:`.check_once`." +msgstr "" + +#: 1c565c3a3b6e4e609c1d3fef171ba6aa discord.bot.BotBase.add_check:5 of +msgid "The function that was used as a global check." +msgstr "" + +#: 383356d72dc04d609b99e2a0d22194d5 discord.bot.BotBase.add_check:7 of +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "" + +#: 469c368d1b3e4018a39712ff4c210d82 discord.cog.CogMixin.add_cog:1 of +msgid "Adds a \"cog\" to the bot." +msgstr "" + +#: 01d697723a104b94a08803b7def2ef43 discord.cog.CogMixin.add_cog:3 of +msgid "A cog is a class that has its own event listeners and commands." +msgstr "" + +#: 058f78a5848240a4a363d75624ed841a discord.cog.CogMixin.add_cog:7 of +msgid "" +":exc:`.ClientException` is raised when a cog with the same name is " +"already loaded." +msgstr "" + +#: 694b2692377043a5b06d75034db6aa97 discord.cog.CogMixin.add_cog:11 of +msgid "The cog to register to the bot." +msgstr "" + +#: cdf4075cfc104eb0970e8eb045d4b797 discord.cog.CogMixin.add_cog:14 of +msgid "" +"If a previously loaded cog with the same name should be ejected instead " +"of raising an error. .. versionadded:: 2.0" +msgstr "" + +#: a8747915f97546c7a620d5cf9b8de8b4 discord.cog.CogMixin.add_cog:14 of +msgid "" +"If a previously loaded cog with the same name should be ejected instead " +"of raising an error." +msgstr "" + +#: 4cbbee08205341f39663cc6867ed645b discord.cog.CogMixin.add_cog:20 of +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "" + +#: c646093fb86146849becfbcaad49ea63 discord.cog.CogMixin.add_cog:21 of +msgid "An error happened during loading." +msgstr "" + +#: 841c388e38ef4bf5bce9805ddc53a54b discord.cog.CogMixin.add_cog:22 of +msgid "A cog with the same name is already loaded." +msgstr "" + +#: 4b214f203e12429ba249629d5b435fb9 88e689f9afc241369d6babb194fc1a03 +#: discord.client.Client.add_listener:1 of +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "" + +#: 9bdb658ed327483d848cf491f8b3bbb8 a0730900749a47e2bdda31ad8ba3f0dc +#: discord.client.Client.add_listener:4 of +msgid "The function to call." +msgstr "" + +#: a4fcf86c7d864ec6867029102373ac9d c7ea41591aab47898209118e9d6aada0 +#: discord.client.Client.add_listener:7 of +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "" + +#: a2f5ee9251644bfd97d947e158ad4764 ba943995cd6f4f42838a634814e22ca1 +#: discord.client.Client.add_listener:10 of +msgid "The ``func`` parameter is not a coroutine function." +msgstr "" + +#: 5bfee65c9551403997926307bfac288b 8fdde2412a434bc889eb2470635efba6 +#: discord.client.Client.add_view:1 of +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "" + +#: 184b080c1ff64b3c92c2733aa9df8c75 a51b4f92d6494f518fa69f07e378bc51 +#: discord.client.Client.add_view:3 of +msgid "" +"This method should be used for when a view is comprised of components " +"that last longer than the lifecycle of the program." +msgstr "" + +#: 00b0dfac3aad46efa3411ccc01fbdf2f a403d4bd52ef4a1a8ab3a5f9c7f787f0 +#: discord.client.Client.add_view:9 of +msgid "The view to register for dispatching." +msgstr "" + +#: 0516f38c619c48ae8fb7173ca478d0ef 46830f4ca2de4aa788ccf77849200801 +#: discord.client.Client.add_view:12 of +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 "" + +#: 4c66a1b617434ebea41a052d24391a33 ab74c62568f741c08aa18e7010c55481 +#: discord.client.Client.add_view:17 of +msgid "A view was not passed." +msgstr "" + +#: 375d822827c74905bc6957583aa1a261 648db641fb244b8a97a98f317abbd5e4 +#: discord.client.Client.add_view:18 of +msgid "" +"The view is not persistent. A persistent view has no timeout and all " +"their components have an explicitly provided ``custom_id``." +msgstr "" + +#: 65f44d7ffe264126a3533d77b1464e65 discord.bot.BotBase.after_invoke:1 of +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 "" + +#: 4781d1ab818644d08703f1bed8ce105c discord.bot.BotBase.after_invoke:9 of +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 "" + +#: 93110892f84044658ef3957825682406 discord.bot.BotBase.after_invoke:16 of +msgid "The coroutine to register as the post-invoke hook." +msgstr "" + +#: 2b6755c1d276469ab419792ac6020ccf d3a62f27dcc644f29fae06b98d24599f +#: discord.Bot.allowed_mentions:1 discord.Client.allowed_mentions:1 of +msgid "The allowed mention configuration." +msgstr "" + +#: 3a6bb0789c0c46faa50beb35215a0bb9 +#: discord.bot.ApplicationCommandMixin.application_command:1 of +msgid "" +"A shortcut decorator that invokes :func:`command` and adds it to the " +"internal command list via :meth:`~.Bot.add_application_command`." +msgstr "" + +#: 8b07e863b4da42b087185fe66a4e4782 dfae6e3bc62e49a09c2ee43781c23646 +#: discord.Bot.application_flags:1 discord.Client.application_flags:1 of +msgid "The client's application flags." +msgstr "" + +#: 7b81e6817aa3453dadfa039d5908f380 ae7d062cf9c948289a20102ae95031b7 +#: discord.Bot.application_id:1 discord.Client.application_id:1 +#: discord.client.Client:27 of +msgid "The client's application ID." +msgstr "" + +#: 21ef281dd8344c15a68e36bf70c236bd 7d1d35144ab143c89844f2eeda5ca458 +#: discord.Bot.application_id:3 discord.Client.application_id:3 of +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 "" + +#: 3796d6049f614d1a81a2102b543cdc5f 409b33c5bd944e0f83d05534e795141a +#: 41081b0ab799472fa6aa72c01266cc77 5b0142abd63a4172ba647e87dbb900bb +#: 6bc3c19c9696465ca3f9cb5f44d223ad 75a3908583e246ddaee8b2ab99d5b21e +#: 7c618e26033b4d08a8e0f007cb393a95 8686465f1a3d4950be5a71debbfd3d52 +#: 8952c3a11462457c9c94503c0a1e46ce 9023f922e3924c4dae0ada2a128df325 +#: 9e27094ebf5a426bb1e75e62e5daa1c4 a0ccfe1ca31e44379b769024cd71c09d +#: a7ce19c3920f40ab91a7d270dfff2d0e b7be03d2394446469f0739f4abb91781 +#: beba0dc76f904c399cbc6333f2245f8a bfcc3ff6e8824dab8f98475203a002f1 +#: cd4b7ea72a3442768f7f021733e96924 cf33128256c04cc8962a75390c1ef183 +#: d132c2ca5f21423d8bb2a18353e56149 d319b5d28ca048509d872555d49cb491 +#: d393bc2fe41b44338c0bcde410e9c1eb d9eb2e4a9e234e37b248d23a246f8522 +#: discord.bot.ApplicationCommandMixin.get_application_context:1 +#: discord.bot.ApplicationCommandMixin.get_autocomplete_context:1 +#: discord.bot.ApplicationCommandMixin.get_desynced_commands:1 +#: discord.bot.ApplicationCommandMixin.invoke_application_command:1 +#: discord.bot.ApplicationCommandMixin.process_application_commands:1 +#: discord.bot.ApplicationCommandMixin.register_command:1 +#: discord.bot.ApplicationCommandMixin.register_commands:1 +#: discord.bot.ApplicationCommandMixin.sync_commands:1 +#: discord.bot.BotBase.is_owner:1 +#: discord.bot.BotBase.on_application_command_error:1 +#: discord.client.Client.application_info:1 +#: discord.client.Client.before_identify_hook:1 +#: discord.client.Client.change_presence:1 discord.client.Client.close:1 +#: discord.client.Client.connect:1 discord.client.Client.create_dm:1 +#: discord.client.Client.create_guild:1 discord.client.Client.delete_invite:1 +#: discord.client.Client.fetch_channel:1 discord.client.Client.fetch_guild:1 +#: discord.client.Client.fetch_invite:1 +#: discord.client.Client.fetch_premium_sticker_packs:1 +#: discord.client.Client.fetch_role_connection_metadata_records:1 +#: discord.client.Client.fetch_skus:1 +#: discord.client.Client.fetch_stage_instance:1 +#: discord.client.Client.fetch_sticker:1 discord.client.Client.fetch_template:1 +#: discord.client.Client.fetch_user:1 discord.client.Client.fetch_webhook:1 +#: discord.client.Client.fetch_widget:1 +#: discord.client.Client.get_or_fetch_user:1 discord.client.Client.login:1 +#: discord.client.Client.on_error:1 discord.client.Client.start:1 +#: discord.client.Client.update_role_connection_metadata_records:1 +#: discord.client.Client.wait_for:1 discord.client.Client.wait_until_ready:1 +#: discord.shard.AutoShardedClient.change_presence:1 +#: discord.shard.AutoShardedClient.close:1 +#: discord.shard.AutoShardedClient.connect:1 e907813498d04ca58b7d80979f4f9b91 +#: of +msgid "|coro|" +msgstr "" + +#: 47b37eeb523444a7aaecac9c8064ced9 5983dcd0486b4523ae227931a10b1302 +#: discord.client.Client.application_info:3 of +msgid "Retrieves the bot's application information." +msgstr "" + +#: 4bb7ac9a133a472bb6a3b9126cebda75 507ab57eb4464568979b8f115e241575 +#: discord.client.Client.application_info:5 of +msgid "The bot's application information." +msgstr "" + +#: 0101829855214ceca48fda193d62fa4a 0abb1cb53f1d41c38d3ba45f1d0d3a03 +#: discord.client.Client.application_info:6 of +msgid ":class:`.AppInfo`" +msgstr "" + +#: 3aa370c5983e445f88dd18e9eadbd873 60dcff8b7cff446797963d62c8f9728b +#: discord.client.Client.application_info:8 of +msgid "Retrieving the information failed somehow." +msgstr "" + +#: 3e6d7812bab8419d863e5278f50532a6 70cb703484a24211b5f015b6c98489ed +#: discord.client.Client.before_identify_hook:3 of +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 "" + +#: 345f1f0857334a8486719a08ce7b4812 +#: discord.client.Client.before_identify_hook:7 +#: e8ac04bf158e41c38b39991bab6fb822 of +msgid "The default implementation sleeps for 5 seconds." +msgstr "" + +#: 0b6319a9e67d414e87249e03d6d63397 8445119bcdba4f689bdc7ce8bc1d16ef +#: discord.client.Client.before_identify_hook:12 of +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "" + +#: 2301c3d3f9404ea495a8d7650bf54425 b5e6a835da3141a995d994af7efdd383 +#: discord.client.Client.before_identify_hook:15 of +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "" + +#: b720eb9a67e44dce8da52c580e698881 discord.bot.BotBase.before_invoke:1 of +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 "" + +#: 6c74a036308e4868b73dcbcf6c9c4f50 discord.bot.BotBase.before_invoke:9 of +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.BotBase.before_invoke:15 fad163555b174a4d8feb1bffef917e2a of +msgid "The coroutine to register as the pre-invoke hook." +msgstr "" + +#: 26517c7b15d54b3f8695eb62fbc85109 cba36eb2890e435fa097ddab61040300 +#: discord.Bot.cached_messages:1 discord.Client.cached_messages:1 of +msgid "Read-only list of messages the connected client has cached." +msgstr "" + +#: 6114d56696924f85a50ec7eab18cea6d d2e7ed1bee18473c8ed6a983e8028076 +#: discord.client.Client.change_presence:3 +#: discord.shard.AutoShardedClient.change_presence:3 of +msgid "Changes the client's presence." +msgstr "" + +#: 6c8a13b6a2374d07bde689acfab480b4 a5872f2048ac46379625289291357eca +#: discord.client.Client.change_presence:6 +#: discord.shard.AutoShardedClient.change_presence:14 of +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "" + +#: 3abff02da97142be826bc2c4e6ca6170 6b8aeda786a9403b9d499b77b41b85d7 +#: discord.client.Client.change_presence:9 of +msgid "" +"Indicates what status to change to. If ``None``, then " +":attr:`.Status.online` is used." +msgstr "" + +#: 135d8da50bfe441ba19fe730e3461b60 84986619916e40e88957ed778fedf574 +#: discord.client.Client.change_presence:13 of +msgid "If the ``activity`` parameter is not the proper type." +msgstr "" + +#: 39e909d604eb4a8c8eae94680b0f85d5 54b695951125498384300fe6b62bdf48 +#: discord.client.Client.change_presence:22 +#: discord.shard.AutoShardedClient.change_presence:10 of +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "" + +#: discord.bot.BotBase.check:1 e46f439b7bf0448db055239476cd073e of +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 "" + +#: 142d9d49796c4a5db2c6a4d717820700 d1fddb994e6d4505b2c2a6138a60f1db +#: discord.bot.BotBase.check:7 discord.bot.BotBase.check_once:13 of +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 "" + +#: 2a09dda9c7114ea5a974ce9692e8315e discord.bot.BotBase.check_once:1 of +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 "" + +#: 0832766348084620af8c98ac13ee77ed discord.bot.BotBase.check_once:8 of +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 "" + +#: 46113f3b59ba48888dae66daa428f6a2 664b2b67ec6147ed94b53e0140acb9ef +#: discord.client.Client.clear:1 of +msgid "Clears the internal state of the bot." +msgstr "" + +#: a37bc673a1b54d709b8017883bfa408f b2e236d83dc34d8bb26a73a49b01369e +#: discord.client.Client.clear:3 of +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 "" + +#: 67affa321575466d843d881e79ff9660 78ac357893eb41058d331fbd7e21f8bf +#: discord.client.Client.close:3 discord.shard.AutoShardedClient.close:3 of +msgid "Closes the connection to Discord." +msgstr "" + +#: 66c2406b4f2349e896b65819340190d4 discord.Bot.cogs:1 of +msgid "A read-only mapping of cog name to cog." +msgstr "" + +#: 2e2b4b77bc7549c0a05965d9694ef840 9b1145547fdc4c8b85b1fdffccd05849 +#: discord.client.Client.connect:3 discord.shard.AutoShardedClient.connect:3 of +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 "" + +#: 01fe01284ae748c8b1eddfddd1d73e21 6baf64d2338545519040319cd1847544 +#: discord.client.Client.connect:9 discord.shard.AutoShardedClient.connect:9 of +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 "" + +#: 4f24dc57384346d0856e8fdac0a91c7a discord.client.Client.connect:15 +#: discord.shard.AutoShardedClient.connect:15 e065be27c22342a28fae8bfee39dc5f6 +#: of +msgid "" +"The gateway to connect to Discord is not found. Usually if this is " +"thrown then there is a Discord API outage." +msgstr "" + +#: 1656a53ca10c491688df2509c3c5ff71 c36b8e522ef8432ab9d32865a6f89cda +#: discord.client.Client.connect:16 discord.shard.AutoShardedClient.connect:16 +#: of +msgid "The WebSocket connection has been terminated." +msgstr "" + +#: 4887cc26c4f94834bd314c9ad7887166 discord.client.Client.create_dm:3 +#: eaa633504af044fbbae0c5fff1734c12 of +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "" + +#: 0be38552dc6d4508b568215162fbc247 11ed5a01e6a345a0acea5e61f04b1b7b +#: discord.client.Client.create_dm:5 of +msgid "" +"This should be rarely called, as this is done transparently for most " +"people." +msgstr "" + +#: 3b1a1bf113d64c288b8703c0fdc99381 5a3111fd82194cd2885d84958fca1132 +#: discord.client.Client.create_dm:11 of +msgid "The user to create a DM with." +msgstr "" + +#: 3b137326256c433f88b79dd49a47e72f d6fa64d947654bf7becf7fad301f0fb9 +#: discord.client.Client.create_dm:14 of +msgid "The channel that was created." +msgstr "" + +#: 4ee54b2c76694caabfe0fde5d1cd1696 78267be3de4d4d789cc656e991f10e17 +#: discord.client.Client.create_dm:15 of +msgid ":class:`.DMChannel`" +msgstr "" + +#: a20efe6647144d72911f1a64c5ddacdc +#: discord.bot.ApplicationCommandMixin.create_group:1 of +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 "" + +#: 5c2158acc4a543b1b66b07320a0f767f +#: discord.bot.ApplicationCommandMixin.create_group:7 of +msgid "The name of the group to create." +msgstr "" + +#: 69af3206fe804f5ea844fa3e65c9cb7c a58e962af7324b1b9e2e450d359efb44 +#: discord.bot.ApplicationCommandMixin.create_group:10 +#: discord.bot.ApplicationCommandMixin.group:10 of +msgid "The description of the group to create." +msgstr "" + +#: 017330dc607446c2a51ad9824d9b6642 1013a998dd0644bf8b8ed20ec4161d3f +#: discord.bot.ApplicationCommandMixin.create_group:13 +#: discord.bot.ApplicationCommandMixin.group:13 of +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 "" + +#: 84480e59ac654759925cb9bf3400c84a +#: discord.bot.ApplicationCommandMixin.create_group:17 of +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "" + +#: b8bf3f05b8b94e4fae6fc0fad6b15b09 +#: discord.bot.ApplicationCommandMixin.create_group:19 +#: discord.bot.ApplicationCommandMixin.group:17 +#: fffbb1f76152417080d7db49ca8e4c85 of +msgid "The slash command group that was created." +msgstr "" + +#: 3b97fc8c08714dc0bf7cbe2a88d0fcab 7f4f1601e15941c49368490691cf3ea6 +#: discord.client.Client.create_guild:3 of +msgid "Creates a :class:`.Guild`." +msgstr "" + +#: 1ac9ef86b0a64b3ab8e6552798c01c97 8524eb9f26414048b1952e19fc192260 +#: discord.client.Client.create_guild:5 of +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "" + +#: 4b2cb528eb144e2cba9fd35944489929 bfd43e9bd0f34e918327fc339e37937b +#: discord.client.Client.create_guild:8 of +msgid "The name of the guild." +msgstr "" + +#: 62b9a65381f34c1bac438c5fd2c7ba6f a9d50329ac804b2697f42d86f92f69d1 +#: discord.client.Client.create_guild:11 of +msgid "" +"The :term:`py:bytes-like object` representing the icon. See " +":meth:`.ClientUser.edit` for more details on what is expected." +msgstr "" + +#: 0722a839383b4001aa95fb0d76912f04 ae0f886a88eb4404898545bc4dda335e +#: discord.client.Client.create_guild:15 of +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "" + +#: 352fe566629842ad9d6ff7432397522e ac7b94c2d4aa41c4804843187d78a126 +#: discord.client.Client.create_guild:15 of +msgid "The code for a template to create the guild with." +msgstr "" + +#: 13d1e2ac49db416db0205889ed95c259 discord.client.Client.create_guild:20 +#: ef6b2cc2844948a6afac53df0c6c4c71 of +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "" + +#: a4b211d860344b6bab78f4760535fb4d ac312b1700ba40e3ab5989b9c39cdc00 +#: d09eadf06e9343dd83a47871e2abc31f discord.client.Client.create_guild:22 +#: discord.client.Client.fetch_guild:26 of +msgid ":class:`.Guild`" +msgstr "" + +#: 6fa7e508b0cf4b958775cf91dac4ba35 7b2526fdc6744cc4856f38309c4dbc4a +#: discord.client.Client.create_guild:24 of +msgid "Guild creation failed." +msgstr "" + +#: 2d01c286352d4eeba440b3662378cc26 6a0a9f3ed5d14cd1b00a6fef49d5debe +#: discord.client.Client.create_guild:25 of +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "" + +#: 10f6f332803e43be874d5efeaf273bd7 8689a2f7442c4748b0aeb3620d9cf09c +#: discord.client.Client.delete_invite:3 of +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "" + +#: 2ecfe47925ea4c04b95937a66956301a 7e2f44aeac5741c9a5a08f2da76920ba +#: discord.client.Client.delete_invite:5 of +msgid "" +"You must have the :attr:`~.Permissions.manage_channels` permission in the" +" associated guild to do this." +msgstr "" + +#: 94aa506a7985410497bded0263cb03f9 98207a40e1a94e19afe49b181675d48a +#: discord.client.Client.delete_invite:9 of +msgid "The invite to revoke." +msgstr "" + +#: 5e90c550889a4b5d9c88e6d7d7dd19bf d5b48d7d2a60458e8a2839ed8faa7b5d +#: discord.client.Client.delete_invite:12 of +msgid "You do not have permissions to revoke invites." +msgstr "" + +#: 34eee7d0a7914a7a9232644c1582c652 391ab3e72dfe4609ba4322872c6ccae2 +#: discord.client.Client.delete_invite:13 of +msgid "The invite is invalid or expired." +msgstr "" + +#: 770d782d0e98456da7aa346f121d5ae6 discord.client.Client.delete_invite:14 +#: e12571e8018b4226a23231a3d292f435 of +msgid "Revoking the invite failed." +msgstr "" + +#: 00169447c6a94a4b82f049cb27a56946 da199159cd414e03aa393a6e7fceb015 +#: discord.Bot.emojis:1 discord.Client.emojis:1 of +msgid "The emojis that the connected client has." +msgstr "" + +#: 78892bf021d04c6fba29337b575b8b71 7a582bcb64fe4e77b22294e3d86b3458 +#: discord.client.Client.entitlements:1 of +msgid "" +"Returns an :class:`.AsyncIterator` that enables fetching the " +"application's entitlements." +msgstr "" + +#: 523b5670abb24b5e88f9d7f04d5a0a9f 823cffd519a2414baf1d8eb638b8a867 +#: discord.client.Client.entitlements:6 of +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "" + +#: 47234f44f4bd4ceeb41bdc775a227c15 550d4974d8b243fcaf206b620c8a2a2f +#: discord.client.Client.entitlements:9 of +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "" + +#: 0326acb773754d438a4581ed32136b6d 66467d911b6945b5b419601784c046ee +#: discord.client.Client.entitlements:12 of +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 "" + +#: 830e0935ff744a0ea9a2a540a4a27ed3 a3655982943348cc9975a45469537b6c +#: discord.client.Client.entitlements:17 of +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 "" + +#: 98a71d0d914f4fe8b2324c24a917aa28 discord.client.Client.entitlements:22 +#: f84cf2f0b1844efc9fd51c33a704cf0e of +msgid "" +"The number of entitlements to retrieve. If ``None``, retrieves every " +"entitlement, which may be slow. Defaults to ``100``." +msgstr "" + +#: 2effddfbbd1e45178440ec2b43ef9195 c9ef4370de624686b6d2148b7bb52dbc +#: discord.client.Client.entitlements:27 of +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "" + +#: bb876989f633431e86644669cd8d5fa9 discord.client.Client.entitlements:30 +#: e475177db885429080f0ae2b78b72aea of +msgid "" +"Whether to limit the fetched entitlements to those that have not ended. " +"Defaults to ``False``." +msgstr "" + +#: bed18856144c4cbe822ac5211c71b28a c5985cf01b92479d9b571d3d9dc523a8 +#: discord.bot.ApplicationCommandMixin.walk_application_commands +#: discord.client.Client.entitlements discord.client.Client.fetch_guilds +#: discord.client.Client.get_all_channels discord.client.Client.get_all_members +#: ee8fbed1e9c64e87a77e9b4d5b4de348 of +msgid "Yields" +msgstr "" + +#: bba8b3a4dfed4c12acdea2989e9b7777 discord.client.Client.entitlements:34 +#: fd477cb2f68542529b5f28246bd2cddc of +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr "" + +#: 2d3a2a0f88ba4346a292f010fcfac590 54a21db6d48b45ffa3147e2a18bcda3e +#: discord.client.Client.entitlements:36 of +msgid "Retrieving the entitlements failed." +msgstr "" + +#: 862c6912d2294e34a06faddbf7ff0269 9ab70875d2f847f99751826f9b4fd448 +#: discord.client.Client.entitlements:37 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr "" + +#: 11648d97fb784d6b97497cf45bd7180f 7c8cb90e915a42688bb8e0ac08a56b44 +#: discord.client.Client.entitlements:40 discord.client.Client.fetch_guilds:35 +#: discord.client.Client.wait_for:42 f784f833af4f43caa6cf59467766ead4 of +msgid "Examples" +msgstr "" + +#: 4fcb97767a904beb9ef44f190efbd53a 6a66fb7c4171403a94a25a3808826652 +#: df4744ea792246c2a87e26f7a1105f81 discord.client.Client.entitlements:41 +#: discord.client.Client.fetch_guilds:36 of +msgid "Usage ::" +msgstr "" + +#: 0eae2453da7c4316a4e3c6d00c680cb1 3a17f85d5c5540cf8b980d8e82b60252 +#: 5b7cc08b85db4b84ae5e9195194d36ba discord.client.Client.entitlements:46 +#: discord.client.Client.fetch_guilds:41 of +msgid "Flattening into a list ::" +msgstr "" + +#: 48fa76c559f4449a95854d789559492f af1413448fd64215ad8a510b736adb91 +#: ce984edfb81a40f88475e5d768a64ec9 discord.client.Client.entitlements:50 +#: discord.client.Client.fetch_guilds:46 of +msgid "All parameters are optional." +msgstr "" + +#: 73e5dfcf598f4b738ff4cb986328a722 discord.Bot.extensions:1 of +msgid "A read-only mapping of extension name to extension." +msgstr "" + +#: aafc1168e05f45dfacd0f151bfd0bd27 c6993c8ace9a402dbd8a19399cff355a +#: discord.client.Client.fetch_application:1 of +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "" + +#: cdfbd078a7e34b39bc30d2f5d3db7fef d7d033a39dcd4afebf9d0f3925cb0e6c +#: discord.client.Client.fetch_application:5 of +msgid "The application ID to retrieve information from." +msgstr "" + +#: 330746db683542c0bf43295ce8a60ecb 3be37066300944489855782f111f4345 +#: discord.client.Client.fetch_application:8 of +msgid "The application information." +msgstr "" + +#: 7529d87e05374082bd884b1d1f4ce463 80da38d28f7a4058a9a443c380f15e07 +#: discord.client.Client.fetch_application:9 of +msgid ":class:`.PartialAppInfo`" +msgstr "" + +#: 496dda7098054bb98c52eea3c43b204e discord.client.Client.fetch_application:11 +#: fdfab0a8ac644e918e2b868f0b80ea8a of +msgid "An application with this ID does not exist." +msgstr "" + +#: 02d838d2b1364397a167d2f5c970bf0a 6f5bdf2b2be6487f8cd5cd5d7201e238 +#: discord.client.Client.fetch_application:12 of +msgid "Retrieving the application failed." +msgstr "" + +#: 6a10ca6084f846de8fe3fc9c5f78d62b 709c0c6eedd44918b90f6dffa9b47f23 +#: discord.client.Client.fetch_channel:3 of +msgid "" +"Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or " +":class:`.Thread` with the specified ID." +msgstr "" + +#: 16cdcc9d072042e48f37db5e1ed47d87 discord.client.Client.fetch_channel:7 +#: ffeb7dc3d9fe4482ab577068571db8bf of +msgid "" +"This method is an API call. For general usage, consider " +":meth:`get_channel` instead." +msgstr "" + +#: 937ee35401e047a9ab66ca84e1baf254 a9141c92c30443dab13cd3bfdfb3221b +#: discord.client.Client.fetch_channel:11 of +msgid "The channel from the ID." +msgstr "" + +#: discord.client.Client.fetch_channel:12 e0c5c0a3312d4c5bbb8ef19d1e2f15e1 +#: fa37228bc5f741968a08a26bfccb5ca5 of +msgid "" +"Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, " +":class:`.Thread`]" +msgstr "" + +#: 220028234d2c4c72a8866cef69f6cedd a6c6384d2bd8410393e2acd36f1996a9 +#: discord.client.Client.fetch_channel:14 of +msgid "An unknown channel type was received from Discord." +msgstr "" + +#: 7b7c1cd63b90442e9e3e142aff758d8f b2dc27e2311a468fabfd697becfb68c3 +#: discord.client.Client.fetch_channel:15 of +msgid "Retrieving the channel failed." +msgstr "" + +#: 97eac6521e9a4e9dbc6cc6ecbfb97238 a254f2aa7f5441fca4eb306f79aa1b44 +#: discord.client.Client.fetch_channel:16 of +msgid "Invalid Channel ID." +msgstr "" + +#: 9d2a8c5a46854947a7a140aff9f4179f d4920f83bc284b55b50a4c8f62cd4180 +#: discord.client.Client.fetch_channel:17 of +msgid "You do not have permission to fetch this channel." +msgstr "" + +#: 5f3db26c62924650aecbb995c0df0be4 8e9f4f77bac844f5a9988587c611cb9d +#: discord.client.Client.fetch_guild:3 of +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "" + +#: 38f598930b534b0380391fdb0e89e121 discord.client.Client.fetch_guild:7 +#: fc48643cd30442b68921bd961d8c4ee2 of +msgid "" +"Using this, you will **not** receive :attr:`.Guild.channels`, " +":attr:`.Guild.members`, :attr:`.Member.activity` and " +":attr:`.Member.voice` per :class:`.Member`." +msgstr "" + +#: 232c4e056e1641d2b6f4f6aec6a485ec 84388c342305493e8a6f64446e49d160 +#: discord.client.Client.fetch_guild:12 of +msgid "" +"This method is an API call. For general usage, consider :meth:`get_guild`" +" instead." +msgstr "" + +#: 0edc6723fbc942dfba36ab15f4771dc3 685c61028d2d4cf580d2044aaee592a8 +#: discord.client.Client.fetch_guild:15 of +msgid "The guild's ID to fetch from." +msgstr "" + +#: 3c5f0d5b44a34c12b46639235faa7ad0 db45bb2c4d0a42d584ca6b8133983e77 +#: discord.client.Client.fetch_guild:18 of +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 "" + +#: 05dbc5f91edd4612b6383868c75a7ac2 a4245b805fa0424588c0d476c4087214 +#: discord.client.Client.fetch_guild:18 of +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 "" + +#: 13441326e09f4c41a4b70ace65d3685a 8627931b3a534dbe8c62a4be6ea82790 +#: discord.client.Client.fetch_guild:25 of +msgid "The guild from the ID." +msgstr "" + +#: 18b98d33672748fab571d1592086006c 7d2046b6b57942f7a30996be5edff639 +#: discord.client.Client.fetch_guild:28 of +msgid "You do not have access to the guild." +msgstr "" + +#: ab6c8c5386cc4638a941c7e10d2114f6 b5721e89196f4a1eb5342451dbaf3acb +#: discord.client.Client.fetch_guild:29 of +msgid "Getting the guild failed." +msgstr "" + +#: 1747a97606b54d0aa85ee82fec200e5d 680b55c43a404490948ccf8c75056fe5 +#: discord.client.Client.fetch_guilds:1 of +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "" + +#: 479b75a91db14e1fbeb7fef18c5a04d7 6b41ff587fa34dd48f92f8b2adec9ab3 +#: discord.client.Client.fetch_guilds:5 of +msgid "" +"Using this, you will only receive :attr:`.Guild.owner`, " +":attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per " +":class:`.Guild`." +msgstr "" + +#: 7b2ca8d29ccd472dbfe3bb09ee67cd31 deb91710d7c24bc292aab5097f23b501 +#: discord.client.Client.fetch_guilds:10 of +msgid "" +"This method is an API call. For general usage, consider :attr:`guilds` " +"instead." +msgstr "" + +#: 105f6a38a2854a7089d696c2c01dc1e1 656fd5be7efa4693858ddc0bba11b5c9 +#: discord.client.Client.fetch_guilds:13 of +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 "" + +#: 2e80267839e44327b92ec76be0aaf427 88e83fb93ec742deb161d4d5e6ae864b +#: discord.client.Client.fetch_guilds:19 of +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 "" + +#: dde1d08cc27a42afa6456baeab1c4824 discord.client.Client.fetch_guilds:24 +#: efa2f8d80de046819cc9326f5bbe892a of +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 "" + +#: d8cf0096c4ea46e0ae7da1145a0b557d discord.client.Client.fetch_guilds:29 +#: fc6f82145b034ece99cbf37f683ceff5 of +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr "" + +#: 2f4a72e1186a46d9aa54d22b75e640a3 5803c971ecee4e8385d297fa6b5f134c +#: discord.client.Client.fetch_guilds:31 of +msgid "Getting the guilds failed." +msgstr "" + +#: discord.client.Client.fetch_guilds:32 f43bf45acca54549a46eb8b112d02268 +#: f8744a77885f4d189fc280ec89e87d2c of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr "" + +#: 8a4dcd58e0b2419aa0e9ecf1b6c7363e acc5f4a6a0f647dc9f8b5eaf7c539fdb +#: discord.client.Client.fetch_invite:3 of +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "" + +#: 163cd0bf1a67459a89e9cdb0c6c757aa 2a76df09c33847cf85e73900aa59ec77 +#: discord.client.Client.fetch_invite:7 of +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 "" + +#: 116f686fb5054484a467357d6d0a399a 2c47a87fed924f02ba4dbce127a2d89d +#: discord.client.Client.fetch_invite:12 of +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "" + +#: 21da813826c74acbb3eedef11175e8f1 cc56d716f1f6424aa05b7d2400368df0 +#: discord.client.Client.fetch_invite:15 of +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 "" + +#: 3df86f4db6f04bec94f6b943117534c9 6f6b0591a01a439e9c26b6ea317b4e85 +#: discord.client.Client.fetch_invite:20 of +msgid "" +"Whether to include the expiration date of the invite. This fills the " +":attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "" + +#: 036021a78eea4be980334bcad40f1daa 9a1b3e4805b1414ba7f36b8206cc700b +#: discord.client.Client.fetch_invite:20 of +msgid "" +"Whether to include the expiration date of the invite. This fills the " +":attr:`.Invite.expires_at` field." +msgstr "" + +#: 2cb15eb196524b68889c66edffb272a2 aa755c7bbfc644c8a99a4e7e80d1fc25 +#: discord.client.Client.fetch_invite:26 of +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 "" + +#: 18b09b5aff7a4f39b50d78b9acb653fc 4ffbf97d7865451fa048a6f78af2662b +#: discord.client.Client.fetch_invite:26 of +msgid "The ID of the scheduled event to be associated with the event." +msgstr "" + +#: 367a7984086b493ba86e0b98c9e489ec 5347b95856644909bb7dc80c9155b154 +#: discord.client.Client.fetch_invite:28 of +msgid "" +"See :meth:`Invite.set_scheduled_event` for more info on event invite " +"linking." +msgstr "" + +#: 1c9f38c89b6f4c17aede743f8c65d8aa 9ee1f4aced284d4282048fb76f04f940 +#: discord.client.Client.fetch_invite:34 of +msgid "The invite from the URL/ID." +msgstr "" + +#: 05420965d65349869d9a3fcceff2515e 33169fa919a54f519ff847e567556f48 +#: discord.client.Client.fetch_invite:35 of +msgid ":class:`.Invite`" +msgstr "" + +#: a22701bb7d2f44fca24ebafd0027a019 discord.client.Client.fetch_invite:37 +#: fe1ada1d25bf4ad7bc00b849f6fa88a9 of +msgid "The invite has expired or is invalid." +msgstr "" + +#: 7acc4ef8881841d48a95e7b714968280 a5f9c6c8318341df9f815544e2b2fc05 +#: discord.client.Client.fetch_invite:38 of +msgid "Getting the invite failed." +msgstr "" + +#: 1c2eae88e474467a8ef8fbe7cf172242 b369cce5013e4d698043f69c944f8a66 +#: discord.client.Client.fetch_premium_sticker_packs:3 of +msgid "Retrieves all available premium sticker packs." +msgstr "" + +#: 4f91c0955a5547a393f8bca43c79326f c3ebd2de351c47589c35c91351a05cc8 +#: discord.client.Client.fetch_premium_sticker_packs:7 of +msgid "All available premium sticker packs." +msgstr "" + +#: 81d61492868a497f850b5b880d44abe8 +#: discord.client.Client.fetch_premium_sticker_packs:8 +#: f2c67dc53c534b0aa88697406f41a753 of +msgid "List[:class:`.StickerPack`]" +msgstr "" + +#: baf041eef92145928978a65d22c41d49 +#: discord.client.Client.fetch_premium_sticker_packs:10 +#: ebdff23caff3417faec73021b95e7112 of +msgid "Retrieving the sticker packs failed." +msgstr "" + +#: 3f0dc3bdc3194ca39b848651a262fd94 9424f8645549490aad4b3df67690028b +#: discord.client.Client.fetch_role_connection_metadata_records:3 of +msgid "Fetches the bot's role connection metadata records." +msgstr "" + +#: 99df7df48d45437faa412b04790f7587 a739439997df43e7b7db808923acb79d +#: discord.client.Client.fetch_role_connection_metadata_records:7 of +msgid "The bot's role connection metadata records." +msgstr "" + +#: 888fcfea7fa34ba888f8c0857b965c37 +#: discord.client.Client.fetch_role_connection_metadata_records:8 +#: discord.client.Client.update_role_connection_metadata_records:12 +#: ee166a08201f4183bfad8ad88c5fb320 of +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "" + +#: 1a2b6478e8804ba4afc8c56c3c05edb8 68218a4bf26b4b38b1c806c7aa61f661 +#: discord.client.Client.fetch_skus:3 of +msgid "Fetches the bot's SKUs." +msgstr "" + +#: 06cf0595cc3f498c8e8f41b354e358d8 discord.client.Client.fetch_skus:7 +#: fb544d3f176e4037a777cec7dac26453 of +msgid "The bot's SKUs." +msgstr "" + +#: 043327feba3d4c899a4b9e27f3ae1372 b637e44776da4185981f78109a57a53a +#: discord.client.Client.fetch_skus:8 of +msgid "List[:class:`.SKU`]" +msgstr "" + +#: 7a3e45f29a644f32b777d11a18579ede 88b901ccfaa14a67aadcb8840bdee24c +#: discord.client.Client.fetch_stage_instance:3 of +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "" + +#: 4e6dc6fe1ef94a269f031a4a1e4b99aa 69ca285e4a1b4e8797cec962961cc055 +#: discord.client.Client.fetch_stage_instance:8 of +msgid "The stage channel ID." +msgstr "" + +#: 7c7c97b654ed4a66a971dda8a270dcbf a15055de9ad647d4b7ef7e393ca47f72 +#: discord.client.Client.fetch_stage_instance:11 of +msgid "The stage instance from the stage channel ID." +msgstr "" + +#: 87fb14043d8046d19381949784b89592 8e0d484c75f44292bf2e50c355f77b5b +#: discord.client.Client.fetch_stage_instance:12 of +msgid ":class:`.StageInstance`" +msgstr "" + +#: 3aee2cbf01044b3f8cc7af5dbe63cf79 +#: discord.client.Client.fetch_stage_instance:14 +#: e5a4d1d3aaf040398c8c0a5ac1e6dc2d of +msgid "The stage instance or channel could not be found." +msgstr "" + +#: 9be3c4f2f0164f2798360c5e220e7f50 +#: discord.client.Client.fetch_stage_instance:15 +#: fa0d9d4bc9ec41679170d58e5edf545e of +msgid "Getting the stage instance failed." +msgstr "" + +#: 584ac55387214bf0bc7655da6f2792e0 958332531bf34b229232649aaad19cef +#: discord.client.Client.fetch_sticker:3 of +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "" + +#: 1363c215bc8b48139f395e234a2fdcc7 a84b7eec831d41849ecdc43cee32ae28 +#: discord.client.Client.fetch_sticker:7 of +msgid "The sticker you requested." +msgstr "" + +#: b838a91ed61b4d37be246951b8564208 discord.client.Client.fetch_sticker:8 +#: ee98d910070249a2afbc06c51832ab92 of +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "" + +#: 50d8785227d54d73b68c6649c6fc793f a3bd0412032a451d944d5040250df9a4 +#: discord.client.Client.fetch_sticker:10 of +msgid "Retrieving the sticker failed." +msgstr "" + +#: a5926e5321024d8da72afc86559c5181 a914b8b74dff428b8217376bb44ee280 +#: discord.client.Client.fetch_sticker:11 of +msgid "Invalid sticker ID." +msgstr "" + +#: daba7a12d12e483dabb22f3082560e2d dbd91692e99f41089c24f3a1b016abe3 +#: discord.client.Client.fetch_template:3 of +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "" + +#: 6c79dbef597949049308831126caf1cb 9cf7aeba3cf94ddfade1161921136fcd +#: discord.client.Client.fetch_template:6 of +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "" + +#: 20002ad14d4a4ebeb50f9d4b42e9bb59 2177ade0a9194b67b6fd15a61ae13825 +#: discord.client.Client.fetch_template:9 of +msgid "The template from the URL/code." +msgstr "" + +#: 25aa61a5f6704f76bd0e63fe07fd5344 discord.client.Client.fetch_template:10 +#: f8e660d6df844ff9b6e8ca42e45a6db4 of +msgid ":class:`.Template`" +msgstr "" + +#: 35c845de13e349a9bd817308bd8210bb bbb4e3d039e24824b2e96290ede33879 +#: discord.client.Client.fetch_template:12 of +msgid "The template is invalid." +msgstr "" + +#: 1e8fc158e4c74b9fa63f4cd6822c9190 de39096b310c4930ba085499cc501be9 +#: discord.client.Client.fetch_template:13 of +msgid "Getting the template failed." +msgstr "" + +#: 6afa0c679eaf409a8736e07f05fb7c6d discord.client.Client.fetch_user:3 +#: fc5e27dfd5df4f1083a2ce78905f137f of +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 "" + +#: 80beb23cf53c40a194d929ae8c7a2876 88856ef0a1c34816a1b8126d28db55c8 +#: discord.client.Client.fetch_user:9 of +msgid "" +"This method is an API call. If you have :attr:`discord.Intents.members` " +"and member cache enabled, consider :meth:`get_user` instead." +msgstr "" + +#: 13ba7b35bdd343299351ad1b86086580 904c1ae5fcc14436b80548bb1f284c43 +#: discord.client.Client.fetch_user:13 of +msgid "The user's ID to fetch from." +msgstr "" + +#: 4b109491b8d94c648cd2b4a856262356 discord.client.Client.fetch_user:16 +#: f331d997dda74b7e9506f9f0858875f4 of +msgid "The user you requested." +msgstr "" + +#: 84fbf23886304607b5223e4f3e827432 c58aaed5b9274c23be1a82dd7b9c79c2 +#: discord.client.Client.fetch_user:17 of +msgid ":class:`~discord.User`" +msgstr "" + +#: 1f026a4e35c84df8b91a677e61429aad af069677ce5a4d60af85cdbbc1d89063 +#: discord.client.Client.fetch_user:19 of +msgid "A user with this ID does not exist." +msgstr "" + +#: a7894ada30514c09917ba342ff6307bf da95e6f09ace4020ba25d649433bd8e3 +#: discord.client.Client.fetch_user:20 of +msgid "Fetching the user failed." +msgstr "" + +#: 449315d17af4479895749d1fc700a3f7 7b5c3de0d5bc490583eed2148fe3adf2 +#: discord.client.Client.fetch_webhook:3 of +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "" + +#: 3d3b2a928bae48ff9d0ced39413a96a9 79ce9e3cdd1f42a0bbdd9b54d0263d2c +#: discord.client.Client.fetch_webhook:5 of +msgid "The webhook you requested." +msgstr "" + +#: 0f9acb4de476421b8b66cafaad9e8d13 c9bfd966d85e4f17a319e5b0e2f717cc +#: discord.client.Client.fetch_webhook:6 of +msgid ":class:`.Webhook`" +msgstr "" + +#: 78c27258634f42bf842727095db62ee5 9383dddb8c9d4a9c96d2e2bde714702a +#: discord.client.Client.fetch_webhook:8 of +msgid "Retrieving the webhook failed." +msgstr "" + +#: 1d2f993cc43b4a0985c6521221c59f63 6c4a19c3d6534ae4849f4b219aab45e7 +#: discord.client.Client.fetch_webhook:9 of +msgid "Invalid webhook ID." +msgstr "" + +#: 38afa3e69538483c9aa15498beaf378e dc3889164ad64b9b8a46fbe38f466076 +#: discord.client.Client.fetch_webhook:10 of +msgid "You do not have permission to fetch this webhook." +msgstr "" + +#: 8b4ef3067a554f3dbd79ec87d454e563 c548ce9c4b524c3da67dbf74b4cc39d5 +#: discord.client.Client.fetch_widget:3 of +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "" + +#: d5625d54302d4637bb3b2b87d4f31e8e discord.client.Client.fetch_widget:7 +#: f3c9ea1202d04fe98848e776cc633b43 of +msgid "The guild must have the widget enabled to get this information." +msgstr "" + +#: 81d3c19143e44cf2b6c178fc3d2fcc77 discord.client.Client.fetch_widget:10 +#: f7f87b3361a641b49965447a1dce4229 of +msgid "The ID of the guild." +msgstr "" + +#: 44fbd4d628244841a9214142b84ff39d discord.client.Client.fetch_widget:13 +#: e741791aa8f74923af5883745587ff8c of +msgid "The guild's widget." +msgstr "" + +#: d8bc6239ad544978978964d975b88cf8 discord.client.Client.fetch_widget:14 +#: e89b25c5d0d24a838d657f9ba08a43b5 of +msgid ":class:`.Widget`" +msgstr "" + +#: aca5c6cbb697464b90cc953011ed05bc discord.client.Client.fetch_widget:16 +#: e8fabc52771b436b8e0a6c27db844e38 of +msgid "The widget for this guild is disabled." +msgstr "" + +#: 2f27c3a6ee12429694a5b67441deb3bd 6c887b61d6214bbc89a3071595e17351 +#: discord.client.Client.fetch_widget:17 of +msgid "Retrieving the widget failed." +msgstr "" + +#: b886abcab97a46f3940f4064094180e2 discord.client.Client.get_all_channels:1 +#: f32d5942653b4aeea1d89478304ac5c4 of +msgid "" +"A generator that retrieves every :class:`.abc.GuildChannel` the client " +"can 'access'." +msgstr "" + +#: 5004a72d009b4ad48da460e3f0226d5e d5dfb16bdaa1458bb44264187f4ee38c +#: discord.client.Client.get_all_channels:3 +#: discord.client.Client.get_all_members:3 of +msgid "This is equivalent to: ::" +msgstr "" + +#: 14df624bee0b4d23b1f9088155d3e882 discord.client.Client.get_all_channels:11 +#: of +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 "" + +#: 5eab19fe94124dbcab31f439d0973160 discord.client.Client.get_all_channels:15 +#: of +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr "" + +#: 1e23815e30ed4e7fba2bd525936c0e85 discord.client.Client.get_all_members:1 of +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "" + +#: 71e5351f43c7453b898f2b71db1af20e discord.client.Client.get_all_members:9 of +msgid ":class:`.Member` -- A member the client can see." +msgstr "" + +#: c0e500eca4654493bcbde640ebc18e15 +#: discord.bot.ApplicationCommandMixin.get_application_command:1 of +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "" + +#: 297eb50180c641ee936301a619fecf81 +#: discord.bot.ApplicationCommandMixin.get_application_command:7 of +msgid "The qualified name of the command to get." +msgstr "" + +#: 4e81f4e8177d4f1fabacd1113a61b684 +#: discord.bot.ApplicationCommandMixin.get_application_command:10 of +msgid "The guild ids associated to the command to get." +msgstr "" + +#: 7159cb9856244306be63c209b5f0df30 +#: discord.bot.ApplicationCommandMixin.get_application_command:13 of +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "" + +#: c868f574c5674690bd081cabc69cc745 +#: discord.bot.ApplicationCommandMixin.get_application_command:16 of +msgid "The command that was requested. If not found, returns ``None``." +msgstr "" + +#: c164f779fe0a43e6a2f6abf608af6f93 +#: discord.bot.ApplicationCommandMixin.get_application_command:17 +#: discord.bot.ApplicationCommandMixin.remove_application_command:12 of +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "" + +#: 998de8fc4fc54d12bbfd2d6293de1bee +#: discord.bot.ApplicationCommandMixin.get_application_context:3 of +msgid "Returns the invocation context from the interaction." +msgstr "" + +#: 3614dd7b6e5d41d1b0d77e9c10a3f598 +#: discord.bot.ApplicationCommandMixin.get_application_context:5 +#: discord.bot.ApplicationCommandMixin.get_autocomplete_context:5 of +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 "" + +#: 815d098582864c5aa45ebb68a53bc46b +#: discord.bot.ApplicationCommandMixin.get_application_context:9 +#: discord.bot.ApplicationCommandMixin.get_autocomplete_context:9 of +msgid "The interaction to get the invocation context from." +msgstr "" + +#: discord.bot.ApplicationCommandMixin.get_application_context:12 +#: f445ef6ad23b46aa8c7b978919888cc2 of +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 "" + +#: 01ec116738e84cb99e4b5d5ce4ffbfcf +#: discord.bot.ApplicationCommandMixin.get_application_context:17 of +msgid "" +"The invocation context. The type of this can change via the ``cls`` " +"parameter." +msgstr "" + +#: c55b1028898244e59c76268416abbb49 +#: discord.bot.ApplicationCommandMixin.get_application_context:19 of +msgid ":class:`.ApplicationContext`" +msgstr "" + +#: 537bfa329bc545788890928e4531fa73 +#: discord.bot.ApplicationCommandMixin.get_autocomplete_context:3 of +msgid "Returns the autocomplete context from the interaction." +msgstr "" + +#: 11b0ecc315564b658e1d489d95e4e02a +#: discord.bot.ApplicationCommandMixin.get_autocomplete_context:12 of +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 "" + +#: 1bccad822ed94d7889a324aa82d0a214 +#: discord.bot.ApplicationCommandMixin.get_autocomplete_context:17 of +msgid "" +"The autocomplete context. The type of this can change via the ``cls`` " +"parameter." +msgstr "" + +#: 5f3b2f2fda724232a91fda448c11ca58 +#: discord.bot.ApplicationCommandMixin.get_autocomplete_context:19 of +msgid ":class:`.AutocompleteContext`" +msgstr "" + +#: cf283a472c614b6a97c06ca4bc4a33f0 discord.client.Client.get_channel:1 of +msgid "Returns a channel or thread with the given ID." +msgstr "" + +#: discord.client.Client.get_channel:4 discord.client.Client.get_emoji:4 +#: discord.client.Client.get_guild:4 discord.client.Client.get_message:7 +#: discord.client.Client.get_or_fetch_user:6 +#: discord.client.Client.get_stage_instance:6 discord.client.Client.get_user:4 +#: eddc2d6f8feb4541a1e35da5fb5fa865 of +msgid "The ID to search for." +msgstr "" + +#: d9a90139b5c84016a67669abf356d83b discord.client.Client.get_channel:7 of +msgid "The returned channel or ``None`` if not found." +msgstr "" + +#: de8a5b88032c47fa9f2e41bfa71842c3 discord.client.Client.get_channel:8 of +msgid "" +"Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, " +":class:`.abc.PrivateChannel`]]" +msgstr "" + +#: bec15e570fa04a15b83b7ca7e3389216 discord.cog.CogMixin.get_cog:1 of +msgid "Gets the cog instance requested." +msgstr "" + +#: 4ae249d6843649ce9819e165b69c78ff discord.cog.CogMixin.get_cog:3 of +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "" + +#: b8d6f18d1d2c44babb0a2315fcf7c1b6 discord.cog.CogMixin.get_cog:6 of +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 "" + +#: 412532b7fda248be8233ebf2f47a3c87 discord.cog.CogMixin.get_cog:11 of +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "" + +#: 691b6e2bdebc42878e0d4ca7bde4dfcb discord.cog.CogMixin.get_cog:12 of +msgid "Optional[:class:`Cog`]" +msgstr "" + +#: 64b888dc0e0641c0b11a8699ef47d0f7 discord.Bot.get_command:1 of +msgid "Shortcut for :meth:`.get_application_command`." +msgstr "" + +#: 090694ded9bb48498938dd4891b64207 discord.Bot.get_command:4 of +msgid "Overridden in :class:`ext.commands.Bot`." +msgstr "" + +#: b1df2b0021b249f6ba711704e20aaf2c +#: discord.bot.ApplicationCommandMixin.get_desynced_commands:3 of +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 "" + +#: 4988c5769a7f45b093d66279aa435b31 +#: discord.bot.ApplicationCommandMixin.get_desynced_commands:7 of +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 "" + +#: a42aa04f99bd45e2adf79377df0fddf9 +#: discord.bot.ApplicationCommandMixin.get_desynced_commands:13 of +msgid "" +"The guild id to get the desynced commands for, else global commands if " +"unspecified." +msgstr "" + +#: 004d26c269d948c5b29706eae2d3286e +#: discord.bot.ApplicationCommandMixin.get_desynced_commands:16 of +msgid "" +"If you already fetched the commands, you can pass them here to be used. " +"Not recommended for typical usage." +msgstr "" + +#: b52ea92694dc43888920b021b5ea6887 +#: discord.bot.ApplicationCommandMixin.get_desynced_commands:19 of +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 "" + +#: 433de8e824a84596ad4b85e75dddfb58 +#: discord.bot.ApplicationCommandMixin.get_desynced_commands:22 of +msgid "List[Dict[:class:`str`, Any]]" +msgstr "" + +#: 9525ca2de02e4964817f1a037363a3a2 discord.client.Client.get_emoji:1 of +msgid "Returns an emoji with the given ID." +msgstr "" + +#: 9c674dcf871343f694a42135680a1736 discord.client.Client.get_emoji:7 of +msgid "The custom emoji or ``None`` if not found." +msgstr "" + +#: 00d7fd8a5ae747b7a60a6c550b8c741d discord.client.Client.get_emoji:8 of +msgid "Optional[:class:`.Emoji`]" +msgstr "" + +#: c69d0ea814a84230941d413794f573c9 discord.client.Client.get_guild:1 of +msgid "Returns a guild with the given ID." +msgstr "" + +#: discord.client.Client.get_guild:7 e0ee40e0766047a2be7ce2f868ab810b of +msgid "The guild or ``None`` if not found." +msgstr "" + +#: 134847e462854ae78b1f4d67f66abf09 discord.client.Client.get_guild:8 of +msgid "Optional[:class:`.Guild`]" +msgstr "" + +#: 181ecf7ccc494ba8b6465d66a0ef5483 discord.client.Client.get_message:1 of +msgid "Returns a message the given ID." +msgstr "" + +#: 4844d10606e145829c103661a39a42a0 discord.client.Client.get_message:3 of +msgid "" +"This is useful if you have a message_id but don't want to do an API call " +"to access the message." +msgstr "" + +#: 876b35b70409440bbe9860921ed2bdde discord.client.Client.get_message:10 of +msgid "The returned message or ``None`` if not found." +msgstr "" + +#: 909a4ebed88b418eb3fc8ad783de4fc2 discord.client.Client.get_message:11 of +msgid "Optional[:class:`.Message`]" +msgstr "" + +#: discord.client.Client.get_or_fetch_user:3 ef34cecd55904074aadf36c69ae1a3fe +#: of +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "" + +#: 7a08fd22da7640b392c99f8c05c6c4e6 discord.client.Client.get_or_fetch_user:9 +#: discord.client.Client.get_user:7 of +msgid "The user or ``None`` if not found." +msgstr "" + +#: 759defbb355844809d78aa0b07143820 discord.client.Client.get_or_fetch_user:10 +#: discord.client.Client.get_user:8 of +msgid "Optional[:class:`~discord.User`]" +msgstr "" + +#: 044e87bce77b4fec8f6ad808a56bd064 +#: discord.client.Client.get_partial_messageable:1 of +msgid "Returns a partial messageable with the given channel ID." +msgstr "" + +#: discord.client.Client.get_partial_messageable:3 +#: f2ce805dc0414f5a9e5a8755ea1c9643 of +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 "" + +#: c8479fc87aa246648dbeeb0dc0bd2523 +#: discord.client.Client.get_partial_messageable:9 of +msgid "The channel ID to create a partial messageable for." +msgstr "" + +#: 56b0308cd9eb42b28481f6a554cd5570 +#: discord.client.Client.get_partial_messageable:12 of +msgid "The underlying channel type for the partial messageable." +msgstr "" + +#: dcf7536cc4744aa9b4c7648d2327410f +#: discord.client.Client.get_partial_messageable:15 of +msgid "The partial messageable" +msgstr "" + +#: daa543ad6df34e43a2d9864afb81d0d8 +#: discord.client.Client.get_partial_messageable:16 of +msgid ":class:`.PartialMessageable`" +msgstr "" + +#: discord.client.Client.get_poll:1 f33a04665ff84187a4db076f2d509d54 of +msgid "Returns a poll attached to the given message ID." +msgstr "" + +#: discord.client.Client.get_poll:4 fce34a83deb34fb09d2fb065f7e9aabc of +msgid "The message ID of the poll to search for." +msgstr "" + +#: 9e724f2a11ec44c4869443876f200c94 discord.client.Client.get_poll:7 of +msgid "The poll or ``None`` if not found." +msgstr "" + +#: c742fb9939e244578e66f27785b9e0b3 discord.client.Client.get_poll:8 of +msgid "Optional[:class:`.Poll`]" +msgstr "" + +#: 3d786cc212a44afea512d29b0e007d4e discord.client.Client.get_stage_instance:1 +#: of +msgid "Returns a stage instance with the given stage channel ID." +msgstr "" + +#: d433f0da2b6945b390f4785d5e45686d discord.client.Client.get_stage_instance:9 +#: of +msgid "The stage instance or ``None`` if not found." +msgstr "" + +#: 2c039b3d063d4d5daad23166bc2998bc discord.client.Client.get_stage_instance:10 +#: of +msgid "Optional[:class:`.StageInstance`]" +msgstr "" + +#: discord.client.Client.get_sticker:1 f10646f6188b45e79224058f73d2f2a8 of +msgid "Returns a guild sticker with the given ID." +msgstr "" + +#: c15a89f27028488cb7b2336b8063f854 discord.client.Client.get_sticker:7 of +msgid "" +"To retrieve standard stickers, use :meth:`.fetch_sticker`. or " +":meth:`.fetch_premium_sticker_packs`." +msgstr "" + +#: a8df3300fa7947d1885ff98542d67aeb discord.client.Client.get_sticker:10 of +msgid "The sticker or ``None`` if not found." +msgstr "" + +#: 6340a201b4ee40d08e8349272ea2eb4f discord.client.Client.get_sticker:11 of +msgid "Optional[:class:`.GuildSticker`]" +msgstr "" + +#: ad521edf83024b639b0931097a70fbc6 discord.client.Client.get_user:1 of +msgid "Returns a user with the given ID." +msgstr "" + +#: 3534240b400047cf99d43a0882749281 discord.bot.ApplicationCommandMixin.group:1 +#: of +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 "" + +#: 12eda575d2994bb9b8ec76bc781e2b9f discord.bot.ApplicationCommandMixin.group:7 +#: of +msgid "" +"The name of the group to create. This will resolve to the name of the " +"decorated class if ``None`` is passed." +msgstr "" + +#: 2f2a3e8f246c4f30b877af0e3e88001b discord.Bot.guilds:1 +#: discord.Client.guilds:1 of +msgid "The guilds that the connected client is a member of." +msgstr "" + +#: 21faa16203234f99a69b91b463601bd2 discord.Bot.intents:1 +#: discord.Client.intents:1 of +msgid "The intents configured for this connection." +msgstr "" + +#: 0fef6661f4904fc584c2c3c675c11684 +#: discord.bot.ApplicationCommandMixin.invoke_application_command:3 of +msgid "" +"Invokes the application command given under the invocation context and " +"handles all the internal event dispatch mechanisms." +msgstr "" + +#: 10f77b8bbb3042e09dc3daf5dd79b208 +#: discord.bot.ApplicationCommandMixin.invoke_application_command:7 of +msgid "The invocation context to invoke." +msgstr "" + +#: 1195a817f20744f69117a573c7f4c5d1 discord.client.Client.is_closed:1 of +msgid "Indicates if the WebSocket connection is closed." +msgstr "" + +#: 1044d7a76781488d8e388f935f5d4867 discord.client.Client.is_closed:4 +#: discord.client.Client.is_ready:4 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 659c6943644c45f6b44ac33cc1d9896e discord.bot.BotBase.is_owner:3 of +msgid "" +"Checks if a :class:`~discord.User` or :class:`~discord.Member` is the " +"owner of this bot." +msgstr "" + +#: 3e69877b74ed48cab87f6fe3ec2f5bbd discord.bot.BotBase.is_owner:6 of +msgid "" +"If an :attr:`owner_id` is not set, it is fetched automatically through " +"the use of :meth:`~.Bot.application_info`." +msgstr "" + +#: 6872f8c9608949fab7ac89cb5072f36d discord.bot.BotBase.is_owner:9 of +msgid "" +"The function also checks if the application is team-owned if " +":attr:`owner_ids` is not set." +msgstr "" + +#: 784e3a78f66b4c67b2252bda0ab50130 discord.bot.BotBase.is_owner:14 of +msgid "The user to check for." +msgstr "" + +#: af103a9120b341d7ac2dc05f2fc6b7f0 discord.bot.BotBase.is_owner:17 of +msgid "Whether the user is the owner." +msgstr "" + +#: discord.client.Client.is_ready:1 e491ff5681a44d58918b01dea27ff898 of +msgid "Specifies if the client's internal cache is ready for use." +msgstr "" + +#: 1d19112534464592be462f4549362eed discord.client.Client.is_ws_ratelimited:1 +#: of +msgid "Whether the WebSocket is currently rate limited." +msgstr "" + +#: 62af1fa7dcf84492b242000ea4241503 discord.client.Client.is_ws_ratelimited:3 +#: of +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 "" + +#: c5ab6840e90349f19ce335c373c2303d discord.AutoShardedClient.latency:1 +#: discord.Bot.latency:1 discord.Client.latency:1 of +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "" + +#: 421f8b497847440fbd6dbe4be0a01720 discord.Bot.latency:3 +#: discord.Client.latency:3 of +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "" + +#: 026aa7d6f31d4990a7b349b52d1e57ac discord.cog.CogMixin.load_extension:1 of +msgid "Loads an extension." +msgstr "" + +#: 443fb754e9e4450d9ba7b4c49645dd5d discord.cog.CogMixin.load_extension:3 of +msgid "" +"An extension is a python module that contains commands, cogs, or " +"listeners." +msgstr "" + +#: discord.cog.CogMixin.load_extension:6 eb4cd6b235244515b0c8d247f851230e of +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.cog.CogMixin.load_extension:10 e954aa1ba2b04355a43ce15be4b3c1a6 of +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 "" + +#: b4709a5104a8400c9ac23f133549b6c6 discord.cog.CogMixin.load_extension:14 of +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 "" + +#: 2fd13f9b72724c3a93c62cbf7ce3e595 discord.cog.CogMixin.load_extension:19 +#: discord.cog.CogMixin.load_extensions:12 of +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 "" + +#: d98754a427e84ae682ce85cdb8557bec discord.cog.CogMixin.load_extension:19 +#: discord.cog.CogMixin.load_extensions:12 of +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 "" + +#: 4872f607b11d4176b8657dc8de35a45e discord.cog.CogMixin.load_extension:27 +#: discord.cog.CogMixin.load_extensions:20 of +msgid "" +"If subdirectories under the given head directory should be recursively " +"loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "" + +#: 235222cbb8c44095937e8b67a59eba52 discord.cog.CogMixin.load_extension:27 +#: discord.cog.CogMixin.load_extensions:20 of +msgid "" +"If subdirectories under the given head directory should be recursively " +"loaded. Defaults to ``False``." +msgstr "" + +#: discord.cog.CogMixin.load_extension:34 +#: discord.cog.CogMixin.load_extensions:27 e1406c82b3ec42d7ba4f1a9a7f0bc9d8 of +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 "" + +#: 287d8e3cd45341309195aa3dd7ab8c94 discord.cog.CogMixin.load_extension:34 +#: discord.cog.CogMixin.load_extensions:27 of +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 "" + +#: 099c61d1269b47109fe9e3a1cc10e009 discord.cog.CogMixin.load_extension:45 of +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 "" + +#: 83832163d58347d7a6e6af84f4c8e4fb discord.cog.CogMixin.load_extension:51 +#: discord.cog.CogMixin.load_extensions:44 of +msgid "" +"Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, " +":class:`bool`]], List[:class:`str`]]]" +msgstr "" + +#: 85002126743f4f13988ae3b6842068e6 discord.cog.CogMixin.load_extension:53 +#: discord.cog.CogMixin.reload_extension:22 of +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 "" + +#: a5a3724f3d244704959a79b59e34abc0 discord.cog.CogMixin.load_extension:54 of +msgid "The extension is already loaded." +msgstr "" + +#: 67911d91ed4a43efbe1e31b46fc74e6d discord.cog.CogMixin.load_extension:55 +#: discord.cog.CogMixin.reload_extension:23 of +msgid "The extension does not have a setup function." +msgstr "" + +#: 8f842e56308f4d1c88c47684ea45314f discord.cog.CogMixin.load_extension:56 of +msgid "The extension or its setup function had an execution error." +msgstr "" + +#: a760357f52544ed481412457c04c3803 discord.cog.CogMixin.load_extensions:1 of +msgid "Loads multiple extensions at once." +msgstr "" + +#: discord.cog.CogMixin.load_extensions:3 fdfb6f2448094adf9318c69174beeeea of +msgid "" +"This method simplifies the process of loading multiple extensions by " +"handling the looping of ``load_extension``." +msgstr "" + +#: discord.cog.CogMixin.load_extensions:7 f8a0970ba0114e93b9b61f4b6528e11c of +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 "" + +#: b5fb058740df4f5697c3610201853111 discord.cog.CogMixin.load_extensions:38 of +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 "" + +#: bfa57369a86a4cda8d1bd669bb3f567b discord.cog.CogMixin.load_extensions:46 of +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 "" + +#: c65a8880c6e24c0ba423274ba3ab9e74 discord.cog.CogMixin.load_extensions:47 of +msgid "A given extension is already loaded." +msgstr "" + +#: 066e528badfb4c9081642380ae4c0118 discord.cog.CogMixin.load_extensions:48 of +msgid "A given extension does not have a setup function." +msgstr "" + +#: cf251565d0a04577a80b44ef3a0c45ae discord.cog.CogMixin.load_extensions:49 of +msgid "A given extension or its setup function had an execution error." +msgstr "" + +#: 049a0834b6b047f99314936f2f1163ba discord.client.Client.login:3 of +msgid "Logs in the client with the specified credentials." +msgstr "" + +#: 37485eb978c94d0ab2f8e20f3c9d44f0 discord.client.Client.login:6 of +msgid "" +"The authentication token. Do not prefix this token with anything as the " +"library will do it for you." +msgstr "" + +#: 441a4bc07886491dbe40a2d51a9d6027 discord.client.Client.login:10 of +msgid "The token was in invalid type." +msgstr "" + +#: discord.client.Client.login:11 e47b353c4c374b69a0516a6c01b5f5db of +msgid "The wrong credentials are passed." +msgstr "" + +#: b7bea11ed3954e4d8bb8ceba44c2c5a3 discord.client.Client.login:12 of +msgid "" +"An unknown HTTP related error occurred, usually when it isn't 200 or " +"the known incorrect credentials passing status code." +msgstr "" + +#: 9bd06ccb118d45cfade916f4c2e9e09d +#: discord.bot.BotBase.on_application_command_error:3 of +msgid "The default command error handler provided by the bot." +msgstr "" + +#: c577795c8bcb40caae05540580226588 +#: discord.bot.BotBase.on_application_command_error:5 of +msgid "" +"By default, this prints to :data:`sys.stderr` however it could be " +"overridden to have a different implementation." +msgstr "" + +#: 14d54c8c45da4b1ea8ea9a527ef62098 +#: discord.bot.BotBase.on_application_command_error:8 of +msgid "This only fires if you do not specify any listeners for command error." +msgstr "" + +#: 57179a6f7b13404b8d698521898a6d9c discord.client.Client.on_error:3 of +msgid "The default error handler provided by the client." +msgstr "" + +#: 58a09ed6103242578e6f09b9c61c0f17 discord.client.Client.on_error:5 of +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 "" + +#: 0ddbaefb41734b77ad0d3ad0792c3d18 discord.Bot.persistent_views:1 +#: discord.Client.persistent_views:1 of +msgid "A sequence of persistent views added to the client." +msgstr "" + +#: 7052b64d58da473a956cb108172efa05 discord.Bot.polls:1 discord.Client.polls:1 +#: of +msgid "The polls that the connected client has." +msgstr "" + +#: c2acbbccabb944aeb2cfcdebcfaaa94c discord.Bot.private_channels:1 +#: discord.Client.private_channels:1 of +msgid "The private channels that the connected client is participating on." +msgstr "" + +#: c9cd8785f1e7403e86e3a939de337f91 discord.Bot.private_channels:5 +#: discord.Client.private_channels:5 of +msgid "" +"This returns only up to 128 most recent private channels due to an " +"internal working on how Discord deals with private channels." +msgstr "" + +#: 21363eab134d440382c795173dd057c0 +#: discord.bot.ApplicationCommandMixin.process_application_commands:3 of +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 "" + +#: b02242879b784c65ac623cbda25aee83 +#: discord.bot.ApplicationCommandMixin.process_application_commands:7 of +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 "" + +#: 5a7f80f98b7445e0bbe1ffbaf4f75a5c +#: discord.bot.ApplicationCommandMixin.process_application_commands:11 of +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 "" + +#: 5eba8aff592647dbb428a36b08475afc +#: discord.bot.ApplicationCommandMixin.process_application_commands:18 of +msgid "The interaction to process" +msgstr "" + +#: 098da280f563492c8010c8ad52ae3b46 +#: discord.bot.ApplicationCommandMixin.process_application_commands:21 of +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 "" + +#: 6fb0bc75b4244e36896183264590e7f1 +#: discord.bot.ApplicationCommandMixin.register_command:3 of +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 "" + +#: 4ea2920e2db64df6859efe1b1f524b48 +#: discord.bot.ApplicationCommandMixin.register_command:7 of +msgid "The command to register." +msgstr "" + +#: 8b8d635e6e8d4e7c8a3aed8d2b2113e4 +#: discord.bot.ApplicationCommandMixin.register_command:10 of +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 "" + +#: 4da5da38c13c4cce84fa4a5f1324b431 +#: discord.bot.ApplicationCommandMixin.register_command:14 of +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 "" + +#: 84a8824b3dbc412281a70609fb40e4db +#: discord.bot.ApplicationCommandMixin.register_command:18 of +msgid "The command that was registered" +msgstr "" + +#: a32da6d17c784b489e12a5b06559a374 +#: discord.bot.ApplicationCommandMixin.register_command:19 of +msgid ":class:`~.ApplicationCommand`" +msgstr "" + +#: discord.bot.ApplicationCommandMixin.register_commands:3 +#: fbe13cfdf4c344ce8845196b3c9c308c of +msgid "Register a list of commands." +msgstr "" + +#: de60834094264c87b010a83d28ef3a31 +#: discord.bot.ApplicationCommandMixin.register_commands:8 of +msgid "" +"A list of commands to register. If this is not set (``None``), then all " +"commands will be registered." +msgstr "" + +#: discord.bot.ApplicationCommandMixin.register_commands:11 +#: f7d13a7b72ee45829b22b9d1d4115004 of +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 "" + +#: 8033302734aa4ce0a6cb372c445cdb12 +#: discord.bot.ApplicationCommandMixin.register_commands:15 +#: discord.bot.ApplicationCommandMixin.sync_commands:30 of +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 "" + +#: 8faca78fa87f4d3bb12fb70fd01d35e3 +#: discord.bot.ApplicationCommandMixin.register_commands:20 +#: discord.bot.ApplicationCommandMixin.sync_commands:35 of +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 "" + +#: 7a51594d4dce42bc92a656b664696dce +#: discord.bot.ApplicationCommandMixin.register_commands:24 +#: discord.bot.ApplicationCommandMixin.sync_commands:52 of +msgid "" +"Whether to delete existing commands that are not in the list of commands " +"to register. Defaults to True." +msgstr "" + +#: 954c934a3ae542bd8e48d65c6872c37f +#: discord.bot.ApplicationCommandMixin.register_commands:27 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ " +"\\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr "" + +#: b99435e52b874c98861200f494f1266a discord.cog.CogMixin.reload_extension:1 of +msgid "Atomically reloads an extension." +msgstr "" + +#: discord.cog.CogMixin.reload_extension:3 eb3fc9d30ad248d59bc53b98fd0a8110 of +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 "" + +#: 11271e1cdfbf422bb9d35cef4a1a2622 discord.cog.CogMixin.reload_extension:9 of +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.cog.CogMixin.reload_extension:14 f0dc77f6bc6744e08e89bd30c7719544 of +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 "" + +#: c257e5f934bd4c41ab4bd9003112a5d5 discord.cog.CogMixin.reload_extension:14 of +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 "" + +#: 4cb97699dc1f4e5b9f7c75d398086528 b2947b8e3f1d42259d4d6afe1406758d +#: discord.cog.CogMixin.reload_extension:21 +#: discord.cog.CogMixin.unload_extension:25 of +msgid "The extension was not loaded." +msgstr "" + +#: a2829fe98fe748338b65015d93fc299a discord.cog.CogMixin.reload_extension:24 of +msgid "The extension setup function had an execution error." +msgstr "" + +#: 94d9dca4e09f47bcbb41742185f8a778 +#: discord.bot.ApplicationCommandMixin.remove_application_command:1 of +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "" + +#: a272e12723b0440e8cdd4b64dd581be0 +#: discord.bot.ApplicationCommandMixin.remove_application_command:7 of +msgid "The command to remove." +msgstr "" + +#: 5c3fa5ba0e24446ca0c5d451ab0d7ef3 +#: discord.bot.ApplicationCommandMixin.remove_application_command:10 of +msgid "" +"The command that was removed. If the command has not been added, ``None``" +" is returned instead." +msgstr "" + +#: 318002b550784a58a407ca8a6ea60975 discord.bot.BotBase.remove_check:1 of +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 "" + +#: ac0f014b030846a4886347653f09eae7 discord.bot.BotBase.remove_check:6 of +msgid "The function to remove from the global checks." +msgstr "" + +#: 5ccca55b893a4ce196b56ac7b4bf3fea discord.bot.BotBase.remove_check:8 of +msgid "" +"If the function was added with ``call_once=True`` in the " +":meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "" + +#: afc46aa053de44acac79848d8a4d48bd discord.cog.CogMixin.remove_cog:1 of +msgid "Removes a cog from the bot and returns it." +msgstr "" + +#: 8760d9d2494745fd8c2bbf789078f622 discord.cog.CogMixin.remove_cog:3 of +msgid "" +"All registered commands and event listeners that the cog has registered " +"will be removed as well." +msgstr "" + +#: a6da2cef0f344cbc97b69314e265bf25 discord.cog.CogMixin.remove_cog:6 of +msgid "If no cog is found then this method has no effect." +msgstr "" + +#: 206390d6458e4be89131c95feaa9c242 discord.cog.CogMixin.remove_cog:9 of +msgid "The name of the cog to remove." +msgstr "" + +#: 079d5ea3e3c547edb0104884b59c1d1d discord.cog.CogMixin.remove_cog:12 of +msgid "The cog that was removed. ``None`` if not found." +msgstr "" + +#: 10349ef7943d47cf9ee8c96d7a3e3f09 discord.cog.CogMixin.remove_cog:13 of +msgid "Optional[:class:`.Cog`]" +msgstr "" + +#: discord.client.Client.remove_listener:1 f402b73bece24cc49036238c228a2cf6 of +msgid "Removes a listener from the pool of listeners." +msgstr "" + +#: 0ae89918698b491f89b9233a129a1897 discord.client.Client.remove_listener:4 of +msgid "The function that was used as a listener to remove." +msgstr "" + +#: 515f9c536b89476fba576f7ce5614414 discord.client.Client.remove_listener:6 of +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "" + +#: 571249fef8cd45c2981975498a4e7851 discord.client.Client.run:1 of +msgid "" +"A blocking call that abstracts away the event loop initialisation from " +"you." +msgstr "" + +#: 2106434fbe294fed9159326a73846c02 discord.client.Client.run:4 of +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 "" + +#: bf32743d60dc4a47b2809974b262f96b discord.client.Client.run:8 of +msgid "Roughly Equivalent to: ::" +msgstr "" + +#: 5068dc186f7d4b5c98caaa8752b6b428 discord.client.Client.run:20 of +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 "" + +#: 904fe45f358146e683fec60eee80c2e5 discord.client.Client.start:3 of +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "" + +#: 02034fb9cb9c44b7810a0d146353bf07 discord.client.Client.start:5 of +msgid "An unexpected keyword argument was received." +msgstr "" + +#: ab9038811b594d4ea2ea96f42440f117 discord.Bot.status:1 +#: discord.Client.status:1 of +msgid "The status being used upon logging on to Discord." +msgstr "" + +#: b39bab7b652b4d4f98cf18b2b9db6484 discord.Bot.stickers:1 +#: discord.Client.stickers:1 of +msgid "The stickers that the connected client has." +msgstr "" + +#: 4a2351568c31486793eb53e153daa658 discord.Bot.store_url:1 +#: discord.Client.store_url:1 of +msgid "The URL that leads to the application's store page for monetization." +msgstr "" + +#: discord.bot.ApplicationCommandMixin.sync_commands:3 +#: e41ee7cfb81d4efbb82555468a565e3b of +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 "" + +#: af342759879c41d2b37da067dc43b3fb +#: discord.bot.ApplicationCommandMixin.sync_commands:8 of +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.ApplicationCommandMixin.sync_commands:20 +#: ee42e6eda6db4919b8cbd51d9980a031 of +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 "" + +#: d9a16639758842dc8da3fb43f1016194 +#: discord.bot.ApplicationCommandMixin.sync_commands:27 of +msgid "" +"A list of commands to register. If this is not set (None), then all " +"commands will be registered." +msgstr "" + +#: 4e2c5bcbf6fa4e04bb1a21be03790c07 +#: discord.bot.ApplicationCommandMixin.sync_commands:39 of +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 "" + +#: c7ee914bd75d468a8a9831931c65076e +#: discord.bot.ApplicationCommandMixin.sync_commands:43 of +msgid "Whether to register guild commands. Defaults to True." +msgstr "" + +#: 774275396f9e4845a5555975a19daa76 +#: discord.bot.ApplicationCommandMixin.sync_commands:46 of +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 "" + +#: 911175a53ba24fc4a4c0ba2d0cf64aa2 discord.cog.CogMixin.unload_extension:1 of +msgid "Unloads an extension." +msgstr "" + +#: be8975adc11947f5a3b07d92c76bc7f5 discord.cog.CogMixin.unload_extension:3 of +msgid "" +"When the extension is unloaded, all commands, listeners, and cogs are " +"removed from the bot and the module is un-imported." +msgstr "" + +#: 7d49b0308c7541fb82f6fbecf79a8108 discord.cog.CogMixin.unload_extension:6 of +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 "" + +#: 86a50feef9e14adaba9477a06f226bf1 discord.cog.CogMixin.unload_extension:12 of +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 "" + +#: c6b000d16a9943f4be19931fa26a7326 discord.cog.CogMixin.unload_extension:17 of +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 "" + +#: 323fe63c4de8498e9c77dbd7765d0be5 discord.cog.CogMixin.unload_extension:17 of +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 "" + +#: 017dba9563364359a4934fe0a812245f discord.cog.CogMixin.unload_extension:24 of +msgid "" +"The name of the extension could not be resolved using the provided " +"``package`` parameter." +msgstr "" + +#: 6f4ba32dcd474a5bb21ddc0448b64cc8 +#: discord.client.Client.update_role_connection_metadata_records:3 of +msgid "Updates the bot's role connection metadata records." +msgstr "" + +#: discord.client.Client.update_role_connection_metadata_records:8 +#: f35e47ae72cb45fbbd43a5849db2f4ed of +msgid "The new metadata records to send to Discord." +msgstr "" + +#: 157edf86c4214bac9cc97778a341cb81 +#: discord.client.Client.update_role_connection_metadata_records:11 of +msgid "The updated role connection metadata records." +msgstr "" + +#: a88e758c5a764f1b9008d208a82a5baf discord.Bot.user:1 discord.Client.user:1 of +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "" + +#: 6d3be79316ad4aed8e4440853891714e discord.Bot.users:1 discord.Client.users:1 +#: of +msgid "Returns a list of all the users the bot can see." +msgstr "" + +#: b67ba7a02b43409aaa2626f955f79fd2 discord.Bot.voice_clients:1 +#: discord.Client.voice_clients:1 of +msgid "Represents a list of voice connections." +msgstr "" + +#: 9075a14b38ea45a6b0a11e551ef621f2 discord.Bot.voice_clients:3 +#: discord.Client.voice_clients:3 of +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "" + +#: 6487197b421c48bba8784b3fa1ff4ac9 discord.client.Client.wait_for:3 of +msgid "Waits for a WebSocket event to be dispatched." +msgstr "" + +#: 0b048b61ad98439db8940a4d2d8d3701 discord.client.Client.wait_for:5 of +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 "" + +#: 689487a846eb47e093ba8e1d91517750 discord.client.Client.wait_for:9 of +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 "" + +#: 0cef96bb40b84218860e67a2b01b3370 discord.client.Client.wait_for:14 of +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.client.Client.wait_for:19 ee2bd0327d864fb28565cad59831a983 of +msgid "This function returns the **first event that meets the requirements**." +msgstr "" + +#: cd139f56acdc485595a3eb1113c5e0ff discord.client.Client.wait_for:22 of +msgid "" +"The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "" + +#: 41e9fd8669df481ba87c83815fb92f01 discord.client.Client.wait_for:26 of +msgid "" +"A predicate to check what to wait for. The arguments must meet the " +"parameters of the event being waited for." +msgstr "" + +#: b5ccde8f18c74e6e8939f7d64c2241f9 discord.client.Client.wait_for:30 of +msgid "" +"The number of seconds to wait before timing out and raising " +":exc:`asyncio.TimeoutError`." +msgstr "" + +#: discord.client.Client.wait_for:34 ea5b0123a5434897907777cc1da3e32b of +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.client.Client.wait_for:39 fe1e49bf56f0410eb7b43d04fc145ddd of +msgid "Raised if a timeout is provided and reached." +msgstr "" + +#: discord.client.Client.wait_for:43 fbf53c322b9b4a2190fb5211f9148bfe of +msgid "Waiting for a user reply: ::" +msgstr "" + +#: 3f2b62ede5b54e9cadcfbb3edf7e3f81 discord.client.Client.wait_for:57 of +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "" + +#: 374ebcd380c14eaebda917973c9c27a6 discord.client.Client.wait_until_ready:3 of +msgid "Waits until the client's internal cache is all ready." +msgstr "" + +#: 27b08f7dc25947a086a2feceb0523df6 +#: discord.bot.ApplicationCommandMixin.walk_application_commands:1 of +msgid "" +"An iterator that recursively walks through all application commands and " +"subcommands." +msgstr "" + +#: 5492eec6b734488c9e67946a7180b89a +#: discord.bot.ApplicationCommandMixin.walk_application_commands:3 of +msgid "" +":class:`.ApplicationCommand` -- An application command from the internal " +"list of application commands." +msgstr "" + +#: 61133e69adc34f46b680972b64aba970 discord.bot.AutoShardedBot:1 of +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 "" + +#: bf69e7a4021a45c8a77931f74ed76550 discord.client.Client:1 of +msgid "" +"Represents a client connection that connects to Discord. This class is " +"used to interact with the Discord WebSocket and API." +msgstr "" + +#: 5c069020781a42fe96c83e24a1f6c3c4 discord.client.Client:4 of +msgid "A number of options can be passed to the :class:`Client`." +msgstr "" + +#: a05ad8a60fa94a36be6482dc51364684 discord.client.Client:6 of +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 "" + +#: c9df9a316415445bbda61e5dc12eea71 discord.client.Client:6 of +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 "" + +#: c3595a83fa414fa58ebb0c3fe72870c4 discord.client.Client:9 of +msgid "Allow disabling the message cache and change the default size to ``1000``." +msgstr "" + +#: 6c88dd4b014e4fd68019bf91e0e79449 discord.client.Client:13 of +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 "" + +#: 21cc11771cf14b8482b82ed348a0bcc9 discord.client.Client:17 of +msgid "The connector to use for connection pooling." +msgstr "" + +#: 36e77ef20089453bad2c58061b76319e discord.client.Client:19 of +msgid "Proxy URL." +msgstr "" + +#: 2bca727e64604375afc0316e0da77488 discord.client.Client:21 of +msgid "An object that represents proxy HTTP Basic Authorization." +msgstr "" + +#: 22b22764dfe94753af363b0e2e855b53 discord.client.Client:23 of +msgid "Integer starting at ``0`` and less than :attr:`.shard_count`." +msgstr "" + +#: 2994835195fe455b9ba97aa0bf93c946 discord.client.Client:25 of +msgid "The total number of shards." +msgstr "" + +#: 0cbc330e9f874100a24ecdd7f73bf8bb discord.client.Client:29 of +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.Client:29 f78cb44c1747402fa0d2daa48076c449 of +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 "" + +#: d1e04968f26046eb83cc40c32fffbce4 discord.client.Client:35 of +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 "" + +#: 1cf5a217e1c448509380cd0675ac2861 discord.client.Client:35 of +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 "" + +#: 839eb639389f4e90bcaf5390534f7254 discord.client.Client:41 of +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 "" + +#: 4ac529aded574578a8be71ceea066b6d discord.client.Client:41 of +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.Client:48 ff86deee1e964eff876d58a0c1bf9af1 of +msgid "A status to start your presence with upon logging on to Discord." +msgstr "" + +#: 595862fc879e41dbbdea585be33d1345 discord.client.Client:50 of +msgid "An activity to start your presence with upon logging on to Discord." +msgstr "" + +#: discord.client.Client:52 faae2eb41a6849ea931db8d8e3b6fd1c of +msgid "" +"Control how the client handles mentions by default on every message sent." +" .. versionadded:: 1.4" +msgstr "" + +#: 58dbe8273cff49848baf5100136b8653 discord.client.Client:52 of +msgid "Control how the client handles mentions by default on every message sent." +msgstr "" + +#: 9ed5eed0c42248ab820b06215b9b5a69 discord.client.Client:56 of +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 "" + +#: 69d65080cec044e7b6455edd4a0c6db6 discord.client.Client:61 of +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 "" + +#: 061fbfc2e3974aefa0e85a933b169164 discord.client.Client:61 of +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 "" + +#: b43e4d9978ea452bad0b3f920634f71a discord.client.Client:66 of +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 "" + +#: 8431257445754fb5ba6f8bd670885610 discord.client.Client:66 of +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 "" + +#: a151867e23f44624b83429102b15a98e discord.client.Client:74 of +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 "" + +#: 70630f12d1544afaa766f261e18e28ac discord.client.Client:74 of +msgid "" +"Whether to enable events that are useful only for debugging gateway " +"related information." +msgstr "" + +#: 0914818f05e04728aa8d77f5b0d51043 discord.client.Client:76 of +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 "" + +#: c72989c35e494798868c418761624dc3 discord.client.Client:85 of +msgid "" +"The WebSocket gateway the client is currently connected to. Could be " +"``None``." +msgstr "" + +#: bfdaca2ce94b47c491227ce955d6ef14 discord.client.Client:89 of +msgid "The event loop that the client uses for asynchronous operations." +msgstr "" + +#: 49f2ebafe64e46af80bdc5670f75ec65 discord.client.Client:91 of +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr "" + +#: 3cb35c3f35cd4b2ca42e62e2da4cb21d discord.shard.AutoShardedClient:1 of +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 "" + +#: b5375ea69da64b3caa024a700394b923 discord.shard.AutoShardedClient:5 of +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 "" + +#: b23af5d33cea44b7a27c7209f321f2b5 discord.shard.AutoShardedClient:10 of +msgid "" +"It is recommended to use this client only if you have surpassed at least " +"1000 guilds." +msgstr "" + +#: d4eaadf814124f55ab556462d4fbb97a discord.shard.AutoShardedClient:13 of +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 "" + +#: b8867ec06a244683a091e3779cb7d564 discord.shard.AutoShardedClient:16 of +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 "" + +#: 154cb8641e7546fb9fa4fbaf26b840aa discord.shard.AutoShardedClient:23 of +msgid "An optional list of shard_ids to launch the shards with." +msgstr "" + +#: 45591084a7f244f081d9f18faeb96673 discord.AutoShardedClient.latency:3 of +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 "" + +#: 619ba050e1e849f6b4c984c0fe32b011 discord.AutoShardedClient.latencies:1 of +msgid "A list of latencies between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "" + +#: 97f9a62dd3ed4c80a81751723a8c7204 discord.AutoShardedClient.latencies:4 of +msgid "This returns a list of tuples with elements ``(shard_id, latency)``." +msgstr "" + +#: discord.shard.AutoShardedClient.get_shard:1 e94acc6e90f1417a98be41ad60b4db51 +#: of +msgid "Gets the shard information at a given shard ID or ``None`` if not found." +msgstr "" + +#: dee98d04bb7d49cc82b8b1641fe586b4 discord.shard.AutoShardedClient.get_shard:5 +#: of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.shard.ShardInfo\\`" +" \\| \\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: 7d75d87d0698427b8f520c5d1481e427 discord.AutoShardedClient.shards:1 of +msgid "Returns a mapping of shard IDs to their respective info object." +msgstr "" + +#: discord.shard.AutoShardedClient.change_presence:5 +#: fe09ce2894fb435bb45e56115918a23c of +msgid "Example: ::" +msgstr "" + +#: 3804449bf2294064adf9b2e5b242eb29 +#: discord.shard.AutoShardedClient.change_presence:17 of +msgid "" +"Indicates what status to change to. If ``None``, then " +":attr:`Status.online` is used." +msgstr "" + +#: 3d9cee2a830946a296dafe6d7f539aa7 +#: discord.shard.AutoShardedClient.change_presence:21 of +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 "" + +#: cec772a3fc134fb7bb636f5854a3cf00 +#: discord.shard.AutoShardedClient.change_presence:26 of +msgid "If the ``activity`` parameter is not of proper type." +msgstr "" + +#: c11858bd0a2046e5ac236361b14e3083 +#: discord.shard.AutoShardedClient.is_ws_ratelimited:1 of +msgid "Whether the websocket is currently rate limited." +msgstr "" + +#: 771bda0c3a274e548f284047259f561a +#: discord.shard.AutoShardedClient.is_ws_ratelimited:3 of +msgid "" +"This can be useful to know when deciding whether you should query members" +" using HTTP or via the gateway." +msgstr "" + +#: af9ce954ce2644af83ba1462c4d8d5a5 +#: discord.shard.AutoShardedClient.is_ws_ratelimited:6 of +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/locales/en/LC_MESSAGES/api/cogs.po b/docs/locales/en/LC_MESSAGES/api/cogs.po new file mode 100644 index 0000000000..2a23c3ba6b --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/cogs.po @@ -0,0 +1,323 @@ +# 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 , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-12 14:51+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\n" + +#: ../../api/cogs.rst:4 5374666c885c4434b06da0a8790fecdb +msgid "Cogs" +msgstr "" + +#: 458db600a9dc421f888e3b5e7c9f1351 discord.cog.Cog:1 of +msgid "The base class that all cogs must inherit from." +msgstr "" + +#: discord.cog.Cog:3 e1e94c83b83740df83784c2fff922069 of +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 "" + +#: 8ecea32e63eb4fe29620ed571bb7681b discord.cog.Cog:7 of +msgid "" +"When inheriting from this class, the options shown in :class:`CogMeta` " +"are equally valid here." +msgstr "" + +#: ../../api/cogs.rst 1d205dc90db34b6d9d28696d847dee05 +#: 35b5e3289e2e4915a8fe1a7f1955e20c +msgid "Returns" +msgstr "" + +#: 898f5042c0b34b3bad6c57241c7a13cb discord.cog.Cog.get_commands:1 of +msgid "" +"A :class:`list` of :class:`.ApplicationCommand`\\s that are defined " +"inside this cog. .. note:: This does not include subcommands." +msgstr "" + +#: 0397355338a240288c1b0d328ef921af discord.cog.Cog.get_commands:1 of +msgid "" +"A :class:`list` of :class:`.ApplicationCommand`\\s that are defined " +"inside this cog." +msgstr "" + +#: 8c92dad3ecb14b3098ece5e74258e9f0 discord.cog.Cog.get_commands:6 of +msgid "This does not include subcommands." +msgstr "" + +#: ../../api/cogs.rst a548999373424e22a1eef592535cb0e9 +#: c4db6bbac90e467593f54b1cab05f4fb +msgid "Return type" +msgstr "" + +#: 12ea85ca434545618cfed65e71c9d1b2 discord.cog.Cog.get_commands:7 of +msgid "List[:class:`.ApplicationCommand`]" +msgstr "" + +#: 9b9b93d42d1444fdad773c091b29a12e discord.Cog.qualified_name:1 of +msgid "Returns the cog's specified name, not the class name." +msgstr "" + +#: 09a4937043ae42de98974edac587af34 discord.Cog.description:1 of +msgid "Returns the cog's description, typically the cleaned docstring." +msgstr "" + +#: 79a0311d2c504a2683912a45a590a788 discord.cog.Cog.walk_commands:1 of +msgid "" +"An iterator that recursively walks through this cog's commands and " +"subcommands." +msgstr "" + +#: 019b68caa9ae4423a195db1a4caac677 discord.cog.Cog.walk_commands of +msgid "Yields" +msgstr "" + +#: c6b428360ea8462ab87d860eeb14f885 discord.cog.Cog.walk_commands:3 of +msgid "" +"Union[:class:`.Command`, :class:`.Group`] -- A command or group from the " +"cog." +msgstr "" + +#: 483845d65d544491a23375ed5d92e183 discord.cog.Cog.get_listeners:1 of +msgid "" +"Returns a :class:`list` of (name, function) listener pairs that are " +"defined in this cog." +msgstr "" + +#: 91c25427765a4ea29546f1167cdd4893 discord.cog.Cog.get_listeners:3 of +msgid "The listeners defined in this cog." +msgstr "" + +#: 2fb7acbba5b24dcdb2dc03d91ffa65da discord.cog.Cog.get_listeners:4 of +msgid "List[Tuple[:class:`str`, :ref:`coroutine `]]" +msgstr "" + +#: c3661694ba0d4447b0f9fd92354b48d8 discord.cog.Cog.listener:1 of +msgid "A decorator that marks a function as a listener." +msgstr "" + +#: 22b14baebc684734bb4830d6299e5c83 discord.cog.Cog.listener:3 of +msgid "This is the cog equivalent of :meth:`.Bot.listen`." +msgstr "" + +#: ../../api/cogs.rst bd530b05086c4698967d87151c86bf4d +msgid "Parameters" +msgstr "" + +#: 056df5f1bcf2456e9448b7ac18cdf0b2 discord.cog.Cog.listener:6 of +msgid "" +"The name of the event being listened to. If not provided, it defaults to " +"the function's name." +msgstr "" + +#: 988ebdf9035e4565aa89650d9bf379e5 discord.cog.Cog.listener:10 of +msgid "" +"If this listener should only be called once after each cog load. Defaults" +" to false." +msgstr "" + +#: ../../api/cogs.rst 108c54a3aec540989381cab703ffb9cb +msgid "Raises" +msgstr "" + +#: 9dd1deee9f194fffafea26f9ed0c1d66 discord.cog.Cog.listener:14 of +msgid "" +"The function is not a coroutine function or a string was not passed as" +" the name." +msgstr "" + +#: 4f8e7498b5ae43b78c54b7b164dcdd88 discord.cog.Cog.listener:16 of +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 "" + +#: 8540394b44384ceb81c96c63caa5c2d2 discord.cog.Cog.has_error_handler:1 of +msgid "" +"Checks whether the cog has an error handler. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: d763221471154638916ac3d6956b3ae5 discord.cog.Cog.cog_unload:1 of +msgid "A special method that is called when the cog gets removed." +msgstr "" + +#: discord.cog.Cog.cog_unload:3 e9d793cd323741df9e72ffde220b07e9 of +msgid "This function **cannot** be a coroutine. It must be a regular function." +msgstr "" + +#: 724ad9a454b545179a30c4708ea00cff discord.cog.Cog.cog_unload:6 of +msgid "Subclasses must replace this if they want special unloading behaviour." +msgstr "" + +#: bae3ff62cd7046098fd26a064a87ab95 discord.cog.Cog.cog_after_invoke:11 +#: discord.cog.Cog.cog_before_invoke:11 discord.cog.Cog.cog_command_error:16 +#: discord.cog.Cog.cog_unload:9 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: c2514ac91866455db81eefb67426a70a discord.cog.Cog.bot_check_once:1 of +msgid "A special method that registers as a :meth:`.Bot.check_once` check." +msgstr "" + +#: 74a72b4805f9400f99581374cdd6e25d discord.cog.Cog.bot_check:4 +#: discord.cog.Cog.bot_check_once:4 discord.cog.Cog.cog_check:4 of +msgid "" +"This function **can** be a coroutine and must take a sole parameter, " +"``ctx``, to represent the :class:`.Context` or " +":class:`.ApplicationContext`." +msgstr "" + +#: 21d75be906eb43a4839ac7c2ac76eb49 discord.cog.Cog.bot_check:8 +#: discord.cog.Cog.bot_check_once:8 discord.cog.Cog.cog_after_invoke:8 +#: discord.cog.Cog.cog_before_invoke:8 discord.cog.Cog.cog_check:8 of +msgid "The invocation context." +msgstr "" + +#: bc04772b95eb445880b68aa35b50195a discord.cog.Cog.bot_check:11 +#: discord.cog.Cog.bot_check_once:11 discord.cog.Cog.cog_check:11 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: bbe43d3b5dd84335bd98b895da5c5d31 discord.cog.Cog.bot_check:1 of +msgid "A special method that registers as a :meth:`.Bot.check` check." +msgstr "" + +#: 565b81b5cfdc4cdda8521ef12839733b discord.cog.Cog.cog_check:1 of +msgid "" +"A special method that registers as a :func:`~discord.ext.commands.check` " +"for every command and subcommand in this cog." +msgstr "" + +#: 2b94ea8c69b14735aa67ff32dc3c485c discord.cog.Cog.cog_command_error:1 of +msgid "" +"A special method that is called whenever an error is dispatched inside " +"this cog." +msgstr "" + +#: 6a8806d6c4dc43f297f233cc8b7b6ee0 discord.cog.Cog.cog_command_error:4 of +msgid "" +"This is similar to :func:`.on_command_error` except only applying to the " +"commands inside this cog." +msgstr "" + +#: 2e2fb136a8f54e59a37867e585a665fa discord.cog.Cog.cog_after_invoke:5 +#: discord.cog.Cog.cog_before_invoke:5 discord.cog.Cog.cog_command_error:7 of +msgid "This **must** be a coroutine." +msgstr "" + +#: discord.cog.Cog.cog_command_error:10 f45a4e9c378d4734bd2deb4595be8ade of +msgid "The invocation context where the error happened." +msgstr "" + +#: discord.cog.Cog.cog_command_error:13 efb608efd0f84d848d9751acb811d5c4 of +msgid "The error that happened." +msgstr "" + +#: discord.cog.Cog.cog_before_invoke:1 e700e204ccb442a29787cdda38815ca5 of +msgid "A special method that acts as a cog local pre-invoke hook." +msgstr "" + +#: 2d77573f53f44ca6b250e7f6df2489b4 discord.cog.Cog.cog_before_invoke:3 of +msgid "This is similar to :meth:`.ApplicationCommand.before_invoke`." +msgstr "" + +#: d9ccb004627a47bebf30219cd886dd84 discord.cog.Cog.cog_after_invoke:1 of +msgid "A special method that acts as a cog local post-invoke hook." +msgstr "" + +#: dbfd268f9dc34ea49b98669dcbbdf3ec discord.cog.Cog.cog_after_invoke:3 of +msgid "This is similar to :meth:`.ApplicationCommand.after_invoke`." +msgstr "" + +#: 904788c309034bf3afb023d13eecfd71 discord.cog.CogMeta:1 of +msgid "A metaclass for defining a cog." +msgstr "" + +#: 161c4beefa534e7b9ab0609af6d8a6f9 discord.cog.CogMeta:3 of +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 "" + +#: a6eba5b14cd74e789809db87119d7c77 discord.cog.CogMeta:7 of +msgid "" +"For example, to create an abstract cog mixin class, the following would " +"be done." +msgstr "" + +#: 206e4807ffc441bd8d611a6ea0a96b05 discord.cog.CogMeta:24 of +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.CogMeta:35 e1bd95d427ba4763beddd661b91be7c3 of +msgid "" +"The cog name. By default, it is the name of the class with no " +"modification." +msgstr "" + +#: 89b6db804e56474fb08d5a060b7ed69d discord.cog.CogMeta of +msgid "type" +msgstr "" + +#: 459eaf51b3d74a869ea18e53f787fcea discord.cog.CogMeta:37 +#: discord.cog.CogMeta:45 of +msgid ":class:`str`" +msgstr "" + +#: a3bb879d22d1404a9ca12a99597eefef discord.cog.CogMeta:41 of +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "" + +#: 5976a1f483c5445ca1697a4a084bca66 discord.cog.CogMeta:49 of +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 "" + +#: 2ed6039376f64807b6b5820df01912d7 discord.cog.CogMeta:65 of +msgid ":class:`dict`" +msgstr "" + +#: 0194efeae73b4e52b6b48b3cba6e8c8c discord.cog.CogMeta:69 of +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.CogMeta:74 f3c34e2053064a7e9f686c4a5656fbf9 of +msgid "Optional[List[:class:`int`]]" +msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/data_classes.po b/docs/locales/en/LC_MESSAGES/api/data_classes.po new file mode 100644 index 0000000000..5f450eae57 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/data_classes.po @@ -0,0 +1,5737 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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.Object:1 e3d330e0662949cab82a0391b0410305 of +msgid "Represents a generic Discord object." +msgstr "" + +#: 7df007b5e76e4b50975a2244649d0791 discord.object.Object:3 of +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 "" + +#: 7154b922b863489f927fe091d906420a discord.object.Object:9 of +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 "" + +#: 7658bd6c40fd49399cba371bdcf522ea discord.object.Object:18 of +msgid "Checks if two objects are equal." +msgstr "" + +#: ac4fd4f220d34fb99f5d2493dcfd8b5c discord.object.Object:22 of +msgid "Checks if two objects are not equal." +msgstr "" + +#: discord.object.Object:26 fc9c9870cb154ea3a8d22a72d9afe701 of +msgid "Returns the object's hash." +msgstr "" + +#: 6cb23f98f49a4de2847e0f6cb46912b3 discord.object.Object:30 of +msgid "The ID of the object." +msgstr "" + +#: ../../docstring 0027d21072434bfa9e61d89eee793b74 +#: 00f26016f3584690aa670c82b9a5859b 017c522c652a4d67ab5ac50853446afe +#: 022ca6f62fc649d3babfa503e9a7527d 043d80143f22400a9ba620fdc1e586d2 +#: 048431dee73842e5bd9ca06ff90e1dbe 05321a535c4c45878a4699ee78074aa7 +#: 05da6f86d3624c0a86d06e07ee5b9739 07a6ab3ef7b647039bcefeda19b570d7 +#: 08768f5478d74bdeb612abbc25639f61 0945efcada3240758eff2c695d616f32 +#: 099970931aba478bba9567bc704393c2 0a9f06d333124df0aae9049074965a81 +#: 0aeb9fea9e4b43018632dd93355598fb 0b40818e61f54a5582905e47a1d6250f +#: 0b6bdc9f79764717a733eb7a5958f520 0ba8abd38afb4d208cbc471b1d0baa5e +#: 0bf3ec53a297426586cf6b3cb0778b5a 0d8cf03e305c441a937b9d418b558488 +#: 0ddf6e0aaae6472b96fc96294db31540 0eb247412406436aae61c444b85363ff +#: 0ecab01b15ff4d47b40b2a8be16df0c6 0ecc83fddd52488c8b20b391ba65d910 +#: 10706bbef0c04fe0bc85c95ac3cdaa67 111c1eda67474a449b1909c91057e284 +#: 1180d8806e44448a950abd6a27750256 12bac957584c4f3e9957c3790d8bc79c +#: 12ec5971f73e44f688e72c2364359c69 1331bedc359c4d66b2dc832b80857c7b +#: 1419271a3d5f42278de143f56178094f 1557320e46934c6a890023f36203c96d +#: 16385f6ea6d544509a9522555b6ca0a5 1a0161b887e24cc6a04167fb3a4a8430 +#: 1a775dc0fb7642548830259dbf8bb1da 1b41ad05a49849278911c3e2f57c8e5d +#: 1bafc5d20837463b8bbc4817a17f0357 1e0194c8d7b14abf9a7594a7582afdd5 +#: 21d56bd8eba94c109183479433f1c1ce 22b9337396a04120a50a769ba7783e2e +#: 240d3aad39f04f92b476f6ba0e75007f 25b5b26a8bc4446a988bd4a715341cb6 +#: 26fa04a7c16747f393e849a185038a09 271938fe17eb404383186cc86601c0b0 +#: 2842d4409acc41a2964ac2c83972b347 291ea60547144b76a516449bd79c0605 +#: 2b83bce111824301be1bc7186f0650a3 2c2036c4592148828c26aec640f43214 +#: 2d21f8f6b54f4bfbab94c7cae58e1668 2d431f876ab54a9ba881a6e21b29e517 +#: 2e52408878da47499d6d1b5bc5702d5e 2e76e331bdfd4f218c53e1e81dbcb57c +#: 2f34a73afd054f428b94b075a4815efd 2f7adaa34ac442e5981bc3551e6ee304 +#: 3042f41661384453bca6bed5ee606ddf 308a58630c4e48c2acc2d2a709e660fd +#: 30de2897525b406083d3f48b5a1418db 30e2db665ac648c6b407f4a5a22236ce +#: 32523893e76240f6a5dcf0396ab262f2 3307d1f7b7ab4197a9b47b19d00c6ae2 +#: 332116481489472fa0379be9d3ee5183 334db0f3a4d044baa2e9a527992babca +#: 343b6b213d60480795e500e07999b199 36493d01dd6c4fe0a9611cb90ef7adde +#: 37389512c06c42c1b0ba531669e662b5 387e582afe6e4f83afbaf4741f01bda9 +#: 3a4cc3c7a2f44c42ba01f6c327bcfe60 3b41f6a4357346aebbe6be7211a1dc74 +#: 3cde02c1afdd471284767db5f3c67801 438654536c164cb68505e44afa66afd0 +#: 45420bc3f5e249dd8ef820bdb4863ddc 46bc6a8a94a5418fae057a531eb63d60 +#: 479d10110b8c42eeaf3cbfc246115ff5 48792da9ab7c45cfb04b9501aefaab99 +#: 48f66793b20640df8197df7d2cb16b1f 4964a5a57dd74f9d9819784be3f86598 +#: 4aaa6c7ef78c4e7f8fcc3c912b436465 4afe29e6fc734eacbe036bafac23ad5d +#: 4cd59366d6f8480b97e02cdd4983abfa 514450299aae4f7ea80762039024ff92 +#: 530e6956dbfa465a8855e5b8b2e6529f 53af18c9683b4c58bae9c43b379fe6ed +#: 541c27115cc14fe784c01a55df4a0ef9 54d86a1d1b3d4c87b667471e1a7d424f +#: 555008a862ee4c4a8619976bbbc41f9f 56a7cb0b34d64a34a523e5914f8b3ebd +#: 586abb76849443ca9374c8c01388153c 595754fd5f71410ba598bb7ea51c785e +#: 5d194e2b41154c9abe702d59bd5d87b8 5d20cdf35cf44064b8c208f270ffa578 +#: 5e68d38f10854702af0a477a1252267e 5ef83e4ad25b4553bd0adc06b645a44c +#: 61890c35ddda470c8f8bf066002e5147 622811c4e3f2492dbc3d8ff2e4860426 +#: 625201c3305e497b92e683def6b3dc90 63b5b77cc34a4447970ce8a9d903d592 +#: 6564a1c5b0c945989e70dc6792bd0af6 656fc65fd9154011826827291c6d9954 +#: 66c04714eec14cbfb557be1d0dcde66c 674e78410f3641199148d66412633ac2 +#: 676bf364d0374102b25a4ec18025fc50 68c6db8617d6400e9bd966b1c76a6bfe +#: 6a0938ead71746dca43216b8b77e6b97 6b70cb17e1624835a9cfb9147b58ae22 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 6db56029d8d0485abf50e5258830aff5 +#: 6e2e7aa2a7c449a99e8f05fdfee3dc1a 6e78c347124a437e9ce2a1706b8ce448 +#: 6ed6d4bd70d0408184e676502aac83e5 7051f41b9adf4c449a90b92631a80a5a +#: 72021dfa95f04d84bfd284cd76184bd1 72152fd7671841849eb30091200777b4 +#: 723831052aca4c2d94163331d498fab4 72ff8ae688734fdda42a75fb9f1fee05 +#: 74d5fdba4b784f47b2373e8c543a62b3 756b428ff3f9484e91ab6d231993be61 +#: 75bc3fd6afbb4053bf194d13f0323b9b 766a1958bce742a6ae274cabddceed7f +#: 78f9fbbbafee4ccf8c3151ee86646c9a 795531d790ae4bdc887f572380fd782b +#: 7abb32cd5e7e492c80ed486b5d715766 7adf58b2850b4c3cace6e0f8c3b25774 +#: 7b8f6406ec4642e1b314cd0218e208e0 7c47ec299942443c9cfde05c7168bf78 +#: 7c915d1ae03a40fa85a9285d4169001f 8011db96a73b497495b8da7fd21bc04e +#: 80c538be47764e71bee2f99f7603a06c 80e1f7f7c0354419a83fc52ceccb883a +#: 80ff436f0cb246d2a3649bad2f9256fe 82b721e671494d2e9171a84d62924a8d +#: 83632daae24b47c8b698763bdf3d970f 83eaedf9ccb0402188314be4eba4c1b8 +#: 859d68d0649d49978f9dc52e463ae367 85bf5d043cd7481586a27becb5aedf53 +#: 86b83d3855a7410dab8d07a852997d06 87883d8c38954e08bd11c89f8bb6119a +#: 8794d260d15f462586696cc249b31753 8922f30652e341778ca2679fd2df842e +#: 898502a307924edf9655f71595e0fa33 8a712d7011784f359c71e028262ffa21 +#: 8be37fddfa53406d885f46e06939fc7f 8c797ff669bb4b16957fe833875ea5a3 +#: 900bf8ad7d29465bad123cb63dc1fbf4 91034680d87d4e769f7024802b245184 +#: 93af319c1cb04baeb24e35eb309888dd 94239fae42574c6d9741db20ce182778 +#: 94c25f717b2e4ce5a49b7c037e2974af 95e6b772d9f5492787b72ae79a2f21ba +#: 97e0ed99fe2a4484884c6f02b14cae42 98d087b2fc6d43f5bcdbb5034fcd2874 +#: 9ad59de1bb9b43ebafec2daa003c4857 9bc030383d614fe099c3ddb3ae665975 +#: 9db5d6351c654f458dd1a805c1987d3b 9db63304033a4c4fb87c0c59513b7b37 +#: 9ec1e7635e9347fca8e8ad13fed75c35 a0051f3395e145e995fa38feaacbd40e +#: a290fc40d1504ecabe2c6f9e4cdff828 a46eb1f855fb4090ae3ff3bc5c41e78b +#: a54607940629492b9c1c03727ac4de4e a5ec3f2a185146be9694cb852efcca32 +#: a6d5b3337e5a46ed85bc3cba26d926b5 a9e8a6883b98446b9ecb71f7efd7ab86 +#: aaea374fdeaa44cf959653df9872fafd aaf8f62bd9b44447b3797e662e88eb03 +#: ad2ad0201f5341458331f79ea7fe24dc ad37d95cc3f34217b6c368e1612c2f3f +#: adce858a33fc41628e451f18a9f95675 ae2a7e3a8981408f8a71d54d1023d5e1 +#: af2b5a1b3db74038a31df759ea7c8813 b32eba777e2e4177bb2b6337a6d87d36 +#: b37b5a4488414c429f152387e580e715 b8c8632698164b6b9005afa8ffaeaebf +#: b919c311805e4679941d0fb5b06c640c ba1f9984b24c45e6af8b1227166a8400 +#: babe4dc2b2794de0848f10412ef200d2 c0243d1d2d6547679342e9e9035b4217 +#: c06aab6000c143bc9084e6898cd79330 c0b5a0d23eb144df849ae21e56e1c8cf +#: c3578a055cfd45d49e0697ee5d75fc92 c58374562b1b4347bea43d0c8067b178 +#: cb21bc80f4714ee38c11bb9ff9f431ea cbd54ccdf75b4d3b988323c93d86d554 +#: cc8a86aad230448e9817fe2ee74eac67 cc9e190084d249f0956e2fff9d7ca49c +#: ccc9fa8f40104a339b6f6da0358ceeb3 cef5d936d9bd4a4884cb8c8a7445c286 +#: cf4ebf89a0534e4daa26dc605e0dd572 d04be24516744c6cb0d8a75985d21242 +#: d075a73e2a544d97b54c03da5b2cddc3 d2cea2df05de4fcf810c8ac9ac4dd1de +#: d2ddb3d0f55643a4b4e708853773a4ee d34962ba11bb42489f42a95c966ad7ab +#: d658a315c6b74568a6988f7cbfd0bfd5 dc0311d967bf4174973034b392f372b7 +#: dc34343c5bdb4fdb935aa8f4b1ca285b dc73ce8570d3470f9b10f8567b0faebc +#: dd9ec6d74605486896f5fc9ee837ed06 ddc3bbe85be94de08cc58708dd67bfab +#: df0fb4b2f1aa45beb6b6920a8e335e0c df9a04ac7fcd49f6a4af42061ce2a224 +#: discord.ApplicationFlags.active discord.ApplicationFlags.app_commands_badge +#: discord.ApplicationFlags.application_auto_moderation_rule_create_badge +#: discord.ApplicationFlags.embedded +#: discord.ApplicationFlags.gateway_guild_members +#: discord.ApplicationFlags.gateway_guild_members_limited +#: discord.ApplicationFlags.gateway_message_content +#: discord.ApplicationFlags.gateway_message_content_limited +#: discord.ApplicationFlags.gateway_presence +#: discord.ApplicationFlags.gateway_presence_limited +#: discord.ApplicationFlags.group_dm_create +#: discord.ApplicationFlags.managed_emoji +#: discord.ApplicationFlags.rpc_has_connected +#: discord.ApplicationFlags.verification_pending_guild_limit +#: discord.AttachmentFlags.is_clip discord.AttachmentFlags.is_remix +#: discord.AttachmentFlags.is_thumbnail discord.ChannelFlags.pinned +#: discord.ChannelFlags.require_tag +#: discord.Intents.auto_moderation_configuration +#: discord.Intents.auto_moderation_execution discord.Intents.bans +#: discord.Intents.dm_messages discord.Intents.dm_polls +#: discord.Intents.dm_reactions discord.Intents.dm_typing +#: discord.Intents.emojis discord.Intents.emojis_and_stickers +#: discord.Intents.guild_messages discord.Intents.guild_polls +#: discord.Intents.guild_reactions discord.Intents.guild_typing +#: discord.Intents.guilds discord.Intents.integrations discord.Intents.invites +#: discord.Intents.members discord.Intents.message_content +#: discord.Intents.messages discord.Intents.moderation discord.Intents.polls +#: discord.Intents.presences discord.Intents.reactions +#: discord.Intents.scheduled_events discord.Intents.typing +#: discord.Intents.voice_states discord.Intents.webhooks +#: discord.MemberCacheFlags.interaction discord.MemberCacheFlags.joined +#: discord.MemberCacheFlags.voice discord.MemberFlags.bypasses_verification +#: discord.MemberFlags.completed_onboarding discord.MemberFlags.did_rejoin +#: discord.MemberFlags.started_onboarding discord.MessageFlags.crossposted +#: discord.MessageFlags.ephemeral +#: discord.MessageFlags.failed_to_mention_some_roles_in_thread +#: discord.MessageFlags.has_thread discord.MessageFlags.is_crossposted +#: discord.MessageFlags.is_voice_message discord.MessageFlags.loading +#: discord.MessageFlags.source_message_deleted +#: discord.MessageFlags.suppress_embeds +#: discord.MessageFlags.suppress_notifications discord.MessageFlags.urgent +#: discord.Permissions.add_reactions discord.Permissions.administrator +#: discord.Permissions.attach_files discord.Permissions.ban_members +#: discord.Permissions.change_nickname discord.Permissions.connect +#: discord.Permissions.create_instant_invite +#: discord.Permissions.create_private_threads +#: discord.Permissions.create_public_threads discord.Permissions.deafen_members +#: discord.Permissions.embed_links discord.Permissions.external_emojis +#: discord.Permissions.external_stickers discord.Permissions.kick_members +#: discord.Permissions.manage_channels discord.Permissions.manage_emojis +#: discord.Permissions.manage_emojis_and_stickers +#: discord.Permissions.manage_events discord.Permissions.manage_guild +#: discord.Permissions.manage_messages discord.Permissions.manage_nicknames +#: discord.Permissions.manage_permissions discord.Permissions.manage_roles +#: discord.Permissions.manage_threads discord.Permissions.manage_webhooks +#: discord.Permissions.mention_everyone discord.Permissions.moderate_members +#: discord.Permissions.move_members discord.Permissions.mute_members +#: discord.Permissions.priority_speaker +#: discord.Permissions.read_message_history discord.Permissions.read_messages +#: discord.Permissions.request_to_speak discord.Permissions.send_messages +#: discord.Permissions.send_messages_in_threads discord.Permissions.send_polls +#: discord.Permissions.send_tts_messages +#: discord.Permissions.send_voice_messages +#: discord.Permissions.set_voice_channel_status discord.Permissions.speak +#: discord.Permissions.start_embedded_activities discord.Permissions.stream +#: discord.Permissions.use_application_commands +#: discord.Permissions.use_external_apps +#: discord.Permissions.use_external_emojis +#: discord.Permissions.use_external_stickers +#: discord.Permissions.use_slash_commands +#: discord.Permissions.use_voice_activation discord.Permissions.view_audit_log +#: discord.Permissions.view_channel discord.Permissions.view_guild_insights +#: discord.PublicUserFlags.active_developer +#: discord.PublicUserFlags.bot_http_interactions +#: discord.PublicUserFlags.bug_hunter +#: discord.PublicUserFlags.bug_hunter_level_2 +#: discord.PublicUserFlags.discord_certified_moderator +#: discord.PublicUserFlags.early_supporter +#: discord.PublicUserFlags.early_verified_bot_developer +#: discord.PublicUserFlags.hypesquad discord.PublicUserFlags.hypesquad_balance +#: discord.PublicUserFlags.hypesquad_bravery +#: discord.PublicUserFlags.hypesquad_brilliance discord.PublicUserFlags.partner +#: discord.PublicUserFlags.premium_promo_dismissed +#: discord.PublicUserFlags.staff discord.PublicUserFlags.system +#: discord.PublicUserFlags.team_user discord.PublicUserFlags.verified_bot +#: discord.PublicUserFlags.verified_bot_developer discord.RoleFlags.in_prompt +#: discord.SKUFlags.available discord.SKUFlags.guild_subscription +#: discord.SKUFlags.user_subscription +#: discord.SystemChannelFlags.guild_reminder_notifications +#: discord.SystemChannelFlags.join_notification_replies +#: discord.SystemChannelFlags.join_notifications +#: discord.SystemChannelFlags.premium_subscriptions discord.activity.Activity +#: discord.activity.CustomActivity discord.activity.Game +#: discord.activity.Streaming discord.colour.Colour +#: discord.components.SelectOption discord.embeds.Embed +#: discord.embeds.EmbedAuthor discord.embeds.EmbedField +#: discord.embeds.EmbedFooter discord.embeds.EmbedMedia +#: discord.embeds.EmbedProvider discord.file.File +#: discord.flags.ApplicationFlags discord.flags.AttachmentFlags +#: discord.flags.ChannelFlags discord.flags.Intents +#: discord.flags.MemberCacheFlags discord.flags.MemberFlags +#: discord.flags.MessageFlags discord.flags.PublicUserFlags +#: discord.flags.RoleFlags discord.flags.SKUFlags +#: discord.flags.SystemChannelFlags discord.mentions.AllowedMentions +#: discord.message.MessageReference discord.message.PartialMessage +#: discord.object.Object discord.permissions.Permissions discord.poll.Poll +#: discord.poll.PollAnswer discord.poll.PollAnswerCount discord.poll.PollMedia +#: discord.poll.PollResults discord.shard.ShardInfo +#: e0638cabbb314a708cce6a711c54277d e0a778d68fae40dc8d7261caefcefe8d +#: e10a63e1deab42fe8c6fcd7d8932ba7d e18aa45ec854422f83b67d44e8093129 +#: e1e21cd951014bb881f6c9020ef6b249 e1e66fbf26414961ba921c6f81963dde +#: e4011bea52634c7ba64aef6135dffbd2 e469c94fb75444e1a2f5591e8ca7b20d +#: e4b22c7d25c6474db104695dcfa33389 e558da29e7b940b391be5188af924e25 +#: e6bfdc42ce134a04bfb90118a9947aa3 e844742addea41dd90103acb9655f516 +#: e87327aef4154502a8aa1c5a3dfb2470 e953b549534146b28f2750fa2adf3324 +#: ea47348b77604cd6bf327c57b7ff3d6d eb490dc96ae7456190afa1256c795173 +#: ec11ab01f4b74ee3affaaf3d4750fee0 ee65277801b647d4925e916e6c34f224 +#: f03cfac3b21b4c87b722760675402972 f0b2856588244fd3a2765809b32eff21 +#: f15f5916f3c44904946502c7f1bc41b0 f174cb4e779e4eda866b2c452a23bc39 +#: f1abdb91350a4b6fa35df6a03223f4ed f2c8b1fc5b0349b3b47cf0bf7adfa959 +#: f35cb50cb1074b16bba2d35a545a9434 f401a12fd0b344c093abd03eb957c407 +#: f4b5a29e047f49c391e8f8314e7befd1 f5098309919d408187f82e02e6104de1 +#: f56dc653e11247878aaaabfbcf24e3eb f6bdf44383bc46b4a7d3e1b85a41b295 +#: f91c1bed2eef4c1989dcfbdf50a1a3e5 f9d805bdde9049048627bddffe19f7fb +#: fad24603226046c29774b4a23e166fe0 fb4ac4db321c4be3a323d2ba4ba33e4e +#: ffb6921ba007446f9ef96812b7f54ea6 of +msgid "type" +msgstr "" + +#: 0a3305279543462d880226cdad446ec5 218c437278cb406297008929bd5a0ba5 +#: 42d8d38cc1c44c92ab537f362783eacd 45f1615d0fc24023b49ded37964706cf +#: 47963b10a3744670a53e06986a02d383 52a0667bcce74d4a99ae7e4cdf857c36 +#: 6674934795ef4e7c9fb97e9e9883e91e 6c2d449763d548c3853211f24df2de8a +#: 7773bc4ea03b45bc9e2c191bc74c4615 787271a8ad0043a4b44cc5a717c8b26b +#: 7f6fae16d09e4c24a3831192db9f7b69 83ced52f44bb4a1c95f0962207ce50dc +#: 8ad759d221664ccfb289a4e043067be1 964db6a3fdd44cdfaa6651e0da067ab6 +#: 9ab47f660f9d45839555ecd57c543291 a1cab8f5ea764dceb240e919bf6fc164 +#: a224f31b1e4e4be3b6be1f3c00e8dae7 b0a2bb9f3648423fa099420af4cdce91 +#: bf46c96b2d1e4d83b3de8317b10ed6b9 cc58c7455c6949e9af4aa545ac3f3363 +#: db080e1a2b944e0fb7defe029a83fea9 discord.colour.Colour:32 +#: discord.embeds.EmbedMedia:22 discord.embeds.EmbedMedia:28 +#: discord.flags.ApplicationFlags:42 discord.flags.AttachmentFlags:42 +#: discord.flags.ChannelFlags:42 discord.flags.Intents:52 +#: discord.flags.MemberCacheFlags:55 discord.flags.MemberFlags:42 +#: discord.flags.MessageFlags:44 discord.flags.PublicUserFlags:43 +#: discord.flags.RoleFlags:43 discord.flags.SKUFlags:42 +#: discord.flags.SystemChannelFlags:47 discord.message.MessageReference:18 +#: discord.message.PartialMessage:41 discord.object.Object:32 +#: discord.permissions.Permissions:62 discord.poll.Poll:21 +#: discord.poll.PollAnswer:10 discord.poll.PollAnswerCount:10 +#: discord.poll.PollAnswerCount:16 discord.poll.PollResults.total_votes:4 +#: discord.shard.ShardInfo:12 ebadae496ec1449eb4ea02cf169791ba +#: f50f1b6c260e43d7b16bf05da41e75e5 fe60f825ecaf4d3799c29560a2ed399c of +msgid ":class:`int`" +msgstr "" + +#: ../../api/data_classes.rst 014ae19c517c48f6a091a28d69a8b3a5 +#: 027c0054d7d548f1b4bc8c8c8c43f495 02e6b4f375dc4103b249b4debb40ead3 +#: 0416378d9e5d457091e35bbf5041c0fa 0dda19c3dbad40db9bd17f8f9c95b6d8 +#: 11779101e95d4758a5b7e2141370db3c 17d3622dc479450a9951e9f01f4e961e +#: 184002a4004741bfbee0e804836d09aa 198e7587528c44e896b664ecb8476b54 +#: 1a930f661aa84f6dbe32081784400b6b 1c5920924a154135bf274bd93de64901 +#: 1ef3bdca0a5e4973b00c7edc461c73b9 233276ef38364b66a3994072054270b2 +#: 2ad46d0c58ac40e58256e159dad0f520 2b9e9159682349eca87ed0a14bbc509d +#: 2f58fb32e82f4b27b0e083777aa0101f 349f89275e3c4309adc923dff891ba65 +#: 409871af4d0049db9007b8fe36fb61eb 41838a50196b4f6281147969c43977d0 +#: 42d656cfc6fa4a4884e3d98e1f836b7d 4379a2c0216641db849a6a1f717afc5e +#: 4bc9514dda874f0699ae982d41153a3a 4fda4bfd2da54d8dbad0defab5f3bca9 +#: 520bcd5daf714096a5711596aba0925e 56c138e55f804de48d4b011ead54a11b +#: 5d804aa2f2294f5a825b41b27e50f690 5e6520a34ccf48d6a972696414029f56 +#: 5f14c630c24a475d91e0fb178bb5437c 62c0635de0e14e85b11eb228a093d50b +#: 655139ace0cc4b5c98ad98015e93ab4b 6ae6e43ff75e4d2295f3c6e8013e8400 +#: 6b1cf7375d8a460e98fd83de29699b4c 6c53c2fe1d1142bca2fb55a07f4c83e8 +#: 6d68ababab8f4e51b1a2f08e47eaba29 73eae0b22fa84a4d9434043893740779 +#: 761d91a52337462a9dd313c632089619 77b3782ffd11488d92b177c4dd03210c +#: 78e9e8f3dc1c42f09b8e0d1c62f9f9ed 7935cfc62ff049abbeb4e9a2086e6d8c +#: 799421617bbd4e5889e222fc2c9c9aca 7ace093568484906a6c5f5957314d74e +#: 853c9381504f48b593ba954d0afb178f 876b2ac7229145b4afc3b5a3551e1248 +#: 89319c51dbb4429689c6f91effe4cb08 89e6520d4ff047f18dee15ce511b202d +#: 8b31f76dc94f4072b4d58fdd18c1a585 8bed657aae5f41c0838455b3bf39cb02 +#: 8cbbbb351bae4d87a5d58d835b3cd502 8fd51c9c6f6441cb89dcf33a3e22661e +#: 9510d18349da4e9ea1e3032fb0fff282 966eda34cf1540898516b9b10f19bc8e +#: 96fb28de02194c4f82a850f49c3eb83c 970a3e82e49e47f896bb44c4dbe65093 +#: 9e240c0ff8c14c89bf512a5f72030139 a5a5caa1bed843399e2325b7cb8f7cff +#: a866a6682a3e428ea5d9bbb0c4ce4499 b36792625cd14959aef6825b394d7e65 +#: b5ea8629223b4b5b93a1742e5a53077e bc227baf3a35408b8f5380ffa74958b7 +#: bc29a932226d4238a4d291dedc2e59ac bc7c7c91b3c04defa0f30580aa3e581d +#: bebd95e10a7f4a0a86c37b4b3b2930bb c0113e3af80a44488f7b96ebda8e2c90 +#: c06664f32316496988303b5793e859d4 c4046998e69c412b8ac97d13a888cb04 +#: c4ffc614443a4b038c39c18da2d3ca3e c8497c344721448497b3654a1602f755 +#: d31e3910fa984089ae93db3f29751211 d463224bd212438b803261a9fa1b966a +#: d84515d0f9cc49bc809bbf957eb655a7 d8d4b29cd6174ed69807f5d8527a8500 +#: discord.poll.Poll.add_answer discord.poll.PollAnswer.voters +#: e10fd84d147f4b71b2d38959065e253c ed60de7fca634eb19790777106f69830 +#: f87cff025dd245aaa035cf395d41e256 f8e00c5b3337461f956fbbd25e02ae62 +#: f920935e9ce4486095fa73daf51d998d fd587e8eeb714f238cef948388b6cc39 of +msgid "Parameters" +msgstr "" + +#: discord.Object.created_at:1 f057925900a64a8ba20a93fbe5494253 of +msgid "Returns the snowflake's creation time in UTC." +msgstr "" + +#: 53a32582704149b99db505d1034792e7 discord.Object.worker_id:1 of +msgid "Returns the worker id that made the snowflake." +msgstr "" + +#: 65dff6ade4594d2b8b83e2db2f87e06d discord.Object.process_id:1 of +msgid "Returns the process id that made the snowflake." +msgstr "" + +#: 824e681e53414a8c8cccf61fd3f837e9 discord.Object.increment_id:1 of +msgid "Returns the increment id that made the snowflake." +msgstr "" + +#: 0d8b907771e64532af760f81f51e6054 discord.components.SelectOption:1 of +msgid "Represents a :class:`discord.SelectMenu`'s option." +msgstr "" + +#: 836aee37573f4fb99a2e2ba8cd2ac24e discord.components.SelectOption:3 of +msgid "These can be created by users." +msgstr "" + +#: b0f1217cfaff4c189043c1907c804416 discord.components.SelectOption:9 of +msgid "" +"The label of the option. This is displayed to users. Can only be up to " +"100 characters." +msgstr "" + +#: 05be8ec42ca842988501f59cc34e4060 096b0456bb834dccb91c5d2c026df8af +#: 281a5156098641b885203455b0eefbfb 3067ff3abcb343c69e5f3b774b1707b4 +#: 3450345a2d7c45aea36065249b69db89 3db498623a9941f1b44ae0582b1cef87 +#: 3e01ff84653e46bc82c16d9c2295c154 3e43a1357be14fee8928f846d8d55f5b +#: 41859130077947c28a61896fdd0d7930 423345f4c1fd41c8ac177257fe9d734b +#: 537df26e27624f61be7e52e144e4889a 6523dfc5793c46f3a29b311bd08e2f6b +#: 6d1a5a95476049769c793bf45d8edc94 711d883481334e1589f08b99598207c9 +#: 857cc0236e5240ca8abdd3b1e5be2ced 8c3c40fe88bd4eeea7eb22c62cee063b +#: 954985a9ab0a4c4985decf0c2f332027 bf029a45ccb14764ab8bb9e4b6849d2a +#: c40fe8ce55c74105ba994f640e69d85d discord.activity.Game:31 +#: discord.activity.Streaming:55 discord.components.SelectOption:12 +#: discord.components.SelectOption:20 discord.embeds.Embed:25 +#: discord.embeds.Embed:34 discord.embeds.Embed:42 discord.embeds.Embed:49 +#: discord.embeds.EmbedAuthor:9 discord.embeds.EmbedAuthor:15 +#: discord.embeds.EmbedAuthor:21 discord.embeds.EmbedAuthor:27 +#: discord.embeds.EmbedField:9 discord.embeds.EmbedField:15 +#: discord.embeds.EmbedFooter:9 discord.embeds.EmbedFooter:15 +#: discord.embeds.EmbedFooter:21 discord.embeds.EmbedMedia:10 +#: discord.embeds.EmbedMedia:16 discord.embeds.EmbedProvider:9 +#: discord.embeds.EmbedProvider:15 discord.poll.PollMedia:9 +#: e33efd7125ad4ac3a80b14823659d414 f059507051fd483ba9758c6261782f9a +#: fc861202507f4454976c8563dc3bc383 of +msgid ":class:`str`" +msgstr "" + +#: 579e6accca914c3998466750119550fe discord.components.SelectOption:16 of +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 "" + +#: df26f5a7b24d4b6d906959574c93288e discord.components.SelectOption:24 of +msgid "" +"An additional description of the option, if any. Can only be up to 100 " +"characters." +msgstr "" + +#: 1829644e9c8741b9ab3d3326ded2df0a 1967cc9d9cd34c6bb77c73b4199a36ee +#: 2e97d4cb22bf4a44adf997fe1db3bec1 3963803bd3104b1f89165daeab20d80a +#: 50e2086678c1489a971f1fcf606cd6e5 510dcfdc61e84b5181227d4074373a12 +#: 5e3a41afb3fe4f0bac828fa0417c1316 761f0704bea54d919239e0ee7f1ea028 +#: 94c28ca6a1b143378f64a5bd86011098 9bd8c36d03f641e19b38a882dc4fed9c +#: discord.activity.Activity:22 discord.activity.Activity:28 +#: discord.activity.Activity:40 discord.activity.Activity:46 +#: discord.activity.CustomActivity:27 discord.activity.CustomActivity:39 +#: discord.activity.Streaming:29 discord.activity.Streaming:35 +#: discord.activity.Streaming:41 discord.activity.Streaming:49 +#: discord.components.SelectOption:27 discord.file.File:30 discord.file.File:36 +#: ea836c1ad5a24a3382168e4163dee891 eee38b56d2064a69a28a365348ff00ed +#: ef4f169f372d46c294753d8d5a1645c6 of +msgid "Optional[:class:`str`]" +msgstr "" + +#: 5c9b407cffa7482394bcebc4fc8cd412 discord.components.SelectOption:31 of +msgid "Whether this option is selected by default." +msgstr "" + +#: ../../docstring 023b074f6dcc475aaedb6de917072aa8 +#: 0247ccb90f19434d8a129062c64a5350 034f5658560a46a48f6392d1a929bbd7 +#: 03f300f26d4f48cc80fc6e3c2c2b8167 0651aa5d20564cebb93686571eb89c48 +#: 076a5dc819bb4d61a71105b78c5f629e 092d7225823a46539e6ad30d68510c92 +#: 0b09a80336504ab7b84d69f7be65a5cd 0f1f4d85b25e469a8c1812a92bddce73 +#: 122490a7d22d4194a59c8d99024f3d9e 1449086c7f6c4aad9397ad61d8f218cc +#: 161aa3465ff54b8eabe605b3e1effc75 162c695ca8d04419bce81c1a3bb4c8b8 +#: 190f26e90b9048b1bf7c43e5cd74d5bb 19c9f164d2ea4e789cfb9d3c03244612 +#: 1a37d672246848f6a0249253c9890e56 1bd2fe7cfa7442648f6b9c5bd3d60b3e +#: 1c9bcfbfabcf4447af13173772e0dba3 1dcb47205d9b4d9d93acc731ff22f461 +#: 2725eeabea9049eb875dce03f04a7bca 29e0dee80c71488eac966d6f67bc6a71 +#: 2ab8e4f04a324d009555d2adfcecc01d 2aee005c87ce4271a2ddb02d70d12f81 +#: 2aee586b807140b48f9c2a5a4b4d8104 2af265ceab234800996540fb35919f2b +#: 2c1c87d5592e4e8ba6d282a4981aaf31 2f7d7697272d431bb5a00f740d81976f +#: 326278ce171e46fb892074ec17d63e86 32c5e0be39294e89ac978f1190338f88 +#: 3461eb669bf74f97b82aada9d35a05ef 3526974cff1b4c1ab4f5b2f5a77f8dc9 +#: 363d37055c0346b285efda529d86c341 3807f6c7d5544fa38429251c6b27a1bd +#: 3b338693ce4d45c0ba0de9941e7f24d7 406a8d0c253648168d9be8ec1ccf39a6 +#: 42237f252bd849e39e6cd944b145593c 42d8ce81f67d4027b1b5acc76994d83d +#: 436e92527607479788d3e44c4084edfd 467fa3befa1e427284239c30608436c8 +#: 46fa3239adde4e4e8c329454531c38d3 476538d265a44bde8323907d4baaf749 +#: 48ab8977271645c891958208058f6d8d 4925fccfa0a940c8a56591683e21bb9b +#: 49614854fc634c1da9e0a5242ae3654d 4a064daa74db47bca9ed367d70b88ee5 +#: 4dd9121233c4470796f3ada6268840c6 53edbcaedf584bf2b660455f286ed8f2 +#: 5cb5038316504e80891ad677e4e02597 5d3cf6ddc99b4ab08bfbce020e2d455b +#: 5d5436062ab84738854040a158cf9060 5e77c1cbf15f4edbace963555bada8f4 +#: 5f48402cb5f24aa28389ee0ef8f3a2b4 61feeb01ad604206ad1316409f3bd8f4 +#: 626710d925434b149242cde63bfeb22f 6494cc79677747158ced06008fb51592 +#: 655b339bafc8433e9aaab4de0ce88be5 665ac6dbc44d4748909806eb00b2ac05 +#: 690f9c0ef7474dc8ac7288893440d38e 69c1c9cd77344dcebca1df3767348cb0 +#: 6add0d50f83a491c89f74947a5d5fde2 6c879743725140748a66b6fcbf2125d9 +#: 6eb0ddd4b88044a4be85e9ee845f260c 6fd5a66516d5472b995ad2814765f96b +#: 70a9356820d346c28761cc3bcd939082 7186fd1920ad48c08b8c0b576bf3e70b +#: 7423abc3cc524d34a8f85edbe0dc35c9 76f776d31f5941ec93f87361437a6426 +#: 77df8813440c49ac81b72e95c3b7c0ba 77ec92f62db14901a099b1dd6847dc2c +#: 793013028d4c45c3bad83018dbcb3e85 7951821ffae049fbba272a2ed6671a72 +#: 7cdf2f906ed044deb6012048150da019 7d892157a7e147d1bd2af8a780e5692e +#: 7ff8f88daaf64e81ae8e54a9a098fba8 80764aae9c40480b9b76e57c0fa3c330 +#: 80c7ced8fb0f47a0b7a46c954fa4015a 8131de1784d84c66a45d155df88cf3cd +#: 835524acb4754da58a00724f6d775a60 837f69b4581c4526b1073d76f872d646 +#: 86f128d4812b45b7b0e9ae03e97d4c4f 89227920430342b4830b7859636aa3a2 +#: 8b13ad081fb949e7830bf07869b61edd 8dc9c1ba4283454196f34e1b5a8dcd23 +#: 8ea3e2f43d9d4b9ab461e36850149f80 8fc286dafb864e5abcdfdee1229827be +#: 94863b353ddb4c0a86f4c849f057b4c4 97e4820420da426a91acebda9917aa78 +#: 9a6ea5dedf494f51beaae3ba322d26aa 9b63d6e44d5e4c33b9e34ccc11e0ba80 +#: 9d6fb769a9164e198a6cff642894fb4a 9f242b4e5a7b4a62bc2e197d63251af6 +#: 9f6d4562beb544e18ea933bd743d02ce 9fae5284d071415d99bfd9627416e8e1 +#: a152e7388fb74304b5b204311d8c69f6 a1a7cfe5e59a4d34b6c36e5fde156571 +#: a2010c59e68c46a595ffdc18774dde28 a42e3115b05a47369cbad4a740e55491 +#: a4a15f7bc8854748b1f35cab781c3800 a5e8a437dc3b4f94a3178f00d7c9d155 +#: a5f1a0069169465c8d1270fc161a67fc a7a76ff28aa948308356069f92acac65 +#: ae44222339b04401be8bde84be82516c af8bb8d770714397a8f54c213dc2b314 +#: b152bbcee768493eaedb1704b92055be b216ba49be9c4832ac97472573d6dfe0 +#: b65935e7a9214a36aba1ec7fc7c90e2a b764452d56d243c893e4d68cdb3c6137 +#: b837aa3edd694fae88479c54257fed5a b867201474f6458ea1a34e8900f3302f +#: b9f49cf9cee747048835891d1c7f70f5 bb6d7c6bef1d4675a76364fede37bd52 +#: c410cb2f89ab45d397cc1b7badbbe508 c447a62b257047c3a3c1df7a3c2e118f +#: c474d91dc2a74a2bade27b8e590f259e c4889ac5eabe4140930118f248a3057f +#: c497bc48b58c40beb6b6fc4ffdd06665 c66087222b144b77bfe3590882bb094c +#: c791b3848a844b35bfb80f4439dc5a01 cc84bf53b0c242f7a0311a9dd1c26fb4 +#: cce37d0670ed4b9ba0723d47ed47c1aa ced24460a70040d8b61a4ad0d6c78aed +#: d04bb5288b9d41d198e609fb372cfe93 d1acd97d1a0c409391049a5a1d16ff91 +#: d2cee1703cd04080aef304e39920587c d3d0d745f2644c41835f5e98e84b7006 +#: d3e2998a315943a78d50932f49737de1 d3e8a88ffd394c98aec38cc3b1771e64 +#: d45426a29b06438e91f2dd515ab9a26b d50186c464354e00bb33065cbbc894ca +#: d619b3bad7d841cd80080a4c2d773774 d680e30842684d46aeb5e7266f19a395 +#: dbd0089e6f584131992add921e3b9d9f dbe6dcd54bae403aba9e49856575cf7e +#: de32e7bc824e4625b555783be6ba8ce5 discord.ApplicationFlags.active:6 +#: discord.ApplicationFlags.app_commands_badge:6 +#: discord.ApplicationFlags.application_auto_moderation_rule_create_badge:5 +#: discord.ApplicationFlags.embedded:3 +#: discord.ApplicationFlags.gateway_guild_members:4 +#: discord.ApplicationFlags.gateway_guild_members_limited:4 +#: discord.ApplicationFlags.gateway_message_content:3 +#: discord.ApplicationFlags.gateway_message_content_limited:4 +#: discord.ApplicationFlags.gateway_presence:4 +#: discord.ApplicationFlags.gateway_presence_limited:4 +#: discord.ApplicationFlags.group_dm_create:3 +#: discord.ApplicationFlags.managed_emoji:3 +#: discord.ApplicationFlags.rpc_has_connected:3 +#: discord.ApplicationFlags.verification_pending_guild_limit:4 +#: discord.AttachmentFlags.is_clip:3 discord.AttachmentFlags.is_remix:3 +#: discord.AttachmentFlags.is_thumbnail:3 discord.ChannelFlags.pinned:3 +#: discord.ChannelFlags.require_tag:6 +#: discord.Intents.auto_moderation_configuration:9 +#: discord.Intents.auto_moderation_execution:7 discord.Intents.bans:6 +#: discord.Intents.dm_messages:27 discord.Intents.dm_polls:17 +#: discord.Intents.dm_reactions:18 discord.Intents.dm_typing:11 +#: discord.Intents.emojis:6 discord.Intents.emojis_and_stickers:21 +#: discord.Intents.guild_messages:38 discord.Intents.guild_polls:17 +#: discord.Intents.guild_reactions:18 discord.Intents.guild_typing:11 +#: discord.Intents.guilds:23 discord.Intents.integrations:12 +#: discord.Intents.invites:10 discord.Intents.members:33 +#: discord.Intents.message_content:23 discord.Intents.messages:31 +#: discord.Intents.moderation:11 discord.Intents.polls:17 +#: discord.Intents.presences:20 discord.Intents.reactions:18 +#: discord.Intents.scheduled_events:18 discord.Intents.typing:11 +#: discord.Intents.voice_states:22 discord.Intents.webhooks:9 +#: discord.MemberCacheFlags.interaction:6 discord.MemberCacheFlags.joined:8 +#: discord.MemberCacheFlags.voice:7 discord.MemberFlags.bypasses_verification:7 +#: discord.MemberFlags.completed_onboarding:3 discord.MemberFlags.did_rejoin:3 +#: discord.MemberFlags.started_onboarding:3 discord.MessageFlags.crossposted:3 +#: discord.MessageFlags.ephemeral:5 +#: discord.MessageFlags.failed_to_mention_some_roles_in_thread:5 +#: discord.MessageFlags.has_thread:5 discord.MessageFlags.is_crossposted:3 +#: discord.MessageFlags.is_voice_message:5 discord.MessageFlags.loading:7 +#: discord.MessageFlags.source_message_deleted:3 +#: discord.MessageFlags.suppress_embeds:3 +#: discord.MessageFlags.suppress_notifications:7 discord.MessageFlags.urgent:5 +#: discord.Permissions.add_reactions:3 discord.Permissions.administrator:5 +#: discord.Permissions.attach_files:3 discord.Permissions.ban_members:3 +#: discord.Permissions.change_nickname:3 discord.Permissions.connect:3 +#: discord.Permissions.create_instant_invite:3 +#: discord.Permissions.create_private_threads:5 +#: discord.Permissions.create_public_threads:5 +#: discord.Permissions.deafen_members:3 discord.Permissions.embed_links:3 +#: discord.Permissions.external_emojis:3 +#: discord.Permissions.external_stickers:5 discord.Permissions.kick_members:3 +#: discord.Permissions.manage_channels:5 discord.Permissions.manage_emojis:3 +#: discord.Permissions.manage_emojis_and_stickers:5 +#: discord.Permissions.manage_events:5 discord.Permissions.manage_guild:3 +#: discord.Permissions.manage_messages:7 discord.Permissions.manage_nicknames:3 +#: discord.Permissions.manage_permissions:5 discord.Permissions.manage_roles:5 +#: discord.Permissions.manage_threads:5 discord.Permissions.manage_webhooks:3 +#: discord.Permissions.mention_everyone:3 +#: discord.Permissions.moderate_members:5 discord.Permissions.move_members:3 +#: discord.Permissions.mute_members:3 discord.Permissions.priority_speaker:3 +#: discord.Permissions.read_message_history:3 +#: discord.Permissions.read_messages:5 discord.Permissions.request_to_speak:5 +#: discord.Permissions.send_messages:3 +#: discord.Permissions.send_messages_in_threads:5 +#: discord.Permissions.send_polls:5 discord.Permissions.send_tts_messages:3 +#: discord.Permissions.send_voice_messages:5 +#: discord.Permissions.set_voice_channel_status:5 discord.Permissions.speak:3 +#: discord.Permissions.start_embedded_activities:5 discord.Permissions.stream:3 +#: discord.Permissions.use_application_commands:5 +#: discord.Permissions.use_external_apps:8 +#: discord.Permissions.use_external_emojis:5 +#: discord.Permissions.use_external_stickers:5 +#: discord.Permissions.use_slash_commands:5 +#: discord.Permissions.use_voice_activation:3 +#: discord.Permissions.view_audit_log:3 discord.Permissions.view_channel:3 +#: discord.Permissions.view_guild_insights:5 +#: discord.PublicUserFlags.active_developer:5 +#: discord.PublicUserFlags.bot_http_interactions:5 +#: discord.PublicUserFlags.bug_hunter:3 +#: discord.PublicUserFlags.bug_hunter_level_2:3 +#: discord.PublicUserFlags.discord_certified_moderator:5 +#: discord.PublicUserFlags.early_supporter:3 +#: discord.PublicUserFlags.early_verified_bot_developer:5 +#: discord.PublicUserFlags.hypesquad:3 +#: discord.PublicUserFlags.hypesquad_balance:3 +#: discord.PublicUserFlags.hypesquad_bravery:3 +#: discord.PublicUserFlags.hypesquad_brilliance:3 +#: discord.PublicUserFlags.partner:3 +#: discord.PublicUserFlags.premium_promo_dismissed:3 +#: discord.PublicUserFlags.staff:3 discord.PublicUserFlags.system:3 +#: discord.PublicUserFlags.team_user:3 discord.PublicUserFlags.verified_bot:3 +#: discord.PublicUserFlags.verified_bot_developer:3 +#: discord.RoleFlags.in_prompt:3 discord.SKUFlags.available:3 +#: discord.SKUFlags.guild_subscription:3 discord.SKUFlags.user_subscription:3 +#: discord.SystemChannelFlags.guild_reminder_notifications:5 +#: discord.SystemChannelFlags.join_notification_replies:5 +#: discord.SystemChannelFlags.join_notifications:3 +#: discord.SystemChannelFlags.premium_subscriptions:3 +#: discord.components.SelectOption:33 discord.embeds.EmbedField:21 +#: discord.file.File:42 discord.mentions.AllowedMentions:11 +#: discord.mentions.AllowedMentions:40 discord.message.MessageReference:33 +#: discord.permissions.PermissionOverwrite.is_empty:7 discord.poll.Poll:27 +#: discord.poll.PollAnswerCount:22 discord.poll.PollResults:9 +#: e1c1e64874eb4dc4b81588e9d084845b e29fe4fdd9ad421295dee23fa82019b0 +#: e6f793a644584273a72f59802880d75c e700b67c24d5472ead55cb0b5d2e0835 +#: eb55ec8b22124dcfaacb2eb8b8bb591d ee15e6047a974fc09fd0a0412365c33b +#: ef82d5719c90468a84b53b1224cd4af9 efda05937885451f9831ea5529ba0e2f +#: f2a5f2887dcb45bfb3ec1a4a0aeb18d8 f51ab36a12a943beb7fc8942c99a282c +#: f5a5a905c4504e61bf130fe20dbfe27b f6ad042f32ec46c194b5c763d53cf7e1 +#: f7a80bc28079420089d9b9111a52df94 fa8195689b3b4391815a0cab9a5d8cea +#: fad82c79ee1346dd85866634c55a3a8e fd0416821f8645499fe1297e36e91209 +#: fd16e79e95744fbbb4d1bb67b2d04fbe of +msgid ":class:`bool`" +msgstr "" + +#: 83b108a10aa446cdb6eebaab379b4174 discord.SelectOption.emoji:1 of +msgid "The emoji of the option, if available." +msgstr "" + +#: discord.flags.Intents:1 e2e452e939b041f88f583aded7ed5bad of +msgid "Wraps up a Discord gateway intent flag." +msgstr "" + +#: 11f86baabb094c2baabe61a104cd4f51 discord.flags.Intents:3 of +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 "" + +#: 0b557071c13d48c5a7e58fdc6a34e621 99d045cffa884713a159060bf7b59130 +#: c7ccca30986e43fd8e10beb3bd9d8656 discord.flags.Intents:7 +#: discord.flags.MemberCacheFlags:12 discord.flags.SystemChannelFlags:7 of +msgid "" +"To construct an object you can pass keyword arguments denoting the flags " +"to enable or disable." +msgstr "" + +#: 89aa9846e2cf4b0c9c280daecc282a51 discord.flags.Intents:10 of +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 "" + +#: 1a8b4fa6c67a4abc8033674858b4091b 2723da96d9724f13aedb5348870ab7f6 +#: 37eef6fe663748f5a467a28180bb7c4e 4e9fe61ccd1549e88739285bf3dafd88 +#: d4c9f26ee3034866a99c0283e4e8e99b discord.flags.AttachmentFlags:7 +#: discord.flags.Intents:20 discord.flags.MemberCacheFlags:23 +#: discord.flags.MessageFlags:9 discord.flags.SystemChannelFlags:14 of +msgid "Checks if two flags are equal." +msgstr "" + +#: 4a6e6320ca45428484440c717f1649f8 b6e33c093a6446c4b0db0d86d7eea46a +#: c5b62a3820524bdaa7ffdc764a11c059 d14f8b7592484b0eb15cca8f8ca4ef10 +#: d5ead74a64c54423968ede7480f5cbff discord.flags.AttachmentFlags:10 +#: discord.flags.Intents:23 discord.flags.MemberCacheFlags:26 +#: discord.flags.MessageFlags:12 discord.flags.SystemChannelFlags:17 of +msgid "Checks if two flags are not equal." +msgstr "" + +#: 0bd6187917144dd29d57b86f7c0403e5 4a7bc86e9a3e46b383554e861e976458 +#: 536d410ff4b44e62b2cb302b665c4e82 600184aa266d4be4a9cac9e2c503772d +#: 6c411abccd8f4ee9959930568c9c5580 7acf69cc8dab45ada3bd3689889c1cef +#: 96999cf3481f408f8cf281d177168157 99e7c28f52d74d25af242acc5a200eaa +#: 9ff0a5610aab4a38beedf650deabf91a discord.flags.ApplicationFlags:13 +#: discord.flags.AttachmentFlags:13 discord.flags.ChannelFlags:13 +#: discord.flags.Intents:26 discord.flags.MemberCacheFlags:29 +#: discord.flags.MemberFlags:13 discord.flags.MessageFlags:15 +#: discord.flags.PublicUserFlags:13 discord.flags.RoleFlags:13 +#: discord.flags.SKUFlags:13 discord.flags.SystemChannelFlags:20 +#: f96e957c78734f899f6a8cabbcd6e80f f9b86c4a425e45a5911c00182e4fa2aa of +msgid "Adds two flags together. Equivalent to ``x | y``." +msgstr "" + +#: 04def519eb6a4b058b20fb82fdda5fa5 0c17b2ad55124b1aaae336d3932a00a5 +#: 1cc0f99d2ad34188a3d109ca5ea135bd 1db16f9be5fc449c9e597b190d069225 +#: 2bae9b53c632492f8e853a3b968e0de9 6be54360e9b54949ad40dd56f95df40c +#: 967c26af9efa4f7daef0c955d8a3bb61 b17adea6a0ad4408ba556b1a6ce02616 +#: d24e2a10464947f5a867e78d79b60ce5 d9704b07696540d8a7df9809930a034e +#: discord.flags.ApplicationFlags:16 discord.flags.AttachmentFlags:16 +#: discord.flags.ChannelFlags:16 discord.flags.Intents:29 +#: discord.flags.MemberCacheFlags:32 discord.flags.MemberFlags:16 +#: discord.flags.MessageFlags:18 discord.flags.PublicUserFlags:16 +#: discord.flags.RoleFlags:16 discord.flags.SKUFlags:16 +#: discord.flags.SystemChannelFlags:23 ef0c39b25c534ad0b56743b97271d559 of +msgid "Subtracts two flags from each other." +msgstr "" + +#: 1b50b9b1854f46caa3ac7f4be9a6d214 1deb812bea3d41b7a704ac10ef1cc2c5 +#: 2bd00e79cff94fcc87d879a4bdd8a62a 30a0f7905d6c4d359df077d3050acbe4 +#: 35910a0af5ad45be97b47bc5589af9d4 61e73664161a4b14a3c004fb9675681f +#: 8682d8d121804ca78190744b3a59c4d3 b605361bd020421aabe67ea65920a40d +#: c0b47343720c41e9ae082737e6c14a21 dc44aea0eb8843ec89427b68ed42e355 +#: discord.flags.ApplicationFlags:19 discord.flags.AttachmentFlags:19 +#: discord.flags.ChannelFlags:19 discord.flags.Intents:32 +#: discord.flags.MemberCacheFlags:35 discord.flags.MemberFlags:19 +#: discord.flags.MessageFlags:21 discord.flags.PublicUserFlags:19 +#: discord.flags.RoleFlags:19 discord.flags.SKUFlags:19 +#: discord.flags.SystemChannelFlags:26 e446c2c129c9432387763bfccabd52e8 of +msgid "Returns the union of two flags. Equivalent to ``x + y``." +msgstr "" + +#: 0cb04326bebe4bc8a317558219f5d362 164db2030286448b9bcc9ef182ddaae9 +#: 1958adb42308499f8545a94033c83764 1aa74630c59244a680d6c45bac4a40d4 +#: 389c01ecd70a44eeb7a0a7f77ebec292 518e13808efd452985312250a3be537a +#: 6e3e56ce5b904a99a28eee41182bc2f9 79031e8947e54a9bab1a040c4ada6e20 +#: a85b1ce443654d889b7e274a16471b91 dc76f0f183a044919897aec3d7a052cf +#: discord.flags.ApplicationFlags:22 discord.flags.AttachmentFlags:22 +#: discord.flags.ChannelFlags:22 discord.flags.Intents:35 +#: discord.flags.MemberCacheFlags:38 discord.flags.MemberFlags:22 +#: discord.flags.MessageFlags:24 discord.flags.PublicUserFlags:22 +#: discord.flags.RoleFlags:22 discord.flags.SKUFlags:22 +#: discord.flags.SystemChannelFlags:29 e93c4ec263eb412b8884fb8192f8abe9 of +msgid "Returns the intersection of two flags." +msgstr "" + +#: 0c0d4ae9593340cc9d83a5f1bf9ae314 15bd1793902549d2a41ed2bfb2086490 +#: 280657c255fc426c82da64bb59d9bac5 3f25fb08cab5411e97b911287fb3d991 +#: 45183bd6b34a4d5da0a272b2a6453c51 661a5fa542f2402ba484b264d8a7d30b +#: b3f48189e9624c5ea9fa8ac032fbbbd4 b6494a4476ad4232801ba36d88cd2ee1 +#: db93366459a84bac9ca1791083bd8951 discord.flags.ApplicationFlags:25 +#: discord.flags.AttachmentFlags:25 discord.flags.ChannelFlags:25 +#: discord.flags.Intents:38 discord.flags.MemberCacheFlags:41 +#: discord.flags.MemberFlags:25 discord.flags.MessageFlags:27 +#: discord.flags.PublicUserFlags:25 discord.flags.RoleFlags:25 +#: discord.flags.SKUFlags:25 discord.flags.SystemChannelFlags:32 +#: eb4cf8c6e63540168709d72324f0366e f9037c859c954437bbc5c80837992535 of +msgid "Returns the inverse of a flag." +msgstr "" + +#: 0609571c784a441a96024b34656f7620 115cbdc73ead48389591b9c18de16c6e +#: 5055ec460c1c405295c113b871a1381d 5401a57492744f82a7f454408fe09e91 +#: 6426f88037df4e09a30eb9bbfab4b783 6bae8aa57db74ad4acf90f088dc01e24 +#: 7834e6013f2d4c78b5486bf043f2ab70 b7238e0512bc43f1b8b7acd85781e817 +#: bf894e7c254f4d37873c682274464eed cd38184237914f6c802d8fd54c02a106 +#: discord.flags.ApplicationFlags:28 discord.flags.AttachmentFlags:28 +#: discord.flags.ChannelFlags:28 discord.flags.Intents:41 +#: discord.flags.MemberCacheFlags:44 discord.flags.MemberFlags:28 +#: discord.flags.MessageFlags:30 discord.flags.PublicUserFlags:28 +#: discord.flags.RoleFlags:28 discord.flags.SKUFlags:28 +#: discord.flags.SystemChannelFlags:35 ee74cb95a3e6465e945cd8383fffbc5a of +msgid "Return the flag's hash." +msgstr "" + +#: 7204b8ea3a9241949e0f987e6f8c8665 a3fc9e2feee540e5bfa91a1861fa07d9 +#: a99a094ce4fa417f968709af699b5323 c5d1a453a88e423c95d5bef1be4d1cba +#: discord.flags.Intents:44 discord.flags.MemberCacheFlags:47 +#: discord.flags.MessageFlags:33 discord.flags.SystemChannelFlags:38 of +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 "" + +#: 243973eb1c774a339bf71cc0d1528cb8 82101dd125534b129f6f38b3b3ed2e27 +#: 9e99e32bc296475598552fd9c39806ff aed0ec598f5542f5b45aed4d7c5c0eb2 +#: discord.flags.ApplicationFlags:39 discord.flags.AttachmentFlags:39 +#: discord.flags.ChannelFlags:39 discord.flags.Intents:49 +#: discord.flags.MemberCacheFlags:52 discord.flags.MemberFlags:39 +#: discord.flags.SKUFlags:39 e4d3c97d2ab942eaa92a7853a7594bde +#: f54fefdc28274d45b023ba51349e495a f9e23965620b47329a2c2bdeffd4efa9 of +msgid "" +"The raw value. You should query flags via the properties rather than " +"using this raw value." +msgstr "" + +#: 16c74d2111d245fba292eb18c918eaef discord.flags.Intents.all:1 of +msgid "A factory method that creates a :class:`Intents` with everything enabled." +msgstr "" + +#: ../../api/data_classes.rst 018c91d8de2d44fb8c1e07be2f4b85b4 +#: 06117d4991d64482ab3bd74ddd051afa 07328e258a764337ad1d20246d4de5e5 +#: 0abca367d0ad4c83bf2be1d6479c0e42 14839b1adc274194849e223dfecbf767 +#: 17094165c2494d80b071c53f905935de 19685e0d184143a69ab86dc3156e0010 +#: 1c86a0a466e2418eb0bbb7dc78feb4ee 1d74298fd0f54d7b9e5eba315105ea1a +#: 1e3cd1e307fc4f35a7f349aa1b301d3a 1e56debdc10b44a6bb24a812e5f497c2 +#: 1fad171fac2f4401bf377bab91994567 254aef600d254d609dfdd46369fb0d2b +#: 26181a33b1bb4438a0440db9626c9bb5 26dce303105f4829a233716320aafb05 +#: 27763036636f49f8ba292a51ef43814f 2a6fff9cfbc140eea62eb86587d99e12 +#: 2aaf29a75ce048e59ab4aa068f89270e 2c65699780f042bda30498eb6d195ca1 +#: 2d239c1f1f394abf9e55e91084d6ee2b 2ee9c2cace5642d3931879b57e907e72 +#: 312b769c32484244b31414353619d0d7 32eeeab27c3049c7ad3eae9dfe659ba5 +#: 3495b127e59d4114bd73f48eac001314 387a935c6db343558a4e1062dc05e80b +#: 396ad73a54a549d7a99a683064978e42 3a69766c2ab349738d5ae59cbd70517b +#: 3bba9a9cb8364b83a168aeda565e9bbf 3d9d7f31e3fd426c91b7da7fe211b099 +#: 4790b1ca1e4a463b87fbaa89365cc98f 498037cacf4048e089db179d1327f791 +#: 4bd94c41e47a4ffc9c405bf096ea26a1 4cec06d96aa540ca837c06faf1eda4aa +#: 4f8a95b52be345b49db26caa9e217288 51366ed9bee64aaaa2b92292cb55270b +#: 538e1f063fc8484f8a27b9878a4a62fc 5b0a938f23c34aacb67b50d378235ee6 +#: 5cb95d726813471badb438677b0cb5dd 5e2ae90ede484700a92163b7fc20a0da +#: 5e36e0ef9c2346a7a1546820ec8d79a1 63612e7eed6644a4a09f372f5500c2d4 +#: 66c338f8eef24506af329d3a60d1c101 675a31c9def246cfaa6ace261bcb2315 +#: 68da8bcf838141efbb2d63bfdbf3572c 6a7ef6edee394706920fde8b84c60bd8 +#: 6c52ec89bc324d688a1ea93936659b0f 7570e3a535c542c48a495aa5980e09e6 +#: 787d35658563443da4d353a110a5a813 7afd0d20cf2940e4a0493121eb555c29 +#: 7b318a51369544c494bf5cd1aa7c949f 7d4265b55f914cb1b296509d8ca752db +#: 7d571a8abadd449aab1878522512f792 818835fd40bd4a03b5196193a62b5790 +#: 841dbe564995451db0cb4d1a7399578a 89a32233bbc842bda5f1f44ede1f6456 +#: 90db003fe96e42e09518caf869a4b570 9a7a96d8bc9045a6a38b969595e5a865 +#: 9c5183de166e4c9a8d8dcd809e1f9c1c a01e30e75f11408887933e9c9d2f1ca6 +#: a0de128104b34095a69b96da3e8ab96f a5936942c3d546cd80cc6ab556260da5 +#: a96b24b511dc4ba5a76631835e74c7d7 ab27ed89866b4c8aaae389246af4c20e +#: aebd9405f26c42e39bec901116ba5b2f b32687e080a44a9aa9c007d9d36fb9a4 +#: b480463323664ccbaa6f6a48358e47e1 b54140a3dcb74784a6a01c92208cbe0f +#: b587555169654b00af22255c66e6b2c7 ba8d35102a9c47c690e7f4c7d1c4994f +#: bb23da17d5e149f88b160898fe8bdd10 bbc492444f0b4fe79fafdff6bc4fee6d +#: c30f6974606d470aa0c4caba098ab9ef c64aba3dde4f43ada43550b1f0d7569f +#: c6a4b3316cf54cc8b892899ad5d003cb cc0a84fc6ab7497da8ddc0e8e477ed17 +#: cc754cf4cc644e4f9e32e1040e29eafa cf2dfef29e444d13ac54d2dbe84fa015 +#: d091f04d4dc74d3e8799d21bf9ce3935 d0dbbee81aef4bfdb4d91c6695d303eb +#: d1d8003b2d454b49a81a3a0eff5f0ae7 d29db1ddddd7435592df3d94b6613ffe +#: d2e3360593294133b0a4335cd58c7f07 d4dd570edf684cd8a0dc32ee303deb96 +#: d77fcecfec2c42d0b9a359a602118c22 d91ea57cfc7248859c473d1d1dd8227c +#: dc057d79db7c46fd888e337e59985244 discord.poll.Poll.add_answer +#: discord.poll.PollAnswer.voters e03a07b2659e460c969522e4e68a4aca +#: e2fdd28aa9d94cd6a7b99951ffa2dd7f e41a9aa4658247fbbfd17b70847fcb80 +#: e5367cb1eb2347b5a4cd991d510a723d e68b169f549c4791bda81c9443d228a3 +#: ebea6eab9d354d4c8a5c3ad9d5529507 f2fe81d38e43437a9239f1af97b0cac6 +#: f358a7bf6a014c41988b485dc82c34a5 f71c24b693804fc1b300f4a07178b6de +#: fc25eaf76a77420495b5c4d93cb33f06 of +msgid "Return type" +msgstr "" + +#: 20a24ced6c2f40ae97a379aac52fc31e 93072a21a8ac4f6d9051e897557acc8f +#: 946b7c87c7b64016bc9465fb66cea03d discord.flags.Intents.all:4 +#: discord.flags.Intents.default:5 discord.flags.Intents.none:4 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" +msgstr "" + +#: 22324043e80a40aaa717986eb0f452ac discord.flags.Intents.none:1 of +msgid "A factory method that creates a :class:`Intents` with everything disabled." +msgstr "" + +#: 45a682a8a0cf40059fcca00391087c9d discord.flags.Intents.default:1 of +msgid "" +"A factory method that creates a :class:`Intents` with everything enabled " +"except :attr:`presences`, :attr:`members`, and :attr:`message_content`." +msgstr "" + +#: ../../docstring 4317da5e0f17431d9613a34efaf3d04d discord.Intents.guilds:1 of +msgid "Whether guild related events are enabled." +msgstr "" + +#: ../../docstring 127132d3c13c416cab6465e43870b9df +#: 1844e42444c64ebfa6f6a05f49c3c034 1a8d1483207c4ba4bd66f376500bcfdd +#: 2393f9340ef242d09a27b53fbae1d540 327cb39cf5d942c6ac5c5e9cd44b08ba +#: 32d6ac82923b4f548a71c551421c87a9 37c77df003a04768b88e759cd73963b1 +#: 3801b1bd516a4c47a073514517ca50d4 4a9af8630afc4c228384619fc5928a2c +#: 5ff0cc64d2464f138b63bd5bce62b0bd 6cf9973c14134f4ab3888b55623e7e55 +#: 75d1d5d26fee4f4db53f9e29a6dd8e3a 77c6b6236e1347e2b15712d37046f7b6 +#: 80ed196772fb4d43802c8a0c5f60267e 8795d49ebb62417ebcdf2989b8df1d3d +#: 8d17e0018cf346369e05f5ed41961c83 9a80a6772ccd47a8a9d29b9ff6ee2d7d +#: 9e703e4c3f854459b513a5973115356b be05d4647638496a85bf45edbffe3e8e +#: d501618e47324c1793bbde3bf9ca861b +#: discord.Intents.auto_moderation_configuration:3 +#: discord.Intents.auto_moderation_execution:3 discord.Intents.dm_messages:5 +#: discord.Intents.dm_polls:5 discord.Intents.dm_reactions:5 +#: discord.Intents.dm_typing:5 discord.Intents.emojis_and_stickers:5 +#: discord.Intents.guild_messages:5 discord.Intents.guild_polls:5 +#: discord.Intents.guild_reactions:5 discord.Intents.guild_typing:5 +#: discord.Intents.guilds:3 discord.Intents.integrations:3 +#: discord.Intents.invites:3 discord.Intents.members:3 +#: discord.Intents.messages:5 discord.Intents.moderation:3 +#: discord.Intents.polls:5 discord.Intents.presences:3 +#: discord.Intents.reactions:5 discord.Intents.scheduled_events:3 +#: discord.Intents.typing:5 discord.Intents.voice_states:3 +#: discord.Intents.webhooks:3 ebc4a3f5e91648288893a4a8c8f0df3c +#: f1b1d51dfc7e4692a37d5bca93905b4d f2d60034b58848f5b50f72b0fe7480da +#: f99607be5f7d4810a8759fd4e459a36b of +msgid "This corresponds to the following events:" +msgstr "" + +#: ../../docstring 5994272e340e4811a58be304b6c96914 discord.Intents.guilds:5 of +msgid ":func:`on_guild_join`" +msgstr "" + +#: ../../docstring 4f6f211fa5e34b2baa6b5b3b96117d98 discord.Intents.guilds:6 of +msgid ":func:`on_guild_remove`" +msgstr "" + +#: ../../docstring 21aa0e482ecf4ee59530701a0567293b discord.Intents.guilds:7 of +msgid ":func:`on_guild_available`" +msgstr "" + +#: ../../docstring 749fda92dd054dceb10ab766b07c8a67 discord.Intents.guilds:8 of +msgid ":func:`on_guild_unavailable`" +msgstr "" + +#: ../../docstring 12c9331353c74f5e8a0ec6e7bba5f57e discord.Intents.guilds:9 of +msgid ":func:`on_guild_channel_update`" +msgstr "" + +#: ../../docstring 5a72e2a4cb204f05b685878b664e2513 discord.Intents.guilds:10 +#: of +msgid ":func:`on_guild_channel_create`" +msgstr "" + +#: ../../docstring 87516bfe56bb4d26bc954380fe7086b5 discord.Intents.guilds:11 +#: of +msgid ":func:`on_guild_channel_delete`" +msgstr "" + +#: ../../docstring 822458acade14d058d900c80c5e970f1 discord.Intents.guilds:12 +#: of +msgid ":func:`on_guild_channel_pins_update`" +msgstr "" + +#: ../../docstring 30ce97bdd3094300a532b98ec1cf3943 +#: 31267a3f10444da2957257d6241062ac 335c852a9e4240d680003e46d01a9eb7 +#: 3d3cd245adcd4796a84d8cd0f0748f62 50006f2a61b848848d0dff60895afc77 +#: 516dddd73b2b476b82835e700c169f71 529dd704424742a38b07f200180a2068 +#: 64ea6e41a88c47cba252c5bd01944e1c 7723e1b62423446184c4541de3f89248 +#: 7945f47d88904d9a834c708ec69ca085 b1141125c5b647c18492031a0447fb6d +#: b7a36d6a3daa4dd582d6ae4a5dee5f3a cfe6c3251c0f4e13a904e56454fbaa4a +#: d6181ea2e5ab4d45aeabb348df9f2c88 deaad94c71c94871817abb4286d2bcef +#: discord.Intents.dm_messages:13 discord.Intents.dm_polls:12 +#: discord.Intents.dm_reactions:14 discord.Intents.emojis_and_stickers:10 +#: discord.Intents.guild_messages:13 discord.Intents.guild_polls:12 +#: discord.Intents.guild_reactions:14 discord.Intents.guilds:14 +#: discord.Intents.members:11 discord.Intents.messages:13 +#: discord.Intents.polls:12 discord.Intents.presences:7 +#: discord.Intents.reactions:14 discord.Intents.scheduled_events:13 +#: discord.Intents.voice_states:7 of +msgid "" +"This also corresponds to the following attributes and classes in terms of" +" cache:" +msgstr "" + +#: ../../docstring bcc55c3d9b6c4f5588f5942e502740bb discord.Intents.guilds:16 +#: of +msgid ":attr:`Client.guilds`" +msgstr "" + +#: ../../docstring 224c1c98fc864d659f37dd53852f655e discord.Intents.guilds:17 +#: of +msgid ":class:`Guild` and all its attributes." +msgstr "" + +#: ../../docstring 6fb8f356c9d54a4b946f3ab6c0e55be7 discord.Intents.guilds:18 +#: of +msgid ":meth:`Client.get_channel`" +msgstr "" + +#: ../../docstring 3b802410fa96485eb5c6e69cd900a140 discord.Intents.guilds:19 +#: of +msgid ":meth:`Client.get_all_channels`" +msgstr "" + +#: ../../docstring 62f55e05719246a6ba9751ebde882853 discord.Intents.guilds:21 +#: of +msgid "" +"It is highly advisable to leave this intent enabled for your bot to " +"function." +msgstr "" + +#: ../../docstring 929eb7b755c8449aa42f4809421f88b7 discord.Intents.members:1 +#: of +msgid "Whether guild member related events are enabled." +msgstr "" + +#: ../../docstring 945d37e662c44c5bafc5590ec51d3b0f discord.Intents.members:5 +#: of +msgid ":func:`on_member_join`" +msgstr "" + +#: ../../docstring 94a083f6dfb8486e86bb602aa7055864 discord.Intents.members:6 +#: of +msgid ":func:`on_member_remove`" +msgstr "" + +#: ../../docstring 66c04c9b42cd4898826123a33e6294ff discord.Intents.members:7 +#: of +msgid ":func:`on_raw_member_remove`" +msgstr "" + +#: ../../docstring discord.Intents.members:8 e7c5954e807044c6a8ea63f654f621dd +#: of +msgid ":func:`on_member_update`" +msgstr "" + +#: ../../docstring d63e13ef0e504d3382313195162d173d discord.Intents.members:9 +#: of +msgid ":func:`on_user_update`" +msgstr "" + +#: ../../docstring 5795f8d2b996423d95f49c54c37d982c discord.Intents.members:13 +#: of +msgid ":meth:`Client.get_all_members`" +msgstr "" + +#: ../../docstring discord.Intents.members:14 e446aa42f0504d1eb28545466ab582fd +#: of +msgid ":meth:`Client.get_user`" +msgstr "" + +#: ../../docstring 7373c06233d14be283be68f6b35676a9 discord.Intents.members:15 +#: of +msgid ":meth:`Guild.chunk`" +msgstr "" + +#: ../../docstring ac42d9b201b9473da4865698cd0d6cab discord.Intents.members:16 +#: of +msgid ":meth:`Guild.fetch_members`" +msgstr "" + +#: ../../docstring 88280431785b4b0f8f9fe84b6f786481 discord.Intents.members:17 +#: of +msgid ":meth:`Guild.get_member`" +msgstr "" + +#: ../../docstring 856253b1096a45069e1dd86c50d28aaa discord.Intents.members:18 +#: of +msgid ":attr:`Guild.members`" +msgstr "" + +#: ../../docstring 96f3dd561afb42c8a00186592acdcdfa discord.Intents.members:19 +#: of +msgid ":attr:`Member.roles`" +msgstr "" + +#: ../../docstring 7262ba98a42b4f4eb2ad956a6e6e3f21 discord.Intents.members:20 +#: of +msgid ":attr:`Member.nick`" +msgstr "" + +#: ../../docstring 4d7d7d40e4b64bf289fcc60255b8964c discord.Intents.members:21 +#: of +msgid ":attr:`Member.premium_since`" +msgstr "" + +#: ../../docstring c6dd03104de443e89f184674cad8d2a5 discord.Intents.members:22 +#: of +msgid ":attr:`User.name`" +msgstr "" + +#: ../../docstring 7704cc926f6946a18c346af78390017a discord.Intents.members:23 +#: of +msgid ":attr:`User.avatar`" +msgstr "" + +#: ../../docstring 28fc4b6096ff4c4cbf2077cdfae3038f discord.Intents.members:24 +#: of +msgid ":attr:`User.discriminator`" +msgstr "" + +#: ../../docstring discord.Intents.members:26 e63bbf16bf3a47a9a2374fbb8644bdec +#: of +msgid "" +"For more information go to the :ref:`member intent documentation " +"`." +msgstr "" + +#: ../../docstring 5f0bed46e9fd446fa11f769c2e18134d +#: a144ff86320b4e09b37cff189bb3174c discord.Intents.members:30 +#: discord.Intents.presences:17 of +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 d35c3b99080f41138c08fc05e66820af discord.Intents.bans:1 of +msgid "Alias of :attr:`.moderation`." +msgstr "" + +#: ../../docstring 27a0c56e0c79468d9c88cabbab69f321 +#: bc8f8e325af24de382cf5ea080f4c8ef discord.Intents.bans:3 +#: discord.Intents.emojis:3 of +msgid "Changed to an alias." +msgstr "" + +#: ../../docstring discord.Intents.moderation:1 +#: e7f8be38789347f391726ae88785a429 of +msgid "Whether guild moderation related events are enabled." +msgstr "" + +#: ../../docstring discord.Intents.moderation:5 +#: f00b53ceb1774c9eae7512ea10e6c594 of +msgid ":func:`on_audit_log_entry`" +msgstr "" + +#: ../../docstring b0c75f440f3549548ba08708aec21592 +#: discord.Intents.moderation:6 of +msgid ":func:`on_member_ban`" +msgstr "" + +#: ../../docstring beac11c05c944db4a70e68a2f4ccb823 +#: discord.Intents.moderation:7 of +msgid ":func:`on_member_unban`" +msgstr "" + +#: ../../docstring 20164eb2064e41b7b194bcf624744b12 +#: 49e0cca02c174ab0b3af1016f00bb680 a9a3db3038a7485ca7c791f1c7782ae9 +#: b9863a675003490b89043c31dbf28eff bbcdb3c184584751b4fce179030f686b +#: c8d84c681fd142bf88e6ff7b096647b2 discord.Intents.dm_typing:9 +#: discord.Intents.guild_typing:9 discord.Intents.integrations:10 +#: discord.Intents.invites:8 discord.Intents.moderation:9 +#: discord.Intents.typing:9 discord.Intents.webhooks:7 +#: f29f9b186eba40a0910997fe79f8b7a4 of +msgid "" +"This does not correspond to any attributes or classes in the library in " +"terms of cache." +msgstr "" + +#: ../../docstring bb39e3f3663b46b19a266c33245dda8d discord.Intents.emojis:1 of +msgid "Alias of :attr:`.emojis_and_stickers`." +msgstr "" + +#: ../../docstring c5af4974eb774193a9161920c2cdee53 +#: discord.Intents.emojis_and_stickers:1 of +msgid "Whether guild emoji and sticker related events are enabled." +msgstr "" + +#: ../../docstring c8412c187de54fc88852594c731c4e4d +#: discord.Intents.emojis_and_stickers:7 of +msgid ":func:`on_guild_emojis_update`" +msgstr "" + +#: ../../docstring c087251564794aa9b94183fdedbbaa6f +#: discord.Intents.emojis_and_stickers:8 of +msgid ":func:`on_guild_stickers_update`" +msgstr "" + +#: ../../docstring 8d522dd4ec834c5e834a8a3a1d82637a +#: discord.Intents.emojis_and_stickers:12 of +msgid ":class:`Emoji`" +msgstr "" + +#: ../../docstring 310d885187c7483da2962fd12d7a1274 +#: discord.Intents.emojis_and_stickers:13 of +msgid ":class:`GuildSticker`" +msgstr "" + +#: ../../docstring 20edfaefd22440da84fddf28d0239074 +#: discord.Intents.emojis_and_stickers:14 of +msgid ":meth:`Client.get_emoji`" +msgstr "" + +#: ../../docstring cd87fc16dde641848e06cdc3745dd7ec +#: discord.Intents.emojis_and_stickers:15 of +msgid ":meth:`Client.get_sticker`" +msgstr "" + +#: ../../docstring 376ebab11fed410fa9ee648eadadd06b +#: discord.Intents.emojis_and_stickers:16 of +msgid ":meth:`Client.emojis`" +msgstr "" + +#: ../../docstring da53d34b3cb74143990b6155914f84c5 +#: discord.Intents.emojis_and_stickers:17 of +msgid ":meth:`Client.stickers`" +msgstr "" + +#: ../../docstring 9f06e0f5a8254b18b243c717cede85e3 +#: discord.Intents.emojis_and_stickers:18 of +msgid ":attr:`Guild.emojis`" +msgstr "" + +#: ../../docstring discord.Intents.emojis_and_stickers:19 +#: e94aedb0a92a4d2eb749430c9b904893 of +msgid ":attr:`Guild.stickers`" +msgstr "" + +#: ../../docstring 82cc9e2c3bf94471a6afe7055f1931ba +#: discord.Intents.integrations:1 of +msgid "Whether guild integration related events are enabled." +msgstr "" + +#: ../../docstring 074ea97303b1430abbb66ffdecfa5a06 +#: discord.Intents.integrations:5 of +msgid ":func:`on_guild_integrations_update`" +msgstr "" + +#: ../../docstring db8b10abf30e4f338ba3321c01b0d8d0 +#: discord.Intents.integrations:6 of +msgid ":func:`on_integration_create`" +msgstr "" + +#: ../../docstring 8a4c01932a9047bfb9bdacda59b4d202 +#: discord.Intents.integrations:7 of +msgid ":func:`on_integration_update`" +msgstr "" + +#: ../../docstring 15163e886024445285a54eabe211de99 +#: discord.Intents.integrations:8 of +msgid ":func:`on_raw_integration_delete`" +msgstr "" + +#: ../../docstring b91eb60353b748fbafd2ab4d468854e7 discord.Intents.webhooks:1 +#: of +msgid "Whether guild webhook related events are enabled." +msgstr "" + +#: ../../docstring 219b90d43ecd4cdb93842cde0ca7ad8b discord.Intents.webhooks:5 +#: of +msgid ":func:`on_webhooks_update`" +msgstr "" + +#: ../../docstring a000154afa16498980313a5774ee7da9 discord.Intents.invites:1 +#: of +msgid "Whether guild invite related events are enabled." +msgstr "" + +#: ../../docstring discord.Intents.invites:5 e21ae498f88e4d79beda0758f132251c +#: of +msgid ":func:`on_invite_create`" +msgstr "" + +#: ../../docstring 16e7fe795f964391a3f3c86dd75b9d96 discord.Intents.invites:6 +#: of +msgid ":func:`on_invite_delete`" +msgstr "" + +#: ../../docstring discord.Intents.voice_states:1 +#: e40caa1c65ad491e9d112f97b21e9d8e of +msgid "Whether guild voice state related events are enabled." +msgstr "" + +#: ../../docstring 25fed9eca43349af9467668ab9bd21d4 +#: discord.Intents.voice_states:5 of +msgid ":func:`on_voice_state_update`" +msgstr "" + +#: ../../docstring d13a218f2ccd4c72853d83e4a9c76975 +#: discord.Intents.voice_states:9 of +msgid ":attr:`VoiceChannel.members`" +msgstr "" + +#: ../../docstring 010907bf48744b41ba2066fa7971db0c +#: discord.Intents.voice_states:10 of +msgid ":attr:`VoiceChannel.voice_states`" +msgstr "" + +#: ../../docstring 5847c603abd6407594c201013dd8e965 +#: discord.Intents.voice_states:11 of +msgid ":attr:`StageChannel.members`" +msgstr "" + +#: ../../docstring 03062dcaae8b4486b35fef28bee77b23 +#: discord.Intents.voice_states:12 of +msgid ":attr:`StageChannel.speakers`" +msgstr "" + +#: ../../docstring 5eb68043f742471c8924c38f23130e9b +#: discord.Intents.voice_states:13 of +msgid ":attr:`StageChannel.listeners`" +msgstr "" + +#: ../../docstring 8f5eb7e3b8b9465ead3f169d2049572c +#: discord.Intents.voice_states:14 of +msgid ":attr:`StageChannel.moderators`" +msgstr "" + +#: ../../docstring 01d00b56e1734ae2bbc6695d1ec8963f +#: discord.Intents.voice_states:15 of +msgid ":attr:`StageChannel.voice_states`" +msgstr "" + +#: ../../docstring 8623195a820b416d9a6130d1bbe427b7 +#: discord.Intents.voice_states:16 of +msgid ":attr:`Member.voice`" +msgstr "" + +#: ../../docstring 437a20aa62fc4ddfb41a12901a70cd78 +#: discord.Intents.voice_states:20 of +msgid "This intent is required to connect to voice." +msgstr "" + +#: ../../docstring discord.Intents.presences:1 fbc8359014d746b0a17b72ed18b39f57 +#: of +msgid "Whether guild presence related events are enabled." +msgstr "" + +#: ../../docstring 44e82bb60e6248308eda2e1b8038ab7c discord.Intents.presences:5 +#: of +msgid ":func:`on_presence_update`" +msgstr "" + +#: ../../docstring 47402cd7574849d5bf6fe573f4bd9555 discord.Intents.presences:9 +#: of +msgid ":attr:`Member.activities`" +msgstr "" + +#: ../../docstring 0331fd7b353f4017ae99fad38700eaa3 +#: discord.Intents.presences:10 of +msgid ":attr:`Member.status`" +msgstr "" + +#: ../../docstring 941c4033f3b146b3b68cd484390ed0ae +#: discord.Intents.presences:11 of +msgid ":attr:`Member.raw_status`" +msgstr "" + +#: ../../docstring c315eb5d04dc45fb80aecee083152af7 +#: discord.Intents.presences:13 of +msgid "" +"For more information go to the :ref:`presence intent documentation " +"`." +msgstr "" + +#: ../../docstring d1e7f97822e24e70a925b90529c3efba discord.Intents.messages:1 +#: of +msgid "Whether guild and direct message related events are enabled." +msgstr "" + +#: ../../docstring 6386e552b53743b79119a4e475d56ce8 discord.Intents.messages:3 +#: of +msgid "" +"This is a shortcut to set or get both :attr:`guild_messages` and " +":attr:`dm_messages`." +msgstr "" + +#: ../../docstring a5a4c34d434f48bdac4424fafb6ec8e8 discord.Intents.messages:7 +#: of +msgid ":func:`on_message` (both guilds and DMs)" +msgstr "" + +#: ../../docstring 05ddab36bc384b5284e911515e17751d discord.Intents.messages:8 +#: of +msgid ":func:`on_message_edit` (both guilds and DMs)" +msgstr "" + +#: ../../docstring 283766bb3cf4476fb2a99046a5e96388 discord.Intents.messages:9 +#: of +msgid ":func:`on_message_delete` (both guilds and DMs)" +msgstr "" + +#: ../../docstring discord.Intents.messages:10 e60854278414426b82501fcd8b4824d2 +#: of +msgid ":func:`on_raw_message_delete` (both guilds and DMs)" +msgstr "" + +#: ../../docstring 280b2627330241538608b590b0a27fda discord.Intents.messages:11 +#: of +msgid ":func:`on_raw_message_edit` (both guilds and DMs)" +msgstr "" + +#: ../../docstring 131678d976fa4452a3c6274c4a114015 +#: 3a20c463f48c465d92f7b983f9414c0f 4cc0d56ddc4341339bbabe226cfff4ea +#: 699d3aec6d4142f285dafede7e7eea19 6f70df5e3a324290889232d0395e7f0f +#: b305f440e0f448fbb7b9f3cd38300788 discord.Intents.dm_messages:15 +#: discord.Intents.guild_messages:15 discord.Intents.messages:15 +#: discord.message.PartialMessage.end_poll:8 +#: discord.message.PartialMessage.fetch:6 discord.poll.Poll.end:5 of +msgid ":class:`Message`" +msgstr "" + +#: ../../docstring b7094fdc4fba47d2a0e577bae573534a discord.Intents.messages:16 +#: of +msgid ":attr:`Client.cached_messages`" +msgstr "" + +#: ../../docstring dbd4d13864b74d0caf335c06d31ae082 discord.Intents.messages:17 +#: of +msgid ":meth:`Client.get_message`" +msgstr "" + +#: ../../docstring be2c7bbc837145fd9d0669915b819a4f discord.Intents.messages:18 +#: of +msgid ":attr:`Client.polls`" +msgstr "" + +#: ../../docstring 2574800ac9db4d8ea2a5340a9d9e27dc discord.Intents.messages:19 +#: of +msgid ":meth:`Client.get_poll`" +msgstr "" + +#: ../../docstring 3bdf1873d5a74fbea1e77e2f6675beba +#: discord.Intents.dm_messages:21 discord.Intents.guild_messages:21 +#: discord.Intents.messages:21 f674049e077048a98e3783c5fb184729 +#: fc0283f014bc4a5b9324a679e0833a98 of +msgid "" +"Note that due to an implicit relationship this also corresponds to the " +"following events:" +msgstr "" + +#: ../../docstring 4f0824eaddd64a2a81888d5b807b6347 discord.Intents.messages:23 +#: discord.Intents.reactions:7 ffd561d996284ac3a46639791d4fc26e of +msgid ":func:`on_reaction_add` (both guilds and DMs)" +msgstr "" + +#: ../../docstring 7ef5737b80aa46ff8b63044455a72240 +#: bc06530511074b05bd24b74d33bc9ff1 discord.Intents.messages:24 +#: discord.Intents.reactions:8 of +msgid ":func:`on_reaction_remove` (both guilds and DMs)" +msgstr "" + +#: ../../docstring 394bfa686d5e4cddbfeb4a5eac2ae4ae +#: 642521a6775f42d986de623796667074 discord.Intents.messages:25 +#: discord.Intents.reactions:9 of +msgid ":func:`on_reaction_clear` (both guilds and DMs)" +msgstr "" + +#: ../../docstring 113a885ba72a479f9816cf312e9508e8 discord.Intents.messages:29 +#: of +msgid "" +":attr:`message_content` is required to receive the actual content of " +"guild messages." +msgstr "" + +#: ../../docstring 58d595eb07f64b7d88b031c98848e443 +#: discord.Intents.guild_messages:1 of +msgid "Whether guild message related events are enabled." +msgstr "" + +#: ../../docstring 76c0df55b55e4e35bcfafdeb2894f87b +#: discord.Intents.guild_messages:3 of +msgid "See also :attr:`dm_messages` for DMs or :attr:`messages` for both." +msgstr "" + +#: ../../docstring 3ed6f2cf4e5346d792100f12dc292a14 +#: discord.Intents.guild_messages:7 of +msgid ":func:`on_message` (only for guilds)" +msgstr "" + +#: ../../docstring 2d87f5c419fd40eda73ddb7c8eadc4a3 +#: discord.Intents.guild_messages:8 of +msgid ":func:`on_message_edit` (only for guilds)" +msgstr "" + +#: ../../docstring 6a5683151a954cef8e456f31a8f4b60c +#: discord.Intents.guild_messages:9 of +msgid ":func:`on_message_delete` (only for guilds)" +msgstr "" + +#: ../../docstring 278599b279eb41888c8afe2a640c9e3e +#: discord.Intents.guild_messages:10 of +msgid ":func:`on_raw_message_delete` (only for guilds)" +msgstr "" + +#: ../../docstring 3edb50195c384b008f95a101f0a67a93 +#: discord.Intents.guild_messages:11 of +msgid ":func:`on_raw_message_edit` (only for guilds)" +msgstr "" + +#: ../../docstring discord.Intents.guild_messages:16 +#: fed192185bb04b4287239cad91879f78 of +msgid ":attr:`Client.cached_messages` (only for guilds)" +msgstr "" + +#: ../../docstring 36841d614dfe42c187467691f00ca877 +#: discord.Intents.guild_messages:17 of +msgid ":meth:`Client.get_message` (only for guilds)" +msgstr "" + +#: ../../docstring db5907ffd40d4722820e9b43477aab5c +#: discord.Intents.guild_messages:18 of +msgid ":attr:`Client.polls` (only for guilds)" +msgstr "" + +#: ../../docstring 9ff157fcf1ca48ee99c05bfbb7794d19 +#: discord.Intents.guild_messages:19 of +msgid ":meth:`Client.get_poll` (only for guilds)" +msgstr "" + +#: ../../docstring 0f9dd91ef1a649588b0c988cd620e899 +#: c8df715cc6f3485fb0be9c491e646337 discord.Intents.guild_messages:23 +#: discord.Intents.guild_reactions:7 of +msgid ":func:`on_reaction_add` (only for guilds)" +msgstr "" + +#: ../../docstring 1c5ff802260840e5aaa934513f0f0779 +#: b51729b9d73e4397838fa22d56fdb613 discord.Intents.guild_messages:24 +#: discord.Intents.guild_reactions:8 of +msgid ":func:`on_reaction_remove` (only for guilds)" +msgstr "" + +#: ../../docstring 8c1165c7fa7941e59b5a7f5666dcd44b +#: discord.Intents.guild_messages:25 discord.Intents.guild_reactions:9 +#: f1ea6c632a6c4141aba136ccb278bd69 of +msgid ":func:`on_reaction_clear` (only for guilds)" +msgstr "" + +#: ../../docstring a64ea14a09974cb1b16bcc4f867c2d66 +#: discord.Intents.guild_messages:27 of +msgid "" +"Without the :attr:`message_content` intent enabled, the following fields " +"are either an empty string or empty array:" +msgstr "" + +#: ../../docstring a137ba63f3c846b3bd5d57a7bf96e78c +#: d177535ebad849a4baae6d17fa3e786b discord.Intents.guild_messages:30 +#: discord.Intents.message_content:5 of +msgid ":attr:`Message.content`" +msgstr "" + +#: ../../docstring 7c7118245dc842a49b2ad81bc4ba0ebb +#: af61766b09a94aa8a75595f3be33a449 discord.Intents.guild_messages:31 +#: discord.Intents.message_content:6 of +msgid ":attr:`Message.embeds`" +msgstr "" + +#: ../../docstring 058da375316a46a0af5a9c3109b1f253 +#: discord.Intents.guild_messages:32 discord.Intents.message_content:7 +#: ebb75125811444e4a46f7aef8bbb23b8 of +msgid ":attr:`Message.attachments`" +msgstr "" + +#: ../../docstring 323a68adf77442f680a96f59bea295e3 +#: 9dc7fe52d32942078f6af7ec79f3d42b discord.Intents.guild_messages:33 +#: discord.Intents.message_content:8 of +msgid ":attr:`Message.components`" +msgstr "" + +#: ../../docstring 4ad7140b499a4cb89a813065e5957e41 +#: bb8eef7fe7034efc99a7fdba061ec310 discord.Intents.guild_messages:34 +#: discord.Intents.message_content:9 of +msgid ":attr:`Message.poll`" +msgstr "" + +#: ../../docstring 39f1204df2e74395a1eb386b27a8f22b +#: discord.Intents.guild_messages:36 of +msgid "" +"For more information go to the :ref:`message content intent documentation" +" `." +msgstr "" + +#: ../../docstring c78c215a6aae4169a1f9a3c1724c1c35 +#: discord.Intents.dm_messages:1 of +msgid "Whether direct message related events are enabled." +msgstr "" + +#: ../../docstring 545f70f28af845d895fab795a8db798e +#: discord.Intents.dm_messages:3 of +msgid "See also :attr:`guild_messages` for guilds or :attr:`messages` for both." +msgstr "" + +#: ../../docstring 49535423a41f4e07bbeef03b8a73feae +#: discord.Intents.dm_messages:7 of +msgid ":func:`on_message` (only for DMs)" +msgstr "" + +#: ../../docstring 4fbb198aa9eb4036b38997263f645a36 +#: discord.Intents.dm_messages:8 of +msgid ":func:`on_message_edit` (only for DMs)" +msgstr "" + +#: ../../docstring c052558aa6fd499d961a30ac05b3701f +#: discord.Intents.dm_messages:9 of +msgid ":func:`on_message_delete` (only for DMs)" +msgstr "" + +#: ../../docstring 5f6aed68f8e2437eab3b43825ba7351b +#: discord.Intents.dm_messages:10 of +msgid ":func:`on_raw_message_delete` (only for DMs)" +msgstr "" + +#: ../../docstring bfff63df875f474ab2731d3523fda430 +#: discord.Intents.dm_messages:11 of +msgid ":func:`on_raw_message_edit` (only for DMs)" +msgstr "" + +#: ../../docstring 30afb4a67fe94b679534c913638a5e7a +#: discord.Intents.dm_messages:16 of +msgid ":attr:`Client.cached_messages` (only for DMs)" +msgstr "" + +#: ../../docstring 26d6c2d45f2040049b45dec2d0a92c72 +#: discord.Intents.dm_messages:17 of +msgid ":meth:`Client.get_message` (only for DMs)" +msgstr "" + +#: ../../docstring b7c04389bf3f499a907e6aac732891be +#: discord.Intents.dm_messages:18 of +msgid ":attr:`Client.polls` (only for DMs)" +msgstr "" + +#: ../../docstring 978fd4fa51e54ed1b278b30a947cb3ef +#: discord.Intents.dm_messages:19 of +msgid ":meth:`Client.get_poll` (only for DMs)" +msgstr "" + +#: ../../docstring 589df8506c3445e5bb27a3f7c0e1eb13 +#: c93500c986124c1392636208ff6c21bf discord.Intents.dm_messages:23 +#: discord.Intents.dm_reactions:7 of +msgid ":func:`on_reaction_add` (only for DMs)" +msgstr "" + +#: ../../docstring 6b9d55f3802a435184fcb981cea63230 +#: discord.Intents.dm_messages:24 discord.Intents.dm_reactions:8 +#: e84e9e724cad49af88471537ded96255 of +msgid ":func:`on_reaction_remove` (only for DMs)" +msgstr "" + +#: ../../docstring 7551821d00e94b5783620a188bf47757 +#: 85eb129e0b244960ab86b6367da8d207 discord.Intents.dm_messages:25 +#: discord.Intents.dm_reactions:9 of +msgid ":func:`on_reaction_clear` (only for DMs)" +msgstr "" + +#: ../../docstring 929be1e90b7c4127b4b1a4b1f5227e67 discord.Intents.reactions:1 +#: of +msgid "Whether guild and direct message reaction related events are enabled." +msgstr "" + +#: ../../docstring cbf06a86328b41278e14751624f52288 discord.Intents.reactions:3 +#: of +msgid "" +"This is a shortcut to set or get both :attr:`guild_reactions` and " +":attr:`dm_reactions`." +msgstr "" + +#: ../../docstring b520e34dccd94a90921124ddda898f9c +#: discord.Intents.reactions:10 of +msgid ":func:`on_raw_reaction_add` (both guilds and DMs)" +msgstr "" + +#: ../../docstring d1960985d4cd4c66a2bde602f35b5a51 +#: discord.Intents.reactions:11 of +msgid ":func:`on_raw_reaction_remove` (both guilds and DMs)" +msgstr "" + +#: ../../docstring 4cd08c85fad54d61a5544a683a991117 +#: discord.Intents.reactions:12 of +msgid ":func:`on_raw_reaction_clear` (both guilds and DMs)" +msgstr "" + +#: ../../docstring 2e02a28d4a2941f78808f39deab7fb97 +#: discord.Intents.reactions:16 of +msgid ":attr:`Message.reactions` (both guild and DM messages)" +msgstr "" + +#: ../../docstring cb03c57ff0ee486e98028d316ac7b15a +#: discord.Intents.guild_reactions:1 of +msgid "Whether guild message reaction related events are enabled." +msgstr "" + +#: ../../docstring d10593579af2443baef608bbeb6f2545 +#: discord.Intents.guild_reactions:3 of +msgid "See also :attr:`dm_reactions` for DMs or :attr:`reactions` for both." +msgstr "" + +#: ../../docstring 0df07d2a7df544c48d8f96dc8113264e +#: discord.Intents.guild_reactions:10 of +msgid ":func:`on_raw_reaction_add` (only for guilds)" +msgstr "" + +#: ../../docstring discord.Intents.guild_reactions:11 +#: ebc3e0c3b4784460ac493e199affb0fc of +msgid ":func:`on_raw_reaction_remove` (only for guilds)" +msgstr "" + +#: ../../docstring 306a280e3a2e4b30adb4f319eeda6048 +#: discord.Intents.guild_reactions:12 of +msgid ":func:`on_raw_reaction_clear` (only for guilds)" +msgstr "" + +#: ../../docstring 57c1129e4dc44018b3a3c668aef10c29 +#: discord.Intents.guild_reactions:16 of +msgid ":attr:`Message.reactions` (only for guild messages)" +msgstr "" + +#: ../../docstring 2538837a36a94c71b5a8d6da0d6b2433 +#: discord.Intents.dm_reactions:1 of +msgid "Whether direct message reaction related events are enabled." +msgstr "" + +#: ../../docstring discord.Intents.dm_reactions:3 +#: e8b13dc4be62458eac269ecaa10d11f8 of +msgid "See also :attr:`guild_reactions` for guilds or :attr:`reactions` for both." +msgstr "" + +#: ../../docstring discord.Intents.dm_reactions:10 +#: f7472ddcc3b849d1b46cba92ebcafa33 of +msgid ":func:`on_raw_reaction_add` (only for DMs)" +msgstr "" + +#: ../../docstring 77b2519afcc2442cb4f6d12fa82775b2 +#: discord.Intents.dm_reactions:11 of +msgid ":func:`on_raw_reaction_remove` (only for DMs)" +msgstr "" + +#: ../../docstring 4fd01a8e43c14ab09b21a1bed73cdddb +#: discord.Intents.dm_reactions:12 of +msgid ":func:`on_raw_reaction_clear` (only for DMs)" +msgstr "" + +#: ../../docstring 6c0795ef9c794e53b8975d533ed6ce7a +#: discord.Intents.dm_reactions:16 of +msgid ":attr:`Message.reactions` (only for DM messages)" +msgstr "" + +#: ../../docstring 8d8207f6f69441fba7d0f03fa6f9ff53 +#: 9ff7cfd43aa44d0193722bec92998fd9 discord.Intents.dm_typing:1 +#: discord.Intents.guild_typing:1 discord.Intents.typing:1 +#: fb5b74711cf94bc8800f3998b67e5970 of +msgid "Whether guild and direct message typing related events are enabled." +msgstr "" + +#: ../../docstring b898e59ee7fc4342baeedbd1b73f4b33 discord.Intents.typing:3 of +msgid "" +"This is a shortcut to set or get both :attr:`guild_typing` and " +":attr:`dm_typing`." +msgstr "" + +#: ../../docstring discord.Intents.typing:7 e88904e1ceb741c38dff4b489f9992d4 of +msgid ":func:`on_typing` (both guilds and DMs)" +msgstr "" + +#: ../../docstring discord.Intents.guild_typing:3 +#: e1722de30ef1478d936b8eccf5f35690 of +msgid "See also :attr:`dm_typing` for DMs or :attr:`typing` for both." +msgstr "" + +#: ../../docstring 5f100734e1944fdb982c0fb6c5670427 +#: discord.Intents.guild_typing:7 of +msgid ":func:`on_typing` (only for guilds)" +msgstr "" + +#: ../../docstring 7c61fa008d294a99be7d718feddada6d discord.Intents.dm_typing:3 +#: of +msgid "See also :attr:`guild_typing` for guilds or :attr:`typing` for both." +msgstr "" + +#: ../../docstring c578de896535489da4db6a189776729e discord.Intents.dm_typing:7 +#: of +msgid ":func:`on_typing` (only for DMs)" +msgstr "" + +#: ../../docstring cbad205f564c47e592d5884c800312f8 +#: discord.Intents.message_content:1 of +msgid "Whether the bot will receive message content in guild messages." +msgstr "" + +#: ../../docstring 3e92f261dce94ddbb7620f9de2097dac +#: discord.Intents.message_content:3 of +msgid "This corresponds to the following attributes:" +msgstr "" + +#: ../../docstring 44b2007f97a2416092e57c8f2aba59fc +#: discord.Intents.message_content:11 of +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 51ab78245c344515b0f1125e605a15c4 +#: discord.Intents.message_content:18 of +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 bef96b66a0f244b5a38f7241d4fab76c +#: discord.Intents.scheduled_events:1 of +msgid "Whether \"scheduled event\" related events are enabled." +msgstr "" + +#: ../../docstring bc9ab281c7634eb5903762e2016e824c +#: discord.Intents.scheduled_events:5 of +msgid ":func:`on_scheduled_event_create`" +msgstr "" + +#: ../../docstring 1424de2889d44cd08ee76f3e5ec71212 +#: discord.Intents.scheduled_events:6 of +msgid ":func:`on_scheduled_event_update`" +msgstr "" + +#: ../../docstring de2b0468d2bc46f5b7fa230073ff053a +#: discord.Intents.scheduled_events:7 of +msgid ":func:`on_scheduled_event_delete`" +msgstr "" + +#: ../../docstring 06db204669404231b2bbef48f48ac834 +#: discord.Intents.scheduled_events:8 of +msgid ":func:`on_scheduled_event_user_add`" +msgstr "" + +#: ../../docstring 5359210e9b034fb58acda9ecad6f33b9 +#: discord.Intents.scheduled_events:9 of +msgid ":func:`on_raw_scheduled_event_user_add`" +msgstr "" + +#: ../../docstring 68dc5c5f11e8478d98811c45c76789d6 +#: discord.Intents.scheduled_events:10 of +msgid ":func:`on_scheduled_event_user_remove`" +msgstr "" + +#: ../../docstring discord.Intents.scheduled_events:11 +#: fb0c541330cd4eb88e186b73cd07a7cc of +msgid ":func:`on_raw_scheduled_event_user_remove`" +msgstr "" + +#: ../../docstring discord.Intents.scheduled_events:15 +#: ee5536d3feff443e8d0c7257c67d2d54 of +msgid ":class:`ScheduledEvent`" +msgstr "" + +#: ../../docstring 3c14bd88cc6c4ccb8901dfdd0b76e80e +#: discord.Intents.scheduled_events:16 of +msgid ":meth:`Guild.get_scheduled_event`" +msgstr "" + +#: ../../docstring bec3db92d166482db1bba849f1e94291 +#: discord.Intents.auto_moderation_configuration:1 of +msgid "Whether guild auto moderation configuration events are enabled." +msgstr "" + +#: ../../docstring 1ac39f8cf9b4469d8d999661b8c24c74 +#: discord.Intents.auto_moderation_configuration:5 of +msgid ":func:`on_auto_moderation_rule_create`" +msgstr "" + +#: ../../docstring 8ac648368db54bacbec2e2eb40e77113 +#: discord.Intents.auto_moderation_configuration:6 of +msgid ":func:`on_auto_moderation_rule_update`" +msgstr "" + +#: ../../docstring 18b27bf369534e788deddd820a097b47 +#: discord.Intents.auto_moderation_configuration:7 of +msgid ":func:`on_auto_moderation_rule_delete`" +msgstr "" + +#: ../../docstring 475351bf214c4885ad631c85594f4a8e +#: discord.Intents.auto_moderation_execution:1 of +msgid "Whether guild auto moderation execution events are enabled." +msgstr "" + +#: ../../docstring 4c983eebeaf4485db5c3ddebcbf0efd2 +#: discord.Intents.auto_moderation_execution:5 of +msgid ":func:`on_auto_moderation_action_execution`" +msgstr "" + +#: ../../docstring discord.Intents.guild_polls:1 +#: f95bad9f8617427192960ee5d7d3e351 of +msgid "Whether poll-related events in guilds are enabled." +msgstr "" + +#: ../../docstring 5d507f28ee044395a8d1ae3be6ceacf3 +#: discord.Intents.guild_polls:3 of +msgid "See also :attr:`dm_polls` for DMs or :attr:`polls` for both." +msgstr "" + +#: ../../docstring 5a045fdc9fdc485d83c2322409038d31 +#: discord.Intents.guild_polls:7 of +msgid ":func:`on_poll_vote_add` (only for guilds)" +msgstr "" + +#: ../../docstring 304c6596289646aa8a1095805ef028f0 +#: discord.Intents.guild_polls:8 of +msgid ":func:`on_poll_vote_remove` (only for guilds)" +msgstr "" + +#: ../../docstring 05e8e2280e21407a918e5f02c960d2dd +#: discord.Intents.guild_polls:9 of +msgid ":func:`on_raw_poll_vote_add` (only for guilds)" +msgstr "" + +#: ../../docstring 00dca805aaad44d4bfafd78fe271c325 +#: discord.Intents.guild_polls:10 of +msgid ":func:`on_raw_poll_vote_remove` (only for guilds)" +msgstr "" + +#: ../../docstring 6cb33f052b444dc4a60d14bdb8d808bd +#: discord.Intents.guild_polls:14 of +msgid ":attr:`PollAnswer.count` (only for guild polls)" +msgstr "" + +#: ../../docstring 79059d2bf47f438989117431cfe9b020 +#: discord.Intents.guild_polls:15 of +msgid ":attr:`PollResults.answer_counts` (only for guild polls)" +msgstr "" + +#: ../../docstring 118d37e2ee15448e94dfc019ade6914d discord.Intents.dm_polls:1 +#: of +msgid "Whether poll-related events in direct messages are enabled." +msgstr "" + +#: ../../docstring 35d0eccff7ce4576b46e08fe19302360 discord.Intents.dm_polls:3 +#: of +msgid "See also :attr:`guild_polls` for guilds or :attr:`polls` for both." +msgstr "" + +#: ../../docstring 723ad2dc12714853bc08f2a76e74e345 discord.Intents.dm_polls:7 +#: of +msgid ":func:`on_poll_vote_add` (only for DMs)" +msgstr "" + +#: ../../docstring 3382fccc94ce4299a51acd0d773ab5ef discord.Intents.dm_polls:8 +#: of +msgid ":func:`on_poll_vote_remove` (only for DMs)" +msgstr "" + +#: ../../docstring 2148babdf16e4f559aecaf0922d94215 discord.Intents.dm_polls:9 +#: of +msgid ":func:`on_raw_poll_vote_add` (only for DMs)" +msgstr "" + +#: ../../docstring 8586c19bb54b43a082fc6299120ebd4d discord.Intents.dm_polls:10 +#: of +msgid ":func:`on_raw_poll_vote_remove` (only for DMs)" +msgstr "" + +#: ../../docstring 50969bfe9ded4c00920f06d8c016a91f discord.Intents.dm_polls:14 +#: of +msgid ":attr:`PollAnswer.count` (only for DM polls)" +msgstr "" + +#: ../../docstring a86842a665c548bda7a307438926efa7 discord.Intents.dm_polls:15 +#: of +msgid ":attr:`PollResults.answer_counts` (only for DM polls)" +msgstr "" + +#: ../../docstring 1a141b9e47d24aa88c14c0347e995fc4 discord.Intents.polls:1 of +msgid "Whether poll-related events in guilds and direct messages are enabled." +msgstr "" + +#: ../../docstring 8f82d792166e4b44a58ce77352695e92 discord.Intents.polls:3 of +msgid "" +"This is a shortcut to set or get both :attr:`guild_polls` and " +":attr:`dm_polls`." +msgstr "" + +#: ../../docstring b6062d500cd5462585ee87b16a9b27b7 discord.Intents.polls:7 of +msgid ":func:`on_poll_vote_add` (both guilds and DMs)" +msgstr "" + +#: ../../docstring discord.Intents.polls:8 e166efad26614235a9e0fa97638be809 of +msgid ":func:`on_poll_vote_remove` (both guilds and DMs)" +msgstr "" + +#: ../../docstring 4c2d0558315b48aca6d884f5e1fa6482 discord.Intents.polls:9 of +msgid ":func:`on_raw_poll_vote_add` (both guilds and DMs)" +msgstr "" + +#: ../../docstring discord.Intents.polls:10 f61aa21b0abf475a80062c2ec1e01c35 of +msgid ":func:`on_raw_poll_vote_remove` (both guilds and DMs)" +msgstr "" + +#: ../../docstring 049eee0a0e6e486e93c18c742946c954 discord.Intents.polls:14 of +msgid ":attr:`PollAnswer.count` (both guild and DM polls)" +msgstr "" + +#: ../../docstring b745c7b501f8431c9568babd02d6d953 discord.Intents.polls:15 of +msgid ":attr:`PollResults.answer_counts` (both guild and DM polls)" +msgstr "" + +#: 84a87c23e08949c7a63adab75f08db4d discord.shard.ShardInfo:1 of +msgid "A class that gives information and control over a specific shard." +msgstr "" + +#: 47d2f7e18fe04d23b294149c6ca63d06 discord.shard.ShardInfo:3 of +msgid "" +"You can retrieve this object via :meth:`AutoShardedClient.get_shard` or " +":attr:`AutoShardedClient.shards`." +msgstr "" + +#: 5f4b433a305d4ecda4f5b1945c565813 discord.shard.ShardInfo:10 of +msgid "The shard ID for this shard." +msgstr "" + +#: 581a25b3efba444eb7ba3ff625adc7af discord.shard.ShardInfo:16 of +msgid "" +"The shard count for this cluster. If this is ``None`` then the bot has " +"not started yet." +msgstr "" + +#: 306bba96ba0e4d9dba84deee5cfa1ca4 49c4c30c182d4a029b0c433682a7412d +#: 8162371196bd4d3698a8c759ead84e30 838cbbf586be4eb48c92fc8e4c675bad +#: c99851f342584595848427fb38375fa3 discord.activity.Activity:16 +#: discord.message.MessageReference:12 discord.message.MessageReference:24 +#: discord.poll.Poll.total_votes:4 discord.shard.ShardInfo:18 of +msgid "Optional[:class:`int`]" +msgstr "" + +#: discord.shard.ShardInfo.is_closed:1 e588f36be137417db4a513b55beb6351 of +msgid "Whether the shard connection is currently closed." +msgstr "" + +#: 1deab10c0cf44d5ebef1094734d407fa 2dc3cf8651e14433bd3ee820059d76b7 +#: 58d0f572132547b7a1dbaf2927806124 9aca5fcb17de43ee849174bf0bd5a3f7 +#: discord.permissions.Permissions.is_strict_subset:5 +#: discord.permissions.Permissions.is_strict_superset:5 +#: discord.permissions.Permissions.is_subset:5 +#: discord.permissions.Permissions.is_superset:5 +#: discord.shard.ShardInfo.is_closed:4 e5cf537b04f84783b85321de221b27f6 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 15f434b61dcf47238188f7d6b255820a 16beb5731b34440e8311de7df97d1025 +#: 1ffa892166a146ab84fff747181eebec 2d31939098494f0489e8a053303107d7 +#: 336386f348c2475b83c479b3376548af 4e0e1cc8c5664c3ab71e2a4949beb87d +#: 5cab9ecf969d4d50b56f61b44621fee5 61d3fe2200f04894857f7a6b254fed20 +#: 7904d64bf9a04967826e310fa4258216 7b6aba613fd1494aa813bfbe67e79186 +#: a7e196aad6d0488bbb6dfd22ae6c3e4a bd84eac564274ac59010340e2b47be29 +#: be8ac68790a24964b952943c8f2574ab d76e286c35dc413d96b79e5d9b3d1542 +#: discord.message.Message.add_reaction:1 +#: discord.message.Message.clear_reaction:1 +#: discord.message.Message.clear_reactions:1 discord.message.Message.delete:1 +#: discord.message.Message.pin:1 discord.message.Message.publish:1 +#: discord.message.Message.remove_reaction:1 discord.message.Message.reply:1 +#: discord.message.Message.unpin:1 discord.message.PartialMessage.edit:1 +#: discord.message.PartialMessage.end_poll:1 +#: discord.message.PartialMessage.fetch:1 discord.shard.ShardInfo.connect:1 +#: discord.shard.ShardInfo.disconnect:1 discord.shard.ShardInfo.reconnect:1 +#: ec3829e4ac7245a9bc417ee15abd489d of +msgid "|coro|" +msgstr "" + +#: discord.shard.ShardInfo.disconnect:3 ecf67b0b5fc54349b0e8d8fa3e8357ad of +msgid "" +"Disconnects a shard. When this is called, the shard connection will no " +"longer be open." +msgstr "" + +#: 729b93fac4b6486189b7327d2b1dbbaa discord.shard.ShardInfo.disconnect:6 of +msgid "If the shard is already disconnected this does nothing." +msgstr "" + +#: 03c34a924dbb41ec8f7fe9a174a9d9cf 0b0b991b79bd439e82711767a57a444e +#: 107317f6166244bcbb972d7a0b7987ad 2aeb0522710e4223920fd1c621bb6bb9 +#: 4515407fc92b4f5e9acbf4ca0d5a5b35 47e54663a6ce4eb397362807481c17fc +#: 6111789b40ca4cc5bced0bd6c6a2582f 682dc42cdccd42f3a7f85235164dfb67 +#: 6ab82dd262114586ae1460ec0ef8949f 73f0e5de3dd34858ad6d28ee536f2960 +#: 9043897745234dccbdf21447a70af025 937a7163bad44cc0b251d6ab47e83b23 +#: aa62b139c3de4bb487cc42c48c0547a2 b85a83f1bf7745d4aae3e7ee2f39e4c5 +#: be32cd449b9d48dca13b42cef8b4e1cd d7fb8138b116469782b8128fe3a65e97 +#: discord.embeds.Embed.append_field:9 discord.embeds.Embed.clear_fields:4 +#: discord.embeds.Embed.remove_field:15 discord.message.Message.add_reaction:20 +#: discord.message.Message.clear_reaction:20 +#: discord.message.Message.clear_reactions:11 discord.message.Message.delete:24 +#: discord.message.Message.pin:18 discord.message.Message.publish:14 +#: discord.message.Message.remove_reaction:25 discord.message.Message.unpin:18 +#: discord.permissions.PermissionOverwrite.update:10 +#: discord.permissions.Permissions.update:10 discord.shard.ShardInfo.connect:6 +#: discord.shard.ShardInfo.disconnect:9 discord.shard.ShardInfo.reconnect:6 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: 3ca454d9c645490db147a17d1cfcbd0d discord.shard.ShardInfo.reconnect:3 of +msgid "Disconnects and then connects the shard again." +msgstr "" + +#: 4369546ad28f4db7b54d0be7be35146c discord.shard.ShardInfo.connect:3 of +msgid "Connects a shard. If the shard is already connected this does nothing." +msgstr "" + +#: a1f36fed4af44c01a9019cc4415319a2 discord.ShardInfo.latency:1 of +msgid "" +"Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for " +"this shard." +msgstr "" + +#: 17a313ff1c1c4f18989340eb1c290ed9 discord.shard.ShardInfo.is_ws_ratelimited:1 +#: of +msgid "Whether the websocket is currently rate limited." +msgstr "" + +#: de4084473dcf4a36a6c44ee307905482 discord.shard.ShardInfo.is_ws_ratelimited:3 +#: of +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 "" + +#: 68de5fcef5f94fbdaf3d75ea7edc3e4d discord.mentions.AllowedMentions:1 of +msgid "A class that represents what mentions are allowed in a message." +msgstr "" + +#: c68127e476394b188a4eaaf7dc79ba2d discord.mentions.AllowedMentions:3 of +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 "" + +#: 373d657b9ca9432fbf94b5cbcd98de32 discord.mentions.AllowedMentions:9 of +msgid "Whether to allow everyone and here mentions. Defaults to ``True``." +msgstr "" + +#: 294c0e16454d4deb9930e7ce4ad19e32 discord.mentions.AllowedMentions:15 of +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 "" + +#: 481cf58f03144feda8cabc58d0c1e2ee 530c33a7c302431cbd3d33ded378f0ba +#: discord.mentions.AllowedMentions:21 discord.mentions.AllowedMentions:31 of +msgid "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" +msgstr "" + +#: 7ae63488c1fe4d4f978d73adf95cb6f7 discord.mentions.AllowedMentions:25 of +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 "" + +#: 33026490f59548eda43d83120ff762a0 discord.mentions.AllowedMentions:35 of +msgid "" +"Whether to mention the author of the message being replied to. Defaults " +"to ``True``." +msgstr "" + +#: c44ec110894948148069a5bc458fe5b9 discord.mentions.AllowedMentions.all:1 of +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 "" + +#: d9a6fb9e04ea469881c25941627a7172 discord.mentions.AllowedMentions.none:1 of +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 "" + +#: 7356eae6e80c48cabddc24248342e844 discord.message.MessageReference:1 of +msgid "Represents a reference to a :class:`~discord.Message`." +msgstr "" + +#: 8d9e3b5226b84a4d9a95bccfb7d8ccc5 discord.message.MessageReference:5 of +msgid "This class can now be constructed by users." +msgstr "" + +#: 64f0d504dd97408ca19d5fe84a0df71b discord.message.MessageReference:10 of +msgid "The id of the message referenced." +msgstr "" + +#: b3465d0402d0442e829de7d9fc0c70fb discord.message.MessageReference:16 of +msgid "The channel id of the message referenced." +msgstr "" + +#: 850b11222cbb40e28037b71bde8dd57f discord.message.MessageReference:22 of +msgid "The guild id of the message referenced." +msgstr "" + +#: discord.message.MessageReference:28 +#: discord.message.MessageReference.from_message:9 +#: ea0f2d067e6b4d12b130bbafb1face58 f161b3d6b9624e51af155755e2347428 of +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.MessageReference:37 e78e1e20c3a241d3831110a8584672ce of +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 "" + +#: b515d831ed234923be2b9bf7f76b9ae3 discord.message.MessageReference:43 of +msgid "" +"Currently, this is mainly the replied to message when a user replies to a" +" message." +msgstr "" + +#: 19036d2129714259ad50409d11530f07 discord.message.MessageReference:47 of +msgid "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" +msgstr "" + +#: 38dfb19fc9954c6aa0ff7e16266e3f0e +#: discord.message.MessageReference.from_message:1 of +msgid "" +"Creates a :class:`MessageReference` from an existing " +":class:`~discord.Message`." +msgstr "" + +#: a071c244685f4efbae71cdecef86fa51 +#: discord.message.MessageReference.from_message:6 of +msgid "The message to be converted into a reference." +msgstr "" + +#: 9d87e15db2c9447c9e88885a3e0c7f97 +#: discord.message.MessageReference.from_message:9 of +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 08dd3fc02d4d4132b443ec7913195e42 +#: 16d279861a2b43879ebd8b1f71a20671 2b0ecd4f873f466896142c355a524794 +#: 3ab4f060db814ac395725738d928b330 408145cd8b124a1a943e0057aa577f8f +#: 498bb8a0a5f142ddb8d32e95d62b1353 4ac61a3e497b4be5b871c0baafde13b8 +#: 5703a79f19c24ee7ad4eee5189719603 586a1eb31a564018bd9939a7ecea9ee4 +#: 70e99411e23d43eb8585dc43417efafa 98e4167f953b40db851724e2c969cbc6 +#: a1884408c24545a5ba907abd17fdcdb0 a2b5d900b9d54e2fa60473a890b42ec3 +#: a6ca5a3fecf44fb48027d663e2bec807 bc20f49f7ead49829d985ac83adc6d24 +#: ec698da13c7a4164a882b6d5a0868fe2 f298076f2da34bc6b0148276f66f26f5 +msgid "Returns" +msgstr "" + +#: 7440176a49d948b3838d6425ad4d9117 +#: discord.message.MessageReference.from_message:15 of +msgid "A reference to the message." +msgstr "" + +#: b558b9254e9b4404829ca2f6328601fb +#: discord.message.MessageReference.from_message:16 of +msgid ":class:`MessageReference`" +msgstr "" + +#: discord.MessageReference.cached_message:1 e6ec39418abd41f6a698bfae76703a02 +#: of +msgid "The cached message, if found in the internal message cache." +msgstr "" + +#: 741ef1bfdd924f8599b6b2586945ca23 discord.MessageReference.jump_url:1 of +msgid "Returns a URL that allows the client to jump to the referenced message." +msgstr "" + +#: discord.message.MessageCall:1 e14df9af50a04ea0be0f0b8d6d7c7217 of +msgid "Represents information about a call in a private channel." +msgstr "" + +#: d40bee3ac62041f6bd23c7b59415130c discord.MessageCall.participants:1 of +msgid "A list of :class:`User` that participated in this call." +msgstr "" + +#: discord.MessageCall.participants:3 eac74b3c5bbb4ecca33c22998b7aedc6 of +msgid "" +"If a user is not found in the client's cache, then it will be returned as" +" an :class:`Object`." +msgstr "" + +#: 9f12734610a74b0fb1263173c3491d33 discord.MessageCall.ended_at:1 of +msgid "An aware timestamp of when the call ended." +msgstr "" + +#: discord.message.PartialMessage:1 e23515a3745e48e0aa983bd9f441d4ed of +msgid "" +"Represents a partial message to aid with working messages when only a " +"message and channel ID are present." +msgstr "" + +#: 85a154f901df4f9e8b832dbe86812112 discord.message.PartialMessage:4 of +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.PartialMessage:7 fbc197c5dcea4c929ef5fd628a9678e6 of +msgid ":meth:`TextChannel.get_partial_message`" +msgstr "" + +#: discord.message.PartialMessage:8 e4309a228f054e5c8144ef070337dff0 of +msgid ":meth:`Thread.get_partial_message`" +msgstr "" + +#: 5fe3a1137b6b4dbca5bd2f9e3cd3ad2d discord.message.PartialMessage:9 of +msgid ":meth:`DMChannel.get_partial_message`" +msgstr "" + +#: 770dedf0d7114dc4945e8f3ca0425ae9 discord.message.PartialMessage:10 of +msgid ":meth:`VoiceChannel.get_partial_message`" +msgstr "" + +#: discord.message.PartialMessage:11 fad600ffac8d4fc28948c4f227ca6738 of +msgid ":meth:`StageChannel.get_partial_message`" +msgstr "" + +#: 58c599d04d364692bdb6b88fd2ec7d02 discord.message.PartialMessage:13 of +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "" + +#: discord.message.PartialMessage:21 e4ba7e0b8bc44daf89cca61ef932b4c7 of +msgid "Checks if two partial messages are equal." +msgstr "" + +#: 1e92d468fde74a73a1982f62f77caec3 discord.message.PartialMessage:25 of +msgid "Checks if two partial messages are not equal." +msgstr "" + +#: c75d297174c040c291921a55c84aff50 discord.message.PartialMessage:29 of +msgid "Returns the partial message's hash." +msgstr "" + +#: d6f75811b37446e4b8273a6368b9898b discord.message.PartialMessage:33 of +msgid "The channel associated with this partial message." +msgstr "" + +#: 541a020405794893b204059d68dab197 discord.message.PartialMessage:35 of +msgid "" +"Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, " +":class:`VoiceChannel`, :class:`StageChannel`]" +msgstr "" + +#: 31d02f342df640338bf76f95cf441475 discord.message.PartialMessage:39 of +msgid "The message ID." +msgstr "" + +#: discord.PartialMessage.jump_url:1 fbf0476ac2bd4f97acf8af65e0851cc3 of +msgid "Returns a URL that allows the client to jump to this message." +msgstr "" + +#: 29d3d44d9e2744588fef0d8f39679d7b discord.message.Message.delete:3 of +msgid "Deletes the message." +msgstr "" + +#: 96fae79288124f748e4e8c239b9b8b1a discord.message.Message.delete:5 of +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.Message.delete:9 e971acc468664c7ca471b26ba6621cf7 of +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "" + +#: 235950ff919946af9edc635392ba3699 discord.message.Message.delete:13 of +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.Message.delete:17 ea61a6f32dfa4957a53d4b532656c263 of +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "" + +#: ../../api/data_classes.rst 001d916f982d476587eff1e2d1c63951 +#: 05030101a7454efa870fadc0be85a462 14bfab826896452aadf027274a181303 +#: 1c16b408f5a7485cab09255b21d90265 1cfce800ac9e4c86b506aa60387df0f7 +#: 439ecd14c2de4107bd7654a744f764bf 4f08a853300046d4bbf1ee5f8b7f4e4d +#: 564b493c7da74b0a8b0026dc729e05e4 6cbbec69370949ccbac38a5efae1e204 +#: 768fc20ca68246c5b11a6405bf2756fa 8d21aa75650245c2a03c5f3d921b44ac +#: 97084ae06e884aa1935379014827d625 c413c5187bd34cee97e7cafc673a6e3d +#: d2961414192743948ccc68022cf9c4f6 d8a03160266345a28c22c0fe64f3d142 +#: discord.poll.Poll.add_answer discord.poll.PollAnswer.voters +#: ef42ed394a5e4e55bda1280fd319c154 of +msgid "Raises" +msgstr "" + +#: b41a10938385430fbde90c12f035c739 discord.message.Message.delete:20 of +msgid "You do not have proper permissions to delete the message." +msgstr "" + +#: discord.message.Message.delete:21 f7436f8b61e141a19280a62c8ed64f2e of +msgid "The message was deleted already" +msgstr "" + +#: bcbb6e482f804c64a4abecb6a4e45f19 discord.message.Message.delete:22 of +msgid "Deleting the message failed." +msgstr "" + +#: discord.message.Message.publish:3 f4e9dc8f86aa42a3a4c4055bbb33ce20 of +msgid "Publishes this message to your announcement channel." +msgstr "" + +#: bf76faf1f9274216a09c2e91f6386f58 discord.message.Message.publish:5 of +msgid "" +"You must have the :attr:`~Permissions.send_messages` permission to do " +"this." +msgstr "" + +#: 2c0ccdfabdea4c2ebf6deb39d29924c4 discord.message.Message.publish:7 of +msgid "" +"If the message is not your own then the " +":attr:`~Permissions.manage_messages` permission is also needed." +msgstr "" + +#: discord.message.Message.publish:10 ea693d1db97448e1a598c6ae8080dbf9 of +msgid "You do not have the proper permissions to publish this message." +msgstr "" + +#: 592c408165ff46f08ce8dd44d9425363 discord.message.Message.publish:11 of +msgid "Publishing the message failed." +msgstr "" + +#: discord.message.Message.pin:3 e4f6d1445a4d415c9125a39ce255020d of +msgid "Pins the message." +msgstr "" + +#: daa1cb3817894aabbb0ea1a18b81421d discord.message.Message.pin:5 +#: discord.message.Message.unpin:5 e669bf32b9aa44df8063d09c8e64a2e5 of +msgid "" +"You must have the :attr:`~Permissions.manage_messages` permission to do " +"this in a non-private channel context." +msgstr "" + +#: 689db2ebc4e949cbad070710a8741095 discord.message.Message.pin:9 of +msgid "" +"The reason for pinning the message. Shows up on the audit log. .. " +"versionadded:: 1.4" +msgstr "" + +#: 623c513b16e14fc0bbc6b4a535a3e44f discord.message.Message.pin:9 of +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "" + +#: 98fff9ede225464a8da6d514b271b810 discord.message.Message.pin:14 of +msgid "You do not have permissions to pin the message." +msgstr "" + +#: 4e6cc76945ec425e943e976a2f9d8bb4 a926f86ace9a4194a00a466364e85741 +#: discord.message.Message.pin:15 discord.message.Message.unpin:15 of +msgid "The message or channel was not found or deleted." +msgstr "" + +#: 6c215f6b7f2a4ddf8d77119142ed8b62 discord.message.Message.pin:16 of +msgid "" +"Pinning the message failed, probably due to the channel having more " +"than 50 pinned messages." +msgstr "" + +#: 8195304858b0442fbdf53efa34569fd2 discord.message.Message.unpin:3 of +msgid "Unpins the message." +msgstr "" + +#: c1d8b8aa5b0a40d6b9f36f1853444704 discord.message.Message.unpin:9 of +msgid "" +"The reason for unpinning the message. Shows up on the audit log. .. " +"versionadded:: 1.4" +msgstr "" + +#: 91e0a65046cc4d02ad07e98b00977259 discord.message.Message.unpin:9 of +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "" + +#: 8ca4cd26797341a4b9f4100aca8b1e8c discord.message.Message.unpin:14 of +msgid "You do not have permissions to unpin the message." +msgstr "" + +#: 87cd18a54efc4fd385432901fb39b837 discord.message.Message.unpin:16 of +msgid "Unpinning the message failed." +msgstr "" + +#: 5ded560527ab4593a0062d503dccbd71 discord.message.Message.add_reaction:3 of +msgid "Add a reaction to the message." +msgstr "" + +#: 6aaade68242548778bfe30d6bd5f2054 930dd30804944c798a46e9e5262d96a5 +#: cd02277db89943ed9ee4591e8af3275f discord.message.Message.add_reaction:5 +#: discord.message.Message.clear_reaction:5 +#: discord.message.Message.remove_reaction:5 of +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "" + +#: de4aa6f9efb64b64878511d76ccf83ff discord.message.Message.add_reaction:7 of +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 "" + +#: 17817427c32c455ca89b1bd91f98f0a8 discord.message.Message.add_reaction:12 of +msgid "The emoji to react with." +msgstr "" + +#: 8b7a9e28239647328af16528598e19d6 discord.message.Message.add_reaction:15 of +msgid "Adding the reaction failed." +msgstr "" + +#: a0d53681382747ca83356bca8a90fd97 discord.message.Message.add_reaction:16 of +msgid "You do not have the proper permissions to react to the message." +msgstr "" + +#: 24789512dcfa4dc7a9d9830235001bee d954e7e116e24bf7bccda076d7755919 +#: discord.message.Message.add_reaction:17 +#: discord.message.Message.clear_reaction:17 of +msgid "The emoji you specified was not found." +msgstr "" + +#: 5c4cc2b758fc41c6b650e94c29df70a7 a9d58618744d49d091a6d2b675548b3d +#: cd73f7beb7df43e686a7bf966e4acb62 discord.message.Message.add_reaction:18 +#: discord.message.Message.clear_reaction:18 +#: discord.message.Message.remove_reaction:23 of +msgid "The emoji parameter is invalid." +msgstr "" + +#: b6e0bf1734ac49a8a83b561a1c43d714 discord.message.Message.remove_reaction:3 +#: of +msgid "Remove a reaction by the member from the message." +msgstr "" + +#: 7c558ddb88eb464db3a2e359159b7159 discord.message.Message.remove_reaction:7 +#: of +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 "" + +#: 9b812ebf91cd4b3ca164b4e32fe1ae6f discord.message.Message.remove_reaction:10 +#: of +msgid "" +"The ``member`` parameter must represent a member and meet the " +":class:`abc.Snowflake` abc." +msgstr "" + +#: cd3b40641ddb494288abcfd4e0107825 discord.message.Message.remove_reaction:14 +#: of +msgid "The emoji to remove." +msgstr "" + +#: b348722b041942dc82c4ba077705d83a discord.message.Message.remove_reaction:17 +#: of +msgid "The member for which to remove the reaction." +msgstr "" + +#: discord.message.Message.remove_reaction:20 fb92db3d862e465694b3b7a0eed56842 +#: of +msgid "Removing the reaction failed." +msgstr "" + +#: 83ff0da11c77493391aecc7fc410a1c5 discord.message.Message.remove_reaction:21 +#: of +msgid "You do not have the proper permissions to remove the reaction." +msgstr "" + +#: discord.message.Message.remove_reaction:22 f88cb1d0218f4349b20f4bfb953cee8d +#: of +msgid "The member or emoji you specified was not found." +msgstr "" + +#: 234e3f29572e46dda5d60b94630539b6 discord.message.Message.clear_reaction:3 of +msgid "Clears a specific reaction from the message." +msgstr "" + +#: 38f537d2e0d04d0d9166dcd09ff8e8e2 4b5bd7feaad94acd9247e5ea152d72f3 +#: discord.message.Message.clear_reaction:7 +#: discord.message.Message.clear_reactions:5 of +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "" + +#: a9c93f7d5e044830b8ed37b3d6e8e512 discord.message.Message.clear_reaction:12 +#: of +msgid "The emoji to clear." +msgstr "" + +#: 035b8fd086994b7a9e2e0a91af5b2b79 discord.message.Message.clear_reaction:15 +#: of +msgid "Clearing the reaction failed." +msgstr "" + +#: 4cea524ce2534f379a652aeb46daa548 discord.message.Message.clear_reaction:16 +#: of +msgid "You do not have the proper permissions to clear the reaction." +msgstr "" + +#: 01f83e3901ca4698aaceda560e42b939 discord.message.Message.clear_reactions:3 +#: of +msgid "Removes all the reactions from the message." +msgstr "" + +#: 482e30aeb4c749f0b5876f81537409f4 discord.message.Message.clear_reactions:7 +#: of +msgid "Removing the reactions failed." +msgstr "" + +#: 5a89399102614a71b080c592a9df4274 discord.message.Message.clear_reactions:8 +#: of +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "" + +#: 6a803b20f30b41499a3154208e1cddbd discord.message.Message.reply:3 of +msgid "" +"A shortcut method to :meth:`.abc.Messageable.send` to reply to the " +":class:`.Message`." +msgstr "" + +#: 0432f057bc24436ab0c9162af0b56320 discord.message.Message.reply:8 of +msgid "The message that was sent." +msgstr "" + +#: 815203ab4dd9447daab77ae359e85c30 discord.message.Message.reply:9 of +msgid ":class:`.Message`" +msgstr "" + +#: d7a8c5afd03e4ba18c9c5bc654aaa52f discord.message.Message.reply:11 of +msgid "Sending the message failed." +msgstr "" + +#: discord.message.Message.reply:12 f58e37c02b9346ac8affda2006377756 of +msgid "You do not have the proper permissions to send the message." +msgstr "" + +#: 2b6ec3e3ab574a20ae37d4d118fb1267 discord.message.Message.reply:13 of +msgid "" +"The ``files`` list is not of the appropriate size, or you specified " +"both ``file`` and ``files``." +msgstr "" + +#: 303f5f553a71428285d200852504cec9 discord.message.Message.to_reference:1 of +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "" + +#: 06525f041a224df2946303c15381e33f discord.message.Message.to_reference:6 of +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 "" + +#: 2e4f11c09c7d463aad237579dd9ca160 discord.message.Message.to_reference:6 of +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 "" + +#: ba9e9d761df54e83b387bd4522433122 discord.message.Message.to_reference:12 of +msgid "The reference to this message." +msgstr "" + +#: 5ed3d2c88b4d4d4a96d200c1bf406751 discord.message.Message.to_reference:13 of +msgid ":class:`~discord.MessageReference`" +msgstr "" + +#: 43820c6a82af4b7f9be88f13c76d124e discord.PartialMessage.created_at:1 of +msgid "The partial message's creation time in UTC." +msgstr "" + +#: ../../docstring 9302b84c521647b69da4af562f56165e +#: discord.PartialMessage.guild:1 of +msgid "The guild that the partial message belongs to, if applicable." +msgstr "" + +#: 78d000ebd1274ceb8a1d38bc04d2d20b discord.message.PartialMessage.fetch:3 of +msgid "Fetches the partial message to a full :class:`Message`." +msgstr "" + +#: b04e3809d78644b79df2f3e48d3af7a6 discord.message.PartialMessage.fetch:5 of +msgid "The full message." +msgstr "" + +#: 63ddd6f4054a4187bf9397afe4e430c8 6ebb0104593e4409a625fbd4bb27bbe8 +#: discord.message.PartialMessage.edit:43 +#: discord.message.PartialMessage.fetch:8 of +msgid "The message was not found." +msgstr "" + +#: a427a195ecf744038571bf8b10a6e687 discord.message.PartialMessage.fetch:9 of +msgid "You do not have the permissions required to get a message." +msgstr "" + +#: b061557a36b44bc4bbad240bbac41710 discord.message.PartialMessage.fetch:10 of +msgid "Retrieving the message failed." +msgstr "" + +#: 88cf9ce437914616b574f0a18a7f93ed discord.message.PartialMessage.edit:3 of +msgid "Edits the message." +msgstr "" + +#: c5ab139ad01d4a7b90691f1121856e5e discord.message.PartialMessage.edit:5 of +msgid "" +":class:`discord.Message` is returned instead of ``None`` if an edit took " +"place." +msgstr "" + +#: discord.message.PartialMessage.edit:8 e7dd8c55bda54d1593f2c051cccb14df of +msgid "" +"The new content to replace the message with. Could be ``None`` to remove " +"the content." +msgstr "" + +#: 5a43027c35e24a84986b785209ad38ee discord.message.PartialMessage.edit:11 of +msgid "" +"The new embed to replace the original with. Could be ``None`` to remove " +"the embed." +msgstr "" + +#: 570745aeffc4476ab77e0c0b35d2537c discord.message.PartialMessage.edit:14 of +msgid "" +"A list of embeds to upload. Must be a maximum of 10. .. versionadded:: " +"2.0" +msgstr "" + +#: 2ad24a36d4c1433c993f05022e0eec5c discord.message.PartialMessage.edit:14 of +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "" + +#: discord.message.PartialMessage.edit:18 ebdb77601a344eef94e13632ce40243e of +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 "" + +#: 242d817223804c44bf3d8353ad0b04e2 discord.message.PartialMessage.edit:23 of +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 "" + +#: 3143cd2b586c437a9f2c2a88805412dd discord.message.PartialMessage.edit:27 of +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 "" + +#: 712d02ac186e43d38096c29c6b1d0f2b discord.message.PartialMessage.edit:34 of +msgid "" +"The updated view to update this message with. If ``None`` is passed then " +"the view is removed. .. versionadded:: 2.0" +msgstr "" + +#: 38b462beb37a4f5a82a7486de84aaad9 discord.message.PartialMessage.edit:34 of +msgid "" +"The updated view to update this message with. If ``None`` is passed then " +"the view is removed." +msgstr "" + +#: b209c9c412ab459f887dcda7956aa9bd discord.message.PartialMessage.edit:40 of +msgid "The message that was edited." +msgstr "" + +#: 495113be7d064bd2873a327f900820fd discord.message.PartialMessage.edit:41 of +msgid "Optional[:class:`Message`]" +msgstr "" + +#: b94b53751505427e8ffe980ff5ecedc5 discord.message.PartialMessage.edit:44 of +msgid "Editing the message failed." +msgstr "" + +#: 65fe20a3c43f4521aff5291cbe54222b discord.message.PartialMessage.edit:45 of +msgid "" +"Tried to suppress a message without permissions or edited a message's" +" content or embed that isn't yours." +msgstr "" + +#: 9b18057fb00a4638aa360b2a6ea1e132 discord.message.PartialMessage.end_poll:3 +#: of +msgid "" +"Immediately ends the poll associated with this message. Only doable by " +"the poll's owner." +msgstr "" + +#: 4384eb6dd74c4277bc507b455314f30a b828ac93f2b644249f4d15ad9f202ebe +#: discord.message.PartialMessage.end_poll:7 discord.poll.Poll.end:4 of +msgid "The updated message." +msgstr "" + +#: 6688c9001e7746ebbeb01ce1f0aa311d 9b78896bdd1940dc98776babef0a485e +#: discord.message.PartialMessage.end_poll:10 discord.poll.Poll.end:7 of +msgid "You do not have permissions to end this poll." +msgstr "" + +#: 90c6425cdab34723ac7939316ba8e7b9 b37776026e034126b3472d2808f616f6 +#: discord.message.PartialMessage.end_poll:11 discord.poll.Poll.end:8 of +msgid "Ending this poll failed." +msgstr "" + +#: 666289f9bc4c46a09ad5e5df62a010c7 discord.file.File:1 of +msgid "" +"A parameter object used for :meth:`abc.Messageable.send` for sending file" +" objects." +msgstr "" + +#: 1ffc468a7e564a77b1ab6d3d175a0ddf discord.file.File:6 of +msgid "" +"File objects are single use and are not meant to be reused in multiple " +":meth:`abc.Messageable.send`\\s." +msgstr "" + +#: ad22cb7b2f7f4bcaad2aca05530883c5 discord.file.File:11 of +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 "" + +#: 386a428af11841de99743da4a1919cca discord.file.File:17 of +msgid "" +"If the file-like object passed is opened via ``open`` then the modes 'rb'" +" should be used." +msgstr "" + +#: a10d87c534c147fa9e5613a010e1e0a2 discord.file.File:20 of +msgid "To pass binary data, consider usage of ``io.BytesIO``." +msgstr "" + +#: 314a606b86634b62b8130b78e23bd0eb discord.file.File:22 of +msgid "Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`]" +msgstr "" + +#: 8b943603619b4b7fa7d08ab6270e0f33 discord.file.File:26 of +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 "" + +#: 04abb69d4e3f4e8aacd536a566f80f75 discord.file.File:34 of +msgid "" +"The description of a file, used by Discord to display alternative text on" +" images." +msgstr "" + +#: 4bf08b434a2d4714995daee269da72e6 discord.file.File:40 of +msgid "Whether the attachment is a spoiler." +msgstr "" + +#: ../../api/data_classes.rst:68 5672173d06bd46829384d84e99bed65e +msgid "Embed" +msgstr "" + +#: 427c2ee28b8949af81f97e02fb5bfc9b discord.embeds.Embed:1 of +msgid "Represents a Discord embed." +msgstr "" + +#: 97943274365f418986ea5471553de688 discord.embeds.Embed:7 of +msgid "" +"Returns the total size of the embed. Useful for checking if it's within " +"the 6000 character limit." +msgstr "" + +#: 11a5e4a569954a24829d3090b41a6858 discord.embeds.Embed:12 of +msgid "Returns whether the embed has any data set." +msgstr "" + +#: 4dc22484606047e590d81e706cba0691 discord.embeds.Embed:16 of +msgid "" +"For ease of use, all parameters that expect a :class:`str` are implicitly" +" cast to :class:`str` for you." +msgstr "" + +#: 7832fd63a2a943b2a73a9a920fa6d5be discord.embeds.Embed:21 of +msgid "" +"The title of the embed. This can be set during initialisation. Must be " +"256 characters or fewer." +msgstr "" + +#: 692ccfef72e24f968e41d37b39fd6f78 discord.embeds.Embed:29 of +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 "" + +#: 91b98af56bdd4aa88649159b8f936fb7 discord.embeds.Embed:38 of +msgid "" +"The description of the embed. This can be set during initialisation. Must" +" be 4096 characters or fewer." +msgstr "" + +#: 2d954533b76e4515a096046a55fefefe discord.embeds.Embed:46 of +msgid "The URL of the embed. This can be set during initialisation." +msgstr "" + +#: 092b6ba6ce244e53b6ce5f7e4e9500c1 discord.embeds.Embed:53 of +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 "" + +#: 609d9519dae540debf386660d6ae227f discord.embeds.Embed:57 of +msgid ":class:`datetime.datetime`" +msgstr "" + +#: 6c1111e73b4f46c4ac628d0f4bcc7b61 discord.embeds.Embed:61 of +msgid "" +"The colour code of the embed. Aliased to ``color`` as well. This can be " +"set during initialisation." +msgstr "" + +#: b7a8a80c58ec45f7894593aeb43777e9 discord.embeds.Embed:64 of +msgid "Union[:class:`Colour`, :class:`int`]" +msgstr "" + +#: 6aeabaacc69f4ee68ea92fd54e214d10 discord.embeds.Embed.from_dict:1 of +msgid "" +"Converts a :class:`dict` to a :class:`Embed` provided it is in the format" +" that Discord expects it to be in." +msgstr "" + +#: 11c5c5487f8c48a3954a882ef0c81c3c b794b160b2254aa5a8f826cfad55b96d +#: discord.embeds.Embed.from_dict:4 discord.embeds.EmbedField.from_dict:4 of +msgid "" +"You can find out about this format in the `official Discord " +"documentation`__." +msgstr "" + +#: 4342a4fd6cec45399e05d59fff964f02 discord.embeds.Embed.from_dict:11 of +msgid "The dictionary to convert into an embed." +msgstr "" + +#: c1382cd2a5db4426a35bea2a16300c17 discord.embeds.Embed.from_dict:14 of +msgid "The converted embed object." +msgstr "" + +#: 31cb82cfd5694185a67134d428e16b31 b90f78f68b5240018331590be71043e2 +#: discord.embeds.Embed.copy:4 discord.embeds.Embed.from_dict:15 of +msgid ":class:`Embed`" +msgstr "" + +#: 14efae1cd9574abb9144795b5692270d discord.embeds.Embed.copy:1 of +msgid "Creates a shallow copy of the :class:`Embed` object." +msgstr "" + +#: 21bca5a6e16b456cb4607d2165def378 discord.embeds.Embed.copy:3 of +msgid "The copied embed object." +msgstr "" + +#: 437357134c32411e93189260ef456947 discord.Embed.footer:1 of +msgid "Returns an :class:`EmbedFooter` denoting the footer contents." +msgstr "" + +#: 39ffb3814ad149369fd0fcb49fd8305d discord.Embed.footer:3 of +msgid "See :meth:`set_footer` for possible values you can access." +msgstr "" + +#: discord.Embed.footer:5 f8236e0b51ff40158d943d38427aa448 of +msgid "If the footer is not set then `None` is returned." +msgstr "" + +#: 870e25600d0245c7ad5e1223e69be28f discord.embeds.Embed.set_footer:1 of +msgid "Sets the footer for the embed content." +msgstr "" + +#: 11d661c1c9024782b0ae71fec225dee1 472e69cfec074712ba341e65b8fecb6e +#: 5e115a7dcc4d41ef885d8f6ab870c044 6b8ade2d914540eeb3eebb13e54555c0 +#: a187bf38f5e4436d814307b90bb1f8fa aba36e4c6c5245cdacf85b3080dc1f03 +#: discord.embeds.Embed.remove_author:3 discord.embeds.Embed.remove_footer:3 +#: discord.embeds.Embed.remove_image:3 discord.embeds.Embed.remove_thumbnail:3 +#: discord.embeds.Embed.set_author:3 discord.embeds.Embed.set_field_at:5 +#: discord.embeds.Embed.set_footer:3 discord.embeds.Embed.set_image:3 +#: discord.embeds.Embed.set_thumbnail:3 discord.poll.Poll.add_answer:3 +#: e7943ab0533445e4a89b57901f95db90 e85cbbbb24ac42cfb9d6361a2f4f7d4a +#: f371e938c3da4bd0bf5a06d81e305042 f7eb45567f4243d9a03d2b2166006a41 of +msgid "" +"This function returns the class instance to allow for fluent-style " +"chaining." +msgstr "" + +#: 965bb8f2192e403bab9f4eaa08028da0 discord.embeds.Embed.set_footer:7 of +msgid "The footer text. Must be 2048 characters or fewer." +msgstr "" + +#: 927c6440f36d47e190e1e1e477a19e5a discord.embeds.Embed.set_footer:11 of +msgid "The URL of the footer icon. Only HTTP(S) is supported." +msgstr "" + +#: 1d629c4e96d0404e8b98ab6051e348cd 30e85322be3f4cec844d262906d911fa +#: 4523234d8da84deea0fe2b7a2a9cf80c 4f220172b63b439ea70e6352b36cb599 +#: 670ce1a77ea64456afc2146913f95675 7e2ff18f093a480eb4f4289bcae47d78 +#: 822c625fad7d4f2383d95bccdb25bb66 aa755fbb4e0e47aeade77ce173ee8494 +#: b7211db489424ecfbf3e000b3504ad97 discord.embeds.Embed.add_field:20 +#: discord.embeds.Embed.insert_field_at:25 +#: discord.embeds.Embed.remove_author:10 discord.embeds.Embed.remove_footer:10 +#: discord.embeds.Embed.remove_image:10 +#: discord.embeds.Embed.remove_thumbnail:10 discord.embeds.Embed.set_author:19 +#: discord.embeds.Embed.set_field_at:27 discord.embeds.Embed.set_footer:16 +#: discord.embeds.Embed.set_image:15 discord.embeds.Embed.set_thumbnail:15 +#: ebbc091611cc4e63bb8e7fa5a765ccfc edeff772ff814c03b6e4ddf1a7a92b81 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\" +" \\\\\\(\\`\\`E\\`\\`\\, bound\\= Embed\\)`" +msgstr "" + +#: 6f46beafb8ad419b8bc47fecd8449ae0 discord.embeds.Embed.remove_footer:1 of +msgid "Clears embed's footer information." +msgstr "" + +#: b1846260ec5f4bf9bbfa1b6037667698 discord.Embed.image:1 of +msgid "Returns an :class:`EmbedMedia` denoting the image contents." +msgstr "" + +#: 5233314d723247fcb2a902aec419af06 d81411e68d0f4d6f9518289513f8a904 +#: discord.Embed.image:3 discord.Embed.thumbnail:3 of +msgid "Attributes you can access are:" +msgstr "" + +#: cffb7b3b2793415b9fa8247a91357837 discord.Embed.image:5 +#: discord.Embed.thumbnail:5 e581fbefd11c4ff1b5c0d70b5f03cf1b of +msgid "``url``" +msgstr "" + +#: 13fd27b8d0d04af2becf8c49e0a8e6e0 discord.Embed.image:6 +#: discord.Embed.thumbnail:6 ee9b344e994943acb62237fa811574d1 of +msgid "``proxy_url``" +msgstr "" + +#: b72ba3cc26404e28b1075b704cb14550 d7c79cd75ab343a0bc84db8a7a6e4c61 +#: discord.Embed.image:7 discord.Embed.thumbnail:7 of +msgid "``width``" +msgstr "" + +#: 42876d8ef6ea4994937d5f34b5842991 b8a6a508837443ba95e9285eeb489453 +#: discord.Embed.image:8 discord.Embed.thumbnail:8 of +msgid "``height``" +msgstr "" + +#: 9faeb16d7c394608bcc439a360bfcdef discord.Embed.image:10 of +msgid "If the image is not set then `None` is returned." +msgstr "" + +#: discord.embeds.Embed.set_image:1 f95421a72dd8440ea35b94bb90b99eab of +msgid "Sets the image for the embed content." +msgstr "" + +#: 6c7d99b78a5c4b3ea4f56709ac489762 discord.embeds.Embed.set_image:6 of +msgid "Passing `None` removes the image." +msgstr "" + +#: 2e2904f0369540eda223ee6501bbff63 discord.embeds.Embed.set_image:10 of +msgid "The source URL for the image. Only HTTP(S) is supported." +msgstr "" + +#: 12f2619a68bd4015bb2c363774c16ed2 discord.embeds.Embed.remove_image:1 of +msgid "Removes the embed's image." +msgstr "" + +#: 8605a3db4e5e434aa5698e2eaf0e6009 discord.Embed.thumbnail:1 of +msgid "Returns an :class:`EmbedMedia` denoting the thumbnail contents." +msgstr "" + +#: aaa83fb51344424a868c52e6f11cb940 discord.Embed.thumbnail:10 of +msgid "If the thumbnail is not set then `None` is returned." +msgstr "" + +#: discord.embeds.Embed.set_thumbnail:1 e6aa0e627eb64cc8ae7a6e3a20500fad of +msgid "Sets the thumbnail for the embed content." +msgstr "" + +#: 363a882807bd4cbab5e84fb3b4692a92 discord.embeds.Embed.set_thumbnail:6 of +msgid "Passing `None` removes the thumbnail." +msgstr "" + +#: 75423cad1541415192d6e7ed5aeacdfe discord.embeds.Embed.set_thumbnail:10 of +msgid "The source URL for the thumbnail. Only HTTP(S) is supported." +msgstr "" + +#: 41da049e3aaa47d0b6fb9c3810d19658 discord.embeds.Embed.remove_thumbnail:1 of +msgid "Removes the embed's thumbnail." +msgstr "" + +#: 961bd85bd5544669b31dae29d3f43bd5 discord.Embed.video:1 of +msgid "Returns an :class:`EmbedMedia` denoting the video contents." +msgstr "" + +#: 227fc3080b80426fb032921f183f703a discord.Embed.video:3 of +msgid "Attributes include:" +msgstr "" + +#: b99b49981ef14c3d9973e3c9e0ca0ebf discord.Embed.video:5 of +msgid "``url`` for the video URL." +msgstr "" + +#: discord.Embed.video:6 e3a3db758819485ba4186d6932ed0e65 of +msgid "``height`` for the video height." +msgstr "" + +#: 700e78637e7c4a4a9dae808ca8367557 discord.Embed.video:7 of +msgid "``width`` for the video width." +msgstr "" + +#: c38bb3a47e1d4b9da777f617d8b4e912 discord.Embed.video:9 of +msgid "If the video is not set then `None` is returned." +msgstr "" + +#: 53ae4ef3b67342cfa2ff6292ef331f63 discord.Embed.provider:1 of +msgid "Returns an :class:`EmbedProvider` denoting the provider contents." +msgstr "" + +#: discord.Embed.provider:3 eb83f78507ca43cdbdb984fdc42255b0 of +msgid "The only attributes that might be accessed are ``name`` and ``url``." +msgstr "" + +#: 827b55dbf1184c3dab56e04ad6ccb51b discord.Embed.provider:5 of +msgid "If the provider is not set then `None` is returned." +msgstr "" + +#: 74ac52b2dc5b498da593026b6b13a969 discord.Embed.author:1 of +msgid "Returns an :class:`EmbedAuthor` denoting the author contents." +msgstr "" + +#: 923af0d9c0ee421d8a47b81dd2cc38cb discord.Embed.author:3 of +msgid "See :meth:`set_author` for possible values you can access." +msgstr "" + +#: 7b0abc19fc80475c942f7e406a8d0356 discord.Embed.author:5 of +msgid "If the author is not set then `None` is returned." +msgstr "" + +#: 285a520f7e65498d81469c11d5a6f161 discord.embeds.Embed.set_author:1 of +msgid "Sets the author for the embed content." +msgstr "" + +#: 62a5b11154fd435893abf09011196871 discord.embeds.Embed.set_author:7 of +msgid "The name of the author. Must be 256 characters or fewer." +msgstr "" + +#: discord.embeds.Embed.set_author:11 ed34c5262fa9474c8924dadcd9168527 of +msgid "The URL for the author." +msgstr "" + +#: 4f213ce46c5a457ba1edd63cf797d629 discord.embeds.Embed.set_author:14 of +msgid "The URL of the author icon. Only HTTP(S) is supported." +msgstr "" + +#: 9a7e8719ffe5410483741abf1f1bb582 discord.embeds.Embed.remove_author:1 of +msgid "Clears embed's author information." +msgstr "" + +#: 5b5a10ffdc3d4837bf82e6e1508bbf36 discord.Embed.fields:1 of +msgid "" +"Returns a :class:`list` of :class:`EmbedField` objects denoting the field" +" contents." +msgstr "" + +#: c16c38bb27d34d019499e7f617025356 discord.Embed.fields:3 of +msgid "See :meth:`add_field` for possible values you can access." +msgstr "" + +#: 7bdb18c2d3e44a7393da17fce49995db discord.Embed.fields:5 of +msgid "If the attribute has no value then ``None`` is returned." +msgstr "" + +#: 79ae22049785481294f74348ae5cca23 discord.embeds.Embed.append_field:1 of +msgid "Appends an :class:`EmbedField` object to the embed." +msgstr "" + +#: a01f46e43a594987ba8c68257beed74d discord.embeds.Embed.append_field:6 of +msgid "The field to add." +msgstr "" + +#: 4c217cd38ff4450fb5b7a530a6f5c252 discord.embeds.Embed.add_field:1 of +msgid "Adds a field to the embed object." +msgstr "" + +#: 7220787fdc3d4e79a1e9f6edbbf53f9e 87ad0ce020044d25a671b1e53ff2a758 +#: discord.embeds.Embed.add_field:3 discord.embeds.Embed.insert_field_at:3 of +msgid "" +"This function returns the class instance to allow for fluent-style " +"chaining. There must be 25 fields or fewer." +msgstr "" + +#: a34ba6d39a9e4141b1c148747432c72e c789b835bf5a431583ac9ba7139a8a18 +#: cff9612f942c4f6daf2141e7197ca7ba discord.embeds.Embed.add_field:7 +#: discord.embeds.Embed.insert_field_at:12 discord.embeds.Embed.set_field_at:12 +#: of +msgid "The name of the field. Must be 256 characters or fewer." +msgstr "" + +#: 04c5393ea40648e9815424cd1a4e9936 43af5dd6ae4045f9b21924d69672625c +#: aef5c60863f84b8a9f859c4f310e4bb7 discord.embeds.Embed.add_field:11 +#: discord.embeds.Embed.insert_field_at:16 discord.embeds.Embed.set_field_at:16 +#: of +msgid "The value of the field. Must be 1024 characters or fewer." +msgstr "" + +#: 27bca6852c6c4bbcbccf8a7511abb223 8873c3d93b1140ecb68918d2fe44630e +#: 95e2da8dc1bf4107aa8e6e89e77ef60c b5d7893fdbdd4d49ab24e2d9ea4133dc +#: discord.embeds.Embed.add_field:15 discord.embeds.Embed.insert_field_at:20 +#: discord.embeds.Embed.set_field_at:20 discord.embeds.EmbedField:19 of +msgid "Whether the field should be displayed inline." +msgstr "" + +#: 2422a4b7e42540f790e3c5b0ac81bfeb discord.embeds.Embed.insert_field_at:1 of +msgid "Inserts a field before a specified index to the embed." +msgstr "" + +#: 95e091093d0d4473965eaae62579eaaf discord.embeds.Embed.insert_field_at:9 of +msgid "The index of where to insert the field." +msgstr "" + +#: 94e95d53e5d748bbb9c233bffc137d78 discord.embeds.Embed.clear_fields:1 of +msgid "Removes all fields from this embed." +msgstr "" + +#: 1918f1c5266e492db3c279793a97d66a discord.embeds.Embed.remove_field:1 of +msgid "Removes a field at a specified index." +msgstr "" + +#: discord.embeds.Embed.remove_field:3 eb47fe95d8ca482c9822f5b42b5cd76e of +msgid "" +"If the index is invalid or out of bounds then the error is silently " +"swallowed." +msgstr "" + +#: d64b9bcad6e74710b32282c557ecc870 discord.embeds.Embed.remove_field:8 of +msgid "" +"When deleting a field by index, the index of the other fields shift to " +"fill the gap just like a regular list." +msgstr "" + +#: 27c9eef73d05412584f6c76f27828329 discord.embeds.Embed.remove_field:12 of +msgid "The index of the field to remove." +msgstr "" + +#: 06fb6ae64d344a4c8cffb3d1ae87a4df discord.embeds.Embed.set_field_at:1 of +msgid "Modifies a field to the embed object." +msgstr "" + +#: 5113353d66b34c79ac9f94b266959aee discord.embeds.Embed.set_field_at:3 of +msgid "" +"The index must point to a valid pre-existing field. There must be 25 " +"fields or fewer." +msgstr "" + +#: discord.embeds.Embed.set_field_at:9 f2d46b8fe7024d5a8d8bfef0364690e8 of +msgid "The index of the field to modify." +msgstr "" + +#: discord.embeds.Embed.set_field_at:23 ec1906dad4f44ecc861c0854dcaf4ba2 of +msgid "An invalid index was provided." +msgstr "" + +#: 9f2422b1f3204fa1bac9e137c83a3ce5 discord.embeds.Embed.to_dict:1 of +msgid "Converts this embed object into a dict." +msgstr "" + +#: discord.embeds.Embed.to_dict:3 f20ea68e61504bfc87732ee925a9624e of +msgid "A dictionary of :class:`str` embed keys bound to the respective value." +msgstr "" + +#: 3e2fb25d1b7b430c9753a7983ca774ea discord.embeds.Embed.to_dict:4 of +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`int`, :class:`bool`]]" +msgstr "" + +#: 6569f8ddd1d5458b981ca62acef92db6 discord.embeds.EmbedField:1 of +msgid "Represents a field on the :class:`Embed` object." +msgstr "" + +#: 4b949db6063c477f9a87d68d5d75b325 discord.embeds.EmbedField:7 of +msgid "The name of the field." +msgstr "" + +#: bf58b3e4df784a86a6053bf20de7a0ff discord.embeds.EmbedField:13 of +msgid "The value of the field." +msgstr "" + +#: discord.embeds.EmbedField.from_dict:1 f68540cf33154256bc69249e7ae628b0 of +msgid "" +"Converts a :class:`dict` to a :class:`EmbedField` provided it is in the " +"format that Discord expects it to be in." +msgstr "" + +#: 90e46216828a4801969a488cd8916ef8 discord.embeds.EmbedField.from_dict:11 of +msgid "The dictionary to convert into an EmbedField object." +msgstr "" + +#: 52637f1dd2d74324a31b9a90e46afcc5 discord.embeds.EmbedField.from_dict:14 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.embeds.EmbedField\\``" +msgstr "" + +#: 699af58122094dbf9484c027c693fe5b discord.embeds.EmbedField.to_dict:1 of +msgid "Converts this EmbedField object into a dict." +msgstr "" + +#: ba1355079f4445af930b5e3fa1d87193 discord.embeds.EmbedField.to_dict:3 of +msgid "" +"A dictionary of :class:`str` embed field keys bound to the respective " +"value." +msgstr "" + +#: 92393ba03f314ad3b66cc9fabd35fa5d discord.embeds.EmbedField.to_dict:4 of +msgid "Dict[:class:`str`, Union[:class:`str`, :class:`bool`]]" +msgstr "" + +#: 5d4b2cb5459a4128b46ed9bf4654e6cf discord.embeds.EmbedAuthor:1 of +msgid "Represents the author on the :class:`Embed` object." +msgstr "" + +#: 0165cce516c64f5298d46a75bd8e81f3 discord.embeds.EmbedAuthor:7 of +msgid "The name of the author." +msgstr "" + +#: 8fd25c58c3d6409fa26fcff1fdf67eec discord.embeds.EmbedAuthor:13 of +msgid "The URL of the hyperlink created in the author's name." +msgstr "" + +#: 804bbf20fe6c4418a6f03780ed6e383d discord.embeds.EmbedAuthor:19 of +msgid "The URL of the author icon image." +msgstr "" + +#: 26594f578fc04c879c5132daef91fc4f discord.embeds.EmbedAuthor:25 of +msgid "" +"The proxied URL of the author icon image. This can't be set directly, it " +"is set by Discord." +msgstr "" + +#: 46d90ba390ec43e18bd5792f90aabb64 discord.embeds.EmbedFooter:1 of +msgid "Represents the footer on the :class:`Embed` object." +msgstr "" + +#: a3c86f8a52834fce8eb89bee93b79386 discord.embeds.EmbedFooter:7 of +msgid "The text inside the footer." +msgstr "" + +#: b0a628aa630b46d4be33f6f9afa72e04 discord.embeds.EmbedFooter:13 of +msgid "The URL of the footer icon image." +msgstr "" + +#: 063facd6e7d64b6f93f3cf83c02270c3 discord.embeds.EmbedFooter:19 of +msgid "" +"The proxied URL of the footer icon image. This can't be set directly, it " +"is set by Discord." +msgstr "" + +#: 84009370ba89477799600703d0fd6cb9 discord.embeds.EmbedMedia:1 of +msgid "" +"Represents a media on the :class:`Embed` object. This includes " +"thumbnails, images, and videos." +msgstr "" + +#: 6f7dcd5b4c4c4c12bb80f4aa70c23c29 discord.embeds.EmbedMedia:8 of +msgid "The source URL of the media." +msgstr "" + +#: discord.embeds.EmbedMedia:14 ecbf3a1aa02c4e77addc7cbd2f7c268e of +msgid "The proxied URL of the media." +msgstr "" + +#: 2ac3ec6fd9cb4c85a8cbd82e79f3f399 discord.embeds.EmbedMedia:20 of +msgid "The height of the media." +msgstr "" + +#: d14db22673ec4303a4e43dd372f44d0b discord.embeds.EmbedMedia:26 of +msgid "The width of the media." +msgstr "" + +#: discord.embeds.EmbedProvider:1 f484eca39a0b48beb3dbe96fe7018043 of +msgid "Represents a provider on the :class:`Embed` object." +msgstr "" + +#: c8302a6febd04b178d3e35c4e249f5a0 discord.embeds.EmbedProvider:7 of +msgid "The name of the provider." +msgstr "" + +#: a5648743549f45b5a0f218160cc66a13 discord.embeds.EmbedProvider:13 of +msgid "The URL of the provider." +msgstr "" + +#: ../../api/data_classes.rst:102 646f8ad2d43d4dce987005a50de9a4cf +msgid "Poll" +msgstr "" + +#: 596b19059df5489181dd78e474801848 discord.poll.Poll:1 of +msgid "" +"Represents a Poll. Polls are sent in regular messages, and you must have " +":attr:`~discord.Permissions.send_polls` to send them." +msgstr "" + +#: c56b411c300a4ce08a3948b4da36a990 discord.poll.Poll:7 of +msgid "" +"The poll's question media, or a ``str`` representing the question text. " +"Question text can be up to 300 characters." +msgstr "" + +#: 8194348890384866a884b99e2b4c496e discord.poll.Poll:9 of +msgid "Union[:class:`PollMedia`, :class:`str`]" +msgstr "" + +#: b778208a512643b98cbdabb1baa24642 discord.poll.Poll:13 of +msgid "A list of the poll's answers. A maximum of 10 answers can be set." +msgstr "" + +#: 458431e25bdd4c0eb444b5917c005c9b discord.poll.Poll:15 of +msgid "Optional[List[:class:`PollAnswer`]]" +msgstr "" + +#: discord.poll.Poll:19 ff4fb64ef22b48a5869c27f3c18b453e of +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 "" + +#: 293efff145294d2eb01067636aec1ced discord.poll.Poll:25 of +msgid "Whether multiple answers can be selected. Defaults to ``False``." +msgstr "" + +#: a3dd116585e34cd4a61770f53cca1f2b discord.poll.Poll:31 of +msgid "The poll's layout type. Only one exists at the moment." +msgstr "" + +#: 195cf209f72e47e4afe524acecfa6505 discord.poll.Poll:33 of +msgid ":class:`PollLayoutType`" +msgstr "" + +#: 6831db54dc464b23af1be2fe67385a15 discord.poll.Poll:37 of +msgid "" +"The results of this poll recieved from Discord. If ``None``, this should " +"be considered \"unknown\" rather than \"no\" results." +msgstr "" + +#: 602770e61cb14b51aa23c776955a22b8 discord.poll.Poll:39 of +msgid "Optional[:class:`PollResults`]" +msgstr "" + +#: ../../docstring 095344d640ad4e3686d6f8d4fa1b42a0 discord.Poll.expiry:1 of +msgid "" +"An aware datetime object that specifies the date and time in UTC when the" +" poll will end." +msgstr "" + +#: 63ea2e4d032942aa9b0412c8e86862a6 discord.poll.Poll.has_ended:1 of +msgid "" +"Checks if this poll has completely ended. Shortcut for " +":attr:`PollResults.is_finalized`, if available." +msgstr "" + +#: 307037856f4043509e0e2ea6ab1e1788 discord.poll.Poll.has_ended:3 of +msgid "Returns a boolean if :attr:`results` is available, otherwise ``None``." +msgstr "" + +#: cab588e9a2574d4583001470cbd6d49d discord.poll.Poll.has_ended:4 of +msgid "Optional[:class:`bool`]" +msgstr "" + +#: b6b03dc921914dbe85dc2d2be6b6cb5c discord.poll.Poll.total_votes:1 of +msgid "" +"Shortcut for :meth:`PollResults.total_votes` This may not be precise if " +":attr:`is_finalized` is ``False``." +msgstr "" + +#: 9a0fdc68d36f4c10ac1bf87dfb8a303a discord.poll.Poll.total_votes:3 of +msgid "" +"The total number of votes on this poll if :attr:`results` is available, " +"otherwise ``None``." +msgstr "" + +#: 4bc8b97bc3104d30935148e3e21263d2 discord.poll.Poll.get_answer:1 of +msgid "Get a poll answer by ID." +msgstr "" + +#: 9c8376d158244c9881f918c37595e5a6 discord.poll.Poll.get_answer:4 of +msgid "The ID to search for." +msgstr "" + +#: ab496839c07a44458b623141c8adbda2 discord.poll.Poll.get_answer:7 of +msgid "The returned answer or ``None`` if not found." +msgstr "" + +#: ac1c66324a2a4f76a6be775792c276ec discord.poll.Poll.get_answer:8 of +msgid "Optional[:class:`.PollAnswer`]" +msgstr "" + +#: b9e53c629c9e4021938d3101f9108020 discord.poll.Poll.add_answer:1 of +msgid "Add an answer to this poll." +msgstr "" + +#: discord.poll.Poll.add_answer:7 f0853a888d3947bbaa38d45f88131502 of +msgid "The answer text. Maximum 55 characters." +msgstr "" + +#: 1a9558843dca496cb958afb3adb20a4d 63316a76bc504816bc44704a1b64facb +#: discord.poll.Poll.add_answer:10 discord.poll.PollMedia:13 of +msgid "The answer's emoji." +msgstr "" + +#: 4c4cf6f10a384cfc880a5f42883f6373 discord.poll.Poll.add_answer:13 of +msgid "The poll already has 10 answers or ``text`` exceeds the character length." +msgstr "" + +#: a0d53028501b413b82ba75a394aae545 discord.poll.Poll.add_answer:14 of +msgid "You cannot add an answer to an existing poll." +msgstr "" + +#: 79943b0defc04dd7b076d3a3be3f3790 discord.poll.Poll.add_answer:15 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.poll.Poll\\``" +msgstr "" + +#: 6f68ef5ec3e74617904ff7282a027368 discord.poll.Poll.add_answer:18 +#: discord.poll.PollAnswer.voters:26 e3ed22fcc48e492ba655a324fd22c8ab of +msgid "Examples" +msgstr "" + +#: 75de56964bf64f1d8fc7e0877d23ec0b discord.poll.Poll.add_answer:19 of +msgid "Regular usage ::" +msgstr "" + +#: 9dd4a3582245480195104a815db073ef discord.poll.Poll.add_answer:31 of +msgid "Chaining style ::" +msgstr "" + +#: 13088052a2d742f991adf8b074e2d093 discord.poll.Poll.end:1 of +msgid "" +"Immediately ends this poll, if attached to a message. Only doable by the " +"poll's owner. Shortcut to :meth:`Message.end_poll`" +msgstr "" + +#: 24e8c80c8d0447db8874363746ed8a94 a64df6f6aa664e17aca4891da237f9de +#: discord.poll.Poll.end:9 discord.poll.PollAnswer.voters:22 of +msgid "This poll wasn't recieved from a message." +msgstr "" + +#: discord.poll.PollMedia:1 ffb86145dac0403086b43ea3e82fe8f5 of +msgid "Represents a poll media object that supports both questions and answers." +msgstr "" + +#: accc54dddd454268a0692f282ff316d1 discord.poll.PollMedia:7 of +msgid "" +"The question/answer text. May have up to 300 characters for questions and" +" 55 characters for answers." +msgstr "" + +#: b006fb5c6c854d799f871d8884228162 discord.poll.PollMedia:15 of +msgid "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "" + +#: cf9a1a1afdf34f12bf876e33bccf7739 discord.poll.PollAnswer:1 of +msgid "Represents a poll answer object." +msgstr "" + +#: 9f2c742e2ea94dfaa11d80510e61f651 discord.poll.PollAnswer:7 +#: discord.poll.PollAnswerCount:7 e709c6027c5e46c8bf07a344edadf14c of +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 "" + +#: b3e15cbd16a74614a884d4e981789621 discord.poll.PollAnswer:14 of +msgid "The relevant media for this answer." +msgstr "" + +#: 32d401e253064f7cad83219924e2b9a8 discord.poll.PollAnswer:16 of +msgid ":class:`PollMedia`" +msgstr "" + +#: 740e7e072dfc46cc9d3842ce6572cbeb discord.PollAnswer.text:1 of +msgid "The answer's text. Shortcut for :attr:`PollMedia.text`." +msgstr "" + +#: 43371229509347538d72a881414b90e1 discord.PollAnswer.emoji:1 of +msgid "The answer's emoji. Shortcut for :attr:`PollMedia.emoji`." +msgstr "" + +#: 26fd8264a6f94ea9be9059f7006b6c63 discord.PollAnswer.count:1 of +msgid "This answer's vote count, if recieved from Discord." +msgstr "" + +#: bc21833cc8ae40d88034324574ffa7aa discord.poll.PollAnswer.voters:1 of +msgid "" +"Returns an :class:`AsyncIterator` representing the users that have voted " +"with this answer. Only works if this poll was recieved from Discord." +msgstr "" + +#: 583e4434932a41e5b3a269a6713a7fa2 discord.poll.PollAnswer.voters:4 of +msgid "" +"The ``after`` parameter must represent a member and meet the " +":class:`abc.Snowflake` abc." +msgstr "" + +#: b5997af254ee4259b0f34384a2799bc1 discord.poll.PollAnswer.voters:8 of +msgid "" +"The maximum number of results to return. If not provided, returns all the" +" users who voted with this answer." +msgstr "" + +#: daa91e5f499d467fbc3e9bbca91e4b3e discord.poll.PollAnswer.voters:13 of +msgid "For pagination, answers are sorted by member." +msgstr "" + +#: 01899695d46f4d1e8b1c2d94e2f745de discord.poll.PollAnswer.voters of +msgid "Yields" +msgstr "" + +#: 94211056fb704567a53471567e50f9fe discord.poll.PollAnswer.voters:16 of +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 "" + +#: 64baeefd4bb8487082a15bc551e40738 discord.poll.PollAnswer.voters:21 of +msgid "Getting the voters for the answer failed." +msgstr "" + +#: discord.poll.PollAnswer.voters:23 ee17ca5d93ae4e32b5e43584dcdbcef6 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.VoteIterator\\``" +msgstr "" + +#: 4be99a5a14964333b7e39865a359b0b5 discord.poll.PollAnswer.voters:27 of +msgid "Usage ::" +msgstr "" + +#: c6e55828fa284012bdc2208c68d12e4c discord.poll.PollAnswer.voters:32 of +msgid "Flattening into a list: ::" +msgstr "" + +#: c101fc73539645ef943416c6f35acff9 discord.poll.PollAnswerCount:1 of +msgid "Represents a poll answer count object." +msgstr "" + +#: discord.poll.PollAnswerCount:14 f48a6afded354efb9ad758c1aab3db6d of +msgid "The number of votes for this answer." +msgstr "" + +#: 7d1d57e3a567465c814288bb92f9de2b discord.poll.PollAnswerCount:20 of +msgid "If the current user voted this answer. This is always ``False`` for bots." +msgstr "" + +#: 0b2a540dde524344979b5afd0f3f6f3d discord.poll.PollResults:1 of +msgid "Represents a poll results object." +msgstr "" + +#: aa347e9ae60b498abf39d69670fbb686 discord.poll.PollResults:7 of +msgid "" +"Whether the poll has ended and all answer counts have been precisely " +"tallied." +msgstr "" + +#: cd87d8d6808b46b0bfe7d013d6331be9 discord.poll.PollResults:13 of +msgid "" +"A list of counts for each answer. If an answer isn't included, it has no " +"votes." +msgstr "" + +#: 471754e81c27452484eaf708e3581229 discord.poll.PollResults:15 of +msgid "List[:class:`PollAnswerCount`]" +msgstr "" + +#: 117cb59ea6cc4530a8c119572b675f9e discord.poll.PollResults.total_votes:1 of +msgid "" +"Get the total number of votes across all answers. This may not be " +"accurate if :attr:`is_finalized` is ``False``." +msgstr "" + +#: 935d9c5a268d4132998d5ab2b779a4a0 discord.poll.PollResults.total_votes:3 of +msgid "The total number of votes on this poll." +msgstr "" + +#: ../../api/data_classes.rst:132 43ab35acc0f9434b8e53132a073d8d22 +msgid "Flags" +msgstr "" + +#: b6506378885b40b386e202d88e1b6b50 discord.flags.MemberCacheFlags:1 of +msgid "Controls the library's cache policy when it comes to members." +msgstr "" + +#: d52ae24e27c848d8a93fcd4d63ed62ab discord.flags.MemberCacheFlags:3 of +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 "" + +#: 1934b928b4124bf29bf6bd8efee2c8b7 discord.flags.MemberCacheFlags:7 of +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 "" + +#: 100fc3ea47604bbdb0ab983d056eb915 discord.flags.MemberCacheFlags:15 of +msgid "The default value is all flags enabled." +msgstr "" + +#: cfd924b2696a41d7b71920f52b279979 discord.flags.MemberCacheFlags.all:1 of +msgid "" +"A factory method that creates a :class:`MemberCacheFlags` with everything" +" enabled." +msgstr "" + +#: 8bb674b4b37b49d39b2e4c552f123f11 d5a644216f01444cafdf7ea6b7f82ade +#: discord.flags.MemberCacheFlags.all:4 discord.flags.MemberCacheFlags.none:4 +#: of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.MemberCacheFlags\\``" +msgstr "" + +#: discord.flags.MemberCacheFlags.none:1 ec84f2c7145b46fda14ed34b3383678f of +msgid "" +"A factory method that creates a :class:`MemberCacheFlags` with everything" +" disabled." +msgstr "" + +#: ../../docstring 1e599f7b72f84d17810aeec4385ebe1a +#: discord.MemberCacheFlags.voice:1 of +msgid "Whether to cache members that are in voice." +msgstr "" + +#: ../../docstring b83d29d1e0c5490080d48db4692e75c7 +#: discord.MemberCacheFlags.voice:3 of +msgid "This requires :attr:`Intents.voice_states`." +msgstr "" + +#: ../../docstring 29cff10544cf45c8a99e777641354826 +#: discord.MemberCacheFlags.voice:5 of +msgid "Members that leave voice are no longer cached." +msgstr "" + +#: ../../docstring a2aadd5a8cd640cd8d80de55c70cb7be +#: discord.MemberCacheFlags.joined:1 of +msgid "" +"Whether to cache members that joined the guild or are chunked as part of " +"the initial log in flow." +msgstr "" + +#: ../../docstring 0d84624c15994c2a971384631903a284 +#: discord.MemberCacheFlags.joined:4 of +msgid "This requires :attr:`Intents.members`." +msgstr "" + +#: ../../docstring 199c6d64c1dd449bb70c5456385611ff +#: discord.MemberCacheFlags.joined:6 of +msgid "Members that leave the guild are no longer cached." +msgstr "" + +#: ../../docstring cd9de6171ee249e386bcd743296c86c1 +#: discord.MemberCacheFlags.interaction:1 of +msgid "Whether to cache members obtained through interactions." +msgstr "" + +#: ../../docstring b69154ada3f34b8cb44ac06ab84141a2 +#: discord.MemberCacheFlags.interaction:3 of +msgid "" +"This includes members received through :class:`discord.Interaction` and " +":class:`discord.Option`." +msgstr "" + +#: 71bce589850840799aef69fb53812713 +#: discord.flags.MemberCacheFlags.from_intents:1 of +msgid "" +"A factory method that creates a :class:`MemberCacheFlags` based on the " +"currently selected :class:`Intents`." +msgstr "" + +#: d8f4814af70a4ca685de8d66a3618a1b +#: discord.flags.MemberCacheFlags.from_intents:5 of +msgid "The intents to select from." +msgstr "" + +#: discord.flags.MemberCacheFlags.from_intents:8 +#: eae9acf293d74ae296ae74f8938b1cca of +msgid "The resulting member cache flags." +msgstr "" + +#: discord.flags.MemberCacheFlags.from_intents:9 +#: f8dfaee97e7d4a20a85699e42ecaa334 of +msgid ":class:`MemberCacheFlags`" +msgstr "" + +#: a1aa35ec632b4627b69b3e64b95188e3 discord.flags.ApplicationFlags:1 of +msgid "Wraps up the Discord Application flags." +msgstr "" + +#: 2548906fb1c548c3817b77801d35027f discord.flags.ApplicationFlags:7 of +msgid "Checks if two ApplicationFlags are equal." +msgstr "" + +#: d0b32f0c6e85498a948b585d05a78060 discord.flags.ApplicationFlags:10 of +msgid "Checks if two ApplicationFlags are not equal." +msgstr "" + +#: 0a60c529aef34b0f843083188ef95076 3851f49fd12d49ba93ddefde1a9b5c8b +#: 67af1123860e496b9f91f7c3a519b19d a304b06eed3747b49d620309937f6449 +#: c651c6e72da941cc8ce3ba6493f9457a ca37502959d045a1a78f4a4f650ae145 +#: ca796b1eb1d54d3cb7da0e9f2810c897 discord.flags.ApplicationFlags:31 +#: discord.flags.AttachmentFlags:31 discord.flags.ChannelFlags:31 +#: discord.flags.MemberFlags:31 discord.flags.PublicUserFlags:31 +#: discord.flags.RoleFlags:31 discord.flags.SKUFlags:31 of +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 7ac241b169894315bbfd2621597de88b +#: discord.ApplicationFlags.managed_emoji:1 of +msgid "Returns ``True`` if the application is a managed emoji." +msgstr "" + +#: ../../docstring 149b5addc60848a690ff6ed3364cd720 +#: discord.ApplicationFlags.group_dm_create:1 of +msgid "Returns ``True`` if the application can create group DMs." +msgstr "" + +#: ../../docstring 84e63c5c48ba4eb5ae1dabaa258759da +#: discord.ApplicationFlags.application_auto_moderation_rule_create_badge:1 of +msgid "Returns ``True`` if the application uses the Auto Moderation API." +msgstr "" + +#: ../../docstring discord.ApplicationFlags.rpc_has_connected:1 +#: e6a9990ba3d646e388c64014e1e75a0f of +msgid "Returns ``True`` if the application has connected to RPC." +msgstr "" + +#: ../../docstring 8bfd56a90b0740749399b09e8492b2c3 +#: discord.ApplicationFlags.gateway_presence:1 of +msgid "" +"Returns ``True`` if the application is verified and is allowed to receive" +" presence information over the gateway." +msgstr "" + +#: ../../docstring 031b14e91f46471b9c1caa3c143fe24c +#: discord.ApplicationFlags.gateway_presence_limited:1 of +msgid "" +"Returns ``True`` if the application is allowed to receive limited " +"presence information over the gateway." +msgstr "" + +#: ../../docstring b61c0d3c0ddc4019917e3b2c9fe5838e +#: discord.ApplicationFlags.gateway_guild_members:1 of +msgid "" +"Returns ``True`` if the application is verified and is allowed to receive" +" guild members information over the gateway." +msgstr "" + +#: ../../docstring d6f247075dcd4acd9b36925e53626cc5 +#: discord.ApplicationFlags.gateway_guild_members_limited:1 of +msgid "" +"Returns ``True`` if the application is allowed to receive limited guild " +"members information over the gateway." +msgstr "" + +#: ../../docstring 31ebe53678724d59ba3d2e8b26c87434 +#: 800775621ea646a5ab3d7aa7241a312f +#: discord.ApplicationFlags.gateway_message_content_limited:1 +#: discord.ApplicationFlags.verification_pending_guild_limit:1 of +msgid "" +"Returns ``True`` if the application is currently pending verification and" +" has hit the guild limit." +msgstr "" + +#: ../../docstring dc09c558ec6541459a558f676916b5e3 +#: discord.ApplicationFlags.embedded:1 of +msgid "Returns ``True`` if the application is embedded within the Discord client." +msgstr "" + +#: ../../docstring 0781df4a164c450a824b0c465ac4ab7d +#: discord.ApplicationFlags.gateway_message_content:1 of +msgid "" +"Returns ``True`` if the application is allowed to read message contents " +"in guilds." +msgstr "" + +#: ../../docstring discord.ApplicationFlags.app_commands_badge:1 +#: e59991780d57460db3e98a50cf7bdf3a of +msgid "" +"Returns ``True`` if the application has registered at least one global " +"application command, and by extension has the badge." +msgstr "" + +#: ../../docstring 3f7a918d6bfb4ce4b696d4e6ebe3e353 +#: discord.ApplicationFlags.active:1 of +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 "" + +#: a4bd098e1fc34c008219770e62a06a99 discord.flags.SystemChannelFlags:1 of +msgid "Wraps up a Discord system channel flag value." +msgstr "" + +#: discord.flags.SystemChannelFlags:3 f486929f646446b8b0d2b87f181db124 of +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 "" + +#: 0773bc0d7cea46738c462ab180eb4376 3bc2d187867445d89d6f41da9143802d +#: a9111ef7cd2e4cd2b8a89c78d2cc659b d854e922bf584117a013f976c9b28415 +#: discord.flags.MessageFlags:40 discord.flags.PublicUserFlags:39 +#: discord.flags.RoleFlags:39 discord.flags.SystemChannelFlags:43 of +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 b8ee9a8232a8404a9b7465ad566dcc3b +#: discord.SystemChannelFlags.join_notifications:1 of +msgid "" +"Returns ``True`` if the system channel is used for member join " +"notifications." +msgstr "" + +#: ../../docstring 30e1356e12bc4d2db6d115c6dfbb702a +#: discord.SystemChannelFlags.premium_subscriptions:1 of +msgid "" +"Returns ``True`` if the system channel is used for \"Nitro boosting\" " +"notifications." +msgstr "" + +#: ../../docstring c860a7da688f4a3eba329b0f5a44fe60 +#: discord.SystemChannelFlags.guild_reminder_notifications:1 of +msgid "" +"Returns ``True`` if the system channel is used for server setup helpful " +"tips notifications." +msgstr "" + +#: ../../docstring a12de3bb2ee84f1dbee7cc3d66dc1c5a +#: discord.SystemChannelFlags.join_notification_replies:1 of +msgid "" +"Returns ``True`` if the system channel is allowing member join sticker " +"replies." +msgstr "" + +#: 10b8cc67e79340b8a4ad420ef92f838a discord.flags.MessageFlags:1 of +msgid "Wraps up a Discord Message flag value." +msgstr "" + +#: 480c78b484734583bd294f3bc094cfa4 discord.flags.MessageFlags:3 of +msgid "See :class:`SystemChannelFlags`." +msgstr "" + +#: ../../docstring 6d39d51a10534ed09d3a2c79eec76696 +#: discord.MessageFlags.crossposted:1 of +msgid "Returns ``True`` if the message is the original crossposted message." +msgstr "" + +#: ../../docstring 649ea51ce00e42e1ad43640c7458e6b0 +#: discord.MessageFlags.is_crossposted:1 of +msgid "Returns ``True`` if the message was crossposted from another channel." +msgstr "" + +#: ../../docstring 2a7cde95910f400596d570b49bfed689 +#: discord.MessageFlags.suppress_embeds:1 of +msgid "Returns ``True`` if the message's embeds have been suppressed." +msgstr "" + +#: ../../docstring 70ea37bce38b4f5fbbbeb08d57268b75 +#: discord.MessageFlags.source_message_deleted:1 of +msgid "" +"Returns ``True`` if the source message for this crosspost has been " +"deleted." +msgstr "" + +#: ../../docstring bf30f3b5a2484302b7d0c3ab72dba8c3 +#: discord.MessageFlags.urgent:1 of +msgid "Returns ``True`` if the source message is an urgent message." +msgstr "" + +#: ../../docstring d317088a0a64477588f5743f245fceaf +#: discord.MessageFlags.urgent:3 of +msgid "An urgent message is one sent by Discord Trust and Safety." +msgstr "" + +#: ../../docstring 77a6e2aeea7940edb81b9265feb50d2f +#: discord.MessageFlags.has_thread:1 of +msgid "Returns ``True`` if the source message is associated with a thread." +msgstr "" + +#: ../../docstring 0a77c56b6c474a99a5cd0657b7f7fc02 +#: discord.MessageFlags.ephemeral:1 of +msgid "Returns ``True`` if the source message is ephemeral." +msgstr "" + +#: ../../docstring 336d134a2b53410bb583d939dc1cecd4 +#: discord.MessageFlags.loading:1 of +msgid "Returns ``True`` if the source message is deferred." +msgstr "" + +#: ../../docstring 57c75b7855894e6fa76c6bda80588672 +#: discord.MessageFlags.loading:3 of +msgid "The user sees a 'thinking' state." +msgstr "" + +#: ../../docstring 67057e75388e4edb90308a2fb5c13697 +#: discord.MessageFlags.failed_to_mention_some_roles_in_thread:1 of +msgid "Returns ``True`` if some roles are failed to mention in a thread." +msgstr "" + +#: ../../docstring 3306149588ed40d5b847b2100e63721a +#: discord.MessageFlags.suppress_notifications:1 of +msgid "" +"Returns ``True`` if the source message does not trigger push and desktop " +"notifications." +msgstr "" + +#: ../../docstring 1765bd17b14d4dfbbb4f1981def660e8 +#: discord.MessageFlags.suppress_notifications:3 of +msgid "Users will still receive mentions." +msgstr "" + +#: ../../docstring 8dfb19e31e824f7482b22c70839d3cfe +#: discord.MessageFlags.is_voice_message:1 of +msgid "Returns ``True`` if this message is a voice message." +msgstr "" + +#: 8dc3ce8bf77f4a4684ab876af0ddf039 discord.flags.AttachmentFlags:1 of +msgid "Wraps up the Discord Attachment flags." +msgstr "" + +#: ../../docstring discord.AttachmentFlags.is_clip:1 +#: eeac692215814c7a97cb5a368f5e9411 of +msgid "Returns ``True`` if the attachment is a clip." +msgstr "" + +#: ../../docstring 9e8032c720724ec2889d8c49b9305286 +#: discord.AttachmentFlags.is_thumbnail:1 of +msgid "Returns ``True`` if the attachment is a thumbnail." +msgstr "" + +#: ../../docstring 4ddb09d9637e4f49b0d1b3ca90f1a568 +#: discord.AttachmentFlags.is_remix:1 of +msgid "Returns ``True`` if the attachment has been remixed." +msgstr "" + +#: 33afb8ca627c4db79bb2365e319224ca discord.flags.PublicUserFlags:1 of +msgid "Wraps up the Discord User Public flags." +msgstr "" + +#: 5649c119f893493caabba18e103f07ad discord.flags.PublicUserFlags:7 of +msgid "Checks if two PublicUserFlags are equal." +msgstr "" + +#: 6691bb86ba0b404ba18a2bb137eb7d30 discord.flags.PublicUserFlags:10 of +msgid "Checks if two PublicUserFlags are not equal." +msgstr "" + +#: ../../docstring 9b746d60bed942a1950241d77759f1a7 +#: discord.PublicUserFlags.staff:1 of +msgid "Returns ``True`` if the user is a Discord Employee." +msgstr "" + +#: ../../docstring 4d18d90b42db4daaa8b711452f4a0d2d +#: discord.PublicUserFlags.partner:1 of +msgid "Returns ``True`` if the user is a Discord Partner." +msgstr "" + +#: ../../docstring 46589090794347e886aa5de6ceee28fb +#: discord.PublicUserFlags.hypesquad:1 of +msgid "Returns ``True`` if the user is a HypeSquad Events member." +msgstr "" + +#: ../../docstring discord.PublicUserFlags.bug_hunter:1 +#: fccf1e186e094ebfaa00fbfb54e2fa3c of +msgid "Returns ``True`` if the user is a Bug Hunter" +msgstr "" + +#: ../../docstring 2984d09fb2534bbda92f69564035b676 +#: discord.PublicUserFlags.premium_promo_dismissed:1 of +msgid "Returns ``True`` if the user is marked as dismissed Nitro promotion" +msgstr "" + +#: ../../docstring aa19d8a150674cddbd5c6a0a025bcc4a +#: discord.PublicUserFlags.hypesquad_bravery:1 of +msgid "Returns ``True`` if the user is a HypeSquad Bravery member." +msgstr "" + +#: ../../docstring 49e3b8c90259460298e42707a0ef84b1 +#: discord.PublicUserFlags.hypesquad_brilliance:1 of +msgid "Returns ``True`` if the user is a HypeSquad Brilliance member." +msgstr "" + +#: ../../docstring discord.PublicUserFlags.hypesquad_balance:1 +#: f8e077f7732e4742b902ed3298ce6bde of +msgid "Returns ``True`` if the user is a HypeSquad Balance member." +msgstr "" + +#: ../../docstring discord.PublicUserFlags.early_supporter:1 +#: e29056e2fb184c68b27a137402116f08 of +msgid "Returns ``True`` if the user is an Early Supporter." +msgstr "" + +#: ../../docstring 4d6fedf25ae24ef484d125962d81e0d9 +#: discord.PublicUserFlags.team_user:1 of +msgid "Returns ``True`` if the user is a Team User." +msgstr "" + +#: ../../docstring discord.PublicUserFlags.system:1 +#: e4f9559c2f6944abad4e86bb507e3511 of +msgid "" +"Returns ``True`` if the user is a system user (i.e. represents Discord " +"officially)." +msgstr "" + +#: ../../docstring c8a9c76c50394d37a2bdf94ea0ccb8f5 +#: discord.PublicUserFlags.bug_hunter_level_2:1 of +msgid "Returns ``True`` if the user is a Bug Hunter Level 2" +msgstr "" + +#: ../../docstring ae50f2aeb3604bef956017622574b740 +#: discord.PublicUserFlags.verified_bot:1 of +msgid "Returns ``True`` if the user is a Verified Bot." +msgstr "" + +#: ../../docstring 1adf9343bab7420e940b41a8e38ecfe8 +#: discord.PublicUserFlags.verified_bot_developer:1 of +msgid "Returns ``True`` if the user is an Early Verified Bot Developer." +msgstr "" + +#: ../../docstring b8c67f65a3664475aa8de21005c25dc1 +#: discord.PublicUserFlags.early_verified_bot_developer:1 of +msgid "An alias for :attr:`verified_bot_developer`." +msgstr "" + +#: ../../docstring 47a31c6e967f49cbbd767def4ed0befc +#: discord.PublicUserFlags.discord_certified_moderator:1 of +msgid "Returns ``True`` if the user is a Discord Certified Moderator." +msgstr "" + +#: ../../docstring 36db2efdfac943f8baf70ac04cc9d31d +#: discord.PublicUserFlags.bot_http_interactions:1 of +msgid "Returns ``True`` if the bot has set an interactions endpoint url." +msgstr "" + +#: ../../docstring discord.PublicUserFlags.active_developer:1 +#: f350510626714f79b476a615b61db38c of +msgid "Returns ``True`` if the user is an Active Developer." +msgstr "" + +#: discord.flags.PublicUserFlags.all:1 e4bc6b0210804222bd91863723951907 of +msgid "List[:class:`UserFlags`]: Returns all public flags the user has." +msgstr "" + +#: 650deb70a83e4df5a896568198f3618a discord.flags.PublicUserFlags.all:4 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ " +"\\\\\\[\\:py\\:class\\:\\`\\~discord.enums.UserFlags\\`\\]`" +msgstr "" + +#: 7df90c872a784fe58cfc7e1be05d6805 discord.flags.ChannelFlags:1 of +msgid "Wraps up the Discord Channel flags." +msgstr "" + +#: 2521c5e0a2a1484e9e698431323eefe8 discord.flags.ChannelFlags:7 of +msgid "Checks if two ChannelFlags are equal." +msgstr "" + +#: discord.flags.ChannelFlags:10 ffe02de519314d17a878ee53f189096d of +msgid "Checks if two ChannelFlags are not equal." +msgstr "" + +#: ../../docstring 327561b0cace4239ac00b172a83525a7 +#: discord.ChannelFlags.pinned:1 of +msgid "" +"Returns ``True`` if the thread is pinned to the top of its parent forum " +"channel." +msgstr "" + +#: ../../docstring 7f91812da4014ead9e3be4e675f7e057 +#: discord.ChannelFlags.require_tag:1 of +msgid "" +"Returns ``True`` if a tag is required to be specified when creating a " +"thread in a :class:`ForumChannel`." +msgstr "" + +#: 32012591b7c94fc08af1f60088606c64 discord.flags.SKUFlags:1 of +msgid "Wraps up the Discord SKU flags." +msgstr "" + +#: discord.flags.SKUFlags:7 f35d7acec4bf4de78098e1c6d19d5151 of +msgid "Checks if two SKUFlags are equal." +msgstr "" + +#: dea4d42fa7ca4a229e039f2140418623 discord.flags.SKUFlags:10 of +msgid "Checks if two SKUFlags are not equal." +msgstr "" + +#: ../../docstring 027a6ab64f424916937c03f62e7ce9b5 +#: discord.SKUFlags.available:1 of +msgid "Returns ``True`` if the SKU is available for purchase." +msgstr "" + +#: ../../docstring 81df38454e7f4f4a880120a036e9db35 +#: discord.SKUFlags.guild_subscription:1 of +msgid "Returns ``True`` if the SKU is a guild subscription." +msgstr "" + +#: ../../docstring discord.SKUFlags.user_subscription:1 +#: eea2e37ea19042af87b4d63827d12ead of +msgid "Returns ``True`` if the SKU is a user subscription." +msgstr "" + +#: 0afe05464fe04d56a027d0cd3c9db82a discord.flags.MemberFlags:1 of +msgid "Wraps up the Discord Member flags." +msgstr "" + +#: d080f67e546140669b711c0dbbfcc0b0 discord.flags.MemberFlags:7 of +msgid "Checks if two MemberFlags are equal." +msgstr "" + +#: 90a926f55a614819835583819864e090 discord.flags.MemberFlags:10 of +msgid "Checks if two MemberFlags are not equal." +msgstr "" + +#: ../../docstring 2c49440173f94a6e86ae552f1c7630b4 +#: discord.MemberFlags.did_rejoin:1 of +msgid "Returns ``True`` if the member left and rejoined the guild." +msgstr "" + +#: ../../docstring discord.MemberFlags.completed_onboarding:1 +#: f716a9f2d5ed4fe396bc2744eeca2d3c of +msgid "Returns ``True`` if the member has completed onboarding." +msgstr "" + +#: ../../docstring 73740166295048a08a0cfddbe7978d73 +#: discord.MemberFlags.bypasses_verification:1 of +msgid "Returns ``True`` if the member is exempt from verification requirements." +msgstr "" + +#: ../../docstring discord.MemberFlags.bypasses_verification:5 +#: fda7930c8a7c4c91abf604a4b839e60d of +msgid "This can be edited through :func:`~discord.Member.edit`." +msgstr "" + +#: ../../docstring 834d998270134606aca02e4bb572587f +#: discord.MemberFlags.started_onboarding:1 of +msgid "Returns ``True`` if the member has started onboarding." +msgstr "" + +#: a98c247c252c4ca589403b8194c19b47 discord.flags.RoleFlags:1 of +msgid "Wraps up the Discord Role flags." +msgstr "" + +#: 45517fcabe5845d6ae9bc1ae96508905 discord.flags.RoleFlags:7 of +msgid "Checks if two RoleFlags are equal." +msgstr "" + +#: a2547963b0e14605b352befb4ba8e266 discord.flags.RoleFlags:10 of +msgid "Checks if two RoleFlags are not equal." +msgstr "" + +#: ../../docstring bd41c11c44b445609dabf6fdee86122c +#: discord.RoleFlags.in_prompt:1 of +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 "" + +#: 0bc56a88a55a448eba210de89aecb3ec discord.colour.Colour:1 of +msgid "" +"Represents a Discord role colour. This class is similar to a (red, green," +" blue) :class:`tuple`." +msgstr "" + +#: af377132a7a245d282a7cb5f72b98154 discord.colour.Colour:4 of +msgid "There is an alias for this called Color." +msgstr "" + +#: 95e2e6b9db564bfd9a10a6d0eb1a1c4f discord.colour.Colour:10 of +msgid "Checks if two colours are equal." +msgstr "" + +#: a6b3fc12993a4cb192fcf2c9cfa96e4b discord.colour.Colour:14 of +msgid "Checks if two colours are not equal." +msgstr "" + +#: cc84aa4e5a66474da6426208b5a7b8a7 discord.colour.Colour:18 of +msgid "Return the colour's hash." +msgstr "" + +#: 7ff8810602fe4d239a77dc15427f234e discord.colour.Colour:22 of +msgid "Returns the hex format for the colour." +msgstr "" + +#: 1e7a0f776972463ca7787176b0f12aaf discord.colour.Colour:26 of +msgid "Returns the raw colour value." +msgstr "" + +#: discord.colour.Colour:30 edb32b320cb342c89417ab0c470aadb4 of +msgid "The raw integer colour value." +msgstr "" + +#: 2c8372e38d3243dea387feb00d363abf discord.Colour.r:1 of +msgid "Returns the red component of the colour." +msgstr "" + +#: 930927fd51f84af48c7f6523a2c27036 discord.Colour.g:1 of +msgid "Returns the green component of the colour." +msgstr "" + +#: 6a5c671c23a4455cae45cf7b86841334 discord.Colour.b:1 of +msgid "Returns the blue component of the colour." +msgstr "" + +#: 0258dd8927a5476ea31d85d4a343a00f discord.colour.Colour.to_rgb:1 of +msgid "Returns an (r, g, b) tuple representing the colour." +msgstr "" + +#: a239b08c195d4cdeb39113116b69730e discord.colour.Colour.to_rgb:4 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ " +"\\\\\\[\\:py\\:class\\:\\`int\\`\\, \\:py\\:class\\:\\`int\\`\\, " +"\\:py\\:class\\:\\`int\\`\\]`" +msgstr "" + +#: 63847d00bfc3402f9dddbc0fdb8fc12f discord.colour.Colour.from_rgb:1 of +msgid "Constructs a :class:`Colour` from an RGB tuple." +msgstr "" + +#: 0022122c9e014d80bdba2c7242d14b0d 0572585aec68476682668d005a3c3b4f +#: 18725c88d25843da82b566cb3a8f3036 19fc169b9416480e882b919b0742175d +#: 1f1f5a340a3e49b39fe7b02f95bee2f3 1fb0f45cd10f4a879ef681cd0e30a6f8 +#: 2a8b69d9fe7a4767a063694e52574666 3d4d3ff243c84a55bc04205123b67b39 +#: 3fc050a5e3044581aa771d20a3d46918 70c2b6d36c974405a2993422c01a46e6 +#: 71634e4f447f4c7b9932135a1faab921 71e9bd4b899443e790bfcfd96649e61f +#: 7290c848640c4bd8a711f58adeba46ba 7c802b0e0ade49a0ad9db95004131d09 +#: 7eb434a46fbf4f9d9bcce3907582bab4 887b7f088a2c4a9fbf171b9e8859b231 +#: 93dfad5707f44dee856d0860ac006d26 9971e2da3aa24d2d8f60f8204978647f +#: 9df700b3893c46438945f72e379b4389 a0f8ca655ace4281904460b701a12e9d +#: a2d931976a37445db9c7dac8fc4c37c8 a9dac317daa24c98a06048d6cfac090a +#: b0256725035e47adb1a721139a023589 bb37ef13a9cd40c6905b63bd95934775 +#: bca9c6fc15464f518561bfcc5f8581b3 d4d35ebcf0b04ec0b10ea85dac563c99 +#: d520111c73814623bce25249a90ec7a6 d83056fdd5b44d139964d8d931d522e7 +#: d9cd83bb22d447d18190b1aa9892abfd da75f800e2e742068b927f529196aee3 +#: discord.colour.Colour.blue:4 discord.colour.Colour.blurple:4 +#: discord.colour.Colour.dark_blue:4 discord.colour.Colour.dark_gold:4 +#: discord.colour.Colour.dark_green:4 discord.colour.Colour.dark_grey:4 +#: discord.colour.Colour.dark_magenta:4 discord.colour.Colour.dark_orange:4 +#: discord.colour.Colour.dark_purple:4 discord.colour.Colour.dark_red:4 +#: discord.colour.Colour.dark_teal:4 discord.colour.Colour.darker_grey:4 +#: discord.colour.Colour.default:4 discord.colour.Colour.embed_background:14 +#: discord.colour.Colour.from_hsv:9 discord.colour.Colour.from_rgb:9 +#: discord.colour.Colour.gold:4 discord.colour.Colour.green:4 +#: discord.colour.Colour.greyple:4 discord.colour.Colour.light_grey:4 +#: discord.colour.Colour.lighter_grey:4 discord.colour.Colour.magenta:4 +#: discord.colour.Colour.og_blurple:4 discord.colour.Colour.orange:4 +#: discord.colour.Colour.purple:4 discord.colour.Colour.random:16 +#: discord.colour.Colour.red:4 discord.colour.Colour.teal:4 +#: ea647fa805ce44729fd1e8dfe31d938a ee743564f21844d5adbcfd588a644aa9 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\" +" \\\\\\(\\`\\`CT\\`\\`\\, bound\\= Colour\\)`" +msgstr "" + +#: 1d2fd978b53341d1a9951c10e8409fa8 discord.colour.Colour.from_hsv:1 of +msgid "Constructs a :class:`Colour` from an HSV tuple." +msgstr "" + +#: discord.colour.Colour.default:1 f6fe4b8aaf4a4059a6cb38c6c3750f4d of +msgid "A factory method that returns a :class:`Colour` with a value of ``0``." +msgstr "" + +#: b6244152aeb844b0b3a073594ad4f462 discord.colour.Colour.random:1 of +msgid "A factory method that returns a :class:`Colour` with a random hue." +msgstr "" + +#: discord.colour.Colour.random:5 f72e38aaf95f4a55909f8f47e528047d of +msgid "" +"The random algorithm works by choosing a colour with a random hue but " +"with maxed out saturation and value." +msgstr "" + +#: 7e753ac524734679a23d66e7eca10609 discord.colour.Colour.random:11 of +msgid "" +"The seed to initialize the RNG with. If ``None`` is passed the default " +"RNG is used. .. versionadded:: 1.7" +msgstr "" + +#: 5733fdce535445dabd34d11f1981bffb discord.colour.Colour.random:11 of +msgid "" +"The seed to initialize the RNG with. If ``None`` is passed the default " +"RNG is used." +msgstr "" + +#: discord.colour.Colour.teal:1 ffc576a6a0b647c994a91fc1ab89147f of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x1abc9c``." +msgstr "" + +#: 019ad6d562fb4868aebb8f80fbaf2628 discord.colour.Colour.dark_teal:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x11806a``." +msgstr "" + +#: 2809c53d29824df69166201321bc9fec discord.colour.Colour.brand_green:1 of +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 "" + +#: 6cc5d6aadbb64f25b32f9664d58ed82e discord.colour.Colour.green:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x2ecc71``." +msgstr "" + +#: 4ac07d277e394779972f7a7047b96483 discord.colour.Colour.dark_green:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x1f8b4c``." +msgstr "" + +#: 1444ec89e41c4f6ab5ed395fe2d8050c discord.colour.Colour.blue:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x3498db``." +msgstr "" + +#: 2519110c724f42b2b34d51845e341702 discord.colour.Colour.dark_blue:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x206694``." +msgstr "" + +#: 8c9e35fbb1d540fd8a4191919032a05d discord.colour.Colour.purple:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x9b59b6``." +msgstr "" + +#: b3537fcb5c5e400faa8fa6d3adc61e0f discord.colour.Colour.dark_purple:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x71368a``." +msgstr "" + +#: b9b81e21116143db998500b2475dc29b discord.colour.Colour.magenta:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0xe91e63``." +msgstr "" + +#: a3ddc438b7fb47a8892de380f8a38f52 discord.colour.Colour.dark_magenta:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0xad1457``." +msgstr "" + +#: 47a39aa405ea4c29a2c3f3987ce0d07e discord.colour.Colour.gold:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0xf1c40f``." +msgstr "" + +#: a43570fb88f84b3fa081555ded31e601 discord.colour.Colour.dark_gold:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0xc27c0e``." +msgstr "" + +#: discord.colour.Colour.orange:1 e4488bf9b87f46dd8b00d231510a0d11 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0xe67e22``." +msgstr "" + +#: 7fb3e4c7e3624964a72d3ca847d50528 discord.colour.Colour.dark_orange:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0xa84300``." +msgstr "" + +#: bf01a50532b5404dae7505a55a88a477 discord.colour.Colour.brand_red:1 of +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 "" + +#: 4eeea91e793a4fc19914d97c20797aab discord.colour.Colour.red:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0xe74c3c``." +msgstr "" + +#: c9ffe0ca315247aeb2070b757416897c discord.colour.Colour.dark_red:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x992d22``." +msgstr "" + +#: 5e27ef808d91425e970ae6662337c2b5 8044758a0db84cdf863db1e689e0be67 +#: discord.colour.Colour.lighter_grey:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x95a5a6``." +msgstr "" + +#: 20eb2a0175154749974a5ddcaea1c505 c0f6998838a94278abf17afb257fb664 +#: discord.colour.Colour.dark_grey:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x607d8b``." +msgstr "" + +#: c72d480b7c9149d6ac778be8a1432ded discord.colour.Colour.light_grey:1 +#: fc5d0c4ec9b1403c86dccd73eab9cabf of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x979c9f``." +msgstr "" + +#: 22102a11a6cf40308bc89b14cfb7ba4c 6f66401bfb6b462090fc239b5f121de9 +#: discord.colour.Colour.darker_grey:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x546e7a``." +msgstr "" + +#: a8a91c59f7f041378f7c8df6b9ba5d7f discord.colour.Colour.og_blurple:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x7289da``." +msgstr "" + +#: c00febfa573b48cab072245d343ad67b discord.colour.Colour.blurple:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x5865F2``." +msgstr "" + +#: 8dd2bbd3142e43648a5342be5b997b2d discord.colour.Colour.greyple:1 of +msgid "" +"A factory method that returns a :class:`Colour` with a value of " +"``0x99aab5``." +msgstr "" + +#: discord.colour.Colour.dark_theme:1 ea6a540eff9141a58a4abebcb923706a of +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 "" + +#: b662095d005e4d848cdbb33fbcc79457 discord.colour.Colour.fuchsia:1 of +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 "" + +#: d041d59442644a0597c6274311bc6482 discord.colour.Colour.yellow:1 of +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 "" + +#: 9082218ea3464ffb99c07f1fddb70e17 discord.colour.Colour.nitro_pink:1 of +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 "" + +#: 1a28ea6d58c74dc396e00736389a7fe5 discord.colour.Colour.embed_background:1 of +msgid "" +"A factory method that returns a :class:`Colour` corresponding to the " +"embed colours on discord clients, with a value of:" +msgstr "" + +#: 7fb2e3dde8594c9d839efec27ed4f7a6 discord.colour.Colour.embed_background:4 of +msgid "``0x2B2D31`` (dark)" +msgstr "" + +#: 36ab5f667d484968a82596cffbe4c7cc discord.colour.Colour.embed_background:5 of +msgid "``0xEEEFF1`` (light)" +msgstr "" + +#: 0110f69fe3ed402abf89c0ba8051e189 discord.colour.Colour.embed_background:6 of +msgid "``0x000000`` (amoled)." +msgstr "" + +#: d72641880fdd4598876dd1a82c6e7d8f discord.colour.Colour.embed_background:11 +#: of +msgid "" +"The theme colour to apply, must be one of \"dark\", \"light\", or " +"\"amoled\"." +msgstr "" + +#: ../../api/data_classes.rst:193 9905f7d99ac846c088e3402bdc9a380a +msgid "Activity" +msgstr "" + +#: c52db67ea78d414fa4300f7be0054f5a discord.activity.Activity:1 of +msgid "Represents an activity in Discord." +msgstr "" + +#: 54f2215d0c5041639c16cfe8b6f42717 discord.activity.Activity:3 of +msgid "" +"This could be an activity such as streaming, playing, listening or " +"watching." +msgstr "" + +#: discord.activity.Activity:6 e729d11740df48e5bc828e39978e4180 of +msgid "" +"For memory optimisation purposes, some activities are offered in slimmed " +"down versions:" +msgstr "" + +#: a28d0d7a3af749fc815dcf126213541e bd8eef39e9e8469488008ac99a754b70 +#: discord.activity.Activity:9 discord.activity.BaseActivity:7 of +msgid ":class:`Game`" +msgstr "" + +#: 0732538ae1554ce7ad874746d8e04836 5304d830379f4e10b5bf07f5239cc960 +#: discord.activity.Activity:10 discord.activity.BaseActivity:8 of +msgid ":class:`Streaming`" +msgstr "" + +#: discord.activity.Activity:14 f1a64e72ab044453a26f93ef99cf7fe9 of +msgid "The application ID of the game." +msgstr "" + +#: 2a70cf7691b54a0688e7d533bd4bebf6 discord.activity.Activity:20 of +msgid "The name of the activity." +msgstr "" + +#: 841863bc00d34766894f5836500f6ced discord.activity.Activity:26 of +msgid "A stream URL that the activity could be doing." +msgstr "" + +#: 80e09c77ef794d7b85723a1454ad2baf discord.activity.Activity:32 of +msgid "The type of activity currently being done." +msgstr "" + +#: 2b20ab734fe344d5a8cea26cd6e575d5 discord.activity.Activity:34 of +msgid ":class:`ActivityType`" +msgstr "" + +#: 6e859884311d44dbac604d61a1b31e7f discord.activity.Activity:38 of +msgid "The user's current party status or text used for a custom status." +msgstr "" + +#: d879aa74129d4958b85d73b8adede6f7 discord.activity.Activity:44 of +msgid "The detail of the user's current activity." +msgstr "" + +#: 0dae68955393486393daf4ec2426aa22 discord.activity.Activity:50 of +msgid "A dictionary of timestamps. It contains the following optional keys:" +msgstr "" + +#: 7dfd4bc9fbcd46bc908a24168eaa3524 discord.activity.Activity:52 of +msgid "" +"``start``: Corresponds to when the user started doing the activity in " +"milliseconds since Unix epoch." +msgstr "" + +#: 603680d7a4734e318b74294bb5d17cae discord.activity.Activity:54 of +msgid "" +"``end``: Corresponds to when the user will finish doing the activity in " +"milliseconds since Unix epoch." +msgstr "" + +#: 3afc0211c73c4d1da98f985be927ec34 discord.activity.Activity:57 of +msgid "Dict[:class:`str`, :class:`int`]" +msgstr "" + +#: 90cf228cb518423fa1fbcbe0ea6ca047 discord.activity.Activity:61 of +msgid "" +"A dictionary representing the images and their hover text of an activity." +" It contains the following optional keys:" +msgstr "" + +#: 2d84cc8fd7454346a7eee48a3fc9b69c discord.activity.Activity:64 of +msgid "``large_image``: A string representing the ID for the large image asset." +msgstr "" + +#: 2963e1126d634fb99d4f2c8854ad01e1 discord.activity.Activity:65 of +msgid "" +"``large_text``: A string representing the text when hovering over the " +"large image asset." +msgstr "" + +#: 6974ca4a73a842aa9cee3f5b2a6b9d75 discord.activity.Activity:66 of +msgid "``small_image``: A string representing the ID for the small image asset." +msgstr "" + +#: 7694677fe39f4f47b2cb64fd3ef8873d discord.activity.Activity:67 of +msgid "" +"``small_text``: A string representing the text when hovering over the " +"small image asset." +msgstr "" + +#: 5eba8079bdca4d1ebd1953ae49348f0f discord.activity.Activity:69 +#: discord.activity.Streaming:61 e41a8f1a9a474c699e2ae5b09b9eb767 of +msgid "Dict[:class:`str`, :class:`str`]" +msgstr "" + +#: 7100a7a2fdb04e349a841242cfca9c8a discord.activity.Activity:73 of +msgid "" +"A dictionary representing the activity party. It contains the following " +"optional keys:" +msgstr "" + +#: 926c2d9fe15b420ea9db9043b0d00e30 discord.activity.Activity:75 of +msgid "``id``: A string representing the party ID." +msgstr "" + +#: 987fcee3a24b4da188c6dd26f449db8a discord.activity.Activity:76 of +msgid "" +"``size``: A list of up to two integer elements denoting (current_size, " +"maximum_size)." +msgstr "" + +#: 90abebc7d5ba4bc6a3f72b1c0bfa3061 discord.activity.Activity:78 of +msgid "Dict[:class:`str`, Union[:class:`str`, List[:class:`int`]]]" +msgstr "" + +#: 119ad37b11cb4c86ab11f49c8205fe40 discord.activity.Activity:82 of +msgid "" +"A list of dictionaries representing custom buttons shown in a rich " +"presence. Each dictionary contains the following keys:" +msgstr "" + +#: discord.activity.Activity:85 fee7d5966539463dbc09ba4d777dc4c5 of +msgid "``label``: A string representing the text shown on the button." +msgstr "" + +#: discord.activity.Activity:86 e934ad3fb7514285a2551153ebba45df of +msgid "``url``: A string representing the URL opened upon clicking the button." +msgstr "" + +#: discord.activity.Activity:90 e9b5e058928b4b1ca13762463fa83073 of +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 "" + +#: 32efb19b998f47149b9c36a635d0e430 discord.activity.Activity:95 of +msgid "Union[List[Dict[:class:`str`, :class:`str`]], List[:class:`str`]]" +msgstr "" + +#: 1f065119b988464eb863d1f164649246 discord.activity.Activity:99 of +msgid "The emoji that belongs to this activity." +msgstr "" + +#: b84d01ced9aa4d4d87d8a0ebe947641d ca906f7c1a2449a5bc24eb1ec94888eb +#: discord.activity.Activity:101 discord.activity.CustomActivity:33 of +msgid "Optional[:class:`PartialEmoji`]" +msgstr "" + +#: 922a50363d1e4b7abda2b65a509a7633 discord.Activity.start:1 of +msgid "When the user started doing this activity in UTC, if applicable." +msgstr "" + +#: 6d118390d4fc42c6994502131a8335bf discord.Activity.end:1 of +msgid "When the user will stop doing this activity in UTC, if applicable." +msgstr "" + +#: 2e9df406abc44d68ac8d05f2623f233e discord.Activity.large_image_url:1 of +msgid "" +"Returns a URL pointing to the large image asset of this activity if " +"applicable." +msgstr "" + +#: 5cc10e23763a40069105f956a47598f3 discord.Activity.small_image_url:1 of +msgid "" +"Returns a URL pointing to the small image asset of this activity if " +"applicable." +msgstr "" + +#: af7be03a7e334e74835e11d36f55a1e8 discord.Activity.large_image_text:1 of +msgid "Returns the large image asset hover text of this activity if applicable." +msgstr "" + +#: 3c2e2d49b5b146c6beeb4e21f02013f6 discord.Activity.small_image_text:1 of +msgid "Returns the small image asset hover text of this activity if applicable." +msgstr "" + +#: discord.activity.BaseActivity:1 fb3c412129464f14a32817147d50de0b of +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 "" + +#: cf387d90080b4cdc9e10bbdc1d06257e discord.activity.BaseActivity:4 of +msgid "The following types currently count as user-settable:" +msgstr "" + +#: aa33c3b5a42949859a53709e61da1f05 discord.activity.BaseActivity:6 of +msgid ":class:`Activity`" +msgstr "" + +#: d6427e751a794bd78b364ac0b75728a3 discord.activity.BaseActivity:9 of +msgid ":class:`CustomActivity`" +msgstr "" + +#: d09ea164c0cd4cbdbc0163e5437093a9 discord.activity.BaseActivity:11 of +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 "" + +#: 07b36b0e7d2948e1baf228040a6a3241 discord.BaseActivity.created_at:1 of +msgid "When the user started doing this activity in UTC." +msgstr "" + +#: 66617b5efa3e411292f2c95782ab2454 discord.activity.Game:1 of +msgid "" +"A slimmed down version of :class:`Activity` that represents a Discord " +"game." +msgstr "" + +#: discord.activity.Game:3 e8cd4495f8bd4373b2d536a0829af5ca of +msgid "" +"This is typically displayed via **Playing** on the official Discord " +"client." +msgstr "" + +#: 23ae142cc83940b59466666da6b82abc discord.activity.Game:9 of +msgid "Checks if two games are equal." +msgstr "" + +#: da3209c4958443a396716fbf81b22ff6 discord.activity.Game:13 of +msgid "Checks if two games are not equal." +msgstr "" + +#: c7f7d169c44f42f492d9d7dcf1845954 discord.activity.Game:17 of +msgid "Returns the game's hash." +msgstr "" + +#: 6edf2ada4fb84c2299ef2193db043fa4 discord.activity.Game:21 of +msgid "Returns the game's name." +msgstr "" + +#: 60ec9c34573a4bfd974edad2940fc120 710eb25609234a2eab35dd6ef26a8672 +#: discord.activity.Game:24 discord.activity.Game:29 of +msgid "The game's name." +msgstr "" + +#: 00b6990c11bc4f928db940ba5015af05 3a36f0b58a4a4e7cb9f8dc2cc6aa1d94 +#: discord.Game.type:1 discord.Streaming.type:1 of +msgid "Returns the game's type. This is for compatibility with :class:`Activity`." +msgstr "" + +#: 519f2ad7af2643a49c8de14c5fd856dd discord.Game.type:3 of +msgid "It always returns :attr:`ActivityType.playing`." +msgstr "" + +#: 2fe7ad5b1581451e94caa24e9912d075 discord.Game.start:1 of +msgid "When the user started playing this game in UTC, if applicable." +msgstr "" + +#: 0491299224284daeafc2d95b819b5835 discord.Game.end:1 of +msgid "When the user will stop playing this game in UTC, if applicable." +msgstr "" + +#: 22e2635806f44e03b314fcea5c24d064 discord.activity.Streaming:1 of +msgid "" +"A slimmed down version of :class:`Activity` that represents a Discord " +"streaming status." +msgstr "" + +#: 76aa5d55d1c9433089da693267966795 discord.activity.Streaming:3 of +msgid "" +"This is typically displayed via **Streaming** on the official Discord " +"client." +msgstr "" + +#: 42eb1dc2050e401e9075ce5a316f1981 discord.activity.Streaming:9 of +msgid "Checks if two streams are equal." +msgstr "" + +#: 38c4279586ad4e439c331b076545379a discord.activity.Streaming:13 of +msgid "Checks if two streams are not equal." +msgstr "" + +#: 95be974cab9e4dadb28de5009208ebcc discord.activity.Streaming:17 of +msgid "Returns the stream's hash." +msgstr "" + +#: ae721653e365456fbebac789acb05adf discord.activity.Streaming:21 of +msgid "Returns the stream's name." +msgstr "" + +#: a178ef3028f3437e8d20967729abb6fc discord.activity.Streaming:25 of +msgid "Where the user is streaming from (ie. YouTube, Twitch)." +msgstr "" + +#: 6a24db0720074b169a1e671ec4841d36 discord.activity.Streaming:33 of +msgid "The stream's name." +msgstr "" + +#: 709bac80c9324b34a8b0686f4df4b0f6 discord.activity.Streaming:39 of +msgid "An alias for :attr:`name`" +msgstr "" + +#: 32097c73089e429384ee0fb98060f3df discord.activity.Streaming:45 of +msgid "The game being streamed." +msgstr "" + +#: discord.activity.Streaming:53 f4b4de5b2031416dba949ce8be26937a of +msgid "The stream's URL." +msgstr "" + +#: 033534059d1b420d810da1de9fc81a04 discord.activity.Streaming:59 of +msgid "" +"A dictionary comprised of similar keys than those in " +":attr:`Activity.assets`." +msgstr "" + +#: c020752da0ee48c085ed325e2a5107a3 discord.Streaming.type:3 of +msgid "It always returns :attr:`ActivityType.streaming`." +msgstr "" + +#: de8e1cf2c6eb43218a65788ba6caa0b4 discord.Streaming.twitch_name:1 of +msgid "If provided, the twitch name of the user streaming." +msgstr "" + +#: 165338f4dab94b2f8901501ebd64c6f7 discord.Streaming.twitch_name:3 of +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 "" + +#: 3938e568fe7a46089da5b19b17fc515e discord.activity.CustomActivity:1 of +msgid "Represents a Custom activity from Discord." +msgstr "" + +#: acf4363744434b20a6464a9900123c84 discord.activity.CustomActivity:7 of +msgid "Checks if two activities are equal." +msgstr "" + +#: 60bd4d421bcc41cca95806d2a68ed1cd discord.activity.CustomActivity:11 of +msgid "Checks if two activities are not equal." +msgstr "" + +#: 5b063163bfaf4930af9d387ef066d6ec discord.activity.CustomActivity:15 of +msgid "Returns the activity's hash." +msgstr "" + +#: 9c992dd3ca474eaead904f431e9b065e discord.activity.CustomActivity:19 of +msgid "Returns the custom status text." +msgstr "" + +#: 1185f9ed8b11425296b33aeb72e9d01c discord.activity.CustomActivity:25 of +msgid "The custom activity's name." +msgstr "" + +#: 73a10f994059438aafdfba8fb233ccf9 discord.activity.CustomActivity:31 of +msgid "The emoji to pass to the activity, if any." +msgstr "" + +#: 66f77c61ee2840e59efe648bf891294d discord.activity.CustomActivity:37 of +msgid "The text used for the custom activity." +msgstr "" + +#: a2fcc50995664b789e7912d698d3672b discord.CustomActivity.type:1 of +msgid "" +"Returns the activity's type. This is for compatibility with " +":class:`Activity`." +msgstr "" + +#: df5b15e73d1e41028c2ec44cf7c8a8da discord.CustomActivity.type:3 of +msgid "It always returns :attr:`ActivityType.custom`." +msgstr "" + +#: ../../api/data_classes.rst:221 60d410b462c140fd9d5d5d85a0ca55ef +msgid "Permissions" +msgstr "" + +#: 8e13e3b1d07e469eb7a3ab8b4ba0be6c discord.permissions.Permissions:1 of +msgid "Wraps up the Discord permission value." +msgstr "" + +#: 4f272e071c5f44139b56ad55b81ea8aa discord.permissions.Permissions:3 of +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 "" + +#: bd321b47be9a4de98bdd12535fbcf574 discord.permissions.Permissions:7 of +msgid "" +"You can now use keyword arguments to initialize :class:`Permissions` " +"similar to :meth:`update`." +msgstr "" + +#: 5637ff5271234867aaf55cf80d0fc1b7 discord.permissions.Permissions:15 of +msgid "Checks if two permissions are equal." +msgstr "" + +#: discord.permissions.Permissions:18 fcc55fde91b24b5c9f7c6519b7e15ff7 of +msgid "Checks if two permissions are not equal." +msgstr "" + +#: b5ab6c1babd64517a24ef83f2dde5e10 discord.permissions.Permissions:21 of +msgid "Checks if a permission is a subset of another permission." +msgstr "" + +#: b16c4f3a39614a8b9fc0564c88d54c3b discord.permissions.Permissions:24 of +msgid "Checks if a permission is a superset of another permission." +msgstr "" + +#: 3421d8547974443eabb00466f982007e discord.permissions.Permissions:27 of +msgid "Checks if a permission is a strict subset of another permission." +msgstr "" + +#: discord.permissions.Permissions:32 f962f0f158b04fa0a28a23da9b07d0f0 of +msgid "Adds two permissions together. Equivalent to ``x | y``." +msgstr "" + +#: 4ab6f2fa1e274ff3b08bcbcb07a4008b discord.permissions.Permissions:35 of +msgid "Subtracts two permissions from each other." +msgstr "" + +#: 32a4172a223a4badb7223518fd57bfe4 discord.permissions.Permissions:38 of +msgid "Returns the union of two permissions. Equivalent to ``x + y``." +msgstr "" + +#: 6f359edfb3b84604a3683f6f61ac6027 discord.permissions.Permissions:41 of +msgid "Returns the intersection of two permissions." +msgstr "" + +#: 5cccbc5524084879a00ace639984467b discord.permissions.Permissions:44 of +msgid "Returns the inverse of a permission." +msgstr "" + +#: discord.permissions.Permissions:46 ea8f4803688c427aab864e15ecf72a18 of +msgid "Checks if a permission is a strict superset of another permission." +msgstr "" + +#: d6f51ecf1a7947359281cb9413a44943 discord.permissions.Permissions:49 of +msgid "Return the permission's hash." +msgstr "" + +#: 35af40a9ec964fb48c18bbdfc01bf75d discord.permissions.PermissionOverwrite:22 +#: discord.permissions.Permissions:52 ee479ed5d50d4b20aebb43ef531f5610 of +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 "" + +#: a10f6bbff86e49acbfaa46201bdf52d7 discord.permissions.Permissions:58 of +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 "" + +#: 3713354dea1c4a6e98816c5530074aa7 discord.permissions.Permissions.is_subset:1 +#: of +msgid "Returns ``True`` if self has the same or fewer permissions as other." +msgstr "" + +#: 7026a3194ab842e7ae4aedb81fd93bac +#: discord.permissions.Permissions.is_superset:1 of +msgid "Returns ``True`` if self has the same or more permissions as other." +msgstr "" + +#: df8b6b994b24481fbadcf9b7e63a31c7 +#: discord.permissions.Permissions.is_strict_subset:1 of +msgid "" +"Returns ``True`` if the permissions on other are a strict subset of those" +" on self." +msgstr "" + +#: cabd215d21bb4d96aa64bf4f13e778e8 +#: discord.permissions.Permissions.is_strict_superset:1 of +msgid "" +"Returns ``True`` if the permissions on other are a strict superset of " +"those on self." +msgstr "" + +#: 6e9068a2c344478ba5bb4ee0f556045a discord.permissions.Permissions.none:1 of +msgid "" +"A factory method that creates a :class:`Permissions` with all permissions" +" set to ``False``." +msgstr "" + +#: 1fba130190d641938864033a7f9fa35d 6588456a9f9f4f36bb455aa4108df274 +#: d21bdd4bb92840a2b3de85597be27a98 discord.permissions.Permissions.all:5 +#: discord.permissions.Permissions.none:5 +#: discord.permissions.Permissions.voice:5 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\" +" \\\\\\(\\`\\`P\\`\\`\\, bound\\= Permissions\\)`" +msgstr "" + +#: b8790ac5bab648788e3c6a7efe91a8c6 discord.permissions.Permissions.all:1 of +msgid "" +"A factory method that creates a :class:`Permissions` with all permissions" +" set to ``True``." +msgstr "" + +#: c501996a0aa44e3bba2a7c131a8ecc55 +#: discord.permissions.Permissions.all_channel:1 of +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 "" + +#: 3d33edd78b4a44af96d1174e80fe38df +#: discord.permissions.Permissions.all_channel:7 of +msgid ":attr:`manage_emojis`" +msgstr "" + +#: 67c5f2685a8140feb38876faa140bf2a +#: discord.permissions.Permissions.all_channel:8 of +msgid ":attr:`view_audit_log`" +msgstr "" + +#: discord.permissions.Permissions.all_channel:9 +#: eb56391df8e94861af5a6a8409c17d6f of +msgid ":attr:`view_guild_insights`" +msgstr "" + +#: 7b554c4be8944c03a6ef76c5b73eede5 +#: discord.permissions.Permissions.all_channel:10 of +msgid ":attr:`manage_guild`" +msgstr "" + +#: 7f33532c524d48eeb208f2f316ac7879 +#: discord.permissions.Permissions.all_channel:11 of +msgid ":attr:`change_nickname`" +msgstr "" + +#: 606ad5d3e5084e568298891c3b0588e7 +#: discord.permissions.Permissions.all_channel:12 of +msgid ":attr:`manage_nicknames`" +msgstr "" + +#: 48fc50f3db1a4049aa6ed259c0016e20 +#: discord.permissions.Permissions.all_channel:13 of +msgid ":attr:`kick_members`" +msgstr "" + +#: discord.permissions.Permissions.all_channel:14 +#: e7d64bc06aef4cc7837d72e3051db957 of +msgid ":attr:`ban_members`" +msgstr "" + +#: c502768910914af6a4de9d4bbf12a158 +#: discord.permissions.Permissions.all_channel:15 of +msgid ":attr:`administrator`" +msgstr "" + +#: 58e62e0ef9144695b99159ad964e9797 +#: discord.permissions.Permissions.all_channel:17 of +msgid "" +"Added :attr:`stream`, :attr:`priority_speaker` and " +":attr:`use_slash_commands` permissions." +msgstr "" + +#: 1ac70319723b451d9c8b3252e52b6e79 +#: discord.permissions.Permissions.all_channel:20 of +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 "" + +#: ba6992e7084e41a4ae1fb6437f90c395 discord.permissions.Permissions.general:1 +#: of +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 "" + +#: 150148bc2a3e43f7b18149bb6897ee01 discord.permissions.Permissions.general:6 +#: of +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 "" + +#: 454540f845e641959058f28badf30ad5 +#: discord.permissions.Permissions.membership:1 of +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 "" + +#: 289554b113484936916b5ee1ab0fd38e discord.permissions.Permissions.text:1 of +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 "" + +#: c4688cf0c33a417e92f5c0627d33378d discord.permissions.Permissions.text:6 of +msgid "" +"Permission :attr:`read_messages` is no longer part of the text " +"permissions. Added :attr:`use_slash_commands` permission." +msgstr "" + +#: 04d50f609e1643f79c50c26c2356c391 discord.permissions.Permissions.text:10 of +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 "" + +#: 7f71cb30e267401b9a2a1ff63f4884ab discord.permissions.Permissions.voice:1 of +msgid "" +"A factory method that creates a :class:`Permissions` with all \"Voice\" " +"permissions from the official Discord UI set to ``True``." +msgstr "" + +#: a5f10e0b445a4afea2ac4f0bf2629b7a discord.permissions.Permissions.stage:1 of +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 "" + +#: 5e21d8ef96414ceda6df2f9e5f577da1 +#: discord.permissions.Permissions.stage_moderator:1 of +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 "" + +#: 6d2820f27e4e4332a814576db3003b76 discord.permissions.Permissions.advanced:1 +#: of +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 "" + +#: 3cd8edc5bc9945299d62e81b1d2258bb discord.permissions.Permissions.update:1 of +msgid "Bulk updates this permission object." +msgstr "" + +#: 6287598599254ef6bf071e4b261f44e5 +#: discord.permissions.PermissionOverwrite.update:3 +#: discord.permissions.Permissions.update:3 ffc0d79e5c0e49a5afdaa65646082f76 of +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 "" + +#: 3fd6dda4423a4789884374f9f327e6d0 discord.permissions.Permissions.update:8 of +msgid "A list of key/value pairs to bulk update permissions with." +msgstr "" + +#: ../../docstring 0852cfca81494db9998dcb4555562238 +#: discord.Permissions.create_instant_invite:1 of +msgid "Returns ``True`` if the user can create instant invites." +msgstr "" + +#: ../../docstring c79ee2200ed040ff8e3600a1f4bcd286 +#: discord.Permissions.kick_members:1 of +msgid "Returns ``True`` if the user can kick users from the guild." +msgstr "" + +#: ../../docstring 0606ce80e2b74dd18f3a06ddfb424905 +#: discord.Permissions.ban_members:1 of +msgid "Returns ``True`` if a user can ban users from the guild." +msgstr "" + +#: ../../docstring 22117166f3d3400c8a0183d958f2473d +#: discord.Permissions.administrator:1 of +msgid "" +"Returns ``True`` if a user is an administrator. This role overrides all " +"other permissions." +msgstr "" + +#: ../../docstring 923ad41d1a9f4a06882f0589f49a660d +#: discord.Permissions.administrator:3 of +msgid "This also bypasses all channel-specific overrides." +msgstr "" + +#: ../../docstring 324066ccebc7437a82fcd56264fd8cc8 +#: discord.Permissions.manage_channels:1 of +msgid "" +"Returns ``True`` if a user can edit, delete, or create channels in the " +"guild." +msgstr "" + +#: ../../docstring 12d73ea485d3493a8ded1ccc53e2c504 +#: discord.Permissions.manage_channels:3 of +msgid "This also corresponds to the \"Manage Channel\" channel-specific override." +msgstr "" + +#: ../../docstring 51e2d1633433474da1f3a494890db872 +#: discord.Permissions.manage_guild:1 of +msgid "Returns ``True`` if a user can edit guild properties." +msgstr "" + +#: ../../docstring discord.Permissions.add_reactions:1 +#: fbe183953a1a4ae3bbb2e9b7ee3760b0 of +msgid "Returns ``True`` if a user can add reactions to messages." +msgstr "" + +#: ../../docstring discord.Permissions.view_audit_log:1 +#: e82d9686fb914794b400bd4a68b9b71f of +msgid "Returns ``True`` if a user can view the guild's audit log." +msgstr "" + +#: ../../docstring c26c8e4168b64c1b96a4a7543864afda +#: discord.Permissions.priority_speaker:1 of +msgid "Returns ``True`` if a user can be more easily heard while talking." +msgstr "" + +#: ../../docstring 1f324a8b58c541f2a1ba2b75de16b11f +#: discord.Permissions.stream:1 of +msgid "Returns ``True`` if a user can stream in a voice channel." +msgstr "" + +#: ../../docstring b47230b37fe246c29733f872037b2627 +#: discord.Permissions.view_channel:1 of +msgid "Returns ``True`` if a user can view all or specific channels." +msgstr "" + +#: ../../docstring 236a13b11f97491aaf5c86a271f2a299 +#: discord.Permissions.read_messages:1 of +msgid "An alias for :attr:`view_channel`." +msgstr "" + +#: ../../docstring aeccba9f352f43ff93ba887eadb028ee +#: discord.Permissions.send_messages:1 of +msgid "" +"Returns ``True`` if a user can send messages from all or specific text " +"channels." +msgstr "" + +#: ../../docstring 27578f091046405f94d22c382db1beeb +#: discord.Permissions.send_tts_messages:1 of +msgid "" +"Returns ``True`` if a user can send TTS messages from all or specific " +"text channels." +msgstr "" + +#: ../../docstring 30ebd7d1308943ae874ed4dd75a44ba8 +#: discord.Permissions.manage_messages:1 of +msgid "Returns ``True`` if a user can delete or pin messages in a text channel." +msgstr "" + +#: ../../docstring 07e3d2dc854b48da9ed38f4648f6a7bf +#: discord.Permissions.manage_messages:5 of +msgid "Note that there are currently no ways to edit other people's messages." +msgstr "" + +#: ../../docstring c0be8484ebc040b98fb0939998361c92 +#: discord.Permissions.embed_links:1 of +msgid "" +"Returns ``True`` if a user's messages will automatically be embedded by " +"Discord." +msgstr "" + +#: ../../docstring 9c89ebe10d9b4e15b608ebfa25fcada1 +#: discord.Permissions.attach_files:1 of +msgid "Returns ``True`` if a user can send files in their messages." +msgstr "" + +#: ../../docstring discord.Permissions.read_message_history:1 +#: fda35b6690a246aca8136c74f7233cda of +msgid "Returns ``True`` if a user can read a text channel's previous messages." +msgstr "" + +#: ../../docstring dd01266c445141a097c673b102981c4d +#: discord.Permissions.mention_everyone:1 of +msgid "" +"Returns ``True`` if a user's @everyone or @here will mention everyone in " +"the text channel." +msgstr "" + +#: ../../docstring 2651f553500e45a693e270f7c2aeb8c3 +#: discord.Permissions.external_emojis:1 of +msgid "Returns ``True`` if a user can use emojis from other guilds." +msgstr "" + +#: ../../docstring 306f18053bce4eb2988a8ddb8c78bf30 +#: discord.Permissions.use_external_emojis:1 of +msgid "An alias for :attr:`external_emojis`." +msgstr "" + +#: ../../docstring 1b698e890134451ab81edcfb2f6fcced +#: discord.Permissions.view_guild_insights:1 of +msgid "Returns ``True`` if a user can view the guild's insights." +msgstr "" + +#: ../../docstring discord.Permissions.connect:1 +#: e0ea8ccb80464cd493d1564f68c1dd2b of +msgid "Returns ``True`` if a user can connect to a voice channel." +msgstr "" + +#: ../../docstring b6a13ba2d5204a789021424a697cc7aa discord.Permissions.speak:1 +#: of +msgid "Returns ``True`` if a user can speak in a voice channel." +msgstr "" + +#: ../../docstring 84fcdd88475b4c918f4398c3c09b6a00 +#: discord.Permissions.mute_members:1 of +msgid "Returns ``True`` if a user can mute other users." +msgstr "" + +#: ../../docstring 8c259e01f44245cf8e6e77bcea3f161b +#: discord.Permissions.deafen_members:1 of +msgid "Returns ``True`` if a user can deafen other users." +msgstr "" + +#: ../../docstring 05ad8c3fb5b545f7b5ca02137af48532 +#: discord.Permissions.move_members:1 of +msgid "Returns ``True`` if a user can move users between other voice channels." +msgstr "" + +#: ../../docstring discord.Permissions.use_voice_activation:1 +#: ee7d230c69a64cf6bd2fe7b2832f656a of +msgid "Returns ``True`` if a user can use voice activation in voice channels." +msgstr "" + +#: ../../docstring b317f5c3d4d644858fcb73b0648e2543 +#: discord.Permissions.change_nickname:1 of +msgid "Returns ``True`` if a user can change their nickname in the guild." +msgstr "" + +#: ../../docstring 95d8e51d851943abb648ae889d064fe4 +#: discord.Permissions.manage_nicknames:1 of +msgid "Returns ``True`` if a user can change other user's nickname in the guild." +msgstr "" + +#: ../../docstring 19b7f1d6020a42598e0f34f2792209d2 +#: discord.Permissions.manage_roles:1 of +msgid "" +"Returns ``True`` if a user can create or edit roles less than their " +"role's position." +msgstr "" + +#: ../../docstring 4c3329b815e14dc9835c6139cc389177 +#: discord.Permissions.manage_roles:3 of +msgid "" +"This also corresponds to the \"Manage Permissions\" channel-specific " +"override." +msgstr "" + +#: ../../docstring 19fe0acb3fc5444c98b26a21a0d4ae7f +#: discord.Permissions.manage_permissions:1 of +msgid "An alias for :attr:`manage_roles`." +msgstr "" + +#: ../../docstring 44e7d276317c4e28979d34995fa90864 +#: discord.Permissions.manage_webhooks:1 of +msgid "Returns ``True`` if a user can create, edit, or delete webhooks." +msgstr "" + +#: ../../docstring c92b7007f5414278aec6dfca5c8d73c1 +#: discord.Permissions.manage_emojis:1 of +msgid "Returns ``True`` if a user can create, edit, or delete emojis." +msgstr "" + +#: ../../docstring 099d0ab04ca44e2c9ebc7ddab039de05 +#: discord.Permissions.manage_emojis_and_stickers:1 of +msgid "An alias for :attr:`manage_emojis`." +msgstr "" + +#: ../../docstring daaadff474a3483883ac2174fe2530b1 +#: discord.Permissions.use_slash_commands:1 of +msgid "Returns ``True`` if a user can use slash commands." +msgstr "" + +#: ../../docstring cda19158b4e54a53b88bbd3ff38de8c2 +#: discord.Permissions.use_application_commands:1 of +msgid "An alias for :attr:`use_slash_commands`." +msgstr "" + +#: ../../docstring b90362eb52764c09b4466f2299c7aa94 +#: discord.Permissions.request_to_speak:1 of +msgid "Returns ``True`` if a user can request to speak in a stage channel." +msgstr "" + +#: ../../docstring 45b6e9a800814521ad39ffc6f673c66b +#: discord.Permissions.manage_events:1 of +msgid "Returns ``True`` if a user can manage guild events." +msgstr "" + +#: ../../docstring a0ee39b0843b41f7a7fc4191722931fb +#: discord.Permissions.manage_threads:1 of +msgid "Returns ``True`` if a user can manage threads." +msgstr "" + +#: ../../docstring discord.Permissions.create_public_threads:1 +#: f77953f75e474f6aac2fb2805fce656e of +msgid "Returns ``True`` if a user can create public threads." +msgstr "" + +#: ../../docstring 91a19cfe107c44b392607aecac97fe2a +#: discord.Permissions.create_private_threads:1 of +msgid "Returns ``True`` if a user can create private threads." +msgstr "" + +#: ../../docstring 8b1a793caef94d5fb14d21b61fc6409b +#: discord.Permissions.external_stickers:1 of +msgid "Returns ``True`` if a user can use stickers from other guilds." +msgstr "" + +#: ../../docstring discord.Permissions.use_external_stickers:1 +#: e38fa1b69be84a3c92d9c97b23256e76 of +msgid "An alias for :attr:`external_stickers`." +msgstr "" + +#: ../../docstring 2a70a7674d36456a9e0a0c47fd6f07fd +#: discord.Permissions.send_messages_in_threads:1 of +msgid "Returns ``True`` if a user can send messages in threads." +msgstr "" + +#: ../../docstring 27967aab408f48ffbcf23e1585a3e71b +#: discord.Permissions.start_embedded_activities:1 of +msgid "" +"Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in a" +" voice channel." +msgstr "" + +#: ../../docstring 196a16e2d58c44088939738ff7874e0b +#: discord.Permissions.moderate_members:1 of +msgid "Returns ``True`` if a user can moderate members (timeout)." +msgstr "" + +#: ../../docstring 21e49f2607d948d1aac14cf0bde7222d +#: discord.Permissions.send_voice_messages:1 of +msgid "Returns ``True`` if a member can send voice messages." +msgstr "" + +#: ../../docstring 0d48ab90f0964e5385186ca15971059c +#: discord.Permissions.set_voice_channel_status:1 of +msgid "Returns ``True`` if a member can set voice channel status." +msgstr "" + +#: ../../docstring bbdd0cb2b0e8488dbfc566e1b0da5aea +#: discord.Permissions.send_polls:1 of +msgid "Returns ``True`` if a member can send polls." +msgstr "" + +#: ../../docstring discord.Permissions.use_external_apps:1 +#: ee9b457141c94c53bc60f022463f0486 of +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 discord.Permissions.use_external_apps:4 +#: f0dd8fd11b81466881e15f1055ae10a9 of +msgid "This only applies to apps that are also not installed to the guild." +msgstr "" + +#: 53d4e7fb59b34e38b6649fc978006797 discord.permissions.PermissionOverwrite:1 +#: of +msgid "A type that is used to represent a channel specific permission." +msgstr "" + +#: discord.permissions.PermissionOverwrite:3 fb3dee78b0cb4d83b9876aab5057b3d4 +#: of +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 "" + +#: 501c13440b884f20800485507a364281 discord.permissions.PermissionOverwrite:9 +#: of +msgid "" +"The values supported by this are the same as :class:`Permissions` with " +"the added possibility of it being set to ``None``." +msgstr "" + +#: 9381f19b61e549358025726a4d4c9428 discord.permissions.PermissionOverwrite:16 +#: of +msgid "Checks if two overwrites are equal." +msgstr "" + +#: discord.permissions.PermissionOverwrite:19 fc1e95f179164adbba323442145566e6 +#: of +msgid "Checks if two overwrites are not equal." +msgstr "" + +#: 435efe3f9dd64b5fae801a5ba872e113 discord.permissions.PermissionOverwrite:27 +#: of +msgid "Set the value of permissions by their name." +msgstr "" + +#: 6db28971ce9946a591fa59339d8ac998 +#: discord.permissions.PermissionOverwrite.pair:1 of +msgid "Returns the (allow, deny) pair from this overwrite." +msgstr "" + +#: c2ec090998c145729116ac6d6d9d9c9b +#: discord.permissions.PermissionOverwrite.pair:4 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`tuple\\`\\\\ " +"\\\\\\[\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\, " +"\\:py\\:class\\:\\`\\~discord.permissions.Permissions\\`\\]`" +msgstr "" + +#: 149b1b1980834c0195ef69cc3bfe4463 +#: discord.permissions.PermissionOverwrite.from_pair:1 of +msgid "Creates an overwrite from an allow/deny pair of :class:`Permissions`." +msgstr "" + +#: d1d8019940a44dcba4436b47f35715c1 +#: discord.permissions.PermissionOverwrite.from_pair:7 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\" +" \\\\\\(\\`\\`PO\\`\\`\\, bound\\= PermissionOverwrite\\)`" +msgstr "" + +#: 480a576b68994d99b4eecebe43cef95d +#: discord.permissions.PermissionOverwrite.is_empty:1 of +msgid "Checks if the permission overwrite is currently empty." +msgstr "" + +#: 64192039c64c4b38a7dd83098aac96a4 +#: discord.permissions.PermissionOverwrite.is_empty:3 of +msgid "" +"An empty permission overwrite is one that has no overwrites set to " +"``True`` or ``False``." +msgstr "" + +#: discord.permissions.PermissionOverwrite.is_empty:6 +#: e0401be4964b4f78b29ae4a4649c2668 of +msgid "Indicates if the overwrite is empty." +msgstr "" + +#: discord.permissions.PermissionOverwrite.update:1 +#: e574cdd4574f4865a7693c8125f56e49 of +msgid "Bulk updates this permission overwrite object." +msgstr "" + +#: ca60f1bcd3784c659f81563a3cb3a2d7 +#: discord.permissions.PermissionOverwrite.update:8 of +msgid "A list of key/value pairs to bulk update with." +msgstr "" + +#: ../../api/data_classes.rst:234 9b867a9572674a3a8c8653b44c9f9b72 +msgid "Application Role Connections" +msgstr "" + +#: 637dd77a8de847aca02cf33f276dd203 +#: discord.application_role_connection.ApplicationRoleConnectionMetadata:1 of +msgid "Represents role connection metadata for a Discord application." +msgstr "" + +#: b02b0ffd4f18485580abb2ca7f45e414 +#: discord.application_role_connection.ApplicationRoleConnectionMetadata:6 of +msgid "The type of metadata value." +msgstr "" + +#: d40010af32404db5ae80b357c268c9ab +#: discord.application_role_connection.ApplicationRoleConnectionMetadata:9 of +msgid "" +"The key for this metadata field. May only be the ``a-z``, ``0-9``, or " +"``_`` characters, with a maximum of 50 characters." +msgstr "" + +#: 0a5e30d5b723463f96cc62cf934ffa34 +#: discord.application_role_connection.ApplicationRoleConnectionMetadata:13 of +msgid "The name for this metadata field. Maximum 100 characters." +msgstr "" + +#: 86c86651daab4d2bb56e2515613e0b8a +#: discord.application_role_connection.ApplicationRoleConnectionMetadata:16 of +msgid "The description for this metadata field. Maximum 200 characters." +msgstr "" + +#: b3a47d7fb5be43a5a545e53344b4ee1b +#: discord.application_role_connection.ApplicationRoleConnectionMetadata:19 of +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 "" + +#: 246b61db68854beb9cb72d12dc9cfd40 4f3b424badea44d289a8fba4635a8270 +#: discord.application_role_connection.ApplicationRoleConnectionMetadata:23 of +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/locales/en/LC_MESSAGES/api/enums.po b/docs/locales/en/LC_MESSAGES/api/enums.po new file mode 100644 index 0000000000..51a00f2498 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/enums.po @@ -0,0 +1,2799 @@ +# 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 , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.16.0\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 050b5f3e2f0b4e75b8f233a76bd515dd +#: 0619742d7fa140278430c051be11dc1b 0776e36908074d45bfacf9e98b402a96 +#: 0857346d12f54c63ba891ac188e985b3 093c3ea325f44f168aac272a73defeec +#: 1e5784f497904a1b8ea5e31e43b2a0ad 22d68de8370648cf9093a7a877656bf4 +#: 252bbee44ed14a1f9ddb9a6c43cbda0d 3411856d93a14776a6aa2dbfe75fdef0 +#: 38aec5e643c249b19b3d7b91ef993e5e 4ad9e4ec222545458f27f958fe5bf43d +#: 5226c38d1fd44f3b816c29f729fa90c3 5baecd9f1e2143c88378ba7f0e3ffb96 +#: 61e23683148c4bf68627e0418b64f5f3 69139dd3ef9e48d3b1af81c1e81c39d4 +#: 6bfd123a5fca4eb0b0ac3ef7104dfac3 7499b8f78f014a8d8f9513dd6c5e69e3 +#: 752fd4d41eb541729116bdab7b643fc9 91b67ae606ac453c9bf64b0b2012bac5 +#: 95b8db2d9c284969b08a1156718090be 96717b9a46964b4692326fe8a96295a2 +#: 9a20bd8774814a64b14884977510d1e6 a1736cc07b154021a682d4e42420bf9a +#: a2803ec37cea445fbe05eee14f7e763a a6e309f478874004a40055c758f64d0e +#: a9cdc043a5fb4f8db268fa48136a2dfe ad53aecba09c4cff97fbe106a8aae4c3 +#: bc68c25f397a452f91ce7b919f52007c bd06e8336d7741e7adfae9936f1bf7fe +#: bfff5308473d4af998d5e90e81bd9d42 c506008e4ec74cef851b196b09e69815 +#: db4eb198caca4bd08cb1893c95ad57a7 de04652441c24b81be6d3d268922492e +#: ecd21b91f59c49bdabb7f8d74a287e1e f0e7616a583a47d4831939f3e25e8627 +#: f1a1175365964973a77e600680c1613b fffb0afd84694213a281950c9c2906db +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 0c293715eca54347b0f133a596ecfedf +#: 12c512f9e9f24101b8341757dbbeb0f4 1394b20d84104b49a743fdfeb699c225 +#: 1de697d2ea2c4cae9ccab9fb6fc6d38a 2f935e45567444cca02d6e556a3e0904 +#: 46d1f8301ff548f1af259ccd664c3f42 515eb479a052419d88d9d9bd1eb338a0 +#: 558f751460d247b2a058a50b81e48a08 580ac06e34cc423d8a0c7804bcfa7dff +#: 646a54b16dff41a2b03ed31ac183c0b2 70b4a80497dc4c718cba972b132e9059 +#: 895caa8a7a2b40a3be55d2ec1baf44b1 99cc876d108e4eab8371a7d45c0ea1b9 +#: ac7026819cf84b46ab62b7fc660eec2a ac7b378f7a1046ebab645d5f7d3ff34e +#: b44ca51adbc64e51b77c441b2878ad83 b5339c2060384a359e7c71febf3ca2ce +#: b5ae5559c92341f9946a0237c88316b8 bfe00e359c3f448eace931206c0b2ee9 +#: c31820d94e12407ba086b701f92569b0 c5d4dc545e724ea9989d999fa6992cce +#: d5910caed39b4422a0bf2361a6565612 d7fd5443343b4bc88ce6cd8918cdfeab +#: e51f5200cbe140f19c8c3b3e2d75a534 fe717eea581f494ebf36019cc19d9964 +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 +#: 0ae29b838f1448d8b8f928d6939b92cd 1eec71ede8394476b9a4dc4ebffa9df6 +#: 2ee6e5873b53484eb7bd37f41c17a4bb 3de7a19ea4524c6bb59edd609646a050 +#: 998ef1796ea64671a79e87a4227e271c 9ec89df3159c46e287c1d83f1fa8ba27 +#: a9329e3bd572430b8360afda3dd26ee0 b61a8e74c58248e4a0d8c0c18806f0d4 +#: ff75120af4cd405d9f119936bb32f72d +msgid ":attr:`~AuditLogDiff.type`" +msgstr "" + +#: ../../api/enums.rst:857 ../../api/enums.rst:877 ../../api/enums.rst:898 +#: 11cbe518c99642b49c959a2204a2c37a 648726ce83124608809879a7571168a2 +#: 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 +#: 5257b72e408a46d4a7b06498d32f7209 8f81efbdafac4745899e4ad861717ecd +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 +#: 51da4ef9f1994a6789fb2c54c371a367 67ee76e83c454d32899f6326a4949701 +#: 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 +#: 5a13c30cb38b4c0b9d3a2a369009cf4c 70e9189a4a7b4f49ac3a3308fb205f8a +#: b424ed66d8e84fb79fbfe5ed3ed2cb86 +msgid ":attr:`~AuditLogDiff.deny`" +msgstr "" + +#: ../../api/enums.rst:916 ../../api/enums.rst:932 ../../api/enums.rst:947 +#: 4c5c591191e04caca5c233d14a2705a7 c7199b2fdb5742238c2221d7b22c7954 +#: dc4242d8e2824db3a5e69e283a111660 +msgid ":attr:`~AuditLogDiff.allow`" +msgstr "" + +#: ../../api/enums.rst:917 ../../api/enums.rst:933 ../../api/enums.rst:948 +#: 1b799e07563746b4a908a2ec9213439b 35f09304dc1349a39b5f06c5dcee6b92 +#: 4655625eec82495495f1912345214c5b +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 +#: 548a7a8ca0314acf9735eac331d866e9 b74dea0f59eb486f98c229b259e001f9 +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 27a6a127989d4532a61debf08a3fa570 +#: 71e96ce05c754141bdccada47c638e79 8d80f3e4c17140e9ac2805db8431e4e8 +#: a414b2f116ac46ada7444b1b3e19804c +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 +#: 2dbf8d34537d45518170b5a4c8ffb3cc 7716d95527c348e5b78e86a177044241 +#: 812eb56e424040508ad06db116cc0f17 96a3ff2630e046b69b446776774304a9 +#: b77778578eb74355ae650d2fd52036ed +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 +#: 16cea7c03f6f467cb4885cc212ad03ed 42aa4a1fa28042b6880c172318537e00 +#: eedbba5c376e47df94bda7b4263dad48 +msgid ":attr:`~AuditLogDiff.mentionable`" +msgstr "" + +#: ../../api/enums.rst:1066 ../../api/enums.rst:1086 ../../api/enums.rst:1101 +#: a6bebfacdbd34302b9f9d66309f5cdac c3a50507a9ed44eaa961e0cd5cf90b8b +#: cae8f831afd84c8f8ec3f34a605bf3a5 +msgid ":attr:`~AuditLogDiff.hoist`" +msgstr "" + +#: ../../api/enums.rst:1068 ../../api/enums.rst:1088 ../../api/enums.rst:1103 +#: 6291a02bf06e4893b114eb374c0972ea 9eb0712d85af4316b0ce621843c8e83a +#: 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 +#: 80061f89311c4b1c840a03cb3d637b8a 98082e38b018425aad8bb7cba4329f6b +msgid ":attr:`~AuditLogDiff.code`" +msgstr "" + +#: ../../api/enums.rst:1116 ../../api/enums.rst:1140 +#: 491537ae15b2481b96f5f897cbc0f594 a06a13e2c7fd4ea58ff641ae8758f789 +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 +#: 28ea5cd1a0434d598a0aef1d8ed865b9 4237027b541d4783b363e232e7b14c04 +#: 723c64f924f24657939b655291a50d47 80cd12851d3d4ef3a24a79f9a22518ee +#: a5886d55b844447395a66697a447146e d0f57a601eda4711a767462d7dcd2f7e +#: f6760b3a7eeb420bae78324ec9219b80 fe4c5c753de54249aa866828f408a565 +msgid ":attr:`~AuditLogDiff.channel`" +msgstr "" + +#: ../../api/enums.rst:1119 ../../api/enums.rst:1143 +#: 58673fccfc5e44d693f2c5a9b836cfd6 f0cb2c7e0fd845bf97ab419451436a0d +msgid ":attr:`~AuditLogDiff.uses`" +msgstr "" + +#: ../../api/enums.rst:1120 ../../api/enums.rst:1144 +#: 9c22d47dc70d4bf6b8eb85c93024ecea ed096900498d4549bfcca4bfce2acfcf +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 59d99fea521c4d5f9ce1c97173c5a522 +#: ef972dbe7ec941a5907d624c86a390d6 +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 +#: 0bdfb34cd2b849d0a7293c9a911f4adf 4cd9b18b6fd844f084981705eb37900e +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 +#: 44e35106f7094f5fb9455ee772ec0ab6 625caa87aa24485fb1397616cf577a7a +#: d65c3aecb6c0489696f90eadd54ecddf f8fdb84c50e44daeb4c36d389b641c96 +#: fad91e851d004a6b90a25284db67decf +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 +#: 3d62e77b4351433b96277edb798f3ce3 83e568d602594a06a3755e2645cea0e5 +#: a544a30d24fe44ce9cbd11c4d6bf9f7c +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 +#: 2c0f60d87b514b59b8c45d1eb06bf0dd 583a543779cf4d9c86a08d861082267b +#: 7d2c2dae92fa4be7bcd52331157da5bb +msgid ":attr:`~AuditLogDiff.emoji`" +msgstr "" + +#: ../../api/enums.rst:1355 ../../api/enums.rst:1374 ../../api/enums.rst:1393 +#: 123dd92166354b2782efe70594d4c669 591225f4c32c4c6cb4296ef99a4a5aea +#: 98d494cb41e24671a60a79da9eafe995 +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 +#: 0e3cd3da365646e3a19d92b79ab09390 1c84003999434ea1b83339033d6f1b08 +#: 799a4b9a391c4475baa04647431d2cf1 7d0a742e6503449abe9e681184246edf +#: be345a6986ef4009a3e94c8dcab51547 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 +#: 3a98586e07cd4bd4b61d000b98c58dec 5a0b011e635a4d84895b73b59e7641c9 +#: af920a7bbbc94e369a1d93f7a1cc290a +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 +#: b6a63604628744a3bc3aa26a49390e7f c47fb618a6a947ec9ff4a6875bf364ae +#: e59ba5034b72405cba2bd082ef739063 +msgid ":attr:`~discord.ScheduledEvent.status`" +msgstr "" + +#: ../../api/enums.rst:1415 ../../api/enums.rst:1436 ../../api/enums.rst:1457 +#: 0c99d4fce1d04a07812e647b68078da6 9d33cef93ba04aaeaa2ad8cae3d8dc49 +#: b89408ceb4084309b42b7239e9feb62b +msgid ":attr:`~discord.ScheduledEventLocation.type`" +msgstr "" + +#: ../../api/enums.rst:1416 ../../api/enums.rst:1437 ../../api/enums.rst:1458 +#: 0e093f4fc20c4d4c93052a0e73f2c90c 28f6a91e32b84ed0a6993a51d9b36113 +#: 6a7f6324a52842f78660d3d570b3474f +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 5e10df6626994f96aa8ca205bb584fdf +#: 912ddcb3355a458d90aeab0137082161 +msgid ":attr:`~AuditLogDiff.archived`" +msgstr "" + +#: ../../api/enums.rst:1474 ../../api/enums.rst:1492 ../../api/enums.rst:1510 +#: 85bc413b27d047e89aec8a40c120b255 c83aa80e1c8642d6bfa6257faf79c176 +#: e862a1e81d244239be82de48fc3618c1 +msgid ":attr:`~AuditLogDiff.locked`" +msgstr "" + +#: ../../api/enums.rst:1475 ../../api/enums.rst:1493 ../../api/enums.rst:1511 +#: 0d034477efc24673bc7165634eec50bc 6ee5745a5889407f923396b63d2c0be9 +#: 81ec3efdb28a4f1da2a70783422b8b6e +msgid ":attr:`~AuditLogDiff.auto_archive_duration`" +msgstr "" + +#: ../../api/enums.rst:1476 ../../api/enums.rst:1494 ../../api/enums.rst:1512 +#: 4f086715273847ed83469dd67b4c9823 adce5da724a64308a735139135250eb8 +#: 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 +#: 1a6da37f97714504b63b3cc67cd287dd 31b47099c3d143e38933e93b4bed7600 +#: c0e72ba6aeee400ba6b6be2c8179c441 +msgid ":attr:`~AuditLogDiff.enabled`" +msgstr "" + +#: ../../api/enums.rst:1538 ../../api/enums.rst:1555 ../../api/enums.rst:1571 +#: 96f0dbd43fab42cd8da1b295291534a8 a29d09b8d1a54079b17bf108895a1d2c +#: e55b2c534b8a48b28c7486027a472d80 +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 +#: 8a6a24983308476d8bb356863b85873f a3b6f535700543959d3bb54fb078e015 +#: c38f20feb116471888fe077289ce8040 +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 +#: 21d7aa25fa2449bdbc086189b5743a39 d09aa244691540dbaeff35ae7f802cd6 +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 +#: 73946b20ffa0408d809d244e405077f2 9e02b19e51fd49449aacc3c074f5918a +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 +#: 26a17bd0648f42319205d7e93d492172 46a7b3bd09264237b2c107acc73ecd72 +#: 5d37fd74de88463abc545e8a9bc6c324 6f540ae1a6bc40778c30e5b6ed6c1ebd +#: 7e84904cbf23461b85b39425620e25ed 88f0d371b1894498954ed6863c819b42 +#: 9db4622ff7d24f809e4ebf3a64cd2d2d a79b808e86594cdb8093ee9de1e8d5ec +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 +#: e648d4c07e7849498fa1e37f3dc9d7a4 f18a268f3f3847c59e0ef614ee5a88ca +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 "" + +#~ msgid "" +#~ "Represents a component based interaction, " +#~ "i.e. using the Discord Bot UI Kit." +#~ msgstr "" + +#~ msgid "Represents a modal based interaction." +#~ msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/events.po b/docs/locales/en/LC_MESSAGES/api/events.po new file mode 100644 index 0000000000..a6dca11baf --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/events.po @@ -0,0 +1,1732 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 0450b87209e04abf999c6d16346f74ad +#: 0d00d17e652745278bde98e5a9baac57 0d3719138c324b9b86dfd4e1f7c983c2 +#: 1031328b8ab2414c85e5725dc3c4efbf 13bb21ffd48c4d37b43cae9d0af4273a +#: 13c8a10e7a204b58956db583cfa99493 1678169629ec4355a18db9887c5dbc22 +#: 176ab3d1374941268495018745427ade 17839a738d044231b7bb90c4f01bdc9b +#: 18ff51c5a3704f5a9fa461a57b8e9b66 1938a7564e7f49a4a0c3d07f69097a01 +#: 2047ad9931154d87a4d5f8a7090fd208 281495434b004210ae4aaff83990d327 +#: 349abfcdf56240438f5690772fe0a18d 37ee4bf65332432b844f4c82c96e130f +#: 40ac5755dc1642c89e6bc723e5950d7a 450ea7dd8b0742b6a95034bc736a0b26 +#: 47834821ad7340b2a0c1b302cf59221a 4866914077374dcabb7961c78d04b703 +#: 4aa9dc788bbb4783842e434f794ea2be 4ab35ccbcc7a421bba4f7493d8ae96c4 +#: 4f354ed77ba74f58a8bfe8f9e4523bc8 5015785657bd461bb6bf2bc0a2125668 +#: 559e63e7918344a8afdb26e8d8af2bae 5f9dfeae511c4e658ed3c94bd40b4560 +#: 60839dcce1c248789ade9b533e7911db 60b3d7ac967d4fbaa7ab300016181e83 +#: 620a42e608284789b3c467b464c96dad 677c6a863bc24ae1a5ad297c49517cd8 +#: 67c06d15edc74df8ac0d765f1893023e 681f4a0621c84af5b603e302957fca24 +#: 69f16d3ebdce40d299735d1b99859fc4 69f826f1232a4d53a56d0d5f09d6091a +#: 6b62d4d670624d2590578fa265eae9af 6d7428028f5f4c47a87e228b3382926a +#: 6d8d97277dc24519b84ce4eddbcf5e6c 6dab0c0a2e24494ab8395fce18a6640a +#: 70306a7be41d4b578c334a0619ba1f3c 72ce7e3d4c314950a9bc3410fd54a91a +#: 73dad0dff0974575a4f932f888e57e50 743a2e37a02c4c5fb8f7dd22c8217882 +#: 78208569a83144aa920b951012b5ce70 78efea9536c547dea9bcf4f0fb904c57 +#: 80f30be1218d4627ac862062d98f65b9 81c162aa46b14ab0a333ed9962606f0a +#: 8432d53ccc6b4c218b0be97b5c783d06 847adddbea6a47e4b9b7e13a7f352ad5 +#: 8ae7a130296f41c286012b115ac400f6 8f134176570e4223ac70dfaf54649fd3 +#: 8f50058a92a84b47a4211733aacacd7e 900882c0284c4bc4a079c467bf577de2 +#: 962d87d49ce14c0ea1cceabda7c9cc2d 96b417dff47e45afba7e2b6cd8b168f6 +#: 99b1f8fedb1a4fab9e06d830c354345b 99b97506806e4f40b1382cef723cca78 +#: 9a16c00d4a624d2aa7e42be17f5e9e41 9ac90eb414af4d83b9c363cc85e04e26 +#: 9d17e39474da4efb97dc8dba285d4e27 a2a4098c99f44db3990a9980266e23aa +#: a3d69eddf6564725bc67771befc4aeca a3d7e20844c140bfae16d8b945ec35b3 +#: a62f5e8fc8174aa7881c7c7803d52529 a6c90e28198047819bbc09741d0e820b +#: a88f1812c49f42f1ac7a744c1c840822 a9ebc9dfbb2342c09e6f908ff8b05b61 +#: ab5d8aefc1db4a4c817b5368caa5543e b04fccd185f843d1aca16ec4a414e75c +#: b71cd393e4bb46869fc9b5aa74556aea be24ecbc72b54a3390c05a17b44d15b6 +#: c41c21d6e6304513afc6ce518472f17b c914a36558cb4bc98abd8de320e5cfc0 +#: ca0cd7fa385341149261f81c4cb9db61 cf1af74adcc940c6b88151caa220ceb0 +#: d057103729ff4f3b8dbe93fe0bc1262e d4d90a7f98cf4fa785b0c5df1c055240 +#: d5cd6b0856484ad1a5f1be0f36dbca84 d71e0e6a13fe4d9990262d983c4aea4b +#: d907a1e1ec6441fda3a2d770dd044ffb d945cfa6fb84406aada47da35d94e1b0 +#: da5228275de345319b40abae16fbe8b7 ddbc0fd0c67b4c47b95f888da332497a +#: de18df4128cb43da8ea61b66283e75f2 e3455443ac954b88b181ebe074279d1a +#: e6e388c1d5e74cfcb8a83eb43c1ea8c0 e9aab89b208b4e639310868813af5a3a +#: eb2b8d62e3094050ababe6c81875b9a3 ee9815d10d0f4b26aa8a87feed666d51 +#: f19251d202354981b849ab1942b91951 f4f36adbe07941dbb50a3375686a7f96 +#: fb18645345c14733936ee43bac2428ab fca243bce7384dd5a65201e550249536 +#: fe865df5dd99489498c73d866ac670dc +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 +#: 023402936a654371aab9f215b6e0c90c 0635e0f24c0e47b894c9c7fec506157a +#: 08eb4bec2f2a4837932a221dbd3220c0 198f9bbae5974dffbe423f6dd1819686 +#: 2c7f1cc4edff4bc29e8b8268e06aa93e 61459f05ae5d4e50b742f4e8ea6afe1f +#: 6214e4ff9d514cadbf5a0815af3cccaa 6b8bd14634da4b118afbfe9e49e3beb1 +#: 6bea76946d334a7996bd35f353135667 776fe87242094fc881ad350436325a2a +#: 7c6afb134ff248edbef99cd378aeac64 83f294fe23f6474ba62680e79b9ecfee +#: 940bd659eeb745b2b753faf7238ee8fe 97da3d1b88d84c68a282dfdb9f98fbb3 +#: ac6d84c776ef4acaa1b57da19160c5d3 b5f3a3acf81442c49df4b0db70f59a29 +#: cebb871f992f4011aea78bd0c12995fb +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 b5819b508c5c4fed9e2d6b1b346ce769 +#: dea2d065cdf543c3a75fd4a57c6cc529 +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 +#: 2a2b5a4c85414b78ac6466d1323440c4 a3237655fba343fab0543ea041c27da3 +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 +#: 024d5d91d73a44de83c021d43b5b54e9 1082924a78134519a59315c26ab91333 +#: 9021e87cdea64927a2681528197df4d5 95ccb54b20fd47e58417710ed5f5eb52 +#: af5b8c5a72884a83ac69344f157698af cb3213b1115949de9bb856d6d491d2ac +#: d97041759bf74fb7a97daf70cfe8bf3f e55034f9969343d990011bfeb8b17ce5 +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 +#: 0873cc1fdc914f0fad25fd05b59de54d 213bd7864c0e48eea8da67e27a46dabc +#: 2e278f832d434ef9a4960f7d01cde05e 3ad5cbd41ddb4c8e847d8f8ac5f8c3e6 +#: 4330cee10810420eae954b7acf917069 45b3e36bf4724062b1bddf760945f9e1 +#: 5d355f08e7f145bc97271086b10d0260 701881eeed2b49a0bf24be49460e89d7 +#: 77ddc91aee8f43b7b3639a94cef10e17 8b159796a6f349e8aeaf7c5bf5752f37 +#: a4a7d77e88f44357be30d5714d93dd1b e12869e76b1849dfb9a5de16e606e9d9 +#: ec0f92796f594f4297ae5903eb0667b8 f28de120c204470e8efc2483a3ec3ec3 +#: f9ffac6969464760865bea86217e862e +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 737a9cd4e70a4373a753fbdf4dff4b3b +#: a5ca1990b43345bebb2c1cb83f07bb00 b5b38af536e54fbe8712c1ed8deb7547 +#: c2e1693b47554cf7945399623ff784b2 +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 +#: 060f67ac9b304260a34915be922f68c1 7f9c50d99dd24e9fac1bc3fee804ca53 +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 0608221e23ac498eb93feba2e0df9730 +#: 245dfa13ed9940cb9f9e97069c816268 571a0224eed04afca25ceb6fe779b727 +#: 8c500bf67b4947efbccd591b47e807d3 ac04b1a2a0c4454d82d101ecb00a6bc0 +#: b77f2bddd083470aabb9f69a1aa4df63 c267ed1dfc214c44b6f071d6284d0d90 +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 +#: 94033025616b4076bd1cd69dbccbce65 9c0d0062f4524f09afc01922b6880478 +#: df7654b2971a4c8cb816e6a4cb412282 +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 +#: 3c202860a49f49fe90fce486a871deb3 725047654176421eb19576468343096f +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 91c503e67e4742a392a6f3e5e71708ec +#: b162b13f9b5b4acd8b928cdf76d398af cf97ca5ad27a4e5fbbe4f583cc89dc60 +#: e8a3023c3c93418e9c82cb67372f1bf7 +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 +#: 05cf2a3105064224935b6fc52c104a8b 3ae12ea3aa9e49c29f89238dd55ad89d +#: 71824a77e84c432daeeb45c809a4cf3d 8b747aaeeaa54dbaa2bb43a1cacfb4a4 +#: d254e7018b894d5da0d9ab3310487581 dcf7eda8ed0e407aaabc8a42264dd252 +#: e903959ba860442bacb9dbb7455787a1 +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 +#: 09d780eee4834c02bccf9c957d6a8cf6 367f92343bc64207970e6a72c687716d +msgid "The current state of the reaction." +msgstr "" + +#: ../../api/events.rst:989 ../../api/events.rst:1021 +#: 6e25ca528d3649428e675864d9383bf7 b19a600ee7604f58ae7c7dae8826a694 +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 2fd67e22f8f24a24a4f09f34a9e9d221 +#: 397fd90fe30649a59c540215efdd33f2 5d2d9f01bc57458b94256b5aaae996bc +#: 9262461979874e4ba80b732bd9128414 d1665efce5a24edea7b9f156c11971dc +#: e0576265fd4140f3a91040bbb9245078 f1a230d4368d427a8aa0254e2144a131 +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 +#: 2a9ac789aa754c35880a62d90d5b91cf 423b8f3188c34015b3769ffa0fcab9ca +#: 61dce03189704726b094d79abe9d639f aa7a8ccefad941ce85f2f7bcfb056245 +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 +#: 4c2cab82fe0d4d7d9bb9226ebd0f9ba1 f4c7ce967027460c941934be2c781d19 +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/locales/en/LC_MESSAGES/api/exceptions.po b/docs/locales/en/LC_MESSAGES/api/exceptions.po new file mode 100644 index 0000000000..0b8344bc7f --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/exceptions.po @@ -0,0 +1,534 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\n" + +#: ../../api/exceptions.rst:4 905c88850259467092e1b8e338f90565 +msgid "Exceptions" +msgstr "" + +#: ../../api/exceptions.rst:7 53e7e8d0686b48dcb95509c92b7a7b84 +msgid "Exception Hierarchy" +msgstr "" + +#: ../../api/exceptions.rst:11 47b569e25f35402db0c5bb4132894053 +#: 889371d042124d10a698ad8826c671c4 c335ab33962a47c78ca52d33e998481f +#: discord.errors.ApplicationCommandInvokeError:10 +#: discord.errors.ExtensionFailed:16 of +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 "" + +#: 7a440737679a426fa7a7c89f2a31db07 discord.errors.DiscordException:1 of +msgid "Base exception class for pycord" +msgstr "" + +#: c63dd0e386964ccfb2ed6fd3a6be053d discord.errors.DiscordException:3 of +msgid "" +"Ideally speaking, this could be caught to handle any exceptions raised " +"from this library." +msgstr "" + +#: 022cc7b12b61404d95709c9876f0e517 discord.errors.ClientException:1 of +msgid "Exception that's raised when an operation in the :class:`Client` fails." +msgstr "" + +#: 72e32d92abb148ce85ccfff0a1d1ada7 discord.errors.ClientException:3 of +msgid "These are usually for exceptions that happened due to user input." +msgstr "" + +#: 35b288843d43407289c000fe32985e83 discord.errors.LoginFailure:1 of +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.NoMoreItems:1 e8c7fa94b9074f5685b8ff305095e230 of +msgid "" +"Exception that is raised when an async iteration operation has no more " +"items." +msgstr "" + +#: 79d0ec5004a64282934d619362c00adc discord.errors.HTTPException:1 of +msgid "Exception that's raised when an HTTP request operation fails." +msgstr "" + +#: 5cea3ad7edfc46f98cc3d3639fe2c58a discord.errors.HTTPException:5 of +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 "" + +#: 00aed8628a2c4432af93e9fc483154aa 10825f2b28304b7aa76626de12eabd04 +#: 36fe0b953f674793b8dd415161dc94f7 5d3bb39d794c4babb6473ae2943d4ae3 +#: 6b22000658564039b294a02bf2e6978a 7ec2e0f0129b42fda6b30c5c761c88c3 +#: 8549f4429cce4661a795fb271ca15397 9474bf04f702459f93552f7909337706 +#: 9e1201a1fc2546dc917e8cc272c39dbb ad6ceaf381c244c196eaa9e2c5c54f62 +#: b222bcaab3384a428d9f3869d7c49166 d516381deef64c62a01e612de0485c15 +#: de1455fa8690404684e1dea43f6ffeb4 +#: discord.errors.ApplicationCommandInvokeError discord.errors.ConnectionClosed +#: discord.errors.ExtensionError discord.errors.ExtensionFailed +#: discord.errors.ExtensionNotFound discord.errors.HTTPException +#: discord.errors.InteractionResponded discord.errors.PrivilegedIntentsRequired +#: discord.opus.OpusError eaaa700780244b3ab76d45ff50c8fa38 +#: fcbe8c71151e4e77b1c0bbb59f3df1c4 of +msgid "type" +msgstr "" + +#: b9be9bcf60594106b05151c479fcbb62 discord.errors.HTTPException:9 of +msgid ":class:`aiohttp.ClientResponse`" +msgstr "" + +#: 4cd8b7f4c80243608b629e05a0b82093 discord.errors.HTTPException:13 of +msgid "The text of the error. Could be an empty string." +msgstr "" + +#: 130c6752e7eb41e7943175215cfc448d 467be59d59894b21a4b6c9c2f2aa5ef9 +#: 4a69a70e867e4a23a84ef67491a86a84 765da4906ff94393ad18c1d66850c3b8 +#: 8f37cdfd7fb2410895855b1ab1cb10ac discord.errors.ConnectionClosed:14 +#: discord.errors.ExtensionError:9 discord.errors.ExtensionFailed:9 +#: discord.errors.ExtensionNotFound:12 discord.errors.HTTPException:15 of +msgid ":class:`str`" +msgstr "" + +#: b77d580f0e7840b5971d4135181ac6f4 discord.errors.HTTPException:19 of +msgid "The status code of the HTTP request." +msgstr "" + +#: 12f947d587da438ea01b9101da0a9497 3c18707e0ee841358f3dd424085d1b30 +#: 46b36037252e4cb0be7044ee26eec116 862454a4c48f4cebb4f3836d9f02381d +#: discord.errors.ConnectionClosed:8 discord.errors.HTTPException:21 +#: discord.errors.HTTPException:27 discord.opus.OpusError:7 of +msgid ":class:`int`" +msgstr "" + +#: 2ed3cec390ee4551b59099fdde2a8dcd discord.errors.HTTPException:25 of +msgid "The Discord specific error code for the failure." +msgstr "" + +#: ../../api/exceptions.rst 01ee9ba2deb744d7b92451a931529aa1 +#: 07ff437c106b4199ab1b15405361a8de 2492bdfb6bbc4d13ae0d8ea01b564017 +#: 36f2eab9bb524eecb4ce1aba97bc42c7 40eab0def975438badd887750af77f0b +#: 477f7375a778484c8d34a844717b3aad 4a1d7c3c1e934702ab6f71ca0c36450f +#: 4b046040948c49c289a15ac2a5537311 52102f458d044481b865bebfa84bf489 +#: 61beddc1a3fd4da4ac0427c7f0747e06 6de9bb08e23a417ca3708e32c93af240 +#: 771beee3311e448086db629aee6c4070 80abf15e5074477e8f43380ebd8e2eb5 +#: c9c817fae24b4e3da05a33a666ae0be5 ed0e9e2b68c04c76b794fc6e8e472c81 +msgid "Parameters" +msgstr "" + +#: 67a7c71de0a1470dbabcc5de48d5aee9 discord.errors.Forbidden:1 of +msgid "Exception that's raised for when status code 403 occurs." +msgstr "" + +#: 09342b5d6dc549dfbc16c2ce0935932c d149e85486744382a40735339e24667b +#: discord.errors.Forbidden:3 discord.errors.NotFound:3 of +msgid "Subclass of :exc:`HTTPException`" +msgstr "" + +#: 25d70cb14b8640ef94180870b2575e45 discord.errors.NotFound:1 of +msgid "Exception that's raised for when status code 404 occurs." +msgstr "" + +#: 51a32935531241329221c1e89e97ff41 discord.errors.DiscordServerError:1 of +msgid "Exception that's raised for when a 500 range status code occurs." +msgstr "" + +#: 4b503b2ec1944eca98de74a200c2c179 discord.errors.DiscordServerError:3 of +msgid "Subclass of :exc:`HTTPException`." +msgstr "" + +#: 6b581300399849dd9c96910c90a8d543 discord.errors.InvalidData:1 of +msgid "" +"Exception that's raised when the library encounters unknown or invalid " +"data from Discord." +msgstr "" + +#: aaa3f0a0a8be409594bf857e3ca59802 discord.errors.InvalidArgument:1 of +msgid "" +"Exception that's raised when an argument to a function is invalid some " +"way (e.g. wrong value or wrong type)." +msgstr "" + +#: a4a8722ecbdb4fbba7477c447b82440e discord.errors.InvalidArgument:4 of +msgid "" +"This could be considered the parallel of ``ValueError`` and ``TypeError``" +" except inherited from :exc:`ClientException` and thus " +":exc:`DiscordException`." +msgstr "" + +#: 22be332c77ad43c29747f0c830b50dec discord.errors.GatewayNotFound:1 of +msgid "" +"An exception that is raised when the gateway for Discord could not be " +"found" +msgstr "" + +#: 20116a3ed16a4f098c4b3b69a5e341ca discord.errors.ConnectionClosed:1 of +msgid "" +"Exception that's raised when the gateway connection is closed for reasons" +" that could not be handled internally." +msgstr "" + +#: d509ada602b848bdbd50c21cf0233978 discord.errors.ConnectionClosed:6 of +msgid "The close code of the websocket." +msgstr "" + +#: 7f37197e4ee74530bb88cb21b6a73f0a discord.errors.ConnectionClosed:12 of +msgid "The reason provided for the closure." +msgstr "" + +#: 171c5579acb2413c935a3d3e8f1d1b45 3d446df749944ec4ab403b1ae13406af +#: discord.errors.ConnectionClosed:18 +#: discord.errors.PrivilegedIntentsRequired:13 of +msgid "The shard ID that got closed if applicable." +msgstr "" + +#: 0c5edc13c29a4fcba0c5644e1ebe0e19 a5aede21eb0f4acc8948671949905250 +#: discord.errors.ConnectionClosed:20 +#: discord.errors.PrivilegedIntentsRequired:15 of +msgid "Optional[:class:`int`]" +msgstr "" + +#: c35e141e7013495ea8c6f6f71dd78203 discord.errors.PrivilegedIntentsRequired:1 +#: of +msgid "" +"Exception that's raised when the gateway is requesting privileged " +"intents, but they're not ticked in the developer page yet." +msgstr "" + +#: 9196e61bb84944db8fff5530c4d0d413 discord.errors.PrivilegedIntentsRequired:4 +#: of +msgid "" +"Go to https://discord.com/developers/applications/ and enable the intents" +" that are required. Currently, these are as follows:" +msgstr "" + +#: 030b7d6b61454efebb407201550cd7a9 discord.errors.PrivilegedIntentsRequired:7 +#: of +msgid ":attr:`Intents.members`" +msgstr "" + +#: b7642c9a817a49da89462e50b15e975b discord.errors.PrivilegedIntentsRequired:8 +#: of +msgid ":attr:`Intents.presences`" +msgstr "" + +#: 470bcd80cfd7496d98de1a3f2be5c22a discord.errors.PrivilegedIntentsRequired:9 +#: of +msgid ":attr:`Intents.message_content`" +msgstr "" + +#: 3573b8e0f8ab401e8b9b71a868031367 discord.errors.InteractionResponded:1 of +msgid "" +"Exception that's raised when sending another interaction response using " +":class:`InteractionResponse` when one has already been done before." +msgstr "" + +#: 34a4cd18050c48ed8392c9700be6d396 discord.errors.InteractionResponded:4 of +msgid "An interaction can only respond once." +msgstr "" + +#: 9943182c689e42acbd083cbe6818da5d discord.errors.InteractionResponded:10 of +msgid "The interaction that's already been responded to." +msgstr "" + +#: 5e386ba748274173b7734455c842a270 discord.errors.InteractionResponded:12 of +msgid ":class:`Interaction`" +msgstr "" + +#: 1c1ea797ac5a40129e42d95b86fd38d4 discord.opus.OpusError:1 of +msgid "An exception that is thrown for libopus related errors." +msgstr "" + +#: c7c96aac320a4bda9ce5bc7fcfada69f discord.opus.OpusError:5 of +msgid "The error code returned." +msgstr "" + +#: b7f591cca75a46a0b206b4c9859d3aa5 discord.opus.OpusNotLoaded:1 of +msgid "An exception that is thrown for when libopus is not loaded." +msgstr "" + +#: 7cabf009ba0e4a83b39b4876c02bb864 discord.errors.ApplicationCommandError:1 of +msgid "The base exception type for all application command related errors." +msgstr "" + +#: 80e6f2d8a4d940c292d9d094f3b67480 discord.errors.ApplicationCommandError:3 of +msgid "This inherits from :exc:`DiscordException`." +msgstr "" + +#: 799361c7da824355a6b0744337a69ed3 discord.errors.ApplicationCommandError:5 of +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 "" + +#: c81f4d594afa42ce8860c68647fc343c discord.errors.CheckFailure:1 of +msgid "" +"Exception raised when the predicates in :attr:`.Command.checks` have " +"failed." +msgstr "" + +#: 6fb9bf3276c74e69b2a38256c28e1ec0 d5608f50352b46ada015d057ebd2d8a3 +#: discord.errors.ApplicationCommandInvokeError:3 discord.errors.CheckFailure:3 +#: of +msgid "This inherits from :exc:`ApplicationCommandError`" +msgstr "" + +#: 014df6d7579143978bdc8d92695bc502 +#: discord.errors.ApplicationCommandInvokeError:1 of +msgid "Exception raised when the command being invoked raised an exception." +msgstr "" + +#: 9b23087d6dab4078a722e14af474ff0a de46c67c0d34451d8cf4676f58567c93 +#: discord.errors.ApplicationCommandInvokeError:7 +#: discord.errors.ExtensionFailed:13 of +msgid "" +"The original exception that was raised. You can also get this via the " +"``__cause__`` attribute." +msgstr "" + +#: c595f594796040aea80635be71c18f09 discord.errors.ExtensionError:1 of +msgid "Base exception for extension related errors." +msgstr "" + +#: 4ac31a298cd0422daf77b257ce912716 discord.errors.ExtensionError:3 of +msgid "This inherits from :exc:`~discord.DiscordException`." +msgstr "" + +#: 25c5c3c8fb2d458cbda274f919af01a4 discord.errors.ExtensionError:7 of +msgid "The extension that had an error." +msgstr "" + +#: b5b0ffc88ecb415ebe57a386b79458bc discord.errors.ExtensionAlreadyLoaded:1 of +msgid "An exception raised when an extension has already been loaded." +msgstr "" + +#: 28e512cb2cf24be19c6e32bc23841bbb 39c6885c65794beb9120470780ac767e +#: 6c5a2c9815dd49d2b3c1d2a23baa67d8 a59b7a8232614578bc2f7a2c3c532ffc +#: discord.errors.ExtensionAlreadyLoaded:3 discord.errors.ExtensionFailed:3 +#: discord.errors.ExtensionNotFound:3 discord.errors.ExtensionNotLoaded:3 +#: discord.errors.NoEntryPointError:3 e2125d928b54437bac568f64e733bfe7 of +msgid "This inherits from :exc:`ExtensionError`" +msgstr "" + +#: 53e72a006f6241409b12457ba8b8e427 discord.errors.ExtensionNotLoaded:1 of +msgid "An exception raised when an extension was not loaded." +msgstr "" + +#: 67c40091d97d405098f489ef8ec672d8 discord.errors.NoEntryPointError:1 of +msgid "" +"An exception raised when an extension does not have a ``setup`` entry " +"point function." +msgstr "" + +#: 8168ccb6e48c40acacdcd3767115a1e7 discord.errors.ExtensionFailed:1 of +msgid "" +"An exception raised when an extension failed to load during execution of " +"the module or ``setup`` entry point." +msgstr "" + +#: 2e49b1133d3c4757ba35ed0415f07b34 8c44c489681d42b6a508ccb656164b0d +#: discord.errors.ExtensionFailed:7 discord.errors.ExtensionNotFound:10 of +msgid "The extension that had the error." +msgstr "" + +#: discord.errors.ExtensionNotFound:1 ef648aab45b0455690d58d28dfbe3e38 of +msgid "An exception raised when an extension is not found." +msgstr "" + +#: 7d6e25e7e1c54cbfbeb620fbdcfeaa37 discord.errors.ExtensionNotFound:5 of +msgid "Made the ``original`` attribute always None." +msgstr "" + +#: 21739c1cf0ac475b89bb1107726f3f79 discord.sinks.errors.SinkException:1 of +msgid "Raised when a Sink error occurs." +msgstr "" + +#: 7e64bdea145d4bb7875e1bcef1a3a483 discord.sinks.errors.RecordingException:1 +#: of +msgid "" +"Exception that's thrown when there is an error while trying to record " +"audio from a voice channel." +msgstr "" + +#: 6e4acf4cb73947dca4f423639b8cab3f discord.sinks.errors.WaveSinkError:1 of +msgid "Exception thrown when an exception occurs with :class:`WaveSink`" +msgstr "" + +#: 6ae6e3ecf68c4d69ab5c019cba190af4 discord.sinks.errors.MP3SinkError:1 of +msgid "Exception thrown when an exception occurs with :class:`MP3Sink`" +msgstr "" + +#: 672f48e9a57f4a60b9061b0e91e2abf4 discord.sinks.errors.MP4SinkError:1 of +msgid "Exception thrown when an exception occurs with :class:`MP4Sink`" +msgstr "" + +#: 2389561c34a8497c91f4375f02708fb1 discord.sinks.errors.M4ASinkError:1 of +msgid "Exception thrown when an exception occurs with :class:`M4ASink`" +msgstr "" + +#: b90dda587cf54324aee88041db439ac9 discord.sinks.errors.MKVSinkError:1 of +msgid "Exception thrown when an exception occurs with :class:`MKVSink`" +msgstr "" + +#: 218e43ce373a429e98b880bcd9e4f748 discord.sinks.errors.MKASinkError:1 of +msgid "Exception thrown when an exception occurs with :class:`MKASink`" +msgstr "" + +#: 9cdf58aa453f4e2f896a496c0a20bd25 discord.sinks.errors.OGGSinkError:1 of +msgid "Exception thrown when an exception occurs with :class:`OGGSink`" +msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/index.po b/docs/locales/en/LC_MESSAGES/api/index.po new file mode 100644 index 0000000000..ee3c14f424 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/index.po @@ -0,0 +1,41 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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/locales/en/LC_MESSAGES/api/models.po b/docs/locales/en/LC_MESSAGES/api/models.po new file mode 100644 index 0000000000..637db3e342 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/models.po @@ -0,0 +1,14578 @@ +# 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 , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.16.0\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 "" + +#: 4b6e88f1ca724d2c8d7ffbd0482931ad discord.asset.Asset:1 of +msgid "Represents a CDN asset on Discord." +msgstr "" + +#: 936e301eb51d45cbac03ca0b73a3b6fc discord.asset.Asset:7 of +msgid "Returns the URL of the CDN asset." +msgstr "" + +#: 76958866276249ce9521bc01dee3f1e2 discord.asset.Asset:11 of +msgid "Returns the length of the CDN asset's URL." +msgstr "" + +#: 8117bae6fc854836a148475fae0c6b4d discord.asset.Asset:15 of +msgid "Checks if the asset is equal to another asset." +msgstr "" + +#: a1a120421df24e4391f78742e4725277 discord.asset.Asset:19 of +msgid "Checks if the asset is not equal to another asset." +msgstr "" + +#: 08223d7368fe4ec1ae8fb6b483cef2ac discord.asset.Asset:23 of +msgid "Returns the hash of the asset." +msgstr "" + +#: ../../api/models.rst 021c63b182bb4e81a6b50633e6be8d94 +#: 0c17b7715600433fac4d35bf0017e7b7 1000e6e5e6224041a432ab22340c6a22 +#: 12d301f98b5e48a3873512211a277fb8 185fb682d8514ac8aac5a55b2bb0b3dc +#: 18a8b12540854ba4bd1ccf6a3faf2044 1d83346277d643b291dca0b949e3b058 +#: 2a4d60ac337a46c0bed1bc26c226038f 2ad70d3718a4499cb9197f85eb4abf87 +#: 2bb5fe9dcfdc4277aedd1b8cac88e88f 2c7f28585a7445caa3375c657bfa10fe +#: 32729bb6214c4a0d9faddbd2797c356b 3993991579084341a58ae9581980d8f2 +#: 41f3ff189d5746b3b37769fc2f8e683d 47cf29f45d094211a6159f29fd08d82d +#: 483e8acc9cae4b48aaaa0566e32bbf6c 4ad270a9f286434ea4210e41b4d84a2b +#: 4cd55485c5ec409cb04d2efb51172d09 4e3426bccb324f8ca84175605fe88d97 +#: 67deeae9eedb44cc97fa9c9c32d8fb7f 6836891e883c423481ebac9ffd750fa1 +#: 6dc5c2e21b9b469dacb81a1e43968511 728aa08043a64adda19d956c6ff44128 +#: 7b1c6d12b4a842a997b5465a8ddbb287 7c47ce6d35854eabae233cb4388c1b7c +#: 7cc43cf3dd184cd686b8bf1ec6c776c2 7cde32a58ded4bc89d170ba90e584f79 +#: 7db2c31f6b6b4368877cec63b61d725c 7eeef0117d73468bbf069e0735089439 +#: 8183ff58df9b4e73bc33a30fb382eb7b 81e36a1bf1c14fe2a37b210df30a3427 +#: 82c457d86c2142bcab50d8842bda9063 8358e6376bbf4ed99e959db533fd3e82 +#: 868a9098949744cf9fcf7c6f42e516f7 883bef32346f462e98c0bdec679b1efc +#: 8bfaf5d7e1804eb5bf58cca632c716c2 8c746e49c2e643eda46543886844bdd0 +#: 8df6ae442263404b9f2b7ed7ae19f057 8fa9dbf39d3e4d458673e6e35abcb4c9 +#: 92bc5070285c4eb9b08cec9bafd803a0 978731b4ff544335acfad6f762b91b3e +#: 9a1e6f7439c24f38a40e2ec918fd55a0 9b463aa7bf23454dbdca8aa23cc8539b +#: 9b83c72d2fe047bf93dffa69af7efd07 9d168ece95784b269773220dae484295 +#: a226e4fd036c4e87a2f9e3ab17fc1ca1 a24c93013f654f39aec619169aee3ffd +#: a3bb38861f7d4b6f9fc2cde50a4f6e90 a70491d545954835a7ba3ee88e35ab11 +#: a7ad261a3e4e408fae23d5a5d4336802 abffcbc2c62646a59bd6a3492faaf76c +#: ad6aee1e9b0642d4a2598a8a947336f6 ae50dcfdf19047f39c36d0c0cb946484 +#: b168fffcce71401eb693e9e18b66c905 b22c89b9409f45538c044c97893adb19 +#: b4903e4b445749fc8bb0e9ed08704b46 b5873e6ce92f4f3ab50f63c347178ee1 +#: bb58123a93434a7d923686db2691d9bf bce09d4f70644d45949114525a9e232f +#: be92e79b8562492497e0d816d28b3038 c2cf03ff152a4746a445c6e09c4ecf4d +#: c46eadcf6cc141368f08bb53bfa5ea54 c4b82d4c337b48fb8cecced3bfaea55a +#: c7ef03b91163401782f9a92f6ce2c03d c831fa537f414a13a0b6020ed358e961 +#: cb7c79b0236c445790339b76b58e96f0 cf2ef7aba94a4080be66ea0480c20921 +#: cfa8cd151dec4643af4fb785fc99556c d2e07740ec32449eb410f0bdef8452b3 +#: d490697a012c42d5bbf554978ed73d0e d4e42741de964a12b603dfbee3a9228f +#: db10503e23c74cc18f50099e14cc0893 de160c5eabbc4424aa90922d81f49f99 +#: df2fb0faeb9443da8ba9f844182584ef df9374bb269a4de2a914a52d64365053 +#: discord.abc.Messageable.history discord.channel.StageChannel.purge +#: discord.channel.VoiceChannel.purge discord.channel._TextChannel.purge +#: discord.guild.Guild.audit_logs discord.guild.Guild.bans +#: discord.guild.Guild.fetch_members discord.reaction.Reaction.users +#: discord.scheduled_events.ScheduledEvent.subscribers +#: discord.threads.Thread.purge e4bba7ea10be4e9ea126e3aa6e9ad74a +#: e898e44df463451c9ed547af0b4667fd efe3e572d3bb42b9a47d27498a8b1ecc +#: f0fe6c67049d4b96a437cd6ff3a5018d f9d7b016a79b4441b05cde2a98ff2f73 +#: faad64e33270420d9540268e1052426c fd2871dc9d2b437eaf077d906752bc0a +#: fe151c499f3f4ed9af0da6bfd29cd5c4 of +msgid "Parameters" +msgstr "" + +#: cd3e1dc1a94d4c3a8c524857d4dd1246 discord.Asset.url:1 of +msgid "Returns the underlying URL of the asset." +msgstr "" + +#: 350e91b0635b401c984176738616aef5 discord.Asset.key:1 of +msgid "Returns the identifying key of the asset." +msgstr "" + +#: 176cce10bb0141758719e6eb9aeab46d discord.asset.Asset.is_animated:1 of +msgid "Returns whether the asset is animated." +msgstr "" + +#: ../../api/models.rst 0309d5bc75b4441c897a10094b96ac4a +#: 03760cb475ed45078357270d9b6c3b33 0640e492b57342b5a13994bcb5450a85 +#: 077c7293671b47aea1ead298192db654 079c4c874eb34aa28b2cea04d85364e1 +#: 0979548eb8314965a4232b002d6d8f8e 0ad9dd6e25d24167a508024ae35d87da +#: 0c09c04ca6c24f37b7befefc1e27c108 0d5ce9ac536f48c3af3a64b83a094777 +#: 0e77fecc1b154fdaae5ecd7437e07fea 0ffde691430f49ef890254f0b87e9c2e +#: 16749d2b71db4335acddc773be0d2f0a 18b90031dfc547088813e057a56401c1 +#: 18f9e3ed114d4d68973ef2d37672349e 19a35a7ed51a4b99a8041f75cf8e58a3 +#: 19c515ba3ce24f398e966d395a7bab86 1c5c8239784e471dba566d1b92b2a5e5 +#: 21bbe3bfdbc446d695ba06c20c373f85 21ff3a60e1e84c648ce0a5d9aea70700 +#: 22c035014b65406b969da9bfa17929bc 254810d5159c4a7ab7e45312a75c3188 +#: 261deaa002874837a2c0c7f43b420d08 26610a2e71004eada14dc49724dd1382 +#: 2862e3ccc6274017a74b9196f3154985 28a6e45ecb76421b97a31e146ad93502 +#: 2907f41b9a254a10a732581db38bb3a9 2a1ad31a3f764795a2fb39aff9873758 +#: 2dff2df236b04c128a3de69f4dde566c 31d62f9c893e41399081d48e4866956f +#: 350fcc488876465bad13a5796135bdf2 356bef769b5f47b4987d39eb1a7db4b6 +#: 3670d238b65946fc85955a7f42fa1a37 3744d240485643bfaaeedd4801535130 +#: 3a7e19ad0efc41afb60748ca5ec7ce49 3bc24b485df54ccc86aaa73edfdda00d +#: 3bc86514262a4b3c8dfa0832fd887a71 407ca03640e945a485ddf6039c4290d7 +#: 4558c796153c4ef68dcf70075672fb40 4bd018c62f114816b1848122761f0c79 +#: 4f8209b09da140ffa3202f93b7b6bf97 506e955535214cac83087478241a0b1b +#: 522f4898e55c4556a060f6a8f63bdcd5 5369cb3951f140f7b332ad63eaca1069 +#: 536e3251a836422fac526839f75dc3c3 553cad25175b446fbcdab20da396f524 +#: 55412074b3c0457a928ba79d2886ef21 566bc6bb24784bc5970599ef1e8770c6 +#: 589587890ebd4f478c62b58dd26d5671 5987f3ee200f4d81a08e1d344e30d1d7 +#: 5aa46d39cf93485795e2b3966ca802e2 5bc8d4fec7fe4a3da55954a965a3c166 +#: 5bd361d0404c4498a423491718158f86 6000f7ba9ba8448589288c9e491da658 +#: 61b6dd6513944110a133c7efb3bc0cdc 64bddacb4cac4f82a67a58222d50d578 +#: 668a7f8b61594196a848b31c1eb2f132 6a593fc9f66142829114c6c0fed61c9b +#: 6f73c53cb70247089d507722c9903f3e 77ceaeb103b7476c86ce358d994b966c +#: 79440ec28ea74d52b17263e296d3409e 86bfec4746ab4883a54583e29dafe33d +#: 872e315e148e4e858f69d56dc0ace95e 8b037c2dd39d43d7bab7234b9974ee26 +#: 8bafa417e0a24d19bfcfdbf5ca4e1358 8cf23c67e6aa4a318dc9702fd590e1f8 +#: 8f074c462f05439087eaf38bdcbde36a 8f1345380b4e4342a090f0d5cd984869 +#: 94da0913b5064103b4a4f1317d286d3e 9b83d663436b4b1385978a81a84e11d8 +#: 9c5c89e0d0874a8691ae9c0e0face8be 9fbc068a17a84765ab1cdd7a4092661d +#: a19f99d9ba494816a26f530dcd4d3024 a35fe165deb2481da568d709dae266c2 +#: a491af9434bd4ae6b7adaf96a9ca0ef7 a57d083bbea64801a7d65f69c25a92fc +#: a6245e82802e4b7193ce9a3c9ae5b2ad aa0eaae63db44458a10fa9b1b74828fe +#: aa1bdf38092843cf94b6334d56e761af ab64e8b5946049a2b1cf13bb6b63fe97 +#: ac441bf274914d2f9dc6f264613f0faf adbc4a22ca1c4ac8959bac23ec4839d3 +#: b4bd8df1935644ce9c0489c8542cd1af b91691d031fa405b8a1d7c7a5d684d4b +#: bac9870e0e33411ba53fb5c16935ecb0 bd10cae6ed2b4708a5a0c0f4dda84951 +#: c106589d8eff4543b272782e24ad92c8 c6a7d99157e3423285c53b00b65eef1b +#: ca57d95ea26c4194994d202c3ff3ec2a cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cd8afe5f874a4ed893d57cd0f29bb9a6 cdf62d9b674847e39744c3e80c1fb9ea +#: d261c751d34446d5890e6fe388663db9 d3570283753343cdba2a6758d688bef4 +#: d3a9ecd345b9437a900862749bb1d523 d59c249cca4e40d9b26dded2423e6c8a +#: d90d732a2bb845569dedb27e471e7f93 da0e818d0fef430fbadf33a4e57ea595 +#: dbf4e8a592f049df9c417ab8b3d39404 dda4d63fbd664297808f901fc4957b29 +#: discord.abc.Messageable.history discord.channel.StageChannel.purge +#: discord.channel.VoiceChannel.purge discord.channel._TextChannel.purge +#: discord.guild.Guild.audit_logs discord.guild.Guild.bans +#: discord.guild.Guild.fetch_members discord.reaction.Reaction.users +#: discord.scheduled_events.ScheduledEvent.subscribers +#: discord.threads.Thread.purge e819402188e744ca884c8ba6b1a852d5 +#: ed9005f2cb1d47fb862b4be05f63997a f31cbc6d18c4492d8d39476d33e60215 +#: f32707707ee74b6dbff49ed14a238389 f5fb05070ebd4d488d1b462e0470b4c1 +#: f6f36e6c6c81482582ab35769ad90599 f852538e23ea4d0f954a427289c543f3 +#: f900904408044c2c8359e71f54e614b0 fc37f43ede9d48f9949589a404c7024f +#: fc43e15d2f0b45ddb8f71cb25d370b0a of +msgid "Return type" +msgstr "" + +#: 1264fee836bb466f89b4f893c7bf697a 1fad9e42f9844177a0e09f9e5f6e4592 +#: b3d373e32ad24fc09945543962ca1e3a d5f84379d77d42a0860bc6eab1204514 +#: discord.asset.Asset.is_animated:4 discord.channel.CategoryChannel.is_nsfw:4 +#: discord.channel.StageChannel.is_nsfw:4 discord.channel.TextChannel.is_news:4 +#: discord.channel.VoiceChannel.is_nsfw:4 +#: discord.channel._TextChannel.is_nsfw:4 +#: discord.interactions.Interaction.is_command:4 +#: discord.interactions.Interaction.is_component:4 +#: discord.interactions.InteractionResponse.is_done:6 +#: discord.member.Member.is_on_mobile:4 discord.message.Attachment.is_spoiler:4 +#: discord.partial_emoji.PartialEmoji.is_custom_emoji:4 +#: discord.partial_emoji.PartialEmoji.is_unicode_emoji:4 +#: discord.reaction.Reaction.is_custom_emoji:4 discord.role.Role.is_default:4 +#: discord.role.RoleTags.is_bot_managed:4 +#: discord.role.RoleTags.is_integration:4 +#: discord.role.RoleTags.is_premium_subscriber:4 +#: discord.threads.Thread.is_news:7 discord.threads.Thread.is_nsfw:7 +#: discord.threads.Thread.is_private:7 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: b7c61034a96543d3a292a7aebd55d2b6 discord.asset.Asset.replace:1 of +msgid "Returns a new asset with the passed components replaced." +msgstr "" + +#: cd7840d7e7a84dfa84a627eb4b3760cc daa2f1c92cda42ddae693df8ce5553ce +#: discord.asset.Asset.replace:4 discord.asset.Asset.with_size:4 of +msgid "The new size of the asset." +msgstr "" + +#: discord.asset.Asset.replace:7 f29fced6031545078062f51a725d4e15 of +msgid "" +"The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', " +"'png', or 'gif' if it's animated." +msgstr "" + +#: 492be4dad9bf42bc83a10472a86b7b84 discord.asset.Asset.replace:11 of +msgid "" +"The new format to change it to if the asset isn't animated. Must be " +"either 'webp', 'jpeg', 'jpg', or 'png'." +msgstr "" + +#: ../../api/models.rst 083c074a6726498a8b6a44b2c0390d7b +#: 0996753e5e124f77b30e61a42df820c1 0a5c812ff0c04eea82c6fa3bb63067e0 +#: 0ec6d9b2e0264d87852ba95d863dd39d 0edeaf6b803640c28054b2e619ddd802 +#: 18d5b6a744724d3a83612d2d141e79a6 1d273c9af8b04078a7f814a612b7af22 +#: 2357c289d156430aa3fc97424d2c388b 25f5699c89f544419e402558052f5325 +#: 2607b77d823943a39c83436bd083804e 27c881e4f9d54dbc8ab1466442f08633 +#: 27f96ff5ae5b4e83ab6648c6154d02e1 2e2ac69c07864724996d15ad04f08e14 +#: 2f6d4fffa6184f9780a0a1f424fb7cfe 35d53beb4f25480bb67fe4c3813e33e5 +#: 362375f37b194a349214ed5fc7c0f203 3c5b5f52348b43289904fa2dbb2419ab +#: 3d661899f6cf48ebbebdc8e59ef6f6ec 4065753368ca48ba9303ab80be7280d6 +#: 433e78d93a284222b29b7c5c27f30975 43c1656cdb8c46c3a79e2da9fcc17b2b +#: 46a0aa1454ae417e88e6b3cd870b72f5 4db57c6eb2ff45e683de729c56067875 +#: 51d0460ea52747fe85f7df2cb0591858 542167f6d3384e2a8ae24d73888b2ef4 +#: 57f07e810e7a4586855dc28481b0158a 5a4bb964168c4d4bb38a489fc597be24 +#: 5b085ed69fe04b72a038408f1694f8b7 5b7671b931944b139d39fd1e649e4371 +#: 647c16affa9946b1954e30a98d48817e 6653c72cfad749238708f3ebe0122142 +#: 68305bc3e2184fd09fe9642896bc9d34 6ac49508d1c143e2a64cce304a570b5e +#: 6ad8863060a441e4b4dc968c529722e7 74b5a057233e4cb5a1231cfc2ec593e2 +#: 750f91e4b5294b2eb91a6c4fd068c0e2 76becbf11cbf44e694d2b1ae7e64f923 +#: 79b32f14b5754c49b9a269a076411656 7d34f29ac67047a78da568e9efd49f1b +#: 8283e51b1c044e2fb9250dd199dcac71 8343fcad75ca44efb89693f19ebe898f +#: 83705baf8a864eec9f13163564e7cf6f 847dccc772424a3faf88bddcb661386d +#: 86821b65aab74584ad8c55849a601d14 8aa9e45ae0fe4b84b38aee62c912c235 +#: 8e51aa1f2ed94e2094249f3044a9d198 96cc6a6f1f9d4894a37e737d95105b43 +#: 9f2285651c4f433f8b1c16881926f0bb 9f601fe77c824a16b0956178e383143e +#: ac01e19d8d404b5dae571c9d27da19cb ac28978c972f468e98bb5e4bf37dd28e +#: b2f1da5ff55c4a3b9346d3b6e1f1adaf b6c1b4114fb543e195c94aa432fe159c +#: b739480c9c6f4adf8e1e3c3933784bc3 b86abad0dc784bcfbc12f4c84d1fa742 +#: bab7da69a6be495781382e54dbaca4de c9b9dc712a914abf8f2219351eeff240 +#: ca546d5bd9894f37a369d569f89868c5 d158caf1186e48c8a38e8020bc046db6 +#: d36b0236b9ea4776a7e6b378e9e2d52a d49a124f37e64f348e59d79ea1e601dc +#: d5a133945e874db9945b37883aaded27 d8969dd93df444019b67ca16bb4ef691 +#: da72630aca084d3aaeafd45ebb6e90e2 dfd2a44a017442e29804dc590d1e49d5 +#: discord.channel.StageChannel.purge discord.channel.VoiceChannel.purge +#: discord.channel._TextChannel.purge discord.threads.Thread.purge +#: e081836ae6504e498ac8f7e7f304807e e79560eeaad2454da4385f06e2aaee39 +#: ecd9fdca3e544014953f89c1e94c68f0 f66ddfebd98a4697bb828487d4a14e10 +#: f6f28fef35e44b52b7f0d8b8d69516ea f88c908a6f4c41fabacd70ad58cdf52a +#: fdf7e9a3108d4be18ba445ce61cb75c8 of +msgid "Returns" +msgstr "" + +#: 0f6ae02f77bb47c4ad5b987a9ff6472f discord.asset.Asset.replace:15 of +msgid "The newly updated asset." +msgstr "" + +#: 11fc898438104a268cae9f6320a66331 7decbb31cbe34e0591ee991814ce097d +#: dee5733170884301b654b93e85996bf0 discord.asset.Asset.replace:16 +#: discord.asset.Asset.with_format:8 discord.asset.Asset.with_size:8 +#: discord.asset.Asset.with_static_format:11 fd507c401cdc4f5ea3a0dc7c779df1d2 +#: of +msgid ":class:`Asset`" +msgstr "" + +#: ../../api/models.rst 017b475bd4664867bb6949ff019b5617 +#: 05260df1bd954c5caa25ff09f602f59d 08e736d0ebcb4f969f5b6c1e9b37778c +#: 0b506a02f13c4c2aa4ee74fe7426251a 113a72e344ba44e589ab4850f4e526d2 +#: 12909ab179ae4ae984212487c8121eb8 141f4b3b829f443c9e0e95b059139f3c +#: 17544644f3174233b360da2c7fc321de 1c6dc455287548f2ab99194beb45b232 +#: 1f953a100c764d178b276431e62b1992 22006d01559c4c56acdb79d7f1ed738f +#: 22e7624f7c8a4117a3d3744545d2dcf3 2472859665d2470bb065bfc0b93027e1 +#: 267de63306354febb545e6ce928be1e6 26bd87134fbb4581a4f394d41b894084 +#: 2d288ac0eca6428fa8068b8aeb74e498 3589314f4d734e988d58db8fc3fec995 +#: 3902ae0d9db246adb81666c177be7db2 393c0085e60b406e91fa74316710ca6c +#: 3c681436fcb64600ad5b441e2331589b 3df56f6e1f9a4a4999cbaaf11a1cd473 +#: 3f8de618dccb440bae0e587fb00cbbca 446b6f350b954c8c8ca60e07388a4126 +#: 44b8d1766516447fb8c88325249d39b0 46cf6a58d072411e85e96d08a4ce189e +#: 479fe8e8503a4eeda03033937fea8178 47de5658d9204fcd9828e2471198708a +#: 47f45e0b2e5f442790500ab0a1cb7ae5 4b0ae9cfa8734a47aec5bc961bf7d8ea +#: 5298538313c0410689ffa672c5266090 530048b485b64e259d50b0528f5a980e +#: 55e5647b51fa4afb899876de7b44a51e 5c03c74134e3491dba9c9a283a2eb3ef +#: 612731b71d164a1d85b70ee0e6acd7f7 63b00c35f848405e9fea923d03fa7759 +#: 658633a44db7427a933b8fcc6b93326f 699b6b4ff6544f7faeeb9f52f295dba8 +#: 6a70eeb5c346446eaa451b8a82fa36f0 6b49644c0a984cefa8ad37bd37e25c6c +#: 6c88abffe12448c7999d0268dd98391d 6e2bbeaa9dbf4d0095fcab664be6f5ad +#: 6f0007dd2faf4406952fee24462ad0ef 6f136f8c5e6d4b7088fce1fed9753458 +#: 73980af6f86141cf98c79c7088e50c86 76b96bec186e4b33864bf75de01575e8 +#: 8448a10ed39946c9814070a5a8747f5b 8cd7d37a539b4df8a6a38d86b91a57ca +#: 8ee99948456b49e09dec4c13c8e74348 911a2045702c4b5da52b8d43e124cdf3 +#: 932053c3e0c04333bbe3132b2cc918f0 936a55c4d73045b7a97b48add3bbba31 +#: 949c13f67593491fb341a58620388b86 97d2c307e17a4aa98bf80c3816b2023f +#: 9ed8c6957e594b989803867465b0832b a093e145386d4741a3c32f63e3d1b3b7 +#: a747b811291345929a132043b534d8f7 a78381ea68c5462ca57f748f4891aaeb +#: ab281ddb680842b9a168aa9d9d1142c8 ac17053a86f84471be8fbb3466c02f59 +#: acf65750771442a785e04917545d20bc b2dbee1368ee427fad1bc38199801dfd +#: b3a7951b4ce7467b884d54b09e4d7ffc b59762528dc74f0fa3c39634bbc7b257 +#: b8530b14839d4c8c8d553f5ecd20f041 b879e907e15d4b709a7c4fb7e4e46856 +#: b8b585cf380b493987d48a0079963528 bb7e2df55f9946449cbc87ba99d8e00a +#: c2ea625207034985b0c360f2a82bcb33 c68960e6aa504d848baa9d228f79b622 +#: c793135c62ea436aad956d5fa0129ef6 ca68861e26e843c79b39454f02ce4bdb +#: cca081068ed54c418626a8f0830289cc d64c9fbd67f44db186cc840553acf9c2 +#: d80bc37cab244a838dc6b22f210108fd dd7eff5537e64034b184274723af6237 +#: df047e2a4b19450294fe199cbece81dc discord.abc.Messageable.history +#: discord.channel.StageChannel.purge discord.channel.VoiceChannel.purge +#: discord.channel._TextChannel.purge discord.guild.Guild.audit_logs +#: discord.guild.Guild.bans discord.guild.Guild.fetch_members +#: discord.reaction.Reaction.users +#: discord.scheduled_events.ScheduledEvent.subscribers +#: discord.threads.Thread.purge e0eacc7163104667a12355c978c322ca +#: eb9ad7bc68144f10904406488bd7ae24 ec0331f905e2441fab9824d1f8c4963c +#: ee39cb64ba8349c2bb405000597a9be7 f540cbb4fa004ee6bea4303f94a62480 +#: f56f39ec6cb24f81ae8f8d24412d450e f5bccbd888d048908de44bba82b6968a +#: f65abbd1f6c1479e933a7e770f0b0b9d fb448fea1e4d411da17ac96ac8102a8e +#: fb44d6093f9241de967bd1a6a92c87d8 fb7a0c154ac948c6bb5db13e5ec9280f of +msgid "Raises" +msgstr "" + +#: 44165730eb744f8ba309bbead8d7fe98 discord.asset.Asset.replace:18 of +msgid "An invalid size or format was passed." +msgstr "" + +#: 18fd8b8e2cf343548ebeecbc10b4aad1 discord.asset.Asset.with_size:1 of +msgid "Returns a new asset with the specified size." +msgstr "" + +#: 0745ca1b6ee24362a4d64ca7427632bc 7d4b2761dbd546be90d9bb9950d4e9b3 +#: 9adf62b3d3dd496d8296e2f28fb3db26 discord.asset.Asset.with_format:7 +#: discord.asset.Asset.with_size:7 discord.asset.Asset.with_static_format:10 of +msgid "The new updated asset." +msgstr "" + +#: 93e6016595cd40a7b1d0dab443a478a8 discord.asset.Asset.with_size:10 of +msgid "The asset had an invalid size." +msgstr "" + +#: 4d5a1d9e37a94f8ca44dad570f54f4bd discord.asset.Asset.with_format:1 of +msgid "Returns a new asset with the specified format." +msgstr "" + +#: c83f8a1f70c645c2bd156cee9f378e6f discord.asset.Asset.with_format:4 of +msgid "The new format of the asset." +msgstr "" + +#: c886a9cdeec743fba730f913067a88ad discord.asset.Asset.with_format:10 of +msgid "The asset has an invalid format." +msgstr "" + +#: b55b6fcf0cec4d5f8a57ac6ebbef3b51 discord.asset.Asset.with_static_format:1 of +msgid "Returns a new asset with the specified static format." +msgstr "" + +#: 88e4f675a5ea4f9592f17a4e1326bb23 discord.asset.Asset.with_static_format:3 of +msgid "" +"This only changes the format if the underlying asset is not animated. " +"Otherwise, the asset is not changed." +msgstr "" + +#: a99351c344ef4193a12d16c9a9ca3034 discord.asset.Asset.with_static_format:7 of +msgid "The new static format of the asset." +msgstr "" + +#: discord.asset.Asset.with_static_format:13 fbfb165d42014fd699bd2ef4dcea2aef +#: of +msgid "The asset had an invalid format." +msgstr "" + +#: 0370e808c57d45af969bace394918843 066b403845fe4067a93eb4cd4de9e874 +#: 0ca18e9a7adf4b6f9bfcce46aa9e3c6f 0cae40f9ce954ec9b15b77889eac1aa0 +#: 131568ab740844ef85bf80dbb6a876a6 160d2bd81c0b42bdbab49cfa35cacd7c +#: 16bc1d11ba1242fcaaa2d5f3a231382b 16f0ba84894943f1aef0558e371df7b3 +#: 1f0e792748e34d5f94de6b86e6e95609 2074d7f99a844507a10fe0536d71e67f +#: 24480af3fa9148cdaabce5cd5523cf8f 2aa6d567d1ec428a91a5b27e3a557493 +#: 35d10e85e986443a9e0a1f97dcac92c0 3b9f5473c35c4f9db28d3a986789472f +#: 3db17b50b5c94a2e910ca4e66e1a92d6 3e7128aea19b401893ffdc27d203a3b0 +#: 3edfe5a70b18415b911ba5439cc5a95c 463e5fcc76984461a559231b6cd6dd11 +#: 5b3163ea99564932af894f02711d4317 5d4f482bbf7846e59a2374c6ee3eb3ad +#: 5ef60e9b21b84048b0fe6334289f0abd 698b1cd3a9ed4599a6c56924f2c5e2f2 +#: 69a188049ab64f7ca4accf2252dc85f9 6ba495235f7645788ad7dded9e4cbc17 +#: 6ca83568bdad40798ecbdd6239c77a81 6e5bcc4045eb45ee9cc11a3a33632917 +#: 6eb05241c80d4ae3b044eb9161b223e3 704cb3891c8f40fd82c41a6e73d45468 +#: 722b6b94854649b2b6cd0bcdec84d94a 7932b3a1df6e44acacdc6ef4e6344229 +#: 7ad00ffb5bab447ca72c6844703a96e9 7db62c34d00146b596edf2b23276ac74 +#: 7fb30cd7713242d68f44b6b6ebcef3fb 7fb6be439be4482eb842382bddf0eb36 +#: 7ffdf73db5ab488e9b51b597babc8b61 80f4a463d8554a85a5f20b7b8a2e22e2 +#: 81253fd018124062b2e6978ba7f46e1c 867ac713660943d69dbd98f2164d01b6 +#: 871e2985ad244d5180e3968e7f08c87a 87c91af97b574208ae3fed3ce8222bd1 +#: 8c5c8dd3ede749a19ce6044fa98822d2 910794dd47a748b5b041934ea50a6337 +#: 960b97e779684aedae87fb6801d55474 97d7c3ed4fdb465b963224edb1f96c40 +#: 99adafd0bce74bca994af7d097e50577 9a10b90385b0491d98530df90fe54977 +#: a006e586ea96435888e9470ed4c69990 a228bf8cd1194556b2d999730fc00b47 +#: a31aba33f0f74e3482abbedb0bfb3c6b a5c07649e5ae469886fe90f590944332 +#: a7d1faaa3453418aa9971cf314037c1b aca413eb20544eddbf028107ebe44fe0 +#: adee786460914fdcb477594f45acb37a b1382f4fb77344589f6d0af222d4038d +#: b417d4f6381b47c98b155db7cd64c5fb b41df4171ce3487289ea11713cb69daf +#: b4e8c615fe5343b683b8b0ad945cd4a1 b61fb94b7fd5463b98f5c4cba114eb44 +#: b7eba1a9a94b4abca974be4cda3b9439 bf7d7300665a42d4b2d8623f113713f2 +#: c126483eaf8f483ea012ef62bb4ca9a5 c475e3a182784df084eb336605c7944c +#: c62fb81bdab94beba442b9b30c439099 c812fd05fc964c57aabd04b4b16b89e6 +#: c85efd72728d4227bb290ae439c27b81 c98a9314dab44cf1bfa78489978e74c7 +#: cb531c728a4e4ebe841b5d629b87de49 cbea66b66f524924bc315334fd17e07a +#: d81d01d2bf864f69be7d59be99c53415 def68b192c7147ba9f95cf729e534f29 +#: discord.abc.Connectable.connect:1 discord.abc.GuildChannel.create_invite:1 +#: discord.abc.GuildChannel.delete:1 discord.abc.GuildChannel.invites:1 +#: discord.abc.GuildChannel.move:1 discord.abc.GuildChannel.set_permissions:1 +#: discord.abc.Messageable.fetch_message:1 discord.abc.Messageable.pins:1 +#: discord.abc.Messageable.send:1 discord.abc.Messageable.trigger_typing:1 +#: discord.asset.AssetMixin.read:1 discord.asset.AssetMixin.save:1 +#: discord.automod.AutoModRule.delete:1 discord.automod.AutoModRule.edit:1 +#: discord.channel.CategoryChannel.clone:1 +#: discord.channel.CategoryChannel.create_forum_channel:1 +#: discord.channel.CategoryChannel.create_stage_channel:1 +#: discord.channel.CategoryChannel.create_text_channel:1 +#: discord.channel.CategoryChannel.create_voice_channel:1 +#: discord.channel.CategoryChannel.edit:1 +#: discord.channel.CategoryChannel.move:1 +#: discord.channel.ForumChannel.create_thread:1 +#: discord.channel.ForumChannel.edit:1 discord.channel.GroupChannel.leave:1 +#: discord.channel.StageChannel.clone:1 +#: discord.channel.StageChannel.create_instance:1 +#: discord.channel.StageChannel.create_webhook:1 +#: discord.channel.StageChannel.delete_messages:1 +#: discord.channel.StageChannel.edit:1 +#: discord.channel.StageChannel.fetch_instance:1 +#: discord.channel.StageChannel.purge:1 discord.channel.StageChannel.webhooks:1 +#: discord.channel.TextChannel.create_thread:1 +#: discord.channel.TextChannel.edit:1 discord.channel.VoiceChannel.clone:1 +#: discord.channel.VoiceChannel.create_activity_invite:1 +#: discord.channel.VoiceChannel.create_webhook:1 +#: discord.channel.VoiceChannel.delete_messages:1 +#: discord.channel.VoiceChannel.edit:1 discord.channel.VoiceChannel.purge:1 +#: discord.channel.VoiceChannel.set_status:1 +#: discord.channel.VoiceChannel.webhooks:1 discord.channel._TextChannel.clone:1 +#: discord.channel._TextChannel.create_webhook:1 +#: discord.channel._TextChannel.delete_messages:1 +#: discord.channel._TextChannel.purge:1 discord.channel._TextChannel.webhooks:1 +#: discord.emoji.Emoji.delete:1 discord.emoji.Emoji.edit:1 +#: discord.guild.Guild.active_threads:1 discord.guild.Guild.ban:1 +#: discord.guild.Guild.bans:1 discord.guild.Guild.bulk_ban:1 +#: discord.guild.Guild.change_voice_state:1 discord.guild.Guild.chunk:1 +#: discord.guild.Guild.create_category:1 +#: discord.guild.Guild.create_custom_emoji:1 +#: discord.guild.Guild.create_forum_channel:1 +#: discord.guild.Guild.create_integration:1 discord.guild.Guild.create_role:1 +#: discord.guild.Guild.create_stage_channel:1 +#: discord.guild.Guild.create_sticker:1 discord.guild.Guild.create_template:1 +#: discord.guild.Guild.create_test_entitlement:1 +#: discord.guild.Guild.create_text_channel:1 +#: discord.guild.Guild.create_voice_channel:1 discord.guild.Guild.delete:1 +#: discord.guild.Guild.delete_emoji:1 discord.guild.Guild.delete_sticker:1 +#: discord.guild.Guild.edit:1 discord.guild.Guild.edit_onboarding:1 +#: discord.guild.Guild.edit_role_positions:1 +#: discord.guild.Guild.edit_welcome_screen:1 discord.guild.Guild.edit_widget:1 +#: discord.guild.Guild.estimate_pruned_members:1 +#: discord.guild.Guild.fetch_auto_moderation_rule:1 +#: discord.guild.Guild.fetch_auto_moderation_rules:1 +#: discord.guild.Guild.fetch_ban:1 discord.guild.Guild.fetch_channel:1 +#: discord.guild.Guild.fetch_channels:1 discord.guild.Guild.fetch_emoji:1 +#: discord.guild.Guild.fetch_emojis:1 discord.guild.Guild.fetch_member:1 +#: discord.guild.Guild.fetch_role:1 discord.guild.Guild.fetch_roles:1 +#: discord.guild.Guild.fetch_scheduled_event:1 +#: discord.guild.Guild.fetch_scheduled_events:1 +#: discord.guild.Guild.fetch_sticker:1 discord.guild.Guild.fetch_stickers:1 +#: discord.guild.Guild.integrations:1 discord.guild.Guild.invites:1 +#: discord.guild.Guild.kick:1 discord.guild.Guild.leave:1 +#: discord.guild.Guild.onboarding:1 discord.guild.Guild.prune_members:1 +#: discord.guild.Guild.query_members:1 discord.guild.Guild.set_mfa_required:1 +#: discord.guild.Guild.templates:1 discord.guild.Guild.unban:1 +#: discord.guild.Guild.vanity_invite:1 discord.guild.Guild.webhooks:1 +#: discord.guild.Guild.welcome_screen:1 discord.guild.Guild.widget:1 +#: discord.integrations.Integration.delete:1 +#: discord.integrations.StreamIntegration.edit:1 +#: discord.integrations.StreamIntegration.sync:1 +#: discord.interactions.Interaction.delete_original_response:1 +#: discord.interactions.Interaction.edit:1 +#: discord.interactions.Interaction.edit_original_response:1 +#: discord.interactions.Interaction.original_response:1 +#: discord.interactions.Interaction.respond:1 +#: discord.interactions.InteractionMessage.delete:1 +#: discord.interactions.InteractionMessage.edit:1 +#: discord.interactions.InteractionResponse.defer:1 +#: discord.interactions.InteractionResponse.edit_message:1 +#: discord.interactions.InteractionResponse.pong:1 +#: discord.interactions.InteractionResponse.premium_required:1 +#: discord.interactions.InteractionResponse.send_message:1 +#: discord.invite.Invite.delete:1 discord.member.Member.add_roles:1 +#: discord.member.Member.ban:1 discord.member.Member.edit:1 +#: discord.member.Member.kick:1 discord.member.Member.move_to:1 +#: discord.member.Member.remove_roles:1 discord.member.Member.remove_timeout:1 +#: discord.member.Member.request_to_speak:1 discord.member.Member.timeout:1 +#: discord.member.Member.timeout_for:1 discord.member.Member.unban:1 +#: discord.member.flatten_user..generate_function..general:1 +#: discord.message.Attachment.read:1 discord.message.Attachment.save:1 +#: discord.message.Attachment.to_file:1 discord.message.Message.add_reaction:1 +#: discord.message.Message.clear_reaction:1 +#: discord.message.Message.clear_reactions:1 +#: discord.message.Message.create_thread:1 discord.message.Message.delete:1 +#: discord.message.Message.edit:1 discord.message.Message.end_poll:1 +#: discord.message.Message.pin:1 discord.message.Message.publish:1 +#: discord.message.Message.remove_reaction:1 discord.message.Message.reply:1 +#: discord.message.Message.unpin:1 discord.monetization.Entitlement.consume:1 +#: discord.monetization.Entitlement.delete:1 +#: discord.onboarding.Onboarding.add_prompt:1 +#: discord.onboarding.Onboarding.append_prompt:1 +#: discord.onboarding.Onboarding.delete_prompt:1 +#: discord.onboarding.Onboarding.edit:1 +#: discord.onboarding.Onboarding.get_prompt:1 +#: discord.partial_emoji.PartialEmoji.read:1 discord.reaction.Reaction.clear:1 +#: discord.reaction.Reaction.remove:1 discord.role.Role.delete:1 +#: discord.role.Role.edit:1 discord.scheduled_events.ScheduledEvent.cancel:1 +#: discord.scheduled_events.ScheduledEvent.complete:1 +#: discord.scheduled_events.ScheduledEvent.delete:1 +#: discord.scheduled_events.ScheduledEvent.edit:1 +#: discord.scheduled_events.ScheduledEvent.start:1 +#: discord.stage_instance.StageInstance.delete:1 +#: discord.stage_instance.StageInstance.edit:1 +#: discord.sticker.GuildSticker.delete:1 discord.sticker.GuildSticker.edit:1 +#: discord.sticker.StandardSticker.pack:1 discord.sticker.StickerItem.fetch:1 +#: discord.template.Template.create_guild:1 discord.template.Template.delete:1 +#: discord.template.Template.edit:1 discord.template.Template.sync:1 +#: discord.threads.Thread.add_user:1 discord.threads.Thread.archive:1 +#: discord.threads.Thread.delete:1 discord.threads.Thread.delete_messages:1 +#: discord.threads.Thread.edit:1 discord.threads.Thread.fetch_members:1 +#: discord.threads.Thread.join:1 discord.threads.Thread.leave:1 +#: discord.threads.Thread.purge:1 discord.threads.Thread.remove_user:1 +#: discord.threads.Thread.unarchive:1 discord.user.ClientUser.edit:1 +#: discord.user.User.create_dm:1 discord.user.User.create_test_entitlement:1 +#: discord.welcome_screen.WelcomeScreen.edit:1 +#: discord.widget.Widget.fetch_invite:1 e36857d00d4a4b03a1a0dde15176d0f7 +#: e3d44c95286a4379abdb70ce1c62f695 e4db3b2aeb53457297109bc676433dbe +#: e9daf36896ce457cbddfeb00139760dd f18f5ee8a1464b5bad7b9626fb8800ed +#: f6c37e86f96f473a8d467748569b3925 ff88a521f3414956bb0ae0fb0241dcbc of +msgid "|coro|" +msgstr "" + +#: 0a45793fa09947b5b76f788948db618b 4dcd15b67bf147479ba86c1113f22610 +#: discord.asset.AssetMixin.read:3 discord.partial_emoji.PartialEmoji.read:3 of +msgid "Retrieves the content of this asset as a :class:`bytes` object." +msgstr "" + +#: 61bde54de96944b9b82f92d99b94300f 65febeca148b4be9994734d258af10f6 +#: discord.asset.AssetMixin.read:5 discord.partial_emoji.PartialEmoji.read:5 of +msgid "The content of the asset." +msgstr "" + +#: 54bfde75f0f943679d7db0a7aaac127e 5dda9975005547e4beb396e3191f0db8 +#: d3b229e6d8534eceb97a2d8228c54f0f discord.asset.AssetMixin.read:6 +#: discord.message.Attachment.read:17 discord.partial_emoji.PartialEmoji.read:6 +#: of +msgid ":class:`bytes`" +msgstr "" + +#: 2d8757c0cd4949059cba01c2a5b8f8f6 34973bc8542a42cd997c216b94cce104 +#: b83fb92fb53945bba9a45e6f0fe3f9d7 discord.asset.AssetMixin.read:8 +#: discord.asset.AssetMixin.save:18 discord.partial_emoji.PartialEmoji.read:8 +#: of +msgid "There was no internal connection state." +msgstr "" + +#: 0926c1a57e1d42ca8306857809e2bbf9 2e3e6e96952c4e09959ea48ab64f6bb9 +#: a1e890fa41674e048ecbd57d80238a69 discord.asset.AssetMixin.read:9 +#: discord.asset.AssetMixin.save:19 discord.partial_emoji.PartialEmoji.read:9 +#: of +msgid "Downloading the asset failed." +msgstr "" + +#: 4401ecb89712474fb7bfe8e694cbfee2 9178ef81aa534252b75195e5f2fe0095 +#: 9cdae5cd0ee548be87ed7cba9ee65aff discord.asset.AssetMixin.read:10 +#: discord.asset.AssetMixin.save:20 discord.partial_emoji.PartialEmoji.read:10 +#: of +msgid "The asset was deleted." +msgstr "" + +#: 4cbc6c1c6cba4159a0d4a5b6c0d718b8 53a10fbce32c4c78adf94540d77378d2 +#: discord.asset.AssetMixin.save:3 of +msgid "Saves this asset into a file-like object." +msgstr "" + +#: 7b493c556a40473db9b99d2c953c19d8 7bc5cf8ede5a45639de67d42ca5aca08 +#: 83de373e758a4e4681957b8ec406b431 discord.asset.AssetMixin.save:6 +#: discord.message.Attachment.save:6 of +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 "" + +#: 046ad38efb79459fbf2a3ecd8b279567 148b8fad8702458e82dda1d1d36058f9 +#: c4ec62dcfb8546f5b32ef163c4e401e4 discord.asset.AssetMixin.save:11 +#: discord.message.Attachment.save:11 of +msgid "" +"Whether to seek to the beginning of the file after saving is successfully" +" done." +msgstr "" + +#: 05679ca6d69e48cd90a4c771b4725c81 aede6c3b17ae4ee08ab6dafed6701d9a +#: b4b183e053614b16a4b57382139bccb2 discord.asset.AssetMixin.save:15 +#: discord.message.Attachment.save:23 of +msgid "The number of bytes written." +msgstr "" + +#: 09a9130eef2f4e5f97bee108b1b2125c 1495a50b4ab8413cad396ce6b79fc8c7 +#: 212de6faa7504807a9cf8215d8063c5f 271a7d1b5dc64585a8287a2229b96d39 +#: 42faf5a34414420fa7c8b306f914946c 4e73e268d0bc4f3b9f9926548f91bef1 +#: 5191b22157d04bf4bc0a54a5f2b92103 5f353ab23d4e42d19a2257f9ead36a65 +#: 60c6d421be604ba494cc3d95066a7282 629d14726075491d8b2353e9951aced7 +#: 66016977cc094ded920608f03478efe9 6b01df183fb34aff8d8ff8f39fcd123f +#: 6b195ebe2b3f42baa97cb2ab411e7e1a 890c84de21ba4d91a8b26637510d4407 +#: 940c35d806714f3490c1706f2b5e9387 a29ea8b8246a43af9b40003208bbc391 +#: a5de6e34f3a84becb10665499bedb572 aa8742356cbc4c489cc800a7eb9d42f8 +#: b50d54ba08564b4f9b2be822321beec8 bc403ebbeb184ea2bda7548155852630 +#: ca35a42f7bd740a59fa89b4d31894909 cf2159859c6247b487751085c8eca2ab +#: d69750ecda48449186ede1be30a7b7d1 discord.asset.AssetMixin.save:16 +#: discord.automod.AutoModActionMetadata:12 discord.automod.AutoModRule:27 +#: discord.automod.AutoModRule:39 discord.automod.AutoModTriggerMetadata:60 +#: discord.channel.CategoryChannel:39 discord.channel.DMChannel:39 +#: discord.channel.ForumChannel:37 discord.channel.ForumChannel:76 +#: discord.channel.ForumChannel:94 discord.channel.GroupChannel:37 +#: discord.channel.GroupChannel:51 discord.channel.PartialMessageable:28 +#: discord.channel.StageChannel:39 discord.channel.StageChannel:64 +#: discord.channel.StageChannel:70 discord.channel.TextChannel:37 +#: discord.channel.TextChannel:72 discord.channel.TextChannel:90 +#: discord.channel.VoiceChannel:37 discord.channel.VoiceChannel:56 +#: discord.channel.VoiceChannel:62 discord.channel.VoiceChannel:98 +#: discord.components.SelectMenu:41 discord.components.SelectMenu:48 +#: discord.emoji.Emoji:39 discord.emoji.Emoji:63 discord.guild.Guild:47 +#: discord.guild.Guild:59 discord.guild.Guild:71 discord.guild.Guild:119 +#: discord.guild.Guild:152 discord.guild.Guild:158 +#: discord.guild.Guild.estimate_pruned_members:18 +#: discord.integrations.BotIntegration:9 discord.integrations.Integration:9 +#: discord.integrations.IntegrationApplication:9 +#: discord.integrations.StreamIntegration:9 +#: discord.integrations.StreamIntegration:57 +#: discord.interactions.Interaction:12 discord.interactions.Interaction:42 +#: discord.interactions.InteractionMetadata:11 +#: discord.interactions.MessageInteraction:19 discord.invite.Invite:53 +#: discord.invite.Invite:90 discord.invite.Invite:97 +#: discord.invite.PartialInviteChannel:34 discord.invite.PartialInviteGuild:34 +#: discord.message.Attachment:28 discord.message.Attachment:34 +#: discord.message.Attachment.save:24 discord.message.Message:119 +#: discord.monetization.Entitlement:9 discord.monetization.Entitlement:15 +#: discord.monetization.Entitlement:21 discord.monetization.SKU:9 +#: discord.monetization.SKU:21 discord.onboarding.OnboardingPrompt:9 +#: discord.onboarding.PromptOption:9 +#: discord.raw_models.AutoModActionExecutionEvent:15 +#: discord.raw_models.AutoModActionExecutionEvent:29 +#: discord.raw_models.AutoModActionExecutionEvent:41 +#: discord.raw_models.RawAuditLogEntryEvent:15 +#: discord.raw_models.RawAuditLogEntryEvent:21 +#: discord.raw_models.RawBulkMessageDeleteEvent:13 +#: discord.raw_models.RawIntegrationDeleteEvent:9 +#: discord.raw_models.RawIntegrationDeleteEvent:21 +#: discord.raw_models.RawMemberRemoveEvent:15 +#: discord.raw_models.RawMessageDeleteEvent:7 +#: discord.raw_models.RawMessageDeleteEvent:19 +#: discord.raw_models.RawMessageUpdateEvent:7 +#: discord.raw_models.RawMessageUpdateEvent:15 +#: discord.raw_models.RawReactionActionEvent:8 +#: discord.raw_models.RawReactionActionEvent:14 +#: discord.raw_models.RawReactionActionEvent:20 +#: discord.raw_models.RawReactionClearEmojiEvent:9 +#: discord.raw_models.RawReactionClearEmojiEvent:15 +#: discord.raw_models.RawReactionClearEvent:7 +#: discord.raw_models.RawReactionClearEvent:13 +#: discord.raw_models.RawScheduledEventSubscription:10 +#: discord.raw_models.RawScheduledEventSubscription:16 +#: discord.raw_models.RawThreadDeleteEvent:9 +#: discord.raw_models.RawThreadDeleteEvent:21 +#: discord.raw_models.RawThreadDeleteEvent:27 +#: discord.raw_models.RawThreadMembersUpdateEvent:9 +#: discord.raw_models.RawThreadMembersUpdateEvent:15 +#: discord.raw_models.RawThreadMembersUpdateEvent:21 +#: discord.raw_models.RawThreadUpdateEvent:9 +#: discord.raw_models.RawThreadUpdateEvent:21 +#: discord.raw_models.RawThreadUpdateEvent:27 +#: discord.raw_models.RawTypingEvent:9 discord.raw_models.RawTypingEvent:15 +#: discord.raw_models.RawVoiceChannelStatusUpdateEvent:9 +#: discord.raw_models.RawVoiceChannelStatusUpdateEvent:15 +#: discord.reaction.Reaction:36 discord.reaction.ReactionCountDetails:7 +#: discord.role.Role:41 discord.role.Role:74 +#: discord.stage_instance.StageInstance:23 +#: discord.stage_instance.StageInstance:35 discord.sticker.GuildSticker:29 +#: discord.sticker.GuildSticker:53 discord.sticker.StandardSticker:29 +#: discord.sticker.StandardSticker:41 discord.sticker.StandardSticker:59 +#: discord.sticker.Sticker:29 discord.sticker.Sticker:41 +#: discord.sticker.StickerItem:29 discord.sticker.StickerPack:35 +#: discord.sticker.StickerPack:47 discord.sticker.StickerPack:53 +#: discord.template.Template:15 discord.threads.Thread:42 +#: discord.threads.Thread:48 discord.threads.Thread:54 +#: discord.threads.Thread:70 discord.threads.Thread:76 +#: discord.threads.Thread:82 discord.threads.Thread:115 +#: discord.threads.Thread:146 discord.threads.ThreadMember:27 +#: discord.threads.ThreadMember:33 discord.user.ClientUser:31 +#: discord.user.User:31 discord.webhook.async_.PartialWebhookChannel:11 +#: discord.webhook.async_.PartialWebhookGuild:11 discord.widget.Widget:21 +#: discord.widget.WidgetChannel:25 discord.widget.WidgetChannel:37 +#: discord.widget.WidgetMember:25 ed30d7077e91479b8d8bca2fbdbe9c9c of +msgid ":class:`int`" +msgstr "" + +#: 4d8441d00798480f97977a334b4a48da discord.activity.Spotify:1 of +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 "" + +#: 4b7d1b841620499ba7463a98767f47e9 discord.activity.Spotify:8 of +msgid "Checks if two activities are equal." +msgstr "" + +#: d89f31e4e5404f12a1ce0f26c2f146a2 discord.activity.Spotify:12 of +msgid "Checks if two activities are not equal." +msgstr "" + +#: 594c0f99676c49e082bb82c19c0f7d6e discord.activity.Spotify:16 of +msgid "Returns the activity's hash." +msgstr "" + +#: dfc91939393f4a7e9857d116b2b1bbd7 discord.activity.Spotify:20 of +msgid "Returns the string 'Spotify'." +msgstr "" + +#: 0b0a706f84ae464cbc6dfdcdbc9e8933 discord.Spotify.type:1 of +msgid "" +"Returns the activity's type. This is for compatibility with " +":class:`Activity`." +msgstr "" + +#: 99555b5fa2de47b2bd1cb78ad4c12e18 discord.Spotify.type:3 of +msgid "It always returns :attr:`ActivityType.listening`." +msgstr "" + +#: b6518f9c55b54751bc83644713021450 discord.Spotify.created_at:1 of +msgid "When the user started listening in UTC." +msgstr "" + +#: 2198a9c9e1f54df38b83ca3b1209747b 66c0095a60a34c59a3390d2c9df00d73 +#: discord.Spotify.color:1 discord.Spotify.colour:1 of +msgid "Returns the Spotify integration colour, as a :class:`Colour`." +msgstr "" + +#: 80df3891719c4ecdbfbf1540c062886f discord.Spotify.colour:3 of +msgid "There is an alias for this named :attr:`color`" +msgstr "" + +#: 3ef9a24d763545acb4f24a5d289ec2cb discord.Spotify.color:3 of +msgid "There is an alias for this named :attr:`colour`" +msgstr "" + +#: 97308ab0289b48c6b918911a58a9a597 discord.Spotify.name:1 of +msgid "The activity's name. This will always return \"Spotify\"." +msgstr "" + +#: 8dca551009b444789adfa0d0fcb4c606 discord.Spotify.title:1 of +msgid "The title of the song being played." +msgstr "" + +#: d0687c8a579342cba812c673b56621aa discord.Spotify.artists:1 of +msgid "The artists of the song being played." +msgstr "" + +#: 65057f550e364368848a89daf74f96d8 discord.Spotify.artist:1 of +msgid "The artist of the song being played." +msgstr "" + +#: discord.Spotify.artist:3 ecec3cf51d2b4896906f928dae17b0c8 of +msgid "" +"This does not attempt to split the artist information into multiple " +"artists. Useful if there's only a single artist." +msgstr "" + +#: 73ba8c064af84734beb1457181271913 discord.Spotify.album:1 of +msgid "The album that the song being played belongs to." +msgstr "" + +#: 1a329a4988b34f5288ac278d2806f965 discord.Spotify.album_cover_url:1 of +msgid "The album cover image URL from Spotify's CDN." +msgstr "" + +#: c6d5df6af7634597886f212077f9b892 discord.Spotify.track_id:1 of +msgid "The track ID used by Spotify to identify this song." +msgstr "" + +#: c10b93e08a394c8fa658fea9d8cee51f discord.Spotify.track_url:1 of +msgid "The track URL to listen on Spotify." +msgstr "" + +#: 0c912b73bfe74d9b9736d6d3e34aca1c discord.Spotify.start:1 of +msgid "When the user started playing this song in UTC." +msgstr "" + +#: b6a0a3dce624443db41a83233c76221a discord.Spotify.end:1 of +msgid "When the user will stop playing this song in UTC." +msgstr "" + +#: cb55726247de4a8e8fa41253942fb6a9 discord.Spotify.duration:1 of +msgid "The duration of the song being played." +msgstr "" + +#: 2368f55e263f4e57b9256c714d6e201b discord.Spotify.party_id:1 of +msgid "The party ID of the listening party." +msgstr "" + +#: 8521704e5a85426f8785035e260b2b34 discord.member.VoiceState:1 of +msgid "Represents a Discord user's voice state." +msgstr "" + +#: d19a2b06ac6745cf97412af920e58255 discord.member.VoiceState:5 of +msgid "Indicates if the user is currently deafened by the guild." +msgstr "" + +#: ../../api/models.rst ../../docstring 00d1af14de6d4547ac426408cfb3330e +#: 022d0104c2db48bc9630f70a4304365e 02722029b4644ccbb2826596fdd7d4f2 +#: 03a5eb78e95e41108576c4db355fe914 03e71a7ef3c74ac7aeab4c072e40f78d +#: 0543f30da3e5475c9bd5eb027436314e 05e0203dbd8649cd8585fca15c617da7 +#: 06df0be9e38d4672b7997b4b6bed681c 08e3e9c93f0b4183ba0461cac59169eb +#: 095f7ca30ce74014962ea2b3236a9c3a 09e3beef264a4814a23c023bad7967f1 +#: 09eec61105ed4161b45e3ffdafd48bb1 0bc6ed7330724dd5990afe78502410f7 +#: 0d3d1607e68844609eed1db5d315d17c 0d7fa3aefcb74cbda495ff8a7ba6fbc6 +#: 11b797ca46964705b194c18b4a73a447 176e4886bf9f4105b2c77ab49bff6956 +#: 19f362c6d92d48a38052a262699789de 1a47b03bc43541c8ac4ed7daa9ca1088 +#: 1a5fb7ddf3a7455ea4289176cdc0aff8 1b2606ff5e8b4524989753c9ad467b97 +#: 1bdb2cabcf67495ebdc667608c720a06 1f9651133d7a430f8a24b9a645ada2ce +#: 21faf240333d4ce2bf3365f28aace9c3 22065b2145c345fcbc326d89075ec35b +#: 220cdabc3311432b998e5c424c465750 22ac68d587fe4abc9f96441f06046dd9 +#: 24e335c8ccce4904aa18f16df1c37ff0 27158b656eca4afe88f99efb05ccb80e +#: 272747f7539542f3b8a44148c72e26ea 2a608fc04cba49d98e1f1ddaeb64d63c +#: 2cfabf5b7fef435e84dfb3fc2787f1ac 2e73b3fbe6374c54a25603c479a50d5b +#: 301f746397184c208e2c02257b8dddbc 338106e55c8240eab14065502b864dfc +#: 35a8b82808b8453db119ab7ba0ebcdd1 364abd3036f54f50916f10f4efd58771 +#: 38411a48b02d428999e9c0ecf39097ae 38452ae8461d43858b5eedf649345464 +#: 39b4f683f3684b8cb1b34e32eea8ac7c 39e122018c1842f396b368886b48e775 +#: 3f61e1f35e8e409586a1c02b6434c7ad 40e0a342c08347f4a56b1ca567727562 +#: 440f85a803964393857b04290988e1dc 445c00ebbc034cf592fd52d5d03e6cd2 +#: 46bc1c63dd9e4910a17146639aada31f 495f29871fc9457e9d2309a9a716f0d5 +#: 4ab61677a7bb4b46a38295c13b89b84c 4ca295d01b0b49c58f92e474e0ed1fc7 +#: 4dee2a1342b24edcbb70f7c373b370a3 4e47f55a759e4da2818894aa503b7ee5 +#: 4e9a5a92ba97487c98c0e80a7c1da703 4ff0756fe2ff475e9426ecf6e42de593 +#: 597e2c7023454f9bae54cdbdb61770d9 5c87aebcd49e483a94cadb1a64305abf +#: 5d2422bd8d6c40aaa09875550353f8d8 614ea7004bc04ea0b4e031051f813524 +#: 6356776abd8f454aab1e3ef10a9b60ba 655791b8ec334318a71371e38c2748ad +#: 65592515d2344a05a46a09f7c2971220 65673938e9ab431fb0c36fba6144e5e1 +#: 65b623a6ad5942158f94d51716ea4f68 69cefcf03e884ac7b5fc11b7d1d29cf3 +#: 6d42276c22a945b28406f8e09ad56b0f 6d94e4d6b4274516b6b9f993418424ab +#: 6f14d3ecd2f343f7bb7a86e1056f87e5 6f42d562ae7947699c87a27afae00ca2 +#: 72133300fc0e4ceabfa5d18acd4f5a9c 7693963e34644ca1bd2effa6f88d8b9e +#: 77b5c1a970774a8ebeabdf892fe59af6 784be10dac3d459faa6de5dc766fca6b +#: 78e960b05b6f460ca4e148d0b59efded 7a27fafabfe045e1830b6e6d3c6728b6 +#: 7c45525c2a804ee983410a85d2856c72 7e3d3537787f4909a3f533956a0b2114 +#: 8011afda364b4ad79ae0165dd6b60d40 82e604d0bafb4db995460f2cd17d033d +#: 8387e2278a404919af843b93e8115ab7 88b635d0d40c4f37a563725261f1c623 +#: 89686148b0db4a0f9ea120462a7f62b3 8e36b6cc07aa42da819389f7b2caa577 +#: 8fd99964bc5f4c75b99e76cd55db8f3f 9173191c27e6484794007b6452c643b8 +#: 95a4a27c7cc446feb8ade2dd0ed19a75 977d255a45434383aa099d0cffd1a8f2 +#: 9807910de97640019833188504fba5e2 986840e8778c40bf91c6791d5f91ac9d +#: 997c9a6bf9f841e1a23ee87e07dc133a 998a56ee903a43baa0dcd25155351a0b +#: 999d70ebdc004054bed7337133d7badb 9cfa3c015b574cc9879d457ec5fb2607 +#: 9f597ce69b054fe48d2922e85db0c3af a79f925772d5431288f420c483672dff +#: a7eb34de6a7544ba80ac451d76e97de2 a854241a48da4657ac4191293b46900d +#: a90d060620ea4f589990c3d137e2fd63 ab173d33d46744e6a0cb8b961e49e23d +#: abb9957168004deb9b0b16726211ec29 ad846a914f534e62aa1a0fa410b7ffb3 +#: ae93341707b647f7ac229290218e5ebd b2584d98803a488da58a6cfeeb4ff514 +#: b337c6dc8c414befa7850e212ce7d7eb b89ba10007ff47f0a80093f54be43e16 +#: b8c22f4bd1b345eaa7b1ed351b8b599e b9452c8cf7c2467e9e6c1b7e509554ca +#: b99c99a9aae44872b07a6e5714355931 ba3676ed311e42e99fd2a599b2467dba +#: bb72445df2564b78b5412dd3dab80028 bc3aa6d4529e45068a1e542de6b4fb17 +#: bee43d44de1540dd8308d7840112e7ea bf0d57cc45cc4633bb0cc7df070c4418 +#: c036b2d5a57e4a3d89c4ac92c77e08bf c265aacd65f544b7b53d69cd86c1a6c9 +#: c6917a192f01402aabd064ec968591dd c73d884c4f3f47b3882953a0d0b64d00 +#: c776312038584368bc9ecec0c0ad8dbf c9fabdb2315b487abfb348c35ed9aeb0 +#: cd2df1c929cd456f8d9d8bf26bf9301d cd84f3ab22b34b47b43cca8064efcc1e +#: cf8df1038cd14c499b0f1e011403c79c d1bbad3b31bd49bfaea28fbc02d6c4ab +#: d20c90ab1d3b4e78a4b1fdb0230e5cee d4b6e88a914c4f039e215ddeec921bd5 +#: d5c8ea805b224e0e93e2aaefc85d438b d7244d7c36304984b34b1f7bc9f77171 +#: da073de05b9e4f528d3dc81a9e6ac777 de6c29b7c5de48cfbe3371df25e2e2ce +#: discord.AuthorizingIntegrationOwners.guild +#: discord.AuthorizingIntegrationOwners.user +#: discord.InteractionMetadata.interacted_message +#: discord.InteractionMetadata.original_response_message discord.SKU.url +#: discord.Thread.applied_tags discord.automod.AutoModAction +#: discord.automod.AutoModActionMetadata discord.automod.AutoModRule +#: discord.automod.AutoModTriggerMetadata discord.channel.CategoryChannel +#: discord.channel.DMChannel discord.channel.ForumChannel +#: discord.channel.GroupChannel discord.channel.PartialMessageable +#: discord.channel.StageChannel discord.channel.TextChannel +#: discord.channel.VoiceChannel discord.components.ActionRow +#: discord.components.Button discord.components.Component +#: discord.components.SelectMenu discord.emoji.Emoji discord.guild.Guild +#: discord.integrations.BotIntegration discord.integrations.Integration +#: discord.integrations.IntegrationAccount +#: discord.integrations.IntegrationApplication +#: discord.integrations.StreamIntegration +#: discord.interactions.AuthorizingIntegrationOwners +#: discord.interactions.Interaction discord.interactions.InteractionMetadata +#: discord.interactions.MessageInteraction discord.invite.Invite +#: discord.invite.PartialInviteChannel discord.invite.PartialInviteGuild +#: discord.member.Member discord.member.VoiceState discord.message.Attachment +#: discord.message.Message discord.monetization.Entitlement +#: discord.monetization.SKU discord.onboarding.Onboarding +#: discord.onboarding.OnboardingPrompt discord.onboarding.PromptOption +#: discord.partial_emoji.PartialEmoji +#: discord.raw_models.AutoModActionExecutionEvent +#: discord.raw_models.RawAuditLogEntryEvent +#: discord.raw_models.RawBulkMessageDeleteEvent +#: discord.raw_models.RawIntegrationDeleteEvent +#: discord.raw_models.RawMemberRemoveEvent +#: discord.raw_models.RawMessageDeleteEvent +#: discord.raw_models.RawMessageUpdateEvent +#: discord.raw_models.RawReactionActionEvent +#: discord.raw_models.RawReactionClearEmojiEvent +#: discord.raw_models.RawReactionClearEvent +#: discord.raw_models.RawScheduledEventSubscription +#: discord.raw_models.RawThreadDeleteEvent +#: discord.raw_models.RawThreadMembersUpdateEvent +#: discord.raw_models.RawThreadUpdateEvent discord.raw_models.RawTypingEvent +#: discord.raw_models.RawVoiceChannelStatusUpdateEvent +#: discord.reaction.Reaction discord.reaction.ReactionCountDetails +#: discord.role.Role discord.role.RoleTags +#: discord.scheduled_events.ScheduledEvent +#: discord.scheduled_events.ScheduledEventLocation +#: discord.stage_instance.StageInstance discord.sticker.GuildSticker +#: discord.sticker.StandardSticker discord.sticker.Sticker +#: discord.sticker.StickerItem discord.sticker.StickerPack +#: discord.template.Template discord.threads.Thread +#: discord.threads.ThreadMember discord.user.ClientUser discord.user.User +#: discord.webhook.async_.PartialWebhookChannel +#: discord.webhook.async_.PartialWebhookGuild +#: discord.welcome_screen.WelcomeScreen +#: discord.welcome_screen.WelcomeScreenChannel discord.widget.Widget +#: discord.widget.WidgetChannel discord.widget.WidgetMember +#: e107404ea2c94a5aaa45cbcc63c9130c e18c8d576865486dbf7e1e5055f5ce7c +#: e4ebc8ba68aa48d1ad1e4703697409ce ea38f3e356fa4161b8de01801d95f3b6 +#: ea5702097679494cbc117ca53b79b9d1 eb97cfb2bf1c4e2c98573c7e3bbd8c4a +#: ebfd2a17c7c64a649b40a97c0397f08d ec2d1bea39794ebcbef93b57b9de6d67 +#: ee3b3590bdcd478e9bf22ad66c97f6cb f23cf6ac9be042dbb7f0bbecb578259d +#: f2e4b8b8137d40a2bebbf3bc5de39968 f32c17be6b6e42cbbcc690990b864b62 +#: f40b4138a7f643cdad4ff34785e7a1a6 f619d28bcac54b87b9826c65caaa95d4 +#: f893de4cfff14b6fad708001d112c886 f8d9a7bee8654e418338d5153f0346e0 +#: fc1703444c8e43aeb6b207c0f0770564 fd31d6e51ff848fbaa774b695fb45f96 +#: fdd925840fb24e89b0f94205c0acc9fb ff120de4acd049acb1bd45f48960e558 of +msgid "type" +msgstr "" + +#: 086298bde6d3427996bb79be49ab9aec 0fc3be486f3b423da7bc607b592c9e7c +#: 105352a161e5411ba6f61e2fc15386f2 1073ecfb4a744835bbfaeda3378c9886 +#: 11c2f9ea736642a693a9574bc0b22721 12dadc55d4ba4391961b514f8a8f42cb +#: 200ce5183d284487b83477bba2b7c24f 21d89e71e8b84b7ea2afdb3b82c26c07 +#: 24c8e520b8a64e1b985739e53ed463bc 285640291e424cc5beb45388126d03a9 +#: 3033e6f13ed54783b7677f34108bf609 4003d244e62a42b7ab7815a5cfe25417 +#: 55766eb1c16d48b9a0c2abbf506e9b9e 5fa3865947e547d3861918f336602cc1 +#: 60abce50c46249439a7420028aa5b862 672f9b3780724032b26e6627e52d3591 +#: 6afc41742da04070adb35652a57c9da3 789166acd786435a96c38745c7816111 +#: 7e4e194346944a07bc961f3e35ff72bd 8dd5694c8ba7416c96e14265ef887819 +#: 91ee58c33d2848ed8446bec74e5c8c94 94f78f94eef14c5eab8e517a73ffd096 +#: 975fd0fa469044a8a9710bc449dee9bc 9c07a12592d74668bddd9fa2ad17b925 +#: ae2156faa6f64461abb53909ccabe94a aed4fc542c3c49dd9f4ffe40e456a225 +#: afe0c59747ee4a43b812d58594001451 c0f57792bcc94fe6a59671a5e2fb01b3 +#: c553482c64d74d31a199dacf7d704993 df0105c172b14940b0ce5d8fb044beee +#: discord.abc.Messageable.can_send:4 discord.automod.AutoModRule:69 +#: discord.channel.CategoryChannel:56 discord.channel.ForumChannel:86 +#: discord.channel.TextChannel:82 discord.components.Button:35 +#: discord.components.SelectMenu:70 discord.emoji.Emoji:45 +#: discord.emoji.Emoji:51 discord.emoji.Emoji:57 discord.emoji.Emoji:69 +#: discord.guild.Guild:65 discord.guild.Guild:81 discord.guild.Guild:166 +#: discord.integrations.BotIntegration:33 discord.integrations.Integration:33 +#: discord.integrations.StreamIntegration:33 +#: discord.integrations.StreamIntegration:39 discord.invite.Invite:71 +#: discord.invite.Invite:84 discord.member.Member:62 +#: discord.member.Member.mentioned_in:8 discord.member.VoiceState:7 +#: discord.member.VoiceState:13 discord.member.VoiceState:19 +#: discord.member.VoiceState:25 discord.member.VoiceState:33 +#: discord.member.VoiceState:39 discord.member.VoiceState:49 +#: discord.member.VoiceState:67 discord.message.Attachment:90 +#: discord.message.Message:23 discord.message.Message:85 +#: discord.message.Message:138 discord.monetization.Entitlement:39 +#: discord.monetization.Entitlement:65 discord.onboarding.Onboarding:15 +#: discord.onboarding.OnboardingPrompt:33 +#: discord.onboarding.OnboardingPrompt:39 +#: discord.onboarding.OnboardingPrompt:45 discord.partial_emoji.PartialEmoji:38 +#: discord.raw_models.RawReactionActionEvent:56 +#: discord.raw_models.RawReactionClearEmojiEvent:33 +#: discord.reaction.Reaction:42 discord.reaction.Reaction:48 +#: discord.reaction.Reaction:60 discord.reaction.ReactionCountDetails:13 +#: discord.role.Role:59 discord.role.Role:81 discord.role.Role:87 +#: discord.stage_instance.StageInstance:53 discord.sticker.GuildSticker:47 +#: discord.threads.Thread:95 discord.threads.Thread:101 +#: discord.threads.Thread:108 discord.user.BaseUser.mentioned_in:8 +#: discord.user.ClientUser:55 discord.user.ClientUser:63 +#: discord.user.ClientUser:69 discord.user.ClientUser:81 discord.user.User:55 +#: discord.user.User:61 discord.widget.WidgetMember:43 +#: e0e606cdfb3344ea9a2910bb9d83e6de ef47610b7fd44937a5ef4143f95f5fc0 +#: f89aa2fc767048f9b9414df39ccb147b ffb3dc1bff1343b9a69bd7bd94289cef of +msgid ":class:`bool`" +msgstr "" + +#: 4e168944987344bba51eddacf973f7d4 discord.member.VoiceState:11 of +msgid "Indicates if the user is currently muted by the guild." +msgstr "" + +#: 9875674d947d4f31b35f6d3a57996149 discord.member.VoiceState:17 of +msgid "Indicates if the user is currently muted by their own accord." +msgstr "" + +#: 089ad680a6c643b9935e870ac1bc364d discord.member.VoiceState:23 of +msgid "Indicates if the user is currently deafened by their own accord." +msgstr "" + +#: 6c6d13d9551e4ff7a6b6d531c1d196ca discord.member.VoiceState:29 of +msgid "Indicates if the user is currently streaming via 'Go Live' feature." +msgstr "" + +#: 5cc560cd8bcf4b94823207cc822ad75c discord.member.VoiceState:37 of +msgid "Indicates if the user is currently broadcasting video." +msgstr "" + +#: 06d90bf0834b4f71b75e975612ee0644 discord.member.VoiceState:43 of +msgid "Indicates if the user is suppressed from speaking." +msgstr "" + +#: 400787b0d95d4aed99a0a29fb34c711a discord.member.VoiceState:45 of +msgid "Only applies to stage channels." +msgstr "" + +#: c6f155a526404a928c64818aa2e3e40f discord.member.VoiceState:53 of +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 "" + +#: 3cb3767a09b54e99b0f689f6dfcbd40e discord.member.VoiceState:57 of +msgid "Only applicable to stage channels." +msgstr "" + +#: 0dd0b8ab160843ff8798020ac2f60772 bd59fe44ce914d0285c9bd326f4f62ad +#: discord.invite.Invite:125 discord.member.Member:30 discord.member.Member:69 +#: discord.member.Member:77 discord.member.VoiceState:61 +#: discord.scheduled_events.ScheduledEvent:51 discord.threads.Thread:128 of +msgid "Optional[:class:`datetime.datetime`]" +msgstr "" + +#: 309697c5722a42ab82a6fba34345d73b discord.member.VoiceState:65 of +msgid "Indicates if the user is currently in the AFK channel in the guild." +msgstr "" + +#: 52c3b08b0e2648b88bccee6b6ca24e56 discord.member.VoiceState:71 of +msgid "" +"The voice channel that the user is currently connected to. ``None`` if " +"the user is not currently in a voice channel." +msgstr "" + +#: 035717ca83284d6f87bf02244eb995d9 discord.member.VoiceState:74 of +msgid "Optional[Union[:class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "" + +#: 5ee3c89ba12a4b97861e1536c42d843d discord.channel.PartialMessageable:1 of +msgid "" +"Represents a partial messageable to aid with working messageable channels" +" when only a channel ID are present." +msgstr "" + +#: discord.channel.PartialMessageable:4 f0dc803cf2f841e9a63f0f53916c6748 of +msgid "" +"The only way to construct this class is through " +":meth:`Client.get_partial_messageable`." +msgstr "" + +#: 3b17bb6aee87426a8954360e77bfaf57 discord.channel.PartialMessageable:6 of +msgid "Note that this class is trimmed down and has no rich attributes." +msgstr "" + +#: 9b71a5537ffc44ed88015a1b14bb8f7d discord.channel.PartialMessageable:14 of +msgid "Checks if two partial messageables are equal." +msgstr "" + +#: 5b8ad364746c434d99276855f965a84f discord.channel.PartialMessageable:18 of +msgid "Checks if two partial messageables are not equal." +msgstr "" + +#: 17317a1964e741529f60995ac19f5717 discord.channel.PartialMessageable:22 of +msgid "Returns the partial messageable's hash." +msgstr "" + +#: discord.channel.PartialMessageable:26 fa864924ff55465baeeeb587848822fa of +msgid "The channel ID associated with this partial messageable." +msgstr "" + +#: 024a39c377b74088a8e5d21409e13189 discord.channel.PartialMessageable:32 of +msgid "The channel type associated with this partial messageable, if given." +msgstr "" + +#: discord.channel.PartialMessageable:34 f69b9d38552d4efd9d7f1beb314b5d4b of +msgid "Optional[:class:`ChannelType`]" +msgstr "" + +#: 2047ab6ff868447b8b80f9ec9ec486df a55a872065654b93971d8c6ecb32ddcf +#: discord.abc.Messageable.can_send:1 ee064c6766394f2fa4a28f0119527874 of +msgid "" +"Returns a :class:`bool` indicating whether you have the permissions to " +"send the object(s)." +msgstr "" + +#: 14d2bfd03a6e469d8ee65a8d101afb5f 2e7906ec63d841a4878301bd49409146 +#: 8d0ce9e20b7c4622b2f7c96ac7e3f046 discord.abc.Messageable.can_send:3 of +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "" + +#: 0384c1134c80472eac35ba53c22d90ff b05306d39e7845898a8908e0817898fb +#: discord.abc.Messageable.can_send:6 f3e0f8c526b743fdb038573a85012d71 of +msgid "An invalid type has been passed." +msgstr "" + +#: 0dec3dbb162842d78a61e2d1f4a0da1d 25b6541bc41841ccbf8b1649f85a1f9d +#: 5d3bd874ef084f87ab4ac6c6d08cb08a discord.abc.Messageable.fetch_message:3 of +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "" + +#: 4ae78ba5a69f45d4a4ae83d62b4802f3 800b0904653841ea8964dbb973b192ae +#: discord.abc.Messageable.fetch_message:6 fdbcb5604d10415c86135acc54b67c0c of +msgid "The message ID to look for." +msgstr "" + +#: 11df635629de48ef8f9d38590f9f8676 c2f7f6b8b80e4041818f55005ce8b67a +#: discord.abc.Messageable.fetch_message:9 e18b1b81cff840a99be2aaac63a6f05e of +msgid "The message asked for." +msgstr "" + +#: 0e44b08a661a4e4cb8977253c1a1fce1 54db8105f8b44c2cb4f23b1d50d1686f +#: 6e0a7e5d3ecd440881fcaf5c610130f0 discord.abc.Messageable.fetch_message:10 +#: discord.abc.Messageable.send:100 e0e1920c1d0342bab09dc720dc295044 +#: eeb551cbf2bc4573a7518a774f0ab3e2 of +msgid ":class:`~discord.Message`" +msgstr "" + +#: 6f8b6217053e47479783af39a2aff1f6 818359f01e9b4e949e0d69159449dd63 +#: 9ae4e78f4cbb4eab83ecc6f4fabaf8cc discord.abc.Messageable.fetch_message:12 of +msgid "The specified message was not found." +msgstr "" + +#: 013831d1e99644938c6dd757927e6079 1c4b5de6d0084edfb0c36ddc586cd125 +#: 87b677120b8244279256a5f0d5ba6cb3 discord.abc.Messageable.fetch_message:13 of +msgid "You do not have the permissions required to get a message." +msgstr "" + +#: 1e046de530f5431fa8a01caec3544a8a 72cd9cf4d7734dba8283d21a3e6a2960 +#: a04b7c15a11f4d91b3ef716d191fc2e5 discord.abc.Messageable.fetch_message:14 of +msgid "Retrieving the message failed." +msgstr "" + +#: 34a4d40c3a264dc996c94056170a151d a2b5b9f3f9864954a6c95353f0840647 +#: d62bbb3b47734dc5a98c28915226ceb7 discord.abc.Messageable.history:1 of +msgid "" +"Returns an :class:`~discord.AsyncIterator` that enables receiving the " +"destination's message history." +msgstr "" + +#: 1e013f815e324252ba499008afce7129 d846b20a22f54d4bbaf1433acb092177 +#: discord.abc.Messageable.history:3 eeab1364847b4490bc5bf659ea280f89 of +msgid "" +"You must have :attr:`~discord.Permissions.read_message_history` " +"permissions to use this." +msgstr "" + +#: 2325531f3a304ef38fa74dc2ae0ffc0d 62c477d54eab4eb5b3303b8b364c89c4 +#: cedec68e61774ccd965a29d9620bb85b discord.abc.Messageable.history:6 of +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 "" + +#: ad959063203140e2a8fec35d19f3b2c1 b18b7dbe82754883974c8fb7505d4715 +#: d447181fcf274a4f8318c716bd49fd73 discord.abc.Messageable.history:11 of +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 "" + +#: aacb6953371648ccb5e72a11bdaabbe0 ad29354d07e7456d9ac05382a07917a3 +#: discord.abc.Messageable.history:16 f56ba8bbb92847e0817c7e5cf592bfae of +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 "" + +#: 94944dd5859741c495b946a77434e4b3 da844572f0ee4e3db1ab88bc0ae53ace +#: ddf1d1beab504636ab1745bb2a90b04f discord.abc.Messageable.history:21 of +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 "" + +#: 2158e52532114f00b4b65cd0423df2af 2bf2f78c9c8f4a729d8f42921b489c38 +#: 5755a7ad7f454b7cac7a362f9721ba8b discord.abc.Messageable.history:28 of +msgid "" +"If set to ``True``, return messages in oldest->newest order. Defaults to " +"``True`` if ``after`` is specified, otherwise ``False``." +msgstr "" + +#: 004531da24fb489bb78e99a15ce76ef7 2227a40f1a6346e1a0dbe7f890162ed3 +#: 27a00c698a184861a3e79a26f6bebd2e 54460f7075c6462b90bb377d32ddffe4 +#: 5fdbbfc37c264fbdac887a1d265d4d0d 978ec7ef1794400e84a2dba4651a187b +#: a56a4e26f11646db9973fb9a82041c86 c7f12b2d61ff4ddeac3d4e82b620a453 +#: discord.abc.Messageable.history +#: discord.channel._TextChannel.archived_threads discord.guild.Guild.audit_logs +#: discord.guild.Guild.bans discord.guild.Guild.entitlements +#: discord.guild.Guild.fetch_members +#: discord.member.flatten_user..generate_function..general +#: discord.reaction.Reaction.users +#: discord.scheduled_events.ScheduledEvent.subscribers +#: discord.user.User.entitlements of +msgid "Yields" +msgstr "" + +#: 1362e64547b04b19aa2381aeab3e61a4 4d8cd2cb40d64e9d8476dc4f2f34ff2e +#: a02393114810463a8e9d4c9c7191362e discord.abc.Messageable.history:32 of +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr "" + +#: 08bc04473e1c44da9381c5b7866fb287 1a061777efb3481fada5ffff633a266f +#: aabc54e6131b4d4a81f580c6c926badb discord.abc.Messageable.history:34 of +msgid "You do not have permissions to get channel message history." +msgstr "" + +#: 55b54bcf5eca44b1a17570404a0fe8b5 discord.abc.Messageable.history:35 +#: f2f1efc2d20a4530b8075de51578d2a5 f77840d45e1943359bf5aa4d7cbafd58 of +msgid "The request to get message history failed." +msgstr "" + +#: 3e3b6a5f5b8c4f55ae00cb8003b37981 71713b3b7da14660975590d847fa9ea1 +#: discord.abc.Messageable.history:36 ed437085f8744eecbf24ae254b3e43af of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr "" + +#: 25bd697769214744832fa1612bc8518a 48f6a2450ed6433da0a303deb56d0dd7 +#: 5bbda7c77f3240319cda935ecec72876 7b71c6405b814333af85829dd3f29d30 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 ad7ad919296e43aa91303b7877fb6571 +#: b5677759b9d043b6805db7ae8a3ad143 bc6b48a124404bd1892f9edada1a6b58 +#: discord.abc.GuildChannel.set_permissions:25 +#: discord.abc.Messageable.history:39 discord.channel.StageChannel.purge:48 +#: discord.channel.VoiceChannel.purge:48 discord.channel._TextChannel.purge:48 +#: discord.guild.Guild.audit_logs:35 discord.guild.Guild.bans:35 +#: discord.guild.Guild.create_forum_channel:63 +#: discord.guild.Guild.create_text_channel:56 +#: discord.guild.Guild.fetch_members:29 discord.reaction.Reaction.users:27 +#: discord.scheduled_events.ScheduledEvent.subscribers:38 +#: discord.threads.Thread.purge:48 ed1cdd19826443bcafb0987ebb091e42 of +msgid "Examples" +msgstr "" + +#: 01e7cb99a36b47abbce9830768f0aaa7 51b8dfbb15bb43ef95c144c7a5d3f6ba +#: 745ca57186c14e1785a2e80ce870df80 7a9234e954ec4317a5a562863b521268 +#: discord.abc.Messageable.history:40 discord.guild.Guild.bans:36 +#: discord.guild.Guild.fetch_members:30 discord.reaction.Reaction.users:28 +#: discord.scheduled_events.ScheduledEvent.subscribers:39 +#: edbc71da771842d3aea9af593db2f036 f95b2fa403dc4f92a794b30158d2f431 of +msgid "Usage ::" +msgstr "" + +#: 154df22c3326437ebd9a4d0421852b9e 976781fce2904a7ea929a7f179bad61a +#: ab788cd1146c42759b597d948a21f602 d3f3a3b667f54db189761cb1f7a9880c +#: discord.abc.Messageable.history:47 discord.reaction.Reaction.users:34 +#: discord.scheduled_events.ScheduledEvent.subscribers:44 of +msgid "Flattening into a list: ::" +msgstr "" + +#: 4e0136f8359346d6ae9e6d3eb61aa0d7 ace68b84a7ee43cbb3d166231f224751 +#: bd8f03a7a627458e993b3312ffe4d046 discord.abc.Messageable.history:52 +#: discord.guild.Guild.bans:16 discord.guild.Guild.fetch_members:10 +#: discord.member.Member.edit:35 eac891cd3dbd47dc9b8fe4be3f905b5b +#: f55d483d8f7243539066e1a0a2e89189 of +msgid "All parameters are optional." +msgstr "" + +#: 4f0650134f1040c6b9ae6622883f8748 8ca3f84c6e354ac5a6abcc0bf696e629 +#: dc000ded9dd346c096a38a8956dfdc6a discord.abc.Messageable.pins:3 of +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "" + +#: 08b2f9ec55a44bf8a9f0ca1e3fd0c560 5219c84db278497aafcba6d6e944b9fc +#: 816eb61199e34968bfdbee4f24a84ba5 discord.abc.Messageable.pins:7 of +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 "" + +#: 549042b4685847aba193e422e7789a14 da415a879e4147c4a0af1d630cc81346 +#: discord.abc.Messageable.pins:11 e283aaccd4144d6e95f83432985ac90c of +msgid "The messages that are currently pinned." +msgstr "" + +#: 1b6e9a8893454a5db4741c00c3bc8031 64745f109e7948b0a14d1d21ddb9a3ec +#: 875dee04a4ff4712a8b83bd629d6ad29 discord.abc.Messageable.pins:12 of +msgid "List[:class:`~discord.Message`]" +msgstr "" + +#: 2bc50ccd657f46209917f5d9f4099650 5f422bc795f7480fa14af883be52f572 +#: b2f62ff86c1d4e9eaf9d1ea62937f171 discord.abc.Messageable.pins:14 of +msgid "Retrieving the pinned messages failed." +msgstr "" + +#: 2a04455df66145088795dfb431c2b0e9 66d2246603944b76b2b9c3683d1e1363 +#: discord.abc.Messageable.send:3 ed69aa77f03b4955bbe3d5671c0e8088 of +msgid "Sends a message to the destination with the content given." +msgstr "" + +#: 33cd3f176f8f4a66aa1bb1de515d839a bb15699719b54825b8d487d07891ab85 +#: d514a06a45d546b5af908df5d43dc2cb discord.abc.Messageable.send:5 of +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 "" + +#: 70aab3326d8f44e7bacd069c736a0420 724dcfafc4784a6e9190169d5b4ff6fc +#: ac929a3b993642c4959eb60a184fa042 discord.abc.Messageable.send:9 of +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 "" + +#: 12384d2719ae45da97444ff82dc4f2d6 5d8119f4a9344fd8bb519aebe2645bff +#: 71fcdcc413ae47cb8f3aee3a55f10402 discord.abc.Messageable.send:14 of +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 "" + +#: 1f03d90af71148a9a80d108cb0925c4f 67ccce517035472ea66a0b51302a98cb +#: db5a50cea2b24ff4bca646659c4d8cc6 discord.abc.Messageable.send:20 +#: discord.channel.ForumChannel.create_thread:14 +#: discord.interactions.InteractionResponse.send_message:6 of +msgid "The content of the message to send." +msgstr "" + +#: 6af57bec404e422082a79e523a309932 9fce481c33fe4f38ae23dab3e4faf570 +#: af87dc0d04b748c4a8a24c800c8496bf discord.abc.Messageable.send:23 +#: discord.interactions.InteractionResponse.send_message:17 of +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "" + +#: 270d2242a6ec45928378eb596ae18294 8ee729028d6946f9aa0cc6b36c0941c6 +#: 96484f4d35624bdd83b5e136d83bb9ad discord.abc.Messageable.send:26 +#: discord.channel.ForumChannel.create_thread:17 of +msgid "The rich embed for the content." +msgstr "" + +#: 06f3de9c7238498a8af9d93d7325365a 8cb56dd64e2c4c6199d7efaee33d3c2f +#: discord.abc.Messageable.send:29 +#: discord.channel.ForumChannel.create_thread:23 +#: discord.interactions.InteractionResponse.send_message:36 +#: e16b27219fda4529824444922c14f332 of +msgid "The file to upload." +msgstr "" + +#: 3a17a09c33884706a4449b3f40d6cdd6 71a4376c8faa43328c788c7021c3cf72 +#: 9b87132b9bb447f8af98bd5da3e604f8 discord.abc.Messageable.send:32 +#: discord.channel.ForumChannel.create_thread:26 +#: discord.interactions.InteractionResponse.send_message:39 of +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "" + +#: 55c2f9866dc74139b0feab43272e038d 88a081070fd044f1962c54e034ac21e6 +#: b70a45a4cce344acb40ad3072b10fb24 discord.abc.Messageable.send:35 +#: discord.channel.ForumChannel.create_thread:35 of +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 "" + +#: 0682ef24bd354948b962042a67084324 0f48f9d6b3e741e88aa2c3bc7d806b59 +#: 926fcea09e55478190f384b73306866a discord.abc.Messageable.send:39 of +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "" + +#: 33fb702867244946add0e91965debb6d ab8ae4adffea4ea1ad666e6619212c31 +#: d3f5fee321ed4c12b0d13ef20bc64ede discord.abc.Messageable.send:39 of +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "" + +#: 4e5d6a26919f4ecbbf31c7688e4a63ed 75b7f2ddb4c744648d05f3e322561b4c +#: a316e7fd64e540af960514409d0e2f77 discord.abc.Messageable.send:44 of +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 "" + +#: 14f1d3c69b914877a492f43e66ec40b1 1d43d14e53314fd98fb480f4c227d8c2 +#: 7837a952a01b4658b8eaca483bdf5339 a046f5017f4b49e8b01e1a6448f58d41 +#: discord.abc.Messageable.send:49 discord.message.Message.edit:46 of +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 "" + +#: 1ff05d97ab3c410cbfab12ff72fc439a 76e68b02a3534b59bb633ccfab46cc5b +#: d8b69682b7294cac8417eaa4662fb1fb discord.abc.Messageable.send:49 +#: discord.channel.ForumChannel.create_thread:39 +#: discord.interactions.InteractionResponse.edit_message:40 +#: discord.message.Message.edit:46 f47f15229801436fa9101633e7c271e3 of +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 "" + +#: 12ae0cd2debd436ba454389a57dd9578 2aa113aa350843c58a84928aff36e57e +#: 4637e02b33794bb39d8bbf9635ea207f discord.abc.Messageable.send:59 of +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 "" + +#: 0da0de0227bd4c8b9819086cd5d59cf0 6e42ff8967e144e3ae89f80e28a26b06 +#: d16e5a003d5c4a35b2f276da520d2469 discord.abc.Messageable.send:59 of +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 "" + +#: 27c40492605d46f4b6d1ec39f44617cb a203a5bbf16240e6b0b6018534cfb6cb +#: discord.abc.Messageable.send:68 fa82c635e540411192f7b2397d7c3910 of +msgid "" +"If set, overrides the :attr:`~discord.AllowedMentions.replied_user` " +"attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "" + +#: 5a1768e861e9461f8e873b9caaaafbe3 aaeebba9d9a64174b83aa7be6aae9540 +#: discord.abc.Messageable.send:68 f3fbe7c7e9574f468a6adc37e05b90a0 of +msgid "" +"If set, overrides the :attr:`~discord.AllowedMentions.replied_user` " +"attribute of ``allowed_mentions``." +msgstr "" + +#: 34faeb47cd6d48c5bbd1a5beafac4e49 bd4855af588b4e1988b99aac83ede6de +#: cf005a229e6e4514a0a1788d1edc0f3e discord.abc.Messageable.send:73 +#: discord.channel.ForumChannel.create_thread:47 of +msgid "A Discord UI View to add to the message." +msgstr "" + +#: 00099963c8a84315afd165852b85479e bcf7573f6fb444e38ceeeb4e08a9b320 +#: discord.abc.Messageable.send:76 ed29a8c13ec640fa92a87f37475ac04c of +msgid "" +"A list of embeds to upload. Must be a maximum of 10. .. versionadded:: " +"2.0" +msgstr "" + +#: 1fa752ebb98b48968581074edbd1b6e1 discord.abc.Messageable.send:76 +#: discord.channel.ForumChannel.create_thread:20 +#: f103ebfe04b44e86849a58ad2e1e0dfe f324a93551a240b98f56ccda5ac85d13 of +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "" + +#: 4fb386188eb34f18a71304f7add2e62b b1d45afa98b64e6fa0ac204136beeb14 +#: discord.abc.Messageable.send:81 fef9be1b0ddc4247beb8c8dbc4822665 of +msgid "" +"A list of stickers to upload. Must be a maximum of 3. .. versionadded:: " +"2.0" +msgstr "" + +#: 291f28b0846e48b18cf6bf41c291be37 50a1e07e506e41859f67cc406b77ce5b +#: discord.abc.Messageable.send:81 +#: discord.channel.ForumChannel.create_thread:29 +#: f0058a94c72e4c99a07b8ed475f56cd5 of +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "" + +#: 5fd776e27b6b4fd59ec695fbd41b251a a5e4c6e0b2894fd0a8ecc23a1c4d3b5a +#: discord.abc.Messageable.send:86 +#: discord.interactions.Interaction.edit_original_response:46 +#: discord.interactions.InteractionMessage.edit:40 +#: discord.interactions.InteractionResponse.edit_message:37 +#: e3b279330bc34955b55950c71551319c of +msgid "Whether to suppress embeds for the message." +msgstr "" + +#: 1bfc49ed975b4dd6803c578b5a1b9a11 7b98f69bb68f41769f08d7f4087f8aca +#: 98f82715cfdd4551a4255c4314e32cf3 discord.abc.Messageable.send:89 of +msgid "" +"Whether to suppress push and desktop notifications for the message. .. " +"versionadded:: 2.4" +msgstr "" + +#: 1f656b33b85f44f1b8d7ef979f3fb091 6f0bd7ae71044d439a4aacd4001103f2 +#: c5df4f33c29747b78f070b6c57fe5c31 discord.abc.Messageable.send:89 of +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "" + +#: 172e6867a25d47b49adfa19666d2445a b141ceeb37ae4582a08741b71a2246bd +#: d552d88161fd406dbd970c7e913296af discord.abc.Messageable.send:94 +#: discord.interactions.InteractionResponse.send_message:42 of +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "" + +#: 4d02fb8bd44244f4ab7c7a7edcc06076 d267e037031c49eb8e18cccf60f0c73f +#: discord.abc.Messageable.send:94 +#: discord.interactions.InteractionResponse.send_message:42 +#: e130dcbd42754c9f8dad4109bb0a107b of +msgid "The poll to send." +msgstr "" + +#: 3a4f436feb9b4de4a168d2d5a14fbb8d 4e9295f65811429bad49c668d0b4d63c +#: 529869019b26467eabd9b22c54f8a337 5ef39d889467448fa24ecf26ae56b3e5 +#: discord.abc.Messageable.send:99 discord.message.Message.reply:8 of +msgid "The message that was sent." +msgstr "" + +#: 27d01e18735f42969e57b866ee44ac34 4fd022a21beb4f86a7a42bb8fc34934c +#: 88c91e15b9a246d7ba6c0a0c4a8cd3ca discord.abc.Messageable.send:102 +#: discord.interactions.InteractionResponse.premium_required:11 +#: discord.interactions.InteractionResponse.send_message:50 +#: discord.message.Message.reply:11 e115079242b5446f93fb52a4a2929591 of +msgid "Sending the message failed." +msgstr "" + +#: 11607a716ca841198785219e0ca22b26 4505f54833d2487e9273977980d743f3 +#: 653f7d3602144d8e976bf3697fca85f6 ae8d9e25950748d7b741fcc4d782933b +#: discord.abc.Messageable.send:103 discord.message.Message.reply:12 of +msgid "You do not have the proper permissions to send the message." +msgstr "" + +#: 604cb5ce8f63403583ed85ead7908ba4 922ccd9a531a4fc2a1b337e4b5b65624 +#: cd2845f86cc544029fe38f244567082a discord.abc.Messageable.send:104 of +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 "" + +#: 0256a90926ae4ba39c97264975e6f972 433a232ac737443cadd8e5f32c10aea4 +#: da262d70dc734e058487c9d9d7fb55da discord.abc.Messageable.trigger_typing:3 of +msgid "Triggers a *typing* indicator to the destination." +msgstr "" + +#: 10bacd45da084132bd3fef9ed8d250ca 7fa85cc40e9a4280a73c347dfd23b6c1 +#: 9e7da29277964bc586866aee221c4d5a discord.abc.Messageable.trigger_typing:5 of +msgid "" +"*Typing* indicator will go away after 10 seconds, or after a message is " +"sent." +msgstr "" + +#: 14645c52282b4897948d349951d1024a 27bc06838ac848c3b0fe0336815bbeac +#: 29925c0db7454fd6a47a22df42a1d4f7 2ee40ebde871468f8f6de6897dac9c7d +#: 3666c2339d0a49e19d24271c3bcba8bd 38872441954a4937b4adbe036302e6e8 +#: 75890795eb3141649ba62f2337421e6d 782f366e5ed847f6bf6c788c4f1925ff +#: 86bbc2437e30463eba135081562d8883 93aac34c639a47d9b97c351311f4762b +#: 9b0abd1a428341979fb585f00a3923ac 9b4d5894f2f7434e8f7a6db8d32e038b +#: 9ee6181f007c4587958af0e67b61b634 a3c36d216f0b40c9a7c15665a87b7ddb +#: ae96e1efcd9d40988c62cd01273b26ea c79512090a914dba8ab3fa21fd75cc6e +#: cc254c16841e4da597b2cb03121e72a8 ce4e0e456b5b4d0cba2b85d163688001 +#: d6e84ae4d1504d90b0e567c3f8d16ffa d91143a7220f4b34bf74155cb8ae8be8 +#: discord.abc.GuildChannel.delete:16 discord.abc.GuildChannel.move:51 +#: discord.abc.Messageable.trigger_typing:8 +#: discord.automod.AutoModRule.delete:12 discord.channel.GroupChannel.leave:10 +#: discord.channel.StageChannel.delete_messages:28 +#: discord.channel.VoiceChannel.delete_messages:28 +#: discord.channel.VoiceChannel.set_status:17 +#: discord.channel._TextChannel.delete_messages:28 +#: discord.emoji.Emoji.delete:15 discord.guild.Guild.ban:25 +#: discord.guild.Guild.chunk:16 discord.guild.Guild.create_integration:20 +#: discord.guild.Guild.delete:10 +#: discord.guild.Guild.delete_auto_moderation_rule:13 +#: discord.guild.Guild.delete_emoji:18 discord.guild.Guild.delete_sticker:20 +#: discord.guild.Guild.edit_widget:20 discord.guild.Guild.kick:20 +#: discord.guild.Guild.set_mfa_required:16 discord.guild.Guild.unban:20 +#: discord.integrations.Integration.delete:17 +#: discord.integrations.StreamIntegration.edit:22 +#: discord.integrations.StreamIntegration.sync:12 +#: discord.interactions.Interaction.delete_original_response:16 +#: discord.interactions.InteractionMessage.delete:14 +#: discord.interactions.InteractionResponse.defer:35 +#: discord.interactions.InteractionResponse.edit_message:52 +#: discord.interactions.InteractionResponse.pong:11 +#: discord.interactions.InteractionResponse.send_autocomplete_result:11 +#: discord.invite.Invite.set_scheduled_event:16 +#: discord.member.Member.add_roles:25 discord.member.Member.ban:9 +#: discord.member.Member.kick:7 discord.member.Member.move_to:21 +#: discord.member.Member.remove_roles:25 +#: discord.member.Member.remove_timeout:17 discord.member.Member.timeout:17 +#: discord.member.Member.timeout_for:19 discord.member.Member.unban:7 +#: discord.message.Message.add_reaction:20 +#: discord.message.Message.clear_reaction:20 +#: discord.message.Message.clear_reactions:11 discord.message.Message.delete:24 +#: discord.message.Message.pin:18 discord.message.Message.publish:14 +#: discord.message.Message.remove_reaction:25 discord.message.Message.unpin:18 +#: discord.monetization.Entitlement.consume:11 +#: discord.monetization.Entitlement.delete:10 +#: discord.reaction.Reaction.remove:19 discord.role.Role.delete:15 +#: discord.scheduled_events.ScheduledEvent.delete:9 +#: discord.stage_instance.StageInstance.delete:15 +#: discord.stage_instance.StageInstance.edit:22 +#: discord.sticker.GuildSticker.delete:15 +#: discord.threads.Thread.delete_messages:30 f0af5aeed9c64f9682895d74ab8d663f +#: of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: 0d3a00bc83d3498495522af06e5f9829 507759ccb3074f54855e48e5f971d798 +#: 82ac5b60c6c54cc69673118552352f27 discord.abc.Messageable.typing:1 of +msgid "" +"Returns a context manager that allows you to type for an indefinite " +"period of time." +msgstr "" + +#: 8a9ffc24518f4de293cc4b65774a51d8 ae5e1f660cfe4a0b92ae7b946305dec5 +#: b115df81ecdf400cb4077a062bac2160 discord.abc.Messageable.typing:3 of +msgid "" +"This is useful for denoting long computations in your bot. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "" + +#: 9267e098f8054f019857c139f7175481 a59c82762ab04a37b73a0ad680efb1c5 +#: discord.abc.Messageable.typing:9 f38b5698c9964d15a7dd0e1ff97642fd of +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 "" + +#: 5a69aa7fa8774768bebc130243d33f24 a9a905b97c2a48ebbf86176eaeee6469 +#: c30c993c97f54668907dcea50623c843 discord.abc.Messageable.typing:12 +#: discord.guild.Guild.bulk_ban:10 of +msgid "Example Usage: ::" +msgstr "" + +#: 715e396d169947279c18eb2f259bd903 9b14b15d4eb74f3f82993eca73ef83e5 +#: discord.channel.DMChannel.get_partial_message:1 +#: discord.channel.PartialMessageable.get_partial_message:1 +#: discord.channel.StageChannel.get_partial_message:1 +#: discord.channel.VoiceChannel.get_partial_message:1 +#: discord.channel._TextChannel.get_partial_message:1 +#: discord.threads.Thread.get_partial_message:1 of +msgid "Creates a :class:`PartialMessage` from the message ID." +msgstr "" + +#: 67179488c7744e83bfcf423722415b13 823983a7d48b436491e7c7d6c382dd49 +#: discord.channel.DMChannel.get_partial_message:3 +#: discord.channel.PartialMessageable.get_partial_message:3 +#: discord.channel.StageChannel.get_partial_message:3 +#: discord.channel.VoiceChannel.get_partial_message:3 +#: discord.channel._TextChannel.get_partial_message:3 +#: discord.threads.Thread.get_partial_message:3 of +msgid "" +"This is useful if you want to work with a message and only have its ID " +"without doing an unnecessary API call." +msgstr "" + +#: 843df377ee7c4084b88787836abc669e 98efec157ebb473c808aae14f50e6d61 +#: discord.channel.DMChannel.get_partial_message:9 +#: discord.channel.PartialMessageable.get_partial_message:7 +#: discord.channel.StageChannel.get_partial_message:9 +#: discord.channel.VoiceChannel.get_partial_message:9 +#: discord.channel._TextChannel.get_partial_message:9 +#: discord.threads.Thread.get_partial_message:9 of +msgid "The message ID to create a partial message for." +msgstr "" + +#: 02f2a7118c294c018c9461a938ec529b 6f2827dab3174ceba9c167c94f8e8b01 +#: discord.channel.DMChannel.get_partial_message:12 +#: discord.channel.PartialMessageable.get_partial_message:10 +#: discord.channel.StageChannel.get_partial_message:12 +#: discord.channel.VoiceChannel.get_partial_message:12 +#: discord.channel._TextChannel.get_partial_message:12 +#: discord.threads.Thread.get_partial_message:12 of +msgid "The partial message." +msgstr "" + +#: 125d07572d5c4fa4bafff84e471385ed 5d6e1bf5a673406c9a939d94eda6212d +#: discord.channel.DMChannel.get_partial_message:13 +#: discord.channel.PartialMessageable.get_partial_message:11 +#: discord.channel.StageChannel.get_partial_message:13 +#: discord.channel.VoiceChannel.get_partial_message:13 +#: discord.channel._TextChannel.get_partial_message:13 +#: discord.threads.Thread.get_partial_message:13 of +msgid ":class:`PartialMessage`" +msgstr "" + +#: ../../api/models.rst:53 51c19b229c5b4c04bbac59e131da1dfb +msgid "Users" +msgstr "" + +#: 49763b094f654c97ac5092643e51ac66 discord.user.ClientUser:1 of +msgid "Represents your Discord user." +msgstr "" + +#: 8528f633c43f4dfba2b972dc62785542 bb87a910467b4f62bb1f394dd32e6575 +#: discord.user.ClientUser:7 discord.user.User:7 of +msgid "Checks if two users are equal." +msgstr "" + +#: 85c8883463c64892b2d113641e57cfc0 b8d07fcfe0c44217895443aebd19f908 +#: discord.user.ClientUser:11 discord.user.User:11 of +msgid "Checks if two users are not equal." +msgstr "" + +#: 50bf005b5c574b58839952b19464b208 d143943b4ab946ab950eb1f7171cd587 +#: discord.user.ClientUser:15 discord.user.User:15 of +msgid "Return the user's hash." +msgstr "" + +#: 1add853063144abda929fa08b980265c 28a3ceb054d74237b1ad21a28be2a934 +#: discord.user.ClientUser:19 discord.user.User:19 of +msgid "Returns the user's name with discriminator or global_name." +msgstr "" + +#: 094c51e2dd284606a8ffe35e059f9d9e df577759b9bb40b891e952c0fc8d7856 +#: discord.user.ClientUser:23 discord.user.User:23 of +msgid "The user's username." +msgstr "" + +#: 23e632a55bcf4949b35edf2b13661d83 34f8a3e93d424eff88254983dd3736a7 +#: 3a3a7e1226884523b0ba2364ba0ceaf7 3f94ada44c5a4e4f96a478f2eba12ba9 +#: 67c2d7ad9e4f432590e0941a54d9e9be 6ab9e38fee2f4f6cb94faa9a8b05a91c +#: 829531878901473f909b329033e932a3 8cdd313032d24f41a003933efa33756e +#: 9301fc895bdf4d5781a1ffa99a0ed169 956a1abeaf574fbfba3816ea1bfa1d1b +#: b181e837ebe24f42aed74532d371c2d6 cd70408c99084152b7be0bcf7f009b7e +#: d0d100cfdca84ec6bd94d1435523e5fb d8bb4e332f9e4288aa8952e99c0043df +#: discord.SKU.url:3 discord.automod.AutoModActionMetadata:27 +#: discord.automod.AutoModRule:33 discord.channel.CategoryChannel:27 +#: discord.channel.ForumChannel:25 discord.channel.StageChannel:27 +#: discord.channel.TextChannel:25 discord.channel.VoiceChannel:25 +#: discord.emoji.Emoji:33 discord.guild.Guild:27 +#: discord.integrations.BotIntegration:15 +#: discord.integrations.BotIntegration:27 discord.integrations.Integration:15 +#: discord.integrations.Integration:27 +#: discord.integrations.IntegrationAccount:9 +#: discord.integrations.IntegrationAccount:15 +#: discord.integrations.IntegrationApplication:15 +#: discord.integrations.IntegrationApplication:27 +#: discord.integrations.IntegrationApplication:33 +#: discord.integrations.StreamIntegration:15 +#: discord.integrations.StreamIntegration:27 +#: discord.interactions.Interaction:61 discord.interactions.Interaction:73 +#: discord.interactions.Interaction:79 +#: discord.interactions.MessageInteraction:31 discord.invite.Invite:59 +#: discord.invite.PartialInviteChannel:28 discord.invite.PartialInviteGuild:28 +#: discord.message.Attachment:52 discord.message.Attachment:68 +#: discord.message.Attachment:76 discord.message.Attachment:130 +#: discord.message.Message:43 discord.monetization.SKU:27 +#: discord.monetization.SKU:33 discord.onboarding.OnboardingPrompt:21 +#: discord.onboarding.PromptOption:33 +#: discord.raw_models.AutoModActionExecutionEvent:92 +#: discord.raw_models.AutoModActionExecutionEvent:98 +#: discord.raw_models.AutoModActionExecutionEvent:104 +#: discord.raw_models.RawReactionActionEvent:50 +#: discord.raw_models.RawScheduledEventSubscription:29 discord.role.Role:47 +#: discord.scheduled_events.ScheduledEvent:33 +#: discord.stage_instance.StageInstance:41 discord.sticker.GuildSticker:23 +#: discord.sticker.GuildSticker:35 discord.sticker.GuildSticker:66 +#: discord.sticker.StandardSticker:23 discord.sticker.StandardSticker:35 +#: discord.sticker.Sticker:23 discord.sticker.Sticker:35 +#: discord.sticker.Sticker:53 discord.sticker.StickerItem:23 +#: discord.sticker.StickerItem:41 discord.sticker.StickerPack:23 +#: discord.sticker.StickerPack:29 discord.template.Template:9 +#: discord.template.Template:21 discord.template.Template:27 +#: discord.threads.Thread:27 discord.user.ClientUser:25 +#: discord.user.ClientUser:41 discord.user.ClientUser:49 discord.user.User:25 +#: discord.user.User:41 discord.user.User:49 +#: discord.webhook.async_.PartialWebhookChannel:17 +#: discord.webhook.async_.PartialWebhookGuild:17 +#: discord.welcome_screen.WelcomeScreen:9 +#: discord.welcome_screen.WelcomeScreenChannel:15 discord.widget.Widget:27 +#: discord.widget.WidgetChannel:31 discord.widget.WidgetMember:31 +#: discord.widget.WidgetMember:37 e3867aa2a5734ede9dfd2b008ef82ff6 +#: f4cb9643a4f54f8986a504914866acdd of +msgid ":class:`str`" +msgstr "" + +#: 7d59402a16e54f61a97fdc966dfa756c db789a3e10764d59b4328ce02560ff1f +#: discord.user.ClientUser:29 discord.user.User:29 of +msgid "The user's unique ID." +msgstr "" + +#: 095164b434774a8bad94f6e92b646e03 4fe49248ca6a4cf19931a37f31753734 +#: discord.user.ClientUser:35 discord.user.User:35 of +msgid "The user's discriminator. This is given when the username has conflicts." +msgstr "" + +#: 5e07121932524ee29d2d94f465d1c951 discord.user.ClientUser:39 of +msgid "" +"If the user has migrated to the new username system, this will always be " +"0." +msgstr "" + +#: ced530d2472048d0a529cf1cf1c91d86 discord.user.ClientUser:45 +#: discord.user.User:45 f5d700742ed5457cbd1652439db6a54f of +msgid "The user's global name." +msgstr "" + +#: 6f1c81c727e7490db10e1647ddc6868b 855b4c1de89b43c29aea9b3c7d9b52cd +#: discord.user.ClientUser:53 discord.user.User:53 of +msgid "Specifies if the user is a bot account." +msgstr "" + +#: ca90bc81cd8c464bb9df1041c691bbba discord.user.ClientUser:59 +#: discord.user.User:59 e5ec8e04dabb4b16903f766258769106 of +msgid "" +"Specifies if the user is a system user (i.e. represents Discord " +"officially)." +msgstr "" + +#: d090cfb32c5c430eb430718db10c5c78 discord.user.ClientUser:67 of +msgid "Specifies if the user's email is verified." +msgstr "" + +#: 4b08f5755ce949d2a448e13b2eef2ad6 discord.user.ClientUser:73 of +msgid "The IETF language tag used to identify the language the user is using." +msgstr "" + +#: ../../api/models.rst:140 304736d9c87440b1b4d8f573adc7def8 +#: 7a2d9ca6781d4f33b2f9fa33a78e4bcc 7c77b2ea3750497e96dc19203a13f276 +#: 9c465eb7704a47f9811d7160f3bd5935 cb5ae2be4f6d4d089f1885ce659a538d +#: cdc5ce07494d46818ca2ced81397e2b3 dc1d35b84de04aa694c7b09e76c9f5ab +#: discord.channel.ForumChannel:53 discord.channel.GroupChannel:57 +#: discord.channel.StageChannel:45 discord.channel.TextChannel:49 +#: discord.channel.VoiceChannel:106 discord.components.Button:23 +#: discord.components.Button:29 discord.components.Button:41 +#: discord.components.SelectMenu:28 discord.components.SelectMenu:34 +#: discord.guild.Guild:111 discord.guild.Guild:173 +#: discord.integrations.IntegrationApplication:21 +#: discord.interactions.Interaction:85 discord.invite.PartialInviteGuild:52 +#: discord.member.Member:54 discord.message.Attachment:61 +#: discord.message.Attachment:82 discord.message.Attachment:98 +#: discord.message.Attachment:114 discord.onboarding.PromptOption:39 +#: discord.partial_emoji.PartialEmoji:32 +#: discord.raw_models.RawAuditLogEntryEvent:39 +#: discord.raw_models.RawVoiceChannelStatusUpdateEvent:21 discord.role.Role:102 +#: discord.scheduled_events.ScheduledEvent:39 discord.user.ClientUser:75 +#: discord.widget.WidgetMember:55 discord.widget.WidgetMember:61 +#: f2fec74b5ab74ff4b1cab4cf1a188256 of +msgid "Optional[:class:`str`]" +msgstr "" + +#: 77e76f500b0d41cab105a37f20f3ad74 discord.user.ClientUser:79 of +msgid "Specifies if the user has MFA turned on and working." +msgstr "" + +#: d9f3769ee435454a9f5f69bb052d6fbd discord.user.ClientUser.edit:3 of +msgid "Edits the current profile of the client." +msgstr "" + +#: ddef82e80a74417389ee7da8cc6ecbce discord.user.ClientUser.edit:7 of +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 "" + +#: c719af29fc1e42aa876207e09613e455 discord.user.ClientUser.edit:12 of +msgid "The only image formats supported for uploading are JPEG, PNG, and GIF." +msgstr "" + +#: 9591acd6156c42438b25b366eedcc43e discord.user.ClientUser.edit:14 of +msgid "" +"The edit is no longer in-place, instead the newly edited client user is " +"returned." +msgstr "" + +#: bbb407029cbc40d4b9f36f85d7bdaf19 discord.user.ClientUser.edit:17 of +msgid "The ``banner`` keyword-only parameter was added." +msgstr "" + +#: c7d106c643294f50b5844f3da87467c9 discord.user.ClientUser.edit:21 of +msgid "The new username you wish to change to." +msgstr "" + +#: 240db79737fc41138acf16a14ec978c4 discord.user.ClientUser.edit:24 of +msgid "" +"A :term:`py:bytes-like object` representing the image to upload. Could be" +" ``None`` to denote no avatar." +msgstr "" + +#: 08557913597c469eab9f36eb51a20a93 discord.user.ClientUser.edit:28 of +msgid "" +"A :term:`py:bytes-like object` representing the image to upload. Could be" +" ``None`` to denote no banner." +msgstr "" + +#: c8469d63da8744f4a0201e9a1728a8b7 discord.user.ClientUser.edit:32 of +msgid "The newly edited client user." +msgstr "" + +#: 135fd10138e84d4ba3551678d985b183 41d7eb227e4843b2b4b56128122141ed +#: discord.channel.DMChannel:33 discord.channel.GroupChannel:31 +#: discord.user.ClientUser.edit:33 of +msgid ":class:`ClientUser`" +msgstr "" + +#: 18775769dafe4f45b7630eb7d3663fc3 discord.user.ClientUser.edit:35 of +msgid "Editing your profile failed." +msgstr "" + +#: d41a31f1b0584f0cb7cb79920089dc07 discord.user.ClientUser.edit:36 of +msgid "Wrong image format passed for ``avatar`` or ``banner``." +msgstr "" + +#: 5d42054d5da84f4fbd5c7a1c1f650136 6a0f951102c042f1967a6cc3fb063826 +#: 6ab96fcf4f29436e858954fbce53796b discord.ClientUser.accent_color:1 +#: discord.User.accent_color:1 discord.WidgetMember.accent_color:1 of +msgid "Returns the user's accent color, if applicable." +msgstr "" + +#: 1938cce6bef44a45a48d698878cba477 98620bb2a1034ce2a564fe642e2417c6 +#: dbfa0f2b4d2542e2855ee6b9d62771be discord.ClientUser.accent_color:3 +#: discord.User.accent_color:3 discord.WidgetMember.accent_color:3 of +msgid "There is an alias for this named :attr:`accent_colour`." +msgstr "" + +#: 4ee137d17b6a442dac436b0e7e6e7913 5b13b7de5a524b0aaf9cc1784c3e14eb +#: 6e1597cc41fb43719f34c784e37f64e7 80debc8bc8b242619b4535eff3c20814 +#: 877cf2f74fcf407a8e16e91d17876d07 c08cdcb663f141e5b59ef6b7054e737d +#: discord.ClientUser.accent_color:9 discord.ClientUser.accent_colour:9 +#: discord.ClientUser.banner:6 discord.User.accent_color:9 +#: discord.User.accent_colour:9 discord.User.banner:6 +#: discord.WidgetMember.accent_color:9 discord.WidgetMember.accent_colour:9 +#: discord.WidgetMember.banner:6 e0bc6b1e888d4fa680977bfd269d8d8a of +msgid "This information is only available via :meth:`Client.fetch_user`." +msgstr "" + +#: 89e0f07e8f4b42c18a916c2fee3a14a4 c59947f63fe941bf84cf9f07cdfe2593 +#: discord.ClientUser.accent_colour:1 discord.User.accent_colour:1 +#: discord.WidgetMember.accent_colour:1 fc1973771c3e423ab34b16ab10b22619 of +msgid "Returns the user's accent colour, if applicable." +msgstr "" + +#: 04e4c72d96d64ecd921c375be4339ac8 6b7360e798ae481c9c1808160c5bb033 +#: a090b4fb330747bd92cc59742138225c discord.ClientUser.accent_colour:3 +#: discord.User.accent_colour:3 discord.WidgetMember.accent_colour:3 of +msgid "There is an alias for this named :attr:`accent_color`." +msgstr "" + +#: 501c4f6cbdbf42769fff2a35d112d118 80ce4b40e1d34abdace629cb7a571a4d +#: discord.ClientUser.avatar:1 discord.User.avatar:1 of +msgid "Returns an :class:`Asset` for the avatar the user has." +msgstr "" + +#: 10382ad8465644e3bc34b20641256a9c a26030435155406dac323efb28927fe9 +#: discord.ClientUser.avatar:3 discord.User.avatar:3 of +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 "" + +#: 4e65e66d65cf422f984e2dc18da32a72 af7c151a269941859b5eb927d1052e49 +#: c03fc269038746299c68c4ff20bdcb43 discord.ClientUser.avatar_decoration:1 +#: discord.User.avatar_decoration:1 discord.WidgetMember.avatar_decoration:1 of +msgid "Returns the user's avatar decoration, if available." +msgstr "" + +#: 55fa34cde7fb4b2c86ad88d8033f125e 9c4d8e995e424d76994802eb84438e29 +#: be1ed8a944cf42bebfcd8d4c6878cdcb discord.ClientUser.banner:1 +#: discord.User.banner:1 discord.WidgetMember.banner:1 of +msgid "Returns the user's banner asset, if available." +msgstr "" + +#: 0d50a75dd5aa40f4a61fc98fd5b2e577 10d4742b9b8f4d08b8afb6128d733ad0 +#: ca3f1b9b592542c08357b2c0269e41dc discord.ClientUser.color:1 +#: discord.User.color:1 discord.WidgetMember.color:1 of +msgid "" +"A property that returns a color denoting the rendered color for the user." +" This always returns :meth:`Colour.default`." +msgstr "" + +#: 4a11e8cca87344baa2a0b654de88fa39 624b0e883b1d48839b0128ffaafa47e8 +#: d5b77dfdb6414af4bd41ae7661eca6e5 discord.ClientUser.color:4 +#: discord.Member.color:5 discord.User.color:4 discord.WidgetMember.color:4 of +msgid "There is an alias for this named :attr:`colour`." +msgstr "" + +#: 2cf635b79df3473c90ac23f164a0427c 9cec23c320d8469ea36f43da369ed102 +#: discord.ClientUser.colour:1 discord.User.colour:1 +#: discord.WidgetMember.colour:1 e69af87a44364eaf9b5b69d3f66864c7 of +msgid "" +"A property that returns a colour denoting the rendered colour for the " +"user. This always returns :meth:`Colour.default`." +msgstr "" + +#: 2d5f274e11504b99938c8ba60c312acb 4e371cae01aa4766ab17cff8f76e1efe +#: discord.ClientUser.colour:4 discord.Member.colour:5 discord.User.colour:4 +#: discord.WidgetMember.colour:4 e2124f67ec9f4267908985a925d278ed of +msgid "There is an alias for this named :attr:`color`." +msgstr "" + +#: 242c9dfc04694b489e2f7d80df59ded7 437b006882224342968fb4c368487fe6 +#: b36550ba16734b24b4466af739ed85aa discord.ClientUser.created_at:1 +#: discord.User.created_at:1 discord.WidgetMember.created_at:1 of +msgid "Returns the user's creation time in UTC." +msgstr "" + +#: 50f3e4ffe5384958b891922303c4be12 8221e054b3a6494e9dcbb094d3c44517 +#: c13d536b60be48f5b31de078b4b756b6 discord.ClientUser.created_at:3 +#: discord.User.created_at:3 discord.WidgetMember.created_at:3 of +msgid "This is when the user's Discord account was created." +msgstr "" + +#: 038c62b751b84784986d6e29a5dc57c1 224eea430fc345f5baaceb1fd1705c4a +#: d4d393857fb64b7e914cd07558fd6602 discord.ClientUser.default_avatar:1 +#: discord.User.default_avatar:1 discord.WidgetMember.default_avatar:1 of +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 "" + +#: 3c9e57b8c879411eb7b0a5bce8837eaa 613adc4ebb9d487bb1c10b1b831c265a +#: 91a80ca04f9845d782a0aec709e6342d discord.ClientUser.display_avatar:1 +#: discord.User.display_avatar:1 discord.WidgetMember.display_avatar:1 of +msgid "Returns the user's display avatar." +msgstr "" + +#: b73981c9e34846df86edd23a8b06acba d2b170adae3f48cfaca8949892f73fc4 +#: discord.ClientUser.display_avatar:3 discord.User.display_avatar:3 +#: discord.WidgetMember.display_avatar:3 fb3482d25d174a26b778b9faf87546c8 of +msgid "For regular users this is just their default avatar or uploaded avatar." +msgstr "" + +#: 590fc14655784aab8f2ee70767655abb b7f12013710249f19b27a29d414d549f +#: discord.ClientUser.display_name:1 discord.User.display_name:1 of +msgid "" +"Returns the user's display name. This will be their global name if set, " +"otherwise their username." +msgstr "" + +#: 75913c2943e244da9f912797c9315548 83b3d21571f541efa5c11b1df2216c78 +#: 98d46180481045ac91439bb582984225 discord.ClientUser.is_migrated:1 +#: discord.User.is_migrated:1 discord.WidgetMember.is_migrated:1 of +msgid "Checks whether the user is already migrated to global name." +msgstr "" + +#: 71803c743ab04f6487bcc7cd7592ab5c a6aab4a6f73b4a558e5a99f75d9d6f09 +#: discord.ClientUser.jump_url:1 discord.User.jump_url:1 +#: discord.WidgetMember.jump_url:1 ed344f416d38414faf37aa0952f5119b of +msgid "Returns a URL that allows the client to jump to the user." +msgstr "" + +#: 2e4ec00b99904f72a3847aca88c7a818 7000b4f254244a50968882f86aa22812 +#: 952afd71f7ee40ee923e5d57e9666246 discord.ClientUser.mention:1 +#: discord.User.mention:1 discord.WidgetMember.mention:1 of +msgid "Returns a string that allows you to mention the given user." +msgstr "" + +#: 54594e8767054e72946033269b0c3592 93d3ff64137447f39e0019c80c4df9d2 +#: discord.user.BaseUser.mentioned_in:1 fd752e6addca4ab6b4f098137fa9ce29 of +msgid "Checks if the user is mentioned in the specified message." +msgstr "" + +#: aeae96f3b68e4982bf78bbc2036c04e5 d7be525e0b7b494d9f5b256e3f118474 +#: discord.member.Member.mentioned_in:4 discord.user.BaseUser.mentioned_in:4 +#: f59645c800104853b49db0b8b46edcbf of +msgid "The message to check if you're mentioned in." +msgstr "" + +#: 1cf28790dcb441a19baba9858f83391c 8f7489e0344546199a8c5c066f41a5c2 +#: bc66413bce7f498bac19576ed4b6fbd0 discord.user.BaseUser.mentioned_in:7 of +msgid "Indicates if the user is mentioned in the message." +msgstr "" + +#: 921c002b550040f8b20f075deecaa7e6 93632cb243b348e9956831b21bdc22a9 +#: discord.ClientUser.public_flags:1 discord.User.public_flags:1 +#: discord.WidgetMember.public_flags:1 ea58197e31bb4b41884a157342d514cc of +msgid "The publicly available flags the user has." +msgstr "" + +#: a5bbb9c41ded42adbbedac8adcab5236 discord.user.User:1 of +msgid "Represents a Discord user." +msgstr "" + +#: 2f6617dc2aed416ca5dc1c8d8df0170e discord.user.User:39 of +msgid "" +"If the user has migrated to the new username system, this will always be " +"\"0\"." +msgstr "" + +#: dd9cd5d45b7a4f7d81de8e1843f28922 discord.User.dm_channel:1 of +msgid "Returns the channel associated with this user if it exists." +msgstr "" + +#: 7fae4ce246b54d1b92ebaf328f8b65cf discord.User.dm_channel:3 of +msgid "" +"If this returns ``None``, you can create a DM channel by calling the " +":meth:`create_dm` coroutine function." +msgstr "" + +#: b383cc9fafc743aab9219b21184e78ed discord.User.mutual_guilds:1 of +msgid "The guilds that the user shares with the client." +msgstr "" + +#: discord.User.mutual_guilds:5 e41db11d00364968bc3168d7ac4c4a02 of +msgid "This will only return mutual guilds within the client's internal cache." +msgstr "" + +#: 463038c5ef3f43cd807215436ae90bd7 5d3cf60bddbc4c6fad29b9c300b60469 +#: discord.member.flatten_user..generate_function..general:3 +#: discord.user.User.create_dm:3 of +msgid "Creates a :class:`DMChannel` with this user." +msgstr "" + +#: 7eb7c88b11764472a09211f3e8271341 +#: discord.member.flatten_user..generate_function..general:5 +#: discord.user.User.create_dm:5 e099032e034b487db2a951a186656094 of +msgid "" +"This should be rarely called, as this is done transparently for most " +"people." +msgstr "" + +#: 34c3db924cfe4afba20d42849d8a1d7b 7f0c8d792b204d7eb76a4f9cdbbc9b4a +#: discord.channel.CategoryChannel.clone:19 +#: discord.channel.StageChannel.clone:19 discord.channel.VoiceChannel.clone:19 +#: discord.channel._TextChannel.clone:19 +#: discord.member.flatten_user..generate_function..general:8 +#: discord.user.User.create_dm:8 of +msgid "The channel that was created." +msgstr "" + +#: 827186088d1d4f689ad318127cf593a4 b6cefe350c984fc3b0fdd3b0b59ea5e6 +#: discord.member.flatten_user..generate_function..general:9 +#: discord.user.User.create_dm:9 of +msgid ":class:`.DMChannel`" +msgstr "" + +#: 6f3a14dd55e94eff97233f7cdb9ddded ad1e53c4d8a74c90aea9eac9056fa9a8 +#: discord.member.flatten_user..generate_function..general:3 +#: discord.user.User.create_test_entitlement:3 of +msgid "Creates a test entitlement for the user." +msgstr "" + +#: 2812004ba59d451cacbb47175f8796f9 52b7f3d178ba45879ca736db726309ac +#: discord.guild.Guild.create_test_entitlement:6 +#: discord.member.flatten_user..generate_function..general:6 +#: discord.user.User.create_test_entitlement:6 of +msgid "The SKU to create a test entitlement for." +msgstr "" + +#: 31ce2a2adcdb4fc0adc3e688aed0d2b0 688251e620db45399e35182ab313f053 +#: discord.guild.Guild.create_test_entitlement:9 +#: discord.member.flatten_user..generate_function..general:9 +#: discord.user.User.create_test_entitlement:9 of +msgid "The created entitlement." +msgstr "" + +#: 6473a06d5de84d299e4903e3cb389bac +#: discord.guild.Guild.create_test_entitlement:10 +#: discord.member.flatten_user..generate_function..general:10 +#: discord.user.User.create_test_entitlement:10 +#: ed4f4ebe3d314273a8db0f388ad10891 of +msgid ":class:`Entitlement`" +msgstr "" + +#: 024d66d0841244cab9d49a97deb4c5e5 ae059b12f7be4225823a1ebe75b9caa2 +#: discord.member.flatten_user..generate_function..general:1 +#: discord.user.User.entitlements:1 of +msgid "" +"Returns an :class:`.AsyncIterator` that enables fetching the user's " +"entitlements." +msgstr "" + +#: 73ee380e8eaa49b1985d9e76d0ce3011 +#: discord.member.flatten_user..generate_function..general:3 +#: discord.user.User.entitlements:3 e10285f0eb4f48e8b6564c9263859412 of +msgid "" +"This is identical to :meth:`Client.entitlements` with the ``user`` " +"parameter." +msgstr "" + +#: 191945eb971249b586dd09f0a363f167 8a837858c9c74dd78408d01365b40b96 +#: discord.guild.Guild.entitlements:8 +#: discord.member.flatten_user..generate_function..general:8 +#: discord.user.User.entitlements:8 of +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "" + +#: 19c5cfcf169d466a949ae4cad69dd539 6aa172e940f144f98ef4d69e388b7e00 +#: discord.guild.Guild.entitlements:11 +#: discord.member.flatten_user..generate_function..general:11 +#: discord.user.User.entitlements:11 of +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 "" + +#: 3be018fd0820429f800ddf00c58423ea 960251d52e934e4c92c9bd0a0aa77ea8 +#: discord.guild.Guild.entitlements:16 +#: discord.member.flatten_user..generate_function..general:16 +#: discord.user.User.entitlements:16 of +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 "" + +#: 2f95d22d8cda40e587765c256f57bfe6 ccc5662bbccc488a8bd98f228735b700 +#: discord.guild.Guild.entitlements:21 +#: discord.member.flatten_user..generate_function..general:21 +#: discord.user.User.entitlements:21 of +msgid "" +"The number of entitlements to retrieve. If ``None``, retrieves every " +"entitlement, which may be slow. Defaults to ``100``." +msgstr "" + +#: 45683405846449d59048c3085f095887 cb8af2a165a445fa87148c0efa867904 +#: discord.guild.Guild.entitlements:26 +#: discord.member.flatten_user..generate_function..general:26 +#: discord.user.User.entitlements:26 of +msgid "" +"Whether to limit the fetched entitlements to those that have not ended. " +"Defaults to ``False``." +msgstr "" + +#: 2fcb0d10765c4c01b53a633d1e7749f0 c089af58b0c7402cb4dee2dcb39632a4 +#: discord.guild.Guild.entitlements:30 +#: discord.member.flatten_user..generate_function..general:30 +#: discord.user.User.entitlements:30 of +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr "" + +#: 4477dcd6cf974b189ffa8308bef5b349 7a9d13bf49744fff9c9bf9f66c88f6bc +#: dfae8467fd154ea5b8777569e61e764e discord.guild.Guild.entitlements:32 +#: discord.member.flatten_user..generate_function..general:32 +#: discord.user.User.entitlements:32 of +msgid "Retrieving the entitlements failed." +msgstr "" + +#: 87e7437ba3dd4295bcf7317cc8932738 add5fc2b3b474b48963f5e2d57af8ad3 +#: discord.guild.Guild.entitlements:34 discord.user.User.entitlements:34 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr "" + +#: ../../api/models.rst:75 e2f6fc6b14cf443e9ffd5ee366ab35b0 +msgid "Messages" +msgstr "" + +#: 610ab4299cf34098b4fc7626fa9f4515 discord.message.Attachment:1 of +msgid "Represents an attachment from Discord." +msgstr "" + +#: 36cbed8c5d6c44508ac29609b3fb8a2e discord.message.Attachment:7 of +msgid "Returns the URL of the attachment." +msgstr "" + +#: discord.message.Attachment:11 eb4d45edb6984c1aae6adf406962d755 of +msgid "Checks if the attachment is equal to another attachment." +msgstr "" + +#: c719b7728d734c2d872dd919ae331934 discord.message.Attachment:15 of +msgid "Checks if the attachment is not equal to another attachment." +msgstr "" + +#: 54133d6dd993488ba10e3caf08a4c2fc discord.message.Attachment:19 of +msgid "Returns the hash of the attachment." +msgstr "" + +#: 0c575e35aef5425b94a0dff90e2e0231 discord.message.Attachment:21 of +msgid "Attachment can now be cast to :class:`str` and is hashable." +msgstr "" + +#: 8c174bbfd44147ecb1d712933fa3aa4e discord.message.Attachment:26 of +msgid "The attachment ID." +msgstr "" + +#: cad88e03745e4898b486276d5648803c discord.message.Attachment:32 of +msgid "The attachment size in bytes." +msgstr "" + +#: a2938bf7c9b44e4e9bca2663a729afaf discord.message.Attachment:38 of +msgid "The attachment's height, in pixels. Only applicable to images and videos." +msgstr "" + +#: 16aa462320ca4ecfbe0d2390f73def67 18233b5f8f524f30ae9d138abb7b02e3 +#: 310192c648264bc086b55a67115104f5 32bfaad9dc0e42aba5a769f9c2139168 +#: 4eda47990854400088b81bf7ad06b60b 62e39fcf170c47679b6cd7bf3c126f84 +#: 861419498d894bd392b618fafce8f153 8a0504dbcaec4f5ca2890730091a5b6a +#: a53dd3b06e6747ce830d157361089b45 cc7340cf856c432a8a37d01487f45c4c +#: discord.Thread.category_id:4 discord.channel.CategoryChannel:46 +#: discord.channel.ForumChannel:43 discord.channel.ForumChannel:60 +#: discord.channel.ForumChannel:67 discord.channel.ForumChannel:126 +#: discord.channel.StageChannel:51 discord.channel.StageChannel:58 +#: discord.channel.StageChannel:100 discord.channel.TextChannel:43 +#: discord.channel.TextChannel:56 discord.channel.TextChannel:63 +#: discord.channel.TextChannel:106 discord.channel.VoiceChannel:43 +#: discord.channel.VoiceChannel:50 discord.channel.VoiceChannel:87 +#: discord.components.Button:53 discord.guild.Guild:87 discord.guild.Guild:97 +#: discord.guild.Guild:105 discord.guild.Guild:190 discord.guild.Guild:201 +#: discord.guild.Guild.prune_members:42 discord.interactions.Interaction:24 +#: discord.interactions.Interaction:36 +#: discord.interactions.InteractionMetadata:35 +#: discord.interactions.InteractionMetadata:42 discord.invite.Invite:109 +#: discord.invite.Invite:116 discord.message.Attachment:40 +#: discord.message.Attachment:46 discord.message.Message:126 +#: discord.partial_emoji.PartialEmoji:44 +#: discord.raw_models.AutoModActionExecutionEvent:53 +#: discord.raw_models.AutoModActionExecutionEvent:66 +#: discord.raw_models.AutoModActionExecutionEvent:79 +#: discord.raw_models.RawAuditLogEntryEvent:27 +#: discord.raw_models.RawAuditLogEntryEvent:33 +#: discord.raw_models.RawBulkMessageDeleteEvent:19 +#: discord.raw_models.RawIntegrationDeleteEvent:15 +#: discord.raw_models.RawMessageDeleteEvent:13 +#: discord.raw_models.RawMessageUpdateEvent:23 +#: discord.raw_models.RawReactionActionEvent:26 +#: discord.raw_models.RawReactionClearEmojiEvent:21 +#: discord.raw_models.RawReactionClearEvent:19 +#: discord.raw_models.RawTypingEvent:27 discord.role.RoleTags:15 +#: discord.role.RoleTags:21 discord.scheduled_events.ScheduledEvent:70 +#: discord.scheduled_events.ScheduledEvent:78 discord.threads.Thread:61 +#: f50b8fb8640844a6933c62864952effb f55fe32c1fb5446182de1835f38e3e5f of +msgid "Optional[:class:`int`]" +msgstr "" + +#: 5ef4f4ec93704176ab793181a849f05f discord.message.Attachment:44 of +msgid "The attachment's width, in pixels. Only applicable to images and videos." +msgstr "" + +#: 1578fbf5297d4be08834fd1ee5ef1fe5 discord.message.Attachment:50 of +msgid "The attachment's filename." +msgstr "" + +#: 958d5b5f3b08410aa5055b2450fc39f1 discord.message.Attachment:56 of +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.Attachment:65 ee16dbcd50b74902b088cad9dcd1cccf of +msgid "" +"The attachment URL. If the message this attachment was attached to is " +"deleted, then this will 404." +msgstr "" + +#: 992e18f11a9c4994b41a6e9c411d60de discord.message.Attachment:72 of +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 "" + +#: 3afcc47a746b41ef962d8970c735e85c discord.message.Attachment:80 of +msgid "The attachment's `media type `_." +msgstr "" + +#: 1bc86b04dd0e4e3ab62f5abb1fa5a191 discord.message.Attachment:86 of +msgid "Whether the attachment is ephemeral or not." +msgstr "" + +#: 3f39cbfb9d7b4acdbbbbb44af1a4a044 discord.message.Attachment:94 of +msgid "The attachment's description." +msgstr "" + +#: 41a146e92e5c4b14b97610c414598c5f discord.message.Attachment:102 of +msgid "The duration of the audio file (currently for voice messages)." +msgstr "" + +#: 5e36ab69e24a4e9281fef9f23b4e9417 discord.message.Attachment:106 of +msgid "Optional[:class:`float`]" +msgstr "" + +#: discord.message.Attachment:110 eff44c3749674e1fbbf4b67f51584aa1 of +msgid "" +"The base64 encoded bytearray representing a sampled waveform (currently " +"for voice messages)." +msgstr "" + +#: 8d72571d6ca849d6a35b59f075db944f discord.message.Attachment:118 of +msgid "Extra attributes of the attachment." +msgstr "" + +#: ab0f888b90cd441e98e12a4233f6a5ca discord.message.Attachment:122 of +msgid ":class:`AttachmentFlags`" +msgstr "" + +#: discord.message.Attachment:126 eb66ce493d6144a692880c2d020256d8 of +msgid "The unique signature of this attachment's instance." +msgstr "" + +#: 7a7e3e6209bd4c15afc6752b8c74040e discord.Attachment.expires_at:1 of +msgid "This attachment URL's expiry time in UTC." +msgstr "" + +#: 581eda75240949569707cd63ac09c7a8 discord.Attachment.issued_at:1 of +msgid "The attachment URL's issue time in UTC." +msgstr "" + +#: 49b18fc268034c8db39371a3fc32c865 discord.message.Attachment.is_spoiler:1 of +msgid "Whether this attachment contains a spoiler." +msgstr "" + +#: c25732e0908f4dd8bd7a864809412d0d discord.message.Attachment.save:3 of +msgid "Saves this attachment into a file-like object." +msgstr "" + +#: 2b5ead79700145a382d76f44023473e0 7aa4f610913d4f9b9a7d74ae16d69eb5 +#: abdf57698eb34d8982ba647f6da17306 discord.message.Attachment.read:8 +#: discord.message.Attachment.save:15 discord.message.Attachment.to_file:9 of +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 "" + +#: 3a2517aab81246b4b3b8e32809055a54 discord.message.Attachment.save:26 of +msgid "Saving the attachment failed." +msgstr "" + +#: 38a5651d049e4b7e9f01bb38e9760855 ab9fdda4d9474a1086b411042447c7f8 +#: d18abb0c844745c2807b072262ea7789 discord.message.Attachment.read:21 +#: discord.message.Attachment.save:27 discord.message.Attachment.to_file:29 of +msgid "The attachment was deleted." +msgstr "" + +#: 89527552ebbd4d409dcce3694f51a99b discord.message.Attachment.read:3 of +msgid "Retrieves the content of this attachment as a :class:`bytes` object." +msgstr "" + +#: 1bad3cdd715542a994765eeb1d5cc225 discord.message.Attachment.read:16 of +msgid "The contents of the attachment." +msgstr "" + +#: 4db1799592a342b69f4dff05cb3399aa 50fc85816460419987fd4b9d6f35c1e0 +#: discord.message.Attachment.read:19 discord.message.Attachment.to_file:27 of +msgid "Downloading the attachment failed." +msgstr "" + +#: 852f492f157c49a49a538a015d3dc7f6 93df4e1ae9c44fe4ab4e94a66887ed45 +#: discord.message.Attachment.read:20 discord.message.Attachment.to_file:28 of +msgid "You do not have permissions to access this attachment" +msgstr "" + +#: 512cefc81149403991eb28276fd27583 discord.message.Attachment.to_file:3 of +msgid "" +"Converts the attachment into a :class:`File` suitable for sending via " +":meth:`abc.Messageable.send`." +msgstr "" + +#: 97c789cd2203402caaf8749a1b36a101 discord.message.Attachment.to_file:9 of +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 "" + +#: c2dc41c458d14511af30641f128b62a7 discord.message.Attachment.to_file:19 of +msgid "Whether the file is a spoiler. .. versionadded:: 1.4" +msgstr "" + +#: ac21dc598e304ef99add56eb017be309 discord.message.Attachment.to_file:19 of +msgid "Whether the file is a spoiler." +msgstr "" + +#: 3dbef21cef734a099ef0f5b9de18b4b0 discord.message.Attachment.to_file:24 of +msgid "The attachment as a file suitable for sending." +msgstr "" + +#: 406bc1fb64024186be3b7ecaf1a02ac3 discord.message.Attachment.to_file:25 of +msgid ":class:`File`" +msgstr "" + +#: 10ef3aa25d85405fb59e9ab658bc9eac discord.message.Message:1 of +msgid "Represents a message from Discord." +msgstr "" + +#: c89f0f707b8e46c6a7c6c501bc5f0293 discord.message.Message:7 of +msgid "Checks if two messages are equal." +msgstr "" + +#: 96dc0272315c4528b796e1996105ea53 discord.message.Message:11 of +msgid "Checks if two messages are not equal." +msgstr "" + +#: a4333cfc43cd4aa59cf2da1c96614ce0 discord.message.Message:15 of +msgid "Returns the message's hash." +msgstr "" + +#: 66fcb5e73fa5422b84143f684a703457 discord.message.Message:19 of +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 "" + +#: 1c29cc92950e41328decea6a9493d984 discord.message.Message:27 of +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 "" + +#: ac22c5569dca4c34a8f7f0844f479dab discord.message.Message:30 of +msgid ":class:`MessageType`" +msgstr "" + +#: 98463528996a46798fc8efd5aa242dd6 discord.message.Message:34 of +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 "" + +#: 9ca47ce35e334775b050c5fffee921b4 discord.message.Message:37 of +msgid "Union[:class:`Member`, :class:`abc.User`]" +msgstr "" + +#: 851fad41cfa943068fdd9dc3ce016772 discord.message.Message:41 of +msgid "The actual contents of the message." +msgstr "" + +#: 539e6d62371d4f8c97f56e84dd29d925 discord.message.Message:47 of +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.Message:50 e60f3027370f43b693c6d981bf0d4f55 of +msgid "Optional[Union[:class:`str`, :class:`int`]]" +msgstr "" + +#: 8a97782bb8154337aaaa86c73d5871a6 discord.message.Message:54 of +msgid "A list of embeds the message has." +msgstr "" + +#: 6e668a78acd34b959732d8cbd2667cc0 discord.message.Message:56 of +msgid "List[:class:`Embed`]" +msgstr "" + +#: 5e7f262f6ee24545b1ca267cfc28867a discord.message.Message:60 of +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 "" + +#: 33f5a93d3c45480890ed9a50bb089b3f discord.message.Message:63 of +msgid "" +"Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, " +":class:`GroupChannel`, :class:`PartialMessageable`]" +msgstr "" + +#: 9995b387626a431bad40c78cda6d0c9e discord.message.Message:67 of +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 "" + +#: 1b1a4032950945b2a0895fe3c81c3721 discord.message.Message:73 of +msgid "Optional[:class:`~discord.MessageReference`]" +msgstr "" + +#: d7804f1b198444419c99c4772c5d55ac discord.message.Message:77 of +msgid "Specifies if the message mentions everyone." +msgstr "" + +#: 97bbea590d824d1f81373c1ace66ba4a discord.message.Message:81 of +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 "" + +#: 960165a680ad459eac0bbdccfbd7d204 discord.message.Message:89 of +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.Message:96 f9800bb1f137401aab89591a1a423b6e of +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 "" + +#: b6bd045fd6c44ad09ef867d9bffbade7 discord.message.Message:99 of +msgid "List[:class:`abc.User`]" +msgstr "" + +#: 7af63d54c0ff4a8690b5d9607495a1cd discord.message.Message:103 of +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 "" + +#: 011476095d5046498b1c37fad94213e1 discord.message.Message:106 of +msgid "List[:class:`abc.GuildChannel`]" +msgstr "" + +#: 49955f9ef16d41bf80b7937f4ace197a discord.message.Message:110 of +msgid "" +"A list of :class:`Role` that were mentioned. If the message is in a " +"private message then the list is always empty." +msgstr "" + +#: 88c4c524c78a4857b913ca8d5973f08d 9e75c40ee9b4463aadc399e8db6f6389 +#: a4e4f174c60443c0afb51e724da832d1 discord.guild.Guild.edit_role_positions:31 +#: discord.guild.Guild.fetch_roles:12 discord.message.Message:113 of +msgid "List[:class:`Role`]" +msgstr "" + +#: b652db0d948a4908bd0a5f651a230759 discord.message.Message:117 of +msgid "The message ID." +msgstr "" + +#: 786d6374802f4e44b030b2fd41adf862 discord.message.Message:123 of +msgid "" +"If this message was sent by a webhook, then this is the webhook ID's that" +" sent this message." +msgstr "" + +#: 421e917b62fd42bebe07d3de413ddf85 discord.message.Message:130 of +msgid "A list of attachments given to a message." +msgstr "" + +#: discord.message.Message:132 f24083bc199542cbbe74419d8abbdb6e of +msgid "List[:class:`Attachment`]" +msgstr "" + +#: 2f13ad45fff048719718a0c2788c1d0c discord.message.Message:136 of +msgid "Specifies if the message is currently pinned." +msgstr "" + +#: discord.message.Message:142 efef04c240ec4429aa48439dc785b972 of +msgid "Extra features of the message." +msgstr "" + +#: 6c7e533bdc934532a1a9ed62d9dd677c discord.message.Message:146 of +msgid ":class:`MessageFlags`" +msgstr "" + +#: 55c105f0e8554e7ab630de0a57a2af15 discord.message.Message:150 of +msgid "" +"Reactions to a message. Reactions can be either custom emoji or standard " +"unicode emoji." +msgstr "" + +#: discord.message.Message:152 f5938125bdc04e539f46f82dae7db0a9 of +msgid "List[:class:`Reaction`]" +msgstr "" + +#: 1b8101a6a88346038765fee81ebe3ad4 discord.message.Message:156 of +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 "" + +#: cdd04cf139c9423a92d80149e2b2e150 discord.message.Message:159 of +msgid "It is a dictionary with the following optional keys:" +msgstr "" + +#: 1423a2c02f774bd480ca350e72106b6c discord.message.Message:161 of +msgid "" +"``type``: An integer denoting the type of message activity being " +"requested." +msgstr "" + +#: 21d99256b5c044858d72ec0bdeba7f33 discord.message.Message:162 of +msgid "``party_id``: The party ID associated with the party." +msgstr "" + +#: 11c75525785d4c429178a7a718d68f80 discord.message.Message:164 +#: discord.message.Message:178 f3f5b79ae0264c59b2b8f18457a33604 of +msgid "Optional[:class:`dict`]" +msgstr "" + +#: 5c638f47368d4db5882b325512edf336 discord.message.Message:168 of +msgid "The rich presence enabled application associated with this message." +msgstr "" + +#: 1ae5cbf673ab45ceb3b8e66cc8706099 discord.message.Message:170 of +msgid "It is a dictionary with the following keys:" +msgstr "" + +#: 221c04f455724fcfb9b0a46ddb3939e5 discord.message.Message:172 of +msgid "``id``: A string representing the application's ID." +msgstr "" + +#: 5a6f862aefff4cbcadc74c8ba6271e5c discord.message.Message:173 of +msgid "``name``: A string representing the application's name." +msgstr "" + +#: discord.message.Message:174 f4b50c05afeb4dd29178bda7d9f126da of +msgid "``description``: A string representing the application's description." +msgstr "" + +#: 084d789e62d143e8b725a57852282cd2 discord.message.Message:175 of +msgid "``icon``: A string representing the icon ID of the application." +msgstr "" + +#: discord.message.Message:176 ee50f70337d94151a302a61e82dbc029 of +msgid "``cover_image``: A string representing the embed's image asset ID." +msgstr "" + +#: 5582678c2ca8413ca069c56f2492567d discord.message.Message:182 of +msgid "A list of sticker items given to the message." +msgstr "" + +#: bd86ecd15cc848a8b57ef5dbb7c6f4d4 discord.message.Message:186 of +msgid "List[:class:`StickerItem`]" +msgstr "" + +#: bb20c61da20940bab181136ef093d900 discord.message.Message:190 of +msgid "A list of components in the message." +msgstr "" + +#: 67814d733bdf4049865a606a8b8f8cc5 84f37565d5b54049bca37476a10434b3 +#: discord.components.ActionRow:19 discord.message.Message:194 of +msgid "List[:class:`Component`]" +msgstr "" + +#: 0f10704216da411fa9cb5ea9729a306d discord.message.Message:198 of +msgid "The guild that the message belongs to, if applicable." +msgstr "" + +#: ../../docstring 9dd1e8c3b999410fa6625ba6f279c7c7 +#: c721db13a7b146019d639a9f3f834bf5 +#: discord.AuthorizingIntegrationOwners.guild:4 discord.message.Message:200 +#: discord.raw_models.AutoModActionExecutionEvent:35 +#: discord.raw_models.RawScheduledEventSubscription:22 of +msgid "Optional[:class:`Guild`]" +msgstr "" + +#: c711b5679e6f4001971bdbf17f5a6bc5 discord.message.Message:204 of +msgid "The interaction associated with the message, if applicable." +msgstr "" + +#: 9c695b320a55407a830a789ff0278c51 discord.message.Message:208 of +msgid "Use :attr:`interaction_metadata` instead." +msgstr "" + +#: 4229c74086434a8da37f74044d1d1104 discord.message.Message:210 of +msgid "Optional[:class:`MessageInteraction`]" +msgstr "" + +#: b1fdf0c3bbfe46aba08110ea038a323e discord.message.Message:214 of +msgid "The interaction metadata associated with the message, if applicable." +msgstr "" + +#: 465b6273c1434cdf84d1bf9d0bec35d1 bc296a912770482a81cf365b4076d957 +#: discord.interactions.InteractionMetadata:49 discord.message.Message:218 of +msgid "Optional[:class:`InteractionMetadata`]" +msgstr "" + +#: discord.message.Message:222 fbae865071c64c2e9e3f98ada3d37e00 of +msgid "The thread created from this message, if applicable." +msgstr "" + +#: 2654a66e65374bf188f55b35405bed50 aac45b2defac480591d4ff80dd368aa8 +#: d8d7b5cabb804112945544dd9fce00a3 discord.channel._TextChannel.get_thread:10 +#: discord.guild.Guild.get_thread:10 discord.message.Message:226 of +msgid "Optional[:class:`Thread`]" +msgstr "" + +#: 976df015627c468c81e129d00a058565 discord.message.Message:230 of +msgid "The poll associated with this message, if applicable." +msgstr "" + +#: b70aff860e5a4c0092f8bc6056c6c429 discord.message.Message:234 of +msgid "Optional[:class:`Poll`]" +msgstr "" + +#: ba8414a14e5247d1891f3fcd6ede7ba5 discord.message.Message:238 of +msgid "The call information associated with this message, if applicable." +msgstr "" + +#: 2e405f4e197f4b0ba5d54391a69b0d71 discord.message.Message:242 of +msgid "Optional[:class:`MessageCall`]" +msgstr "" + +#: ../../docstring d59d70f0cbd743578391ed22b87a8517 +#: discord.Message.raw_mentions:1 of +msgid "" +"A property that returns an array of user IDs matched with the syntax of " +"``<@user_id>`` in the message content." +msgstr "" + +#: ../../docstring bf9876a8435e4fb5a35d45f7ba9ab90a +#: discord.Message.raw_mentions:4 of +msgid "" +"This allows you to receive the user IDs of mentioned users even in a " +"private message context." +msgstr "" + +#: ../../docstring 21f2f539641c4128b9e6858d5de9a5ca +#: discord.Message.raw_channel_mentions:1 of +msgid "" +"A property that returns an array of channel IDs matched with the syntax " +"of ``<#channel_id>`` in the message content." +msgstr "" + +#: ../../docstring 61279901d2c144e3a417b89ad6970896 +#: discord.Message.raw_role_mentions:1 of +msgid "" +"A property that returns an array of role IDs matched with the syntax of " +"``<@&role_id>`` in the message content." +msgstr "" + +#: ../../docstring 5905102b41e94421a8bbe2d3e39e0dc1 +#: discord.Message.clean_content:1 of +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 a849cf73f2174ff19747610e465a352d +#: discord.Message.clean_content:6 of +msgid "This will also transform @everyone and @here mentions into non-mentions." +msgstr "" + +#: ../../docstring 69355ee0c0ff4f15a9b729b4ca15c973 +#: discord.Message.clean_content:11 of +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 "" + +#: 55e47beaa3ac4cee992d5883ba04a4c6 discord.Message.created_at:1 of +msgid "The message's creation time in UTC." +msgstr "" + +#: bb1c1cc12b08400f86be29f7d0441b3e discord.Message.edited_at:1 of +msgid "An aware UTC datetime object containing the edited time of the message." +msgstr "" + +#: dbcd2c570fa4423cb11ac679697038d6 discord.Message.jump_url:1 of +msgid "Returns a URL that allows the client to jump to this message." +msgstr "" + +#: 902275c17f3c469aa785343359c47fb9 discord.message.Message.is_system:1 of +msgid "Whether the message is a system message." +msgstr "" + +#: 380bdbfc46bd4c5899551469cc7e5889 discord.message.Message.is_system:3 of +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 6ac96034f537482981cd178d888a47e4 +#: discord.Message.system_content:1 of +msgid "" +"A property that returns the content that is rendered regardless of the " +":attr:`Message.type`." +msgstr "" + +#: ../../docstring cb529005bb6e428d9a95dbc310bfe671 +#: discord.Message.system_content:4 of +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 "" + +#: ad8810e402c64d56a4003b1747b42550 +#: discord.interactions.InteractionMessage.delete:3 +#: discord.message.Message.delete:3 f3ebcd5f2ae04e4995b614f305c52ccf of +msgid "Deletes the message." +msgstr "" + +#: 0bbb54d698a1473eb6060514cc3eca99 discord.message.Message.delete:5 of +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 "" + +#: b016c406275e4375a282ef3c913836f1 discord.message.Message.delete:9 of +msgid "Added the new ``delay`` keyword-only parameter." +msgstr "" + +#: 3e7b8a13ba7745cb878a4b89c7dc35ff discord.message.Message.delete:13 of +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 "" + +#: 7766e3a4eb534510bc1dcafa3f915983 discord.message.Message.delete:17 of +msgid "The reason for deleting the message. Shows up on the audit log." +msgstr "" + +#: 31dae9bdaac8430bab6b0a5bad06b2c3 +#: discord.interactions.InteractionMessage.delete:10 +#: discord.message.Message.delete:20 f075f7ddf459448486db289bb7a664c8 of +msgid "You do not have proper permissions to delete the message." +msgstr "" + +#: b863c986a0fa4047b2f5c54b2393cb04 discord.message.Message.delete:21 of +msgid "The message was deleted already" +msgstr "" + +#: 11626a89e9754d98b9e406dee995ee11 120db33a3735472ab0570bbc976c4428 +#: 918b2eb266e64d8b92a504fe13d28665 +#: discord.interactions.Interaction.delete_original_message:3 +#: discord.interactions.Interaction.delete_original_response:13 +#: discord.interactions.InteractionMessage.delete:12 +#: discord.message.Message.delete:22 of +msgid "Deleting the message failed." +msgstr "" + +#: 6ed53c62bf794126a8bcd24d3fd2a19e 99ff3a0b34044b0aa7c00d20adca1974 +#: discord.interactions.InteractionMessage.edit:3 +#: discord.message.Message.edit:3 of +msgid "Edits the message." +msgstr "" + +#: discord.message.Message.edit:5 f506e070d16e481b93649766961323be of +msgid "" +"The content must be able to be transformed into a string via " +"``str(content)``." +msgstr "" + +#: c919b04337dd4e29b9089203012031c2 discord.message.Message.edit:7 of +msgid "The ``suppress`` keyword-only parameter was added." +msgstr "" + +#: discord.message.Message.edit:11 f15edfb6cdf74e378aecadedb0ab3e72 of +msgid "" +"The new content to replace the message with. Could be ``None`` to remove " +"the content." +msgstr "" + +#: discord.message.Message.edit:15 eea88257163b4962992fe33593dbc23a of +msgid "" +"The new embed to replace the original with. Could be ``None`` to remove " +"the embed." +msgstr "" + +#: 93c44872f4754ff89bacdf2adf89814e discord.message.Message.edit:19 of +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 "" + +#: bb7569bda28141f4b8cec0729aa54f1f discord.message.Message.edit:19 of +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.Message.edit:25 e635ccc895ce42aab5f9e248143bfab4 of +msgid "A new file to add to the message." +msgstr "" + +#: 929da4038ce34700ac4c10e343adce0b discord.message.Message.edit:28 of +msgid "New files to add to the message." +msgstr "" + +#: 30fc507352f2434c88bf8dae92a030f3 37250a2ca1734906b0f17639a4ca5a55 +#: discord.interactions.Interaction.edit_original_response:29 +#: discord.interactions.InteractionMessage.edit:23 +#: discord.interactions.InteractionResponse.edit_message:24 +#: discord.message.Message.edit:31 of +msgid "" +"A list of attachments to keep in the message. If ``[]`` is passed then " +"all attachments are removed." +msgstr "" + +#: 94013e4244574f8aa0b4bc45b834b58c discord.message.Message.edit:35 of +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 "" + +#: 1b1c8d98c40d4a1db673aba02af8ab84 a865ae969b7e4cd1aa10292adaa53422 +#: discord.interactions.Interaction.edit_original_response:41 +#: discord.interactions.InteractionMessage.edit:35 +#: discord.interactions.InteractionResponse.edit_message:32 +#: discord.message.Message.edit:41 of +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 "" + +#: 14c5970e926b4bdba9cf225c428573be 66bd52e02f594816b9a3876ee0003e20 +#: discord.interactions.Interaction.edit_original_response:37 +#: discord.interactions.InteractionMessage.edit:31 +#: discord.interactions.InteractionResponse.edit_message:28 +#: discord.message.Message.edit:56 of +msgid "" +"The updated view to update this message with. If ``None`` is passed then " +"the view is removed." +msgstr "" + +#: 12c60e70af4046e8ba10b2e84f4f0bb3 332dbf07fc3c4518af8fb62bff79dcac +#: 67b05d01e4534778912bcc2bc182d711 +#: discord.interactions.Interaction.edit_original_message:6 +#: discord.interactions.Interaction.edit_original_response:52 +#: discord.interactions.InteractionMessage.edit:46 +#: discord.interactions.InteractionResponse.edit_message:48 +#: discord.message.Message.edit:60 of +msgid "Editing the message failed." +msgstr "" + +#: 8f9e1ea8a2e340cd84961e1002372225 discord.message.Message.edit:61 of +msgid "" +"Tried to suppress a message without permissions or edited a message's" +" content or embed that isn't yours." +msgstr "" + +#: d13f7e34dd204807a23d8f242e6cfd40 discord.message.Message.edit:62 of +msgid "" +"You specified both ``embed`` and ``embeds``, specified both ``file`` " +"and ``files``, or either``file`` or ``files`` were of the wrong type." +msgstr "" + +#: 7810feb6286743e1815a8c05a3a7c021 discord.message.Message.edit:64 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr "" + +#: 963e6ad32ed64ea3866c7c9c5d8c9dff discord.message.Message.publish:3 of +msgid "Publishes this message to your announcement channel." +msgstr "" + +#: b79c0f15372a43f784dc744bcc092094 discord.message.Message.publish:5 of +msgid "" +"You must have the :attr:`~Permissions.send_messages` permission to do " +"this." +msgstr "" + +#: 0753a753405c425fbb76674fcddf3c26 discord.message.Message.publish:7 of +msgid "" +"If the message is not your own then the " +":attr:`~Permissions.manage_messages` permission is also needed." +msgstr "" + +#: discord.message.Message.publish:10 f6019d9837ad4cc2ba2a8577c019a50d of +msgid "You do not have the proper permissions to publish this message." +msgstr "" + +#: 3250bbcd5c12424d887a0f63f25245af discord.message.Message.publish:11 of +msgid "Publishing the message failed." +msgstr "" + +#: 5a1324914dc7460d865a7533dbe183bc discord.message.Message.pin:3 of +msgid "Pins the message." +msgstr "" + +#: 26202505ba6947e586039e2c754bf8ae 63843b42e1924b479832a6a8a7e48618 +#: discord.message.Message.pin:5 discord.message.Message.unpin:5 of +msgid "" +"You must have the :attr:`~Permissions.manage_messages` permission to do " +"this in a non-private channel context." +msgstr "" + +#: 7847b26da73f44e1838c342d6466391a discord.message.Message.pin:9 of +msgid "" +"The reason for pinning the message. Shows up on the audit log. .. " +"versionadded:: 1.4" +msgstr "" + +#: 3a1b5b438c584983b6f4325d989fd5ab discord.message.Message.pin:9 of +msgid "The reason for pinning the message. Shows up on the audit log." +msgstr "" + +#: 67f7fac70faa4d079104ff9431a16bd6 discord.message.Message.pin:14 of +msgid "You do not have permissions to pin the message." +msgstr "" + +#: 0d21afec7d6044b798fba0b60322f7a2 4533dbcb39de41998e7511a51a37bb11 +#: discord.message.Message.pin:15 discord.message.Message.unpin:15 of +msgid "The message or channel was not found or deleted." +msgstr "" + +#: 07a60251003047b4ba481745ac32e138 discord.message.Message.pin:16 of +msgid "" +"Pinning the message failed, probably due to the channel having more " +"than 50 pinned messages." +msgstr "" + +#: 2b5c4c9d2422472ab042fc1afdf24b9a discord.message.Message.unpin:3 of +msgid "Unpins the message." +msgstr "" + +#: db7044deecb0488889c0dfb4903060fe discord.message.Message.unpin:9 of +msgid "" +"The reason for unpinning the message. Shows up on the audit log. .. " +"versionadded:: 1.4" +msgstr "" + +#: 55b0db066a994507b071a381697cb7c9 discord.message.Message.unpin:9 of +msgid "The reason for unpinning the message. Shows up on the audit log." +msgstr "" + +#: 133f2ff9453e480f8c6e7d6262afa326 discord.message.Message.unpin:14 of +msgid "You do not have permissions to unpin the message." +msgstr "" + +#: a9aec70f724a485e8dcf19b74bd2fdd3 discord.message.Message.unpin:16 of +msgid "Unpinning the message failed." +msgstr "" + +#: db5902f5e8834ed1b202b00edd1b0fa1 discord.message.Message.add_reaction:3 of +msgid "Add a reaction to the message." +msgstr "" + +#: 1aa5ee02625744fb8125add13b1e3df3 bd657fd6ab1340feb3c8e0ed695a8135 +#: d66a572a4fa74e52addeaad952d58e89 discord.message.Message.add_reaction:5 +#: discord.message.Message.clear_reaction:5 +#: discord.message.Message.remove_reaction:5 of +msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgstr "" + +#: 0664e6f74ec5451ab9265738e4ebaa40 discord.message.Message.add_reaction:7 of +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 "" + +#: 6ed9eed730bf47b3b9f83a2ce7028148 discord.message.Message.add_reaction:12 of +msgid "The emoji to react with." +msgstr "" + +#: cce1f1518b1f4c9883a53cb3927da79a discord.message.Message.add_reaction:15 of +msgid "Adding the reaction failed." +msgstr "" + +#: 65ce388e1f284767a1e0cba3ce4e79a6 discord.message.Message.add_reaction:16 of +msgid "You do not have the proper permissions to react to the message." +msgstr "" + +#: 2ffd54e393ab406ea54fc4e98a266593 8dd42a82528e498f8b2686102872ac6f +#: b88c13ed83e5418a9170adff1a0e3523 discord.message.Message.add_reaction:17 +#: discord.message.Message.clear_reaction:17 discord.reaction.Reaction.clear:13 +#: of +msgid "The emoji you specified was not found." +msgstr "" + +#: 0505095b173e48159d4b6dcc1f0f7cd3 09176183d3c048e581fe6e2b9983e4bd +#: 3c7d18a165c749cda738792a0312f453 422c7b0521e54a28afe1e65e6a49e3ec +#: discord.message.Message.add_reaction:18 +#: discord.message.Message.clear_reaction:18 +#: discord.message.Message.remove_reaction:23 +#: discord.reaction.Reaction.clear:14 of +msgid "The emoji parameter is invalid." +msgstr "" + +#: discord.message.Message.remove_reaction:3 eb47bea041e84503880cbe32bd2eda61 +#: of +msgid "Remove a reaction by the member from the message." +msgstr "" + +#: 5ec65487191e427e87384de3b9fbcf36 discord.message.Message.remove_reaction:7 +#: of +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.Message.remove_reaction:10 f378e96813ce4f299c457ebd9601de1a +#: of +msgid "" +"The ``member`` parameter must represent a member and meet the " +":class:`abc.Snowflake` abc." +msgstr "" + +#: ae8c48c041ac4b45b9ad7077617146ff discord.message.Message.remove_reaction:14 +#: of +msgid "The emoji to remove." +msgstr "" + +#: discord.message.Message.remove_reaction:17 f659d999d16d4416bea4ca7796135f67 +#: of +msgid "The member for which to remove the reaction." +msgstr "" + +#: 662ed5086e76494795de8ea9d5bca33f 9941fe595096404386307faed343ca19 +#: discord.message.Message.remove_reaction:20 +#: discord.reaction.Reaction.remove:15 of +msgid "Removing the reaction failed." +msgstr "" + +#: 7f2bc964d6354e959e7a3a4c5cb754c2 discord.message.Message.remove_reaction:21 +#: discord.reaction.Reaction.remove:16 e41740887bbf483fb11ce6d383c6c9ab of +msgid "You do not have the proper permissions to remove the reaction." +msgstr "" + +#: discord.message.Message.remove_reaction:22 ebb24f101b3a4f38bfec6edcd473c2e2 +#: of +msgid "The member or emoji you specified was not found." +msgstr "" + +#: 7fc2eaf92eaf4373ad753b449a33caa1 discord.message.Message.clear_reaction:3 of +msgid "Clears a specific reaction from the message." +msgstr "" + +#: 4ca4c4f14828485bbc6d2656a2bfce2a b31e5a12186248189a19328b932b85ff +#: discord.message.Message.clear_reaction:7 +#: discord.message.Message.clear_reactions:5 of +msgid "You need the :attr:`~Permissions.manage_messages` permission to use this." +msgstr "" + +#: 548ef981414b4d49b0e7b676a0ba9e8f discord.message.Message.clear_reaction:12 +#: of +msgid "The emoji to clear." +msgstr "" + +#: 2233857fffb7482cb227cf18ee71a104 discord.message.Message.clear_reaction:15 +#: discord.reaction.Reaction.clear:11 e8b551eb942b41679802a74c35e331c1 of +msgid "Clearing the reaction failed." +msgstr "" + +#: 02e12cad95884ce09602f895440c1f7c 2c0573085ea84c958bc40240ec04a71a +#: discord.message.Message.clear_reaction:16 discord.reaction.Reaction.clear:12 +#: of +msgid "You do not have the proper permissions to clear the reaction." +msgstr "" + +#: 0a40adeb44d5439a950b26edbdd378d9 discord.message.Message.clear_reactions:3 +#: of +msgid "Removes all the reactions from the message." +msgstr "" + +#: 80ff4108cd8942f48f27098fcf3dbfba discord.message.Message.clear_reactions:7 +#: of +msgid "Removing the reactions failed." +msgstr "" + +#: 612b122606c349a39130881cbbebd531 discord.message.Message.clear_reactions:8 +#: of +msgid "You do not have the proper permissions to remove all the reactions." +msgstr "" + +#: defabf462bcb4c59a3f42586f4c6fdcf discord.message.Message.create_thread:3 of +msgid "Creates a public thread from this message." +msgstr "" + +#: discord.message.Message.create_thread:5 e88a011da86341b78f27a8424f89819f of +msgid "" +"You must have :attr:`~discord.Permissions.create_public_threads` in order" +" to create a public thread from a message." +msgstr "" + +#: d5ce5953554646d39d00cc9b39f2b240 discord.message.Message.create_thread:8 of +msgid "The channel this message belongs in must be a :class:`TextChannel`." +msgstr "" + +#: b76d73bb2eec453fa791730f2896373e c412555942314e6abb96db9bca6ed6c0 +#: discord.channel.ForumChannel.create_thread:11 +#: discord.channel.TextChannel.create_thread:11 +#: discord.message.Message.create_thread:13 of +msgid "The name of the thread." +msgstr "" + +#: 30e22d15e90d4423afb572096bc361de d4ed5bbfc3cd43088a3b6e8715f45654 +#: discord.channel.ForumChannel.create_thread:53 +#: discord.channel.TextChannel.create_thread:19 +#: discord.message.Message.create_thread:16 of +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 "" + +#: 181f2f80fc1c44fd9bed109ac89f141e 8e3b3a9d19ac4812927782e4fa09edfe +#: discord.message.Message.create_thread:20 discord.threads.Thread.edit:30 of +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 "" + +#: 926796b3230345a3843522da29c30bb8 discord.message.Message.create_thread:24 of +msgid "The created thread." +msgstr "" + +#: 9f646bb40e254fe0b597541bce565ff5 discord.message.Message.create_thread:25 +#: discord.threads.Thread.archive:10 discord.threads.Thread.unarchive:6 +#: f5280afb2c934a6ea25391480ed57a0e of +msgid ":class:`.Thread`" +msgstr "" + +#: 1edc4b26a7b14e7ebc76ed185b7258dd ac637d19fb1d403d95c9d2561056cdc5 +#: discord.channel.ForumChannel.create_thread:70 +#: discord.channel.TextChannel.create_thread:42 +#: discord.message.Message.create_thread:27 of +msgid "You do not have permissions to create a thread." +msgstr "" + +#: 0fe9251d141d41ffa3f62b42ca7fb130 discord.message.Message.create_thread:28 of +msgid "Creating the thread failed." +msgstr "" + +#: discord.message.Message.create_thread:29 f428c849be8f4e07aaf5ed090b6216de of +msgid "This message does not have guild info attached." +msgstr "" + +#: discord.message.Message.reply:3 fbd67ff4c215400ea4a271748c5dc77c of +msgid "" +"A shortcut method to :meth:`.abc.Messageable.send` to reply to the " +":class:`.Message`." +msgstr "" + +#: 8fb0c77645f547c6872c4b243378a15d discord.message.Message.reply:9 of +msgid ":class:`.Message`" +msgstr "" + +#: 407cc6ed96864a86a0c521ed428b7511 discord.message.Message.reply:13 of +msgid "" +"The ``files`` list is not of the appropriate size, or you specified " +"both ``file`` and ``files``." +msgstr "" + +#: 3dafec6926db4c4d81092ac287d3d107 discord.message.Message.end_poll:3 of +msgid "" +"Immediately ends the poll associated with this message. Only doable by " +"the poll's owner." +msgstr "" + +#: 4a3dc6d67ed745eb97c46bc2b0126c04 discord.message.Message.end_poll:7 of +msgid "The updated message." +msgstr "" + +#: 301847af28674e3fa66b98a999ad3a24 c6245cc6405d4d10a83d87b23ebb1501 +#: discord.message.Message.end_poll:8 discord.reaction.Reaction:54 of +msgid ":class:`Message`" +msgstr "" + +#: c3d9fa4ad2024a41b78d90e1ab3ecd18 discord.message.Message.end_poll:10 of +msgid "You do not have permissions to end this poll." +msgstr "" + +#: 4c4e783c9fed479e9d3f508871e459d1 discord.message.Message.end_poll:11 of +msgid "Ending this poll failed." +msgstr "" + +#: dd4d2e31e18f48c893bb52c2705c78ab discord.message.Message.to_reference:1 of +msgid "Creates a :class:`~discord.MessageReference` from the current message." +msgstr "" + +#: 86483833c0624de19d40b49b553e42d5 discord.message.Message.to_reference:6 of +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 "" + +#: c506ff24bf594020a7e0c82912c8d828 discord.message.Message.to_reference:6 of +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 "" + +#: 8a8ab09da0a9465bb681ee6462a156b6 discord.message.Message.to_reference:12 of +msgid "The reference to this message." +msgstr "" + +#: discord.message.Message.to_reference:13 f06595a3a15743dcbeae344ccd5daf42 of +msgid ":class:`~discord.MessageReference`" +msgstr "" + +#: 463786c736924e608ec8378a080aaa31 discord.message.DeletedReferencedMessage:1 +#: of +msgid "" +"A special sentinel type that denotes whether the resolved message " +"referenced message had since been deleted." +msgstr "" + +#: 05f414ff3d5f40a99da782fcff12356a discord.message.DeletedReferencedMessage:4 +#: of +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 "" + +#: b91f6f228ec34d6e84926a07cb3d5529 discord.DeletedReferencedMessage.id:1 of +msgid "The message ID of the deleted referenced message." +msgstr "" + +#: 5b18fda51f044f26a474b5006c9e19f3 +#: discord.DeletedReferencedMessage.channel_id:1 of +msgid "The channel ID of the deleted referenced message." +msgstr "" + +#: discord.DeletedReferencedMessage.guild_id:1 f98421f4146f431d805b01b7566a2e35 +#: of +msgid "The guild ID of the deleted referenced message." +msgstr "" + +#: 443e4a7e83794c9ca6b03288c36bc0db discord.reaction.Reaction:1 of +msgid "Represents a reaction to a message." +msgstr "" + +#: 60bb87648d9040c3bdc1881005a683a5 6b17d7197c824dbf9b1b9f5555dda822 +#: discord.invite.Invite:3 discord.reaction.Reaction:3 of +msgid "" +"Depending on the way this object was created, some of the attributes can " +"have a value of ``None``." +msgstr "" + +#: discord.reaction.Reaction:10 f040ad6d3ba445bf806d65e991a4adb5 of +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 "" + +#: 8aa833a603ae439ab7e49c83c19b4e35 discord.reaction.Reaction:16 of +msgid "Checks if two reactions are not equal." +msgstr "" + +#: 33e424db11bb4c59a3cd27e734ff36fd discord.reaction.Reaction:20 of +msgid "Returns the reaction's hash." +msgstr "" + +#: 14eaf906b99446a2934f19940182a54f discord.reaction.Reaction:24 of +msgid "Returns the string form of the reaction's emoji." +msgstr "" + +#: 49a6023ce4184bde8d8392dce854c7b5 discord.reaction.Reaction:28 of +msgid "The reaction emoji. May be a custom emoji, or a unicode emoji." +msgstr "" + +#: 4bde8fe9c1b843e1ac8e64327c6fa644 d0fdab02f7ff4c81b105f060099ea6dd +#: discord.reaction.Reaction:30 discord.welcome_screen.WelcomeScreenChannel:21 +#: of +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "" + +#: 2c4aa0d7cbbb4f988a1a6fc2f1c7f688 discord.reaction.Reaction:34 of +msgid "The combined total of normal and super reactions for this emoji." +msgstr "" + +#: discord.reaction.Reaction:40 e57d310799d741d7bc0252178f43d114 of +msgid "If the user sent this as a normal reaction." +msgstr "" + +#: cc47d47b4dd9496ab72a4c8d4164fb31 discord.reaction.Reaction:46 of +msgid "If the user sent this as a super reaction." +msgstr "" + +#: discord.reaction.Reaction:52 e4ed4b4cd1854fd792b439e7a511e825 of +msgid "Message this reaction is for." +msgstr "" + +#: 5190e5726035489ba22258b7e607d443 d9ad7a2be3b24ac686dda32d9c316fc8 +#: discord.raw_models.RawReactionActionEvent:54 discord.reaction.Reaction:58 of +msgid "Whether this reaction is a burst (super) reaction." +msgstr "" + +#: 0958e07a78ed4d869f34ae625b3e196f discord.reaction.Reaction.users:1 of +msgid "" +"Returns an :class:`AsyncIterator` representing the users that have " +"reacted to the message." +msgstr "" + +#: 1f04234398f743a595187130048adfed discord.reaction.Reaction.users:3 of +msgid "" +"The ``after`` parameter must represent a member and meet the " +":class:`abc.Snowflake` abc." +msgstr "" + +#: discord.reaction.Reaction.users:7 f56abc2327e64340bb04db78a26912a0 of +msgid "" +"The maximum number of results to return. If not provided, returns all the" +" users who reacted to the message." +msgstr "" + +#: 380084668e484c1fa2c2a29a0770cb29 discord.reaction.Reaction.users:12 of +msgid "For pagination, reactions are sorted by member." +msgstr "" + +#: bc8530e934df4b92844df9fc397447a6 discord.reaction.Reaction.users:15 of +msgid "The type of reaction to get users for. Defaults to `normal`." +msgstr "" + +#: 2283d254fc64459f8958cd07bc7a1df1 discord.reaction.Reaction.users:18 of +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 "" + +#: 5a9b3c83c2c04f2d91cce4856581eee4 discord.reaction.Reaction.users:23 of +msgid "Getting the users for the reaction failed." +msgstr "" + +#: abcff3aaba8c4326aba0f10be153dcdf discord.reaction.Reaction.users:24 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ReactionIterator\\``" +msgstr "" + +#: 2b042430e8bf4ac69ad5fa232c94b85c discord.reaction.Reaction.users:41 of +msgid "Getting super reactors: ::" +msgstr "" + +#: 0fc3e29d13884d05af4fd7829184073f 859ad1f6d6fe4419a6e0d7429d714a1c +#: discord.Reaction.burst_colors:1 discord.Reaction.burst_colours:1 of +msgid "Returns a list possible :class:`Colour` this super reaction can be." +msgstr "" + +#: 9ea3273d46664bcabfaf997faf75903a discord.Reaction.burst_colours:3 of +msgid "There is an alias for this named :attr:`burst_colors`." +msgstr "" + +#: 4b1e6455f99b4cb48761829e9947ae34 discord.Reaction.burst_colors:3 of +msgid "There is an alias for this named :attr:`burst_colours`." +msgstr "" + +#: 8020928c7c884030a43d1f1e88be1f12 discord.Reaction.count_details:1 of +msgid "" +"Returns :class:`ReactionCountDetails` for the individual counts of normal" +" and super reactions made." +msgstr "" + +#: 4fedf8fd7cf14f929d4e43b0dc7ea4a9 discord.reaction.Reaction.is_custom_emoji:1 +#: of +msgid "If this is a custom emoji." +msgstr "" + +#: 80a1041811c44091b60360414c3f34d4 discord.reaction.Reaction.remove:3 of +msgid "Remove the reaction by the provided :class:`User` from the message." +msgstr "" + +#: 67cc8cd0b18a45748f81dbbd084e6c34 discord.reaction.Reaction.remove:5 of +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.Reaction.remove:8 e1a7b4b270994c6bac90d3e34c58a439 of +msgid "" +"The ``user`` parameter must represent a user or member and meet the " +":class:`abc.Snowflake` abc." +msgstr "" + +#: 480798e124144fd88c458233e8cae802 discord.reaction.Reaction.remove:12 of +msgid "The user or member from which to remove the reaction." +msgstr "" + +#: 9ed3319b3f8f4b26b59fec846526fc76 discord.reaction.Reaction.remove:17 of +msgid "The user you specified, or the reaction's message was not found." +msgstr "" + +#: a9b348caee0b4fbf8f25c7fed3fbe950 discord.reaction.Reaction.clear:3 of +msgid "Clears this reaction from the message." +msgstr "" + +#: b8aa893b08e947e6ac97e260e4875972 discord.reaction.Reaction.clear:5 of +msgid "" +"You need the :attr:`~Permissions.manage_messages` permission to use this." +" :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: 27e3ca8007f24a42a899c8fc86d444c9 discord.reaction.ReactionCountDetails:1 of +msgid "" +"Represents a breakdown of the normal and burst reaction counts for the " +"emoji." +msgstr "" + +#: 6ee28a4591c342499c80e1beabd65020 discord.reaction.ReactionCountDetails:5 of +msgid "The number of normal reactions for this emoji." +msgstr "" + +#: 79fcfd62a81b475ea5ccb85337642bac discord.reaction.ReactionCountDetails:11 of +msgid "The number of super reactions for this emoji." +msgstr "" + +#: ../../api/models.rst:105 438fa97418ac42c086378f5f6cd9cbb5 +msgid "Monetization" +msgstr "" + +#: 0912f7894a974f38b5c491381fb703de discord.monetization.SKU:1 of +msgid "Represents a Discord SKU (stock-keeping unit)." +msgstr "" + +#: 18fe6a743d8a4bb3b829f258f8d7533a discord.monetization.SKU:7 of +msgid "The SKU's ID." +msgstr "" + +#: c922fe84c9444e08b6923dd77e3e47c4 discord.monetization.SKU:13 of +msgid "The type of SKU." +msgstr "" + +#: 7eb21e004f3f4df98cc31e4e8d127d3a discord.monetization.SKU:15 of +msgid ":class:`SKUType`" +msgstr "" + +#: 50cef2d53ee946559047ecd0176caf96 discord.monetization.SKU:19 of +msgid "The ID of the application this SKU belongs to." +msgstr "" + +#: 316a83431191428293c26edf082f08bc discord.monetization.SKU:25 of +msgid "The name of the SKU." +msgstr "" + +#: d2a15e893ab040709adc7ecc9d98c68d discord.monetization.SKU:31 of +msgid "The SKU's slug." +msgstr "" + +#: 9ecda8e413964917aa9d81547e5061b7 discord.monetization.SKU:37 of +msgid "The SKU's flags." +msgstr "" + +#: 064c9c1e49414b42b274509ac23e53bf discord.monetization.SKU:39 of +msgid ":class:`SKUFlags`" +msgstr "" + +#: 167b1d199a94472395eeb277b09342b4 discord.SKU.url:1 of +msgid "Returns the URL for the SKU." +msgstr "" + +#: discord.monetization.Entitlement:1 f90050e635304cceb060faed27c18428 of +msgid "Represents a Discord entitlement." +msgstr "" + +#: 474393e263ed49ceadcdb9df979b1e80 discord.monetization.Entitlement:7 of +msgid "The entitlement's ID." +msgstr "" + +#: discord.monetization.Entitlement:13 e22b12906d11423b92816daccc7bbee6 of +msgid "The ID of the SKU this entitlement is for." +msgstr "" + +#: discord.monetization.Entitlement:19 fcc6d115692f4a39ad0cd1665c40aded of +msgid "The ID of the application this entitlement belongs to." +msgstr "" + +#: 390ffbbcdbea4754bbbd4fa8dc55c4a1 discord.monetization.Entitlement:25 of +msgid "The ID of the user that owns this entitlement." +msgstr "" + +#: 6cb0d709a1ce4db0ac68dcdb6166f2fc discord.monetization.Entitlement:27 +#: discord.monetization.Entitlement:57 eb3c7861a13a491ea908638d3b775c62 of +msgid "Union[:class:`int`, :class:`MISSING`]" +msgstr "" + +#: 6127f165c1f342a69f6e0693dc75a9f9 discord.monetization.Entitlement:31 of +msgid "The type of entitlement." +msgstr "" + +#: 7d438bff37c749b3950ffe589d702f9f discord.monetization.Entitlement:33 of +msgid ":class:`EntitlementType`" +msgstr "" + +#: discord.monetization.Entitlement:37 eeed4145d06f42de87ad7d9fa099ee64 of +msgid "Whether the entitlement has been deleted." +msgstr "" + +#: discord.monetization.Entitlement:43 e426dda4c7484e6c94320a0b89169497 of +msgid "When the entitlement starts." +msgstr "" + +#: 7d2c5e5d21084616a225b5b35ea056dc c2010b24b8dd4c6d88d0ecd78719e628 +#: discord.monetization.Entitlement:45 discord.monetization.Entitlement:51 of +msgid "Union[:class:`datetime.datetime`, :class:`MISSING`]" +msgstr "" + +#: 455f169162d3445d83c04197602e6bac discord.monetization.Entitlement:49 of +msgid "When the entitlement expires." +msgstr "" + +#: a8a68a11ea664400b47e3c47bb207c13 discord.monetization.Entitlement:55 of +msgid "The ID of the guild that owns this entitlement." +msgstr "" + +#: 75e64b3cc68246fd9a86531d95c85d6e discord.monetization.Entitlement:61 of +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 "" + +#: 7007221d52574f1ab5ad1b0a27d15876 discord.monetization.Entitlement.consume:3 +#: of +msgid "Consumes this entitlement." +msgstr "" + +#: 48fb2081fef249e38e28e7ff56356232 discord.monetization.Entitlement.consume:5 +#: of +msgid "" +"This can only be done on entitlements of type " +":attr:`EntitlementType.consumable`." +msgstr "" + +#: 1a95e9e2ea00431a8d3081cad5c245c4 discord.monetization.Entitlement.consume:7 +#: of +msgid "The entitlement is not consumable." +msgstr "" + +#: discord.monetization.Entitlement.consume:8 fb894fb00daa46e8b8dae1d812d0c7b9 +#: of +msgid "Consuming the entitlement failed." +msgstr "" + +#: 3c25dcfd92364bf79c3674ab64f0c7b6 discord.monetization.Entitlement.delete:3 +#: of +msgid "Deletes a test entitlement." +msgstr "" + +#: 8fa876c4cba046589d6be6c002dc5805 discord.monetization.Entitlement.delete:5 +#: of +msgid "" +"A test entitlement is an entitlement that was created using " +":meth:`Guild.create_test_entitlement` or " +":meth:`User.create_test_entitlement`." +msgstr "" + +#: 03034a25ec2842b49ff30db4103d47ab discord.monetization.Entitlement.delete:7 +#: of +msgid "Deleting the entitlement failed." +msgstr "" + +#: ../../api/models.rst:118 e844acaaa52845ed85e5fd6814cb0f53 +msgid "Guild" +msgstr "" + +#: db1ab6b381fe4cf2a74999dd87bf4c66 discord.guild.Guild:1 of +msgid "Represents a Discord guild." +msgstr "" + +#: 6ea24a3ae2eb4c84acbdea570bb61225 discord.guild.Guild:3 of +msgid "This is referred to as a \"server\" in the official Discord UI." +msgstr "" + +#: 366cf975af114c628f6c2dd3dc509e36 discord.guild.Guild:9 of +msgid "Checks if two guilds are equal." +msgstr "" + +#: 229df8b397124f35ba0f02f760cbca31 discord.guild.Guild:13 of +msgid "Checks if two guilds are not equal." +msgstr "" + +#: 9b50dcd790d04b489c01c87670b2a5c0 discord.guild.Guild:17 of +msgid "Returns the guild's hash." +msgstr "" + +#: 1cbf5b02d7d348cc9ad53a509759f84a discord.guild.Guild:21 of +msgid "Returns the guild's name." +msgstr "" + +#: 1a8044c512e34298a1e621c2018506b5 discord.guild.Guild:25 of +msgid "The guild name." +msgstr "" + +#: a49865a6df284e17adeb5f445d3524ff discord.guild.Guild:31 of +msgid "All emojis that the guild owns." +msgstr "" + +#: 258a28d33dbe4186945587d0e306c05b discord.guild.Guild:33 of +msgid "Tuple[:class:`Emoji`, ...]" +msgstr "" + +#: 93bac270df3c4e049e8b16b766fedea4 discord.guild.Guild:37 of +msgid "All stickers that the guild owns." +msgstr "" + +#: 0887294ac6c94174b7099a5f75c5a4f7 discord.guild.Guild:41 of +msgid "Tuple[:class:`GuildSticker`, ...]" +msgstr "" + +#: b43540d7ae864f39ab06e51116f8b67b discord.guild.Guild:45 of +msgid "The timeout to get sent to the AFK channel." +msgstr "" + +#: 8616d231b75a4b68b9d00fb946e6be36 discord.guild.Guild:51 of +msgid "The channel that denotes the AFK channel. ``None`` if it doesn't exist." +msgstr "" + +#: 4c522f09862f4ca68745afa6fe5084b0 discord.guild.Guild:53 of +msgid "Optional[:class:`VoiceChannel`]" +msgstr "" + +#: 0ea13064f858406d9a644970bab4738b 882f2ffccbb54152b08a3a1c84128add +#: discord.guild.Guild:57 discord.widget.Widget:19 of +msgid "The guild's ID." +msgstr "" + +#: c9538b5448934b30b766e0ae1d32918d discord.guild.Guild:63 of +msgid "Indicates if the guild invites are disabled." +msgstr "" + +#: 5e161c99d2614533a657fd69b38162ef discord.guild.Guild:69 of +msgid "The guild owner's ID. Use :attr:`Guild.owner` instead." +msgstr "" + +#: 678f43ad19ba4c61a33ce8f109f66203 discord.guild.Guild:75 of +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.Guild:79 e375ccafce024828b9792faeb45f8a70 of +msgid "" +"Check the :func:`on_guild_unavailable` and :func:`on_guild_available` " +"events." +msgstr "" + +#: bc2aad77e90e4ef89efa55be5b4b3c0c discord.guild.Guild:85 of +msgid "The maximum amount of presences for the guild." +msgstr "" + +#: 21f9958ddf3f47d88ffa435fa73d3e75 discord.guild.Guild:91 of +msgid "The maximum amount of members for the guild." +msgstr "" + +#: 30217731df6d4b218c05a58ba6c68105 discord.guild.Guild:95 of +msgid "This attribute is only available via :meth:`.Client.fetch_guild`." +msgstr "" + +#: 40324476aaaa4b58ae2b3e97fc7595d9 discord.guild.Guild:101 of +msgid "The maximum amount of users in a video channel." +msgstr "" + +#: 7621b825fc6848199afd96d57cdb3c46 discord.guild.Guild:109 of +msgid "The guild's description." +msgstr "" + +#: afd0570ec40e46bf9dd1d40f2894791b discord.guild.Guild:115 of +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 "" + +#: 058f5112199e488192d7833ff52a640b discord.guild.Guild:123 of +msgid "The guild's verification level." +msgstr "" + +#: 30f9afd8d244416dbcacd423e52553d9 discord.guild.Guild:125 +#: discord.invite.PartialInviteGuild:40 fc441b8a398a45528430a0b152144c74 of +msgid ":class:`VerificationLevel`" +msgstr "" + +#: discord.guild.Guild:129 f5dde26f539a4a519dfd9d17d13e77dd of +msgid "The guild's explicit content filter." +msgstr "" + +#: 8eabd9ce697640f598d06c0958ad8883 discord.guild.Guild:131 of +msgid ":class:`ContentFilter`" +msgstr "" + +#: discord.guild.Guild:135 fb017f4588244305b97543cecc6f7327 of +msgid "The guild's notification settings." +msgstr "" + +#: 7697e3149f17414f9cd6205716954255 discord.guild.Guild:137 of +msgid ":class:`NotificationLevel`" +msgstr "" + +#: 96094a79a794453ca947a68e85a7ac9d discord.guild.Guild:141 of +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 "" + +#: 1062d87a1499437b8d0fad52243a2c42 402fe8591df646adab6f23b2f9d9081b +#: discord.automod.AutoModTriggerMetadata:29 +#: discord.automod.AutoModTriggerMetadata:38 +#: discord.automod.AutoModTriggerMetadata:52 discord.guild.Guild:145 +#: discord.invite.PartialInviteGuild:46 discord.sticker.StandardSticker:53 of +msgid "List[:class:`str`]" +msgstr "" + +#: 2c052457608241eba3b00da2a2a12fde discord.guild.Guild:149 of +msgid "" +"The premium tier for this guild. Corresponds to \"Nitro Server\" in the " +"official UI. The number goes from 0 to 3 inclusive." +msgstr "" + +#: 7c4970cbb42d464999f7d038ad54c407 discord.guild.Guild:156 of +msgid "The number of \"boosts\" this guild currently has." +msgstr "" + +#: b13ceeec9b754f61ae4851568efe13d3 discord.guild.Guild:162 of +msgid "Indicates if the guild has premium progress bar enabled." +msgstr "" + +#: 450c59c978d0455da13ab5e457f9d5bb discord.guild.Guild:170 of +msgid "" +"The preferred locale for the guild. Used when filtering Server Discovery " +"results to a specific language." +msgstr "" + +#: 512295e7ee00418eb57569f797cf38bd discord.guild.Guild:177 of +msgid "The guild's NSFW level." +msgstr "" + +#: cb80e8016d41430cabcaa25c939547ec discord.guild.Guild:181 of +msgid ":class:`NSFWLevel`" +msgstr "" + +#: 4fd548acdbe942b6991c79437ea7f900 discord.guild.Guild:185 of +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 "" + +#: 6482522942c045cfaf1b031b70eb826a discord.guild.Guild:194 of +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 "" + +#: 0120dd3a92464615b401de79efb6e0d9 discord.guild.Guild.fetch_members:1 of +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.Guild.fetch_members:6 fb2df2dda5d44726afe47364f6c07cc3 of +msgid "" +"This method is an API call. For general usage, consider :attr:`members` " +"instead." +msgstr "" + +#: 23c7ea33859848df952ea7e2cf3208d6 discord.guild.Guild.fetch_members:13 of +msgid "" +"The number of members to retrieve. Defaults to 1000. Pass ``None`` to " +"fetch all members. Note that this is potentially slow." +msgstr "" + +#: af75813c15d24e61b162b7b6c73903e0 discord.guild.Guild.fetch_members:17 of +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 "" + +#: ce79475da5b3429490204a963d62eb31 discord.guild.Guild.fetch_members:22 of +msgid ":class:`.Member` -- The member with the member data parsed." +msgstr "" + +#: 31b960ea95b743da9185fea00ff094d8 9cb64e499c0f479382a5ec14961861e2 +#: discord.guild.Guild.chunk:14 discord.guild.Guild.fetch_members:24 of +msgid "The members intent is not enabled." +msgstr "" + +#: 077d9bc4af6441c6a5ed391c7ac1e1d2 5641b671700a4bf3b21a2239f64e9cd8 +#: discord.guild.Guild.fetch_members:25 discord.guild.Guild.search_members:19 +#: of +msgid "Getting the members failed." +msgstr "" + +#: 3fe2216ce94246bda3794d4c16683ddd discord.guild.Guild.fetch_members:26 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" +msgstr "" + +#: 081c6429caa04e0a8c5e5dbf3e7662c7 4c5a13c5676c44cc86de248b93dd8baa +#: discord.guild.Guild.bans:41 discord.guild.Guild.fetch_members:35 of +msgid "Flattening into a list ::" +msgstr "" + +#: ae8d71971791441db70367c5a6d14451 discord.guild.Guild.audit_logs:1 of +msgid "" +"Returns an :class:`AsyncIterator` that enables receiving the guild's " +"audit logs." +msgstr "" + +#: 888f32c854a1461e9e8a19497ea6576e discord.guild.Guild.audit_logs:3 of +msgid "" +"You must have the :attr:`~Permissions.view_audit_log` permission to use " +"this." +msgstr "" + +#: 2c14687569f44565a2b9669476dcb351 discord.guild.Guild.audit_logs:5 of +msgid "" +"See `API documentation `_ for more information about the `before`" +" and `after` parameters." +msgstr "" + +#: discord.guild.Guild.audit_logs:9 fb2eba26c34c411ca8bbe737728d0a39 of +msgid "The number of entries to retrieve. If ``None`` retrieve all entries." +msgstr "" + +#: 5cf3fb6971b44875b110b8bf4e68ed39 discord.guild.Guild.audit_logs:12 of +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 "" + +#: a3d821e0288a4f5c8eeac00a68f740d9 discord.guild.Guild.audit_logs:17 of +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 "" + +#: 6cd1626aa86e49e383b0cd2cd3538dd9 discord.guild.Guild.audit_logs:22 of +msgid "The moderator to filter entries from." +msgstr "" + +#: 14e26f608aa6430a92c507d3647cb792 discord.guild.Guild.audit_logs:25 of +msgid "The action to filter with." +msgstr "" + +#: 509ca146023a4b0b8f0d92909152f46d discord.guild.Guild.audit_logs:28 of +msgid ":class:`AuditLogEntry` -- The audit log entry." +msgstr "" + +#: discord.guild.Guild.audit_logs:30 f6f6cae23df840329202e2ff1533930a of +msgid "You are not allowed to fetch audit logs" +msgstr "" + +#: 853d3de6365f4416975a212373d7fc6a discord.guild.Guild.audit_logs:31 of +msgid "An error occurred while fetching the audit logs." +msgstr "" + +#: 71a9a557b42348ec8e3746a3f51ea658 discord.guild.Guild.audit_logs:32 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.AuditLogIterator\\``" +msgstr "" + +#: cc8f18ece4004b4e8d0bdadbebccf25f discord.guild.Guild.audit_logs:36 of +msgid "Getting the first 100 entries: ::" +msgstr "" + +#: 99f720978c984a339eba44173d6a39c1 discord.guild.Guild.audit_logs:41 of +msgid "Getting entries for a specific action: ::" +msgstr "" + +#: cc73d866480b4b3db62be86a652f10b9 discord.guild.Guild.audit_logs:46 of +msgid "Getting entries made by a specific user: ::" +msgstr "" + +#: 6ce1830b26764a30a5e526eeaa23b59f discord.Guild.channels:1 of +msgid "A list of channels that belong to this guild." +msgstr "" + +#: 2d77e18619ef45009234869221d9121c discord.Guild.threads:1 of +msgid "A list of threads that you have permission to view." +msgstr "" + +#: 40d9ed8c7b2a49a89fdb8479d6c0cacc discord.Guild.jump_url:1 of +msgid "Returns a URL that allows the client to jump to the guild." +msgstr "" + +#: 3d4d9b02116d4da4ad340477b0e48753 discord.Guild.large:1 of +msgid "Indicates if the guild is a 'large' guild." +msgstr "" + +#: b9a7a645115c4ce48b106b7a1a01a40e discord.Guild.large:3 of +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 "" + +#: a6d6d0cf319d424fb1c0ca09689b9157 discord.Guild.voice_channels:1 of +msgid "A list of voice channels that belong to this guild." +msgstr "" + +#: 373e876152f148038089f956a932f20c 3b767c7eca7b4c108c0b8a1ec2392e54 +#: 8cd16538342347349db85c45c4048567 92654e54cec845f2b651b5237c632afb +#: discord.Guild.categories:3 discord.Guild.forum_channels:5 +#: discord.Guild.stage_channels:5 discord.Guild.text_channels:3 +#: discord.Guild.voice_channels:3 f180923c6bfe4725a27df0027fcc0aab of +msgid "This is sorted by the position and are in UI order from top to bottom." +msgstr "" + +#: bbbf7717cf1e4bc3bb698d09ffc8a345 discord.Guild.stage_channels:1 of +msgid "A list of stage channels that belong to this guild." +msgstr "" + +#: discord.Guild.forum_channels:1 f7ef4b1006854a04a171bc2e321489b6 of +msgid "A list of forum channels that belong to this guild." +msgstr "" + +#: 5aba6d2a00dd4aa4818d5f17ba085874 discord.Guild.me:1 of +msgid "" +"Similar to :attr:`Client.user` except an instance of :class:`Member`. " +"This is essentially used to get the member version of yourself." +msgstr "" + +#: b6776b60c00e49bab33fedb2af1df73f discord.Guild.voice_client:1 of +msgid "Returns the :class:`VoiceClient` associated with this guild, if any." +msgstr "" + +#: 2cd56f1919f54ac8a3d8634aa1ae7a60 discord.Guild.text_channels:1 of +msgid "A list of text channels that belong to this guild." +msgstr "" + +#: 22b43fc194e344c08456c90f8ccc357c discord.Guild.categories:1 of +msgid "A list of categories that belong to this guild." +msgstr "" + +#: 5d91fd36b588460390754e6fd167d425 discord.guild.Guild.by_category:1 of +msgid "Returns every :class:`CategoryChannel` and their associated channels." +msgstr "" + +#: discord.guild.Guild.by_category:3 e8278239d98d46b1a52f50039ea88c4a of +msgid "These channels and categories are sorted in the official Discord UI order." +msgstr "" + +#: 5abcb3095e764520976db20ad48da11a discord.guild.Guild.by_category:5 of +msgid "" +"If the channels do not have a category, then the first element of the " +"tuple is ``None``." +msgstr "" + +#: 4fbcb98503744d30b86ce12cbe73a634 discord.guild.Guild.by_category:8 of +msgid "The categories and their associated channels." +msgstr "" + +#: cda56a62a87d49d48faaadbf7c0763b5 discord.guild.Guild.by_category:9 of +msgid "" +"List[Tuple[Optional[:class:`CategoryChannel`], " +"List[:class:`abc.GuildChannel`]]]" +msgstr "" + +#: 3cf03eac3bf54951a9d1b63afa4fad2f discord.guild.Guild.get_channel_or_thread:1 +#: of +msgid "Returns a channel or thread with the given ID." +msgstr "" + +#: 3a1180e1deb44b6a8374aee179bde960 4f51145163c24784940599506be8b039 +#: 56c6c525daa045cca9d6990eb2a7785c 6fb31e7daaac48ecb8ae0f2ad021074f +#: 8e5457f352a34ed48d5a54f0cc4bd840 9b4160356f9649e1a8abcfdaf94ea03a +#: b9a5cb9dcc2a445e84a4df4707c5497a discord.channel._TextChannel.get_thread:6 +#: discord.guild.Guild.get_channel:8 +#: discord.guild.Guild.get_channel_or_thread:6 discord.guild.Guild.get_member:4 +#: discord.guild.Guild.get_role:4 discord.guild.Guild.get_scheduled_event:4 +#: discord.guild.Guild.get_stage_instance:6 discord.guild.Guild.get_thread:6 +#: discord.member.Member.get_role:6 of +msgid "The ID to search for." +msgstr "" + +#: 73cc5f097e0047fdaafa76a89e0d26f6 discord.guild.Guild.get_channel_or_thread:9 +#: of +msgid "The returned channel or thread or ``None`` if not found." +msgstr "" + +#: 77fc52a6e5c84cbf9bc3c58a7a94bd18 +#: discord.guild.Guild.get_channel_or_thread:10 of +msgid "Optional[Union[:class:`Thread`, :class:`.abc.GuildChannel`]]" +msgstr "" + +#: 7c63100096a24c67ba8c3fa77d186380 discord.guild.Guild.get_channel:1 of +msgid "Returns a channel with the given ID." +msgstr "" + +#: aa4d6cd6520845c5b47ba50e98855219 discord.guild.Guild.get_channel:5 of +msgid "This does *not* search for threads." +msgstr "" + +#: discord.guild.Guild.get_channel:11 ff8cc3b719644dccb57c090f5d814d48 of +msgid "The returned channel or ``None`` if not found." +msgstr "" + +#: 99732313fb2b45068a8b7f1756b51876 discord.guild.Guild.get_channel:12 of +msgid "Optional[:class:`.abc.GuildChannel`]" +msgstr "" + +#: 063021b717da4ac1bbe2b9d24f4e77a8 6756f4807ebc43bb9fcd4ade90cb9a0c +#: discord.channel._TextChannel.get_thread:1 discord.guild.Guild.get_thread:1 +#: of +msgid "Returns a thread with the given ID." +msgstr "" + +#: 0b52a378783845b9a553efe578dab819 2b49c4d121db43b194ffa1bfff78a702 +#: discord.channel._TextChannel.get_thread:9 discord.guild.Guild.get_thread:9 +#: of +msgid "The returned thread or ``None`` if not found." +msgstr "" + +#: c3e97d65cd5d406e9b8fe6c3548cb16d discord.Guild.system_channel:1 of +msgid "Returns the guild's channel used for system messages." +msgstr "" + +#: 2ae6c126f58341fc988bfa1804274039 9e3d2735e47a433f876420b2db8a5da2 +#: a64c2c61a8224e0bb4226e11ef4994a6 discord.Guild.public_updates_channel:5 +#: discord.Guild.rules_channel:4 discord.Guild.system_channel:3 of +msgid "If no channel is set, then this returns ``None``." +msgstr "" + +#: 42fb2ad7ac984b2fb420d833affbecaf discord.Guild.system_channel_flags:1 of +msgid "Returns the guild's system channel settings." +msgstr "" + +#: 79cdc8efcf314c76ad5285ef3ac7d66d discord.Guild.rules_channel:1 of +msgid "" +"Return's the guild's channel used for the rules. The guild must be a " +"Community guild." +msgstr "" + +#: 4cdbc6c8e74f4434b7b96631dd4e8ac0 discord.Guild.public_updates_channel:1 of +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 "" + +#: 87332d6da80941448cf805bef2040e2f discord.Guild.emoji_limit:1 of +msgid "The maximum number of emoji slots this guild has." +msgstr "" + +#: 87fb8a5cd4a64448920bc860483db18a discord.Guild.sticker_limit:1 of +msgid "The maximum number of sticker slots this guild has." +msgstr "" + +#: 382f34f464964f41b660ca62580be5b0 discord.Guild.bitrate_limit:1 of +msgid "The maximum bitrate for voice channels this guild can have." +msgstr "" + +#: 50b9637ed32944ce8d4d032493bd94af discord.Guild.filesize_limit:1 of +msgid "The maximum number of bytes files can have when uploaded to this guild." +msgstr "" + +#: c1634d0bf11144208238d3422e50572f discord.Guild.members:1 of +msgid "A list of members that belong to this guild." +msgstr "" + +#: 9e1bfb5c6d3c429fbad485e4e0911755 discord.guild.Guild.get_member:1 of +msgid "Returns a member with the given ID." +msgstr "" + +#: 11899c35315748e0af61b02ca2c67e7b discord.guild.Guild.get_member:7 of +msgid "The member or ``None`` if not found." +msgstr "" + +#: 3dd36482d6584e0caa30ff04b7f88ac2 discord.guild.Guild.get_member:8 +#: discord.guild.Guild.get_member_named:21 +#: discord.raw_models.AutoModActionExecutionEvent:47 +#: discord.raw_models.RawReactionActionEvent:40 +#: discord.raw_models.RawTypingEvent:33 e66d8f3d8faf4bf1b19074324f7b4f06 +#: ea5ce4db5209427392e12d73651f271b of +msgid "Optional[:class:`Member`]" +msgstr "" + +#: 9620482fa56a459eabd21941ab8d6849 discord.Guild.premium_subscribers:1 of +msgid "A list of members who have \"boosted\" this guild." +msgstr "" + +#: bf330cfe91ee46c49b95aea56ab062a4 discord.Guild.roles:1 of +msgid "Returns a :class:`list` of the guild's roles in hierarchy order." +msgstr "" + +#: 0377dec4d9d0431b87fefbf7989a745b discord.Guild.roles:3 of +msgid "The first element of this list will be the lowest role in the hierarchy." +msgstr "" + +#: 8f5df98b969a48cb85026bf9c8d2ed81 discord.guild.Guild.get_role:1 of +msgid "Returns a role with the given ID." +msgstr "" + +#: 75f2adc480a74d009cd6a50616a74db2 discord.guild.Guild.get_role:7 of +msgid "The role or ``None`` if not found." +msgstr "" + +#: 49faa26614694f83a8a1031e5b037fc0 a59751e769344c159a35d97d289207ab +#: discord.guild.Guild.get_role:8 discord.member.Member.get_role:10 of +msgid "Optional[:class:`Role`]" +msgstr "" + +#: discord.Guild.default_role:1 f4fc8210064941dbb8869f5e26c39a3a of +msgid "Gets the @everyone role that all members have by default." +msgstr "" + +#: 32b04d6a2dde453fa99673b5d4b6dd65 discord.Guild.premium_subscriber_role:1 of +msgid "Gets the premium subscriber role, AKA \"boost\" role, in this guild." +msgstr "" + +#: 281b90db195b429d989343b55c507a32 discord.Guild.self_role:1 of +msgid "Gets the role associated with this client's user, if any." +msgstr "" + +#: c13aa5fc5ca24a538fa770acba338f68 discord.Guild.stage_instances:1 of +msgid "" +"Returns a :class:`list` of the guild's stage instances that are currently" +" running." +msgstr "" + +#: discord.guild.Guild.get_stage_instance:1 fc99eb73f72942eea987ad13cc9e1d81 of +msgid "Returns a stage instance with the given ID." +msgstr "" + +#: b6bb1a2527644e4b87b69d5db0262f3b discord.guild.Guild.get_stage_instance:9 of +msgid "The stage instance or ``None`` if not found." +msgstr "" + +#: 9a1967e478074ccaa951da219250162b discord.guild.Guild.get_stage_instance:10 +#: of +msgid "Optional[:class:`StageInstance`]" +msgstr "" + +#: discord.Guild.owner:1 ebfa0bfbc6de4d2ab737e25be9da32dd of +msgid "The member that owns the guild." +msgstr "" + +#: 9edfce4f13344022a20bc5d74a5618f8 d8382b4b46e949acbd18ad7290999e60 +#: discord.Guild.icon:1 discord.PartialInviteGuild.icon:1 +#: discord.PartialWebhookGuild.icon:1 of +msgid "Returns the guild's icon asset, if available." +msgstr "" + +#: 79b98460de4a45918567ea4ed97db67b cdc6de4d93d84126981872de7ddfd9e4 +#: discord.Guild.banner:1 discord.PartialInviteGuild.banner:1 of +msgid "Returns the guild's banner asset, if available." +msgstr "" + +#: 1503595c1aad4549a6988e6597add1bd 617b62d85d634607ba8b35af07a4aed2 +#: discord.Guild.splash:1 discord.PartialInviteGuild.splash:1 of +msgid "Returns the guild's invite splash asset, if available." +msgstr "" + +#: 277e63e39cce4b76b7a0c9f020c5bd43 discord.Guild.discovery_splash:1 of +msgid "Returns the guild's discovery splash asset, if available." +msgstr "" + +#: 25aaad6f80ad4572b4f36923fb9f132b discord.Guild.member_count:1 of +msgid "Returns the true member count regardless of it being loaded fully or not." +msgstr "" + +#: b7ccf0f88ffa435688d7e3fe61ba00fa discord.Guild.member_count:5 of +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 "" + +#: 3a535c2ef8d6481282d9ef9ed786082c discord.Guild.chunked:1 of +msgid "Returns a boolean indicating if the guild is \"chunked\"." +msgstr "" + +#: 239d55a0fbfd45539a7a3e9b81987630 discord.Guild.chunked:3 of +msgid "" +"A chunked guild means that :attr:`member_count` is equal to the number of" +" members stored in the internal :attr:`members` cache." +msgstr "" + +#: bfd0b7b89f9d499fb1319f6072489e7f discord.Guild.chunked:6 of +msgid "" +"If this value returns ``False``, then you should request for offline " +"members." +msgstr "" + +#: c834ed32571a45efaf70049924028c84 discord.Guild.shard_id:1 of +msgid "Returns the shard ID for this guild if applicable." +msgstr "" + +#: 2a63da98f7714298bd86c262529e96fc 98a9abb4d99d4af6a1bc90dead64714b +#: discord.Guild.created_at:1 discord.PartialInviteGuild.created_at:1 of +msgid "Returns the guild's creation time in UTC." +msgstr "" + +#: 21438da4623b4f089e64f5fd9065d2c8 discord.Guild.invites_disabled:1 of +msgid "Returns a boolean indicating if the guild invites are disabled." +msgstr "" + +#: 389668f9993d42cb9e8b13be6aedaa12 discord.guild.Guild.get_member_named:1 of +msgid "Returns the first member found that matches the name provided." +msgstr "" + +#: 5a17c55789534edba8bf8ff9e15f399e discord.guild.Guild.get_member_named:3 of +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 "" + +#: d458dfa7d494407a91d3c42d7b71cb21 discord.guild.Guild.get_member_named:8 of +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 "" + +#: b6257865a85f4b6680875aa63c4badde discord.guild.Guild.get_member_named:13 of +msgid "If no member is found, ``None`` is returned." +msgstr "" + +#: 1dfe62681b2f48f295a5625f440b6665 discord.guild.Guild.get_member_named:16 of +msgid "The name of the member to lookup with an optional discriminator." +msgstr "" + +#: discord.guild.Guild.get_member_named:19 e1562c59250e48369ff2dfd424899106 of +msgid "" +"The member in this guild with the associated name. If not found then " +"``None`` is returned." +msgstr "" + +#: 18d743c07fc04fdca34d8ecf8c42d49c discord.guild.Guild.create_text_channel:3 +#: of +msgid "Creates a :class:`TextChannel` for the guild." +msgstr "" + +#: 7ccbcfbc7c0245ebaf80c63fa46ca066 d15d11b0f7884cfa9ce8b8e10b0f0081 +#: discord.guild.Guild.create_forum_channel:5 +#: discord.guild.Guild.create_text_channel:5 of +msgid "" +"Note that you need the :attr:`~Permissions.manage_channels` permission to" +" create the channel." +msgstr "" + +#: 0826bc86fc6844d7bd523a337d246ef2 59dc80266fe441d8a613d4b177b2519c +#: discord.guild.Guild.create_forum_channel:8 +#: discord.guild.Guild.create_text_channel:8 of +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 "" + +#: cd41b65a000942078be736927f9af9cf discord.guild.Guild.create_text_channel:15 +#: of +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 "" + +#: 1609f6ef955b46daa8feab89aed3f130 3caddaa8be9748a0b5c7e2b6d20702cd +#: 436aeddd681b4340bb158dac6a294899 baa4ae0af73d42ccbd4f2ab5592b2b5b +#: discord.guild.Guild.create_forum_channel:20 +#: discord.guild.Guild.create_stage_channel:8 +#: discord.guild.Guild.create_text_channel:20 +#: discord.guild.Guild.create_voice_channel:6 discord.widget.WidgetChannel:29 +#: f04ba645478941639f2375ddc8661948 of +msgid "The channel's name." +msgstr "" + +#: 0c2adeba36d84af9aeff4fd8ffa5d7a7 3790b49ca326407bacd99677d85e7ca1 +#: d061fcc33b574ffba76bef2a087460c8 discord.guild.Guild.create_forum_channel:23 +#: discord.guild.Guild.create_stage_channel:14 +#: discord.guild.Guild.create_text_channel:23 +#: discord.guild.Guild.create_voice_channel:9 e755d7a964c3468b8f7905f13a5ce264 +#: of +msgid "" +"The overwrites to apply to the channel. Useful for creating secret " +"channels." +msgstr "" + +#: 1edd8ba28a214a2689b68c958b267c2f 6f4ba6a61d134a19a4351fe041cd967f +#: 9d06515f3f7641b09dbaf639bb7e6587 d1087d9122e94791b0aa20790b0e668a +#: discord.guild.Guild.create_forum_channel:26 +#: discord.guild.Guild.create_stage_channel:17 +#: discord.guild.Guild.create_text_channel:26 +#: discord.guild.Guild.create_voice_channel:12 of +msgid "" +"The category to place the newly created channel under. The permissions " +"will be automatically synced to category if no overwrites are provided." +msgstr "" + +#: 0848ff8e94324c9db997de2a3c123e40 53e9a8d1ef7c486db9167ae9c78bb56c +#: c9a5417638814f06a3b018b6aa0838d6 ccdf540d4f874713bd55b15253bc98d8 +#: discord.guild.Guild.create_forum_channel:31 +#: discord.guild.Guild.create_stage_channel:22 +#: discord.guild.Guild.create_text_channel:31 +#: discord.guild.Guild.create_voice_channel:17 of +msgid "" +"The position in the channel list. This is a number that starts at 0. e.g." +" the top channel is position 0." +msgstr "" + +#: 2bc1d86a3c9d4ed2bcdcafe7083bdbca 445e7ca3ca40409399381cc3fa66c395 +#: b12af80947024bd196b707459a1c7ab1 b2201c903bb4444c92177c8cff398d07 +#: discord.channel.ForumChannel.edit:10 discord.channel.TextChannel.edit:19 +#: discord.guild.Guild.create_forum_channel:35 +#: discord.guild.Guild.create_stage_channel:11 +#: discord.guild.Guild.create_text_channel:35 of +msgid "The new channel's topic." +msgstr "" + +#: 04bb9a8b4c6a47a8ab232c8d41007089 9e9dd9425b054fcfb714c7318b17daaa +#: discord.guild.Guild.create_forum_channel:38 +#: discord.guild.Guild.create_text_channel:38 of +msgid "" +"Specifies the slowmode rate limit for user in this channel, in seconds. " +"The maximum value possible is `21600`." +msgstr "" + +#: 158f4a82c5184ed186f0c45d5ca5b0d7 5249f14b4df34180913d70dc0424dff8 +#: 6e0e5f25fba64a62b1ac7c005cb3c4aa discord.channel.ForumChannel.edit:14 +#: discord.channel.TextChannel.edit:23 +#: discord.guild.Guild.create_forum_channel:42 +#: discord.guild.Guild.create_text_channel:42 of +msgid "To mark the channel as NSFW or not." +msgstr "" + +#: 017d65bacf3b4bfbbd241ed984235147 2a5da0498eb4468e95bc376c2e663bb2 +#: 9adb04fec50a471792f88440104c745e c4783994e88f4aeb9f00f605dc7aac4b +#: discord.guild.Guild.create_forum_channel:45 +#: discord.guild.Guild.create_stage_channel:26 +#: discord.guild.Guild.create_text_channel:45 +#: discord.guild.Guild.create_voice_channel:38 of +msgid "The reason for creating this channel. Shows up on the audit log." +msgstr "" + +#: 04c22cfc54c044df8a63b0d3dbd206b3 10f333753a3f485ab9e166f5fa769198 +#: 1cd37bb095e24c0cb549434848340622 33ff9c9a82b64c10a83c4add616fdc82 +#: 62cd93ababdf4cfd9cce9f1a801e775d a47b33dd7e3e423bbc5cb05c12895fc7 +#: discord.channel.CategoryChannel.create_forum_channel:7 +#: discord.channel.CategoryChannel.create_stage_channel:7 +#: discord.channel.CategoryChannel.create_text_channel:5 +#: discord.channel.CategoryChannel.create_voice_channel:5 +#: discord.guild.Guild.create_category:10 +#: discord.guild.Guild.create_forum_channel:55 +#: discord.guild.Guild.create_stage_channel:29 +#: discord.guild.Guild.create_text_channel:48 +#: discord.guild.Guild.create_voice_channel:41 fde12a59435846c39cb0f10c1e144e14 +#: of +msgid "The channel that was just created." +msgstr "" + +#: 809a9a177767412ea6242641e68be16f 8b6a84cc25c349419c31de47c2303d96 +#: discord.channel.CategoryChannel.create_text_channel:6 +#: discord.guild.Guild.create_text_channel:49 of +msgid ":class:`TextChannel`" +msgstr "" + +#: 0114eb9f7deb4dadaa52b41a0ecda85d 4add16d398aa4f518bf3f72e29c63eb3 +#: 58e3a614336b400e90a85ec0941087e2 7e15a4a056c44b6aa411b98f9832c52d +#: c80ea61f690a43b1b33e04f5455833b6 c9655e17e69d47da801e88fca3d16f86 +#: discord.channel.CategoryChannel.clone:22 +#: discord.channel.StageChannel.clone:22 discord.channel.VoiceChannel.clone:22 +#: discord.channel._TextChannel.clone:22 discord.guild.Guild.create_category:13 +#: discord.guild.Guild.create_forum_channel:58 +#: discord.guild.Guild.create_stage_channel:32 +#: discord.guild.Guild.create_text_channel:51 +#: discord.guild.Guild.create_voice_channel:44 f8709c4a529b4bdf9a369a9e4fb45a7e +#: of +msgid "You do not have the proper permissions to create this channel." +msgstr "" + +#: 45065f4fa65d4bd8baf39aa0a4aae98e 6000a8b302d348b6bcc347bfd2d4a1ca +#: a152e92313ea4bb89cecd1b6400cdbc6 abfcf22ceae94b8ba266c29a2fa8ba6c +#: c9330770911546dd87b510a3ebe4cb6e discord.channel.CategoryChannel.clone:23 +#: discord.channel.StageChannel.clone:23 discord.channel.VoiceChannel.clone:23 +#: discord.channel._TextChannel.clone:23 discord.guild.Guild.create_category:14 +#: discord.guild.Guild.create_forum_channel:59 +#: discord.guild.Guild.create_stage_channel:33 +#: discord.guild.Guild.create_text_channel:52 +#: discord.guild.Guild.create_voice_channel:45 e3fbf7d8bf344cd0b81613c462bf5066 +#: ff2795e7198d4a86b02989a21cf39afa of +msgid "Creating the channel failed." +msgstr "" + +#: 0b663ebdee664572bfd1ee200898c6c4 18e2b63aff2d4d938974528b742d4c88 +#: 353e85d3c97d4d3f976c9a308e8dcd37 7bf63611242a4cdc9df3378f7c4b7143 +#: 83ae3be9003e4fc1af548a97fff9850d discord.guild.Guild.create_category:15 +#: discord.guild.Guild.create_stage_channel:34 +#: discord.guild.Guild.create_text_channel:53 +#: discord.guild.Guild.create_voice_channel:46 of +msgid "The permission overwrite information is not in proper form." +msgstr "" + +#: 7df77a377a454968b06f3a9737d86455 discord.guild.Guild.create_forum_channel:64 +#: discord.guild.Guild.create_text_channel:57 f84b5551f533496385cc0f08cdb31bcf +#: of +msgid "Creating a basic channel:" +msgstr "" + +#: aad25d44f07241feb96ce590433a0d06 d02100cc73e84244915ea5042b7d93b7 +#: discord.guild.Guild.create_forum_channel:70 +#: discord.guild.Guild.create_text_channel:63 of +msgid "Creating a \"secret\" channel:" +msgstr "" + +#: a7ac1b9755e64488ba4b0ef8ce4dba06 discord.guild.Guild.create_voice_channel:3 +#: of +msgid "" +"This is similar to :meth:`create_text_channel` except makes a " +":class:`VoiceChannel` instead." +msgstr "" + +#: da6c567358d2457a8328b9419aba1b0c discord.channel.StageChannel:62 +#: discord.channel.VoiceChannel:54 discord.guild.Guild.create_voice_channel:21 +#: e4a529edf2a7427d9f0d448e950c5a3d of +msgid "The channel's preferred audio bitrate in bits per second." +msgstr "" + +#: 61e6218add924882b4544d4f65fe3038 b45a714586514aa199c2aa4f8fd70cfc +#: discord.channel.VoiceChannel:60 discord.guild.Guild.create_voice_channel:24 +#: of +msgid "The channel's limit for number of members that can be in a voice channel." +msgstr "" + +#: 77472c0b87ee4c12919534435862d712 discord.guild.Guild.create_voice_channel:27 +#: of +msgid "" +"The region for the voice channel's voice communication. A value of " +"``None`` indicates automatic voice region detection. .. versionadded:: " +"1.7" +msgstr "" + +#: a012c67cbf8c4c758c6232633b5b90b4 ae62841317554b39b2c03b27fb66f7c4 +#: discord.channel.VoiceChannel:66 discord.guild.Guild.create_voice_channel:27 +#: of +msgid "" +"The region for the voice channel's voice communication. A value of " +"``None`` indicates automatic voice region detection." +msgstr "" + +#: 143d16193a8a48bca8f44b6c8f8b294c 198ebaf4f6584b8abd4208269d8a7f60 +#: discord.channel.VoiceChannel.edit:38 +#: discord.guild.Guild.create_voice_channel:33 of +msgid "" +"The camera video quality for the voice channel's participants. .. " +"versionadded:: 2.0" +msgstr "" + +#: 41726a9352834d8eb39464ddde36de96 discord.channel.VoiceChannel:75 +#: discord.channel.VoiceChannel.edit:38 +#: discord.guild.Guild.create_voice_channel:33 f81dfca9eaf142aabf6243ffebb15d3a +#: of +msgid "The camera video quality for the voice channel's participants." +msgstr "" + +#: 882663e87fa341189dff841fac58e4ba c5cb71ee58114ad9a77c365f6c9176be +#: discord.channel.CategoryChannel.create_voice_channel:6 +#: discord.guild.Guild.create_voice_channel:42 of +msgid ":class:`VoiceChannel`" +msgstr "" + +#: 63e5deabd69a4e71b26eabfb7b24de5d discord.guild.Guild.create_stage_channel:3 +#: of +msgid "" +"This is similar to :meth:`create_text_channel` except makes a " +":class:`StageChannel` instead." +msgstr "" + +#: 3682e80e1aff4ac38504209bf3c75b67 c125cd5cd18a4cc9bc46d5d9206d57e7 +#: discord.channel.CategoryChannel.create_stage_channel:8 +#: discord.guild.Guild.create_stage_channel:30 of +msgid ":class:`StageChannel`" +msgstr "" + +#: c2b2f7d2a8a84fc88f7a5a1071887bf2 discord.guild.Guild.create_forum_channel:3 +#: of +msgid "Creates a :class:`ForumChannel` for the guild." +msgstr "" + +#: 6a39c30db0244703b82139035e88f91d discord.guild.Guild.create_forum_channel:15 +#: of +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.Guild.create_forum_channel:48 eb7dfe39426b4d8abafbed2980956151 +#: of +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 "" + +#: 674bb951bf6f4615bdd90432ab644f2c acba40fd9b99460bb43889ba61c943d4 +#: discord.channel.ForumChannel.edit:41 +#: discord.guild.Guild.create_forum_channel:48 of +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 "" + +#: 18dbe7f3736a46b086fab0dc3f51122f 40f5253a0a994369be22ef233358809c +#: discord.channel.CategoryChannel.create_forum_channel:8 +#: discord.guild.Guild.create_forum_channel:56 of +msgid ":class:`ForumChannel`" +msgstr "" + +#: a86092ffb99e4f6d861dfb93fcdd2b28 discord.guild.Guild.create_forum_channel:60 +#: of +msgid "The argument is not in proper form." +msgstr "" + +#: 79a4e988b37d4e64afe1d69afb920ca7 9bdb1e626e5b4c1f9dad1bb9f2df7372 +#: discord.guild.Guild.create_category:3 of +msgid "" +"Same as :meth:`create_text_channel` except makes a " +":class:`CategoryChannel` instead." +msgstr "" + +#: 716d3c3986d448ba8bbae24d3a927b3d 9100aed34bd14af28745ceddb65aeb80 +#: discord.guild.Guild.create_category:7 of +msgid "" +"The ``category`` parameter is not supported in this function since " +"categories cannot have categories." +msgstr "" + +#: 27c0ba54755f4232854c7bb1e836306b 5f28803b6126460f925f168cd21164cd +#: discord.guild.Guild.create_category:11 of +msgid ":class:`CategoryChannel`" +msgstr "" + +#: b1abcb9f0f754be0b71b198a7424036c discord.guild.Guild.leave:3 of +msgid "" +"Leaves the guild. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: 372e626a7b2c4524bb3ba6cd71060653 discord.guild.Guild.leave:9 of +msgid "" +"You cannot leave the guild that you own, you must delete it instead via " +":meth:`delete`." +msgstr "" + +#: 1c39e7d936124a0bb40b3516844d893f discord.guild.Guild.leave:12 of +msgid "Leaving the guild failed." +msgstr "" + +#: 6ddfed444a50419fb1453c64936386f2 discord.guild.Guild.delete:3 of +msgid "Deletes the guild. You must be the guild owner to delete the guild." +msgstr "" + +#: discord.guild.Guild.delete:6 e59e369114c1423aa81d821f040d9c7f of +msgid "Deleting the guild failed." +msgstr "" + +#: 32c7959e2e0d475aaff8585af43a2269 discord.guild.Guild.delete:7 of +msgid "You do not have permissions to delete the guild." +msgstr "" + +#: 2a70d99413c1496a8359c704195070fe discord.guild.Guild.set_mfa_required:3 of +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 "" + +#: c77287e8b0af409aa38371f49a55b252 discord.guild.Guild.set_mfa_required:7 of +msgid "Whether MFA should be required to perform moderation actions." +msgstr "" + +#: discord.guild.Guild.set_mfa_required:10 fd273e9c1b4d49e0807f3df28ccebf24 of +msgid "The reason to show up in the audit log." +msgstr "" + +#: 0401bd2a8e2641b4b33a27e26bec88b9 6a5a47ad973940209028891e87d59314 +#: 6e383a0f60374e1792867357bb73d27a 845342df7f694a18b74e63bd8283fbf9 +#: discord.automod.AutoModRule.delete:10 discord.automod.AutoModRule.edit:35 +#: discord.guild.Guild.create_scheduled_event:35 +#: discord.guild.Guild.set_mfa_required:13 discord.member.Member.edit:84 +#: discord.member.Member.request_to_speak:17 +#: discord.scheduled_events.ScheduledEvent.cancel:17 +#: discord.scheduled_events.ScheduledEvent.complete:17 +#: discord.scheduled_events.ScheduledEvent.delete:6 +#: discord.scheduled_events.ScheduledEvent.edit:54 +#: discord.scheduled_events.ScheduledEvent.start:17 of +msgid "The operation failed." +msgstr "" + +#: discord.guild.Guild.set_mfa_required:14 f00beb8bcf8b4e62b56d0ffbd22cfff0 of +msgid "You are not the owner of the guild." +msgstr "" + +#: 11428f2987084ae8a40f98220ed55984 discord.guild.Guild.edit:3 of +msgid "Edits the guild." +msgstr "" + +#: 3014c6612676410f8e42c405e062f6b6 discord.guild.Guild.edit:5 of +msgid "" +"You must have the :attr:`~Permissions.manage_guild` permission to edit " +"the guild." +msgstr "" + +#: 83bdf14b43b6420dbc3bb9615f728f89 discord.guild.Guild.edit:8 of +msgid "" +"The `rules_channel` and `public_updates_channel` keyword-only parameters " +"were added." +msgstr "" + +#: 4cef9bdd20ec471381b60d7e5b638401 discord.guild.Guild.edit:11 of +msgid "The `discovery_splash` and `community` keyword-only parameters were added." +msgstr "" + +#: a056ab336703485491f8ed91c4cd7526 discord.guild.Guild.edit:14 of +msgid "The newly updated guild is returned." +msgstr "" + +#: dd46e3094d2f4ce3882c5849c7f57d9e discord.guild.Guild.edit:18 of +msgid "The new name of the guild." +msgstr "" + +#: 8a2a5c56f33e4533b97b13d27713e4d5 discord.guild.Guild.edit:21 of +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 "" + +#: bd982c8dcd424f1d888906966c6520e7 discord.guild.Guild.edit:25 of +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 "" + +#: 62998ed161f747af97127a6f4b69dea8 discord.guild.Guild.edit:30 of +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 "" + +#: ae92e8acc94045e7b21be41f9f3e3d51 discord.guild.Guild.edit:35 of +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 "" + +#: b263908257734e2596e92d68c51e1fe5 discord.guild.Guild.edit:41 of +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 "" + +#: a353ef800ffd4c0285090d9df4e8e459 discord.guild.Guild.edit:47 of +msgid "" +"Whether the guild should be a Community guild. If set to ``True``\\, both" +" ``rules_channel`` and ``public_updates_channel`` parameters are " +"required." +msgstr "" + +#: 222420833b4f41f3a3e29975e1d78035 discord.guild.Guild.edit:51 of +msgid "" +"The new channel that is the AFK channel. Could be ``None`` for no AFK " +"channel." +msgstr "" + +#: 57955f97485b4a8d99435d0ed84493b4 discord.guild.Guild.edit:54 of +msgid "The number of seconds until someone is moved to the AFK channel." +msgstr "" + +#: discord.guild.Guild.edit:57 ee57edd89c934f6f8851f745bd657faa of +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.Guild.edit:61 e00b07f969094865b88d709b4e3b2b73 of +msgid "The new verification level for the guild." +msgstr "" + +#: 58b9d36ce2304eb7ae2a7d248bc3d561 discord.guild.Guild.edit:64 of +msgid "The new default notification level for the guild." +msgstr "" + +#: discord.guild.Guild.edit:67 e848eb60847643f392c41d9933562d1f of +msgid "The new explicit content filter for the guild." +msgstr "" + +#: 9c088bed23924d1299dd212181955017 discord.guild.Guild.edit:70 of +msgid "" +"The new channel that is used for the system channel. Could be ``None`` " +"for no system channel." +msgstr "" + +#: discord.guild.Guild.edit:73 e4e7e720a8eb48a3802a88baea0f0a0a of +msgid "The new system channel settings to use with the new system channel." +msgstr "" + +#: discord.guild.Guild.edit:76 e8c42c080f354eb089e1fecd40acd31f of +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 "" + +#: 9fbd7fff4fd24355935af8d2aae792f1 discord.guild.Guild.edit:80 of +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 "" + +#: 3242067dfd4e44b78067a933e8675cde discord.guild.Guild.edit:85 of +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 "" + +#: 387f2c8ecb814ef79b4d196dc73a9991 discord.guild.Guild.edit:90 of +msgid "Whether the guild should have premium progress bar enabled." +msgstr "" + +#: ab83fdbf1e0e4760b895cdc4cf06ee7e discord.guild.Guild.edit:93 of +msgid "Whether the guild should have server invites enabled or disabled." +msgstr "" + +#: 226196ae337f47ba9ed1b2641b83f3df discord.guild.Guild.edit:96 of +msgid "The reason for editing this guild. Shows up on the audit log." +msgstr "" + +#: discord.guild.Guild.edit:99 f2ec2f8365b0482f88522cb620b9f3c2 of +msgid "You do not have permissions to edit the guild." +msgstr "" + +#: 3d2005f11a794335a10c47ceb9494569 7026e8922b26447f903df8f0411dae38 +#: discord.guild.Guild.edit:100 discord.integrations.StreamIntegration.edit:19 +#: of +msgid "Editing the guild failed." +msgstr "" + +#: ae815105c2f445988a7245f534d3ec20 discord.guild.Guild.edit:101 of +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 "" + +#: cf020628c49b457ab63b2155e49a9aa1 discord.guild.Guild.edit:103 of +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 "" + +#: 276f56a64f5843658e8be434f64806d5 9c735f0e65834a429826e96e1cd0e8e1 +#: discord.channel.CategoryChannel:33 discord.channel.ForumChannel:31 +#: discord.channel.StageChannel:33 discord.channel.TextChannel:31 +#: discord.channel.VoiceChannel:31 discord.guild.Guild.edit:105 +#: discord.integrations.BotIntegration:21 discord.integrations.Integration:21 +#: discord.integrations.StreamIntegration:21 discord.member.Member:48 +#: discord.role.Role:53 discord.scheduled_events.ScheduledEvent:27 +#: discord.stage_instance.StageInstance:29 discord.template.Template:52 +#: discord.threads.Thread:33 of +msgid ":class:`Guild`" +msgstr "" + +#: discord.guild.Guild.fetch_channels:3 ec1d25a9867d4249aee938ced8744313 of +msgid "Retrieves all :class:`abc.GuildChannel` that the guild has." +msgstr "" + +#: a060dfadcca74ce8a74827770f267656 discord.guild.Guild.fetch_channels:7 of +msgid "" +"This method is an API call. For general usage, consider :attr:`channels` " +"instead." +msgstr "" + +#: 72a6ea47b50d444e8be720b4e9f920b9 discord.guild.Guild.fetch_channels:11 of +msgid "All channels in the guild." +msgstr "" + +#: discord.guild.Guild.fetch_channels:12 ff60027791904e2da51e8afb72d19bc6 of +msgid "Sequence[:class:`abc.GuildChannel`]" +msgstr "" + +#: 77c5aece3a47484991744680b8ff1713 discord.guild.Guild.fetch_channels:14 of +msgid "An unknown channel type was received from Discord." +msgstr "" + +#: 4e3038da83364fee951438fc677b1bcd discord.guild.Guild.fetch_channels:15 of +msgid "Retrieving the channels failed." +msgstr "" + +#: 08d8e0b261174bf5985026c2d38886bc discord.guild.Guild.active_threads:3 of +msgid "Returns a list of active :class:`Thread` that the client can access." +msgstr "" + +#: 6cdf67c965c0468395de19b1edb81445 discord.guild.Guild.active_threads:5 of +msgid "This includes both private and public threads." +msgstr "" + +#: 77aa93650f0548b5b5f44e7454c3251a discord.guild.Guild.active_threads:9 of +msgid "The active threads" +msgstr "" + +#: discord.guild.Guild.active_threads:10 f1336549afe545e5b63468ec39a2d9a8 of +msgid "List[:class:`Thread`]" +msgstr "" + +#: 90fc74fa0c694a70aed7f1070b0dcc9a discord.guild.Guild.active_threads:12 of +msgid "The request to get the active threads failed." +msgstr "" + +#: c3a5be09680c4bb4b29c379de1ff3ad5 discord.guild.Guild.search_members:1 of +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 "" + +#: 3a0c12402f8e4f1c9a8df56e6f478ee0 discord.guild.Guild.search_members:5 of +msgid "" +"This method is an API call. For general usage, consider filtering " +":attr:`members` instead." +msgstr "" + +#: 0de4b1e2691e48e18560ab218d588c8c discord.guild.Guild.search_members:10 of +msgid "" +"Searches for usernames and nicknames that start with this string, case-" +"insensitive." +msgstr "" + +#: 4e654b49af1d473d943ba41ab77a4b3f discord.guild.Guild.search_members:13 of +msgid "The maximum number of members to retrieve, up to 1000." +msgstr "" + +#: 92f75e3a49844fddaa6a5089964c0135 accd314ed7a443a092b37ec3dd0d8643 +#: discord.guild.Guild.query_members:33 discord.guild.Guild.search_members:16 +#: of +msgid "The list of members that have matched the query." +msgstr "" + +#: 12afd1d7c7e440c880a4b51741d666bd 4ab8c0068b7244b3a7274cfc050aaa1f +#: d1bc4b075a1f4d74beb00c7b12f21914 discord.guild.Guild.query_members:34 +#: discord.guild.Guild.search_members:17 discord.widget.Widget:47 of +msgid "List[:class:`Member`]" +msgstr "" + +#: 34622231a6d44019beafcb50678c74cb discord.guild.Guild.fetch_member:3 of +msgid "Retrieves a :class:`Member` from a guild ID, and a member ID." +msgstr "" + +#: 9e8f21a714514f38bc975340a5d615d2 discord.guild.Guild.fetch_member:7 of +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.Guild.fetch_member:11 eaf9c2a41dc3449bad4fa716e05919fe of +msgid "The member's ID to fetch from." +msgstr "" + +#: c8716867e27c47d199c918ab7f1fd42a discord.guild.Guild.fetch_member:14 of +msgid "The member from the member ID." +msgstr "" + +#: a57ef03bb44d468185e9564cdc18a638 discord.guild.Guild.fetch_member:15 of +msgid ":class:`Member`" +msgstr "" + +#: 125f70fac7604877b0bd457d9307c8df discord.guild.Guild.fetch_member:17 of +msgid "You do not have access to the guild." +msgstr "" + +#: 6dea9ef6b41e49789e8679ae2d3c66f3 discord.guild.Guild.fetch_member:18 of +msgid "Fetching the member failed." +msgstr "" + +#: 998765fd112f49c7890d221c7b3df54f discord.guild.Guild.fetch_ban:3 of +msgid "Retrieves the :class:`BanEntry` for a user." +msgstr "" + +#: 4d271df745ba4e4d8d75b0690e6c5fec discord.guild.Guild.fetch_ban:5 of +msgid "" +"You must have the :attr:`~Permissions.ban_members` permission to get this" +" information." +msgstr "" + +#: 8feaeaab6d0c4bfc83cfdc3dc629cfc0 discord.guild.Guild.fetch_ban:9 of +msgid "The user to get ban information from." +msgstr "" + +#: 61c138eec62643948c4a0a9ef41b24b1 discord.guild.Guild.fetch_ban:12 of +msgid "The :class:`BanEntry` object for the specified user." +msgstr "" + +#: discord.guild.Guild.fetch_ban:13 f1265b8b1c3b4065854d6017be37b9a0 of +msgid ":class:`BanEntry`" +msgstr "" + +#: 53af8ec9a63546c58412a8f4710b321d 73cd4a54b33f468fbd6598ae6039b5ad +#: 9c4c94aac34c4e5daa5dec9015f1399e discord.abc.GuildChannel.invites:10 +#: discord.guild.Guild.bans:30 discord.guild.Guild.fetch_ban:15 +#: discord.guild.Guild.invites:11 fc14665c6b8c42f7b2021236fbe289a1 of +msgid "You do not have proper permissions to get the information." +msgstr "" + +#: 3f8c6f500b8d4c88b4ddce6ab0a57f7f discord.guild.Guild.fetch_ban:16 of +msgid "This user is not banned." +msgstr "" + +#: a18ed0d4d7704b9ea30fe7d2b8d050b0 dd2d4279f4094eb185c46164537534df +#: discord.abc.GuildChannel.invites:11 discord.guild.Guild.bans:31 +#: discord.guild.Guild.fetch_ban:17 discord.guild.Guild.invites:12 +#: e91a22a8592f4d83adfff9b890100c70 f604401cde9a47eeb37838e3eefdad3d of +msgid "An error occurred while fetching the information." +msgstr "" + +#: 63c9970013b74eab9035aba0b82c855e discord.guild.Guild.fetch_channel:3 of +msgid "" +"Retrieves a :class:`.abc.GuildChannel` or :class:`.Thread` with the " +"specified ID." +msgstr "" + +#: 80b8d9d092d847b29eea8795f8e6dbc8 discord.guild.Guild.fetch_channel:7 of +msgid "" +"This method is an API call. For general usage, consider " +":meth:`get_channel_or_thread` instead." +msgstr "" + +#: dd265519b29f40288f55accbe36ad0d2 discord.guild.Guild.fetch_channel:11 of +msgid "The channel from the ID." +msgstr "" + +#: a964c939aaf04a96ac70d5a8fdd4a8b6 discord.guild.Guild.fetch_channel:12 of +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "" + +#: 59ba84c18b934ead84f0ba94f9e4e6a2 discord.guild.Guild.fetch_channel:14 of +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 "" + +#: 437ad0ad76014283a02907a34ca01091 discord.guild.Guild.fetch_channel:15 of +msgid "Retrieving the channel failed." +msgstr "" + +#: 6af31751ceb34a3fa0252e9b345829e1 discord.guild.Guild.fetch_channel:16 of +msgid "Invalid Channel ID." +msgstr "" + +#: 86d5ca29effe4cb09b8d22c86e77656e discord.guild.Guild.fetch_channel:17 of +msgid "You do not have permission to fetch this channel." +msgstr "" + +#: 8d1aa24b8df846e198d57a66eaa690bd discord.guild.Guild.bans:3 of +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.Guild.bans:8 ef722d362274401cadccae1d34099995 of +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 "" + +#: 7a6783ca6f8d40a9b189fd699aa9ba79 discord.guild.Guild.bans:12 of +msgid "" +"The ``limit``, ``before``. and ``after`` parameters were added. Now " +"returns a :class:`.BanIterator` instead of a list of ``BanEntry`` " +"objects." +msgstr "" + +#: discord.guild.Guild.bans:19 e985008dbcff48aca12f0100d929a58b of +msgid "The number of bans to retrieve. Defaults to 1000." +msgstr "" + +#: c668a0aaaac3483eb31f1d9e8827eab2 discord.guild.Guild.bans:22 of +msgid "Retrieve bans before the given user." +msgstr "" + +#: discord.guild.Guild.bans:25 f83085d7ced84766af1276c9e2d23b61 of +msgid "Retrieve bans after the given user." +msgstr "" + +#: 73f3c061a7dc49a6b7a0281cd4ee722a discord.guild.Guild.bans:28 of +msgid ":class:`.BanEntry` -- The ban entry for the ban." +msgstr "" + +#: 1b254db9f76c48a3a18af4c1aa3d16e4 discord.guild.Guild.bans:32 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.BanIterator\\``" +msgstr "" + +#: 36bd9264268b41bc82369216df6d556e discord.guild.Guild.prune_members:3 of +msgid "Prunes the guild from its inactive members." +msgstr "" + +#: 9e184b794e3a48488563772ec896436e discord.guild.Guild.prune_members:5 of +msgid "" +"The inactive members are denoted if they have not logged on in ``days`` " +"number of days and have no roles." +msgstr "" + +#: 5d3ed663a2d247ae941a48d1f7ddf3d7 discord.guild.Guild.prune_members:8 of +msgid "" +"You must have the :attr:`~Permissions.kick_members` permission to use " +"this." +msgstr "" + +#: discord.guild.Guild.prune_members:11 f47e977e4213413095b13e20c8fa36d0 of +msgid "" +"To check how many members you would prune without actually pruning, see " +"the :meth:`estimate_pruned_members` function." +msgstr "" + +#: 2a76227ee9244bd1be22bcc036548369 discord.guild.Guild.prune_members:14 of +msgid "To prune members that have specific roles see the ``roles`` parameter." +msgstr "" + +#: 05582715c7ee4711947323e84fc4ba60 discord.guild.Guild.prune_members:16 of +msgid "The ``roles`` keyword-only parameter was added." +msgstr "" + +#: 0fd3894014d744e3a1de5dc175707f11 a6643b5e6f8548d2adfc203bbb424b8c +#: discord.guild.Guild.estimate_pruned_members:8 +#: discord.guild.Guild.prune_members:20 of +msgid "The number of days before counting as inactive." +msgstr "" + +#: 3224d7c321cc4c78b44b8fc4932f2b89 6211cc2aa291498796952ffa64eee7c9 +#: discord.abc.GuildChannel.set_permissions:53 +#: discord.guild.Guild.prune_members:23 discord.guild.Guild.unban:14 +#: discord.member.Member.move_to:18 discord.member.Member.remove_timeout:11 +#: discord.member.Member.timeout:11 discord.member.Member.timeout_for:13 of +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "" + +#: 3f1d1f1bc748436e9ef41a0a4d024fe7 discord.guild.Guild.prune_members:26 of +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 "" + +#: 9fe81644274d4411b33f21d867b79cbe discord.guild.Guild.prune_members:32 of +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 "" + +#: 5aa6ae18b0af4102b10a032b1b6a7e8f 913056eb50fa459dbf010b7884d25537 +#: discord.guild.Guild.estimate_pruned_members:20 +#: discord.guild.Guild.prune_members:36 of +msgid "You do not have permissions to prune members." +msgstr "" + +#: 5dc1ca51912b48ebbb7a301e0e5c7be4 discord.guild.Guild.prune_members:37 of +msgid "An error occurred while pruning members." +msgstr "" + +#: 7b88402799514b5cb8b7bbe58831a29e 95e8775caf6c4fa98a50493042af3094 +#: discord.guild.Guild.estimate_pruned_members:22 +#: discord.guild.Guild.prune_members:38 of +msgid "An integer was not passed for ``days``." +msgstr "" + +#: discord.guild.Guild.prune_members:40 f0e830e71ab24714baf086e45202c039 of +msgid "" +"The number of members pruned. If ``compute_prune_count`` is ``False`` " +"then this returns ``None``." +msgstr "" + +#: 5a96260e347a4b21ad9f5a11e79dca0d discord.guild.Guild.templates:3 of +msgid "Gets the list of templates from this guild." +msgstr "" + +#: discord.guild.Guild.templates:5 ef25d2947bf74162a067f3be348525dd of +msgid "Requires :attr:`~.Permissions.manage_guild` permissions." +msgstr "" + +#: 7d7692d53cee484d8d516a477ded5a56 discord.guild.Guild.templates:9 of +msgid "The templates for this guild." +msgstr "" + +#: a2964b1b45464c15bdd7949f8b1999c1 discord.guild.Guild.templates:10 of +msgid "List[:class:`Template`]" +msgstr "" + +#: 6a48d471dda844de8120ebeb9ac61d4f discord.guild.Guild.templates:12 of +msgid "You don't have permissions to get the templates." +msgstr "" + +#: discord.guild.Guild.webhooks:3 ed3a05b8d6c8434895efe539f774ddd9 of +msgid "Gets the list of webhooks from this guild." +msgstr "" + +#: 81f00aa66a804c659436513d84f58331 a41a818bb60d4197af2cfa72219eee39 +#: discord.channel.StageChannel.create_webhook:5 +#: discord.channel.StageChannel.webhooks:5 +#: discord.channel.VoiceChannel.create_webhook:5 +#: discord.channel.VoiceChannel.webhooks:5 +#: discord.channel._TextChannel.create_webhook:5 +#: discord.channel._TextChannel.webhooks:5 discord.guild.Guild.webhooks:5 of +msgid "Requires :attr:`~.Permissions.manage_webhooks` permissions." +msgstr "" + +#: 1b4210747893413196486dea81f2d24a discord.guild.Guild.webhooks:7 of +msgid "The webhooks for this guild." +msgstr "" + +#: 7253240c20004a45b527af391c6c7fae 99e2ef5f06e840b49beef674316afa93 +#: discord.channel.StageChannel.webhooks:8 +#: discord.channel.VoiceChannel.webhooks:8 +#: discord.channel._TextChannel.webhooks:8 discord.guild.Guild.webhooks:8 of +msgid "List[:class:`Webhook`]" +msgstr "" + +#: a35aad3bdf6a4eab97d658e6525ce10a cfc0d35c673d41278b8b1cd4581fee83 +#: discord.channel.StageChannel.webhooks:10 +#: discord.channel.VoiceChannel.webhooks:10 +#: discord.channel._TextChannel.webhooks:10 discord.guild.Guild.webhooks:10 of +msgid "You don't have permissions to get the webhooks." +msgstr "" + +#: 6ed6691303c4485ebb8803ae67509f8e +#: discord.guild.Guild.estimate_pruned_members:3 of +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 "" + +#: d27a0fa2d9394b858c7ef2054f3127e2 +#: discord.guild.Guild.estimate_pruned_members:11 of +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 "" + +#: 47d3809a6ba642ea9c25fc471b1a07e4 +#: discord.guild.Guild.estimate_pruned_members:11 of +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 "" + +#: 019bb91bee7f46fc8b771b3e5bf99c0f +#: discord.guild.Guild.estimate_pruned_members:17 of +msgid "The number of members estimated to be pruned." +msgstr "" + +#: discord.guild.Guild.estimate_pruned_members:21 +#: f46f5a56cae94de9a978505c18e3df19 of +msgid "An error occurred while fetching the prune members estimate." +msgstr "" + +#: 0970de5aed86413dab17883b99c8afac discord.guild.Guild.invites:3 of +msgid "Returns a list of all active instant invites from the guild." +msgstr "" + +#: discord.guild.Guild.invites:5 e991e4e67c0f4be1ad9b6e7230f98b7c of +msgid "" +"You must have the :attr:`~Permissions.manage_guild` permission to get " +"this information." +msgstr "" + +#: 74f1849dc85b465e874fdcba96c50071 b4eb1b6da60540cd89dedf2329be357a +#: discord.abc.GuildChannel.invites:7 discord.guild.Guild.invites:8 of +msgid "The list of invites that are currently active." +msgstr "" + +#: b28e08bf49ff49a7ace96e2b061393ed discord.guild.Guild.invites:9 of +msgid "List[:class:`Invite`]" +msgstr "" + +#: 615e1f0d0cb7492abcab7502b8f8e9a0 discord.guild.Guild.create_template:3 of +msgid "Creates a template for the guild." +msgstr "" + +#: a582a220595b498096d03893062a9df0 adfb039ef6d545d6aa4a65fee758b611 +#: b248bb63d2404648aa22ca648a5d0ca8 d99eae95a87a4b7f913ecc5a4c7ca6d6 +#: discord.guild.Guild.create_integration:5 +#: discord.guild.Guild.create_template:5 discord.guild.Guild.integrations:5 +#: discord.integrations.Integration.delete:5 +#: discord.integrations.StreamIntegration.edit:5 +#: discord.integrations.StreamIntegration.sync:5 of +msgid "You must have the :attr:`~Permissions.manage_guild` permission to do this." +msgstr "" + +#: 6573de58430a435fb453dcffcad5c318 8a02d4ac608d419788e95d560d214721 +#: discord.guild.Guild.create_template:11 discord.template.Template:19 of +msgid "The name of the template." +msgstr "" + +#: 29ab765f02d240d882a315f3e85185da d305a169d2574be8813ea5e8a02a9756 +#: discord.guild.Guild.create_template:14 discord.template.Template:25 of +msgid "The description of the template." +msgstr "" + +#: 760cda1cd1bf483ebd28b138dbac9316 discord.guild.Guild.create_template:17 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.template.Template\\``" +msgstr "" + +#: 0c00ff66a0c74ba8bdb568b9ade08e40 discord.guild.Guild.create_integration:3 of +msgid "Attaches an integration to the guild." +msgstr "" + +#: 7055633b41f14e90817f176388a13d25 discord.guild.Guild.create_integration:11 +#: of +msgid "The integration type (e.g. Twitch)." +msgstr "" + +#: 1346001cfed24b21b072ef9856fdbdae 944b63c7272645ac8e3cb2e3e21563fe +#: discord.guild.Guild.create_integration:14 +#: discord.integrations.BotIntegration:7 discord.integrations.Integration:7 +#: discord.integrations.StreamIntegration:7 of +msgid "The integration ID." +msgstr "" + +#: b2080ec5a9504c288adff5bb581385d4 d113a7909c6d4a71bf31959da1ae369d +#: discord.guild.Guild.create_integration:17 +#: discord.guild.Guild.integrations:13 of +msgid "You do not have permission to create the integration." +msgstr "" + +#: 8b360cadc5e6410f9163b009e1798c17 discord.guild.Guild.create_integration:18 +#: of +msgid "The account could not be found." +msgstr "" + +#: 55c98a3dddb043f98fb6d84b2d473f35 discord.guild.Guild.integrations:3 of +msgid "Returns a list of all integrations attached to the guild." +msgstr "" + +#: discord.guild.Guild.integrations:10 fed6ce5bcef64a35ab2b8b162b5eb50c of +msgid "The list of integrations that are attached to the guild." +msgstr "" + +#: 707fa57d80054d489f59022167789830 discord.guild.Guild.integrations:11 of +msgid "List[:class:`Integration`]" +msgstr "" + +#: 5ad7153c64f047ad9daa906a9becef09 discord.guild.Guild.integrations:14 of +msgid "Fetching the integrations failed." +msgstr "" + +#: 00dbbbe1eab34f6d894eca32b04b95fc discord.guild.Guild.fetch_stickers:3 of +msgid "Retrieves a list of all :class:`Sticker`\\s for the guild." +msgstr "" + +#: 64c032cddf1e44aabf81215b2fd65a7d discord.guild.Guild.fetch_stickers:9 of +msgid "" +"This method is an API call. For general usage, consider :attr:`stickers` " +"instead." +msgstr "" + +#: 0be1df9394af4fffa74cf3c2c1f2e4d7 discord.guild.Guild.fetch_stickers:11 of +msgid "An error occurred fetching the stickers." +msgstr "" + +#: 55697da9b79446dfb69b28f4fa3adfb2 discord.guild.Guild.fetch_stickers:13 of +msgid "The retrieved stickers." +msgstr "" + +#: 1714df6157b64ca5a1a90b995fd44623 discord.guild.Guild.fetch_stickers:14 of +msgid "List[:class:`GuildSticker`]" +msgstr "" + +#: a8d670ef84b143d982f79b48c0b1c562 discord.guild.Guild.fetch_sticker:3 of +msgid "Retrieves a custom :class:`Sticker` from the guild." +msgstr "" + +#: 63867ec00f414a55bbef1821d171b784 discord.guild.Guild.fetch_sticker:9 of +msgid "" +"This method is an API call. For general usage, consider iterating over " +":attr:`stickers` instead." +msgstr "" + +#: discord.guild.Guild.fetch_sticker:13 f0a03ba8de3d4db5a3968b94e40ed0bd of +msgid "The sticker's ID." +msgstr "" + +#: 2e5e5cb4083b4d768bb3ca349cd4cc41 discord.guild.Guild.fetch_sticker:16 +#: discord.sticker.StickerItem.fetch:5 ee33114d35c04bba9e3a60b0daace838 of +msgid "The retrieved sticker." +msgstr "" + +#: 0ef37b2e6d2e442fb19065b7614a9b0d 2802fcb7a86b474589f5c11ccebdfc55 +#: ae85608176334c78a30d747892aebbd0 discord.guild.Guild.create_sticker:27 +#: discord.guild.Guild.fetch_sticker:17 discord.sticker.GuildSticker.edit:19 of +msgid ":class:`GuildSticker`" +msgstr "" + +#: 6f2712591be94a89ac8d4530d2c62af1 discord.guild.Guild.fetch_sticker:19 of +msgid "The sticker requested could not be found." +msgstr "" + +#: 10ab3b6a5c934028bb0caa016beaed29 discord.guild.Guild.fetch_sticker:20 of +msgid "An error occurred fetching the sticker." +msgstr "" + +#: 2bc1d5ddf1094d0ca12d95d8a2c84076 discord.guild.Guild.create_sticker:3 of +msgid "Creates a :class:`Sticker` for the guild." +msgstr "" + +#: 19d83ba9c2b64a40a0d99a566e2f1570 b08f600f8fb24a939877a9f21c67b6b9 +#: d9bcd31ba9c8417eaebec2098f4a6866 discord.guild.Guild.create_sticker:5 +#: discord.guild.Guild.delete_sticker:5 discord.sticker.GuildSticker.delete:5 +#: of +msgid "" +"You must have :attr:`~Permissions.manage_emojis_and_stickers` permission " +"to do this." +msgstr "" + +#: a6460e077e1044cd82e7514c43a74c85 discord.guild.Guild.create_sticker:11 of +msgid "The sticker name. Must be 2 to 30 characters." +msgstr "" + +#: b83cc1df192e44cfa969e71988e5677c discord.guild.Guild.create_sticker:14 of +msgid "The sticker's description. If used, must be 2 to 100 characters." +msgstr "" + +#: d1d3341da8154cc6b4378671085d6876 da50ce0daeb14bac9177688a530a501f +#: discord.guild.Guild.create_sticker:17 discord.sticker.GuildSticker.edit:12 +#: of +msgid "The name of a unicode emoji that represents the sticker's expression." +msgstr "" + +#: a66e5eaafd104f64b94753b15e176012 discord.guild.Guild.create_sticker:20 of +msgid "The file of the sticker to upload." +msgstr "" + +#: 66fe361a6d7d46a4a6844cfae8e53e8d discord.guild.Guild.create_sticker:23 of +msgid "The reason for creating this sticker. Shows up on the audit log." +msgstr "" + +#: c5a2ccdde03b45da82a41aafe5ca11f4 discord.guild.Guild.create_sticker:26 of +msgid "The created sticker." +msgstr "" + +#: discord.guild.Guild.create_sticker:29 e497f6606bf64d688a4d1adcbe4550d5 of +msgid "You are not allowed to create stickers." +msgstr "" + +#: 4014ebbe73454bba80fffcc20a76d48e discord.guild.Guild.create_sticker:30 of +msgid "An error occurred creating a sticker." +msgstr "" + +#: 0d272e8551554a528b510633e63e660b discord.guild.Guild.create_sticker:31 of +msgid "The parameters for the sticker are not correctly formatted." +msgstr "" + +#: bcb585d0888b47c5aa7e11bd76e69153 discord.guild.Guild.delete_sticker:3 +#: discord.sticker.GuildSticker.delete:3 e42fb4e9e6cd462899cde8b8f13f183e of +msgid "Deletes the custom :class:`Sticker` from the guild." +msgstr "" + +#: 389b2c95a682457586d94318d12dcdc0 discord.guild.Guild.delete_sticker:11 of +msgid "The sticker you are deleting." +msgstr "" + +#: discord.guild.Guild.delete_sticker:14 discord.sticker.GuildSticker.delete:9 +#: eb21701dec21455885321861a71e8a93 f7a4f3ca9f0840278988c57b3e1584ba of +msgid "The reason for deleting this sticker. Shows up on the audit log." +msgstr "" + +#: 57b98898cf2b4745af78f85b0f783f43 discord.guild.Guild.delete_sticker:17 +#: discord.sticker.GuildSticker.delete:12 f882c67f674f47e397cfa9cbd16ed37e of +msgid "You are not allowed to delete stickers." +msgstr "" + +#: 854d757ca8b241ebab7c4cacf7bcec8c b1d13694e29548c2b31bf65409c39404 +#: discord.guild.Guild.delete_sticker:18 discord.sticker.GuildSticker.delete:13 +#: of +msgid "An error occurred deleting the sticker." +msgstr "" + +#: 7e19d4e700d74093a3cdc5c09aa87a7d discord.guild.Guild.fetch_emojis:3 of +msgid "Retrieves all custom :class:`Emoji`\\s from the guild." +msgstr "" + +#: 0e34069b5d51441ab8c457a52f2d4c01 discord.guild.Guild.fetch_emojis:7 of +msgid "" +"This method is an API call. For general usage, consider :attr:`emojis` " +"instead." +msgstr "" + +#: 6c8e39b268f349da8aa4bf43ef2e8dbd discord.guild.Guild.fetch_emojis:9 of +msgid "An error occurred fetching the emojis." +msgstr "" + +#: ab7b44a854f44e168c38f0c4119385b0 discord.guild.Guild.fetch_emojis:11 of +msgid "The retrieved emojis." +msgstr "" + +#: d20f42179eff44a7a621d7a831ddbe4b discord.guild.Guild.fetch_emojis:12 of +msgid "List[:class:`Emoji`]" +msgstr "" + +#: cc1afd530dcb498eab35fafe4575a8d9 discord.guild.Guild.fetch_emoji:3 of +msgid "Retrieves a custom :class:`Emoji` from the guild." +msgstr "" + +#: 20deca88487948c09b27806328bb2663 discord.guild.Guild.fetch_emoji:7 of +msgid "" +"This method is an API call. For general usage, consider iterating over " +":attr:`emojis` instead." +msgstr "" + +#: 04438e1da08e48938f42dbf2de330ba9 53a1817de08548d2a68fbe1e43614c15 +#: discord.emoji.Emoji:37 discord.guild.Guild.fetch_emoji:11 of +msgid "The emoji's ID." +msgstr "" + +#: 906d9a9b33fd4c2fae5128b182620971 discord.guild.Guild.fetch_emoji:14 of +msgid "The retrieved emoji." +msgstr "" + +#: 1eb1e8a92e454d7bbee3b5e9541f84fd 37a41037481642b78fafaee019f75015 +#: 399573321d6c4868983d0d4e6e50494d discord.emoji.Emoji.edit:25 +#: discord.guild.Guild.create_custom_emoji:29 +#: discord.guild.Guild.fetch_emoji:15 of +msgid ":class:`Emoji`" +msgstr "" + +#: 7dca8307be0f46d9bc1484bffd2db96e discord.guild.Guild.fetch_emoji:17 of +msgid "The emoji requested could not be found." +msgstr "" + +#: 1268b68564384470a7e408eb7ffe05cc discord.guild.Guild.fetch_emoji:18 of +msgid "An error occurred fetching the emoji." +msgstr "" + +#: c19298ed5a9d4c7f94a5ba4c63da6ecf discord.guild.Guild.create_custom_emoji:3 +#: of +msgid "Creates a custom :class:`Emoji` for the guild." +msgstr "" + +#: 67653b1edbe444cfa63bdb3f8dd142ee discord.guild.Guild.create_custom_emoji:5 +#: of +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 "" + +#: 017a600143d2422fa0e812681706e91c discord.guild.Guild.create_custom_emoji:8 +#: of +msgid "" +"You must have the :attr:`~Permissions.manage_emojis` permission to do " +"this." +msgstr "" + +#: 97c6fd9370bf4aea96238eab140f5d1e discord.guild.Guild.create_custom_emoji:12 +#: of +msgid "The emoji name. Must be at least 2 characters." +msgstr "" + +#: 2fec2eb4ceb747919d9b166d18265401 discord.guild.Guild.create_custom_emoji:15 +#: of +msgid "" +"The :term:`py:bytes-like object` representing the image data to use. Only" +" JPG, PNG and GIF images are supported." +msgstr "" + +#: 1e4d12b61e6d490598ae6693db9198cf discord.guild.Guild.create_custom_emoji:19 +#: of +msgid "" +"A :class:`list` of :class:`Role`\\s that can use this emoji. Leave empty " +"to make it available to everyone." +msgstr "" + +#: bd0e76c282eb438dab73ee18a87a6267 discord.guild.Guild.create_custom_emoji:22 +#: of +msgid "The reason for creating this emoji. Shows up on the audit log." +msgstr "" + +#: 949a7873ef1f4058b494809e97495c5f discord.guild.Guild.create_custom_emoji:25 +#: of +msgid "You are not allowed to create emojis." +msgstr "" + +#: de6fe0f7f1e4471d96ac84fcaccafdad discord.guild.Guild.create_custom_emoji:26 +#: of +msgid "An error occurred creating an emoji." +msgstr "" + +#: 7840ab867f304e7f922df2244f5e9e17 discord.guild.Guild.create_custom_emoji:28 +#: of +msgid "The created emoji." +msgstr "" + +#: 29f350f034fc4530acff6df42f01d8c8 discord.guild.Guild.delete_emoji:3 of +msgid "Deletes the custom :class:`Emoji` from the guild." +msgstr "" + +#: 3312ce3f569645198e48c2b41085b692 discord.emoji.Emoji.delete:5 +#: discord.emoji.Emoji.edit:5 discord.guild.Guild.delete_emoji:5 +#: fb90b1ef5ff84a2fa79294890e940a4e ff6de30aac954fea9e2f208059f9cb4c of +msgid "You must have :attr:`~Permissions.manage_emojis` permission to do this." +msgstr "" + +#: 5168a27eeb5742e19c0c8ed921c02486 discord.guild.Guild.delete_emoji:9 of +msgid "The emoji you are deleting." +msgstr "" + +#: 678beeb23b2d4987b952b0071cc7e655 83fa5c76aa45496c8a174a7aba164212 +#: discord.emoji.Emoji.delete:9 discord.guild.Guild.delete_emoji:12 of +msgid "The reason for deleting this emoji. Shows up on the audit log." +msgstr "" + +#: 06192bc5820542e09a610656abe007be d87322ed656a4631bd9fa98caa580e08 +#: discord.emoji.Emoji.delete:12 discord.guild.Guild.delete_emoji:15 of +msgid "You are not allowed to delete emojis." +msgstr "" + +#: 595f6eee2e13488f8569abd8053aeeb1 dd8fe40fffc947b8adf8f1e9fdfa8d16 +#: discord.emoji.Emoji.delete:13 discord.guild.Guild.delete_emoji:16 of +msgid "An error occurred deleting the emoji." +msgstr "" + +#: 6c8d370449314b2187994721e4cca657 discord.guild.Guild.fetch_roles:3 of +msgid "Retrieves all :class:`Role` that the guild has." +msgstr "" + +#: 75df743b5f774665a0376cf6ee506507 discord.guild.Guild.fetch_roles:7 of +msgid "" +"This method is an API call. For general usage, consider :attr:`roles` " +"instead." +msgstr "" + +#: 113e7cb6f37f43a78caf4740e39fb7b8 discord.guild.Guild.fetch_roles:11 of +msgid "All roles in the guild." +msgstr "" + +#: de362117a6804bf9aaa7770e8b9a8e18 discord.guild.Guild.fetch_roles:14 of +msgid "Retrieving the roles failed." +msgstr "" + +#: 681fb3ca2ecf4e84ac864c64062b94f3 discord.guild.Guild.fetch_role:3 of +msgid "Retrieves a :class:`Role` that the guild has." +msgstr "" + +#: 1f6a9aaf78384eabae7f935cc30d3215 discord.guild.Guild.fetch_role:7 of +msgid "" +"This method is an API call. For general usage, consider using " +":attr:`get_role` instead." +msgstr "" + +#: 5903ec8f839b4c2d9dc2d902b5329cf4 discord.guild.Guild.fetch_role:11 of +msgid "The role in the guild with the specified ID." +msgstr "" + +#: 79519cee140f4bafa12f86a5c341f0e7 discord.guild.Guild.create_role:45 +#: discord.guild.Guild.fetch_role:12 discord.role.Role.edit:51 of +msgid ":class:`Role`" +msgstr "" + +#: b28ab0944bac46fcb93d05451f0c7447 discord.guild.Guild.fetch_role:14 of +msgid "Retrieving the role failed." +msgstr "" + +#: 681fb3ca2ecf4e84ac864c64062b94f3 discord.guild.Guild.create_role:3 of +msgid "Creates a :class:`Role` for the guild." +msgstr "" + +#: dcfe27cdb7b04f7785b896b227db69aa discord.guild.Guild.create_role:5 +#: discord.role.Role.edit:8 of +msgid "All fields are optional." +msgstr "" + +#: 25b3022700bc40c98280cd7ad9067eac discord.guild.Guild.create_role:7 +#: discord.guild.Guild.edit_role_positions:5 of +msgid "You must have the :attr:`~Permissions.manage_roles` permission to do this." +msgstr "" + +#: 44506364e73a40a2b43adf68402543c1 discord.guild.Guild.create_role:10 +#: discord.role.Role.edit:10 of +msgid "Can now pass ``int`` to ``colour`` keyword-only parameter." +msgstr "" + +#: 2f9a2e14086443cf9aca60ecc5d37418 discord.guild.Guild.create_role:14 of +msgid "The role name. Defaults to 'new role'." +msgstr "" + +#: d215923b1e584a69a414a1184375f930 discord.guild.Guild.create_role:17 of +msgid "The permissions to have. Defaults to no permissions." +msgstr "" + +#: 0a615245fd3c4c0b8e29edf8e72d8d88 discord.guild.Guild.create_role:20 of +msgid "" +"The colour for the role. Defaults to :meth:`Colour.default`. This is " +"aliased to ``color`` as well." +msgstr "" + +#: 93bce075ad454d48ae59eb4d231dfd8d discord.guild.Guild.create_role:24 of +msgid "" +"Indicates if the role should be shown separately in the member list. " +"Defaults to ``False``." +msgstr "" + +#: b1a288ba1940445ab63c5c1bde1d1efa discord.guild.Guild.create_role:28 of +msgid "" +"Indicates if the role should be mentionable by others. Defaults to " +"``False``." +msgstr "" + +#: 1d2ebd073b2c4459be628151776f3b50 discord.guild.Guild.create_role:32 of +msgid "The reason for creating this role. Shows up on the audit log." +msgstr "" + +#: ba8c8b44279743f2bcd9efddc53d5b58 discord.guild.Guild.create_role:35 of +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 "" + +#: 9cdff82aa82a440db4251f66f2e822f6 discord.guild.Guild.create_role:40 +#: discord.role.Role.edit:46 of +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 "" + +#: c965ce93ea074ed78be662486645a373 discord.guild.Guild.create_role:44 of +msgid "The newly created role." +msgstr "" + +#: 6ac5de532acc4a0386c665a37617cb7b discord.guild.Guild.create_role:47 of +msgid "You do not have permissions to create the role." +msgstr "" + +#: 013ad29dd49441ce9292d34076552ad7 discord.guild.Guild.create_role:48 of +msgid "Creating the role failed." +msgstr "" + +#: b7ba11634247483a88e4f438230dcdbf dfd9adbb613a4f5491d078cb00e63802 +#: discord.guild.Guild.create_role:49 +#: discord.guild.Guild.edit_role_positions:35 of +msgid "An invalid keyword argument was given." +msgstr "" + +#: 8a6532467f3445c8aac59a9849fe69d8 discord.guild.Guild.edit_role_positions:3 +#: of +msgid "Bulk edits a list of :class:`Role` in the guild." +msgstr "" + +#: 53cfc538295b49a3b7caf1413df5d719 discord.guild.Guild.edit_role_positions:10 +#: of +msgid "Example:" +msgstr "" + +#: 5be883a67eca47498aa481fa2ef1935e discord.guild.Guild.edit_role_positions:23 +#: of +msgid "" +"A :class:`dict` of :class:`Role` to :class:`int` to change the positions " +"of each given role." +msgstr "" + +#: db47caaeff6d4546bb0643624faa9b92 discord.guild.Guild.edit_role_positions:27 +#: of +msgid "The reason for editing the role positions. Shows up on the audit log." +msgstr "" + +#: 12db7fb56e4240d5bb76d9855001ebfc discord.guild.Guild.edit_role_positions:30 +#: of +msgid "A list of all the roles in the guild." +msgstr "" + +#: c4e82f0721b340f080c4d67188f58b04 discord.guild.Guild.edit_role_positions:33 +#: of +msgid "You do not have permissions to move the roles." +msgstr "" + +#: 776b7a3630cc4e66bf21286c273569ff discord.guild.Guild.edit_role_positions:34 +#: of +msgid "Moving the roles failed." +msgstr "" + +#: cb317007469e4271a5e6c0606e32c86c discord.guild.Guild.kick:3 of +msgid "Kicks a user from the guild." +msgstr "" + +#: 71041b43fe424416b87fd77ec0c5d5e4 discord.guild.Guild.ban:5 +#: discord.guild.Guild.kick:5 discord.guild.Guild.unban:5 of +msgid "The user must meet the :class:`abc.Snowflake` abc." +msgstr "" + +#: d7b0f37f560049afbe7c47f86d66467b discord.guild.Guild.kick:7 of +msgid "You must have the :attr:`~Permissions.kick_members` permission to do this." +msgstr "" + +#: 45009620b7f94266a041b3e310508761 discord.guild.Guild.kick:11 of +msgid "The user to kick from their guild." +msgstr "" + +#: 1c2dbbc4e17f448cb9a05dec693b0442 discord.guild.Guild.kick:14 of +msgid "The reason the user got kicked." +msgstr "" + +#: 0cb82bb2c31e4229afae977226735946 discord.guild.Guild.kick:17 of +msgid "You do not have the proper permissions to kick." +msgstr "" + +#: 7c6a72f5d47441b7b8953ae50bb69637 discord.guild.Guild.kick:18 of +msgid "Kicking failed." +msgstr "" + +#: discord.guild.Guild.ban:3 e7e76ceffdd84efa98c4d457787247b9 of +msgid "Bans a user from the guild." +msgstr "" + +#: 7898787d528947f9b335b0550794b0da discord.guild.Guild.ban:7 +#: discord.guild.Guild.bulk_ban:7 discord.guild.Guild.unban:7 of +msgid "You must have the :attr:`~Permissions.ban_members` permission to do this." +msgstr "" + +#: 964deba937b1486a8a65222912bd2eb2 discord.guild.Guild.ban:11 of +msgid "The user to ban from their guild." +msgstr "" + +#: discord.guild.Guild.ban:14 discord.guild.Guild.bulk_ban:22 +#: f12004652b6a44c3aac2cd2af378b28a of +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 "" + +#: 921f87c6d6924435af9237d0e0831da0 discord.guild.Guild.ban:19 of +msgid "The reason the user got banned." +msgstr "" + +#: discord.guild.Guild.ban:22 discord.guild.Guild.bulk_ban:34 +#: f0ed8f3842b8443994b81e6081dc5d00 of +msgid "You do not have the proper permissions to ban." +msgstr "" + +#: 2f002500714e4934a50414836da732aa discord.guild.Guild.ban:23 of +msgid "Banning failed." +msgstr "" + +#: dd877201bae44c008dc09493b09db8e6 discord.guild.Guild.bulk_ban:3 of +msgid "Bulk ban users from the guild." +msgstr "" + +#: 33f03ddefbd64b499a435901401beee3 discord.guild.Guild.bulk_ban:5 of +msgid "The users must meet the :class:`abc.Snowflake` abc." +msgstr "" + +#: 160521264b974bca8bc5a69bfc8efb20 discord.guild.Guild.bulk_ban:19 of +msgid "An argument list of users to ban from the guild, up to 200." +msgstr "" + +#: a2d44ca22def408cae0e51c561ea6252 discord.guild.Guild.bulk_ban:27 of +msgid "The reason the users were banned." +msgstr "" + +#: c8be38577fe0452f83af35aa10e6ba6f discord.guild.Guild.bulk_ban:30 of +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.Guild.bulk_ban:31 fc54d0cdae1c407fb5edbf6291ec62a5 of +msgid "Tuple[List[:class:`abc.Snowflake`], List[:class:`abc.Snowflake`]]" +msgstr "" + +#: aeec79561bb949d99becec9c2f6b2c73 discord.guild.Guild.bulk_ban:33 of +msgid "You tried to ban more than 200 users." +msgstr "" + +#: 5297b180a9ce4baa8074dd8c40f5e39d discord.guild.Guild.bulk_ban:35 of +msgid "No users were banned." +msgstr "" + +#: 0d95fc42ca2e46e4b00022b067e9c37e discord.guild.Guild.unban:3 of +msgid "Unbans a user from the guild." +msgstr "" + +#: 31d409761a5e47a18a41b77429bddf8e discord.guild.Guild.unban:11 of +msgid "The user to unban." +msgstr "" + +#: 1273209cc03a4f17a1a441da321140a8 discord.guild.Guild.unban:17 of +msgid "You do not have the proper permissions to unban." +msgstr "" + +#: discord.guild.Guild.unban:18 e7f66e79fcd445c9918e030dcbc3c959 of +msgid "Unbanning failed." +msgstr "" + +#: 53fc54fe12e441ceb936081f031cd6b9 discord.guild.Guild.vanity_invite:3 of +msgid "Returns the guild's special vanity invite." +msgstr "" + +#: discord.guild.Guild.vanity_invite:5 e6a89eec37044cf4aaba02a7cdffc538 of +msgid "The guild must have ``VANITY_URL`` in :attr:`~Guild.features`." +msgstr "" + +#: discord.guild.Guild.vanity_invite:7 f95ef0a0ffad4af89dbac74c911ece29 of +msgid "" +"You must have the :attr:`~Permissions.manage_guild` permission to use " +"this as well." +msgstr "" + +#: 61132536a75c4980ad027ff7010dd60d discord.guild.Guild.vanity_invite:10 of +msgid "" +"The special vanity invite. If ``None`` then the guild does not have a " +"vanity invite set." +msgstr "" + +#: aac84dd0fab64564aca458b9921f1cba discord.guild.Guild.vanity_invite:12 of +msgid "Optional[:class:`Invite`]" +msgstr "" + +#: 9afd0935187a461ab98d15477738fc11 discord.guild.Guild.vanity_invite:14 +#: discord.guild.Guild.welcome_screen:14 of +msgid "You do not have the proper permissions to get this." +msgstr "" + +#: 92f4126e516b40a7ad0844916b460b61 discord.guild.Guild.vanity_invite:15 of +msgid "Retrieving the vanity invite failed." +msgstr "" + +#: 6db9c141f3454a02956d67ae075181e2 discord.guild.Guild.widget:3 of +msgid "Returns the widget of the guild." +msgstr "" + +#: 6de997f9d74246c9896ec0512e55d05f discord.guild.Guild.widget:7 of +msgid "The guild must have the widget enabled to get this information." +msgstr "" + +#: 5ae3e49f57f649848879953ba95e33b5 discord.guild.Guild.widget:9 of +msgid "The guild's widget." +msgstr "" + +#: 70de3135e29b4adc9c43ed76a9f743bc discord.guild.Guild.widget:10 of +msgid ":class:`Widget`" +msgstr "" + +#: c3c4d3e924ff42d4af62063676318e1e discord.guild.Guild.widget:12 of +msgid "The widget for this guild is disabled." +msgstr "" + +#: 7164076f8680428b9070baedc4dcd961 discord.guild.Guild.widget:13 of +msgid "Retrieving the widget failed." +msgstr "" + +#: 884a618895b24208824d7df0d9f00753 discord.guild.Guild.edit_widget:3 of +msgid "Edits the widget of the guild." +msgstr "" + +#: cc0f8147df47422290bc58a79ac5732b discord.guild.Guild.edit_widget:5 of +msgid "You must have the :attr:`~Permissions.manage_guild` permission to use this" +msgstr "" + +#: discord.guild.Guild.edit_widget:11 f8df75bf67b94e6e9f9cc36b91a776e3 of +msgid "Whether to enable the widget for the guild." +msgstr "" + +#: discord.guild.Guild.edit_widget:14 eed0ed35d95f4b0cbd48c7113ac1bcbc of +msgid "The new widget channel. ``None`` removes the widget channel." +msgstr "" + +#: 6937fbe0b1234f878097827fb7d43b77 discord.guild.Guild.edit_widget:17 of +msgid "You do not have permission to edit the widget." +msgstr "" + +#: be2d233cd66048c18682d4d806a9a250 discord.guild.Guild.edit_widget:18 of +msgid "Editing the widget failed." +msgstr "" + +#: d93329457a654f3bba9f67c57323690d discord.guild.Guild.chunk:3 of +msgid "" +"Requests all members that belong to this guild. In order to use this, " +":meth:`Intents.members` must be enabled." +msgstr "" + +#: 9544932f24934807a6ea75123701b991 discord.guild.Guild.chunk:6 +#: discord.guild.Guild.query_members:6 of +msgid "This is a websocket operation and can be slow." +msgstr "" + +#: 70c561834f024cd0883be83ee259e182 discord.guild.Guild.chunk:11 of +msgid "Whether to cache the members as well." +msgstr "" + +#: 4781c9b928184ff3a261a54fc07fdfbd discord.guild.Guild.query_members:3 of +msgid "" +"Request members that belong to this guild whose username starts with the " +"query given." +msgstr "" + +#: 7f885af8335740ee876b3af40fb3042f discord.guild.Guild.query_members:11 of +msgid "The string that the username's start with." +msgstr "" + +#: 3e87b46212064dde916a768dd405fd77 discord.guild.Guild.query_members:14 of +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 "" + +#: 2e4eecbdbe4841fabc4431d67b034d80 discord.guild.Guild.query_members:14 of +msgid "" +"List of user IDs to search for. If the user ID is not in the guild then " +"it won't be returned." +msgstr "" + +#: d516d96fa2ad4c3a99294f38c51b62e3 discord.guild.Guild.query_members:19 of +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 "" + +#: 3b9a20e913de48aaa1c019f3d468957a discord.guild.Guild.query_members:23 of +msgid "" +"Whether to request for presences to be provided. This defaults to " +"``False``. .. versionadded:: 1.6" +msgstr "" + +#: a5456f3fda6040e7acac052db041d781 discord.guild.Guild.query_members:23 of +msgid "" +"Whether to request for presences to be provided. This defaults to " +"``False``." +msgstr "" + +#: 176463243a414ff0b64fdecf6b9717cb discord.guild.Guild.query_members:29 of +msgid "" +"Whether to cache the members internally. This makes operations such as " +":meth:`get_member` work for those that matched. Defaults to ``True``." +msgstr "" + +#: b7e36216d69045c4aff6ea6fc951ab13 discord.guild.Guild.query_members:36 of +msgid "The query timed out waiting for the members." +msgstr "" + +#: 5b3af2d6e1464e3f826c1461e5bc74cb discord.guild.Guild.query_members:37 of +msgid "Invalid parameters were passed to the function" +msgstr "" + +#: 083e7113abc141828c9963a0a2a331b3 discord.guild.Guild.query_members:38 of +msgid "The presences intent is not enabled." +msgstr "" + +#: c1a9a546f19746c78140e6093203a0c6 discord.guild.Guild.change_voice_state:3 of +msgid "Changes client's voice state in the guild." +msgstr "" + +#: a33b965829f846f79a99cf1cae906491 discord.guild.Guild.change_voice_state:8 of +msgid "Channel the client wants to join. Use ``None`` to disconnect." +msgstr "" + +#: a6f7e41be9e9486b86706a0b86f3b77e discord.guild.Guild.change_voice_state:11 +#: of +msgid "Indicates if the client should be self-muted." +msgstr "" + +#: a53b68d5aa2d4bf5abd74686fd90145d discord.guild.Guild.change_voice_state:14 +#: of +msgid "Indicates if the client should be self-deafened." +msgstr "" + +#: 9bda182e2a214445a72c17f558913fe7 discord.guild.Guild.welcome_screen:3 of +msgid "Returns the :class:`WelcomeScreen` of the guild." +msgstr "" + +#: 2f6bd3131f2042e389a6cf5c679145f4 discord.guild.Guild.welcome_screen:5 of +msgid "The guild must have ``COMMUNITY`` in :attr:`~Guild.features`." +msgstr "" + +#: discord.guild.Guild.welcome_screen:7 ff928f87056341a5a1d5860f421d87ab of +msgid "" +"You must have the :attr:`~Permissions.manage_guild` permission in order " +"to get this." +msgstr "" + +#: discord.guild.Guild.welcome_screen:11 ecc30a5b66ff403d9f99fa235321b757 of +msgid "The welcome screen of guild." +msgstr "" + +#: a8775024ec8c4156acf05824fcf64a34 discord.guild.Guild.edit_welcome_screen:20 +#: discord.guild.Guild.welcome_screen:12 of +msgid ":class:`WelcomeScreen`" +msgstr "" + +#: 1aaffa8b3af54bc493fe065e0c985b2c discord.guild.Guild.welcome_screen:15 of +msgid "Retrieving the welcome screen failed somehow." +msgstr "" + +#: 2ca0a22a6e4f4d12bc55b9ac10cd1239 discord.guild.Guild.welcome_screen:16 of +msgid "The guild doesn't have a welcome screen or community feature is disabled." +msgstr "" + +#: 99eed2c0f64445be860077576d0f2263 discord.guild.Guild.edit_welcome_screen:3 +#: of +msgid "" +"A shorthand for :attr:`WelcomeScreen.edit` without fetching the welcome " +"screen." +msgstr "" + +#: 0645a3e4c2e94af68988b850f3ac4c16 discord.guild.Guild.edit_welcome_screen:5 +#: discord.welcome_screen.WelcomeScreen.edit:5 of +msgid "" +"You must have the :attr:`~Permissions.manage_guild` permission in the " +"guild to do this." +msgstr "" + +#: b9c269e6c70948b49571ba727e4f63e8 discord.guild.Guild.edit_welcome_screen:8 +#: of +msgid "The guild must have ``COMMUNITY`` in :attr:`Guild.features`" +msgstr "" + +#: discord.guild.Guild.edit_welcome_screen:10 +#: discord.welcome_screen.WelcomeScreen.edit:8 f0b106b23b04473aa6fcdc972261afae +#: of +msgid "The new description of welcome screen." +msgstr "" + +#: d6c4741ad35f4feda1007d4313472b28 discord.guild.Guild.edit_welcome_screen:12 +#: discord.welcome_screen.WelcomeScreen.edit:10 of +msgid "" +"The welcome channels. The order of the channels would be same as the " +"passed list order." +msgstr "" + +#: 05a7a458521d4d14b6b4d4b4d4ee44fa discord.guild.Guild.edit_welcome_screen:14 +#: discord.welcome_screen.WelcomeScreen.edit:12 of +msgid "Whether the welcome screen should be displayed." +msgstr "" + +#: 69fcaacc9de94c0fa26eb00efdf57a41 discord.guild.Guild.edit_welcome_screen:16 +#: of +msgid "The reason that shows up on audit log." +msgstr "" + +#: 24b50a56be2c4454ba4c69145e24289b discord.guild.Guild.edit_welcome_screen:19 +#: of +msgid "The edited welcome screen." +msgstr "" + +#: 001bef1ddd0c4b4e84fcd27b8df3d96b discord.guild.Guild.edit_welcome_screen:22 +#: discord.welcome_screen.WelcomeScreen.edit:17 of +msgid "Editing the welcome screen failed somehow." +msgstr "" + +#: 6003dd88fec7420199985ef5024bb31a discord.guild.Guild.edit_welcome_screen:23 +#: discord.welcome_screen.WelcomeScreen.edit:18 of +msgid "You don't have permissions to edit the welcome screen." +msgstr "" + +#: 0b7cc1a06b8244c7a6e371bb6495ee5d 2ae3a3676df24d8aabc07fc2d60eb677 +#: discord.guild.Guild.edit_welcome_screen:24 +#: discord.welcome_screen.WelcomeScreen.edit:19 of +msgid "This welcome screen does not exist." +msgstr "" + +#: 1146710c6f234b72868f4854820b1fe7 +#: discord.guild.Guild.fetch_scheduled_events:3 of +msgid "Returns a list of :class:`ScheduledEvent` in the guild." +msgstr "" + +#: 1f6a9aaf78384eabae7f935cc30d3215 +#: discord.guild.Guild.fetch_scheduled_events:7 of +msgid "" +"This method is an API call. For general usage, consider " +":attr:`scheduled_events` instead." +msgstr "" + +#: b93d82959ad540abb93c374a05b62412 +#: discord.guild.Guild.fetch_scheduled_events:10 of +msgid "" +"If the scheduled event should be fetched with the number of users that " +"are interested in the events. Defaults to ``True``." +msgstr "" + +#: 7803509167534117a3e927c61c8d6e47 +#: discord.guild.Guild.fetch_scheduled_events:15 of +msgid "The fetched scheduled events." +msgstr "" + +#: 4efd44f0307d477eb185d6690ad7db25 +#: discord.guild.Guild.fetch_scheduled_events:16 of +msgid "List[:class:`ScheduledEvent`]" +msgstr "" + +#: 488e46f3eb884958b2b4c9629a4b11c2 +#: discord.guild.Guild.fetch_scheduled_events:18 of +msgid "The scheduled events intent is not enabled." +msgstr "" + +#: 8e4569e0213b4be6ab5b186e2f56f730 +#: discord.guild.Guild.fetch_scheduled_events:19 of +msgid "Getting the scheduled events failed." +msgstr "" + +#: 8429230cb33b41c6ae22422ea1f3eb1b discord.guild.Guild.fetch_scheduled_event:3 +#: of +msgid "Retrieves a :class:`ScheduledEvent` from event ID." +msgstr "" + +#: b9ab54b2a02d405a8507f76ce557bf9d discord.guild.Guild.fetch_scheduled_event:7 +#: of +msgid "" +"This method is an API call. If you have :attr:`Intents.scheduled_events`," +" consider :meth:`get_scheduled_event` instead." +msgstr "" + +#: a5ff8f1150f8474cb9bb6be02d54e2a6 +#: discord.guild.Guild.fetch_scheduled_event:11 of +msgid "The event's ID to fetch with." +msgstr "" + +#: discord.guild.Guild.fetch_scheduled_event:14 +#: e033fc413f41483d87af4c519972741b of +msgid "" +"If the scheduled vent should be fetched with the number of users that are" +" interested in the event. Defaults to ``True``." +msgstr "" + +#: 4a29e289bff74069ba4cc113ffe0bd97 +#: discord.guild.Guild.fetch_scheduled_event:19 of +msgid "The scheduled event from the event ID." +msgstr "" + +#: 86baf481154547959ddb8413c5939b28 +#: discord.guild.Guild.create_scheduled_event:32 +#: discord.guild.Guild.fetch_scheduled_event:20 +#: discord.guild.Guild.get_scheduled_event:8 discord.invite.Invite:161 +#: ea335cf575724209b2c07a48814c2c53 of +msgid "Optional[:class:`ScheduledEvent`]" +msgstr "" + +#: b62feec903004869b092dfc14ed12962 +#: discord.guild.Guild.fetch_scheduled_event:22 of +msgid "Fetching the event failed." +msgstr "" + +#: 72f86761735b41cb87fa7b1c31a59bde +#: discord.guild.Guild.fetch_scheduled_event:23 of +msgid "Event not found." +msgstr "" + +#: be73574af08f4eb28dbf633b9e545760 discord.guild.Guild.get_scheduled_event:1 +#: of +msgid "Returns a Scheduled Event with the given ID." +msgstr "" + +#: 5d68a842563a4de38d4c48588d6d5c44 discord.guild.Guild.get_scheduled_event:7 +#: of +msgid "The scheduled event or ``None`` if not found." +msgstr "" + +#: discord.guild.Guild.create_scheduled_event:1 +#: f5cb5ca28d824761a94020f0a60ac378 of +msgid "|coro| Creates a scheduled event." +msgstr "" + +#: 55dcb7456e3f40efbcb954cea6d49413 +#: discord.guild.Guild.create_scheduled_event:5 +#: discord.scheduled_events.ScheduledEvent:31 of +msgid "The name of the scheduled event." +msgstr "" + +#: 2377bfb5becb4b0591ce93ddfe51545a +#: discord.guild.Guild.create_scheduled_event:8 +#: discord.scheduled_events.ScheduledEvent:37 of +msgid "The description of the scheduled event." +msgstr "" + +#: 512f5da5b9094054a5601f150fbf130b +#: discord.guild.Guild.create_scheduled_event:11 of +msgid "A datetime object of when the scheduled event is supposed to start." +msgstr "" + +#: 0e491a34f7424daf872bb453bf8f1395 +#: discord.guild.Guild.create_scheduled_event:14 of +msgid "A datetime object of when the scheduled event is supposed to end." +msgstr "" + +#: afc2c8680c3b4c99b29dfeb41039ac2c +#: discord.guild.Guild.create_scheduled_event:17 of +msgid "The location of where the event is happening." +msgstr "" + +#: 5f56ce92853748bdb97c7d6a998a2956 +#: discord.guild.Guild.create_scheduled_event:20 +#: discord.scheduled_events.ScheduledEvent.edit:32 of +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 "" + +#: 6f0e0e8f39384675bc1794823cb3fa20 +#: discord.guild.Guild.create_scheduled_event:25 +#: discord.scheduled_events.ScheduledEvent.cancel:10 +#: discord.scheduled_events.ScheduledEvent.complete:10 +#: discord.scheduled_events.ScheduledEvent.edit:37 +#: discord.scheduled_events.ScheduledEvent.start:10 of +msgid "The reason to show in the audit log." +msgstr "" + +#: 6eca104b38b340f0a46b29a4c8199630 +#: discord.guild.Guild.create_scheduled_event:28 of +msgid "The cover image of the scheduled event" +msgstr "" + +#: 546727e696df48378cae34ed85c59496 +#: discord.guild.Guild.create_scheduled_event:31 of +msgid "The created scheduled event." +msgstr "" + +#: 5d785162986749e2945e8c651dc507eb +#: discord.guild.Guild.create_scheduled_event:34 +#: discord.scheduled_events.ScheduledEvent.cancel:16 +#: discord.scheduled_events.ScheduledEvent.complete:16 +#: discord.scheduled_events.ScheduledEvent.delete:5 +#: discord.scheduled_events.ScheduledEvent.edit:53 +#: discord.scheduled_events.ScheduledEvent.start:16 of +msgid "You do not have the Manage Events permission." +msgstr "" + +#: cfdafb562ce2471cb433dffc655b8923 discord.Guild.scheduled_events:1 of +msgid "A list of scheduled events in this guild." +msgstr "" + +#: discord.guild.Guild.fetch_auto_moderation_rules:3 +#: e43b1b902c254f22982e6c92115c5491 of +msgid "Retrieves a list of auto moderation rules for this guild." +msgstr "" + +#: a4eb186fe95e4d638aebdad1c96262c6 +#: discord.guild.Guild.fetch_auto_moderation_rules:5 of +msgid "The auto moderation rules for this guild." +msgstr "" + +#: 92001cdcd8024353b77d873048fca432 +#: discord.guild.Guild.fetch_auto_moderation_rules:6 of +msgid "List[:class:`AutoModRule`]" +msgstr "" + +#: 7fa3d786434c46bbb28a3203dbae0c3c +#: discord.guild.Guild.fetch_auto_moderation_rules:8 of +msgid "Getting the auto moderation rules failed." +msgstr "" + +#: cf5d9362cb0f4a96ae1fcd563b178d27 discord.automod.AutoModRule.delete:9 +#: discord.automod.AutoModRule.edit:34 +#: discord.guild.Guild.create_auto_moderation_rule:35 +#: discord.guild.Guild.delete_auto_moderation_rule:11 +#: discord.guild.Guild.fetch_auto_moderation_rule:9 +#: discord.guild.Guild.fetch_auto_moderation_rules:9 +#: f4cb677bf946444db00720582cadf54e of +msgid "You do not have the Manage Guild permission." +msgstr "" + +#: 9fd0f32195da4f8a8ba6afeee64defe2 +#: discord.guild.Guild.fetch_auto_moderation_rule:3 of +msgid "Retrieves a :class:`AutoModRule` from rule ID." +msgstr "" + +#: 8e9b5d93fd7248ffbc6f2a1a36e66f74 +#: discord.guild.Guild.fetch_auto_moderation_rule:5 of +msgid "The requested auto moderation rule." +msgstr "" + +#: b9a3c3d15f1d42158f2d6557141abe8f +#: discord.guild.Guild.create_auto_moderation_rule:32 +#: discord.guild.Guild.fetch_auto_moderation_rule:6 of +msgid ":class:`AutoModRule`" +msgstr "" + +#: be33175c8ed04894a62d75550622c6da +#: discord.guild.Guild.fetch_auto_moderation_rule:8 of +msgid "Getting the auto moderation rule failed." +msgstr "" + +#: 022f3795574a4ae9a73bc531c60b5f33 +#: discord.guild.Guild.create_auto_moderation_rule:1 of +msgid "Creates an auto moderation rule." +msgstr "" + +#: discord.guild.Guild.create_auto_moderation_rule:4 +#: fc7c82e7ce5240ae87a4b8888a1834a8 of +msgid "The name of the auto moderation rule." +msgstr "" + +#: 2bf99f7c1e524737a54f7496291c4a69 +#: discord.guild.Guild.create_auto_moderation_rule:7 of +msgid "The type of event that triggers the rule." +msgstr "" + +#: bd79dbece2e34f6883ab4c43f0eefdfe +#: discord.guild.Guild.create_auto_moderation_rule:10 of +msgid "The rule's trigger type." +msgstr "" + +#: 761219e812e54e64acae665e0f0a3ee0 discord.automod.AutoModRule:55 +#: discord.guild.Guild.create_auto_moderation_rule:13 of +msgid "The rule's trigger metadata." +msgstr "" + +#: 2c4ec7efb2a84a4e932cd105f8c8bd9f +#: discord.guild.Guild.create_auto_moderation_rule:16 of +msgid "The actions to take when the rule is triggered." +msgstr "" + +#: discord.guild.Guild.create_auto_moderation_rule:19 +#: ea4fedcb8baf4e8e80b732580b8864c7 of +msgid "Whether the rule is enabled." +msgstr "" + +#: 38f882f570db4c2ca22c7f0c52e414f8 +#: discord.guild.Guild.create_auto_moderation_rule:22 of +msgid "A list of roles that are exempt from the rule." +msgstr "" + +#: 81f668b4f0c94a599649916de9551caf +#: discord.guild.Guild.create_auto_moderation_rule:25 of +msgid "A list of channels that are exempt from the rule." +msgstr "" + +#: 4531d8bc55b844b3958a17c91aac2604 +#: discord.guild.Guild.create_auto_moderation_rule:28 of +msgid "The reason for creating the rule. Shows up in the audit log." +msgstr "" + +#: 105efa6a98d7495c9dfa2b71680219b3 +#: discord.guild.Guild.create_auto_moderation_rule:31 of +msgid "The new auto moderation rule." +msgstr "" + +#: 8e17d899e28b469bbe0771a8ae35d57a +#: discord.guild.Guild.create_auto_moderation_rule:34 of +msgid "Creating the auto moderation rule failed." +msgstr "" + +#: c61190617cf6478d8d9c4b6d95d08e50 discord.guild.Guild.onboarding:3 of +msgid "Returns the :class:`Onboarding` flow for the guild." +msgstr "" + +#: 46ce13e0435c4f2dac885ba6d56e4069 discord.guild.Guild.onboarding:7 of +msgid "The onboarding flow for the guild." +msgstr "" + +#: c343d9d40bae4a43bd68f1af8e94f4e8 discord.guild.Guild.edit_onboarding:27 +#: discord.guild.Guild.onboarding:8 discord.onboarding.Onboarding.add_prompt:31 +#: discord.onboarding.Onboarding.append_prompt:16 +#: discord.onboarding.Onboarding.delete_prompt:16 +#: discord.onboarding.Onboarding.edit:27 of +msgid ":class:`Onboarding`" +msgstr "" + +#: 77d044af231d4ace904c995790c1a138 discord.guild.Guild.onboarding:10 of +msgid "Retrieving the onboarding flow failed somehow." +msgstr "" + +#: 0d64da82315f4e298378e33fe0448d34 discord.guild.Guild.edit_onboarding:3 of +msgid "" +"A shorthand for :attr:`Onboarding.edit` without fetching the onboarding " +"flow." +msgstr "" + +#: 0882c5ddfa7e4b1a9f4c9a828646c692 discord.guild.Guild.edit_onboarding:5 +#: discord.onboarding.Onboarding.add_prompt:5 +#: discord.onboarding.Onboarding.append_prompt:5 +#: discord.onboarding.Onboarding.delete_prompt:5 +#: discord.onboarding.Onboarding.edit:5 of +msgid "" +"You must have the :attr:`~Permissions.manage_guild` and " +":attr:`~Permissions.manage_roles` permissions in the guild to do this." +msgstr "" + +#: 45a92da581e04fa2b319585280d42b15 discord.guild.Guild.edit_onboarding:9 +#: discord.onboarding.Onboarding.edit:9 of +msgid "The new list of prompts for this flow." +msgstr "" + +#: cafaefe922dd48c5ba61c50a27ec28dd discord.guild.Guild.edit_onboarding:12 +#: discord.onboarding.Onboarding.edit:12 of +msgid "The new default channels that users are opted into." +msgstr "" + +#: 5d6d3ca99aa8482dbc6ffda9436fbe5b discord.guild.Guild.edit_onboarding:15 +#: discord.onboarding.Onboarding.edit:15 of +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 "" + +#: 74763711887947678db4c474731cbcea discord.guild.Guild.edit_onboarding:20 +#: discord.onboarding.Onboarding.edit:20 of +msgid "The new onboarding mode." +msgstr "" + +#: 4efb14b400af448684e8daabbaf07bfb discord.guild.Guild.edit_onboarding:23 +#: discord.welcome_screen.WelcomeScreen.edit:14 of +msgid "The reason that shows up on Audit log." +msgstr "" + +#: b2acfb4f157841e4b7c8d566142234e4 discord.guild.Guild.edit_onboarding:26 +#: discord.onboarding.Onboarding.add_prompt:30 +#: discord.onboarding.Onboarding.append_prompt:15 +#: discord.onboarding.Onboarding.delete_prompt:15 +#: discord.onboarding.Onboarding.edit:26 of +msgid "The updated onboarding flow." +msgstr "" + +#: 3f3449ad058c4ff6bf3428a177b5aaa8 discord.guild.Guild.edit_onboarding:29 +#: discord.onboarding.Onboarding.add_prompt:33 +#: discord.onboarding.Onboarding.append_prompt:18 +#: discord.onboarding.Onboarding.delete_prompt:19 +#: discord.onboarding.Onboarding.edit:29 of +msgid "Editing the onboarding flow failed somehow." +msgstr "" + +#: 86b87547d2ed4552ac12516dc869b8f1 discord.guild.Guild.edit_onboarding:30 +#: discord.onboarding.Onboarding.add_prompt:34 +#: discord.onboarding.Onboarding.append_prompt:19 +#: discord.onboarding.Onboarding.delete_prompt:20 +#: discord.onboarding.Onboarding.edit:30 of +msgid "You don't have permissions to edit the onboarding flow." +msgstr "" + +#: 48cf22ba0c99497080c86cbff0eee085 +#: discord.guild.Guild.delete_auto_moderation_rule:1 of +msgid "Deletes an auto moderation rule." +msgstr "" + +#: 3f5008bb6cf04927b981b47ead834904 +#: discord.guild.Guild.delete_auto_moderation_rule:4 of +msgid "The ID of the auto moderation rule." +msgstr "" + +#: 7067e1b021e24246a274ecf334b608a3 +#: discord.guild.Guild.delete_auto_moderation_rule:7 of +msgid "The reason for deleting the rule. Shows up in the audit log." +msgstr "" + +#: cf81134ec30b4520b0f5883093b5ef56 +#: discord.guild.Guild.delete_auto_moderation_rule:10 of +msgid "Deleting the auto moderation rule failed." +msgstr "" + +#: discord.guild.Guild.create_test_entitlement:3 +#: ead2e3553f9f4a35bbb876a7f8a1c957 of +msgid "Creates a test entitlement for the guild." +msgstr "" + +#: 0a2edf433dd24913b837190596f61a7d discord.guild.Guild.entitlements:1 of +msgid "" +"Returns an :class:`.AsyncIterator` that enables fetching the guild's " +"entitlements." +msgstr "" + +#: 49db5051d76041628c6e8b56d1e9064e discord.guild.Guild.entitlements:3 of +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 "" + +#: ../../api/models.rst:145 d1bc287ff89b4eea9c60ff6c175ddc51 +#: discord.integrations.BotIntegration:39 discord.integrations.Integration:45 +#: discord.integrations.StreamIntegration:63 +#: discord.interactions.InteractionMetadata:23 +#: discord.interactions.MessageInteraction:37 discord.template.Template:33 of +msgid ":class:`User`" +msgstr "" + +#: 4224e72302b244e5975ce30b9083fe11 discord.member.Member:1 of +msgid "Represents a Discord member to a :class:`Guild`." +msgstr "" + +#: 16147907536f4214984d222a2b1f3b49 discord.member.Member:3 of +msgid "This implements a lot of the functionality of :class:`User`." +msgstr "" + +#: 4bd0f2d59e4c475b997f1ec81989baeb discord.member.Member:9 of +msgid "" +"Checks if two members are equal. Note that this works with :class:`User` " +"instances too." +msgstr "" + +#: c16c8485920d4219bc3306573a48106d discord.member.Member:14 of +msgid "" +"Checks if two members are not equal. Note that this works with " +":class:`User` instances too." +msgstr "" + +#: cd62a2fc56714695abacf07b65286fac discord.member.Member:19 of +msgid "Returns the member's hash." +msgstr "" + +#: c916cab233ba4291b5947e372bead4d4 discord.member.Member:23 of +msgid "Returns the member's name with the discriminator or global_name." +msgstr "" + +#: discord.member.Member:27 fd09fb6dee234da99f1a284943155802 of +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 "" + +#: 97e4088148b34fd29deedd05736cb686 discord.member.Member:34 of +msgid "The activities that the user is currently doing." +msgstr "" + +#: 300358621dd14a42adf6c1f0b0aa3c5c discord.member.Member:38 of +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 "" + +#: 94261981c2ca405dbc02c617650d3d7e discord.member.Member:42 of +msgid "Tuple[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "" + +#: 15957280725e487e86cc9fdc1f09686c discord.member.Member:46 of +msgid "The guild that the member belongs to." +msgstr "" + +#: af5f6ac353344515bf322a8d556b7492 discord.member.Member:52 of +msgid "The guild specific nickname of the user." +msgstr "" + +#: 54756fffdae9412eb7cacf5266721fe4 discord.member.Member:58 of +msgid "Whether the member is pending member verification." +msgstr "" + +#: 23818d39e4094f75a12136a59f5a79f0 discord.member.Member:66 of +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 "" + +#: 3950ea6a6bd645e7a1bf3c1284b3bc3f discord.member.Member:73 of +msgid "" +"An aware datetime object that specifies the date and time in UTC when the" +" member will be removed from timeout." +msgstr "" + +#: a9a6616aac0148a58f9225a34376e401 discord.member.Member:81 of +msgid "Extra attributes of the member." +msgstr "" + +#: 5cb8a7de85bf4b94b5bc71709d021690 discord.member.Member:85 of +msgid ":class:`MemberFlags`" +msgstr "" + +#: d19c2f29833942f18d614198d6fb687e discord.Member.name:1 of +msgid "Equivalent to :attr:`User.name`" +msgstr "" + +#: c492902022b849c29d575c5329b401e3 discord.Member.id:1 of +msgid "Equivalent to :attr:`User.id`" +msgstr "" + +#: 59af3cdce2f84e048157b3ee5440b776 discord.Member.discriminator:1 of +msgid "Equivalent to :attr:`User.discriminator`" +msgstr "" + +#: df849db718194071a81fe2a2f7184a2a discord.Member.bot:1 of +msgid "Equivalent to :attr:`User.bot`" +msgstr "" + +#: 0bc73fc598fd48039fcfcc9a78d3b99c discord.Member.system:1 of +msgid "Equivalent to :attr:`User.system`" +msgstr "" + +#: discord.Member.created_at:1 f9d06af574d1446c87a936924dad6c64 of +msgid "Equivalent to :attr:`User.created_at`" +msgstr "" + +#: d05acb1f08ea4efca7ea02095ff098d5 discord.Member.default_avatar:1 of +msgid "Equivalent to :attr:`User.default_avatar`" +msgstr "" + +#: 0636df0c16b34527af057d465fec0505 discord.Member.avatar:1 of +msgid "Equivalent to :attr:`User.avatar`" +msgstr "" + +#: 303c7c64fda0424ebbe70e6883543f44 discord.Member.dm_channel:1 of +msgid "Equivalent to :attr:`User.dm_channel`" +msgstr "" + +#: 423c486c003247ac9966ca71793c8b48 discord.Member.mutual_guilds:1 of +msgid "Equivalent to :attr:`User.mutual_guilds`" +msgstr "" + +#: a592ed6a8cfc42d3a82c9f7e3e27a6f2 discord.Member.public_flags:1 of +msgid "Equivalent to :attr:`User.public_flags`" +msgstr "" + +#: dc7ae802cab54df5a8aa17332269f562 discord.Member.banner:1 of +msgid "Equivalent to :attr:`User.banner`" +msgstr "" + +#: 19d8cea50fbd44909edfbf8a094bfae2 discord.Member.accent_color:1 of +msgid "Equivalent to :attr:`User.accent_color`" +msgstr "" + +#: 0432ce3359414325b19aee690117aef6 discord.Member.accent_colour:1 of +msgid "Equivalent to :attr:`User.accent_colour`" +msgstr "" + +#: 2f5fea69ade2408d8f7ee6fd6088f598 discord.Member.raw_status:1 of +msgid "The member's overall status as a string value." +msgstr "" + +#: 9e786b933ad54b38bebdba5654823859 discord.Member.status:1 of +msgid "" +"The member's overall status. If the value is unknown, then it will be a " +":class:`str` instead." +msgstr "" + +#: 54c542a06dc241189497c93b96043a9b discord.Member.mobile_status:1 of +msgid "The member's status on a mobile device, if applicable." +msgstr "" + +#: 29edc36c25774b2ab46b7321043cde87 discord.Member.desktop_status:1 of +msgid "The member's status on the desktop client, if applicable." +msgstr "" + +#: discord.Member.web_status:1 fa6a34f9e6f04c128a517e4f8262782a of +msgid "The member's status on the web client, if applicable." +msgstr "" + +#: ca2bed1e705c4f4a853c1a36773e1e9e discord.Member.global_name:1 of +msgid "The member's global name, if applicable." +msgstr "" + +#: 6bfa3f0e7dcc47368b087045bbfd8453 discord.member.Member.is_on_mobile:1 of +msgid "" +"A helper function that determines if a member is active on a mobile " +"device." +msgstr "" + +#: discord.Member.colour:1 ec82496d1ce14217b009e4cb3c93ae1c of +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 "" + +#: ca143b673e1845aea65f2c7ce04c1301 discord.Member.color:1 of +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 "" + +#: 621f782ce5f14018a13edc57e5d3e1cb discord.Member.roles:1 of +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.roles:5 e9735a8be8f844cb9d1f7506c6948b54 of +msgid "These roles are sorted by their position in the role hierarchy." +msgstr "" + +#: cb31142c94234c7d96a5f9e8a9203a76 discord.Member.mention:1 of +msgid "Returns a string that allows you to mention the member." +msgstr "" + +#: c7bbcd6fa1b8499c9d5abb92d639c395 discord.Member.display_name:1 of +msgid "" +"Returns the user's display name. This will either be their guild specific" +" nickname, global name or username." +msgstr "" + +#: 7cd0c7fd0121466d856b8544e0085b53 discord.Member.display_avatar:1 of +msgid "Returns the member's display avatar." +msgstr "" + +#: 2db0b9f8f64f48938c7e870b6c4d507c discord.Member.display_avatar:3 of +msgid "" +"For regular members this is just their avatar, but if they have a guild " +"specific avatar then that is returned instead." +msgstr "" + +#: 58517cfb8d7e46efa7aad63030e3d132 discord.Member.guild_avatar:1 of +msgid "" +"Returns an :class:`Asset` for the guild avatar the member has. If " +"unavailable, ``None`` is returned." +msgstr "" + +#: 0fe8c01199404f9bb81abee32e46de02 discord.Member.activity:1 of +msgid "" +"Returns the primary activity the user is currently doing. Could be " +"``None`` if no activity is being done." +msgstr "" + +#: 61a9e50b25374094a07265d4c6e399bf discord.Member.activity:6 of +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 "" + +#: 463255fd89a34300bd54e6b46893449b discord.Member.activity:12 of +msgid "" +"A user may have multiple activities, these can be accessed under " +":attr:`activities`." +msgstr "" + +#: 8f055d7ad1d3409c9bc0a6982a4df3d5 discord.member.Member.mentioned_in:1 of +msgid "Checks if the member is mentioned in the specified message." +msgstr "" + +#: c123f04c08954fd880f0b46e12cf1b5f discord.member.Member.mentioned_in:7 of +msgid "Indicates if the member is mentioned in the message." +msgstr "" + +#: 2de2e5171bf84639ac1169e05f17b87b discord.Member.top_role:1 of +msgid "Returns the member's highest role." +msgstr "" + +#: 99f7f895d96949ef857d0068159226fc discord.Member.top_role:3 of +msgid "" +"This is useful for figuring where a member stands in the role hierarchy " +"chain." +msgstr "" + +#: 95d5eecd0cdc4c518d47eb8dc9f410f3 discord.Member.guild_permissions:1 of +msgid "Returns the member's guild permissions." +msgstr "" + +#: 31425c322a96462e99b4728a7ae8cf2b discord.Member.guild_permissions:3 of +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 "" + +#: a5c4a9f7842446d19859918a6574b8c5 discord.Member.guild_permissions:8 of +msgid "" +"This does take into consideration guild ownership and the administrator " +"implication." +msgstr "" + +#: b7f18c6561624baf9b387e7cbc9410f7 discord.Member.voice:1 of +msgid "Returns the member's current voice state." +msgstr "" + +#: 8fa6a9e228fa43ae828849ed839b3fe6 discord.Member.timed_out:1 of +msgid "Returns whether the member is timed out." +msgstr "" + +#: cf3459c60a5448888d44092d532857cb discord.member.Member.ban:3 of +msgid "Bans this member. Equivalent to :meth:`Guild.ban`." +msgstr "" + +#: 55b8c90e571e446792626dd6ae30518b discord.member.Member.unban:3 of +msgid "Unbans this member. Equivalent to :meth:`Guild.unban`." +msgstr "" + +#: d4b65da0baee4f14b3ead3f145cb41b4 discord.member.Member.kick:3 of +msgid "Kicks this member. Equivalent to :meth:`Guild.kick`." +msgstr "" + +#: 3f0a1b838a2647c3b891a0598e75ba6d discord.member.Member.edit:3 of +msgid "Edits the member's data." +msgstr "" + +#: 191f92a299584434b1a8ece363f2970e discord.member.Member.edit:5 of +msgid "" +"Depending on the parameter passed, this requires different permissions " +"listed below:" +msgstr "" + +#: c583cbd9466848e5b3a66e42d181fa40 discord.member.Member.edit:8 of +msgid "Parameter" +msgstr "" + +#: 2b01166c89e247bea4fc825dfcb3b915 discord.member.Member.edit:8 of +msgid "Permission" +msgstr "" + +#: discord.member.Member.edit:10 f5156642c2e34f729bbe6863ddc3184f of +msgid "nick" +msgstr "" + +#: discord.member.Member.edit:10 e683810bda264f899e9c08a6db087a41 of +msgid ":attr:`Permissions.manage_nicknames`" +msgstr "" + +#: 4f4b3d3eb3a841ec9bcd348b6e6b754a discord.member.Member.edit:12 of +msgid "mute" +msgstr "" + +#: d3f5c1a20f264280b200cbcac5c0d6d5 discord.member.Member.edit:12 of +msgid ":attr:`Permissions.mute_members`" +msgstr "" + +#: 5a0b2ea3a1fe4c00b62fbf3ca37a2056 discord.member.Member.edit:14 of +msgid "deafen" +msgstr "" + +#: 6aa212566176493fa4693e9e84a1ca0f discord.member.Member.edit:14 of +msgid ":attr:`Permissions.deafen_members`" +msgstr "" + +#: discord.member.Member.edit:16 e68265f5c790401bac6f73bcc637cf99 of +msgid "roles" +msgstr "" + +#: 9ea588ed6dd64cf1a5fe4bf6f57c6059 discord.member.Member.edit:16 of +msgid ":attr:`Permissions.manage_roles`" +msgstr "" + +#: 520b1222e9fb4a82af38bbbc41bbf3d3 discord.member.Member.edit:18 of +msgid "voice_channel" +msgstr "" + +#: 369a4c2a10674441ae336a1ccb56e699 discord.member.Member.edit:18 of +msgid ":attr:`Permissions.move_members`" +msgstr "" + +#: b55fbe99ab8742069352b60ad9017339 discord.member.Member.edit:20 of +msgid "communication_disabled_until" +msgstr "" + +#: b497816b27384f2f89f7def4a8a8b46f discord.member.Member.edit:20 of +msgid ":attr:`Permissions.moderate_members`" +msgstr "" + +#: bbd302f910334704934ca0c09a1837fa discord.member.Member.edit:22 of +msgid "bypass_verification" +msgstr "" + +#: discord.member.Member.edit:22 fb447ba10e5d4f0788669d8e55273e16 of +msgid "See note below" +msgstr "" + +#: 76a3becb4b6c4bfab9e65f0e7fc1e4ef discord.member.Member.edit:27 of +msgid "`bypass_verification` may be edited under three scenarios:" +msgstr "" + +#: c5003198a611467882fab14bdd0444bb discord.member.Member.edit:29 of +msgid "Client has :attr:`Permissions.manage_guild`" +msgstr "" + +#: 66e3186beb5a47ceb21589afcbdfcd6c discord.member.Member.edit:31 of +msgid "Client has :attr:`Permissions.manage_roles`" +msgstr "" + +#: bdadfe5cb0704ebd9df5045592ffcff5 discord.member.Member.edit:33 of +msgid "" +"Client has ALL THREE of :attr:`Permissions.moderate_members`, " +":attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members`" +msgstr "" + +#: discord.member.Member.edit:37 f841e22738634da48594ee1e17ad1916 of +msgid "Can now pass ``None`` to ``voice_channel`` to kick a member from voice." +msgstr "" + +#: 9daf22cbbe1b41bc8bdd328b01d14338 discord.member.Member.edit:40 of +msgid "The newly member is now optionally returned, if applicable." +msgstr "" + +#: 1e205abbcb6c42148f88e2b2ea1e223d discord.member.Member.edit:44 of +msgid "The member's new nickname. Use ``None`` to remove the nickname." +msgstr "" + +#: 93bd86a0ac724cfbb2b9e05b0e3bf0a6 discord.member.Member.edit:47 of +msgid "Indicates if the member should be guild muted or un-muted." +msgstr "" + +#: 5ce7761f05ac4b15b453852bc84acd07 discord.member.Member.edit:50 of +msgid "Indicates if the member should be guild deafened or un-deafened." +msgstr "" + +#: discord.member.Member.edit:53 e0c6410979ab4bb999e9c991839b67c2 of +msgid "" +"Indicates if the member should be suppressed in stage channels. .. " +"versionadded:: 1.7" +msgstr "" + +#: 4707597fe3f4402d99abcd4c353e8d8c discord.member.Member.edit:53 of +msgid "Indicates if the member should be suppressed in stage channels." +msgstr "" + +#: d5ad7f3d9790412b8a1a6e9e335d35fd discord.member.Member.edit:58 of +msgid "The member's new list of roles. This *replaces* the roles." +msgstr "" + +#: ad76d48b98e344078e1778cae1d3828e discord.member.Member.edit:61 of +msgid "" +"The voice channel to move the member to. Pass ``None`` to kick them from " +"voice." +msgstr "" + +#: 7d2ece875a854077aa8922df9658464e discord.member.Member.edit:65 of +msgid "The reason for editing this member. Shows up on the audit log." +msgstr "" + +#: 12b3b480b959409c97a966579c582741 discord.member.Member.edit:68 of +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 "" + +#: 3c6b7a21d66b4d2fb80ea744cae56c1b discord.member.Member.edit:68 of +msgid "" +"Temporarily puts the member in timeout until this time. If the value is " +"``None``, then the user is removed from timeout." +msgstr "" + +#: 7a3b65549f614538a0ebb902d0238dff discord.member.Member.edit:74 of +msgid "" +"Indicates if the member should bypass the guild's verification " +"requirements. .. versionadded:: 2.6" +msgstr "" + +#: 6465b7a29e214013a4a396a21814536c discord.member.Member.edit:74 of +msgid "" +"Indicates if the member should bypass the guild's verification " +"requirements." +msgstr "" + +#: 2adf8663f70b4a72b1fa3c51ddfb6c41 discord.member.Member.edit:79 of +msgid "" +"The newly updated member, if applicable. This is only returned when " +"certain fields are updated." +msgstr "" + +#: a6a8e0142c534a4c9db5ea9905bf1324 discord.member.Member.edit:81 of +msgid "Optional[:class:`.Member`]" +msgstr "" + +#: 9fcd0b74f14347da8c2bbb599a1d6f8a discord.member.Member.edit:83 +#: discord.member.Member.request_to_speak:16 of +msgid "You do not have the proper permissions to the action requested." +msgstr "" + +#: 67fcfd3c206a4c318800ab0f5de5c77b discord.member.Member.timeout:3 of +msgid "Applies a timeout to a member in the guild until a set datetime." +msgstr "" + +#: 07ab819209a440ab914bf6c94d75af30 8f3a11b0ffb6483eb2e62e38d7f3b417 +#: discord.member.Member.timeout:5 discord.member.Member.timeout_for:6 of +msgid "" +"You must have the :attr:`~Permissions.moderate_members` permission to " +"timeout a member." +msgstr "" + +#: 1e92b504d5134586905349c69536d3fd discord.member.Member.timeout:8 of +msgid "" +"The date and time to timeout the member for. If this is ``None`` then the" +" member is removed from timeout." +msgstr "" + +#: 290a334f5b9f48f0ad5f62553d07c555 discord.member.Member.timeout:14 +#: discord.member.Member.timeout_for:16 of +msgid "You do not have permissions to timeout members." +msgstr "" + +#: ce0d879a4399461a90bc27598271760b discord.member.Member.remove_timeout:15 +#: discord.member.Member.timeout:15 discord.member.Member.timeout_for:17 of +msgid "An error occurred doing the request." +msgstr "" + +#: 39be7fd9a9504abf8bb9496fc5da44ca discord.member.Member.timeout_for:3 of +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.Member.timeout_for:10 fd041c18511244ac839dcc4d8c2d4c07 of +msgid "The duration to timeout the member for." +msgstr "" + +#: discord.member.Member.remove_timeout:3 fd70d9a85517425eac26f22be69dc022 of +msgid "Removes the timeout from a member." +msgstr "" + +#: 8f09beeaef574af6a7d9e0a5b815cee6 discord.member.Member.remove_timeout:5 of +msgid "" +"You must have the :attr:`~Permissions.moderate_members` permission to " +"remove the timeout." +msgstr "" + +#: 3a47bba56957450c8a25ee82cfe2acd8 discord.member.Member.remove_timeout:8 of +msgid "" +"This is equivalent to calling :meth:`~.timeout` and passing ``None`` to " +"the ``until`` parameter." +msgstr "" + +#: 722571d769ca4a9c845bb58aebebbaea discord.member.Member.remove_timeout:14 of +msgid "You do not have permissions to remove the timeout." +msgstr "" + +#: 8b1ddf2494da4d18b8104138bdad7fe9 discord.member.Member.request_to_speak:3 of +msgid "Request to speak in the connected channel." +msgstr "" + +#: 0399a9d50af149919d64576b2e22f6bb discord.member.Member.request_to_speak:5 of +msgid "" +"Only applies to stage channels. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: b8b4bc2b34d041c8aa4c00881624baee discord.member.Member.request_to_speak:11 +#: of +msgid "" +"Requesting members that are not the client is equivalent to :attr:`.edit`" +" providing ``suppress`` as ``False``." +msgstr "" + +#: 482a70bf0cdd4117afac463a709c136f discord.member.Member.move_to:3 of +msgid "Moves a member to a new voice channel (they must be connected first)." +msgstr "" + +#: 5499de24315c4e3681b7dcd8cca1e9b1 discord.member.Member.move_to:5 of +msgid "" +"You must have the :attr:`~Permissions.move_members` permission to use " +"this." +msgstr "" + +#: 69861da81eff4d51b5634bf458738e8b discord.member.Member.move_to:8 of +msgid "This raises the same exceptions as :meth:`edit`." +msgstr "" + +#: 0ef28902ea594c2690adf3ba5b9d81c9 discord.member.Member.move_to:10 of +msgid "Can now pass ``None`` to kick a member from voice." +msgstr "" + +#: 503735ef849943d2b4b2fa0fd2d04967 discord.member.Member.move_to:14 of +msgid "" +"The new voice channel to move the member to. Pass ``None`` to kick them " +"from voice." +msgstr "" + +#: 4fca1b79777444d7ad677cd10494b795 discord.member.Member.add_roles:3 of +msgid "Gives the member a number of :class:`Role`\\s." +msgstr "" + +#: 16b5351a5d2d442e95285cc327bff730 discord.member.Member.add_roles:5 of +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 "" + +#: 08e555262cee446794f4f563b0c99c84 discord.member.Member.add_roles:10 of +msgid "" +"An argument list of :class:`abc.Snowflake` representing a :class:`Role` " +"to give to the member." +msgstr "" + +#: cdb82fa7747642ebbbb2e87cdfb0641e discord.member.Member.add_roles:14 of +msgid "The reason for adding these roles. Shows up on the audit log." +msgstr "" + +#: 8ab879d3759a45a1b30cc9e5d8271623 discord.member.Member.add_roles:17 of +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 "" + +#: b29f7142676942f9acc3da4f6606a1d3 discord.member.Member.add_roles:22 of +msgid "You do not have permissions to add these roles." +msgstr "" + +#: 59cd6ba166c9409abf12b3a10d1f2e48 discord.member.Member.add_roles:23 of +msgid "Adding roles failed." +msgstr "" + +#: cabe3ed43fdf4e4ebc41e33075bd0b9f discord.Member.avatar_decoration:1 of +msgid "Equivalent to :attr:`User.avatar_decoration`" +msgstr "" + +#: discord.Member.is_migrated:1 f9263362216f45cb993e644b8f06e9b7 of +msgid "Equivalent to :attr:`User.is_migrated`" +msgstr "" + +#: 2a9456847dbd44caa70b41a1ace5907a discord.Member.jump_url:1 of +msgid "Equivalent to :attr:`User.jump_url`" +msgstr "" + +#: ce5eafe9a84847258a6bf6a05706fd4c discord.member.Member.remove_roles:3 of +msgid "Removes :class:`Role`\\s from this member." +msgstr "" + +#: 9d40127d6bc14fa6849472841667a3a3 discord.member.Member.remove_roles:5 of +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 "" + +#: 151f782cf7da475a9348e09c83b381a5 discord.member.Member.remove_roles:10 of +msgid "" +"An argument list of :class:`abc.Snowflake` representing a :class:`Role` " +"to remove from the member." +msgstr "" + +#: 2e48cc6bee8f4c1c82f680c63fb2f9ee discord.member.Member.remove_roles:14 of +msgid "The reason for removing these roles. Shows up on the audit log." +msgstr "" + +#: aaa8ce8da63e4e36bfd04c5556440d03 discord.member.Member.remove_roles:17 of +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 "" + +#: 9056f686438c4efda4be253e5b5d6698 discord.member.Member.remove_roles:22 of +msgid "You do not have permissions to remove these roles." +msgstr "" + +#: b28ab0944bac46fcb93d05451f0c7447 discord.member.Member.remove_roles:23 of +msgid "Removing the roles failed." +msgstr "" + +#: 1a315b9d0ae84ef9a8aaac0e3b6e82f8 discord.member.Member.get_role:1 of +msgid "Returns a role with the given ID from roles which the member has." +msgstr "" + +#: c4ef36a9616d459ea91ba285772aa15c discord.member.Member.get_role:9 of +msgid "The role or ``None`` if not found in the member's roles." +msgstr "" + +#: bf5548d7f1344452ac9aab8d493066f8 discord.template.Template:1 of +msgid "Represents a Discord template." +msgstr "" + +#: discord.template.Template:7 e9cb8b6efd734274924a4126f172a997 of +msgid "The template code." +msgstr "" + +#: 1f2a73ed296346078fcffc86ef712e2b discord.template.Template:13 of +msgid "How many times the template has been used." +msgstr "" + +#: c83fded2631f4cf1b2d646c3d5e3c144 discord.template.Template:31 of +msgid "The creator of the template." +msgstr "" + +#: 38af213396984d9681c7e60a89460807 discord.template.Template:37 of +msgid "An aware datetime in UTC representing when the template was created." +msgstr "" + +#: b8e1833f3ac147369e252c5d8801de52 discord.integrations.StreamIntegration:75 +#: discord.invite.Invite:77 discord.raw_models.RawTypingEvent:21 +#: discord.scheduled_events.ScheduledEvent:45 discord.template.Template:39 +#: discord.template.Template:46 discord.threads.Thread:121 +#: discord.threads.ThreadMember:39 of +msgid ":class:`datetime.datetime`" +msgstr "" + +#: a08d3b7933ae42939fabfd13f6d815fa discord.template.Template:43 of +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 "" + +#: 29e7297008044e4ea82c9f41238467b1 discord.template.Template:50 of +msgid "The source guild." +msgstr "" + +#: 1c3d15b96df6417498447cf15dd2b44c discord.template.Template:56 of +msgid "Whether the template has unsynced changes." +msgstr "" + +#: ad7ae992e9464d198f1ab9b5ae6b4efa discord.integrations.StreamIntegration:45 +#: discord.template.Template:60 discord.widget.WidgetMember:73 +#: discord.widget.WidgetMember:79 discord.widget.WidgetMember:85 of +msgid "Optional[:class:`bool`]" +msgstr "" + +#: 188d3a03174d45e0bc3e507f9284c0aa discord.template.Template.create_guild:3 of +msgid "Creates a :class:`.Guild` using the template." +msgstr "" + +#: 1f7e68f47747482790c6bfde1f799131 discord.template.Template.create_guild:5 of +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "" + +#: d7855834282943ff8fe5f3f2e1586fb6 discord.template.Template.create_guild:8 of +msgid "The name of the guild." +msgstr "" + +#: discord.template.Template.create_guild:11 eeda24219810402f9f0f4d863622e24e +#: of +msgid "" +"The :term:`py:bytes-like object` representing the icon. See " +":meth:`.ClientUser.edit` for more details on what is expected." +msgstr "" + +#: 9720111e71c14949bd37d4710e5ba779 discord.template.Template.create_guild:15 +#: of +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "" + +#: 60fb7adfd729405c9622a41dac16e0e7 discord.template.Template.create_guild:17 +#: of +msgid ":class:`.Guild`" +msgstr "" + +#: discord.template.Template.create_guild:19 ebe7523a8bfa43798097a7af866aa23b +#: of +msgid "Guild creation failed." +msgstr "" + +#: cc161cedb24a49fa87c8e704c82d516d discord.template.Template.create_guild:20 +#: of +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "" + +#: 0b9f97db60654891ab2ac4487da374e5 discord.template.Template.sync:3 of +msgid "Sync the template to the guild's current state." +msgstr "" + +#: 977e60b646b7448a8979fb130ee01916 discord.template.Template.edit:5 +#: discord.template.Template.sync:5 of +msgid "" +"You must have the :attr:`~Permissions.manage_guild` permission in the " +"source guild to do this." +msgstr "" + +#: 4970e09963914887b0fcf223d3189144 discord.template.Template.sync:10 of +msgid "The template is no longer synced in-place, instead it is returned." +msgstr "" + +#: 86a98670847c4f308c3be4099d382b5f discord.template.Template.sync:13 of +msgid "The newly synced template." +msgstr "" + +#: 972be385b13d440092cdccd620111c7a discord.template.Template.edit:21 +#: discord.template.Template.sync:14 of +msgid ":class:`Template`" +msgstr "" + +#: 46a228ca6d6144b3b791081a13773e53 discord.template.Template.sync:16 of +msgid "Syncing the template failed." +msgstr "" + +#: 63d20844750f4597802d03f9df32fef4 discord.template.Template.sync:17 of +msgid "You don't have permissions to sync the template." +msgstr "" + +#: 33c32e64d0434d23a47aa521c5f83dad discord.template.Template.delete:14 +#: discord.template.Template.edit:25 discord.template.Template.sync:18 of +msgid "This template does not exist." +msgstr "" + +#: caef495a64ea4a2abf259a30923afff0 discord.template.Template.edit:3 of +msgid "Edit the template metadata." +msgstr "" + +#: 4f12d8ba2b4145f69e90b8808fdc0a07 discord.template.Template.edit:10 of +msgid "The template is no longer edited in-place, instead it is returned." +msgstr "" + +#: cb045b76ee6c47549f43603081eed127 discord.template.Template.edit:14 of +msgid "The template's new name." +msgstr "" + +#: 24f040a38b8a45908cdcae4b34bb8cdb discord.template.Template.edit:17 of +msgid "The template's new description." +msgstr "" + +#: de911bbc2e0b44188641f650ea0b7be2 discord.template.Template.edit:20 of +msgid "The newly edited template." +msgstr "" + +#: 5ed66316abce4297b32eb011363b5d7d discord.template.Template.edit:23 of +msgid "Editing the template failed." +msgstr "" + +#: 7ad6202760ba4961891ab9718d7cc26b discord.template.Template.edit:24 of +msgid "You don't have permissions to edit the template." +msgstr "" + +#: afcc7d9d4e454de7902106a6a09e2964 discord.template.Template.delete:3 of +msgid "Delete the template." +msgstr "" + +#: 8b5a9e96266a4023b25f75b35b65796a discord.template.Template.delete:5 of +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 "" + +#: 907065e9899b4eeaad5ddd08f9203a20 discord.template.Template.delete:12 of +msgid "Deleting the template failed." +msgstr "" + +#: 2a4855817ddb4b6f926e1ca0101d5d7e discord.template.Template.delete:13 of +msgid "You don't have permissions to delete the template." +msgstr "" + +#: c8f3576f377c41bf991f59cc9514db58 discord.Template.url:1 of +msgid "The template url." +msgstr "" + +#: ../../api/models.rst:166 225faf34ffdd44d1b1e7d780b7711787 +msgid "AutoMod" +msgstr "" + +#: c27d0bb1f5bf40568dc7702d3a3030ad discord.automod.AutoModRule:1 of +msgid "Represents a guild's auto moderation rule." +msgstr "" + +#: discord.automod.AutoModRule:9 e3f6ffd480a947daacbb3ee3dc9bcc2e of +msgid "Checks if two rules are equal." +msgstr "" + +#: 101d390cb41f4c62a44c8df8b739f11d discord.automod.AutoModRule:13 of +msgid "Checks if two rules are not equal." +msgstr "" + +#: d7b0787407c840b79eee4ad0c2df3ae9 discord.automod.AutoModRule:17 of +msgid "Returns the rule's hash." +msgstr "" + +#: discord.automod.AutoModRule:21 e2877fcc254949309be5940913b5fa49 of +msgid "Returns the rule's name." +msgstr "" + +#: dad5bb9babac4fa995acbc17f8802c23 discord.automod.AutoModRule:25 of +msgid "The rule's ID." +msgstr "" + +#: ca774a304f9a4d4baa6329ce8e864eef discord.automod.AutoModRule:31 of +msgid "The rule's name." +msgstr "" + +#: 6aa70ca12ef64846a5efe5890863cd66 discord.automod.AutoModRule:37 of +msgid "The ID of the user who created this rule." +msgstr "" + +#: 06de674f376a4b4abe96c1042cc2a0e7 discord.automod.AutoModRule:43 of +msgid "Indicates in what context the rule is checked." +msgstr "" + +#: discord.automod.AutoModRule:45 e7e6a53fb12b47838e344835380b52c9 of +msgid ":class:`AutoModEventType`" +msgstr "" + +#: 02beb191b9c142a48ff1df40a1e07b29 discord.automod.AutoModRule:49 of +msgid "" +"Indicates what type of information is checked to determine whether the " +"rule is triggered." +msgstr "" + +#: 848ba8fba5d94c7da78956880b9befd4 discord.automod.AutoModRule:51 +#: discord.raw_models.AutoModActionExecutionEvent:23 of +msgid ":class:`AutoModTriggerType`" +msgstr "" + +#: 45e34f01bab246e7ab8def22a7b3b766 discord.automod.AutoModRule:57 of +msgid ":class:`AutoModTriggerMetadata`" +msgstr "" + +#: 42106214e93e46c48ce6a567c7e5d4a6 discord.automod.AutoModRule:61 of +msgid "The actions to perform when the rule is triggered." +msgstr "" + +#: 0437f0929c274d88b99010b4bd10e60e discord.automod.AutoModRule:63 of +msgid "List[:class:`AutoModAction`]" +msgstr "" + +#: 1b34d636f1674e9f9a8297e79af3aa07 discord.automod.AutoModRule:67 +#: discord.automod.AutoModRule.edit:18 of +msgid "Whether this rule is enabled." +msgstr "" + +#: 0759c70f615648d4b1b0b4c37556dd99 discord.automod.AutoModRule:73 of +msgid "The IDs of the roles that are exempt from this rule." +msgstr "" + +#: 87c8fe8fea4441edb52f0ea109aaae0a discord.automod.AutoModRule:75 +#: discord.automod.AutoModRule:81 of +msgid "List[:class:`int`]" +msgstr "" + +#: 82153e076b5f42eca5f02ddfb4a738b1 discord.automod.AutoModRule:79 of +msgid "The IDs of the channels that are exempt from this rule." +msgstr "" + +#: 66f75bf0d3964e8fa888333a284a7480 discord.AutoModRule.guild:1 of +msgid "The guild this rule belongs to." +msgstr "" + +#: 5902be937b934b3dab2737ac2ba90684 discord.AutoModRule.creator:1 of +msgid "The member who created this rule." +msgstr "" + +#: ae0c2b3646bf4314a2b436f029353385 discord.AutoModRule.exempt_roles:1 of +msgid "The roles that are exempt from this rule." +msgstr "" + +#: discord.AutoModRule.exempt_roles:4 f2b2ce1dbc4a452e80b48de7fadf471d of +msgid "" +"If a role is not found in the guild's cache, then it will be returned as " +"an :class:`Object`." +msgstr "" + +#: 3d1c090fe2744ae7920d9b41b93707c3 discord.AutoModRule.exempt_channels:1 of +msgid "The channels that are exempt from this rule." +msgstr "" + +#: ../../docstring 4605c05e782c449fbb9df453c31e8668 +#: discord.AutoModRule.exempt_channels:3 discord.Onboarding.default_channels:3 +#: of +msgid "" +"If a channel is not found in the guild's cache, then it will be returned " +"as an :class:`Object`." +msgstr "" + +#: discord.automod.AutoModRule.delete:3 e577fb88088d45699005b7a923d2ad0a of +msgid "Deletes this rule." +msgstr "" + +#: 278ac7d30eb2425093e409cb04b02bdc discord.automod.AutoModRule.delete:6 of +msgid "The reason for deleting this rule. Shows up in the audit log." +msgstr "" + +#: 953c903154d94a5db43a89fd099bfb98 discord.automod.AutoModRule.edit:3 of +msgid "Edits this rule." +msgstr "" + +#: 9ad875341a1448938d88b24cdb962f43 discord.automod.AutoModRule.edit:6 of +msgid "The rule's new name." +msgstr "" + +#: 0d476f45ec98457cbc8c01fe527b3058 discord.automod.AutoModRule.edit:9 of +msgid "The new context in which the rule is checked." +msgstr "" + +#: c8306420574d4b5783433979e2595a32 discord.automod.AutoModRule.edit:12 of +msgid "The new trigger metadata." +msgstr "" + +#: 9968061d3f5e47c29b419db205ffd58d discord.automod.AutoModRule.edit:15 of +msgid "The new actions to perform when the rule is triggered." +msgstr "" + +#: 48142cdaf6284df9ac9a9d91fa05a605 discord.automod.AutoModRule.edit:21 of +msgid "The roles that will be exempt from this rule." +msgstr "" + +#: 9c486c6dcc47492ca546aca991afaba2 discord.automod.AutoModRule.edit:24 of +msgid "The channels that will be exempt from this rule." +msgstr "" + +#: 110894ce28854cfa96d399b582d05d94 discord.automod.AutoModRule.edit:27 of +msgid "The reason for editing this rule. Shows up in the audit log." +msgstr "" + +#: 6433b6a7db514d358a3f4093103a6389 discord.automod.AutoModRule.edit:30 of +msgid "" +"The newly updated rule, if applicable. This is only returned when fields " +"are updated." +msgstr "" + +#: d863f1c014244e438f267edde0a81727 discord.automod.AutoModRule.edit:32 of +msgid "Optional[:class:`.AutoModRule`]" +msgstr "" + +#: 5d6016062f7c41c0accd5c9c802d02fd discord.automod.AutoModAction:1 of +msgid "Represents an action for a guild's auto moderation rule." +msgstr "" + +#: 2744effe31674cd6887f039aaf3150e2 discord.automod.AutoModAction:7 of +msgid "The action's type." +msgstr "" + +#: 9a73c92ce0c1452f8dac5dec612f59f4 discord.automod.AutoModAction:9 of +msgid ":class:`AutoModActionType`" +msgstr "" + +#: 29f292c60c514b4fa71bcb95a03f98b6 discord.automod.AutoModAction:13 of +msgid "The action's metadata." +msgstr "" + +#: 1cb00afaf1b44c83884bfb663de6ea64 discord.automod.AutoModAction:15 of +msgid ":class:`AutoModActionMetadata`" +msgstr "" + +#: cd1d6707da27496d819b4bc93fa8d9a9 discord.automod.AutoModActionMetadata:1 of +msgid "Represents an action's metadata." +msgstr "" + +#: a88697345fec4d69b0da3b40328193d0 discord.automod.AutoModActionMetadata:3 of +msgid "Depending on the action's type, different attributes will be used." +msgstr "" + +#: adf66476594744779d49521c5f892de1 discord.automod.AutoModActionMetadata:9 of +msgid "" +"The ID of the channel to send the message to. Only for actions of type " +":attr:`AutoModActionType.send_alert_message`." +msgstr "" + +#: 2c9f4f06300e40a8b2478a5825b9df6e discord.automod.AutoModActionMetadata:16 of +msgid "" +"How long the member that triggered the action should be timed out for. " +"Only for actions of type :attr:`AutoModActionType.timeout`." +msgstr "" + +#: 43745dfaea0f48c2b061c077103091b2 discord.automod.AutoModActionMetadata:19 of +msgid ":class:`datetime.timedelta`" +msgstr "" + +#: 24850b9583a942e2b87b2024e264356c discord.automod.AutoModActionMetadata:23 of +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.AutoModTriggerMetadata:1 e6473b15bf1c4aab8d18c91cd7a68623 of +msgid "" +"Represents a rule's trigger metadata, defining additional data used to " +"determine when a rule triggers." +msgstr "" + +#: 9b6947b4ccf14e44a9ef208417f38303 discord.automod.AutoModTriggerMetadata:3 of +msgid "Depending on the trigger type, different metadata attributes will be used:" +msgstr "" + +#: 7ece475c494647459b908955f3d194df discord.automod.AutoModTriggerMetadata:6 +#: discord.invite.Invite:27 of +msgid "Attribute" +msgstr "" + +#: 8c548fe1a7c34ca6bce83e5e90e41f62 discord.automod.AutoModTriggerMetadata:6 of +msgid "Trigger Types" +msgstr "" + +#: 4496649362734b089d460cd8c7f67771 discord.automod.AutoModTriggerMetadata:8 of +msgid ":attr:`keyword_filter`" +msgstr "" + +#: b3a97afc4a6d45f1b595e20dcfd61b00 discord.automod.AutoModTriggerMetadata:8 +#: discord.automod.AutoModTriggerMetadata:10 of +msgid ":attr:`AutoModTriggerType.keyword`" +msgstr "" + +#: 4af760617eae40a49267b86322b8311d discord.automod.AutoModTriggerMetadata:10 +#: of +msgid ":attr:`regex_patterns`" +msgstr "" + +#: b1e8ad230d1e49848260dc3ccdb4cd07 discord.automod.AutoModTriggerMetadata:12 +#: of +msgid ":attr:`presets`" +msgstr "" + +#: 3e776a67efb24799ba6d061c21ee7c35 discord.automod.AutoModTriggerMetadata:12 +#: of +msgid ":attr:`AutoModTriggerType.keyword_preset`" +msgstr "" + +#: 6d82b167b64941a8a2d1239c77d47bb4 discord.automod.AutoModTriggerMetadata:14 +#: of +msgid ":attr:`allow_list`" +msgstr "" + +#: 3fcd3e8edbb2474f87ca8ec502a448e1 discord.automod.AutoModTriggerMetadata:14 +#: of +msgid "" +":attr:`AutoModTriggerType.keyword`\\, " +":attr:`AutoModTriggerType.keyword_preset`" +msgstr "" + +#: baa8675fda194957a18f620d958af8da discord.automod.AutoModTriggerMetadata:16 +#: of +msgid ":attr:`mention_total_limit`" +msgstr "" + +#: c94a6bf582e5483d9a84c8933763bb52 discord.automod.AutoModTriggerMetadata:16 +#: of +msgid ":attr:`AutoModTriggerType.mention_spam`" +msgstr "" + +#: 1c6c27691aac4d85b49add284a607515 discord.automod.AutoModTriggerMetadata:19 +#: of +msgid "" +"Each attribute has limits that may change based on the trigger type. See " +"`here `_ for " +"information on attribute limits." +msgstr "" + +#: 08cf564ffd8f4fdd85936d9e3a7d8739 discord.automod.AutoModTriggerMetadata:27 +#: of +msgid "A list of substrings to filter." +msgstr "" + +#: discord.automod.AutoModTriggerMetadata:33 ecc19b65d2a844dd9c3257978c9471f1 +#: of +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 "" + +#: 8ec3997fd0a44fc5b1ba9942db04c3d9 discord.automod.AutoModTriggerMetadata:42 +#: of +msgid "A list of preset keyword sets to filter." +msgstr "" + +#: 1a31537f646b42e287d2e35e283b37af discord.automod.AutoModTriggerMetadata:44 +#: of +msgid "List[:class:`AutoModKeywordPresetType`]" +msgstr "" + +#: 455fd824a9da48ec8d8ef2c2c5c43e09 discord.automod.AutoModTriggerMetadata:48 +#: of +msgid "A list of substrings to allow, overriding keyword and regex matches." +msgstr "" + +#: aef8ec696f474f2aa37e3d91d1cb8dc6 discord.automod.AutoModTriggerMetadata:56 +#: of +msgid "The total number of unique role and user mentions allowed." +msgstr "" + +#: ../../api/models.rst:189 30ed9cbe01954df3a16f002ee6bb94c2 +msgid "Invites" +msgstr "" + +#: 69fba3baef004ee2b84142272ccce2d9 discord.invite.PartialInviteGuild:1 of +msgid "Represents a \"partial\" invite guild." +msgstr "" + +#: 45776a9178224707a1d5cf4ebfff169b discord.invite.PartialInviteChannel:3 +#: discord.invite.PartialInviteGuild:3 of +msgid "" +"This model will be given when the user is not part of the guild the " +":class:`Invite` resolves to." +msgstr "" + +#: 89fb246f756446b38c7f3f3b535fdfeb discord.invite.PartialInviteGuild:10 of +msgid "Checks if two partial guilds are the same." +msgstr "" + +#: 1f072902c7b1434897f2b821bf1f710a discord.invite.PartialInviteGuild:14 of +msgid "Checks if two partial guilds are not the same." +msgstr "" + +#: a95177c93f494a09b14669a985cb009c discord.invite.PartialInviteGuild:18 of +msgid "Return the partial guild's hash." +msgstr "" + +#: discord.invite.PartialInviteGuild:22 ef98a21ce76645eeb3b149d4b39da542 of +msgid "Returns the partial guild's name." +msgstr "" + +#: 93d2a832d86246279c35490b6c878a86 discord.invite.PartialInviteGuild:26 +#: discord.webhook.async_.PartialWebhookGuild:15 of +msgid "The partial guild's name." +msgstr "" + +#: discord.invite.PartialInviteGuild:32 +#: discord.webhook.async_.PartialWebhookGuild:9 +#: e194cbb46c32457d858d2e294d45765b of +msgid "The partial guild's ID." +msgstr "" + +#: 9aadc47d60734bb8abf3cf294402d4b7 discord.invite.PartialInviteGuild:38 of +msgid "The partial guild's verification level." +msgstr "" + +#: bdd12952c5c54de4ad633d5a56475d15 discord.invite.PartialInviteGuild:44 of +msgid "" +"A list of features the guild has. See :attr:`Guild.features` for more " +"information." +msgstr "" + +#: 58805ad02d6a468e80400ef9c583bd6e discord.invite.PartialInviteGuild:50 of +msgid "The partial guild's description." +msgstr "" + +#: 832a15deed5f4ef4b30ce4df2b19ee8d discord.invite.PartialInviteChannel:1 of +msgid "Represents a \"partial\" invite channel." +msgstr "" + +#: 95e9950220b84e359463a51ad286e6c9 discord.invite.PartialInviteChannel:10 +#: discord.widget.WidgetChannel:7 of +msgid "Checks if two partial channels are the same." +msgstr "" + +#: 30b235b76e1342cf941b30523684f372 discord.invite.PartialInviteChannel:14 +#: discord.widget.WidgetChannel:11 of +msgid "Checks if two partial channels are not the same." +msgstr "" + +#: discord.invite.PartialInviteChannel:18 discord.widget.WidgetChannel:15 +#: f9335d3f6f084e94a23c90b76421fca3 of +msgid "Return the partial channel's hash." +msgstr "" + +#: cf5680cc558b4f1c9ee058a815a6aa99 discord.invite.PartialInviteChannel:22 +#: discord.widget.WidgetChannel:19 of +msgid "Returns the partial channel's name." +msgstr "" + +#: 141d223702fe42af8e2c67e1fe220ad8 discord.invite.PartialInviteChannel:26 +#: discord.webhook.async_.PartialWebhookChannel:15 of +msgid "The partial channel's name." +msgstr "" + +#: 34fdd30888cc4a69a2ecff38e80c7735 discord.invite.PartialInviteChannel:32 +#: discord.webhook.async_.PartialWebhookChannel:9 of +msgid "The partial channel's ID." +msgstr "" + +#: discord.invite.PartialInviteChannel:38 f303ce62e1f14e0da28ca61198536e08 of +msgid "The partial channel's type." +msgstr "" + +#: b14920fd93004ab5816c641d6c994d31 discord.invite.PartialInviteChannel:40 of +msgid ":class:`ChannelType`" +msgstr "" + +#: bf4b576b58b64dbcaa30f9f34b305d1c discord.CategoryChannel.mention:1 +#: discord.ForumChannel.mention:1 discord.PartialInviteChannel.mention:1 +#: discord.StageChannel.mention:1 discord.TextChannel.mention:1 +#: discord.VoiceChannel.mention:1 discord.WidgetChannel.mention:1 of +msgid "The string that allows you to mention the channel." +msgstr "" + +#: d9cb26c43e2f4fdf8263a762822511b3 discord.CategoryChannel.created_at:1 +#: discord.ForumChannel.created_at:1 discord.GroupChannel.created_at:1 +#: discord.PartialInviteChannel.created_at:1 discord.StageChannel.created_at:1 +#: discord.TextChannel.created_at:1 discord.VoiceChannel.created_at:1 +#: discord.WidgetChannel.created_at:1 of +msgid "Returns the channel's creation time in UTC." +msgstr "" + +#: 6e1375d7315842f389240d361f9e940f discord.invite.Invite:1 of +msgid "Represents a Discord :class:`Guild` or :class:`abc.GuildChannel` invite." +msgstr "" + +#: 40c79e3afa054125ac51372fff62c627 discord.invite.Invite:10 of +msgid "Checks if two invites are equal." +msgstr "" + +#: 88ce1ecfb798467da639a3bf341c04a2 discord.invite.Invite:14 of +msgid "Checks if two invites are not equal." +msgstr "" + +#: discord.invite.Invite:18 f627201143cb4f289aa3fd1b82dd7a5f of +msgid "Returns the invite hash." +msgstr "" + +#: 812a6ee84f4046a699ba426c6add7d28 discord.invite.Invite:22 of +msgid "Returns the invite URL." +msgstr "" + +#: be54ec540e4d4166ad2b1edfaf5f7562 discord.invite.Invite:24 of +msgid "The following table illustrates what methods will obtain the attributes:" +msgstr "" + +#: 67b0891cfb804ad7b5cf90f89d770328 discord.invite.Invite:27 of +msgid "Method" +msgstr "" + +#: caff775708cd4876a15508a9fdb66328 discord.invite.Invite:29 of +msgid ":attr:`max_age`" +msgstr "" + +#: 888ee5b5c54841b18baa7f2ba1dfd8c2 discord.invite.Invite:29 +#: discord.invite.Invite:31 discord.invite.Invite:33 discord.invite.Invite:35 +#: discord.invite.Invite:37 of +msgid ":meth:`abc.GuildChannel.invites`\\, :meth:`Guild.invites`" +msgstr "" + +#: ad799b98576649d8802dcd295ebc0dd9 discord.invite.Invite:31 of +msgid ":attr:`max_uses`" +msgstr "" + +#: discord.invite.Invite:33 e0a962b6bbda4f739665deac7489d153 of +msgid ":attr:`created_at`" +msgstr "" + +#: 8d8febf96d094432b54a0b48f74bad39 discord.invite.Invite:35 of +msgid ":attr:`temporary`" +msgstr "" + +#: d4805f27f1dc4d7999b200935cb75e97 discord.invite.Invite:37 of +msgid ":attr:`uses`" +msgstr "" + +#: 8c30a6bf469647fba6e2394ee934abae discord.invite.Invite:39 of +msgid ":attr:`approximate_member_count`" +msgstr "" + +#: 38c5c5e52ebf42a8a131562a6bf58a86 discord.invite.Invite:39 +#: discord.invite.Invite:41 of +msgid ":meth:`Client.fetch_invite` with `with_counts` enabled" +msgstr "" + +#: discord.invite.Invite:41 e10dd807365640f1a2ec881e571ec9af of +msgid ":attr:`approximate_presence_count`" +msgstr "" + +#: d8f7449f7d3d4bc0893e0ee643fa117a discord.invite.Invite:43 of +msgid ":attr:`expires_at`" +msgstr "" + +#: 4ac46789b8f642ddaf4c5e54851c4dd7 discord.invite.Invite:43 of +msgid ":meth:`Client.fetch_invite` with `with_expiration` enabled" +msgstr "" + +#: b4a65c6404244f719d338f5e80b7a68f discord.invite.Invite:46 of +msgid "If it's not in the table above then it is available by all methods." +msgstr "" + +#: 71c850531d60478ebabc66051e813fdf discord.invite.Invite:50 of +msgid "" +"How long before the invite expires in seconds. A value of ``0`` indicates" +" that it doesn't expire." +msgstr "" + +#: 662de69e9fae4578bf4142bd3dc1d7bb discord.invite.Invite:57 of +msgid "The URL fragment used for the invite." +msgstr "" + +#: be8e6c9dd831487bb751f81d56d1a2cd discord.invite.Invite:63 of +msgid "" +"The guild the invite is for. Can be ``None`` if it's from a group direct " +"message." +msgstr "" + +#: b1392531abbf409a8e7c252b057ae900 discord.invite.Invite:65 of +msgid "" +"Optional[Union[:class:`Guild`, :class:`Object`, " +":class:`PartialInviteGuild`]]" +msgstr "" + +#: discord.invite.Invite:69 e5816f6ab311461f86b05afe960120d0 of +msgid "Indicates if the invite has been revoked." +msgstr "" + +#: discord.invite.Invite:75 e19f71ea88dd4ba38b5550b82e75abef of +msgid "An aware UTC datetime object denoting the time the invite was created." +msgstr "" + +#: 5d28782dd7694324949984de51047486 discord.invite.Invite:81 of +msgid "" +"Indicates that the invite grants temporary membership. If ``True``, " +"members who joined via this invite will be kicked upon disconnect." +msgstr "" + +#: a896b00f401f47b3bff014a4652f5d11 discord.invite.Invite:88 of +msgid "How many times the invite has been used." +msgstr "" + +#: 00069cbcc5e347768ef002d8f2f1bbb4 discord.invite.Invite:94 of +msgid "" +"How many times the invite can be used. A value of ``0`` indicates that it" +" has unlimited uses." +msgstr "" + +#: discord.invite.Invite:101 f5152bae14734569aeef4a6b6f207e59 of +msgid "The user who created the invite." +msgstr "" + +#: ../../docstring cc61dfae294c4579ba596a34ef3fa088 +#: discord.AuthorizingIntegrationOwners.user:4 discord.channel.DMChannel:27 +#: discord.channel.GroupChannel:43 discord.emoji.Emoji:76 +#: discord.integrations.IntegrationApplication:39 discord.invite.Invite:103 +#: discord.invite.Invite:147 discord.scheduled_events.ScheduledEvent:84 +#: discord.sticker.GuildSticker:60 of +msgid "Optional[:class:`User`]" +msgstr "" + +#: 092635739e83496eb3cfaf0b1e9893bb discord.invite.Invite:107 of +msgid "The approximate number of members in the guild." +msgstr "" + +#: 21544a9ae3414724afee94ec77100e81 discord.invite.Invite:113 of +msgid "" +"The approximate number of members currently active in the guild. This " +"includes idle, dnd, online, and invisible members. Offline members are " +"excluded." +msgstr "" + +#: 0fb015a916f84ff79a330f0846477afa discord.invite.Invite:120 of +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.Invite:129 f884e37b37a34004b7a60715f9c7e323 of +msgid "The channel the invite is for." +msgstr "" + +#: cc72df05282c45baa3c3a91d6478083c discord.invite.Invite:131 of +msgid "" +"Union[:class:`abc.GuildChannel`, :class:`Object`, " +":class:`PartialInviteChannel`]" +msgstr "" + +#: 39b0750e8cbf48ae839656f658244074 discord.invite.Invite:135 of +msgid "The type of target for the voice channel invite." +msgstr "" + +#: b032b0fb8cdb4d8f8c23635f64d87c28 discord.invite.Invite:139 of +msgid ":class:`InviteTarget`" +msgstr "" + +#: discord.invite.Invite:143 f6ce14dc542f41d58faf3343fe7e3588 of +msgid "The user whose stream to display for this invite, if any." +msgstr "" + +#: 1284111c547e490395ccd35e0a06b0e5 discord.invite.Invite:151 of +msgid "The embedded application the invite targets, if any." +msgstr "" + +#: discord.invite.Invite:155 e5acecac4ece457db47dac10f2bb7aea of +msgid "Optional[:class:`PartialAppInfo`]" +msgstr "" + +#: aa16b1be4bc549659e87c7c8bea28707 discord.invite.Invite:159 of +msgid "The scheduled event linked with the invite." +msgstr "" + +#: d78e636501ba4a9496c3e2d74742b9c7 discord.Invite.id:1 of +msgid "Returns the proper code portion of the invite." +msgstr "" + +#: c86c778cb8704643a0aff10ce58e44f7 discord.Invite.url:1 of +msgid "A property that retrieves the invite URL." +msgstr "" + +#: 8daafc92ded341cab14f98fbf27ae51f discord.invite.Invite.delete:3 of +msgid "Revokes the instant invite." +msgstr "" + +#: 85148c52c6af4d47a184d6dd44768251 discord.invite.Invite.delete:5 of +msgid "" +"You must have the :attr:`~Permissions.manage_channels` permission to do " +"this." +msgstr "" + +#: 441bb5982c4b41f9bbb8564a33e9f82a discord.invite.Invite.delete:8 of +msgid "The reason for deleting this invite. Shows up on the audit log." +msgstr "" + +#: 320594922ef34be8afcd2c84ca73a327 discord.invite.Invite.delete:11 of +msgid "You do not have permissions to revoke invites." +msgstr "" + +#: 27532139278643cca80692a6913ecc8d discord.invite.Invite.delete:12 of +msgid "The invite is invalid or expired." +msgstr "" + +#: discord.invite.Invite.delete:13 f5b462234a1447cbabc2f3d30423b54b of +msgid "Revoking the invite failed." +msgstr "" + +#: 0b28b765bed746be8b84b9c2bbebbbc5 discord.invite.Invite.set_scheduled_event:1 +#: of +msgid "Links the given scheduled event to this invite." +msgstr "" + +#: 40b1ead2f26c44be9f8d235e30913fa7 discord.invite.Invite.set_scheduled_event:5 +#: of +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 "" + +#: 7ed4e3948e6d45278da021e5a830aeb8 +#: discord.invite.Invite.set_scheduled_event:13 of +msgid "The scheduled event object to link." +msgstr "" + +#: ../../api/models.rst:207 b0b4dba2274847c2bc1e96752ddd4675 +msgid "Role" +msgstr "" + +#: 14f0b3819e864b7a89db5d4552ee08d8 discord.role.Role:1 of +msgid "Represents a Discord role in a :class:`Guild`." +msgstr "" + +#: 76cac8abf7bf49a2b8a67fccd3be816a discord.role.Role:7 of +msgid "Checks if two roles are equal." +msgstr "" + +#: b92755862c7d4471bd1889e2ba7981ec discord.role.Role:11 of +msgid "Checks if two roles are not equal." +msgstr "" + +#: 436f1560b791441cac322a7967adad6c discord.role.Role:15 of +msgid "Checks if a role is higher than another in the hierarchy." +msgstr "" + +#: cd79ad1c57ef40f7bba566449bc33b61 discord.role.Role:19 of +msgid "Checks if a role is lower than another in the hierarchy." +msgstr "" + +#: c1720665fb4345feba29535022d8b9d0 discord.role.Role:23 of +msgid "Checks if a role is higher or equal to another in the hierarchy." +msgstr "" + +#: 5885ab2ad4294d468d632b657112f8b5 discord.role.Role:27 of +msgid "Checks if a role is lower or equal to another in the hierarchy." +msgstr "" + +#: 244e8fd76d424931a3d287e634510aff discord.role.Role:31 of +msgid "Return the role's hash." +msgstr "" + +#: 0cb4be6ef3dc4b808045712f1dbd5e6e discord.role.Role:35 of +msgid "Returns the role's name." +msgstr "" + +#: 5d81164f7c4c4823aff92d0c6d7d5050 discord.role.Role:39 of +msgid "The ID for the role." +msgstr "" + +#: 511691ba37f34cbbbe377481dcbd99bd discord.role.Role:45 of +msgid "The name of the role." +msgstr "" + +#: 31505115fa5a44068bab84354a5cd954 discord.role.Role:51 of +msgid "The guild the role belongs to." +msgstr "" + +#: 62642a7712b54bd39f19c1ce29d2e5c4 discord.role.Role:57 of +msgid "Indicates if the role will be displayed separately from other members." +msgstr "" + +#: 5f7db28911cd408096024e3b849cb7cc discord.role.Role:63 of +msgid "" +"The position of the role. This number is usually positive. The bottom " +"role has a position of 0." +msgstr "" + +#: 6d87eb7337744266b5b769b4d5eb238f discord.role.Role:68 of +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 "" + +#: 71708c2052ef460cbf50e18eff7472ff discord.role.Role:78 of +msgid "" +"Indicates if the role is managed by the guild through some form of " +"integrations such as Twitch." +msgstr "" + +#: b9bafa1eea5a42449a950ef3b3948003 discord.role.Role:85 of +msgid "Indicates if the role can be mentioned by users." +msgstr "" + +#: 90292a8451094a81b831a50845ab0581 discord.role.Role:91 of +msgid "The role tags associated with this role." +msgstr "" + +#: ce68cf07f32542ee887cbfe498cd4506 discord.role.Role:93 of +msgid "Optional[:class:`RoleTags`]" +msgstr "" + +#: 6b477dc220bf4cd0affb1801794c7c46 discord.role.Role:97 of +msgid "" +"The role's unicode emoji. Only available to guilds that contain " +"``ROLE_ICONS`` in :attr:`Guild.features`." +msgstr "" + +#: discord.role.Role:106 fa704dc55e8b4bc89b983325045fb26e of +msgid "Extra attributes of the role." +msgstr "" + +#: 235c07739380495f822049acb2f71763 discord.role.Role:110 of +msgid ":class:`RoleFlags`" +msgstr "" + +#: discord.role.Role.is_default:1 f8b5d7e6df82406bb4c5f9cfdb6dc7cb of +msgid "Checks if the role is the default role." +msgstr "" + +#: abaa9e6454b3434897bdb6657fb9c73a discord.role.Role.is_bot_managed:1 of +msgid "" +"Whether the role is associated with a bot. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 57a256a1d1ec47d8bd23a3f5a026fde3 discord.role.Role.is_premium_subscriber:1 +#: of +msgid "" +"Whether the role is the premium subscriber, AKA \"boost\", role for the " +"guild. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: adc96808a0f849419bffb0291dfcf2e1 discord.role.Role.is_integration:1 of +msgid "" +"Whether the role is managed by an integration. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: c2e51432847743fba93caa703ec89c5d discord.role.Role.is_assignable:1 of +msgid "" +"Whether the role is able to be assigned or removed by the bot. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 7902c3504ac24ac0a24155bd9bcbce40 discord.Role.permissions:1 of +msgid "Returns the role's permissions." +msgstr "" + +#: 4a391466dd224b78895dc3b4dc98a713 discord.Role.colour:1 of +msgid "Returns the role colour. An alias exists under ``color``." +msgstr "" + +#: discord.Role.color:1 fa84130cdb2e41b9aeabc2461ce3e03f of +msgid "Returns the role color. An alias exists under ``colour``." +msgstr "" + +#: 0bc0e2c3149a4903900a6cc2688c0f81 discord.Role.created_at:1 of +msgid "Returns the role's creation time in UTC." +msgstr "" + +#: 5c6d4251d1054c46b5866e2562db0ec8 discord.Role.mention:1 of +msgid "Returns a string that allows you to mention a role." +msgstr "" + +#: 43e2f1a35d6542c5b9bcabb86ce49a1f discord.Role.members:1 of +msgid "Returns all the members with this role." +msgstr "" + +#: discord.Role.icon:1 f550271db031424d9bb95b4b4c6b3dfa of +msgid "Returns the role's icon asset, if available." +msgstr "" + +#: 6a0db6cfac2441b6b52b131acdc42943 discord.role.Role.edit:3 of +msgid "Edits the role." +msgstr "" + +#: 1342d2d0aed64ae7ba75ee42534a7a8b discord.role.Role.delete:5 +#: discord.role.Role.edit:5 of +msgid "" +"You must have the :attr:`~Permissions.manage_roles` permission to use " +"this." +msgstr "" + +#: discord.role.Role.edit:13 e453bb534cfc463fb008712c93126d97 of +msgid "" +"Edits are no longer in-place, the newly edited role is returned instead. " +"Added ``icon`` and ``unicode_emoji``." +msgstr "" + +#: b13aa6c81fc8460b8170b67aca970828 discord.role.Role.edit:18 of +msgid "The new role name to change to." +msgstr "" + +#: ca4744954a454ba08c142db3547c4ee5 discord.role.Role.edit:21 of +msgid "The new permissions to change to." +msgstr "" + +#: 57f0dcf8c8a84faf89677dc7c270c68a discord.role.Role.edit:24 of +msgid "The new colour to change to. (aliased to color as well)" +msgstr "" + +#: discord.role.Role.edit:27 e9916faa46634b49ad0598b3084eaea2 of +msgid "Indicates if the role should be shown separately in the member list." +msgstr "" + +#: c4bff8c51bfe4f7b8d4f5211f9c79a79 discord.role.Role.edit:30 of +msgid "Indicates if the role should be mentionable by others." +msgstr "" + +#: 6d9bace9d861488894fc85bfcd50b3dc discord.role.Role.edit:33 of +msgid "" +"The new role's position. This must be below your top role's position, or " +"it will fail." +msgstr "" + +#: abeffd1a802842c2a6493224e6f02d2b discord.role.Role.edit:37 of +msgid "The reason for editing this role. Shows up on the audit log." +msgstr "" + +#: bd9f0feaf75b4b3f8587fd19981f6ae2 discord.role.Role.edit:40 of +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 "" + +#: 4a9a00d62a984236a0ad4aefa11e685f discord.role.Role.edit:50 of +msgid "The newly edited role." +msgstr "" + +#: 726a634f83fd43c6bacebf07a8dcfd2b discord.role.Role.edit:53 of +msgid "You do not have permissions to change the role." +msgstr "" + +#: b2728a1bd3684723b2562070971b253b discord.role.Role.edit:54 of +msgid "Editing the role failed." +msgstr "" + +#: 2ef1a6690c73422cb2edead785d1e265 discord.role.Role.edit:55 of +msgid "" +"An invalid position was given or the default role was asked to be " +"moved." +msgstr "" + +#: b1c68744b35b41d7b9fc7ad838756aff discord.role.Role.delete:3 of +msgid "Deletes the role." +msgstr "" + +#: 09634e2e93d24ddabd7e058a560ff8fa discord.role.Role.delete:9 of +msgid "The reason for deleting this role. Shows up on the audit log." +msgstr "" + +#: 8c1678106db14993b38b64ab433391a4 discord.role.Role.delete:12 of +msgid "You do not have permissions to delete the role." +msgstr "" + +#: 3d7c30b23b9c4b35ade1e6a1e0bd2d73 discord.role.Role.delete:13 of +msgid "Deleting the role failed." +msgstr "" + +#: 3ce6d748ce74481dbd88eaa208d8d38c discord.role.RoleTags:1 of +msgid "Represents tags on a role." +msgstr "" + +#: discord.role.RoleTags:3 f055b2214fc846c69dafe51a7828d5c9 of +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 "" + +#: 7b96a689baf942ce8c8d44c556ca1315 discord.role.RoleTags:6 of +msgid "" +"While this can be accessed, a useful interface is also provided in the " +":class:`Role` and :class:`Guild` classes as well." +msgstr "" + +#: cefbfbe8367243c9873b7f3e6efd68cf discord.role.RoleTags:13 of +msgid "The bot's user ID that manages this role." +msgstr "" + +#: 05a238fa0ee54228891c9067f660ce29 discord.role.RoleTags:19 of +msgid "The integration ID that manages the role." +msgstr "" + +#: 32f901508cfe434eaa834608ef0a2813 discord.role.RoleTags.is_bot_managed:1 of +msgid "Whether the role is associated with a bot." +msgstr "" + +#: 99c432602c464398bf8657a5d7720033 +#: discord.role.RoleTags.is_premium_subscriber:1 of +msgid "" +"Whether the role is the premium subscriber, AKA \"boost\", role for the " +"guild." +msgstr "" + +#: 8cd2b27c79a1497d9fe2ed01efa457c8 discord.role.RoleTags.is_integration:1 of +msgid "Whether the role is managed by an integration." +msgstr "" + +#: ../../api/models.rst:220 501c6b29607b4c55ace35858ceb2e513 +msgid "Scheduled Event" +msgstr "" + +#: 10e0de9eb9274b9a90009e1d986359bb discord.scheduled_events.ScheduledEvent:1 +#: of +msgid "Represents a Discord Guild Scheduled Event." +msgstr "" + +#: 338d7d42898a41c1aa76bae4170d62d5 discord.scheduled_events.ScheduledEvent:7 +#: of +msgid "Checks if two scheduled events are equal." +msgstr "" + +#: c94e50d69c844f7ab6df2b14c4dfd011 discord.scheduled_events.ScheduledEvent:11 +#: of +msgid "Checks if two scheduled events are not equal." +msgstr "" + +#: 63533c1674a54dd38883de86d857fadd discord.scheduled_events.ScheduledEvent:15 +#: of +msgid "Returns the scheduled event's hash." +msgstr "" + +#: discord.scheduled_events.ScheduledEvent:19 e6e8056199704fb19bebfa19fbd84a0d +#: of +msgid "Returns the scheduled event's name." +msgstr "" + +#: 1dfe359919ac4a94a5753514a83b8ee4 discord.scheduled_events.ScheduledEvent:25 +#: of +msgid "The guild where the scheduled event is happening." +msgstr "" + +#: 7db26903f71241b8b5d862be13720ff4 discord.scheduled_events.ScheduledEvent:43 +#: of +msgid "The time when the event will start" +msgstr "" + +#: 4a373162831b42a280178408697638a0 discord.scheduled_events.ScheduledEvent:49 +#: of +msgid "The time when the event is supposed to end." +msgstr "" + +#: 7fa115df6d194b9eaf2c37b4960c54fb discord.scheduled_events.ScheduledEvent:55 +#: of +msgid "The status of the scheduled event." +msgstr "" + +#: beaedb41ec2840239f556ef2b031ce7c discord.scheduled_events.ScheduledEvent:57 +#: of +msgid ":class:`ScheduledEventStatus`" +msgstr "" + +#: 06f7d4894f104c109e7f423cb180b019 discord.scheduled_events.ScheduledEvent:61 +#: of +msgid "" +"The location of the event. See :class:`ScheduledEventLocation` for more " +"information." +msgstr "" + +#: 5e1cf8c0e6574b238759f48a2beb96bd discord.scheduled_events.ScheduledEvent:64 +#: of +msgid ":class:`ScheduledEventLocation`" +msgstr "" + +#: 0e52f18181e548e2b175255bd6ce27dd discord.scheduled_events.ScheduledEvent:68 +#: of +msgid "" +"The number of users that have marked themselves as interested in the " +"event." +msgstr "" + +#: dceb5b236844473e86a48e3ee1e9fc9e discord.scheduled_events.ScheduledEvent:74 +#: of +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 "" + +#: 5ccd05fa01e64cf09322dd166b85f5c5 discord.scheduled_events.ScheduledEvent:82 +#: of +msgid "The resolved user object of who created the event." +msgstr "" + +#: 2dced7676e174ab0848be9afd308410a discord.scheduled_events.ScheduledEvent:88 +#: of +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 "" + +#: 4ea359d726ae4aa28a9dbe385e18693d discord.scheduled_events.ScheduledEvent:92 +#: of +msgid ":class:`ScheduledEventPrivacyLevel`" +msgstr "" + +#: 739d9ebd38654aa199a2ca98c2ac31b5 discord.ScheduledEvent.created_at:1 of +msgid "Returns the scheduled event's creation time in UTC." +msgstr "" + +#: 249062afc1644255b779d2c32eb3606f discord.ScheduledEvent.interested:1 of +msgid "An alias to :attr:`.subscriber_count`" +msgstr "" + +#: a6c5206b2783448885037dd254cfcc5a discord.ScheduledEvent.url:1 of +msgid "The url to reference the scheduled event." +msgstr "" + +#: 5438a938169f4597aa1a5242f21d12e2 discord.ScheduledEvent.cover:1 +#: discord.ScheduledEvent.image:1 of +msgid "Returns the scheduled event cover image asset, if available." +msgstr "" + +#: 5374a22bf91b40c59814524886eb6790 discord.ScheduledEvent.cover:3 of +msgid "Use the :attr:`image` property instead." +msgstr "" + +#: 0f0bbd18446341ed961bf49012e47619 +#: discord.scheduled_events.ScheduledEvent.edit:3 of +msgid "Edits the Scheduled Event's data" +msgstr "" + +#: 0825ab9a3ac7430aaf4fbebb5f494030 +#: discord.scheduled_events.ScheduledEvent.edit:5 of +msgid "" +"All parameters are optional unless ``location.type`` is " +":attr:`ScheduledEventLocationType.external`, then ``end_time`` is " +"required." +msgstr "" + +#: b05ee511b9f641ca968da622ca3cff17 +#: discord.scheduled_events.ScheduledEvent.edit:9 of +msgid "Will return a new :class:`.ScheduledEvent` object if applicable." +msgstr "" + +#: 9240e0b449764b00832cc50af78f4c02 +#: discord.scheduled_events.ScheduledEvent.edit:12 of +msgid "The new name of the event." +msgstr "" + +#: 5466aa4697994643ad1e42485bcb4530 +#: discord.scheduled_events.ScheduledEvent.edit:15 of +msgid "The new description of the event." +msgstr "" + +#: c550fa6d58a24a3c8eaf6c88e9d288a2 +#: discord.scheduled_events.ScheduledEvent.edit:18 of +msgid "The location of the event." +msgstr "" + +#: 012b9b8518bf489b8b78ea88133fc122 +#: discord.scheduled_events.ScheduledEvent.edit:21 of +msgid "" +"The status of the event. It is recommended, however, to use " +":meth:`.start`, :meth:`.complete`, and :meth:`cancel` to edit statuses " +"instead." +msgstr "" + +#: cc71d9959291468e8b68b66491f03ef4 +#: discord.scheduled_events.ScheduledEvent.edit:26 of +msgid "The new starting time for the event." +msgstr "" + +#: 2918c259d7114424aba68bcb28771575 +#: discord.scheduled_events.ScheduledEvent.edit:29 of +msgid "The new ending time of the event." +msgstr "" + +#: cdfb40b39a994b05a328decf47ec528d +#: discord.scheduled_events.ScheduledEvent.edit:40 +#: discord.scheduled_events.ScheduledEvent.edit:43 of +msgid "The cover image of the scheduled event." +msgstr "" + +#: discord.scheduled_events.ScheduledEvent.edit:43 +#: efc47c7c1d6d46ecb3948046ef60c88b of +msgid "" +"The cover image of the scheduled event. .. deprecated:: 2.7 Use the " +"`image` argument instead." +msgstr "" + +#: 1d36d39c01a24d3f9ecd5093343f501c +#: discord.scheduled_events.ScheduledEvent.edit:45 of +msgid "Use the `image` argument instead." +msgstr "" + +#: discord.scheduled_events.ScheduledEvent.edit:49 +#: ed2a50594a6c4c67b633ce1f269cae09 of +msgid "" +"The newly updated scheduled event object. This is only returned when " +"certain fields are updated." +msgstr "" + +#: 29af72e8c0344ccb8418d3680362e11f 8ea327279d484e47b555b10b24fe81ae +#: discord.scheduled_events.ScheduledEvent.cancel:14 +#: discord.scheduled_events.ScheduledEvent.complete:14 +#: discord.scheduled_events.ScheduledEvent.edit:51 +#: discord.scheduled_events.ScheduledEvent.start:14 +#: discord.stage_instance.StageInstance:59 of +msgid "Optional[:class:`.ScheduledEvent`]" +msgstr "" + +#: discord.scheduled_events.ScheduledEvent.delete:3 +#: ff7f51d150fb4766815a206e71c0dec7 of +msgid "Deletes the scheduled event." +msgstr "" + +#: 4958b434b9cb4d289319db632ca44181 +#: discord.scheduled_events.ScheduledEvent.start:3 of +msgid "Starts the scheduled event. Shortcut from :meth:`.edit`." +msgstr "" + +#: 0c1c2e3e84764a568b297d90d0b75c5c +#: discord.scheduled_events.ScheduledEvent.cancel:7 +#: discord.scheduled_events.ScheduledEvent.start:7 of +msgid "" +"This method can only be used if :attr:`.status` is " +":attr:`ScheduledEventStatus.scheduled`." +msgstr "" + +#: a64cb72cf711477f9207ff71bbd6fe6f +#: discord.scheduled_events.ScheduledEvent.cancel:13 +#: discord.scheduled_events.ScheduledEvent.complete:13 +#: discord.scheduled_events.ScheduledEvent.start:13 of +msgid "The newly updated scheduled event object." +msgstr "" + +#: 8cae4739d8e44a1fab241670b0bf776d +#: discord.scheduled_events.ScheduledEvent.complete:3 of +msgid "Ends/completes the scheduled event. Shortcut from :meth:`.edit`." +msgstr "" + +#: d4a3e8de49d348b89d7b8477fd4bf250 +#: discord.scheduled_events.ScheduledEvent.complete:7 of +msgid "" +"This method can only be used if :attr:`.status` is " +":attr:`ScheduledEventStatus.active`." +msgstr "" + +#: 9914bb7334d24671a216557961e06dda +#: discord.scheduled_events.ScheduledEvent.cancel:3 of +msgid "Cancels the scheduled event. Shortcut from :meth:`.edit`." +msgstr "" + +#: 68731f25d3ac41da925136d5120ea267 +#: discord.scheduled_events.ScheduledEvent.subscribers:1 of +msgid "" +"Returns an :class:`AsyncIterator` representing the users or members " +"subscribed to the event." +msgstr "" + +#: 0918ed64d7194f8c99486ce6f9bbb63a +#: discord.scheduled_events.ScheduledEvent.subscribers:3 of +msgid "" +"The ``after`` and ``before`` parameters must represent member or user " +"objects and meet the :class:`abc.Snowflake` abc." +msgstr "" + +#: 650d1964db3d415184de61f1f7b17d35 +#: discord.scheduled_events.ScheduledEvent.subscribers:8 of +msgid "" +"Even is ``as_member`` is set to ``True``, if the user is outside the " +"guild, it will be a :class:`User` object." +msgstr "" + +#: 5402be59de4d467f84400c7be1993911 +#: discord.scheduled_events.ScheduledEvent.subscribers:12 of +msgid "The maximum number of results to return." +msgstr "" + +#: discord.scheduled_events.ScheduledEvent.subscribers:15 +#: ecd0ce1df77242cb97d8dc7cceec24b4 of +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 "" + +#: b8de116ec76b417bb07bca3005600f2c +#: discord.scheduled_events.ScheduledEvent.subscribers:20 of +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 "" + +#: c6856b5aac894500b8b84fcc31b1b38a +#: discord.scheduled_events.ScheduledEvent.subscribers:25 of +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 "" + +#: 8671805c66244008905e0ebf131d47f0 +#: discord.scheduled_events.ScheduledEvent.subscribers:30 of +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 "" + +#: aa2b527516c44c569aff79684995a1ba +#: discord.scheduled_events.ScheduledEvent.subscribers:34 of +msgid "Fetching the subscribed users failed." +msgstr "" + +#: 96236c596b12476284b35f3f352e6df6 +#: discord.scheduled_events.ScheduledEvent.subscribers:35 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ScheduledEventSubscribersIterator\\``" +msgstr "" + +#: bd1bc81cad8b496aa9b9a5e90585f5b5 +#: discord.scheduled_events.ScheduledEvent.subscribers:49 of +msgid "Getting members instead of user objects: ::" +msgstr "" + +#: discord.scheduled_events.ScheduledEventLocation:1 +#: ef94d3ad86b54127b54e63206f010f5d of +msgid "Represents a scheduled event's location." +msgstr "" + +#: 9aa9d7eadef24ce28f0064e5b979e562 +#: discord.scheduled_events.ScheduledEventLocation:3 of +msgid "" +"Setting the ``value`` to its corresponding type will set the location " +"type automatically:" +msgstr "" + +#: 7bc32d48f49d4be99491c05be1a98851 +#: discord.scheduled_events.ScheduledEventLocation:6 of +msgid "Type of Input" +msgstr "" + +#: 29525c9aa20c4dda9afbbf810b4096fd +#: discord.scheduled_events.ScheduledEventLocation:6 of +msgid "Location Type" +msgstr "" + +#: df99d5de02784c35a91a783590e60dd9 +#: discord.scheduled_events.ScheduledEventLocation:8 of +msgid ":class:`StageChannel` :class:`VoiceChannel` :class:`str`" +msgstr "" + +#: d87e2ab2c93848258ff304f6fcc46ca4 +#: discord.scheduled_events.ScheduledEventLocation:8 of +msgid "" +":attr:`ScheduledEventLocationType.stage_instance` " +":attr:`ScheduledEventLocationType.voice` " +":attr:`ScheduledEventLocationType.external`" +msgstr "" + +#: d242449192c44c94af25f194a83e40ae +#: discord.scheduled_events.ScheduledEventLocation:17 of +msgid "The actual location of the scheduled event." +msgstr "" + +#: 55879a88833246c9ae72fb9d33df5445 +#: discord.scheduled_events.ScheduledEventLocation:19 of +msgid "" +"Union[:class:`str`, :class:`StageChannel`, :class:`VoiceChannel`, " +":class:`Object`]" +msgstr "" + +#: 3dce7682f6a949d98c73d003368d6139 +#: discord.scheduled_events.ScheduledEventLocation:23 of +msgid "The type of location." +msgstr "" + +#: da80a8bae0e64be2bb5e162a771b6a93 +#: discord.scheduled_events.ScheduledEventLocation:25 of +msgid ":class:`ScheduledEventLocationType`" +msgstr "" + +#: ../../api/models.rst:231 bd728eaba2b94cb59255cd2be9d0a4a5 +msgid "Welcome Screen" +msgstr "" + +#: 3a9a9b015d3843bbb893b7756919f4f3 discord.welcome_screen.WelcomeScreen:1 of +msgid "Represents the welcome screen of a guild." +msgstr "" + +#: 1d1b937ea9854e96a28ef28316e74f1e discord.welcome_screen.WelcomeScreen:7 of +msgid "The description text displayed on the welcome screen." +msgstr "" + +#: a6c019bb099f4ef5a5dffc399c47e5d0 discord.welcome_screen.WelcomeScreen:13 of +msgid "A list of channels displayed on welcome screen." +msgstr "" + +#: 29ebb991339244c98e862232952bed14 discord.welcome_screen.WelcomeScreen:15 of +msgid "List[:class:`WelcomeScreenChannel`]" +msgstr "" + +#: ab609b9ab2954498ac49f8cbf81a92f1 discord.WelcomeScreen.enabled:1 of +msgid "Indicates whether the welcome screen is enabled or not." +msgstr "" + +#: 4bf7a0f55663483493297c10bc4d1fe7 discord.WelcomeScreen.guild:1 of +msgid "The guild this welcome screen belongs to." +msgstr "" + +#: cc0bf1a0c7e84527bf801eed13078bc4 discord.welcome_screen.WelcomeScreen.edit:3 +#: of +msgid "Edits the welcome screen." +msgstr "" + +#: 6f82ed1675044aa699bde2749a2ab5e7 +#: discord.welcome_screen.WelcomeScreen.edit:22 of +msgid "Example" +msgstr "" + +#: discord.welcome_screen.WelcomeScreen.edit:38 +#: e31a24db1a4e4e9391ec0fd6872992ac of +msgid "" +"Welcome channels can only accept custom emojis if " +":attr:`~Guild.premium_tier` is level 2 or above." +msgstr "" + +#: d6341ad4205a4369988579907602c902 +#: discord.welcome_screen.WelcomeScreenChannel:1 of +msgid "Represents a welcome channel displayed on :class:`WelcomeScreen`" +msgstr "" + +#: 5c9f94dfbcaf49beb2c47bb0f81fe100 +#: discord.welcome_screen.WelcomeScreenChannel:7 of +msgid "The channel that is being referenced." +msgstr "" + +#: 8d53c1fea1ed4bc4b42468d6682605b5 +#: discord.welcome_screen.WelcomeScreenChannel:9 of +msgid ":class:`abc.Snowflake`" +msgstr "" + +#: d1574884bdf44266b4c3364b6f302c7a +#: discord.welcome_screen.WelcomeScreenChannel:13 of +msgid "The description of the channel that is shown on the welcome screen." +msgstr "" + +#: db5cf07c9c1c4763bb1b294c64f3d247 +#: discord.welcome_screen.WelcomeScreenChannel:19 of +msgid "The emoji of the channel that is shown on welcome screen." +msgstr "" + +#: ../../api/models.rst:244 e2ae072aa4324f3fb90878fc5cfbd742 +msgid "Onboarding" +msgstr "" + +#: discord.onboarding.Onboarding:1 f51c0b9e44d241c2a01c5cb93e225f1e of +msgid "Represents the onboarding flow for a guild." +msgstr "" + +#: 271b317948ee4af9ac01057fa6097d2e discord.onboarding.Onboarding:7 of +msgid "A list of prompts displayed in the onboarding flow." +msgstr "" + +#: 53d298867f0c486d98071115179a949f discord.onboarding.Onboarding:9 of +msgid "List[:class:`OnboardingPrompt`]" +msgstr "" + +#: 96c4cd419cd3476793dc4c22dc0b8175 discord.onboarding.Onboarding:13 of +msgid "Whether onboarding is enabled in the guild." +msgstr "" + +#: b3abc10736334f98852bb312a0b4df26 discord.onboarding.Onboarding:19 of +msgid "The current onboarding mode." +msgstr "" + +#: dc0e91b6bea547bb823242eb1af6537d discord.onboarding.Onboarding:21 of +msgid ":class:`OnboardingMode`" +msgstr "" + +#: ../../docstring ac0131664589453fb988bfb2f8a3e052 +#: discord.Onboarding.default_channels:1 of +msgid "The channels that members are opted into by default." +msgstr "" + +#: d20857ae9f4f49299f0af0e6a13c5f15 discord.onboarding.Onboarding.edit:3 of +msgid "Edits this onboarding flow." +msgstr "" + +#: 2d2ecabe5aee4e3596e250d144f1b17f discord.onboarding.Onboarding.edit:23 of +msgid "The reason for editing this onboarding flow. Shows up on the audit log." +msgstr "" + +#: 7d4d8143818740ffbfe9e04ffa131da6 discord.onboarding.Onboarding.add_prompt:3 +#: of +msgid "Adds a new onboarding prompt." +msgstr "" + +#: 0dd701dcf1ed49b09e55f614e36c0301 discord.onboarding.Onboarding.add_prompt:9 +#: discord.onboarding.OnboardingPrompt:13 of +msgid "The type of onboarding prompt." +msgstr "" + +#: 6700d1737c4640a1a5e0c6c939a0fa53 discord.onboarding.Onboarding.add_prompt:12 +#: discord.onboarding.OnboardingPrompt:19 of +msgid "The prompt's title." +msgstr "" + +#: 12fc1d61e1c04c398375cfcebedcf0be discord.onboarding.Onboarding.add_prompt:15 +#: discord.onboarding.OnboardingPrompt:25 of +msgid "The list of options available in the prompt." +msgstr "" + +#: 70201762314944bdbac8ef5b336e95a7 discord.onboarding.Onboarding.add_prompt:18 +#: discord.onboarding.OnboardingPrompt:31 of +msgid "Whether the user is limited to selecting one option on this prompt." +msgstr "" + +#: c3b4464213de424f9c6a0efe01a7ad89 discord.onboarding.Onboarding.add_prompt:21 +#: discord.onboarding.OnboardingPrompt:37 of +msgid "Whether the user is required to answer this prompt." +msgstr "" + +#: 736b84d05e0a460ca50bbea976a37066 discord.onboarding.Onboarding.add_prompt:24 +#: discord.onboarding.OnboardingPrompt:43 of +msgid "Whether this prompt is displayed in the initial onboarding flow." +msgstr "" + +#: d14ad3d6830b490ca80590d0877dd87a discord.onboarding.Onboarding.add_prompt:27 +#: of +msgid "The reason for adding this prompt. Shows up on the audit log." +msgstr "" + +#: 5a0236baae0848e6b052bb23a9d0afc0 +#: discord.onboarding.Onboarding.append_prompt:3 of +msgid "Append an onboarding prompt onto this flow." +msgstr "" + +#: b4c7b2ff81fc46aaaa37979ad8eb246a +#: discord.onboarding.Onboarding.append_prompt:9 of +msgid "The onboarding prompt to append." +msgstr "" + +#: 8564639152384b80938ce5ca87315fb2 +#: discord.onboarding.Onboarding.append_prompt:12 of +msgid "The reason for appending this prompt. Shows up on the audit log." +msgstr "" + +#: 975dd453a349453f9b0b86b8a4300162 discord.onboarding.Onboarding.get_prompt:3 +#: of +msgid "Get an onboarding prompt with the given ID." +msgstr "" + +#: 16e168dd301b427b842e30432a032d54 discord.onboarding.Onboarding.get_prompt:6 +#: of +msgid "The ID of the prompt to get." +msgstr "" + +#: 2327423e92d74575b26527572486abe2 discord.onboarding.Onboarding.get_prompt:9 +#: of +msgid "The matching prompt, or None if it didn't exist." +msgstr "" + +#: 750e3a157b1e43b8a91675c7fbf92d5e discord.onboarding.Onboarding.get_prompt:10 +#: of +msgid ":class:`OnboardingPrompt`" +msgstr "" + +#: de814b3d090c4b76828a46c8f937f906 +#: discord.onboarding.Onboarding.delete_prompt:3 of +msgid "Delete an onboarding prompt with the given ID." +msgstr "" + +#: discord.onboarding.Onboarding.delete_prompt:9 +#: f972e03f78734bd890086b0e3e25cd2a of +msgid "The ID of the prompt to delete." +msgstr "" + +#: cdcf43e9ffdf4c77952652485c2867e2 +#: discord.onboarding.Onboarding.delete_prompt:12 of +msgid "The reason for deleting this prompt. Shows up on the audit log." +msgstr "" + +#: 09d52410084d43a39931d71b0da0e2c2 +#: discord.onboarding.Onboarding.delete_prompt:18 of +msgid "No prompt with this ID exists." +msgstr "" + +#: discord.onboarding.OnboardingPrompt:1 e9bbcc00172d4571aeb8a1aaa2fcffcc of +msgid "Represents an onboarding prompt displayed in :class:`Onboarding`." +msgstr "" + +#: 40574c40da6a4ed6beca51ba233bead3 discord.onboarding.OnboardingPrompt:7 of +msgid "The id of the prompt." +msgstr "" + +#: 685b6eedf1484c94aeea4dff12247f40 discord.onboarding.OnboardingPrompt:15 of +msgid ":class:`PromptType`" +msgstr "" + +#: 83dacb7ae96c43a4b4917f49fb6e496b discord.onboarding.OnboardingPrompt:27 of +msgid "List[:class:`PromptOption`]" +msgstr "" + +#: 4512d47250fd4664bc1928c5050aabf3 discord.onboarding.PromptOption:1 of +msgid "" +"Represents an onboarding prompt option displayed in " +":class:`OnboardingPrompt`." +msgstr "" + +#: 5d260ad66d5746919fedb99cc3ebaeb1 discord.onboarding.PromptOption:7 of +msgid "The id of the prompt option." +msgstr "" + +#: 39216b8c9a634b2fa67406bbd8a8f7e3 discord.onboarding.PromptOption:13 of +msgid "The channels assigned to the user when they select this option." +msgstr "" + +#: 6efdd1d676b6498ea7a7b933c7a4fcc8 discord.onboarding.PromptOption:15 +#: discord.onboarding.PromptOption:21 of +msgid "List[:class:`Snowflake`]" +msgstr "" + +#: bf357dbe14854415b2edcde082511a2d discord.onboarding.PromptOption:19 of +msgid "The roles assigned to the user when they select this option." +msgstr "" + +#: bea61aebacbf44cd938740a0f103f3de discord.onboarding.PromptOption:25 of +msgid "The emoji displayed with the option." +msgstr "" + +#: 201b7a7c20b7462080d7ef962f18c186 discord.onboarding.PromptOption:27 of +msgid "Union[:class:`Emoji`, :class:`PartialEmoji`]" +msgstr "" + +#: d5adad86add84b7980b126a6cd5977bf discord.onboarding.PromptOption:31 of +msgid "The option's title." +msgstr "" + +#: 1e50bdeb3b6748af981acd85600a1abb discord.onboarding.PromptOption:37 of +msgid "The option's description." +msgstr "" + +#: ../../api/models.rst:262 336df85a4c564d0e9187eaaab07e05fc +msgid "Integration" +msgstr "" + +#: 1785bfbb2cbe44d7b237f2f2c73a769b discord.integrations.Integration:1 of +msgid "Represents a guild integration." +msgstr "" + +#: 9796bc5b9de64095a1c6c4b1297d91e1 discord.integrations.BotIntegration:13 +#: discord.integrations.Integration:13 +#: discord.integrations.StreamIntegration:13 of +msgid "The integration name." +msgstr "" + +#: discord.integrations.BotIntegration:19 discord.integrations.Integration:19 +#: discord.integrations.StreamIntegration:19 ee79d1da943c4e048638ebf74603e904 +#: of +msgid "The guild of the integration." +msgstr "" + +#: a15dc03a69304c0ea67001bdcc74eeea discord.integrations.BotIntegration:25 +#: discord.integrations.Integration:25 +#: discord.integrations.StreamIntegration:25 of +msgid "The integration type (i.e. Twitch)." +msgstr "" + +#: 7bd5e756a20541969248ddb62fce3937 discord.integrations.BotIntegration:31 +#: discord.integrations.Integration:31 +#: discord.integrations.StreamIntegration:31 of +msgid "Whether the integration is currently enabled." +msgstr "" + +#: d3600becb7c747b58990065d4e6a10e1 discord.integrations.Integration:37 of +msgid "The account linked to this integration." +msgstr "" + +#: 21d3b7a2c2794cbb899e0d71e058a150 discord.integrations.BotIntegration:45 +#: discord.integrations.Integration:39 +#: discord.integrations.StreamIntegration:69 of +msgid ":class:`IntegrationAccount`" +msgstr "" + +#: 457c653cc8d74125bcd46da778f939b9 discord.integrations.BotIntegration:37 +#: discord.integrations.Integration:43 of +msgid "The user that added this integration." +msgstr "" + +#: 8b3ffbaa59b14c90a9fc7afa45026e2d discord.integrations.Integration.delete:3 +#: of +msgid "Deletes the integration." +msgstr "" + +#: dd5935769aea469ba10a8a1d3a8bbc1b discord.integrations.Integration.delete:9 +#: of +msgid "" +"The reason the integration was deleted. Shows up on the audit log. .. " +"versionadded:: 2.0" +msgstr "" + +#: 734f9399d86e4b8e9a1def95909ec9c3 discord.integrations.Integration.delete:9 +#: of +msgid "The reason the integration was deleted. Shows up on the audit log." +msgstr "" + +#: discord.integrations.Integration.delete:14 ea6d867ff2b64f0784fe1cd4a3643563 +#: of +msgid "You do not have permission to delete the integration." +msgstr "" + +#: discord.integrations.Integration.delete:15 fc5b286ea45942b0aa4ccc4fa2650448 +#: of +msgid "Deleting the integration failed." +msgstr "" + +#: 051f5baa31ad4608a77a9235e725f749 discord.integrations.IntegrationAccount:1 +#: of +msgid "Represents an integration account." +msgstr "" + +#: b46ce6c022144379a08da3c7e379031d discord.integrations.IntegrationAccount:7 +#: of +msgid "The account ID." +msgstr "" + +#: 50cde552d4454560ae462e981472bd31 discord.integrations.IntegrationAccount:13 +#: of +msgid "The account name." +msgstr "" + +#: d4f2fb2b97b0466daffc259ba311fa14 discord.integrations.BotIntegration:1 of +msgid "Represents a bot integration on discord." +msgstr "" + +#: 0b0e4b93e0074ce3bde5c03b1389b3ef discord.integrations.BotIntegration:43 +#: discord.integrations.StreamIntegration:67 of +msgid "The integration account information." +msgstr "" + +#: 3d2f746f188b48fcaa0c20d7e321d9b1 discord.integrations.BotIntegration:49 of +msgid "The application tied to this integration." +msgstr "" + +#: 6f321f9ee8bf422d9c0d4d54a6dc99b9 discord.integrations.BotIntegration:51 of +msgid ":class:`IntegrationApplication`" +msgstr "" + +#: a7dc168070fb49c3a3446ea00d0e15df +#: discord.integrations.IntegrationApplication:1 of +msgid "Represents an application for a bot integration." +msgstr "" + +#: acce68a625bc416282a380ec7f49a537 +#: discord.integrations.IntegrationApplication:7 of +msgid "The ID for this application." +msgstr "" + +#: de98dede40cc4d77a38831d433b5387d +#: discord.integrations.IntegrationApplication:13 of +msgid "The application's name." +msgstr "" + +#: bffed0c8dada4975a6e439912fba1f4e +#: discord.integrations.IntegrationApplication:19 of +msgid "The application's icon hash." +msgstr "" + +#: 3e80d9ebb4f64ac7b9acda712293a428 +#: discord.integrations.IntegrationApplication:25 of +msgid "The application's description. Can be an empty string." +msgstr "" + +#: 0c1c24e1fe04467eab04f0003f56c375 +#: discord.integrations.IntegrationApplication:31 of +msgid "The summary of the application. Can be an empty string." +msgstr "" + +#: aea523fa81074e9dbd69e8c156914b31 +#: discord.integrations.IntegrationApplication:37 of +msgid "The bot user on this application." +msgstr "" + +#: c68676e831784f818ed983ef682555db discord.integrations.StreamIntegration:1 of +msgid "Represents a stream integration for Twitch or YouTube." +msgstr "" + +#: 24d03d37cb52482d89c62b6b84ef4311 discord.integrations.StreamIntegration:37 +#: of +msgid "Where the integration is currently syncing." +msgstr "" + +#: 3593d31955bc4632bb4985471e78e098 discord.integrations.StreamIntegration:43 +#: of +msgid "" +"Whether emoticons should be synced for this integration (currently twitch" +" only)." +msgstr "" + +#: 6e0ac92b80784da497c721645009c8e6 discord.integrations.StreamIntegration:49 +#: of +msgid "" +"The behaviour of expiring subscribers. Aliased to ``expire_behavior`` as " +"well." +msgstr "" + +#: 7a4de949a3f049bb9a4c83c33675d557 discord.integrations.StreamIntegration:51 +#: of +msgid ":class:`ExpireBehaviour`" +msgstr "" + +#: discord.integrations.StreamIntegration:55 e03d6eec6012477790d4eae99a4f1a39 +#: of +msgid "The grace period (in days) for expiring subscribers." +msgstr "" + +#: c030974a1da14562a4a19d1b747cf27f discord.integrations.StreamIntegration:61 +#: of +msgid "The user for the integration." +msgstr "" + +#: 34ac350a5f24416c9dd75923281ec2c7 discord.integrations.StreamIntegration:73 +#: of +msgid "An aware UTC datetime representing when the integration was last synced." +msgstr "" + +#: 677c8eaf2fb84d439ecf639d5a7032b2 discord.StreamIntegration.expire_behavior:1 +#: of +msgid "An alias for :attr:`expire_behaviour`." +msgstr "" + +#: 0e4777b133bd43ef9717d00fa475dfe6 discord.StreamIntegration.role:1 of +msgid "The role which the integration uses for subscribers." +msgstr "" + +#: 762cedc36f1645f48f9f5a0d9d2fc27e +#: discord.integrations.StreamIntegration.edit:3 of +msgid "Edits the integration." +msgstr "" + +#: 27c5d6ff298146d0841521848de21afb +#: discord.integrations.StreamIntegration.edit:9 of +msgid "" +"The behaviour when an integration subscription lapses. Aliased to " +"``expire_behavior`` as well." +msgstr "" + +#: 7b5cde27ae5e419bb307f66f6fac1144 +#: discord.integrations.StreamIntegration.edit:12 of +msgid "" +"The period (in days) where the integration will ignore lapsed " +"subscriptions." +msgstr "" + +#: 583eabb6e09b477bae17d461579d8e60 +#: discord.integrations.StreamIntegration.edit:15 of +msgid "" +"Where emoticons should be synced for this integration (currently twitch " +"only)." +msgstr "" + +#: 5c7199415d0646a0a3771e3e3f68769b +#: discord.integrations.StreamIntegration.edit:18 of +msgid "You do not have permission to edit the integration." +msgstr "" + +#: 7ee08cacd7934777ba8ce2f3f00e8696 +#: discord.integrations.StreamIntegration.edit:20 of +msgid "``expire_behaviour`` did not receive a :class:`ExpireBehaviour`." +msgstr "" + +#: 18a0bc5e019c479aa91eced9307c5419 +#: discord.integrations.StreamIntegration.sync:3 of +msgid "Syncs the integration." +msgstr "" + +#: 4888b65407a843ceaeb05eccbe0cc4e8 +#: discord.integrations.StreamIntegration.sync:8 of +msgid "You do not have permission to sync the integration." +msgstr "" + +#: 03487c76dd8843a5ba8ae916bddd7e62 +#: discord.integrations.StreamIntegration.sync:9 of +msgid "Syncing the integration failed." +msgstr "" + +#: ../../api/models.rst:280 9cf29fbd2890454db490e0730bd67152 +msgid "Widget" +msgstr "" + +#: 1d87c6fd0c164a4585b06b69648cfad6 discord.widget.Widget:1 of +msgid "Represents a :class:`Guild` widget." +msgstr "" + +#: discord.widget.Widget:7 eb2b35ab9969443bb0ec92c7427dcacf of +msgid "Checks if two widgets are the same." +msgstr "" + +#: 595eef4d74ad40719f2926f63d720866 discord.widget.Widget:11 of +msgid "Checks if two widgets are not the same." +msgstr "" + +#: 77237a33c4324d729d14829db8440658 discord.widget.Widget:15 of +msgid "Returns the widget's JSON URL." +msgstr "" + +#: 9b2d03f0d394413c849737a5730a5637 discord.widget.Widget:25 of +msgid "The guild's name." +msgstr "" + +#: bd6ffaf6e5aa4480b9a3ec32545bb678 discord.widget.Widget:31 of +msgid "The accessible voice channels in the guild." +msgstr "" + +#: 433e644b5a464d99965275aa2bdf5113 discord.widget.Widget:33 of +msgid "List[:class:`WidgetChannel`]" +msgstr "" + +#: 2cdd2806026540edb70d2f1f54362cf6 discord.widget.Widget:37 of +msgid "" +"The online members in the server. Offline members do not appear in the " +"widget." +msgstr "" + +#: 491aab7c0228443e98dd0634065be810 discord.widget.Widget:42 of +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 "" + +#: 994e3f551fdc4c33aff57bbf415915ea discord.Widget.created_at:1 of +msgid "Returns the member's creation time in UTC." +msgstr "" + +#: b990bc2341be4bda99857899e6781163 discord.Widget.json_url:1 of +msgid "The JSON URL of the widget." +msgstr "" + +#: 1814a1e713b24e2d97c981eff1c125f9 discord.Widget.invite_url:1 of +msgid "The invite URL for the guild, if available." +msgstr "" + +#: 840a71ef091143abb364c22f4d133ca6 discord.widget.Widget.fetch_invite:3 of +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 "" + +#: d75451ea4129492c9596eba0da52ecf1 discord.widget.Widget.fetch_invite:8 of +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.Widget.fetch_invite:13 ff90e8c1588b42c5a22917055eec9364 of +msgid "The invite from the widget's invite URL." +msgstr "" + +#: 580b931e16cc43dda7c757392c9d60e9 discord.widget.Widget.fetch_invite:14 of +msgid ":class:`Invite`" +msgstr "" + +#: 3acbe0815eda46edb6098d348f866bfe discord.widget.WidgetChannel:1 of +msgid "Represents a \"partial\" widget channel." +msgstr "" + +#: ded97df4dda74dd080c94aaa4e540000 discord.widget.WidgetChannel:23 of +msgid "The channel's ID." +msgstr "" + +#: 72f9a68665cd4bf7aac6cf2bf68c1cd7 discord.widget.WidgetChannel:35 of +msgid "The channel's position" +msgstr "" + +#: d5394f7afc754b288c64a3f1f72932d5 discord.widget.WidgetMember:1 of +msgid "Represents a \"partial\" member of the widget's guild." +msgstr "" + +#: 9999d783bb9f4dc18b91d2cd85068ebe discord.widget.WidgetMember:7 of +msgid "Checks if two widget members are the same." +msgstr "" + +#: 35731aff615f4dff845ae775b414311a discord.widget.WidgetMember:11 of +msgid "Checks if two widget members are not the same." +msgstr "" + +#: 0f4e9d0cd50a4b1d91351ab5d94c3979 discord.widget.WidgetMember:15 of +msgid "Return the widget member's hash." +msgstr "" + +#: 7bb172beacfe4617aa83c641cc3f2576 discord.widget.WidgetMember:19 of +msgid "Returns the widget member's `name#discriminator`." +msgstr "" + +#: 7443575f9f214e1699b8e4cfa95ab02c discord.widget.WidgetMember:23 of +msgid "The member's ID." +msgstr "" + +#: discord.widget.WidgetMember:29 ed8828093ef343208bf15ddf3093d61e of +msgid "The member's username." +msgstr "" + +#: 476e5b58d05d4f0ba6d0c2efc1a612bc discord.widget.WidgetMember:35 of +msgid "The member's discriminator." +msgstr "" + +#: 52e4f22308a84c2e9d95fd17ea2b4e5f discord.widget.WidgetMember:41 of +msgid "Whether the member is a bot." +msgstr "" + +#: 7fb6bb5298914dfaada7d31d17e859c0 discord.widget.WidgetMember:47 of +msgid "The member's status." +msgstr "" + +#: c2adee63344e4654956898d0f1e443a6 discord.widget.WidgetMember:49 of +msgid ":class:`Status`" +msgstr "" + +#: 157122b9e8b24251880d68a737d4d522 discord.widget.WidgetMember:53 of +msgid "The member's nickname." +msgstr "" + +#: discord.widget.WidgetMember:59 f619f9599f374b6c8f1df8b0f1765a39 of +msgid "The member's avatar hash." +msgstr "" + +#: 45684373c5e74f8fb347af80b03ed751 discord.widget.WidgetMember:65 of +msgid "The member's activity." +msgstr "" + +#: a1689f0e7f6244d8a119ce54d04afd64 discord.widget.WidgetMember:67 of +msgid "Optional[Union[:class:`BaseActivity`, :class:`Spotify`]]" +msgstr "" + +#: b3ff818af6974ac9af066044bf4ba6ca discord.widget.WidgetMember:71 of +msgid "Whether the member is currently deafened." +msgstr "" + +#: discord.widget.WidgetMember:77 fc4b2322da844f30885f5d2bff97bace of +msgid "Whether the member is currently muted." +msgstr "" + +#: discord.widget.WidgetMember:83 e24cd9e568b849f7a5b64fe9242d31f6 of +msgid "Whether the member is currently being suppressed." +msgstr "" + +#: 2eb48de5180449159d623794c7ef1d80 discord.widget.WidgetMember:89 of +msgid "Which channel the member is connected to." +msgstr "" + +#: baf0d47ab52a4e7f9ad33ad1297b6245 discord.widget.WidgetMember:91 of +msgid "Optional[:class:`WidgetChannel`]" +msgstr "" + +#: be1c1bedfca64980a23a4e6ce258f0d1 discord.WidgetMember.display_name:1 of +msgid "Returns the member's display name." +msgstr "" + +#: ../../api/models.rst:299 37c503ce08c645ed80617cb4dae9b391 +msgid "Threads" +msgstr "" + +#: 862c0af81fa74b42ae0c1fc3e4927c60 discord.threads.Thread:1 of +msgid "Represents a Discord thread." +msgstr "" + +#: a53a2504fd6b4fe3a4779e7a2316dde8 discord.threads.Thread:7 of +msgid "Checks if two threads are equal." +msgstr "" + +#: d317c8430ff34f91a4b7d991b79bd5f7 discord.threads.Thread:11 of +msgid "Checks if two threads are not equal." +msgstr "" + +#: 561a44e9bb8b491e8c7b78ee3fd6701d discord.threads.Thread:15 of +msgid "Returns the thread's hash." +msgstr "" + +#: discord.threads.Thread:19 f1beb12f175941abb922b3500042939f of +msgid "Returns the thread's name." +msgstr "" + +#: 4858970bd7154bc89032f2bc4f72baa7 discord.threads.Thread:25 of +msgid "The thread name." +msgstr "" + +#: discord.threads.Thread:31 f197d86c764149bfb3fd7c1eacf9a3b3 of +msgid "The guild the thread belongs to." +msgstr "" + +#: c3245fdb024f4dbd9d3ce6b9e53ca810 discord.threads.Thread:37 of +msgid "The thread ID." +msgstr "" + +#: cb093b6a1fdd4cfcb644c15c0e577728 discord.threads.Thread:40 of +msgid "This ID is the same as the thread starting message ID." +msgstr "" + +#: 60d6679beded46c194c1da5401f65110 discord.threads.Thread:46 of +msgid "The parent :class:`TextChannel` ID this thread belongs to." +msgstr "" + +#: 679daece3daa4e4cbb295a2b5337dd5f discord.threads.Thread:52 of +msgid "The user's ID that created this thread." +msgstr "" + +#: b1064ff6697546238155084f98843c81 discord.threads.Thread:58 of +msgid "" +"The last message ID of the message sent to this thread. It may *not* " +"point to an existing or valid message." +msgstr "" + +#: 96b104d5ba9746c6bc54bee3d95bfdcf discord.threads.Thread:65 of +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 "" + +#: 518ddd8e2aea44fcbf0b4e1d7fb21da1 discord.threads.Thread:74 of +msgid "An approximate number of messages in this thread. This caps at 50." +msgstr "" + +#: 5b10830c99d1452194e55ee1a0291464 discord.threads.Thread:80 of +msgid "An approximate number of members in this thread. This caps at 50." +msgstr "" + +#: c311e65b40b6488db53add6297be7cba discord.threads.Thread:86 of +msgid "" +"A thread member representing yourself, if you've joined the thread. This " +"could not be available." +msgstr "" + +#: 3488c9668abc47e8a839d445f9eed2a9 discord.threads.Thread:89 of +msgid "Optional[:class:`ThreadMember`]" +msgstr "" + +#: 21c84d957185468f97d2e7b36ec22056 discord.threads.Thread:93 of +msgid "Whether the thread is archived." +msgstr "" + +#: b4eafe5a4f7a4a088e54ccbe39314d36 discord.threads.Thread:99 of +msgid "Whether the thread is locked." +msgstr "" + +#: 6f26e3e892c0426b8ffcae0f1d4b79a5 discord.threads.Thread:105 of +msgid "" +"Whether non-moderators can add other non-moderators to this thread. This " +"is always ``True`` for public threads." +msgstr "" + +#: 0c3bc69cc45443009fda8cfda1204d10 discord.threads.Thread:112 of +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.Thread:119 ff2833e886b544118d6856cce8f59537 of +msgid "" +"An aware timestamp of when the thread's archived status was last updated " +"in UTC." +msgstr "" + +#: cbd4c982ba7741ba9045fcb0a9bd7f11 discord.threads.Thread:125 of +msgid "" +"An aware timestamp of when the thread was created. Only available for " +"threads created after 2022-01-09." +msgstr "" + +#: discord.threads.Thread:132 e212d34b2b1c416494deb7d202253ad9 of +msgid "Extra features of the thread." +msgstr "" + +#: discord.channel.CategoryChannel:64 discord.channel.ForumChannel:102 +#: discord.channel.StageChannel:93 discord.channel.TextChannel:98 +#: discord.channel.VoiceChannel:114 discord.threads.Thread:136 +#: f03b50bb386e47e88f5080d349b75439 of +msgid ":class:`ChannelFlags`" +msgstr "" + +#: a9b329ac47594a1ca69498f273e2226e discord.threads.Thread:140 of +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 "" + +#: 4e301d5d8f414b4a8fca6cb4433976e7 discord.CategoryChannel.type:1 +#: discord.DMChannel.type:1 discord.ForumChannel.type:1 +#: discord.GroupChannel.type:1 discord.StageChannel.type:1 +#: discord.TextChannel.type:1 discord.Thread.type:1 discord.VoiceChannel.type:1 +#: of +msgid "The channel's Discord type." +msgstr "" + +#: 6685fa4f98da4f4fbad14622dc43bd59 discord.Thread.parent:1 of +msgid "The parent channel this thread belongs to." +msgstr "" + +#: 3bb2c4499f774c7db3a93a7a4840b242 discord.Thread.owner:1 of +msgid "The member this thread belongs to." +msgstr "" + +#: de6170f8f1db4c83a177129fd8a80e69 discord.Thread.mention:1 of +msgid "The string that allows you to mention the thread." +msgstr "" + +#: b55dcf3cd4e84201a89d95165638fb0d discord.Thread.jump_url:1 of +msgid "Returns a URL that allows the client to jump to the thread." +msgstr "" + +#: 65ee281822674cdf9142045aa15e51f5 discord.Thread.members:1 of +msgid "" +"A list of thread members in this thread, including the bot if it is a " +"member of this thread." +msgstr "" + +#: 1b86fa2a3a8c426889ae42c19b19f672 discord.Thread.members:3 of +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 "" + +#: 3f3c5952d3e44e838cda0dd3b470fed5 discord.Thread.applied_tags:1 of +msgid "A list of tags applied to this thread." +msgstr "" + +#: 520a7a4a8aeb471a9616b98069fe4e20 discord.Thread.applied_tags:3 of +msgid "This is only available for threads in forum channels." +msgstr "" + +#: 22ee64cf3e304d3fa699868a43f6e342 discord.Thread.applied_tags:5 +#: discord.channel.ForumChannel:110 of +msgid "List[:class:`ForumTag`]" +msgstr "" + +#: 7d496f753ec4435baf11b02c3eecff1d discord.Thread.last_message:1 of +msgid "Returns the last message from this thread in cache." +msgstr "" + +#: 79224463831a451c8339369ad55335d1 discord.ForumChannel.last_message:3 +#: discord.StageChannel.last_message:3 discord.TextChannel.last_message:3 +#: discord.Thread.last_message:3 discord.Thread.starting_message:3 +#: discord.VoiceChannel.last_message:3 of +msgid "The message might not be valid or point to an existing message." +msgstr "" + +#: 086f64f83b2e45448c6e193790788fb9 discord.ForumChannel.last_message:5 +#: discord.StageChannel.last_message:5 discord.TextChannel.last_message:5 +#: discord.Thread.last_message:5 discord.VoiceChannel.last_message:5 of +msgid "Reliable Fetching" +msgstr "" + +#: 1fa6735ff47b46a5a2bd90070d218c40 discord.ForumChannel.last_message:8 +#: discord.StageChannel.last_message:8 discord.TextChannel.last_message:8 +#: discord.Thread.last_message:8 discord.VoiceChannel.last_message:8 of +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 "" + +#: 53538facaa654a67be082b8dfbf4f8d3 discord.ForumChannel.last_message:13 +#: discord.StageChannel.last_message:13 discord.TextChannel.last_message:13 +#: discord.Thread.last_message:13 discord.VoiceChannel.last_message:13 of +msgid "The last message in this channel or ``None`` if not found." +msgstr "" + +#: ../../docstring 8bb271610b164ef2a44fba616a0bb416 +#: discord.ForumChannel.last_message:14 +#: discord.InteractionMetadata.interacted_message:4 +#: discord.InteractionMetadata.original_response_message:4 +#: discord.StageChannel.last_message:14 discord.TextChannel.last_message:14 +#: discord.Thread.last_message:14 discord.Thread.starting_message:9 +#: discord.VoiceChannel.last_message:14 discord.interactions.Interaction:54 +#: discord.raw_models.AutoModActionExecutionEvent:72 +#: discord.raw_models.AutoModActionExecutionEvent:86 +#: discord.raw_models.RawMessageDeleteEvent:25 +#: discord.raw_models.RawMessageUpdateEvent:36 of +msgid "Optional[:class:`Message`]" +msgstr "" + +#: discord.Thread.category:1 fa406e35bd84467385fd2950bc239ea7 of +msgid "The category channel the parent channel belongs to, if applicable." +msgstr "" + +#: 3ecfd31222b1423d888799e280392ed4 discord.Thread.category:3 of +msgid "The parent channel's category." +msgstr "" + +#: 5c2fca147f364702ad1752ee26abc80a discord.Thread.category:4 of +msgid "Optional[:class:`CategoryChannel`]" +msgstr "" + +#: discord.Thread.category:6 discord.Thread.category_id:6 +#: e66dee0dc32745b5b1c3998855c064eb of +msgid "The parent channel was not cached and returned ``None``." +msgstr "" + +#: 2722f4ac082d4e9b8f104458a252afbf discord.Thread.category_id:1 of +msgid "The category channel ID the parent channel belongs to, if applicable." +msgstr "" + +#: 142b2cc7a5094cb8aa3990e91a2a036a discord.Thread.category_id:3 of +msgid "The parent channel's category ID." +msgstr "" + +#: 65899ce1f85a4946b96f26fe16255a80 discord.Thread.starting_message:1 of +msgid "Returns the message that started this thread." +msgstr "" + +#: 3a6d325fb82747a7bc19ddda517f3b17 discord.Thread.starting_message:6 of +msgid "The ID for this message is the same as the thread ID." +msgstr "" + +#: 9609686473534ab295e3ecdb511944f3 discord.Thread.starting_message:8 of +msgid "" +"The message that started this thread or ``None`` if not found in the " +"cache." +msgstr "" + +#: b9b0a2dd3d2e4ecc887943971386974f discord.threads.Thread.is_pinned:1 of +msgid "" +"Whether the thread is pinned to the top of its parent forum channel. " +":rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 1e601881276b4c0f8d04536a4d310638 discord.threads.Thread.is_private:1 of +msgid "Whether the thread is a private thread." +msgstr "" + +#: a157bbbcad26493495551f13f22a9b57 discord.threads.Thread.is_private:3 of +msgid "" +"A private thread is only viewable by those that have been explicitly " +"invited or have :attr:`~.Permissions.manage_threads`." +msgstr "" + +#: 1a00e42e8d4b4436ae5a3eda59611a61 discord.threads.Thread.is_news:1 of +msgid "Whether the thread is a news thread." +msgstr "" + +#: c770f278fc9741068b5f5caa810a47ec discord.threads.Thread.is_news:3 of +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 "" + +#: be6f1dd770614a5d8bf4700202115bf4 discord.threads.Thread.is_nsfw:1 of +msgid "Whether the thread is NSFW or not." +msgstr "" + +#: 80c412eccc484737bba543d510696dd2 discord.threads.Thread.is_nsfw:3 of +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 "" + +#: 692f32fef56d4dc2a04da0f0d03690c3 discord.abc.GuildChannel.permissions_for:1 +#: discord.channel.VocalGuildChannel.permissions_for:1 +#: discord.channel._TextChannel.permissions_for:1 +#: discord.threads.Thread.permissions_for:1 of +msgid "" +"Handles permission resolution for the :class:`~discord.Member` or " +":class:`~discord.Role`." +msgstr "" + +#: 42fd14322cd84ff585c47df80340632a discord.threads.Thread.permissions_for:4 of +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 "" + +#: 5f9a51f4c1324ef39f021d40602fc2ca discord.abc.GuildChannel.permissions_for:23 +#: discord.channel.VocalGuildChannel.permissions_for:23 +#: discord.channel._TextChannel.permissions_for:23 +#: discord.threads.Thread.permissions_for:10 of +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 "" + +#: 4affbef6d844449eb70b5f03da656576 discord.abc.GuildChannel.permissions_for:28 +#: discord.channel.VocalGuildChannel.permissions_for:28 +#: discord.channel._TextChannel.permissions_for:28 +#: discord.threads.Thread.permissions_for:15 of +msgid "The resolved permissions for the member or role." +msgstr "" + +#: 32bedaab337c4ea6a781177cc1e64553 discord.abc.GuildChannel.permissions_for:29 +#: discord.channel.VocalGuildChannel.permissions_for:29 +#: discord.channel._TextChannel.permissions_for:29 +#: discord.threads.Thread.permissions_for:16 ebe51a2429f948418f2ba027284602e4 +#: of +msgid ":class:`~discord.Permissions`" +msgstr "" + +#: 93eb5aa115234b06b0dc1fb131cbdda0 discord.threads.Thread.permissions_for:18 +#: of +msgid "The parent channel was not cached and returned ``None``" +msgstr "" + +#: discord.channel.StageChannel.delete_messages:3 +#: discord.channel.VoiceChannel.delete_messages:3 +#: discord.channel._TextChannel.delete_messages:3 +#: discord.threads.Thread.delete_messages:3 efb41e6c99054ced96096e8407c04478 of +msgid "" +"Deletes a list of messages. This is similar to :meth:`Message.delete` " +"except it bulk deletes multiple messages." +msgstr "" + +#: 95d403544c7b470d8e62307238c84394 +#: discord.channel.StageChannel.delete_messages:6 +#: discord.channel.VoiceChannel.delete_messages:6 +#: discord.channel._TextChannel.delete_messages:6 +#: discord.threads.Thread.delete_messages:6 of +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 "" + +#: 44d243e208e74dabaf00f2898f37a386 +#: discord.channel.StageChannel.delete_messages:10 +#: discord.channel.VoiceChannel.delete_messages:10 +#: discord.channel._TextChannel.delete_messages:10 +#: discord.threads.Thread.delete_messages:10 of +msgid "" +"You cannot bulk delete more than 100 messages or messages that are older " +"than 14 days old." +msgstr "" + +#: 12ac8c2d1ee24602b36d469637750012 +#: discord.channel.StageChannel.delete_messages:13 +#: discord.channel.VoiceChannel.delete_messages:13 +#: discord.channel._TextChannel.delete_messages:13 +#: discord.threads.Thread.delete_messages:13 of +msgid "" +"You must have the :attr:`~Permissions.manage_messages` permission to use " +"this." +msgstr "" + +#: 81b2505f5c46461fbe068c205bb88ae6 discord.threads.Thread.delete_messages:16 +#: of +msgid "Usable only by bot accounts." +msgstr "" + +#: 258275aa7a7f40928cd773403e9d2750 +#: discord.channel.StageChannel.delete_messages:17 +#: discord.channel.VoiceChannel.delete_messages:17 +#: discord.channel._TextChannel.delete_messages:17 +#: discord.threads.Thread.delete_messages:19 of +msgid "An iterable of messages denoting which ones to bulk delete." +msgstr "" + +#: 8fc880d585134a17a0024216a1164444 +#: discord.channel.StageChannel.delete_messages:20 +#: discord.channel.StageChannel.purge:38 +#: discord.channel.VoiceChannel.delete_messages:20 +#: discord.channel.VoiceChannel.purge:38 +#: discord.channel._TextChannel.delete_messages:20 +#: discord.channel._TextChannel.purge:38 +#: discord.threads.Thread.delete_messages:22 discord.threads.Thread.purge:38 of +msgid "The reason for deleting the messages. Shows up on the audit log." +msgstr "" + +#: a1442b5bbdf74f6e8b31ae84a2726b54 +#: discord.channel.StageChannel.delete_messages:23 +#: discord.channel.VoiceChannel.delete_messages:23 +#: discord.channel._TextChannel.delete_messages:23 +#: discord.threads.Thread.delete_messages:25 of +msgid "The number of messages to delete was more than 100." +msgstr "" + +#: dd1d020ebc714c82be6ea10ecba7ab9c discord.threads.Thread.delete_messages:26 +#: of +msgid "" +"You do not have proper permissions to delete the messages, or you're " +"not using a bot account." +msgstr "" + +#: 8411b93430f2431482fd0973f5fe5166 +#: discord.channel.StageChannel.delete_messages:25 +#: discord.channel.VoiceChannel.delete_messages:25 +#: discord.channel._TextChannel.delete_messages:25 +#: discord.threads.Thread.delete_messages:27 of +msgid "If single delete, then the message was already deleted." +msgstr "" + +#: 313dc26247974242aaf1193cdd259b8f +#: discord.channel.StageChannel.delete_messages:26 +#: discord.channel.VoiceChannel.delete_messages:26 +#: discord.channel._TextChannel.delete_messages:26 +#: discord.threads.Thread.delete_messages:28 of +msgid "Deleting the messages failed." +msgstr "" + +#: 20bf7bf6e69540dc87705f873d0610d7 discord.channel.StageChannel.purge:3 +#: discord.channel.VoiceChannel.purge:3 discord.channel._TextChannel.purge:3 +#: discord.threads.Thread.purge:3 of +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 "" + +#: 3465d6c0938946a886a3bc9197eefef8 discord.threads.Thread.purge:7 of +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 "" + +#: 48531b89c2704243bdba0081c736b094 discord.channel.StageChannel.purge:13 +#: discord.channel.VoiceChannel.purge:13 discord.channel._TextChannel.purge:13 +#: discord.threads.Thread.purge:13 of +msgid "" +"The number of messages to search through. This is not the number of " +"messages that will be deleted, though it can be." +msgstr "" + +#: 73a25e191e4d427eb290e5ad194aeb46 discord.channel.StageChannel.purge:17 +#: discord.channel.VoiceChannel.purge:17 discord.channel._TextChannel.purge:17 +#: discord.threads.Thread.purge:17 of +msgid "" +"The function used to check if a message should be deleted. It must take a" +" :class:`Message` as its sole parameter." +msgstr "" + +#: 6e83155f849f4352a4bfa760384b8b9e discord.channel.StageChannel.purge:21 +#: discord.channel.VoiceChannel.purge:21 discord.channel._TextChannel.purge:21 +#: discord.threads.Thread.purge:21 of +msgid "Same as ``before`` in :meth:`history`." +msgstr "" + +#: 7aa18cb895d644e19053e2eec14ee6c0 discord.channel.StageChannel.purge:24 +#: discord.channel.VoiceChannel.purge:24 discord.channel._TextChannel.purge:24 +#: discord.threads.Thread.purge:24 of +msgid "Same as ``after`` in :meth:`history`." +msgstr "" + +#: 083fb0803d4f4b939e1a15944a2584cf discord.channel.StageChannel.purge:27 +#: discord.channel.VoiceChannel.purge:27 discord.channel._TextChannel.purge:27 +#: discord.threads.Thread.purge:27 of +msgid "Same as ``around`` in :meth:`history`." +msgstr "" + +#: 0a6dd8d4b88c4a3e9b3e4e250790250e discord.channel.StageChannel.purge:30 +#: discord.channel.VoiceChannel.purge:30 discord.channel._TextChannel.purge:30 +#: discord.threads.Thread.purge:30 of +msgid "Same as ``oldest_first`` in :meth:`history`." +msgstr "" + +#: 7981dc8e7bf44631bc14eaefc415734a discord.channel.StageChannel.purge:33 +#: discord.channel.VoiceChannel.purge:33 discord.channel._TextChannel.purge:33 +#: discord.threads.Thread.purge:33 of +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.StageChannel.purge:41 discord.channel.VoiceChannel.purge:41 +#: discord.channel._TextChannel.purge:41 discord.threads.Thread.purge:41 +#: e2aad5ac64c24915bdc0bbe81ec6228f of +msgid "The list of messages that were deleted." +msgstr "" + +#: b0c8e3b1df6f47d9a418cb9029926cb7 discord.channel.StageChannel.purge:42 +#: discord.channel.VoiceChannel.purge:42 discord.channel._TextChannel.purge:42 +#: discord.threads.Thread.purge:42 of +msgid "List[:class:`.Message`]" +msgstr "" + +#: 75f5a744aaeb45b9800325ba52e32825 discord.channel.StageChannel.purge:44 +#: discord.channel.VoiceChannel.purge:44 discord.channel._TextChannel.purge:44 +#: discord.threads.Thread.purge:44 of +msgid "You do not have proper permissions to do the actions required." +msgstr "" + +#: 55ac3c5f07e84d59b3459547d1ec5ebb discord.channel.StageChannel.purge:45 +#: discord.channel.VoiceChannel.purge:45 discord.channel._TextChannel.purge:45 +#: discord.threads.Thread.purge:45 of +msgid "Purging the messages failed." +msgstr "" + +#: 67669bca174940f0a790b768a423a88b discord.channel.StageChannel.purge:49 +#: discord.channel.VoiceChannel.purge:49 discord.channel._TextChannel.purge:49 +#: discord.threads.Thread.purge:49 of +msgid "Deleting bot's messages ::" +msgstr "" + +#: 4496559920f34393bb3246284304db51 discord.threads.Thread.edit:3 of +msgid "Edits the thread." +msgstr "" + +#: discord.threads.Thread.edit:5 ec5c1a6a155042b3b86f50bc6ff94b25 of +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.Thread.edit:10 f0ab4c069b414542ae59c42963bee817 of +msgid "The thread must be unarchived to be edited." +msgstr "" + +#: 498910bc39f641c0aa938c6f996f063a discord.threads.Thread.edit:13 of +msgid "The new name of the thread." +msgstr "" + +#: 9664f07837e0479bb44fa5828ec3b4d4 discord.threads.Thread.edit:16 of +msgid "Whether to archive the thread or not." +msgstr "" + +#: 63f577001ef343a3ba34c99075155b12 discord.threads.Thread.edit:19 of +msgid "Whether to lock the thread or not." +msgstr "" + +#: 83b23a4a59684d8792b9edcf4730a552 discord.threads.Thread.edit:22 of +msgid "" +"Whether non-moderators can add other non-moderators to this thread. Only " +"available for private threads." +msgstr "" + +#: cf29fb446325413491772632704014f3 discord.threads.Thread.edit:26 of +msgid "" +"The new duration in minutes before a thread is automatically archived for" +" inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``." +msgstr "" + +#: 1156a52c234a4a16a525c4ee1e8d2aa3 discord.threads.Thread.edit:34 of +msgid "The reason for editing this thread. Shows up on the audit log." +msgstr "" + +#: 16778a16ff164603a54eef19b4f71952 discord.threads.Thread.edit:37 of +msgid "" +"Whether to pin the thread or not. This only works if the thread is part " +"of a forum." +msgstr "" + +#: 0da7c0a3c631463692bb26a46134936a discord.threads.Thread.edit:40 of +msgid "" +"The set of tags to apply to the thread. Each tag object should have an ID" +" set. .. versionadded:: 2.3" +msgstr "" + +#: 4b882218e71646c4bde6153d4e8fce26 discord.threads.Thread.edit:40 of +msgid "" +"The set of tags to apply to the thread. Each tag object should have an ID" +" set." +msgstr "" + +#: discord.threads.Thread.edit:45 f3242dd7014845a89c338d87a47dc9a2 of +msgid "The newly edited thread." +msgstr "" + +#: 0be10d93f961436c9de4fab78f0fe327 +#: discord.channel.ForumChannel.create_thread:68 +#: discord.channel.TextChannel.create_thread:40 discord.threads.Thread.edit:46 +#: of +msgid ":class:`Thread`" +msgstr "" + +#: 0d0cd43a3658484b94e7206b30bcf60f discord.threads.Thread.edit:48 of +msgid "You do not have permissions to edit the thread." +msgstr "" + +#: a5f03015ee4640d79c0fe07e078aaa88 discord.threads.Thread.edit:49 of +msgid "Editing the thread failed." +msgstr "" + +#: 05c3fee091fc403fa1184f8c24a0b544 discord.threads.Thread.archive:3 of +msgid "Archives the thread. This is a shorthand of :meth:`.edit`." +msgstr "" + +#: c625b40bb4bc47c2b3ef3646b70b9001 discord.threads.Thread.archive:6 of +msgid "Whether to lock the thread on archive, Defaults to ``False``." +msgstr "" + +#: 5bbc21eca8354cd8a2ba719986db0064 discord.threads.Thread.archive:9 +#: discord.threads.Thread.unarchive:5 of +msgid "The updated thread." +msgstr "" + +#: 8e12b8fb6f0544c286a3fb3bb00d7a52 discord.threads.Thread.unarchive:3 of +msgid "Unarchives the thread. This is a shorthand of :meth:`.edit`." +msgstr "" + +#: 31eb981658ed4cc9a37411b903861206 discord.threads.Thread.join:3 of +msgid "Joins this thread." +msgstr "" + +#: be140a45a17d41898ac50df0617089ee discord.threads.Thread.join:5 of +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.Thread.join:8 e06f3725eaaf408db90393e6f3ada095 of +msgid "You do not have permissions to join the thread." +msgstr "" + +#: 7d12848dcb3f4861a351c970261c2b1b discord.threads.Thread.join:9 of +msgid "Joining the thread failed." +msgstr "" + +#: discord.threads.Thread.leave:3 ff71a333b5ae4e6bbd890b237dad840e of +msgid "Leaves this thread." +msgstr "" + +#: bdb4a9ea2f0a47a08d6dca16dff62451 discord.threads.Thread.leave:5 of +msgid "Leaving the thread failed." +msgstr "" + +#: 1b05a68ae3c84a648f1ad70729c77a36 discord.threads.Thread.add_user:3 of +msgid "Adds a user to this thread." +msgstr "" + +#: 4a0ae931e5564397891f5e173f57aea1 discord.threads.Thread.add_user:5 of +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 "" + +#: 1856ba808a5345d09d7679fedb68f710 discord.threads.Thread.add_user:11 of +msgid "The user to add to the thread." +msgstr "" + +#: 780131b5bb2b4a7386a00c1dd2604c8b discord.threads.Thread.add_user:14 of +msgid "You do not have permissions to add the user to the thread." +msgstr "" + +#: 739e34ad4e53466fa316fee1c363010e discord.threads.Thread.add_user:15 of +msgid "Adding the user to the thread failed." +msgstr "" + +#: 0bb51be8537b4cc6ae5e2913f7af4fab discord.threads.Thread.remove_user:3 of +msgid "Removes a user from this thread." +msgstr "" + +#: 8dbe55c513b84d41af8ad3e22098bab3 discord.threads.Thread.remove_user:5 of +msgid "" +"You must have :attr:`~Permissions.manage_threads` or be the creator of " +"the thread to remove a user." +msgstr "" + +#: discord.threads.Thread.remove_user:8 e72e4aeb9b2e48bea51c447675b82634 of +msgid "The user to remove from the thread." +msgstr "" + +#: c9902821760b43a5b3e58a1ff58ced44 discord.threads.Thread.remove_user:11 of +msgid "You do not have permissions to remove the user from the thread." +msgstr "" + +#: 424ee87877a14d00b91eef06804bf321 discord.threads.Thread.remove_user:12 of +msgid "Removing the user from the thread failed." +msgstr "" + +#: bfa27a74cae14a589e4212797383ae0f discord.threads.Thread.fetch_members:3 of +msgid "Retrieves all :class:`ThreadMember` that are in this thread." +msgstr "" + +#: 17c8b9aeddc44d2c98cd4241c194830c discord.threads.Thread.fetch_members:5 of +msgid "" +"This requires :attr:`Intents.members` to get information about members " +"other than yourself." +msgstr "" + +#: ab88896940db4fa48943613f620be701 discord.threads.Thread.fetch_members:8 of +msgid "All thread members in the thread." +msgstr "" + +#: 86a3f975569646a6a58e60647d1dfcde discord.threads.Thread.fetch_members:9 of +msgid "List[:class:`ThreadMember`]" +msgstr "" + +#: 71f3a9dbbb2a4b6e92dd4582e5e33c7d discord.threads.Thread.fetch_members:11 of +msgid "Retrieving the members failed." +msgstr "" + +#: 266518b94fca48c29a23d520a7a430f1 discord.threads.Thread.delete:3 of +msgid "Deletes this thread." +msgstr "" + +#: b3acb93535cc4ece8625c5d7d5b3ad76 discord.threads.Thread.delete:5 of +msgid "You must have :attr:`~Permissions.manage_threads` to delete threads." +msgstr "" + +#: 4457d46863cb4e2790ebd1ba60137630 discord.threads.Thread.delete:7 of +msgid "You do not have permissions to delete this thread." +msgstr "" + +#: 7744db38370a490aba33b006de6375d7 discord.threads.Thread.delete:8 of +msgid "Deleting the thread failed." +msgstr "" + +#: 860838b6020e49b0ae2028d20f4083f2 discord.threads.ThreadMember:1 of +msgid "Represents a Discord thread member." +msgstr "" + +#: ba525c7b07824c139f36bdecc842f020 discord.threads.ThreadMember:7 of +msgid "Checks if two thread members are equal." +msgstr "" + +#: 630e0a97a888475789d5f3ebacba3327 discord.threads.ThreadMember:11 of +msgid "Checks if two thread members are not equal." +msgstr "" + +#: 8302c36b3dbf42f2ae1d459d2c78c905 discord.threads.ThreadMember:15 of +msgid "Returns the thread member's hash." +msgstr "" + +#: ceb09394c4c4467b8f2d416c408764b3 discord.threads.ThreadMember:19 of +msgid "Returns the thread member's name." +msgstr "" + +#: b4aacab5225840ca94a608170900ccfa discord.threads.ThreadMember:25 of +msgid "The thread member's ID." +msgstr "" + +#: cc00b147152243bb8f89b459191c1daf discord.threads.ThreadMember:31 of +msgid "The thread's ID." +msgstr "" + +#: 985132367fb04e298906610d56501aec discord.threads.ThreadMember:37 of +msgid "The time the member joined the thread in UTC." +msgstr "" + +#: 97fc6a907f064db0a1c8e12ba6c89f42 discord.ThreadMember.thread:1 of +msgid "The thread this member belongs to." +msgstr "" + +#: ../../api/models.rst:320 74f4a8b9588440d094786e1993d7e7b4 +msgid "Stages" +msgstr "" + +#: 27cae1cff3b1483ba2927229b7e76ea6 discord.channel.StageChannel:1 of +msgid "Represents a Discord guild stage channel." +msgstr "" + +#: cbc78674793e480aaaf2d52a99574eb8 discord.channel.CategoryChannel:9 +#: discord.channel.DMChannel:7 discord.channel.ForumChannel:7 +#: discord.channel.GroupChannel:7 discord.channel.StageChannel:9 +#: discord.channel.TextChannel:7 discord.channel.VoiceChannel:7 of +msgid "Checks if two channels are equal." +msgstr "" + +#: 91b7e5fb35174e4c8cab7571141a7cd9 discord.channel.CategoryChannel:13 +#: discord.channel.DMChannel:11 discord.channel.ForumChannel:11 +#: discord.channel.GroupChannel:11 discord.channel.StageChannel:13 +#: discord.channel.TextChannel:11 discord.channel.VoiceChannel:11 of +msgid "Checks if two channels are not equal." +msgstr "" + +#: 40b19f0e11a242c3878748f60e579d3c discord.channel.DMChannel:15 +#: discord.channel.ForumChannel:15 discord.channel.GroupChannel:15 +#: discord.channel.StageChannel:17 discord.channel.TextChannel:15 +#: discord.channel.VoiceChannel:15 of +msgid "Returns the channel's hash." +msgstr "" + +#: c3008f4769c14c198b601e8cc3c70be8 discord.channel.ForumChannel:19 +#: discord.channel.StageChannel:21 discord.channel.TextChannel:19 +#: discord.channel.VoiceChannel:19 of +msgid "Returns the channel's name." +msgstr "" + +#: b116e2cea92b420eac9aea8cc1ab81f0 discord.channel.ForumChannel:23 +#: discord.channel.StageChannel:25 discord.channel.TextChannel:23 +#: discord.channel.VoiceChannel:23 of +msgid "The channel name." +msgstr "" + +#: discord.channel.ForumChannel:29 discord.channel.StageChannel:31 +#: discord.channel.TextChannel:29 discord.channel.VoiceChannel:29 +#: e4d03f1e47a9494392429ae5f2172724 of +msgid "The guild the channel belongs to." +msgstr "" + +#: 10d9af8b3c114f4f9be973e412b03fb3 discord.channel.ForumChannel:35 +#: discord.channel.StageChannel:37 discord.channel.TextChannel:35 +#: discord.channel.VoiceChannel:35 of +msgid "The channel ID." +msgstr "" + +#: 821d258afb4a4a4db55ea4e35e29266f discord.channel.StageChannel:43 of +msgid "The channel's topic. ``None`` if it isn't set." +msgstr "" + +#: 7bce4c601b7e4d13af2c0eeb1288ed61 discord.channel.ForumChannel:41 +#: discord.channel.StageChannel:49 discord.channel.TextChannel:41 +#: discord.channel.VoiceChannel:41 of +msgid "The category channel ID this channel belongs to, if applicable." +msgstr "" + +#: 17d5c49b53b94e559f645697fdc954fc discord.channel.ForumChannel:57 +#: discord.channel.StageChannel:55 discord.channel.TextChannel:53 +#: discord.channel.VoiceChannel:47 of +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 "" + +#: df3465d34dd146e4aa85ec747685d5e0 discord.channel.StageChannel:68 of +msgid "The channel's limit for number of members that can be in a stage channel." +msgstr "" + +#: 75bbd3cfaa304f20b19991a13e1b8aac discord.channel.StageChannel:74 of +msgid "" +"The region for the stage channel's voice communication. A value of " +"``None`` indicates automatic voice region detection." +msgstr "" + +#: 88d6ddb0b6ae4b87b31b7db5c79da00b discord.channel.StageChannel:77 +#: discord.channel.VoiceChannel:71 of +msgid "Optional[:class:`VoiceRegion`]" +msgstr "" + +#: 2a5f6761e17f48c2b0d616d81972d964 discord.channel.StageChannel:81 +#: discord.channel.StageChannel.edit:32 of +msgid "The camera video quality for the stage channel's participants." +msgstr "" + +#: 1ea0cbbbbdeb41d28a69cf68b30e94ce discord.channel.StageChannel:85 +#: discord.channel.VoiceChannel:79 of +msgid ":class:`VideoQualityMode`" +msgstr "" + +#: 0e3d32b5c2244ca6a0d83a892a081f8d discord.channel.CategoryChannel:60 +#: discord.channel.ForumChannel:98 discord.channel.StageChannel:89 +#: discord.channel.TextChannel:94 discord.channel.VoiceChannel:110 of +msgid "Extra features of the channel." +msgstr "" + +#: dfd71d1f5420428fbfb980d8e3bf715c discord.channel.StageChannel:97 of +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 "" + +#: 675ecc5cb3b84438b270c726510b3052 discord.StageChannel.requesting_to_speak:1 +#: of +msgid "A list of members who are requesting to speak in the stage channel." +msgstr "" + +#: discord.StageChannel.speakers:1 e1fb97ff67e449668ed24643520eeaf6 of +msgid "A list of members who have been permitted to speak in the stage channel." +msgstr "" + +#: df3a44abedf640f6b0b890c8ba159e58 discord.StageChannel.listeners:1 of +msgid "A list of members who are listening in the stage channel." +msgstr "" + +#: 47f3fed9c90f4f96a742e7c04818b2d5 discord.channel.StageChannel.is_nsfw:1 +#: discord.channel.VoiceChannel.is_nsfw:1 +#: discord.channel._TextChannel.is_nsfw:1 of +msgid "Checks if the channel is NSFW." +msgstr "" + +#: 0605656b32984ab9a75c79ef67a728b8 discord.ForumChannel.last_message:1 +#: discord.StageChannel.last_message:1 discord.TextChannel.last_message:1 +#: discord.VoiceChannel.last_message:1 of +msgid "Fetches the last message from this channel in cache." +msgstr "" + +#: c129d88ab0874303b120799a19d7c0ec +#: discord.channel.StageChannel.delete_messages:24 +#: discord.channel.VoiceChannel.delete_messages:24 +#: discord.channel._TextChannel.delete_messages:24 of +msgid "You do not have proper permissions to delete the messages." +msgstr "" + +#: d32cf9eeeb9847b2830a4a6c876ef451 discord.channel.StageChannel.purge:7 +#: discord.channel.VoiceChannel.purge:7 discord.channel._TextChannel.purge:7 of +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 "" + +#: 4a1a304024aa4bbb960259df3ba1226e discord.channel.StageChannel.webhooks:3 +#: discord.channel.VoiceChannel.webhooks:3 +#: discord.channel._TextChannel.webhooks:3 of +msgid "Gets the list of webhooks from this channel." +msgstr "" + +#: 85ddcd8c95604e5fb9d65095ba79d614 discord.channel.StageChannel.webhooks:7 +#: discord.channel.VoiceChannel.webhooks:7 +#: discord.channel._TextChannel.webhooks:7 of +msgid "The webhooks for this channel." +msgstr "" + +#: 77801db3060a4d5a90b6e7d0b67b7bc3 +#: discord.channel.StageChannel.create_webhook:3 +#: discord.channel.VoiceChannel.create_webhook:3 +#: discord.channel._TextChannel.create_webhook:3 of +msgid "Creates a webhook for this channel." +msgstr "" + +#: 1ea0953ddb0b4b89b78d9d96a62ccf8f +#: discord.channel.StageChannel.create_webhook:7 +#: discord.channel.VoiceChannel.create_webhook:7 +#: discord.channel._TextChannel.create_webhook:7 of +msgid "Added the ``reason`` keyword-only parameter." +msgstr "" + +#: c3a5508c1b064afc9513a06272a1fd9c +#: discord.channel.StageChannel.create_webhook:11 +#: discord.channel.VoiceChannel.create_webhook:11 +#: discord.channel._TextChannel.create_webhook:11 of +msgid "The webhook's name." +msgstr "" + +#: 969c1c3c82834ac695633f8b76d5447b +#: discord.channel.StageChannel.create_webhook:14 +#: discord.channel.VoiceChannel.create_webhook:14 +#: discord.channel._TextChannel.create_webhook:14 of +msgid "" +"A :term:`py:bytes-like object` representing the webhook's default avatar." +" This operates similarly to :meth:`~ClientUser.edit`." +msgstr "" + +#: 879233ad70174408b4dfc419d65951e2 +#: discord.channel.StageChannel.create_webhook:18 +#: discord.channel.VoiceChannel.create_webhook:18 +#: discord.channel._TextChannel.create_webhook:18 of +msgid "The reason for creating this webhook. Shows up in the audit logs." +msgstr "" + +#: ad33f0ecada7446aa29ccb4cb4652d46 +#: discord.channel.StageChannel.create_webhook:21 +#: discord.channel.VoiceChannel.create_webhook:21 +#: discord.channel._TextChannel.create_webhook:21 +#: discord.channel._TextChannel.follow:21 of +msgid "The created webhook." +msgstr "" + +#: a1ab293dca0a4d679744b60f873832a7 +#: discord.channel.StageChannel.create_webhook:22 +#: discord.channel.VoiceChannel.create_webhook:22 +#: discord.channel._TextChannel.create_webhook:22 +#: discord.channel._TextChannel.follow:22 of +msgid ":class:`Webhook`" +msgstr "" + +#: discord.channel.StageChannel.create_webhook:24 +#: discord.channel.VoiceChannel.create_webhook:24 +#: discord.channel._TextChannel.create_webhook:24 +#: fcad9386059d42feb4e79e5a14931208 of +msgid "Creating the webhook failed." +msgstr "" + +#: 81fb2b5fd70b4af792ed7a8d92cbfb55 +#: discord.channel.StageChannel.create_webhook:25 +#: discord.channel.VoiceChannel.create_webhook:25 +#: discord.channel._TextChannel.create_webhook:25 of +msgid "You do not have permissions to create a webhook." +msgstr "" + +#: d3cd17c5683f4d2caae0468890e3c3c7 discord.StageChannel.moderators:1 of +msgid "A list of members who are moderating the stage channel." +msgstr "" + +#: 713c44f071794ebf9a814632d2c5da11 discord.channel.CategoryChannel.clone:3 +#: discord.channel.StageChannel.clone:3 discord.channel.VoiceChannel.clone:3 +#: discord.channel._TextChannel.clone:3 of +msgid "" +"Clones this channel. This creates a channel with the same properties as " +"this channel." +msgstr "" + +#: discord.abc.GuildChannel.move:7 discord.channel.CategoryChannel.clone:6 +#: discord.channel.CategoryChannel.move:7 discord.channel.StageChannel.clone:6 +#: discord.channel.VoiceChannel.clone:6 discord.channel._TextChannel.clone:6 +#: fa64ba8bf0624293b23cc2cc03daf2b4 of +msgid "" +"You must have the :attr:`~discord.Permissions.manage_channels` permission" +" to do this." +msgstr "" + +#: discord.channel.CategoryChannel.clone:12 +#: discord.channel.StageChannel.clone:12 discord.channel.VoiceChannel.clone:12 +#: discord.channel._TextChannel.clone:12 f1500ea7686647ea9b0c9b51d0928759 of +msgid "" +"The name of the new channel. If not provided, defaults to this channel " +"name." +msgstr "" + +#: dc75b4e91a0f4f2a8abef5896e012117 discord.channel.CategoryChannel.clone:16 +#: discord.channel.StageChannel.clone:16 discord.channel.VoiceChannel.clone:16 +#: discord.channel._TextChannel.clone:16 of +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "" + +#: a01edf3b9cdb4626b6737bfec16c617d discord.channel.CategoryChannel.clone:20 +#: discord.channel.StageChannel.clone:20 discord.channel.VoiceChannel.clone:20 +#: discord.channel._TextChannel.clone:20 of +msgid ":class:`.abc.GuildChannel`" +msgstr "" + +#: c874643e34984fb09f53a0612a9a1078 discord.StageChannel.instance:1 of +msgid "The running stage instance of the stage channel." +msgstr "" + +#: afc6e38cd59a4c7abae58394c72b2365 +#: discord.channel.StageChannel.create_instance:3 of +msgid "Create a stage instance." +msgstr "" + +#: 3788fffc313c4e17a7031c304b84dbf1 discord.channel.CategoryChannel.edit:5 +#: discord.channel.ForumChannel.edit:5 +#: discord.channel.StageChannel.create_instance:5 +#: discord.channel.StageChannel.edit:5 discord.channel.TextChannel.edit:5 +#: discord.channel.VoiceChannel.edit:5 +#: discord.stage_instance.StageInstance.delete:5 +#: discord.stage_instance.StageInstance.edit:5 of +msgid "" +"You must have the :attr:`~Permissions.manage_channels` permission to use " +"this." +msgstr "" + +#: 2adbed76c2d44058b5a23660c0a6936c +#: discord.channel.StageChannel.create_instance:11 of +msgid "The stage instance's topic." +msgstr "" + +#: 994336115c4548ed991343f91b95e7fa +#: discord.channel.StageChannel.create_instance:14 of +msgid "" +"The stage instance's privacy level. Defaults to " +":attr:`StagePrivacyLevel.guild_only`." +msgstr "" + +#: 3d38fa02f61b4c99b5009ad293c0c00b +#: discord.channel.StageChannel.create_instance:17 of +msgid "The reason the stage instance was created. Shows up on the audit log." +msgstr "" + +#: 6f7613a62cef4e20be3e6ff16a3812b7 +#: discord.channel.StageChannel.create_instance:20 of +msgid "" +"Send a notification to everyone in the server that the stage instance has" +" started. Defaults to ``False``. Requires the ``mention_everyone`` " +"permission." +msgstr "" + +#: daf699fa9af443fa9da0a51deed5c85c +#: discord.channel.StageChannel.create_instance:24 of +msgid "The newly created stage instance." +msgstr "" + +#: 155260cb1d8e4613b0448e82854766f1 9c9686e2d0a14683a181e9e88b509a14 +#: discord.channel.StageChannel.create_instance:25 +#: discord.channel.StageChannel.fetch_instance:8 of +msgid ":class:`StageInstance`" +msgstr "" + +#: 2a69f4fcb45f4ade8fa8261598454b6d +#: discord.channel.StageChannel.create_instance:27 +#: discord.stage_instance.StageInstance.edit:18 of +msgid "If the ``privacy_level`` parameter is not the proper type." +msgstr "" + +#: 0f850c713bbc4f9fa722dd28c79d5b11 +#: discord.channel.StageChannel.create_instance:28 of +msgid "You do not have permissions to create a stage instance." +msgstr "" + +#: aae387d47ca645c7af000d7f0627891d +#: discord.channel.StageChannel.create_instance:29 of +msgid "Creating a stage instance failed." +msgstr "" + +#: 34c2a00adb6f4848aa1cd3b0959f47dd +#: discord.channel.StageChannel.fetch_instance:3 of +msgid "Gets the running :class:`StageInstance`." +msgstr "" + +#: 2a8212724eb0417fb86677800297dd9a +#: discord.channel.StageChannel.fetch_instance:7 of +msgid "The stage instance." +msgstr "" + +#: 08abc5c686b84d1bbce3950ce0a84e85 +#: discord.channel.StageChannel.fetch_instance:10 of +msgid "The stage instance or channel could not be found." +msgstr "" + +#: 6be6f1a53cc74484b55ebb05b7623f48 +#: discord.channel.StageChannel.fetch_instance:11 of +msgid "Getting the stage instance failed." +msgstr "" + +#: b2e2f851c87a4d75806ec5d84d91f6a8 discord.channel.CategoryChannel.edit:3 +#: discord.channel.ForumChannel.edit:3 discord.channel.StageChannel.edit:3 +#: discord.channel.TextChannel.edit:3 discord.channel.VoiceChannel.edit:3 of +msgid "Edits the channel." +msgstr "" + +#: ac71816f1a7040fdabbd0b7c4113ab4a discord.channel.StageChannel.edit:8 of +msgid "The ``topic`` parameter must now be set via :attr:`create_instance`." +msgstr "" + +#: 70e1ecd5420a44c482cdc6d7970e356e discord.channel.CategoryChannel.edit:11 +#: discord.channel.StageChannel.edit:11 discord.channel.TextChannel.edit:14 +#: discord.channel.VoiceChannel.edit:11 of +msgid "" +"Edits are no longer in-place, the newly edited channel is returned " +"instead." +msgstr "" + +#: b3042033fc1f41e0a7ca362c7fc6b2b4 discord.channel.StageChannel.edit:14 +#: discord.channel.VoiceChannel.edit:14 of +msgid "The new channel's name." +msgstr "" + +#: 9a4fe72c71564b6dac1e273987ca267d discord.channel.ForumChannel.edit:12 +#: discord.channel.StageChannel.edit:16 discord.channel.TextChannel.edit:21 +#: discord.channel.VoiceChannel.edit:20 of +msgid "The new channel's position." +msgstr "" + +#: 28b85d3d9a3e42c690aebcdc756b8659 discord.channel.ForumChannel.edit:16 +#: discord.channel.StageChannel.edit:18 discord.channel.TextChannel.edit:25 +#: discord.channel.VoiceChannel.edit:22 of +msgid "" +"Whether to sync permissions with the channel's new or pre-existing " +"category. Defaults to ``False``." +msgstr "" + +#: 7a7108c1fdb34bed8937a7877d4f1c06 discord.channel.ForumChannel.edit:19 +#: discord.channel.StageChannel.edit:21 discord.channel.TextChannel.edit:28 +#: discord.channel.VoiceChannel.edit:25 of +msgid "The new category for this channel. Can be ``None`` to remove the category." +msgstr "" + +#: c0b3b7fe32594f7c93abe776da7dd8f6 discord.channel.ForumChannel.edit:26 +#: discord.channel.StageChannel.edit:25 discord.channel.TextChannel.edit:39 +#: discord.channel.VoiceChannel.edit:29 of +msgid "The reason for editing this channel. Shows up on the audit log." +msgstr "" + +#: discord.channel.CategoryChannel.edit:23 discord.channel.ForumChannel.edit:28 +#: discord.channel.StageChannel.edit:27 discord.channel.TextChannel.edit:41 +#: discord.channel.VoiceChannel.edit:31 e9fbe45828cb4bd19e93296ab98065b3 of +msgid "" +"The overwrites to apply to channel permissions. Useful for creating " +"secret channels." +msgstr "" + +#: 639187546700401c86775c5aba5f968d discord.channel.StageChannel.edit:29 of +msgid "" +"The new region for the stage channel's voice communication. A value of " +"``None`` indicates automatic voice region detection." +msgstr "" + +#: 5384b04c47d543fba5d0b8687447bac9 discord.channel.StageChannel.edit:32 of +msgid "" +"The camera video quality for the stage channel's participants. .. " +"versionadded:: 2.0" +msgstr "" + +#: discord.channel.StageChannel.edit:37 ec14d9ad4d8e40c0b6eda5434bf8fba5 of +msgid "" +"The newly edited stage channel. If the edit was only positional then " +"``None`` is returned instead." +msgstr "" + +#: b3f5e65f48c64c678a5cb3a165db1a5a discord.channel.StageChannel.edit:39 of +msgid "Optional[:class:`.StageChannel`]" +msgstr "" + +#: cd77eae84e4c47198b881cc8c19d7012 discord.channel.StageChannel.edit:41 +#: discord.channel.VoiceChannel.edit:47 of +msgid "If the permission overwrite information is not in proper form." +msgstr "" + +#: discord.channel.ForumChannel.edit:61 discord.channel.StageChannel.edit:42 +#: discord.channel.TextChannel.edit:56 discord.channel.VoiceChannel.edit:48 +#: eee74368fc62419e83a5fa7e4547b372 of +msgid "You do not have permissions to edit the channel." +msgstr "" + +#: discord.channel.ForumChannel.edit:62 discord.channel.StageChannel.edit:43 +#: discord.channel.TextChannel.edit:57 discord.channel.VoiceChannel.edit:49 +#: f4eee836c1ef4595a1249c72fc4aa856 of +msgid "Editing the channel failed." +msgstr "" + +#: 09cedcdcfe6748fd9851abb128364216 discord.CategoryChannel.category:1 +#: discord.ForumChannel.category:1 discord.StageChannel.category:1 +#: discord.TextChannel.category:1 discord.VoiceChannel.category:1 of +msgid "The category this channel belongs to." +msgstr "" + +#: 79a25807046443a6bc1b79a1b106bd6e discord.CategoryChannel.category:3 +#: discord.ForumChannel.category:3 discord.StageChannel.category:3 +#: discord.TextChannel.category:3 discord.VoiceChannel.category:3 of +msgid "If there is no category then this is ``None``." +msgstr "" + +#: 48031388459c4cebb09fdaaa927a12bd discord.CategoryChannel.changed_roles:1 +#: discord.ForumChannel.changed_roles:1 discord.StageChannel.changed_roles:1 +#: discord.TextChannel.changed_roles:1 discord.VoiceChannel.changed_roles:1 of +msgid "" +"Returns a list of roles that have been overridden from their default " +"values in the :attr:`~discord.Guild.roles` attribute." +msgstr "" + +#: discord.abc.Connectable.connect:3 f7deaa2bbc044f24af765d5b1e3a0b1c of +msgid "" +"Connects to voice and creates a :class:`VoiceClient` to establish your " +"connection to the voice server." +msgstr "" + +#: d70b0c0665824f279f6f2d8f4c33368a discord.abc.Connectable.connect:6 of +msgid "This requires :attr:`Intents.voice_states`." +msgstr "" + +#: 43aeaecd4b2643a6bc63951f0bafe328 discord.abc.Connectable.connect:9 of +msgid "The timeout in seconds to wait for the voice endpoint." +msgstr "" + +#: 3c5bc8937793432ca7daa817aed76aa8 discord.abc.Connectable.connect:12 of +msgid "" +"Whether the bot should automatically attempt a reconnect if a part of the" +" handshake fails or the gateway goes down." +msgstr "" + +#: 614c4fd2722841e08c133eba1eea755c discord.abc.Connectable.connect:17 of +msgid "" +"A type that subclasses :class:`~discord.VoiceProtocol` to connect with. " +"Defaults to :class:`~discord.VoiceClient`." +msgstr "" + +#: a7e95f41fa914cf38d3b0c61c7b2ff7a discord.abc.Connectable.connect:21 of +msgid "A voice client that is fully connected to the voice server." +msgstr "" + +#: 978309374c9a4fcaa9ec5d4b81c4ea4f discord.abc.Connectable.connect:22 of +msgid ":class:`~discord.VoiceProtocol`" +msgstr "" + +#: discord.abc.Connectable.connect:24 ef6bea38102e444ea718dad6b316d70b of +msgid "Could not connect to the voice channel in time." +msgstr "" + +#: 3803ca73e6ff4e6e8a3660e0fb82b23c discord.abc.Connectable.connect:25 of +msgid "You are already connected to a voice channel." +msgstr "" + +#: 2d6a9796e95542f184dc8040a1e90187 discord.abc.Connectable.connect:26 of +msgid "The opus library has not been loaded." +msgstr "" + +#: 8284b6f7a985425eb7b9096b97fee46f discord.abc.GuildChannel.create_invite:3 of +msgid "Creates an instant invite from a text or voice channel." +msgstr "" + +#: 70c428800cb74bfdb244a446a5c7f7ed discord.abc.GuildChannel.create_invite:5 of +msgid "" +"You must have the :attr:`~discord.Permissions.create_instant_invite` " +"permission to do this." +msgstr "" + +#: bbb89bbf5cd24082927b096b88b65cfe discord.abc.GuildChannel.create_invite:9 +#: discord.channel.VoiceChannel.create_activity_invite:11 of +msgid "" +"How long the invite should last in seconds. If it's 0 then the invite " +"doesn't expire. Defaults to ``0``." +msgstr "" + +#: bedcf4e2057b460d975ee26ec8e6b9f3 discord.abc.GuildChannel.create_invite:13 +#: discord.channel.VoiceChannel.create_activity_invite:14 of +msgid "" +"How many uses the invite could be used for. If it's 0 then there are " +"unlimited uses. Defaults to ``0``." +msgstr "" + +#: a639ea144cef4a2d8e7b0b5d1a2db86a discord.abc.GuildChannel.create_invite:17 +#: discord.channel.VoiceChannel.create_activity_invite:17 of +msgid "" +"Denotes that the invite grants temporary membership (i.e. they get kicked" +" after they disconnect). Defaults to ``False``." +msgstr "" + +#: 6eeeb747c2df4cf4b68c675601f7d3bf discord.abc.GuildChannel.create_invite:21 +#: discord.channel.VoiceChannel.create_activity_invite:20 of +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 "" + +#: 3e5d68bfef38424ea4dd2e8dec8ea22e discord.abc.GuildChannel.create_invite:26 +#: discord.channel.VoiceChannel.create_activity_invite:24 of +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "" + +#: discord.abc.GuildChannel.create_invite:29 f7c3557ed02049ffa29494923a1632a1 +#: of +msgid "" +"The type of target for the voice channel invite, if any. .. " +"versionadded:: 2.0" +msgstr "" + +#: 7856f6d98f9b4686a4aae6e6dc45240f discord.abc.GuildChannel.create_invite:29 +#: of +msgid "The type of target for the voice channel invite, if any." +msgstr "" + +#: ba2d82cc52254953bd13d32eceaf43ef discord.abc.GuildChannel.create_invite:34 +#: of +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 "" + +#: 5aaa5f7dc0ff4ce587ae704ccf6526fa discord.abc.GuildChannel.create_invite:34 +#: of +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.GuildChannel.create_invite:40 f1e931cf80764eb79c66781cbe3eb218 +#: of +msgid "" +"The id of the embedded application for the invite, required if " +"`target_type` is `TargetType.embedded_application`. .. versionadded:: " +"2.0" +msgstr "" + +#: 46f587a58bad446fbfa6950cdc349794 discord.abc.GuildChannel.create_invite:40 +#: of +msgid "" +"The id of the embedded application for the invite, required if " +"`target_type` is `TargetType.embedded_application`." +msgstr "" + +#: 5abd69aa39664224ab1cde302dbba8ee discord.abc.GuildChannel.create_invite:46 +#: of +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.GuildChannel.create_invite:46 fa1870165cd547d0ac1334f32bb75083 +#: of +msgid "" +"The scheduled event object to link to the event. Shortcut to " +":meth:`.Invite.set_scheduled_event`" +msgstr "" + +#: d5fe56ca5d4e4b62bb563b9daab914c9 discord.abc.GuildChannel.create_invite:49 +#: of +msgid "" +"See :meth:`.Invite.set_scheduled_event` for more info on event invite " +"linking." +msgstr "" + +#: ad6d07cc0ecc4daf8e70e62b42c54694 discord.abc.GuildChannel.create_invite:55 +#: discord.channel.VoiceChannel.create_activity_invite:27 of +msgid "The invite that was created." +msgstr "" + +#: a44a756d8ef54c06b9c598b3c5057293 discord.abc.GuildChannel.create_invite:56 +#: discord.channel.VoiceChannel.create_activity_invite:28 of +msgid ":class:`~discord.Invite`" +msgstr "" + +#: c31e3444e11d47d5a0c7c01273e242e2 discord.abc.GuildChannel.create_invite:58 +#: discord.channel.VoiceChannel.create_activity_invite:31 of +msgid "Invite creation failed." +msgstr "" + +#: discord.abc.GuildChannel.create_invite:59 e7cf9d4d551c4341a736ddfb07f036b8 +#: of +msgid "The channel that was passed is a category or an invalid channel." +msgstr "" + +#: 76d4b05d53d24bb89f07ef3ea80937ae discord.abc.GuildChannel.delete:3 of +msgid "Deletes the channel." +msgstr "" + +#: 790b7e62afe845a6b6bb0860e617ff2e discord.abc.GuildChannel.delete:5 of +msgid "" +"You must have :attr:`~discord.Permissions.manage_channels` permission to " +"use this." +msgstr "" + +#: 8db538d28f594660bf8aa72c650e4d61 discord.abc.GuildChannel.delete:8 of +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "" + +#: 0bde2d677c4c442d81074ef53bffa892 discord.abc.GuildChannel.delete:12 of +msgid "You do not have proper permissions to delete the channel." +msgstr "" + +#: 76703abb28a94196bc3fe2539ff0fd17 discord.abc.GuildChannel.delete:13 of +msgid "The channel was not found or was already deleted." +msgstr "" + +#: 2242d4491ce5454f938e820c8e6e0f88 discord.abc.GuildChannel.delete:14 of +msgid "Deleting the channel failed." +msgstr "" + +#: dbc4b30c00eb410ebe53ad9b4896990c discord.abc.GuildChannel.invites:3 of +msgid "Returns a list of all active instant invites from this channel." +msgstr "" + +#: 5fcbbff57b014ff6a73619b4e701ef56 discord.abc.GuildChannel.invites:5 of +msgid "" +"You must have :attr:`~discord.Permissions.manage_channels` to get this " +"information." +msgstr "" + +#: 05cac3b74a5f4adaad5d3d265f4819de discord.abc.GuildChannel.invites:8 of +msgid "List[:class:`~discord.Invite`]" +msgstr "" + +#: 61992eebcf9d49e5b62a6f71ca4ffa9d discord.CategoryChannel.jump_url:1 +#: discord.DMChannel.jump_url:1 discord.ForumChannel.jump_url:1 +#: discord.GroupChannel.jump_url:1 discord.StageChannel.jump_url:1 +#: discord.TextChannel.jump_url:1 discord.VoiceChannel.jump_url:1 of +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "" + +#: 6811b1001649454db7b2e3ee65c02d6a discord.StageChannel.members:1 +#: discord.VoiceChannel.members:1 of +msgid "Returns all members that are currently inside this voice channel." +msgstr "" + +#: 928cb0355b304182beda16e7827b0e90 discord.abc.GuildChannel.move:3 +#: discord.channel.CategoryChannel.move:3 of +msgid "A rich interface to help move a channel relative to other channels." +msgstr "" + +#: 62bbf4b228aa4f73963ec11bde6809b4 discord.abc.GuildChannel.move:5 +#: discord.channel.CategoryChannel.move:5 of +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "" + +#: 64354ecf425049c18b97220a3cc8b93f discord.abc.GuildChannel.move:12 +#: discord.channel.CategoryChannel.move:12 of +msgid "" +"Voice channels will always be sorted below text channels. This is a " +"Discord limitation." +msgstr "" + +#: 19e6d5cf82be4209980612975d29dff8 discord.abc.GuildChannel.move:17 +#: discord.channel.CategoryChannel.move:17 of +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 "" + +#: 28d86464680f49afa0f33bf4938eac79 discord.abc.GuildChannel.move:21 +#: discord.channel.CategoryChannel.move:21 of +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 "" + +#: 1f21d2ba65cc4e88bc94ccc4a533aba5 discord.abc.GuildChannel.move:25 +#: discord.channel.CategoryChannel.move:25 of +msgid "" +"The channel that should be before our current channel. This is mutually " +"exclusive with ``beginning``, ``end``, and ``after``." +msgstr "" + +#: 6f149660295343d2bef512e3122f3cf9 discord.abc.GuildChannel.move:28 +#: discord.channel.CategoryChannel.move:28 of +msgid "" +"The channel that should be after our current channel. This is mutually " +"exclusive with ``beginning``, ``end``, and ``before``." +msgstr "" + +#: 243b0f6c1dd942f09e1f66f4333f2937 discord.abc.GuildChannel.move:31 +#: discord.channel.CategoryChannel.move:31 of +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 "" + +#: b8bbf52e3eb842fab9307ed3207602b0 discord.abc.GuildChannel.move:38 +#: discord.channel.CategoryChannel.move:38 of +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 "" + +#: b43c9a7f761945eaa7ff4de5fc52e741 discord.abc.GuildChannel.move:42 +#: discord.channel.CategoryChannel.move:42 of +msgid "Whether to sync the permissions with the category (if given)." +msgstr "" + +#: discord.abc.GuildChannel.move:44 discord.channel.CategoryChannel.move:44 +#: e78b0fba71c449c6b22bc68d7a42b8b7 of +msgid "The reason for the move." +msgstr "" + +#: discord.abc.GuildChannel.move:47 discord.channel.CategoryChannel.move:47 +#: eb8261bde35e4cf4b4cd36dcbf3084a6 of +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "" + +#: discord.abc.GuildChannel.move:48 discord.channel.CategoryChannel.move:48 +#: ec5967cc04484df9aaaa322214ff2ebf of +msgid "You do not have permissions to move the channel." +msgstr "" + +#: 13385efe88d34243bb30e64a26401394 dec5694062304b0e9d3ed0f5c54038b7 +#: discord.abc.GuildChannel.move:49 discord.channel.CategoryChannel.move:49 of +msgid "Moving the channel failed." +msgstr "" + +#: b7dc82bf54634320a5031a32b5afd0e0 discord.CategoryChannel.overwrites:1 +#: discord.ForumChannel.overwrites:1 discord.StageChannel.overwrites:1 +#: discord.TextChannel.overwrites:1 discord.VoiceChannel.overwrites:1 of +msgid "Returns all of the channel's overwrites." +msgstr "" + +#: d2fe158d967147c8b4ef1867798ca82b discord.CategoryChannel.overwrites:3 +#: discord.ForumChannel.overwrites:3 discord.StageChannel.overwrites:3 +#: discord.TextChannel.overwrites:3 discord.VoiceChannel.overwrites:3 of +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 "" + +#: cf5f4a1ff74146fb903c23deb37c3299 discord.CategoryChannel.overwrites:7 +#: discord.ForumChannel.overwrites:7 discord.StageChannel.overwrites:7 +#: discord.TextChannel.overwrites:7 discord.VoiceChannel.overwrites:7 of +msgid "The channel's permission overwrites." +msgstr "" + +#: 83956f5a5333400b902ec3cbf55ef987 discord.CategoryChannel.overwrites:8 +#: discord.ForumChannel.overwrites:8 discord.StageChannel.overwrites:8 +#: discord.TextChannel.overwrites:8 discord.VoiceChannel.overwrites:8 of +msgid "" +"Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], " +":class:`~discord.PermissionOverwrite`]" +msgstr "" + +#: discord.abc.GuildChannel.overwrites_for:1 f9b2ad6e19814664ac9b8151811dd122 +#: of +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "" + +#: 424f1b06e4ca49da8f3ae55bd2b5a833 discord.abc.GuildChannel.overwrites_for:4 +#: of +msgid "The role or user denoting whose overwrite to get." +msgstr "" + +#: 941badf662e24af6bdb04e39a1020079 discord.abc.GuildChannel.overwrites_for:8 +#: of +msgid "The permission overwrites for this object." +msgstr "" + +#: discord.abc.GuildChannel.overwrites_for:9 fc3fff034d7048b592fe35dcd866a631 +#: of +msgid ":class:`~discord.PermissionOverwrite`" +msgstr "" + +#: ad61cc31ac914379a2e312de3d43ffe8 discord.abc.GuildChannel.permissions_for:4 +#: discord.channel.VocalGuildChannel.permissions_for:4 +#: discord.channel._TextChannel.permissions_for:4 of +msgid "This function takes into consideration the following cases:" +msgstr "" + +#: a116f87071af41338aeba09a8eb992af discord.abc.GuildChannel.permissions_for:6 +#: discord.channel.VocalGuildChannel.permissions_for:6 +#: discord.channel._TextChannel.permissions_for:6 of +msgid "Guild owner" +msgstr "" + +#: 412081ad6b56428da03c40fe91e46896 discord.abc.GuildChannel.permissions_for:7 +#: discord.channel.VocalGuildChannel.permissions_for:7 +#: discord.channel._TextChannel.permissions_for:7 of +msgid "Guild roles" +msgstr "" + +#: 3d8a5b7caf8449499a5df8e5f52da039 discord.abc.GuildChannel.permissions_for:8 +#: discord.channel.VocalGuildChannel.permissions_for:8 +#: discord.channel._TextChannel.permissions_for:8 of +msgid "Channel overrides" +msgstr "" + +#: discord.abc.GuildChannel.permissions_for:9 +#: discord.channel.VocalGuildChannel.permissions_for:9 +#: discord.channel._TextChannel.permissions_for:9 +#: f5a7c4f10acd4fc78ace8d9c7ae71a1e of +msgid "Member overrides" +msgstr "" + +#: bb22b5f45b9744aba2495cbe1c5c3927 discord.abc.GuildChannel.permissions_for:11 +#: discord.channel.VocalGuildChannel.permissions_for:11 +#: discord.channel._TextChannel.permissions_for:11 of +msgid "" +"If a :class:`~discord.Role` is passed, then it checks the permissions " +"someone with that role would have, which is essentially:" +msgstr "" + +#: 7792fc4132114a33a1d0dd6a31c0d67f discord.abc.GuildChannel.permissions_for:14 +#: discord.channel.VocalGuildChannel.permissions_for:14 +#: discord.channel._TextChannel.permissions_for:14 of +msgid "The default role permissions" +msgstr "" + +#: a9f75d8e2445493f8f13f904067552f4 discord.abc.GuildChannel.permissions_for:15 +#: discord.channel.VocalGuildChannel.permissions_for:15 +#: discord.channel._TextChannel.permissions_for:15 of +msgid "The permissions of the role used as a parameter" +msgstr "" + +#: discord.abc.GuildChannel.permissions_for:16 +#: discord.channel.VocalGuildChannel.permissions_for:16 +#: discord.channel._TextChannel.permissions_for:16 +#: f7edbbec0ac84cbc88a8a26badcac519 of +msgid "The default role permission overwrites" +msgstr "" + +#: 6174d926cc1b4b0d99f7af83decc22fe discord.abc.GuildChannel.permissions_for:17 +#: discord.channel.VocalGuildChannel.permissions_for:17 +#: discord.channel._TextChannel.permissions_for:17 of +msgid "The permission overwrites of the role used as a parameter" +msgstr "" + +#: 0de4faae977c4d34ba5ebf875178efb2 discord.abc.GuildChannel.permissions_for:19 +#: discord.channel.VocalGuildChannel.permissions_for:19 +#: discord.channel._TextChannel.permissions_for:19 of +msgid "The object passed in can now be a role object." +msgstr "" + +#: 5afc09453dd94d4aa2b35273e549c663 +#: discord.CategoryChannel.permissions_synced:1 +#: discord.ForumChannel.permissions_synced:1 +#: discord.StageChannel.permissions_synced:1 +#: discord.TextChannel.permissions_synced:1 +#: discord.VoiceChannel.permissions_synced:1 of +msgid "" +"Whether the permissions for this channel are synced with the category it " +"belongs to." +msgstr "" + +#: 981749f5cb0242b8855f2826a6dc6bf4 +#: discord.CategoryChannel.permissions_synced:4 +#: discord.ForumChannel.permissions_synced:4 +#: discord.StageChannel.permissions_synced:4 +#: discord.TextChannel.permissions_synced:4 +#: discord.VoiceChannel.permissions_synced:4 of +msgid "If there is no category then this is ``False``." +msgstr "" + +#: 3a5fa731cfa147c7a0bfaa31890a8fe1 discord.abc.GuildChannel.set_permissions:3 +#: of +msgid "" +"Sets the channel specific permission overwrites for a target in the " +"channel." +msgstr "" + +#: 3ef3986ccc4a47cf960c7dd5d60a5557 discord.abc.GuildChannel.set_permissions:6 +#: of +msgid "" +"The ``target`` parameter should either be a :class:`~discord.Member` or a" +" :class:`~discord.Role` that belongs to guild." +msgstr "" + +#: b07e547adb1545f8a3616be524559dd4 discord.abc.GuildChannel.set_permissions:9 +#: of +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 "" + +#: 764ab65cb31c493594eaa77947707624 discord.abc.GuildChannel.set_permissions:15 +#: of +msgid "" +"If the ``overwrite`` parameter is ``None``, then the permission " +"overwrites are deleted." +msgstr "" + +#: 146970e2d3814a7188e3cbb525453e55 discord.abc.GuildChannel.set_permissions:18 +#: of +msgid "" +"You must have the :attr:`~discord.Permissions.manage_roles` permission to" +" use this." +msgstr "" + +#: 346d7572d6cd45afa3d668860d51d232 discord.abc.GuildChannel.set_permissions:22 +#: of +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "" + +#: 637f3a1a21694797a9ac311c64c0c911 discord.abc.GuildChannel.set_permissions:26 +#: of +msgid "Setting allow and deny: ::" +msgstr "" + +#: 810d95b1d4994c63862f68887c77e831 discord.abc.GuildChannel.set_permissions:31 +#: of +msgid "Deleting overwrites ::" +msgstr "" + +#: dae2ea6fc6544c64bf6008937d45f7d0 discord.abc.GuildChannel.set_permissions:35 +#: of +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "" + +#: 03cfeadeceb24469845f590f9734b5ac discord.abc.GuildChannel.set_permissions:43 +#: of +msgid "The member or role to overwrite permissions for." +msgstr "" + +#: dcf66235aaf14217aaf08ce4c7556408 discord.abc.GuildChannel.set_permissions:46 +#: of +msgid "" +"The permissions to allow and deny to the target, or ``None`` to delete " +"the overwrite." +msgstr "" + +#: 6f036719a4ef44aeb1c05e3412443113 discord.abc.GuildChannel.set_permissions:50 +#: of +msgid "" +"A keyword argument list of permissions to set for ease of use. Cannot be " +"mixed with ``overwrite``." +msgstr "" + +#: 9efb0463f8ca4001ab156472387d2537 discord.abc.GuildChannel.set_permissions:56 +#: of +msgid "You do not have permissions to edit channel specific permissions." +msgstr "" + +#: 61bb29fcb29e4916a4342d95e7354727 discord.abc.GuildChannel.set_permissions:57 +#: of +msgid "Editing channel specific permissions failed." +msgstr "" + +#: 4e7647606bd44e0b98e6cf273cb2d1ec discord.abc.GuildChannel.set_permissions:58 +#: of +msgid "The role or member being edited is not part of the guild." +msgstr "" + +#: discord.abc.GuildChannel.set_permissions:59 eed46e2237c8429cb10297b23b78e9a2 +#: of +msgid "" +"The overwrite parameter invalid or the target type was not " +":class:`~discord.Role` or :class:`~discord.Member`." +msgstr "" + +#: aac395884ca44a2f930fe268dfbcf173 discord.StageChannel.voice_states:1 +#: discord.VoiceChannel.voice_states:1 of +msgid "Returns a mapping of member IDs who have voice states in this channel." +msgstr "" + +#: discord.StageChannel.voice_states:7 discord.VoiceChannel.voice_states:7 +#: ff1a46da477a45748d4878f27e338736 of +msgid "" +"This function is intentionally low level to replace :attr:`members` when " +"the member cache is unavailable." +msgstr "" + +#: b0a39ba35b224de5b9bc4829d6564c07 discord.StageChannel.voice_states:10 +#: discord.VoiceChannel.voice_states:10 of +msgid "The mapping of member ID to a voice state." +msgstr "" + +#: discord.StageChannel.voice_states:11 discord.VoiceChannel.voice_states:11 +#: e44ca07452324be283fc857fbc182383 of +msgid "Mapping[:class:`int`, :class:`VoiceState`]" +msgstr "" + +#: d1f3c8bd47f140719e5c0b888ad99b67 discord.stage_instance.StageInstance:1 of +msgid "Represents a stage instance of a stage channel in a guild." +msgstr "" + +#: cfd9e47e9aba457a8d7e7dcded874e46 discord.stage_instance.StageInstance:9 of +msgid "Checks if two stage instances are equal." +msgstr "" + +#: 5389094ace54424ab29560b4eba7477d discord.stage_instance.StageInstance:13 of +msgid "Checks if two stage instances are not equal." +msgstr "" + +#: 10b764b2654e41ff8f3a68cfa60abf67 discord.stage_instance.StageInstance:17 of +msgid "Returns the stage instance's hash." +msgstr "" + +#: dc0cb661be4645ffb0ee5fb775fac7fc discord.stage_instance.StageInstance:21 of +msgid "The stage instance's ID." +msgstr "" + +#: 4b99c1a221404ba48edaaa5f27026cd5 discord.stage_instance.StageInstance:27 of +msgid "The guild that the stage instance is running in." +msgstr "" + +#: 25ae9212c60a42ae92f03be0294d125c discord.stage_instance.StageInstance:33 of +msgid "The ID of the channel that the stage instance is running in." +msgstr "" + +#: 4496cdcdbe394897845762e5db5b8d62 discord.stage_instance.StageInstance:39 of +msgid "The topic of the stage instance." +msgstr "" + +#: 753d7151d11749ed9ce37a2371108611 discord.stage_instance.StageInstance:45 of +msgid "The privacy level of the stage instance." +msgstr "" + +#: 0adc3279736942f287a3d9e1774aa984 discord.stage_instance.StageInstance:47 of +msgid ":class:`StagePrivacyLevel`" +msgstr "" + +#: 203e2e85a6de4714bcf5108fc81cba3f discord.stage_instance.StageInstance:51 of +msgid "Whether discoverability for the stage instance is disabled." +msgstr "" + +#: a0333acf6c3442b5b56ad839722b7f60 discord.stage_instance.StageInstance:57 of +msgid "The scheduled event linked with the stage instance, if any." +msgstr "" + +#: ../../docstring 1829c4b5e5394d688644ccb61fc9b59a +#: discord.StageInstance.channel:1 of +msgid "The channel that stage instance is running in." +msgstr "" + +#: 961d71895bdf42e1a265dcb3b977d9bc discord.stage_instance.StageInstance.edit:3 +#: of +msgid "Edits the stage instance." +msgstr "" + +#: bf4cb416b05f4dc5b4de3fed388dc439 discord.stage_instance.StageInstance.edit:9 +#: of +msgid "The stage instance's new topic." +msgstr "" + +#: 6bf6a4420bdd44b198d0f9df963a8335 +#: discord.stage_instance.StageInstance.edit:12 of +msgid "The stage instance's new privacy level." +msgstr "" + +#: be797d5ca83f47919ca615b971ce92e0 +#: discord.stage_instance.StageInstance.edit:15 of +msgid "The reason the stage instance was edited. Shows up on the audit log." +msgstr "" + +#: 98a2aed69860406c92d9d7430af6e0c4 +#: discord.stage_instance.StageInstance.edit:19 of +msgid "You do not have permissions to edit the stage instance." +msgstr "" + +#: 1d9e265f57774641925c72942fecadf6 +#: discord.stage_instance.StageInstance.edit:20 of +msgid "Editing a stage instance failed." +msgstr "" + +#: 97baaaa1bd20483e9f048aa3d113c954 +#: discord.stage_instance.StageInstance.delete:3 of +msgid "Deletes the stage instance." +msgstr "" + +#: bce1bcc41ea341de90f034daecd0731c +#: discord.stage_instance.StageInstance.delete:9 of +msgid "The reason the stage instance was deleted. Shows up on the audit log." +msgstr "" + +#: discord.stage_instance.StageInstance.delete:12 +#: f52b3342df8f489d8b6254c7c5c7ab13 of +msgid "You do not have permissions to delete the stage instance." +msgstr "" + +#: 9ee431d14a7f4af6b46c49f8b807926f +#: discord.stage_instance.StageInstance.delete:13 of +msgid "Deleting the stage instance failed." +msgstr "" + +#: ../../api/models.rst:334 dd317db3c9cb4a29aeb80d2b10ad338c +msgid "Interactions" +msgstr "" + +#: 775ea52457284cd4a51e8046ea22bf5e discord.interactions.Interaction:1 of +msgid "Represents a Discord interaction." +msgstr "" + +#: 40047a7f0dad4c7889963527d0ff04a6 discord.interactions.Interaction:3 of +msgid "" +"An interaction happens when a user does an action that needs to be " +"notified. Current examples are application commands, components, and " +"modals." +msgstr "" + +#: 6008728ed3b44140a9d0d21ecc5f3928 discord.interactions.Interaction:10 +#: discord.interactions.InteractionMetadata:9 +#: discord.interactions.MessageInteraction:17 of +msgid "The interaction's ID." +msgstr "" + +#: c6a9f7b9c9cf4b248b01fab6c0256cce discord.interactions.Interaction:16 +#: discord.interactions.InteractionMetadata:15 +#: discord.interactions.MessageInteraction:23 of +msgid "The interaction type." +msgstr "" + +#: 1fc0cdfa3ed24c29b2f792d652f54f7b discord.interactions.Interaction:18 +#: discord.interactions.InteractionMetadata:17 +#: discord.interactions.MessageInteraction:25 of +msgid ":class:`InteractionType`" +msgstr "" + +#: d271e7c0211841a98f87ff7809f85656 discord.interactions.Interaction:22 of +msgid "The guild ID the interaction was sent from." +msgstr "" + +#: ../../docstring 6592055219f343cb9bdd6913260e9096 +#: da78be11664f477fa8875f0a7b3cf40d discord.Interaction.cached_channel:1 +#: discord.interactions.Interaction:28 of +msgid "The channel the interaction was sent from." +msgstr "" + +#: discord.interactions.Interaction:30 fe765f9ca0464f1b81b27493ad00183c of +msgid "" +"Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, " +":class:`Thread`]]" +msgstr "" + +#: d4988af767804657b320108c5d7b3467 discord.interactions.Interaction:34 of +msgid "The ID of the channel the interaction was sent from." +msgstr "" + +#: 1cc256002cdd4d539edb65e587c2f9a7 discord.interactions.Interaction:40 of +msgid "The application ID that the interaction was for." +msgstr "" + +#: 6eeedd965eac44a5b905a06d37c570d7 discord.interactions.Interaction:46 of +msgid "" +"The user or member that sent the interaction. Will be `None` in PING " +"interactions." +msgstr "" + +#: discord.interactions.Interaction:48 e4df7cd48a2e428086b0c54763d2c4da of +msgid "Optional[Union[:class:`User`, :class:`Member`]]" +msgstr "" + +#: 752abdff761c400093ceddf3d5ba43cf discord.interactions.Interaction:52 of +msgid "The message that sent this interaction." +msgstr "" + +#: 6248830208cd4b49ae1952d3cb094507 discord.interactions.Interaction:58 of +msgid "The token to continue the interaction. These are valid for 15 minutes." +msgstr "" + +#: 28ba605672334ec98d75cfc20d4534bc discord.interactions.Interaction:65 +#: discord.interactions.MessageInteraction:41 of +msgid "The raw interaction data." +msgstr "" + +#: 62d4b92033714c14a7e588f356deec68 discord.interactions.Interaction:67 +#: discord.interactions.MessageInteraction:43 +#: discord.raw_models.AutoModActionExecutionEvent:112 +#: discord.raw_models.RawAuditLogEntryEvent:60 +#: discord.raw_models.RawBulkMessageDeleteEvent:33 +#: discord.raw_models.RawIntegrationDeleteEvent:29 +#: discord.raw_models.RawMemberRemoveEvent:23 +#: discord.raw_models.RawMessageDeleteEvent:33 +#: discord.raw_models.RawMessageUpdateEvent:29 +#: discord.raw_models.RawReactionActionEvent:83 +#: discord.raw_models.RawReactionClearEmojiEvent:59 +#: discord.raw_models.RawReactionClearEvent:27 +#: discord.raw_models.RawScheduledEventSubscription:37 +#: discord.raw_models.RawThreadDeleteEvent:41 +#: discord.raw_models.RawThreadMembersUpdateEvent:29 +#: discord.raw_models.RawThreadUpdateEvent:33 +#: discord.raw_models.RawTypingEvent:41 +#: discord.raw_models.RawVoiceChannelStatusUpdateEvent:27 of +msgid ":class:`dict`" +msgstr "" + +#: 431e63b876fc4e95ab4746e9607e8cef discord.interactions.Interaction:71 of +msgid "The user's locale." +msgstr "" + +#: d1b67b9a517e4afa987f5d8808f281ec discord.interactions.Interaction:77 of +msgid "The guilds preferred locale, if invoked in a guild." +msgstr "" + +#: bc95434233944967b59146866853dc61 discord.interactions.Interaction:83 of +msgid "The custom ID for the interaction." +msgstr "" + +#: 87681089c6c34a3a8b90710e070e432f discord.interactions.Interaction:89 of +msgid "" +"Entitlements that apply to the invoking user, showing access to premium " +"SKUs." +msgstr "" + +#: 7a446b1615f949e2a8791a93cf39f86a discord.interactions.Interaction:93 of +msgid "list[:class:`Entitlement`]" +msgstr "" + +#: 02eac2317d8042c1973ec01e54f167da discord.interactions.Interaction:97 of +msgid "Contains the entities (users or guilds) that authorized this interaction." +msgstr "" + +#: 575fb80fa5ad41f294d33252d69885fc discord.interactions.Interaction:101 +#: discord.interactions.InteractionMetadata:29 of +msgid ":class:`AuthorizingIntegrationOwners`" +msgstr "" + +#: 5792e58158d04e58899ee162f1c542e7 discord.interactions.Interaction:105 of +msgid "The context in which this command was executed." +msgstr "" + +#: 149351b7df664788a413093688677723 discord.interactions.Interaction:109 of +msgid "Optional[:class:`InteractionContextType`]" +msgstr "" + +#: 4464cbbf3555444890e48eaf0e78176d discord.Interaction.client:1 of +msgid "Returns the client that sent the interaction." +msgstr "" + +#: 55c70be45b73482ca42cefdb013a99f3 discord.Interaction.guild:1 of +msgid "The guild the interaction was sent from." +msgstr "" + +#: bd66fcea2cc64e7793c0f6867ab2d4f3 +#: discord.interactions.Interaction.is_command:1 of +msgid "Indicates whether the interaction is an application command." +msgstr "" + +#: 26ede07ec91341e19637c9b51fbf2327 +#: discord.interactions.Interaction.is_component:1 of +msgid "Indicates whether the interaction is a message component." +msgstr "" + +#: ../../docstring 2059802134ba4fd1847a6c6046b12b09 +#: discord.Interaction.cached_channel:4 of +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 "" + +#: 38c0562356cc42cd894edfbccb261023 discord.Interaction.permissions:1 of +msgid "" +"The resolved permissions of the member in the channel, including " +"overwrites." +msgstr "" + +#: ac78027c2cfd40abbeb784e00ead560e discord.Interaction.permissions:3 of +msgid "" +"In a non-guild context where this doesn't apply, an empty permissions " +"object is returned." +msgstr "" + +#: ../../docstring 7909ba6d6a2f41f6b6462a9351d9e4f4 +#: discord.Interaction.app_permissions:1 of +msgid "" +"The resolved permissions of the application in the channel, including " +"overwrites." +msgstr "" + +#: ../../docstring cad185e4c9f94be694c4f320b7c90829 +#: discord.Interaction.response:1 of +msgid "Returns an object responsible for handling responding to the interaction." +msgstr "" + +#: ../../docstring 4699990c15104a26b6d4c952657ddce3 +#: discord.Interaction.response:3 of +msgid "" +"A response can only be done once. If secondary messages need to be sent, " +"consider using :attr:`followup` instead." +msgstr "" + +#: ../../docstring 8fdd84284e2a497bade0d8001a36e09a +#: discord.Interaction.followup:1 of +msgid "Returns the followup webhook for followup interactions." +msgstr "" + +#: 2de1a112cdb84a6f9936002cc8f558aa +#: discord.interactions.Interaction.original_response:3 of +msgid "" +"Fetches the original interaction response message associated with the " +"interaction." +msgstr "" + +#: discord.interactions.Interaction.original_response:5 +#: f98e672573a846dfa70a7a495bb85fd5 of +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 "" + +#: 2f3891340d1d4328a53b411abf6e1d34 +#: discord.interactions.Interaction.original_response:9 of +msgid "Repeated calls to this will return a cached value." +msgstr "" + +#: 4bc04d411af54a45b89a5c855ec2ab0f +#: discord.interactions.Interaction.original_message:3 +#: discord.interactions.Interaction.original_response:11 of +msgid "The original interaction response message." +msgstr "" + +#: c142aeb5a3c949ccb4255648b0bd5d10 +#: discord.interactions.Interaction.original_message:6 +#: discord.interactions.Interaction.original_response:14 of +msgid "Fetching the original response message failed." +msgstr "" + +#: 49b41174c824449cbd07131376945e32 +#: discord.interactions.Interaction.original_message:7 +#: discord.interactions.Interaction.original_response:15 of +msgid "The channel for the message could not be resolved." +msgstr "" + +#: 816552f68597445d88271545aff5d020 +#: discord.interactions.Interaction.original_message:1 of +msgid "An alias for :meth:`original_response`." +msgstr "" + +#: 1850b83f26c04738a5ca8083908d7be2 +#: discord.interactions.Interaction.edit_original_response:3 of +msgid "Edits the original interaction response message." +msgstr "" + +#: 514bff746a3d4cd8b9ee478107a9cb8b +#: discord.interactions.Interaction.edit_original_response:5 of +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 "" + +#: 943be66eb84e4bbe8c3da8f3df723e6c +#: discord.interactions.Interaction.edit_original_response:8 of +msgid "" +"This method is also the only way to edit the original message if the " +"message sent was ephemeral." +msgstr "" + +#: 5d0e4e83b4f24731b34a35e79c46a8c1 +#: discord.interactions.Interaction.edit_original_response:12 +#: discord.interactions.InteractionMessage.edit:6 of +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "" + +#: 78ab2785551d40aebdd0c9db2b357a8e +#: discord.interactions.Interaction.edit_original_response:15 +#: discord.interactions.InteractionMessage.edit:9 +#: discord.interactions.InteractionResponse.edit_message:10 of +msgid "A list of embeds to edit the message with." +msgstr "" + +#: 1bfea59e058349e6983197c48ebab23c +#: discord.interactions.Interaction.edit_original_response:18 +#: discord.interactions.InteractionMessage.edit:12 +#: discord.interactions.InteractionResponse.edit_message:13 of +msgid "" +"The embed to edit the message with. ``None`` suppresses the embeds. This " +"should not be mixed with the ``embeds`` parameter." +msgstr "" + +#: 60ad98432301495e81b9d767d8bc2752 +#: discord.interactions.Interaction.edit_original_response:22 +#: discord.interactions.InteractionMessage.edit:16 of +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "" + +#: 6f346031716245248cab708988aa9e2b +#: discord.interactions.Interaction.edit_original_response:25 +#: discord.interactions.InteractionMessage.edit:19 of +msgid "" +"A list of files to send with the content. This cannot be mixed with the " +"``file`` parameter." +msgstr "" + +#: ded433826a6d40e98463ddc4efddb20e +#: discord.interactions.Interaction.edit_original_response:33 +#: discord.interactions.InteractionMessage.edit:27 +#: discord.interactions.InteractionResponse.send_message:28 of +msgid "" +"Controls the mentions being processed in this message. See " +":meth:`.abc.Messageable.send` for more information." +msgstr "" + +#: 57b7e0b2c9594f87a4f6a794d8f8311d 6e9e9dc0d2334596a368697a50b9bcdf +#: discord.interactions.Interaction.edit_original_message:3 +#: discord.interactions.Interaction.edit_original_response:49 +#: discord.interactions.InteractionMessage.edit:43 of +msgid "The newly edited message." +msgstr "" + +#: bac68fd9b9b94a4db357840571c0db30 c9d4555a10334b05844245ef0bb77543 +#: discord.interactions.Interaction.edit_original_message:4 +#: discord.interactions.Interaction.edit_original_response:50 +#: discord.interactions.InteractionMessage.edit:44 of +msgid ":class:`InteractionMessage`" +msgstr "" + +#: 78d68e26f3c249a587002c93966ab85f b305b4b190304f928eacfe9998ad4a2b +#: discord.interactions.Interaction.edit_original_message:7 +#: discord.interactions.Interaction.edit_original_response:53 +#: discord.interactions.InteractionMessage.edit:47 of +msgid "Edited a message that is not yours." +msgstr "" + +#: 0e2e17416ca94d62957d593de02de4f8 4fd1e2553b774feead560beb83cb9a10 +#: discord.interactions.Interaction.edit_original_message:8 +#: discord.interactions.Interaction.edit_original_response:54 +#: discord.interactions.InteractionMessage.edit:48 of +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "" + +#: 02602cf743b24b9c840aa0cd9efd0edd a5114f88c58f463b828b0bbcdf8ea0cf +#: discord.interactions.Interaction.edit_original_message:9 +#: discord.interactions.Interaction.edit_original_response:55 +#: discord.interactions.InteractionMessage.edit:49 +#: discord.interactions.InteractionResponse.send_message:52 of +msgid "The length of ``embeds`` was invalid." +msgstr "" + +#: bd6d58e2d23149ba9ce01594ee1923f7 +#: discord.interactions.Interaction.edit_original_message:1 of +msgid "An alias for :meth:`edit_original_response`." +msgstr "" + +#: 14276a4f9e5c4b63a629f832a0753117 +#: discord.interactions.Interaction.delete_original_response:3 of +msgid "Deletes the original interaction response message." +msgstr "" + +#: 50fb04a60e7a46c78e90ee08c279dec5 +#: discord.interactions.Interaction.delete_original_response:5 of +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.Interaction.delete_original_response:9 +#: discord.interactions.InteractionMessage.delete:6 +#: febbc9cba8d34c6586876cd40429ec3b of +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 "" + +#: 7dd0c5d8414b42298fbe212d13c29826 a1d88591f3784ab0a14ee62252f107fb +#: discord.interactions.Interaction.delete_original_message:4 +#: discord.interactions.Interaction.delete_original_response:14 of +msgid "Deleted a message that is not yours." +msgstr "" + +#: a6e99b1e2f7f4e65b5d8d9ba6c333fd3 +#: discord.interactions.Interaction.delete_original_message:1 of +msgid "An alias for :meth:`delete_original_response`." +msgstr "" + +#: cbc7c9a8ce5944ef82d469e98f491d7e discord.interactions.Interaction.respond:3 +#: of +msgid "" +"Sends either a response or a message using the followup webhook " +"determined by whether the interaction has been responded to or not." +msgstr "" + +#: c94a1b5cbea24b01a9797e6870ae5ea4 discord.interactions.Interaction.edit:6 +#: discord.interactions.Interaction.respond:6 of +msgid "" +"The response, its type depending on whether it's an interaction response " +"or a followup." +msgstr "" + +#: b30852d11460457eabb6784aba94a706 discord.interactions.Interaction.respond:7 +#: of +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "" + +#: 8d35bb67672a42fcac023f5995852b4d discord.interactions.Interaction.edit:3 of +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 "" + +#: 0e02b73f63d349c093e61f6adb60397f discord.interactions.Interaction.edit:7 of +msgid "" +"Union[:class:`discord.InteractionMessage`, " +":class:`discord.WebhookMessage`]" +msgstr "" + +#: discord.interactions.Interaction.to_dict:1 f62b32c6deba4ae285103dd2f354292c +#: of +msgid "Converts this interaction object into a dict." +msgstr "" + +#: 0ad066b6f53a48738838e07593cedea5 discord.interactions.Interaction.to_dict:3 +#: of +msgid "" +"A dictionary of :class:`str` interaction keys bound to the respective " +"value." +msgstr "" + +#: 5c107ee8b22644db9b4cfed7056afc3e discord.interactions.Interaction.to_dict:4 +#: of +msgid "Dict[:class:`str`, Any]" +msgstr "" + +#: 6a080d45f7f94f7b9996e3e689aeea4f discord.interactions.InteractionResponse:1 +#: of +msgid "Represents a Discord interaction response." +msgstr "" + +#: 749dee81631c46d0bfd9f420bc223e79 discord.interactions.InteractionResponse:3 +#: of +msgid "This type can be accessed through :attr:`Interaction.response`." +msgstr "" + +#: 1a1c87556c5b46338759b67959814cae +#: discord.interactions.InteractionResponse.is_done:1 of +msgid "Indicates whether an interaction response has been done before." +msgstr "" + +#: 9fc4846fbb464219b452b4608fae6d7a +#: discord.interactions.InteractionResponse.is_done:3 of +msgid "An interaction can only be responded to once." +msgstr "" + +#: 2cd8394c7ee440b7914ed17796762aff +#: discord.interactions.InteractionResponse.defer:3 of +msgid "Defers the interaction response." +msgstr "" + +#: cd531d8e26754adbb67ccfcc5557bc1c +#: discord.interactions.InteractionResponse.defer:5 of +msgid "" +"This is typically used when the interaction is acknowledged and a " +"secondary action will be done later." +msgstr "" + +#: discord.interactions.InteractionResponse.defer:8 +#: fac744047d0f466996a2066c3f50d6ed of +msgid "This can only be used with the following interaction types:" +msgstr "" + +#: 9a9bf857983c496b92e769a2c61e3277 +#: discord.interactions.InteractionResponse.defer:10 of +msgid ":attr:`InteractionType.application_command`" +msgstr "" + +#: 4e88a14c0f274842afb4125ddc39972c +#: discord.interactions.InteractionResponse.defer:11 of +msgid ":attr:`InteractionType.component`" +msgstr "" + +#: cafbe6d28edb4eaaa0289f186f485ee7 +#: discord.interactions.InteractionResponse.defer:12 of +msgid ":attr:`InteractionType.modal_submit`" +msgstr "" + +#: 2ba82ddad23d446db6d9655546f3b84d +#: discord.interactions.InteractionResponse.defer:15 of +msgid "" +"The follow-up response will also be non-ephemeral if the `ephemeral` " +"argument is ``False``, and ephemeral if ``True``." +msgstr "" + +#: c027019699d74cfdbd10025be90b90c1 +#: discord.interactions.InteractionResponse.defer:19 of +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 "" + +#: 781f8954cb5d49dd958f065940a34ed9 +#: discord.interactions.InteractionResponse.defer:24 of +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 "" + +#: cf570c86c50649c0bbd0dd376d345eb7 +#: discord.interactions.InteractionResponse.defer:32 of +msgid "Deferring the interaction failed." +msgstr "" + +#: 190377437a99469fbe3f65af715e569b 5fd8b575c5ea4556be228e6ffd03fc31 +#: c2f8b5e3b60f49c2ae55cb0c96d9c761 +#: discord.interactions.InteractionResponse.defer:33 +#: discord.interactions.InteractionResponse.edit_message:50 +#: discord.interactions.InteractionResponse.pong:8 +#: discord.interactions.InteractionResponse.premium_required:12 +#: discord.interactions.InteractionResponse.send_autocomplete_result:9 +#: discord.interactions.InteractionResponse.send_message:53 +#: discord.interactions.InteractionResponse.send_modal:10 of +msgid "This interaction has already been responded to before." +msgstr "" + +#: 726629a0abdc4eefbda7fd1c98f15b7f +#: discord.interactions.InteractionResponse.pong:3 of +msgid "Pongs the ping interaction." +msgstr "" + +#: bbf97771852d403bb3d12542b445d11e +#: discord.interactions.InteractionResponse.pong:5 of +msgid "This should rarely be used." +msgstr "" + +#: 63865b257fb148eca22c5902537a160a +#: discord.interactions.InteractionResponse.pong:7 of +msgid "Ponging the interaction failed." +msgstr "" + +#: 04fc7140a0054bbfab98eb1ef5eb9db2 +#: discord.interactions.InteractionResponse.send_message:3 of +msgid "Responds to this interaction by sending a message." +msgstr "" + +#: cf022833321e4d4e952d42c919a9e58a +#: discord.interactions.InteractionResponse.send_message:9 of +msgid "" +"A list of embeds to send with the content. Maximum of 10. This cannot be " +"mixed with the ``embed`` parameter." +msgstr "" + +#: discord.interactions.InteractionResponse.send_message:13 +#: fa988857e557477dbba1ebe2e0cdea53 of +msgid "" +"The rich embed for the content to send. This cannot be mixed with " +"``embeds`` parameter." +msgstr "" + +#: 7a2fc6f963a74c2bb23e22c1eefbb2ac +#: discord.interactions.InteractionResponse.send_message:20 of +msgid "The view to send with the message." +msgstr "" + +#: 78aa02922d154229b23d02e952d96cad +#: discord.interactions.InteractionResponse.send_message:23 of +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 "" + +#: 64e02398ff574112aa7da5406a0677d0 +#: discord.interactions.InteractionResponse.send_message:32 of +msgid "" +"If provided, the number of seconds to wait in the background before " +"deleting the message we just sent." +msgstr "" + +#: 80d3084bbff64deb9a18d1bb91999e24 +#: discord.interactions.InteractionResponse.send_message:47 of +msgid "The interaction object associated with the sent message." +msgstr "" + +#: 818f06aff6094b08a83db537c72141a4 +#: discord.interactions.InteractionResponse.send_message:48 of +msgid ":class:`.Interaction`" +msgstr "" + +#: discord.interactions.InteractionResponse.edit_message:49 +#: discord.interactions.InteractionResponse.send_message:51 +#: e2024a8f3ffb496d9c436a8a62f58ff2 of +msgid "You specified both ``embed`` and ``embeds``." +msgstr "" + +#: bf8a8d7d68404c6c8dc528e78ef7571b +#: discord.interactions.InteractionResponse.edit_message:3 of +msgid "" +"Responds to this interaction by editing the original message of a " +"component or modal interaction." +msgstr "" + +#: 4b5180a1cf0647009a0d600d9383e0a5 +#: discord.interactions.InteractionResponse.edit_message:7 of +msgid "The new content to replace the message with. ``None`` removes the content." +msgstr "" + +#: 9a19c321a52f419daee55b3f6b21c3ef +#: discord.interactions.InteractionResponse.edit_message:17 of +msgid "" +"A new file to add to the message. This cannot be mixed with ``files`` " +"parameter." +msgstr "" + +#: b1b174a3fec84e6db5e7e9611be7966d +#: discord.interactions.InteractionResponse.edit_message:20 of +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 "" + +#: 32c68b7cc33841258ae96c0c02aa2da0 +#: discord.interactions.InteractionResponse.send_autocomplete_result:1 of +msgid "|coro| Responds to this interaction by sending the autocomplete choices." +msgstr "" + +#: bc6555a8e3324ec7a29849428b192cb1 +#: discord.interactions.InteractionResponse.send_autocomplete_result:5 of +msgid "A list of choices." +msgstr "" + +#: d864284c89884ed3ad8949b4cf99011e +#: discord.interactions.InteractionResponse.send_autocomplete_result:8 of +msgid "Sending the result failed." +msgstr "" + +#: 8e54ac9007de4a4d829ed4df0e5915e2 +#: discord.interactions.InteractionResponse.send_modal:1 of +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.InteractionResponse.send_modal:6 +#: f4c62420e64349f492d00f247c09a447 of +msgid "The modal dialog to display to the user." +msgstr "" + +#: discord.interactions.InteractionResponse.send_modal:9 +#: f2b153a0e68f499980aa1d0581b95ffd of +msgid "Sending the modal failed." +msgstr "" + +#: discord.interactions.InteractionResponse.send_modal:12 +#: fa2c7415a5394f01aea0cdbeac5bf9ae of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr "" + +#: 78617e1aed38430384dba4d8cca25d12 +#: discord.interactions.InteractionResponse.premium_required:3 of +msgid "" +"Responds to this interaction by sending a premium required message. " +":rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.Interaction\\``" +msgstr "" + +#: discord.interactions.InteractionResponse.premium_required:9 +#: f77a39a6089f4253a884d8819df78f12 of +msgid "A button with type :attr:`ButtonType.premium` should be used instead." +msgstr "" + +#: c0b870f0e79d48c0b613e7df8c1d8588 discord.interactions.InteractionMessage:1 +#: of +msgid "Represents the original interaction response message." +msgstr "" + +#: d7736f47631844a6b757d1233dc575ad discord.interactions.InteractionMessage:3 +#: of +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.InteractionMessage:6 f9dbfcff943e4cc0907be97e5dc96b40 +#: of +msgid "" +"This inherits from :class:`discord.Message` with changes to :meth:`edit` " +"and :meth:`delete` to work." +msgstr "" + +#: 1c9fdeee1518456d982525c4a87964e9 +#: discord.interactions.InteractionMessage.delete:11 of +msgid "The message was deleted already." +msgstr "" + +#: 27715675c1044bd4b769e8ae37b2f93b discord.interactions.MessageInteraction:1 +#: of +msgid "Represents a Discord message interaction." +msgstr "" + +#: discord.interactions.MessageInteraction:3 eb49b29ecd8048b3b781d3a2cce3478d +#: of +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 "" + +#: 69521c9fc5714a6a8859ddff3efb8403 discord.interactions.MessageInteraction:10 +#: of +msgid "See :class:`InteractionMetadata`." +msgstr "" + +#: a79b8da007c44f1e96437ee14ccfea66 discord.interactions.MessageInteraction:13 +#: of +msgid "Responses to message components do not include this property." +msgstr "" + +#: 58f0b598df8f4b0a9e46d1dc7f600c24 discord.interactions.MessageInteraction:29 +#: of +msgid "The name of the invoked application command." +msgstr "" + +#: 7f960d2316a846959186aa98cc5bdc80 discord.interactions.InteractionMetadata:21 +#: discord.interactions.MessageInteraction:35 of +msgid "The user that sent the interaction." +msgstr "" + +#: aefc043c2e7a4936b14e77ad181e747f discord.interactions.InteractionMetadata:1 +#: of +msgid "Represents metadata about an interaction." +msgstr "" + +#: 4b72b7fa0dd34800b112fd5124349780 discord.interactions.InteractionMetadata:3 +#: of +msgid "" +"This is sent on the message object when the message is related to an " +"interaction" +msgstr "" + +#: discord.interactions.InteractionMetadata:27 ec5f1e75991d4361b15dd4324d59c3e2 +#: of +msgid "" +"The authorizing user or server for the installation(s) relevant to the " +"interaction." +msgstr "" + +#: 9e25574cf7a64ecaa23396bb90495acb discord.interactions.InteractionMetadata:33 +#: of +msgid "" +"The ID of the original response message. Only present on interaction " +"follow-up messages." +msgstr "" + +#: bdf5d71153fc41698afcb762ceb8b3b3 discord.interactions.InteractionMetadata:39 +#: of +msgid "" +"The ID of the message that triggered the interaction. Only present on " +"interactions of type :attr:`InteractionType.component`." +msgstr "" + +#: 29e6e31887114b448358d1e098c402bb discord.interactions.InteractionMetadata:46 +#: of +msgid "" +"The metadata of the interaction that opened the model. Only present on " +"interactions of type :attr:`InteractionType.modal_submit`." +msgstr "" + +#: ../../docstring b58e0939843b4f7f8bd3c352c93fd161 +#: discord.InteractionMetadata.original_response_message:1 of +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 24c26cbf637d43e586c71ac57e489433 +#: discord.InteractionMetadata.interacted_message:1 of +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 "" + +#: 65790c58c3bd4a77a1c2045e8c1d395f +#: discord.interactions.AuthorizingIntegrationOwners:1 of +msgid "" +"Contains details on the authorizing user or server for the " +"installation(s) relevant to the interaction." +msgstr "" + +#: 2722a330072a40ff9d26d694ccf3e59b +#: discord.interactions.AuthorizingIntegrationOwners:7 of +msgid "The ID of the user that authorized the integration." +msgstr "" + +#: discord.interactions.AuthorizingIntegrationOwners:9 +#: discord.interactions.AuthorizingIntegrationOwners:17 +#: e9458a1d2e184ba08cb95ee060a70b67 of +msgid ":class:`int` | None" +msgstr "" + +#: dfb1816376444865bf9fa592dd94e3bf +#: discord.interactions.AuthorizingIntegrationOwners:13 of +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 c561ef72045447c8bcaefae99bea4069 +#: discord.AuthorizingIntegrationOwners.user:1 of +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 b6d1a54d63184868baf3162b671055f8 +#: discord.AuthorizingIntegrationOwners.guild:1 of +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 "" + +#: 325eccff689b463a930829aa10f85c86 discord.components.Component:1 of +msgid "Represents a Discord Bot UI Kit Component." +msgstr "" + +#: 2d12acff11104cfdae9f7130c251450e discord.components.Component:3 of +msgid "Currently, the only components supported by Discord are:" +msgstr "" + +#: 709fc995d26b4c83ac251992b4d0284c discord.components.Component:5 of +msgid ":class:`ActionRow`" +msgstr "" + +#: 006ee8a5eae04575b71c25f80734fddc discord.components.Component:6 of +msgid ":class:`Button`" +msgstr "" + +#: 0c5375d482ec498eaa71bfd03f2a8133 discord.components.Component:7 of +msgid ":class:`SelectMenu`" +msgstr "" + +#: c058b048558c41e796780dc8fd7e13b3 discord.components.Component:9 of +msgid "This class is abstract and cannot be instantiated." +msgstr "" + +#: discord.components.ActionRow:11 discord.components.Component:15 +#: f81c11da386445dbbb02292e3bc450c1 of +msgid "The type of component." +msgstr "" + +#: c7fa145264a345959a3d9ee21d0d3f9b discord.components.ActionRow:13 +#: discord.components.Component:17 discord.components.SelectMenu:22 of +msgid ":class:`ComponentType`" +msgstr "" + +#: 9f7d8de88aed40a08872c3374e05f049 discord.components.ActionRow:1 of +msgid "Represents a Discord Bot UI Kit Action Row." +msgstr "" + +#: 52afa1f78ae7497c8060bdb4a963d379 discord.components.ActionRow:3 of +msgid "This is a component that holds up to 5 children components in a row." +msgstr "" + +#: 93341d8aa4fb44959bf727bb0998ab94 discord.components.ActionRow:5 +#: discord.components.Button:3 of +msgid "This inherits from :class:`Component`." +msgstr "" + +#: 3248a4ea4e8c4849a1e3cfd557671f33 discord.components.ActionRow:17 of +msgid "The children components that this holds, if any." +msgstr "" + +#: discord.components.Button:1 e0b3fcd3375d4bfb8695df0a7104c162 of +msgid "Represents a button from the Discord Bot UI Kit." +msgstr "" + +#: discord.components.Button:7 e84696cb443c46b1a00676610ca02b0d of +msgid "" +"The user constructible and usable type to create a button is " +":class:`discord.ui.Button` not this one." +msgstr "" + +#: 17316ef8cf2e41eea87856713d44d589 discord.components.Button:14 of +msgid "The style of the button." +msgstr "" + +#: 9b26c0ad72604068a56d44df8deaf10e discord.components.Button:16 of +msgid ":class:`.ButtonStyle`" +msgstr "" + +#: 3e0bad6d875e4b708e06d95b7bc848df discord.components.Button:20 of +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 "" + +#: dbc3fc6e82d449c498ff55cedadec8f1 discord.components.Button:27 of +msgid "The URL this button sends you to." +msgstr "" + +#: 92ad8e5b06b44eaeb61e9ec6fe198505 discord.components.Button:33 of +msgid "Whether the button is disabled or not." +msgstr "" + +#: cf2143a753e04aaba2c533fd326bcdbd discord.components.Button:39 of +msgid "The label of the button, if any." +msgstr "" + +#: a1bedc695439492f85e0988db64713a1 discord.components.Button:45 of +msgid "The emoji of the button, if available." +msgstr "" + +#: 2f8502a4187e40f597d6496424c5ac3a discord.components.Button:47 of +msgid "Optional[:class:`PartialEmoji`]" +msgstr "" + +#: 76a7eb849b774f21a8d3351ab54c814a discord.components.Button:51 of +msgid "The ID of the SKU this button refers to." +msgstr "" + +#: 6efb83e0de88482cb68cfc583e02da9a discord.components.SelectMenu:1 of +msgid "Represents a select menu from the Discord Bot UI Kit." +msgstr "" + +#: 7bdf0a195f7349158b0f1f4e36fb930b discord.components.SelectMenu:3 of +msgid "" +"A select menu is functionally the same as a dropdown, however on mobile " +"it renders a bit differently." +msgstr "" + +#: discord.components.SelectMenu:8 fc6946db0ea245a69657a6935ca95a1a of +msgid "" +"The user constructible and usable type to create a select menu is " +":class:`discord.ui.Select` not this one." +msgstr "" + +#: 1f0a74344d894d50bbcf2e95bba368ca discord.components.SelectMenu:15 of +msgid "" +"Added support for :attr:`ComponentType.user_select`, " +":attr:`ComponentType.role_select`, " +":attr:`ComponentType.mentionable_select`, and " +":attr:`ComponentType.channel_select`." +msgstr "" + +#: 2102950811c74486ab9b1026c9caddb1 discord.components.SelectMenu:20 of +msgid "The select menu's type." +msgstr "" + +#: b88d7aba2c9f46f88b681a6b575cb84e discord.components.SelectMenu:26 of +msgid "The ID of the select menu that gets received during an interaction." +msgstr "" + +#: c13453267e014bf98fe6f803e5a076c7 discord.components.SelectMenu:32 of +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "" + +#: 3fdc6cc88eee4898b8468f5a5a44e7d2 discord.components.SelectMenu:38 of +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 "" + +#: 33a222b1a7e9441f86f5ce875be10c72 discord.components.SelectMenu:45 of +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 "" + +#: d4e8136b7e634c6daa20e200a532bc0d discord.components.SelectMenu:52 of +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 "" + +#: d343089d09514315960da0c7bf2b3de2 discord.components.SelectMenu:56 of +msgid "List[:class:`SelectOption`]" +msgstr "" + +#: 5352d7de29a64f59834df1c06284439b discord.components.SelectMenu:60 of +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 "" + +#: 1c0857ba83824e07ae47f6b53750d2fa discord.components.SelectMenu:64 of +msgid "List[:class:`ChannelType`]" +msgstr "" + +#: 4d0bc3e8202f4bea84931cee7392c89d discord.components.SelectMenu:68 of +msgid "Whether the select is disabled or not." +msgstr "" + +#: ../../api/models.rst:389 c885c2e7084646b998c51b1c9bafc0aa +msgid "Emoji" +msgstr "" + +#: a4f545bdd7dc437c9d245d238586c702 discord.emoji.Emoji:1 of +msgid "Represents a custom emoji." +msgstr "" + +#: a3349dfb97b44db9b3ecbbee8e3a01ff discord.emoji.Emoji:3 of +msgid "" +"Depending on the way this object was created, some attributes can have a " +"value of ``None``." +msgstr "" + +#: 44bf70fa78894c1daddd55e9d90838e2 discord.emoji.Emoji:10 +#: discord.partial_emoji.PartialEmoji:12 of +msgid "Checks if two emoji are the same." +msgstr "" + +#: d2a07b8aa3ab40839e60c1d979b40ceb discord.emoji.Emoji:14 +#: discord.partial_emoji.PartialEmoji:16 of +msgid "Checks if two emoji are not the same." +msgstr "" + +#: 4c8a36b9a18a42cc928f6013bb72307c discord.emoji.Emoji:18 +#: discord.partial_emoji.PartialEmoji:20 of +msgid "Return the emoji's hash." +msgstr "" + +#: 7cf57bf9d537462a8b495549c81e2242 discord.emoji.Emoji:22 of +msgid "" +"Returns an iterator of ``(field, value)`` pairs. This allows this class " +"to be used as an iterable in list/dict/etc constructions." +msgstr "" + +#: 2a7b951e1a5b452d93036b3794628d0d discord.emoji.Emoji:27 +#: discord.partial_emoji.PartialEmoji:24 of +msgid "Returns the emoji rendered for discord." +msgstr "" + +#: 14ea0733e1d541da9fea4210dc039209 discord.emoji.Emoji:31 of +msgid "The name of the emoji." +msgstr "" + +#: b6e01311a7694deeba97d6ea2b8240e8 discord.emoji.Emoji:43 of +msgid "" +"If colons are required to use this emoji in the client (:PJSalt: vs " +"PJSalt)." +msgstr "" + +#: 880bd48f7776420995813479f53ac12a discord.emoji.Emoji:49 of +msgid "Whether an emoji is animated or not." +msgstr "" + +#: 69dcc8a19c474fdb8fad0b3391750694 discord.emoji.Emoji:55 of +msgid "If this emoji is managed by a Twitch integration." +msgstr "" + +#: a1e8a33a32c64b71bef5731eeaa07cd3 discord.emoji.Emoji:61 of +msgid "The guild ID the emoji belongs to." +msgstr "" + +#: 33a23d7c29004eaaa37ca543e08ac512 discord.emoji.Emoji:67 of +msgid "Whether the emoji is available for use." +msgstr "" + +#: db162171483149d08942625fc5b9ac36 discord.emoji.Emoji:73 of +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 "" + +#: 62dffac0a0724a6383eb42c22cd717c4 discord.Emoji.created_at:1 of +msgid "Returns the emoji's creation time in UTC." +msgstr "" + +#: 94a262936d7443e284a5b0bca6175dc3 discord.Emoji.url:1 of +msgid "Returns the URL of the emoji." +msgstr "" + +#: 5dfaa3531d0646b0bf85c2b34e72fb67 discord.Emoji.roles:1 of +msgid "A :class:`list` of roles that is allowed to use this emoji." +msgstr "" + +#: d76d5cc472e547e2893bf6d83d18cb1b discord.Emoji.roles:3 of +msgid "If roles is empty, the emoji is unrestricted." +msgstr "" + +#: 04b446a6ff504bf8a407983e47aaeb77 discord.Emoji.guild:1 of +msgid "The guild this emoji belongs to." +msgstr "" + +#: a9a8d25d86ae4c3496bc37cd89b9ea7d discord.emoji.Emoji.is_usable:1 of +msgid "" +"Whether the bot can use this emoji. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 496fefc520c1400a95b50c17283f2426 discord.emoji.Emoji.delete:3 of +msgid "Deletes the custom emoji." +msgstr "" + +#: aca7f87a81bc40f8855d7c68ddee4b7c discord.emoji.Emoji.edit:3 of +msgid "Edits the custom emoji." +msgstr "" + +#: 9eeff73ac06d4e61bc1a6e1a62c484b2 discord.emoji.Emoji.edit:8 of +msgid "The newly updated emoji is returned." +msgstr "" + +#: b1be944c7f23429e8685fd13dcaf8082 discord.emoji.Emoji.edit:12 of +msgid "The new emoji name." +msgstr "" + +#: 7a765fb4a9714da9b98d6d67185e6ad0 discord.emoji.Emoji.edit:15 of +msgid "" +"A list of roles that can use this emoji. An empty list can be passed to " +"make it available to everyone." +msgstr "" + +#: 9a6b2a99c62d43668117ae80889fa7d7 discord.emoji.Emoji.edit:18 of +msgid "The reason for editing this emoji. Shows up on the audit log." +msgstr "" + +#: b2b4c21efd88459db5e27419833f6c0b discord.emoji.Emoji.edit:21 of +msgid "You are not allowed to edit emojis." +msgstr "" + +#: 29b4b67b766647a38d168494e1cfa898 discord.emoji.Emoji.edit:22 of +msgid "An error occurred editing the emoji." +msgstr "" + +#: 89165b83444e45609f6f4d2352594759 discord.emoji.Emoji.edit:24 of +msgid "The newly updated emoji." +msgstr "" + +#: discord.partial_emoji.PartialEmoji:1 f39d6b6e8b3044fba02ad0bd00f8d7f6 of +msgid "Represents a \"partial\" emoji." +msgstr "" + +#: 5d68be3976954c49971d9c1525d67938 discord.partial_emoji.PartialEmoji:3 of +msgid "This model will be given in two scenarios:" +msgstr "" + +#: 0bd5bd19fa184dfd8018db6e2035c59c discord.partial_emoji.PartialEmoji:5 of +msgid "\"Raw\" data events such as :func:`on_raw_reaction_add`" +msgstr "" + +#: 391bf6eb223945c8bb01c03d034bfa67 discord.partial_emoji.PartialEmoji:6 of +msgid "Custom emoji that the bot cannot see from e.g. :attr:`Message.reactions`" +msgstr "" + +#: 9a2e957e6c0f49419644ab64c951ea5d discord.partial_emoji.PartialEmoji:28 of +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 "" + +#: a7a51594069a438f8acd9bbca571858b discord.partial_emoji.PartialEmoji:36 of +msgid "Whether the emoji is animated or not." +msgstr "" + +#: 23ce1e8f521549d09f31a673daa9a7bf discord.partial_emoji.PartialEmoji:42 of +msgid "The ID of the custom emoji, if applicable." +msgstr "" + +#: 4e68e8b298ae489096c3076a1bad8b8c +#: discord.partial_emoji.PartialEmoji.from_str:1 of +msgid "" +"Converts a Discord string representation of an emoji to a " +":class:`PartialEmoji`." +msgstr "" + +#: b51ef4ea5b024d89a5e6790bee09dbb7 +#: discord.partial_emoji.PartialEmoji.from_str:3 of +msgid "The formats accepted are:" +msgstr "" + +#: d92c174300aa4cb682ca65c243bd2886 +#: discord.partial_emoji.PartialEmoji.from_str:5 of +msgid "``a:name:id``" +msgstr "" + +#: 7e7e15b82eda46b69f622b8d207a7938 +#: discord.partial_emoji.PartialEmoji.from_str:6 of +msgid "````" +msgstr "" + +#: 068b659b889a46e6af015102dbae96ba +#: discord.partial_emoji.PartialEmoji.from_str:7 of +msgid "``name:id``" +msgstr "" + +#: 26451483b7b345a89034cdb9f5bee4a7 +#: discord.partial_emoji.PartialEmoji.from_str:8 of +msgid "``<:name:id>``" +msgstr "" + +#: 0004bb49447249e5a5fb57df035e4181 +#: discord.partial_emoji.PartialEmoji.from_str:10 of +msgid "If the format does not match then it is assumed to be a unicode emoji." +msgstr "" + +#: 682f94e2acc1488989fc736ca8c488b4 +#: discord.partial_emoji.PartialEmoji.from_str:15 of +msgid "The string representation of an emoji." +msgstr "" + +#: 18e7d4d4e1e44093ab57f3037fb1e861 +#: discord.partial_emoji.PartialEmoji.from_str:18 of +msgid "The partial emoji from this string." +msgstr "" + +#: 1eda185924ee4e90b494cdb8b767c886 +#: discord.partial_emoji.PartialEmoji.from_str:19 +#: discord.raw_models.RawReactionActionEvent:32 +#: discord.raw_models.RawReactionClearEmojiEvent:27 of +msgid ":class:`PartialEmoji`" +msgstr "" + +#: 591c4b9c436d4c1e9ea45212c5423557 +#: discord.partial_emoji.PartialEmoji.is_custom_emoji:1 of +msgid "Checks if this is a custom non-Unicode emoji." +msgstr "" + +#: discord.partial_emoji.PartialEmoji.is_unicode_emoji:1 +#: e3856358c4bb4995809b5f40633b3838 of +msgid "Checks if this is a Unicode emoji." +msgstr "" + +#: 53d2c4b30a8b4edab0af741a907d0fe5 discord.PartialEmoji.created_at:1 of +msgid "Returns the emoji's creation time in UTC, or None if Unicode emoji." +msgstr "" + +#: 07396e8cbb974e699724356e6ef8a4f3 discord.PartialEmoji.url:1 of +msgid "Returns the URL of the emoji, if it is custom." +msgstr "" + +#: 1ef7bcbcbc1248db84780ad13df86a2f discord.PartialEmoji.url:3 of +msgid "If this isn't a custom emoji then an empty string is returned" +msgstr "" + +#: ../../api/models.rst:404 a26c3fb538cc4eae85bc9b01ec610081 +msgid "Channels" +msgstr "" + +#: 1cf47d24b7704b8dad853e268978d801 discord.channel.TextChannel:1 of +msgid "Represents a Discord text channel." +msgstr "" + +#: 28cadf33bcaa4284b510b25b352040ba discord.channel.ForumChannel:47 +#: discord.channel.TextChannel:47 of +msgid "The channel's topic. ``None`` if it doesn't exist." +msgstr "" + +#: de489b1b036047c99f633e4585c04d92 discord.channel.ForumChannel:64 +#: discord.channel.TextChannel:60 of +msgid "" +"The last message ID of the message sent to this channel. It may *not* " +"point to an existing or valid message." +msgstr "" + +#: 77a34e9892e94686b1a5737a8469fde8 discord.channel.ForumChannel:71 +#: discord.channel.TextChannel:67 discord.channel.VoiceChannel:91 of +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.CategoryChannel:50 discord.channel.ForumChannel:80 +#: discord.channel.TextChannel:76 fab80e171db445d78867efd958f0536b of +msgid "If the channel is marked as \"not safe for work\"." +msgstr "" + +#: 50ed6ace112b45399a2e24de081c9951 discord.channel.CategoryChannel:54 +#: discord.channel.ForumChannel:84 discord.channel.TextChannel:80 of +msgid "" +"To check if the channel or the guild of that channel are marked as NSFW, " +"consider :meth:`is_nsfw` instead." +msgstr "" + +#: 39c3e1849aea42b1a5e44b6b35945813 discord.channel.ForumChannel:90 +#: discord.channel.TextChannel:86 of +msgid "" +"The default auto archive duration in minutes for threads created in this " +"channel." +msgstr "" + +#: c03fe611956149aba94e3914962f92df discord.channel.ForumChannel:122 +#: discord.channel.TextChannel:102 of +msgid "" +"The initial slowmode delay to set on newly created threads in this " +"channel." +msgstr "" + +#: 59a76c086f30476faaab4e29e854acd4 discord.channel.TextChannel.is_news:1 of +msgid "Checks if the channel is a news/announcements channel." +msgstr "" + +#: 550e2832cc16427dbd968ae91bf8abb0 discord.TextChannel.news:1 of +msgid "Equivalent to :meth:`is_news`." +msgstr "" + +#: 1d1be76fe7b04528b2c3ee29212c3c84 discord.channel.CategoryChannel.edit:8 +#: discord.channel.TextChannel.edit:8 discord.channel.VoiceChannel.edit:8 of +msgid "The ``overwrites`` keyword-only parameter was added." +msgstr "" + +#: 63058ac2db904abc8c2ac2b98b8a38b0 discord.channel.TextChannel.edit:11 of +msgid "The ``type`` keyword-only parameter was added." +msgstr "" + +#: b736174baf734a728df41ae7c8846701 discord.channel.ForumChannel.edit:8 +#: discord.channel.TextChannel.edit:17 of +msgid "The new channel name." +msgstr "" + +#: 795407065f204ab394d5d71e46f4f9e4 discord.channel.ForumChannel.edit:22 +#: discord.channel.TextChannel.edit:31 of +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.TextChannel.edit:34 eb56e78bf81c46edb931dd15152cf3e9 of +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 "" + +#: aec9e5551cb74af8b49d87aceac3742b discord.channel.ForumChannel.edit:30 +#: discord.channel.TextChannel.edit:43 of +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 "" + +#: 2b1b27b29de74dada9a54eb48be4b94e discord.channel.ForumChannel.edit:33 +#: discord.channel.TextChannel.edit:46 of +msgid "" +"The new default slowmode delay in seconds for threads created in this " +"channel. .. versionadded:: 2.3" +msgstr "" + +#: a07120a4d00149718bbcb809103cc6a7 discord.channel.ForumChannel.edit:33 +#: discord.channel.TextChannel.edit:46 of +msgid "" +"The new default slowmode delay in seconds for threads created in this " +"channel." +msgstr "" + +#: b15a139dcf17430b9bda24a4052d3504 discord.channel.TextChannel.edit:51 of +msgid "" +"The newly edited text channel. If the edit was only positional then " +"``None`` is returned instead." +msgstr "" + +#: 9e006a134f6d4a5c98852ac3f6ee4da7 discord.channel.TextChannel.edit:53 of +msgid "Optional[:class:`.TextChannel`]" +msgstr "" + +#: 0fc3c3b030404e49b32d2e3452611428 discord.channel.ForumChannel.edit:60 +#: discord.channel.TextChannel.edit:55 of +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 "" + +#: be26239c94d04849849334d27feda04c discord.channel.TextChannel.create_thread:3 +#: of +msgid "Creates a thread in this text channel." +msgstr "" + +#: discord.channel.ForumChannel.create_thread:5 +#: discord.channel.TextChannel.create_thread:5 fbf735600cc44f92ab131b1a3b735685 +#: of +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 "" + +#: 515f99b3674c4b6296c673589b16743a +#: discord.channel.TextChannel.create_thread:14 of +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 "" + +#: 79387b6c65034148b278684aec8e838f +#: discord.channel.TextChannel.create_thread:23 of +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 "" + +#: 3a1d717daba84e828fbd005b5afebc7d +#: discord.channel.TextChannel.create_thread:28 of +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 "" + +#: 799bd650e7ad4728a8c423f25d53bc64 +#: discord.channel.TextChannel.create_thread:32 of +msgid "" +"Whether non-moderators can add other non-moderators to this thread. Only " +"available for private threads, where it defaults to True." +msgstr "" + +#: 0102ac1b4d7c4838bb44d69f8d60d28c +#: discord.channel.ForumChannel.create_thread:64 +#: discord.channel.TextChannel.create_thread:36 of +msgid "The reason for creating a new thread. Shows up on the audit log." +msgstr "" + +#: discord.channel.ForumChannel.create_thread:67 +#: discord.channel.TextChannel.create_thread:39 +#: fd6df08adf534a90b14c140cbd59529b of +msgid "The created thread" +msgstr "" + +#: discord.channel.ForumChannel.create_thread:71 +#: discord.channel.TextChannel.create_thread:43 +#: f3041c1cfd4f4cd0b84d05aec3166d18 of +msgid "Starting the thread failed." +msgstr "" + +#: 53020510c3264070868a136e9d819a55 +#: discord.channel._TextChannel.archived_threads:1 of +msgid "" +"Returns an :class:`~discord.AsyncIterator` that iterates over all " +"archived threads in the guild." +msgstr "" + +#: discord.channel._TextChannel.archived_threads:3 +#: eade018b8df94654aade6c41b12a606a of +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 "" + +#: d96d787d544246e8955385af1e212084 +#: discord.channel._TextChannel.archived_threads:9 of +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 "" + +#: 18c4a1c74591444e8ab0eadccd6068a4 +#: discord.channel._TextChannel.archived_threads:14 of +msgid "Retrieve archived channels before the given date or ID." +msgstr "" + +#: 47e0f3baf0144f1ba8b3c4d5ef0bfe34 +#: discord.channel._TextChannel.archived_threads:17 of +msgid "Whether to retrieve private archived threads." +msgstr "" + +#: 53a32620bfa14fbb874c660624fe5617 +#: discord.channel._TextChannel.archived_threads:20 of +msgid "" +"Whether to retrieve private archived threads that you've joined. You " +"cannot set ``joined`` to ``True`` and ``private`` to ``False``." +msgstr "" + +#: 7893ab8ad95343709b667196bff9d808 +#: discord.channel._TextChannel.archived_threads:24 of +msgid ":class:`Thread` -- The archived threads." +msgstr "" + +#: 2d87b8ad74d74790955f8a8f7521ae0c +#: discord.channel._TextChannel.archived_threads:26 of +msgid "You do not have permissions to get archived threads." +msgstr "" + +#: 00056e8969fc401c9d8d3a593d399d7b +#: discord.channel._TextChannel.archived_threads:27 of +msgid "The request to get the archived threads failed." +msgstr "" + +#: 2e2ff553e8684e86a18df67eca7e1566 +#: discord.channel._TextChannel.archived_threads:29 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.ArchivedThreadIterator\\``" +msgstr "" + +#: dd7fe9e0e5104c1bb97c25dc8254e260 discord.channel._TextChannel.follow:1 of +msgid "Follows a channel using a webhook." +msgstr "" + +#: 20936b5e624649fe9dc85c8cc9da0a31 discord.channel._TextChannel.follow:3 of +msgid "Only news channels can be followed." +msgstr "" + +#: 4e6a755a76a24f0dac7823c73d8eeed5 discord.channel._TextChannel.follow:7 of +msgid "" +"The webhook returned will not provide a token to do webhook actions, as " +"Discord does not provide it." +msgstr "" + +#: 3a6238bf9ce5438aa21950c2d2f44a49 discord.channel._TextChannel.follow:13 of +msgid "The channel you would like to follow from." +msgstr "" + +#: 0e891d00bbcf4a789ddad17a6d35832c discord.channel._TextChannel.follow:16 of +msgid "" +"The reason for following the channel. Shows up on the destination guild's" +" audit log. .. versionadded:: 1.4" +msgstr "" + +#: 7c0e19b5677c49e9ace5407d47115d0c discord.channel._TextChannel.follow:16 of +msgid "" +"The reason for following the channel. Shows up on the destination guild's" +" audit log." +msgstr "" + +#: 6e59b434e5ea44f28ea64487973c3373 discord.channel._TextChannel.follow:24 of +msgid "Following the channel failed." +msgstr "" + +#: aafe6d980d8c46cd89c2a0d6c857ced5 discord.channel._TextChannel.follow:25 of +msgid "You do not have the permissions to create a webhook." +msgstr "" + +#: d3a81ce636a44a9e88b3eea449b50f70 discord.ForumChannel.members:1 +#: discord.TextChannel.members:1 of +msgid "Returns all members that can see this channel." +msgstr "" + +#: discord.ForumChannel.threads:1 discord.TextChannel.threads:1 +#: f4fe0d12fcea454aa752afbccfa50240 of +msgid "Returns all the threads that you can see." +msgstr "" + +#: 3d9ee502ea0640118b0f4cf0cbb8e626 discord.channel.ForumChannel:1 of +msgid "Represents a Discord forum channel." +msgstr "" + +#: 4b34ca608be34c5597336cc69ea91cf2 discord.channel.ForumChannel:51 of +msgid ":attr:`guidelines` exists as an alternative to this attribute." +msgstr "" + +#: b083e6a86b634b1894c54f243b988735 discord.channel.ForumChannel:106 of +msgid "The set of tags that can be used in a forum channel." +msgstr "" + +#: cae1b545239a43b6aa72e818246d1b4a discord.channel.ForumChannel:114 of +msgid "The default sort order type used to order posts in this channel." +msgstr "" + +#: 163ca8890cd8438d88981ac907297672 discord.channel.ForumChannel:118 of +msgid "Optional[:class:`SortOrder`]" +msgstr "" + +#: 79295ddcd99444a28326d80b16bcb8e8 discord.channel.ForumChannel:130 of +msgid "The default forum reaction emoji." +msgstr "" + +#: 301a6e58f833446e89b741b0196dbd33 discord.channel.ForumChannel:134 of +msgid "Optional[:class:`str` | :class:`discord.Emoji`]" +msgstr "" + +#: 718249dfc3d4489791382f41a839e150 discord.ForumChannel.guidelines:1 of +msgid "The channel's guidelines. An alias of :attr:`topic`." +msgstr "" + +#: 8dae47fc78014be6bdc6ca09757b5007 discord.ForumChannel.requires_tag:1 of +msgid "" +"Whether a tag is required to be specified when creating a thread in this " +"forum channel." +msgstr "" + +#: discord.ForumChannel.requires_tag:3 ef72d447ccb444db82cfbcc3779bc392 of +msgid "Tags are specified in :attr:`applied_tags`." +msgstr "" + +#: 790f262d27f049caa2b496ed4373523e discord.channel.ForumChannel.get_tag:1 of +msgid "" +"Returns the :class:`ForumTag` from this forum channel with the given ID, " +"if any." +msgstr "" + +#: 193050a1c4bb4382bbbf16fdfabd0435 discord.channel.ForumChannel.get_tag:8 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\`" +" \\| \\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: c16a388e069d4526b2674948441ecfbf discord.channel.ForumChannel.edit:37 of +msgid "" +"The default sort order type to use to order posts in this channel. .. " +"versionadded:: 2.3" +msgstr "" + +#: a743fff2abf44d978975cbef0b68d112 discord.channel.ForumChannel.edit:37 of +msgid "The default sort order type to use to order posts in this channel." +msgstr "" + +#: 60f31611259c42a69519afb9d55367d7 discord.channel.ForumChannel.edit:41 of +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.ForumChannel.edit:47 f1f62f3c054949af950dbe405e52b553 of +msgid "" +"The set of tags that can be used in this channel. Must be less than `20`." +" .. versionadded:: 2.3" +msgstr "" + +#: 0b5e325a38434b46b84bf970a8b2c356 discord.channel.ForumChannel.edit:47 of +msgid "The set of tags that can be used in this channel. Must be less than `20`." +msgstr "" + +#: 7efd5463c5cf4f67b497827921ab640b discord.channel.ForumChannel.edit:51 of +msgid "" +"Whether a tag should be required to be specified when creating a thread " +"in this channel. .. versionadded:: 2.3" +msgstr "" + +#: 46f1ffe182e64c9ba4a690d9f6460f58 discord.channel.ForumChannel.edit:51 of +msgid "" +"Whether a tag should be required to be specified when creating a thread " +"in this channel." +msgstr "" + +#: 794542333a414e1999fcca0dd25f516b discord.channel.ForumChannel.edit:56 of +msgid "" +"The newly edited forum channel. If the edit was only positional then " +"``None`` is returned instead." +msgstr "" + +#: discord.channel.ForumChannel.edit:58 e6117095200744589214d6b9a9606502 of +msgid "Optional[:class:`.ForumChannel`]" +msgstr "" + +#: 20d73b30bc03404db6cebb419fc013d2 +#: discord.channel.ForumChannel.create_thread:3 of +msgid "Creates a thread in this forum channel." +msgstr "" + +#: 2b7967c4efa54bc092954aa4b4790943 +#: discord.channel.ForumChannel.create_thread:32 of +msgid "The time to wait before deleting the thread." +msgstr "" + +#: discord.channel.ForumChannel.create_thread:50 +#: fd82b9157d3e4afbbbc2d483895a3773 of +msgid "A list of tags to apply to the new thread." +msgstr "" + +#: 5812e2412483464bb0330be789353b43 +#: discord.channel.ForumChannel.create_thread:57 of +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 "" + +#: 176b5d8e42a149aca568b2ab47d6d85d discord.channel.VoiceChannel:1 of +msgid "Represents a Discord guild voice channel." +msgstr "" + +#: 74371b3956454f0dbed25b2bb2c7a21d discord.channel.VoiceChannel:83 of +msgid "" +"The ID of the last message sent to this channel. It may not always point " +"to an existing or valid message." +msgstr "" + +#: 43512047185a49aabc1a03e1af965a58 discord.channel.VoiceChannel:102 of +msgid "The channel's status, if set." +msgstr "" + +#: 0a27deab81dd461da942e57ef12425b8 discord.channel.VoiceChannel.edit:16 of +msgid "The new channel's bitrate." +msgstr "" + +#: 9b247bddd4ac418d8e12d122b4570e72 discord.channel.VoiceChannel.edit:18 of +msgid "The new channel's user limit." +msgstr "" + +#: 1f0f56119b9e41deb242811f7c8ca21f discord.channel.VoiceChannel.edit:33 of +msgid "" +"The new region for the voice channel's voice communication. A value of " +"``None`` indicates automatic voice region detection. .. versionadded:: " +"1.7" +msgstr "" + +#: beddf16d24b343009db491a281c45474 discord.channel.VoiceChannel.edit:33 of +msgid "" +"The new region for the voice channel's voice communication. A value of " +"``None`` indicates automatic voice region detection." +msgstr "" + +#: 8429bc1f3b3d4ad6a65ac7f3de8ef5f1 discord.channel.VoiceChannel.edit:43 of +msgid "" +"The newly edited voice channel. If the edit was only positional then " +"``None`` is returned instead." +msgstr "" + +#: 477c17bee0a64b0e8d0b82aa34a7a062 discord.channel.VoiceChannel.edit:45 of +msgid "Optional[:class:`.VoiceChannel`]" +msgstr "" + +#: d817b78eacdf48e6812d05f13985393f +#: discord.channel.VoiceChannel.create_activity_invite:3 of +msgid "A shortcut method that creates an instant activity invite." +msgstr "" + +#: 71034e6b918e41a88b295c40378de972 +#: discord.channel.VoiceChannel.create_activity_invite:5 of +msgid "" +"You must have the :attr:`~discord.Permissions.start_embedded_activities` " +"permission to do this." +msgstr "" + +#: b79c6282c8e440628022aaa3a2d90857 +#: discord.channel.VoiceChannel.create_activity_invite:9 of +msgid "" +"The activity to create an invite for which can be an application id as " +"well." +msgstr "" + +#: 403a4833625a48e8b746bd791d33f1b5 +#: discord.channel.VoiceChannel.create_activity_invite:30 of +msgid "If the activity is not a valid activity or application id." +msgstr "" + +#: 1cd7a8f6f43b4fa4ad315833918a527f discord.channel.VoiceChannel.set_status:3 +#: of +msgid "Sets the status of the voice channel." +msgstr "" + +#: discord.channel.VoiceChannel.set_status:5 f8d1b48374784102ba343b5bf2ed84bf +#: of +msgid "" +"You must have the :attr:`~Permissions.set_voice_channel_status` " +"permission to use this." +msgstr "" + +#: 29ad9a928c66456baf52fec8cf63ba65 discord.channel.VoiceChannel.set_status:8 +#: of +msgid "The new status." +msgstr "" + +#: 66a3cccc28684da3a091335c07727ef8 discord.channel.VoiceChannel.set_status:11 +#: of +msgid "The reason for setting the status. Shows up on the audit log." +msgstr "" + +#: 4667178d35264140a0c30c1a62d3e94f discord.channel.VoiceChannel.set_status:14 +#: of +msgid "You do not have proper permissions to set the status." +msgstr "" + +#: discord.channel.VoiceChannel.set_status:15 e577ec72d87b44f997070b042dfd5927 +#: of +msgid "Setting the status failed." +msgstr "" + +#: a9d340ffed6841aea33ff4985cddcbcc discord.channel.CategoryChannel:1 of +msgid "Represents a Discord channel category." +msgstr "" + +#: 7c1573d6fd0245109df230dd8ecbf388 discord.channel.CategoryChannel:3 of +msgid "These are useful to group channels to logical compartments." +msgstr "" + +#: 63e3c6221a184d2b9688c0e5bc1bd14e discord.channel.CategoryChannel:17 of +msgid "Returns the category's hash." +msgstr "" + +#: 936f63cab2574f28a0c5410be52d8880 discord.channel.CategoryChannel:21 of +msgid "Returns the category's name." +msgstr "" + +#: c1df12ed1a724f27be3f2c4803917b8a discord.channel.CategoryChannel:25 of +msgid "The category name." +msgstr "" + +#: 911563f1a0a1497593ab58c660c51247 discord.channel.CategoryChannel:31 of +msgid "The guild the category belongs to." +msgstr "" + +#: 9eaf9fd54ae14ef49c4283bd42bdc435 discord.channel.CategoryChannel:37 of +msgid "The category channel ID." +msgstr "" + +#: c80d0d015c2a49e2bf6092504cb5d3d2 discord.channel.CategoryChannel:43 of +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.CategoryChannel.is_nsfw:1 e9979dc9e1ca4edf9bbab4d0d9d940ff +#: of +msgid "Checks if the category is NSFW." +msgstr "" + +#: discord.channel.CategoryChannel.edit:14 ef4264b15f4a43e9bd1f8cbd08812001 of +msgid "The new category's name." +msgstr "" + +#: 33ce503ce56e47ccb5a39480e2a788ff discord.channel.CategoryChannel.edit:16 of +msgid "The new category's position." +msgstr "" + +#: a435247eccb243ac905d04ca7c85813e discord.channel.CategoryChannel.edit:18 of +msgid "To mark the category as NSFW or not." +msgstr "" + +#: 997e5dc2ce0c405a80238b62e7946484 discord.channel.CategoryChannel.edit:21 of +msgid "The reason for editing this category. Shows up on the audit log." +msgstr "" + +#: 73ae0571d02d466cac576ee0903571f3 discord.channel.CategoryChannel.edit:26 of +msgid "" +"The newly edited category channel. If the edit was only positional then " +"``None`` is returned instead." +msgstr "" + +#: discord.channel.CategoryChannel.edit:28 ee95be99ea4940da9448b273185c78c0 of +msgid "Optional[:class:`.CategoryChannel`]" +msgstr "" + +#: 480b9252595a4ed4b1b95eb359604cbd discord.channel.CategoryChannel.edit:30 of +msgid "If position is less than 0 or greater than the number of categories." +msgstr "" + +#: c2f46b9891fe40ada146763803d531ed discord.channel.CategoryChannel.edit:31 of +msgid "You do not have permissions to edit the category." +msgstr "" + +#: c5809c792a1740ffb03db9155e4d695c discord.channel.CategoryChannel.edit:32 of +msgid "Editing the category failed." +msgstr "" + +#: 4f08c36f4ffc40d4badff0801f721889 discord.CategoryChannel.channels:1 of +msgid "Returns the channels that are under this category." +msgstr "" + +#: c90b3a756a4048228b28ad9566918ebb discord.CategoryChannel.channels:3 of +msgid "" +"These are sorted by the official Discord UI, which places voice channels " +"below the text channels." +msgstr "" + +#: 48caa2a52a4144049a492c2f01a7eff0 discord.CategoryChannel.text_channels:1 of +msgid "Returns the text channels that are under this category." +msgstr "" + +#: 8f45774d9356475e874aee31fda3247d discord.CategoryChannel.voice_channels:1 of +msgid "Returns the voice channels that are under this category." +msgstr "" + +#: 7569c68aba4545afb640a92e84fb4953 discord.CategoryChannel.stage_channels:1 of +msgid "Returns the stage channels that are under this category." +msgstr "" + +#: aa08e4cb2f0940eb8d70ec09350d030d discord.CategoryChannel.forum_channels:1 of +msgid "Returns the forum channels that are under this category." +msgstr "" + +#: 0bcafb6404fc4a5b9e418a9dcff0bc95 +#: discord.channel.CategoryChannel.create_text_channel:3 of +msgid "" +"A shortcut method to :meth:`Guild.create_text_channel` to create a " +":class:`TextChannel` in the category." +msgstr "" + +#: c15aa9c3711542d79aab55cbf96ac79d +#: discord.channel.CategoryChannel.create_voice_channel:3 of +msgid "" +"A shortcut method to :meth:`Guild.create_voice_channel` to create a " +":class:`VoiceChannel` in the category." +msgstr "" + +#: discord.channel.CategoryChannel.create_stage_channel:3 +#: e44eb392ee574f87bf54665424c1f131 of +msgid "" +"A shortcut method to :meth:`Guild.create_stage_channel` to create a " +":class:`StageChannel` in the category." +msgstr "" + +#: c39adbc2bbd645db8ff6528b2cacb1f0 +#: discord.channel.CategoryChannel.create_forum_channel:3 of +msgid "" +"A shortcut method to :meth:`Guild.create_forum_channel` to create a " +":class:`ForumChannel` in the category." +msgstr "" + +#: 9bcfa7dd51134c0c971d4c30899cbb1e discord.channel.DMChannel:1 of +msgid "Represents a Discord direct message channel." +msgstr "" + +#: 7241a3894f7647c99e02bf6dc83f92d7 discord.channel.DMChannel:19 +#: discord.channel.GroupChannel:19 of +msgid "Returns a string representation of the channel" +msgstr "" + +#: c5d76213f75c4f70b94ea6aa3082417c discord.channel.DMChannel:23 of +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 "" + +#: 07d26c6d19384c6f86ae530ce8a92741 discord.channel.DMChannel:31 +#: discord.channel.GroupChannel:29 of +msgid "The user presenting yourself." +msgstr "" + +#: aea97e16a41843c3a2d833abae3ca0a2 discord.channel.DMChannel:37 of +msgid "The direct message channel ID." +msgstr "" + +#: cec5a91670184d8594a8168b49e63c77 discord.DMChannel.created_at:1 of +msgid "Returns the direct message channel's creation time in UTC." +msgstr "" + +#: 2e3a7be955924d12b02a8a67a62243ce discord.channel.DMChannel.permissions_for:1 +#: discord.channel.GroupChannel.permissions_for:1 of +msgid "Handles permission resolution for a :class:`User`." +msgstr "" + +#: 8a6bd8833e2e4eb1b5b91fec38efc1a7 discord.channel.DMChannel.permissions_for:3 +#: discord.channel.GroupChannel.permissions_for:3 of +msgid "This function is there for compatibility with other channel types." +msgstr "" + +#: 5bd63434d23d47ef9405d7cd8f3c0792 discord.channel.DMChannel.permissions_for:5 +#: discord.channel.GroupChannel.permissions_for:5 of +msgid "Actual direct messages do not really have the concept of permissions." +msgstr "" + +#: b7f135a3e450454281ecbc95203edfe9 discord.channel.DMChannel.permissions_for:7 +#: discord.channel.GroupChannel.permissions_for:7 of +msgid "This returns all the Text related permissions set to ``True`` except:" +msgstr "" + +#: 37714f0cf619431f859f64895e535122 discord.channel.DMChannel.permissions_for:9 +#: discord.channel.GroupChannel.permissions_for:9 of +msgid "" +":attr:`~Permissions.send_tts_messages`: You cannot send TTS messages in a" +" DM." +msgstr "" + +#: 0fd9fff73f23420c954048e6c55bbdae +#: discord.channel.DMChannel.permissions_for:10 +#: discord.channel.GroupChannel.permissions_for:10 of +msgid "" +":attr:`~Permissions.manage_messages`: You cannot delete others messages " +"in a DM." +msgstr "" + +#: 920a461af4a3409b80dd9b62fe593c74 +#: discord.channel.DMChannel.permissions_for:13 of +msgid "" +"The user to check permissions for. This parameter is ignored but kept for" +" compatibility with other ``permissions_for`` methods." +msgstr "" + +#: 026abc8c403d492f8f529f5167663614 +#: discord.channel.DMChannel.permissions_for:17 of +msgid "The resolved permissions." +msgstr "" + +#: 298831af02f147868ac4921ae73b06f5 +#: discord.channel.DMChannel.permissions_for:18 +#: discord.channel.GroupChannel.permissions_for:19 of +msgid ":class:`Permissions`" +msgstr "" + +#: 587dfd4e44d94e0b83037e4ac8322626 discord.channel.GroupChannel:1 of +msgid "Represents a Discord group channel." +msgstr "" + +#: d0cd14f31ea34431802b867a7472c004 discord.channel.GroupChannel:23 of +msgid "The users you are participating with in the group channel." +msgstr "" + +#: 74146d0fcd3c407c9fc17f2a05fa99de discord.channel.GroupChannel:25 of +msgid "List[:class:`User`]" +msgstr "" + +#: 7121cf484eba4970baaae8e6ee478918 discord.channel.GroupChannel:35 of +msgid "The group channel ID." +msgstr "" + +#: d5f6eb22ab8d44a981bfc691f53389f8 discord.channel.GroupChannel:41 of +msgid "The user that owns the group channel." +msgstr "" + +#: c7b8c4b9b857405a99a74a647c686d89 discord.channel.GroupChannel:47 of +msgid "The owner ID that owns the group channel." +msgstr "" + +#: c8b1d45e983b4d1da2b160d717b4ff0d discord.channel.GroupChannel:55 of +msgid "The group channel's name if provided." +msgstr "" + +#: 30d7f57d10b64076a00032ca63ac35d0 discord.GroupChannel.icon:1 of +msgid "Returns the channel's icon asset if available." +msgstr "" + +#: 7c9677f5993443998c6a715088f59cc9 +#: discord.channel.GroupChannel.permissions_for:12 of +msgid "This also checks the kick_members permission if the user is the owner." +msgstr "" + +#: 2293199313574b40a04178d0acff383f +#: discord.channel.GroupChannel.permissions_for:15 of +msgid "The user to check permissions for." +msgstr "" + +#: 0185dc41947d440b9deb847368a4ad47 +#: discord.channel.GroupChannel.permissions_for:18 of +msgid "The resolved permissions for the user." +msgstr "" + +#: 3d3e36f11c1c49d094ec86d55a8aa936 discord.channel.GroupChannel.leave:3 of +msgid "Leave the group." +msgstr "" + +#: 69e56047815d4e7f8cc89dc9d6a54e5a discord.channel.GroupChannel.leave:5 of +msgid "If you are the only one in the group, this deletes it as well." +msgstr "" + +#: dfeb38c2641d49a7b989615d03053502 discord.channel.GroupChannel.leave:7 of +msgid "Leaving the group failed." +msgstr "" + +#: ../../api/models.rst:464 209e72461fff4eaeb235cc21aa5f1997 +msgid "Stickers" +msgstr "" + +#: 3f954ebeebec484e93c4d6d0bc7d901f discord.sticker.Sticker:1 of +msgid "Represents a sticker." +msgstr "" + +#: d7e569b01dcb4dcb8c79e2a0ca7cd9b0 discord.sticker.GuildSticker:9 +#: discord.sticker.StandardSticker:9 discord.sticker.Sticker:9 of +msgid "Returns the name of the sticker." +msgstr "" + +#: 9f3b6e968acc47f09ad051f70e94b1d1 discord.sticker.GuildSticker:13 +#: discord.sticker.StandardSticker:13 discord.sticker.Sticker:13 of +msgid "Checks if the sticker is equal to another sticker." +msgstr "" + +#: 8d7c7c56f12947279193129bd979cf00 discord.sticker.GuildSticker:17 +#: discord.sticker.StandardSticker:17 discord.sticker.Sticker:17 of +msgid "Checks if the sticker is not equal to another sticker." +msgstr "" + +#: discord.sticker.GuildSticker:21 discord.sticker.StandardSticker:21 +#: discord.sticker.Sticker:21 discord.sticker.StickerItem:21 +#: e70e6c2d80344d49b442735fce54a425 of +msgid "The sticker's name." +msgstr "" + +#: 39127218ef194b2580d66ec98a1b28ef discord.sticker.GuildSticker:27 +#: discord.sticker.StandardSticker:27 discord.sticker.Sticker:27 +#: discord.sticker.StickerItem:27 of +msgid "The id of the sticker." +msgstr "" + +#: dffad35450864bf1ae2ea28d86a0cbe2 discord.sticker.GuildSticker:33 +#: discord.sticker.StandardSticker:33 discord.sticker.Sticker:33 of +msgid "The description of the sticker." +msgstr "" + +#: 6bad54d4ee5a461daf1e24145a5bf9b4 discord.sticker.StandardSticker:39 +#: discord.sticker.Sticker:39 of +msgid "The id of the sticker's pack." +msgstr "" + +#: 5e0919e094cc42b68aecea6053e15de7 discord.sticker.GuildSticker:39 +#: discord.sticker.StandardSticker:45 discord.sticker.Sticker:45 +#: discord.sticker.StickerItem:33 of +msgid "The format for the sticker's image." +msgstr "" + +#: 0947335f49564c9a9845a931f348d155 discord.sticker.GuildSticker:41 +#: discord.sticker.StandardSticker:47 discord.sticker.Sticker:47 +#: discord.sticker.StickerItem:35 of +msgid ":class:`StickerFormatType`" +msgstr "" + +#: discord.sticker.Sticker:51 discord.sticker.StickerItem:39 +#: eb58efe02ae4445b8b7404efa57f07f4 of +msgid "The URL for the sticker's image." +msgstr "" + +#: b017f2694c78454e89e712049f8fc4c0 discord.Sticker.created_at:1 of +msgid "Returns the sticker's creation time in UTC." +msgstr "" + +#: d4bf0a56f70a4156b6ffafbaf1a1afd1 discord.sticker.StickerPack:1 of +msgid "Represents a sticker pack." +msgstr "" + +#: 7c3867828aa74c04afe3890251c409ad discord.sticker.StickerPack:9 of +msgid "Returns the name of the sticker pack." +msgstr "" + +#: 2e25f7b511344bf0ac7e847f84491b10 discord.sticker.StickerPack:13 of +msgid "Checks if the sticker pack is equal to another sticker pack." +msgstr "" + +#: a01a06b8cb664d62af6c4e831878f7a3 discord.sticker.StickerPack:17 of +msgid "Checks if the sticker pack is not equal to another sticker pack." +msgstr "" + +#: ae74f28032104407a1c56df0f1ad5552 discord.sticker.StickerPack:21 of +msgid "The name of the sticker pack." +msgstr "" + +#: ca4212b8b0034d669bd2d68773ad42bb discord.sticker.StickerPack:27 of +msgid "The description of the sticker pack." +msgstr "" + +#: 2fa56ee1b62f4cab80779d0358130504 discord.sticker.StickerPack:33 of +msgid "The id of the sticker pack." +msgstr "" + +#: 3464c8109245401db50402e242ad469c discord.sticker.StickerPack:39 of +msgid "The stickers of this sticker pack." +msgstr "" + +#: 12af66b1cde54e739d49c8abdd86adc7 discord.sticker.StickerPack:41 of +msgid "List[:class:`StandardSticker`]" +msgstr "" + +#: 7e61663b01f54ce58a991cb28b24a3fb discord.sticker.StickerPack:45 of +msgid "The SKU ID of the sticker pack." +msgstr "" + +#: discord.sticker.StickerPack:51 e5656f2a93a04683b9380630ab8ea347 of +msgid "The ID of the sticker used for the cover of the sticker pack." +msgstr "" + +#: 5429b72888314c36b9c4115c199cb57e discord.sticker.StickerPack:57 of +msgid "The sticker used for the cover of the sticker pack." +msgstr "" + +#: d23dcc1a3c8f460291e14581057aa60f discord.sticker.StickerPack:59 of +msgid ":class:`StandardSticker`" +msgstr "" + +#: d4b50052f21143d0b34a3b0349704a5e discord.StickerPack.banner:1 of +msgid "The banner asset of the sticker pack." +msgstr "" + +#: 7d3ec7ac0f5d4d02a92463f865795cac discord.sticker.StickerItem:1 of +msgid "Represents a sticker item." +msgstr "" + +#: aeebdd818d504901bd5f56b41ddea95e discord.sticker.StickerItem:9 of +msgid "Returns the name of the sticker item." +msgstr "" + +#: 92d1d9b5f6f549d7a52b697301991631 discord.sticker.StickerItem:13 of +msgid "Checks if the sticker item is equal to another sticker item." +msgstr "" + +#: db2f4c0ca4824bed9036a3918862e12a discord.sticker.StickerItem:17 of +msgid "Checks if the sticker item is not equal to another sticker item." +msgstr "" + +#: bc424429bee740d58c7f5c49268a1a41 discord.sticker.StickerItem.fetch:3 of +msgid "Attempts to retrieve the full sticker data of the sticker item." +msgstr "" + +#: aab251a927704361a8eb0a7bac7c1fec discord.sticker.StickerItem.fetch:6 of +msgid "Union[:class:`StandardSticker`, :class:`GuildSticker`]" +msgstr "" + +#: 53245ab104a4472a9bbd9315097855bd discord.sticker.StickerItem.fetch:8 of +msgid "Retrieving the sticker failed." +msgstr "" + +#: d438c58c4df44c4cb5fbd8aebc4006ac discord.sticker.StandardSticker:1 of +msgid "Represents a sticker that is found in a standard sticker pack." +msgstr "" + +#: 20f99ef51faa468db4bb70032e2cdcff discord.sticker.StandardSticker:51 of +msgid "A list of tags for the sticker." +msgstr "" + +#: 00a3cf8e2d85423291148ef40b05a77c discord.sticker.StandardSticker:57 of +msgid "The sticker's sort order within its pack." +msgstr "" + +#: a4c42c93c98c4f6ea491f30ed70e3170 discord.sticker.StandardSticker.pack:3 of +msgid "Retrieves the sticker pack that this sticker belongs to." +msgstr "" + +#: 73939f1df54b4f518d868e7aa7a100da discord.sticker.StandardSticker.pack:5 of +msgid "The retrieved sticker pack." +msgstr "" + +#: 301b3051d4f44a809194f97c0341c309 discord.sticker.StandardSticker.pack:6 of +msgid ":class:`StickerPack`" +msgstr "" + +#: 74bf6b15cbab4cccbe0810c233d03692 discord.sticker.StandardSticker.pack:8 of +msgid "The corresponding sticker pack was not found." +msgstr "" + +#: ae617817e9644df1884c000f7b6bb2a1 discord.sticker.StandardSticker.pack:9 of +msgid "Retrieving the sticker pack failed." +msgstr "" + +#: 2211977338284dabb4ddd3a5298bc2ee discord.sticker.GuildSticker:1 of +msgid "Represents a sticker that belongs to a guild." +msgstr "" + +#: 008d75de22e74fcbb1201a5d468699bf discord.sticker.GuildSticker:45 of +msgid "Whether this sticker is available for use." +msgstr "" + +#: bf5e70691eb048d29e5620a2952c0e85 discord.sticker.GuildSticker:51 of +msgid "The ID of the guild that this sticker is from." +msgstr "" + +#: 963a7a7f1b5a409987d9b1e2032a1e60 discord.sticker.GuildSticker:57 of +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 "" + +#: 33b4d3cc6f954c71a16ce001c71ed4bc discord.sticker.GuildSticker:64 of +msgid "The name of a unicode emoji that represents this sticker." +msgstr "" + +#: ../../docstring 32601811227a49d499e3c7a5322cf44b +#: discord.GuildSticker.guild:1 of +msgid "" +"The guild that this sticker is from. Could be ``None`` if the bot is not " +"in the guild." +msgstr "" + +#: 630cb9a5fcdb4f388ddfc0cde1b04c9d discord.sticker.GuildSticker.edit:3 of +msgid "Edits a :class:`GuildSticker` for the guild." +msgstr "" + +#: 2c3c71774c97407c95bf4470d6d5e978 discord.sticker.GuildSticker.edit:6 of +msgid "The sticker's new name. Must be at least 2 characters." +msgstr "" + +#: 67bff4eece154a76ae3986ffd8f99287 discord.sticker.GuildSticker.edit:9 of +msgid "The sticker's new description. Can be ``None``." +msgstr "" + +#: 74ac0f952f264e6b857c92b03be46775 discord.sticker.GuildSticker.edit:15 of +msgid "The reason for editing this sticker. Shows up on the audit log." +msgstr "" + +#: a88be413ad224db0a16c5d0076d53205 discord.sticker.GuildSticker.edit:18 of +msgid "The newly modified sticker." +msgstr "" + +#: discord.sticker.GuildSticker.edit:21 e271c8e5775b42dabbd868b1f3142981 of +msgid "You are not allowed to edit stickers." +msgstr "" + +#: 417424ce11a344fba8235344e4fd0d5e discord.sticker.GuildSticker.edit:22 of +msgid "An error occurred editing the sticker." +msgstr "" + +#: ../../api/models.rst:492 fa3209921266443fb19f43b396c4c0a6 +msgid "Events" +msgstr "" + +#: b79f190d2d0948f089814f349c0d9261 +#: discord.raw_models.AutoModActionExecutionEvent:1 of +msgid "Represents the payload for an :func:`on_auto_moderation_action_execution`" +msgstr "" + +#: discord.raw_models.AutoModActionExecutionEvent:7 +#: f59bbb3db9c544e1ad828a596a22de9e of +msgid "The action that was executed." +msgstr "" + +#: 21fa4c5e146c472590b1421c4f265e69 +#: discord.raw_models.AutoModActionExecutionEvent:9 of +msgid ":class:`AutoModAction`" +msgstr "" + +#: 9d152ca0b57c4831a63ac4f3ba694587 +#: discord.raw_models.AutoModActionExecutionEvent:13 of +msgid "The ID of the rule that the action belongs to." +msgstr "" + +#: 0938f0fdbfc14cbfb9a98c6e970f09f0 +#: discord.raw_models.AutoModActionExecutionEvent:19 of +msgid "The category of trigger the rule belongs to." +msgstr "" + +#: 5903ec8f839b4c2d9dc2d902b5329cf4 +#: discord.raw_models.AutoModActionExecutionEvent:27 of +msgid "The ID of the guild that the action was executed in." +msgstr "" + +#: c1359aa34c5d40eaac3b6c9def40e077 +#: discord.raw_models.AutoModActionExecutionEvent:33 of +msgid "The guild that the action was executed in, if cached." +msgstr "" + +#: 31088a4e5f2646258619cfbe0fe78c89 +#: discord.raw_models.AutoModActionExecutionEvent:39 of +msgid "The ID of the user that triggered the action." +msgstr "" + +#: 22f1087adfc24aa8a6944aef5c2cd09d +#: discord.raw_models.AutoModActionExecutionEvent:45 of +msgid "The member that triggered the action, if cached." +msgstr "" + +#: 58e17c63ce814fd58836e40f1411127e +#: discord.raw_models.AutoModActionExecutionEvent:51 of +msgid "The ID of the channel in which the member's content was posted." +msgstr "" + +#: dc0207d3dd944e11bcd1577a7aa4e96d +#: discord.raw_models.AutoModActionExecutionEvent:57 of +msgid "The channel in which the member's content was posted, if cached." +msgstr "" + +#: 376755f7365b4605974de6a4391d2d09 +#: discord.raw_models.AutoModActionExecutionEvent:59 of +msgid "" +"Optional[Union[:class:`TextChannel`, :class:`Thread`, " +":class:`VoiceChannel`, :class:`StageChannel`]]" +msgstr "" + +#: 906da4869ca74857aa12c64689988056 +#: discord.raw_models.AutoModActionExecutionEvent:63 of +msgid "" +"The ID of the message that triggered the action. This is only available " +"if the message was not blocked." +msgstr "" + +#: dc4532a7e5b34a9ab4851febbf01cbf2 +#: discord.raw_models.AutoModActionExecutionEvent:70 of +msgid "The message that triggered the action, if cached." +msgstr "" + +#: 3e754965c0ba4ad9b0aed65749f28b2f +#: discord.raw_models.AutoModActionExecutionEvent:76 of +msgid "" +"The ID of the system auto moderation message that was posted as a result " +"of the action." +msgstr "" + +#: 4c3d95bc6e42436cbc78c2640f190d2f +#: discord.raw_models.AutoModActionExecutionEvent:83 of +msgid "" +"The system auto moderation message that was posted as a result of the " +"action, if cached." +msgstr "" + +#: c58f51b1d6334159a2a60f2d322e8d45 +#: discord.raw_models.AutoModActionExecutionEvent:90 of +msgid "The content of the message that triggered the action." +msgstr "" + +#: 6ffde4d983ac42b0969d9ce742636544 +#: discord.raw_models.AutoModActionExecutionEvent:96 of +msgid "The word or phrase configured that was matched in the content." +msgstr "" + +#: bde7642f0ba14c51bfb2f81f07a2932e +#: discord.raw_models.AutoModActionExecutionEvent:102 of +msgid "The substring in the content that was matched." +msgstr "" + +#: b6afb38f8d2e49ebb42b29492db03440 +#: discord.raw_models.AutoModActionExecutionEvent:108 of +msgid "" +"The raw data sent by the `gateway " +"`_." +msgstr "" + +#: 499fc1b5ce724e788a72c35bf2ce080c discord.raw_models.RawTypingEvent:1 of +msgid "Represents the payload for a :func:`on_raw_typing` event." +msgstr "" + +#: 6aefe6592d3e481bb194f15c9aff3208 discord.raw_models.RawTypingEvent:7 of +msgid "The channel ID where the typing originated from." +msgstr "" + +#: 14b6274d91774c6eaae92facfb26f9d8 discord.raw_models.RawTypingEvent:13 of +msgid "The ID of the user that started typing." +msgstr "" + +#: 7162af01584f4ceca217802b5fd67f12 discord.raw_models.RawTypingEvent:19 of +msgid "When the typing started as an aware datetime in UTC." +msgstr "" + +#: 074d97d9348f4fb69e34d69ea0c05149 discord.raw_models.RawTypingEvent:25 of +msgid "The guild ID where the typing originated from, if applicable." +msgstr "" + +#: 9d2a1fd74db74e858c41d60042891f83 discord.raw_models.RawTypingEvent:31 of +msgid "" +"The member who started typing. Only available if the member started " +"typing in a guild." +msgstr "" + +#: 68202a289cc64633add155d110e551b5 discord.raw_models.RawTypingEvent:37 of +msgid "" +"The raw data sent by the `gateway " +"`_." +msgstr "" + +#: 083fd25a4caf4f438e18f06ecfc329a3 discord.raw_models.RawMessageDeleteEvent:1 +#: of +msgid "Represents the event payload for a :func:`on_raw_message_delete` event." +msgstr "" + +#: 591b40b272cb4d6fa4456a1483cd349d discord.raw_models.RawMessageDeleteEvent:5 +#: of +msgid "The channel ID where the deletion took place." +msgstr "" + +#: cba8549241ae4f2b8ec7e2b036915985 discord.raw_models.RawMessageDeleteEvent:11 +#: of +msgid "The guild ID where the deletion took place, if applicable." +msgstr "" + +#: b885728f638f4102888b355dd2fde5bd discord.raw_models.RawMessageDeleteEvent:17 +#: of +msgid "The message ID that got deleted." +msgstr "" + +#: 51825d7c41ac41bc9bd7aaf54e8731c5 discord.raw_models.RawMessageDeleteEvent:23 +#: of +msgid "The cached message, if found in the internal message cache." +msgstr "" + +#: 80e8bcebb6c846b9a94201322d201f11 discord.raw_models.RawMessageDeleteEvent:29 +#: of +msgid "" +"The raw data sent by the `gateway " +"`_." +msgstr "" + +#: 9758fa2c23934519aa0a31b619561841 +#: discord.raw_models.RawBulkMessageDeleteEvent:1 of +msgid "" +"Represents the event payload for a :func:`on_raw_bulk_message_delete` " +"event." +msgstr "" + +#: 95fdfdb30b0b44c0ad31616a5630431b +#: discord.raw_models.RawBulkMessageDeleteEvent:5 of +msgid "A :class:`set` of the message IDs that were deleted." +msgstr "" + +#: 2c4db09f55444e179276a27886c53ab1 +#: discord.raw_models.RawBulkMessageDeleteEvent:7 of +msgid "Set[:class:`int`]" +msgstr "" + +#: 9e257c61cf59469dafe62914243b17ab +#: discord.raw_models.RawBulkMessageDeleteEvent:11 of +msgid "The channel ID where the message got deleted." +msgstr "" + +#: discord.raw_models.RawBulkMessageDeleteEvent:17 +#: f5e94fb1e9b74e7cb97320acf2b8fd2d of +msgid "The guild ID where the message got deleted, if applicable." +msgstr "" + +#: 8eab388727794972a7906a9c73529e53 +#: discord.raw_models.RawBulkMessageDeleteEvent:23 of +msgid "The cached messages, if found in the internal message cache." +msgstr "" + +#: 859990ca3d474b82ab8a25c709399af3 +#: discord.raw_models.RawBulkMessageDeleteEvent:25 of +msgid "List[:class:`Message`]" +msgstr "" + +#: df91c3ca90284cba833f8d2303683970 +#: discord.raw_models.RawBulkMessageDeleteEvent:29 of +msgid "" +"The raw data sent by the `gateway " +"`_." +msgstr "" + +#: 872290794a8b426ea016c6cb478edf1c discord.raw_models.RawMessageUpdateEvent:1 +#: of +msgid "Represents the payload for a :func:`on_raw_message_edit` event." +msgstr "" + +#: discord.raw_models.RawMessageUpdateEvent:5 fa312fddcc7640858f6f5dc198669a1a +#: of +msgid "The message ID that got updated." +msgstr "" + +#: 07c75520606b4ce8b11422018fe961f4 discord.raw_models.RawMessageUpdateEvent:11 +#: of +msgid "The channel ID where the update took place." +msgstr "" + +#: 6c11263af97b4adf9f96d3420215db95 discord.raw_models.RawMessageUpdateEvent:19 +#: of +msgid "The guild ID where the message got updated, if applicable." +msgstr "" + +#: b265740494834d0a910c37f8097fff5a discord.raw_models.RawMessageUpdateEvent:27 +#: of +msgid "" +"The raw data sent by the `gateway " +"`_" +msgstr "" + +#: 262dc5905556459587d9ae798ee82024 discord.raw_models.RawMessageUpdateEvent:33 +#: of +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.RawReactionActionEvent:1 ffe7a35941da4ee0ba78d8c78549e0c7 +#: of +msgid "" +"Represents the payload for a :func:`on_raw_reaction_add` or " +":func:`on_raw_reaction_remove` event." +msgstr "" + +#: 7d5dc4e9d47e4f288265ecc59e7a8ee7 discord.raw_models.RawReactionActionEvent:6 +#: of +msgid "The message ID that got or lost a reaction." +msgstr "" + +#: 79c663166bf54130b292c2b3b0c02da7 +#: discord.raw_models.RawReactionActionEvent:12 of +msgid "The user ID who added the reaction or whose reaction was removed." +msgstr "" + +#: 349706d55fec46638e81b043bb480718 +#: discord.raw_models.RawReactionActionEvent:18 of +msgid "The channel ID where the reaction got added or removed." +msgstr "" + +#: 1a761539da4e42edb15d580870eea3e2 +#: discord.raw_models.RawReactionActionEvent:24 of +msgid "The guild ID where the reaction got added or removed, if applicable." +msgstr "" + +#: 109ca37f75c440149342c11e3d196458 +#: discord.raw_models.RawReactionActionEvent:30 of +msgid "The custom or unicode emoji being used." +msgstr "" + +#: 79d0117cef804316937d5fd65887a66a +#: discord.raw_models.RawReactionActionEvent:36 of +msgid "" +"The member who added the reaction. Only available if the reaction occurs " +"within a guild." +msgstr "" + +#: d59b3f7188164f7690a5236089a3edd9 +#: discord.raw_models.RawReactionActionEvent:44 of +msgid "" +"The event type that triggered this action. Can be ``REACTION_ADD`` for " +"reaction addition or ``REACTION_REMOVE`` for reaction removal." +msgstr "" + +#: 3d57daf4600347369012e4666cfa9e32 +#: discord.raw_models.RawReactionActionEvent:60 of +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 "" + +#: 6de13fa5309f426d97885e856de66c2d discord.raw_models.RawAuditLogEntryEvent:45 +#: discord.raw_models.RawReactionActionEvent:63 +#: discord.raw_models.RawReactionActionEvent:69 +#: discord.raw_models.RawReactionClearEmojiEvent:45 of +msgid "Optional[:class:`list`]" +msgstr "" + +#: a0ae038460cc4afeb1f55fc31edad93b +#: discord.raw_models.RawReactionActionEvent:67 +#: discord.raw_models.RawReactionClearEmojiEvent:43 of +msgid "Alias for :attr:`burst_colours`." +msgstr "" + +#: 8be7e177048b48c58c5069f7bace65bb +#: discord.raw_models.RawReactionActionEvent:73 of +msgid "The type of reaction added." +msgstr "" + +#: be68507029b84b93bc3189b87e423c23 +#: discord.raw_models.RawReactionActionEvent:75 +#: discord.raw_models.RawReactionClearEmojiEvent:51 of +msgid ":class:`ReactionType`" +msgstr "" + +#: 57fcb3b89ea343e49b6121016bbf056a +#: discord.raw_models.RawReactionActionEvent:79 of +msgid "" +"The raw data sent by the `gateway " +"`_." +msgstr "" + +#: 9c55b78745534bf3908765bfe80b3a96 discord.raw_models.RawReactionClearEvent:1 +#: of +msgid "Represents the payload for a :func:`on_raw_reaction_clear` event." +msgstr "" + +#: 5b0c86bf3fe74bc59f7526bb295a5f6b +#: discord.raw_models.RawReactionClearEmojiEvent:7 +#: discord.raw_models.RawReactionClearEvent:5 of +msgid "The message ID that got its reactions cleared." +msgstr "" + +#: 3fc3b9a31e0843e99300bef5908239ae +#: discord.raw_models.RawReactionClearEmojiEvent:13 +#: discord.raw_models.RawReactionClearEvent:11 of +msgid "The channel ID where the reactions got cleared." +msgstr "" + +#: discord.raw_models.RawReactionClearEmojiEvent:19 +#: discord.raw_models.RawReactionClearEvent:17 ed2e7768cefa4a21841b18d806ae7e22 +#: of +msgid "The guild ID where the reactions got cleared." +msgstr "" + +#: 00c10feb478642c796ce040922822aa6 discord.raw_models.RawReactionClearEvent:23 +#: of +msgid "" +"The raw data sent by the `gateway " +"`_." +msgstr "" + +#: 4f6f4cd8c25a4c269e81552330a5af16 +#: discord.raw_models.RawReactionClearEmojiEvent:1 of +msgid "Represents the payload for a :func:`on_raw_reaction_clear_emoji` event." +msgstr "" + +#: discord.raw_models.RawReactionClearEmojiEvent:25 +#: e93ddf7f5f2f4108a62c97c24c102d5f of +msgid "The custom or unicode emoji being removed." +msgstr "" + +#: discord.raw_models.RawReactionClearEmojiEvent:31 +#: e0a6e4a865e6478f984e5c7a61eca7bf of +msgid "Whether this reaction was a burst (super) reaction." +msgstr "" + +#: 8da8ed8c042d43a09d679902449a5d5c +#: discord.raw_models.RawReactionClearEmojiEvent:37 of +msgid "The available HEX codes of the removed super reaction." +msgstr "" + +#: 6c4c75d113254029b77ba850debfcfd3 +#: discord.raw_models.RawReactionClearEmojiEvent:39 of +msgid ":class:`list`" +msgstr "" + +#: 248f1f73e30940a49c621a94e90983d6 +#: discord.raw_models.RawReactionClearEmojiEvent:49 of +msgid "The type of reaction removed." +msgstr "" + +#: 1b350547602f48838cf645fbc4a9540b +#: discord.raw_models.RawReactionClearEmojiEvent:55 of +msgid "" +"The raw data sent by the `gateway " +"`_." +msgstr "" + +#: ae35ffa2bd784c71850e872f6dc0176f +#: discord.raw_models.RawIntegrationDeleteEvent:1 of +msgid "Represents the payload for a :func:`on_raw_integration_delete` event." +msgstr "" + +#: discord.raw_models.RawIntegrationDeleteEvent:7 +#: e3281dac58fa4334a67caf80cb45df51 of +msgid "The ID of the integration that got deleted." +msgstr "" + +#: 9326171cc2334890a65c282bf5939c5c +#: discord.raw_models.RawIntegrationDeleteEvent:13 of +msgid "The ID of the bot/OAuth2 application for this deleted integration." +msgstr "" + +#: discord.raw_models.RawIntegrationDeleteEvent:19 +#: f5b124b805c5449a8cc33744ded015d9 of +msgid "The guild ID where the integration got deleted." +msgstr "" + +#: 74b0025e77e44f66aa7e45c9924f9b43 +#: discord.raw_models.RawIntegrationDeleteEvent:25 of +msgid "" +"The raw data sent by the `gateway " +"`_." +msgstr "" + +#: discord.raw_models.RawThreadDeleteEvent:1 f71bc55131744337a32f55761bd384ae +#: of +msgid "Represents the payload for :func:`on_raw_thread_delete` event." +msgstr "" + +#: discord.raw_models.RawThreadDeleteEvent:7 ed66c4fafdab48dfb26fdc88526903cb +#: of +msgid "The ID of the thread that was deleted." +msgstr "" + +#: 80173e2d13a74455851c296207108a67 discord.raw_models.RawThreadDeleteEvent:13 +#: of +msgid "The channel type of the deleted thread." +msgstr "" + +#: c56a434ae2034ed1a139116a20d9e828 discord.raw_models.RawThreadDeleteEvent:15 +#: discord.raw_models.RawThreadUpdateEvent:15 of +msgid ":class:`discord.ChannelType`" +msgstr "" + +#: c942d9a66ae943129c00dacecda6bda0 discord.raw_models.RawThreadDeleteEvent:19 +#: of +msgid "The ID of the guild the deleted thread belonged to." +msgstr "" + +#: 5e55c49746e44da78344b275882d7dab discord.raw_models.RawThreadDeleteEvent:25 +#: of +msgid "The ID of the channel the thread belonged to." +msgstr "" + +#: 52970a93b1f7408b8648ba6d7da2481c discord.raw_models.RawThreadDeleteEvent:31 +#: of +msgid "" +"The thread that was deleted. This may be ``None`` if deleted thread is " +"not found in internal cache." +msgstr "" + +#: 6e59f1f4561a4ff4a56f3257e62223a3 discord.raw_models.RawThreadDeleteEvent:33 +#: of +msgid "Optional[:class:`discord.Thread`]" +msgstr "" + +#: b14b3e97de234e28b4104e5a613cbb95 discord.raw_models.RawThreadDeleteEvent:37 +#: of +msgid "" +"The raw data sent by the `gateway " +"`_." +msgstr "" + +#: 8abc932b7db9477aa37671ad8555a946 +#: discord.raw_models.RawScheduledEventSubscription:1 of +msgid "" +"Represents the payload for a :func:`raw_scheduled_event_user_add` or " +":func:`raw_scheduled_event_user_remove` event." +msgstr "" + +#: 7b3ca844c2e4433ca2f6f4532db57804 +#: discord.raw_models.RawScheduledEventSubscription:8 of +msgid "The event ID where the typing originated from." +msgstr "" + +#: 2589e072a10945fd91844cf562e522f8 +#: discord.raw_models.RawScheduledEventSubscription:14 of +msgid "The ID of the user that subscribed/unsubscribed." +msgstr "" + +#: discord.raw_models.RawScheduledEventSubscription:20 +#: fc2d5f7de1334ecfa878e4a54efbe2d7 of +msgid "The guild where the subscription/unsubscription happened." +msgstr "" + +#: 6f7667c231954a3b85809427b6c178ce +#: discord.raw_models.RawScheduledEventSubscription:26 of +msgid "" +"Can be either ``USER_ADD`` or ``USER_REMOVE`` depending on the event " +"called." +msgstr "" + +#: db759799a9584ace958e5d19d8bda3a8 +#: discord.raw_models.RawScheduledEventSubscription:33 of +msgid "" +"The raw data sent by the `gateway " +"`_." +msgstr "" + +#: 57f6174c02b04d4f89daad19a99de172 discord.raw_models.RawMemberRemoveEvent:1 +#: of +msgid "Represents the payload for an :func:`on_raw_member_remove` event." +msgstr "" + +#: c043b937892d446e8be670d14755b111 discord.raw_models.RawMemberRemoveEvent:7 +#: of +msgid "The user that left the guild." +msgstr "" + +#: discord.raw_models.RawMemberRemoveEvent:9 e9afa44e8d8f48eba0a9330f7bb79265 +#: of +msgid ":class:`discord.User`" +msgstr "" + +#: discord.raw_models.RawMemberRemoveEvent:13 f5d1f7b186934cb59089bb69614223e3 +#: of +msgid "The ID of the guild the user left." +msgstr "" + +#: 82c67a590a6f41b5912e8b043427212a discord.raw_models.RawMemberRemoveEvent:19 +#: of +msgid "" +"The raw data sent by the `gateway " +"`_." +msgstr "" + +#: 50e584b568b144d8ab8195b6f228fdb1 discord.raw_models.RawThreadUpdateEvent:1 +#: of +msgid "Represents the payload for an :func:`on_raw_thread_update` event." +msgstr "" + +#: 6825333ca162418ab57606ff1740b8dc discord.raw_models.RawThreadUpdateEvent:7 +#: of +msgid "The ID of the updated thread." +msgstr "" + +#: 18e0d2ab7dc1463891dec1fa3cf9a37f discord.raw_models.RawThreadUpdateEvent:13 +#: of +msgid "The channel type of the updated thread." +msgstr "" + +#: 59e5a8efef2346bbb2ee80ea21c011a7 discord.raw_models.RawThreadUpdateEvent:19 +#: of +msgid "The ID of the guild the thread belongs to." +msgstr "" + +#: 619f2bcdd29345aa865973f05c3a9648 discord.raw_models.RawThreadUpdateEvent:25 +#: of +msgid "The ID of the channel the thread belongs to." +msgstr "" + +#: 56d86a0d67224029bf5c3db6a2af6a27 discord.raw_models.RawThreadUpdateEvent:31 +#: of +msgid "" +"The raw data sent by the `gateway " +"`_." +msgstr "" + +#: 4852d50180674582ac786b3068cb2017 discord.raw_models.RawThreadUpdateEvent:37 +#: of +msgid "The thread, if it could be found in the internal cache." +msgstr "" + +#: 150d503109894b5b87c17829594f7b55 discord.raw_models.RawThreadUpdateEvent:39 +#: of +msgid ":class:`discord.Thread` | None" +msgstr "" + +#: a64458b6da9e449597a58d378bf385d3 +#: discord.raw_models.RawThreadMembersUpdateEvent:1 of +msgid "Represents the payload for an :func:`on_raw_thread_member_remove` event." +msgstr "" + +#: b031a4ae017f4ad49cba8881b024de8e +#: discord.raw_models.RawThreadMembersUpdateEvent:7 of +msgid "The ID of the thread that was updated." +msgstr "" + +#: b0e8229bc54c408f913f222cb0c8db77 +#: discord.raw_models.RawThreadMembersUpdateEvent:13 of +msgid "The ID of the guild the thread is in." +msgstr "" + +#: cd08b36b1ca744f0bfe69607abde1f45 +#: discord.raw_models.RawThreadMembersUpdateEvent:19 of +msgid "The approximate number of members in the thread. Maximum of 50." +msgstr "" + +#: a30e73121303499994de20efcdb448ea +#: discord.raw_models.RawThreadMembersUpdateEvent:25 of +msgid "" +"The raw data sent by the `gateway " +"`_." +msgstr "" + +#: 1655071d2beb439380bead37316806c7 discord.raw_models.RawAuditLogEntryEvent:1 +#: of +msgid "Represents the payload for an :func:`on_raw_audit_log_entry` event." +msgstr "" + +#: 83c9b3e36e7d46d79ffc9f4d380a4e5d discord.raw_models.RawAuditLogEntryEvent:7 +#: of +msgid "The action that was done." +msgstr "" + +#: 3ed7e6ec47a54369b7d127872cd53b81 discord.raw_models.RawAuditLogEntryEvent:9 +#: of +msgid ":class:`AuditLogAction`" +msgstr "" + +#: 3ed3876549944886804d62c1af6c5744 discord.raw_models.RawAuditLogEntryEvent:13 +#: of +msgid "The entry ID." +msgstr "" + +#: c71f08f112ca4b1a8bbccbaf514cdac1 discord.raw_models.RawAuditLogEntryEvent:19 +#: of +msgid "The ID of the guild this action came from." +msgstr "" + +#: 7738f7e468004076bc8ec1e83b91154f discord.raw_models.RawAuditLogEntryEvent:25 +#: of +msgid "The ID of the user who initiated this action." +msgstr "" + +#: 0f17e043ff2f4e349a147254f66412cc discord.raw_models.RawAuditLogEntryEvent:31 +#: of +msgid "The ID of the target that got changed." +msgstr "" + +#: 8b94f30533de478d925794511806a750 discord.raw_models.RawAuditLogEntryEvent:37 +#: of +msgid "The reason this action was done." +msgstr "" + +#: 18a298908f194ee0ab2a9223ede03164 discord.raw_models.RawAuditLogEntryEvent:43 +#: of +msgid "The changes that were made to the target." +msgstr "" + +#: 1a572cf26ed44102b41930008de5b09b discord.raw_models.RawAuditLogEntryEvent:49 +#: of +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 "" + +#: 56c299547cc748adba656f35026ca822 discord.raw_models.RawAuditLogEntryEvent:54 +#: of +msgid "Any" +msgstr "" + +#: discord.raw_models.RawAuditLogEntryEvent:58 eac6487fc7d14ee89b983b7dd83f84f8 +#: of +msgid "" +"The raw data sent by the `gateway " +"`_." +msgstr "" + +#: 1cde686644bc47ec941a3e368aa2874a +#: discord.raw_models.RawVoiceChannelStatusUpdateEvent:1 of +msgid "" +"Represents the payload for an :func:`on_raw_voice_channel_status_update` " +"event." +msgstr "" + +#: 5fffb927d5c44084b4bff9b07be28069 +#: discord.raw_models.RawVoiceChannelStatusUpdateEvent:7 of +msgid "The channel ID where the voice channel status update originated from." +msgstr "" + +#: 17207373f8ab4b6084c706e3f9052280 +#: discord.raw_models.RawVoiceChannelStatusUpdateEvent:13 of +msgid "The guild ID where the voice channel status update originated from." +msgstr "" + +#: 285d830f117547f699bbf453aa4268b7 +#: discord.raw_models.RawVoiceChannelStatusUpdateEvent:19 of +msgid "The new new voice channel status." +msgstr "" + +#: c6e09cd5881145a5b95550e3f54faf4f +#: discord.raw_models.RawVoiceChannelStatusUpdateEvent:25 of +msgid "" +"The raw data sent by the `gateway " +"`_." +msgstr "" + +#: ../../api/models.rst:577 eae4e206e45a463f80727bc3e3eee504 +msgid "Webhooks" +msgstr "" + +#: 657eceaa87cd4bc9b144d286afe67c5e +#: discord.webhook.async_.PartialWebhookGuild:1 of +msgid "Represents a partial guild for webhooks." +msgstr "" + +#: 0e1a2663052f464386761f009fafc287 +#: discord.webhook.async_.PartialWebhookChannel:3 +#: discord.webhook.async_.PartialWebhookGuild:3 of +msgid "These are typically given for channel follower webhooks." +msgstr "" + +#: 63fdae50745f4e43bf58c07d12c4ed00 +#: discord.webhook.async_.PartialWebhookChannel:1 of +msgid "Represents a partial channel for webhooks." +msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/sinks.po b/docs/locales/en/LC_MESSAGES/api/sinks.po new file mode 100644 index 0000000000..6466bc0cc0 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/sinks.po @@ -0,0 +1,190 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\n" + +#: ../../api/sinks.rst:4 da5ec43759ab47fdb55072ef2d386b77 +msgid "Sinks" +msgstr "" + +#: ../../api/sinks.rst:7 69ccca52dd344eba81f86600350345de +msgid "Core" +msgstr "" + +#: 0142ecf442b940a78a28dc08a1ce93cb discord.sinks.core.Filters:1 of +msgid "Filters for :class:`~.Sink`" +msgstr "" + +#: ../../api/sinks.rst 378afe544b724d8f90393291fdc85369 +#: fab663f2aebe45c48cdc3b54b4e31005 +msgid "Parameters" +msgstr "" + +#: 0703f5343d364e319360f8c62ab449e0 discord.sinks.core.Filters:5 of +msgid "Container of all Filters." +msgstr "" + +#: discord.sinks.core.Sink:1 eb6c1cd03ec9420db458b64f82b0e54d of +msgid "A sink \"stores\" recorded audio data." +msgstr "" + +#: discord.sinks.core.Sink:3 f84d8b866bf9422c8920ca48f7442fd7 of +msgid "Can be subclassed for extra customizablilty." +msgstr "" + +#: 46f6384351cd4250abdc80e42a256c2f discord.sinks.core.Sink:6 of +msgid "" +"It is recommended you use the officially provided sink classes, such as " +":class:`~discord.sinks.WaveSink`." +msgstr "" + +#: 7e2733f87658404cba7b6fe06dd64f29 discord.sinks.core.Sink:10 of +msgid "just replace the following like so: ::" +msgstr "" + +#: ../../api/sinks.rst 0132a5cc6ea140e993f0c67c578b8564 +#: 3a24bec2087b4fd2828ce8bcf7bfcce6 49d6e90fbe7345e296ddb91c800584da +#: 7640928653394b188296110e0ec788fb 77e45956053343f4a15cfc2f1834d79a +#: 817268b268934544944a1cdba3c85456 98ec647e22e34424b43cef44e33d1f5d +#: a75ba41f4c624334b98deb28f10ff722 db671b98041f42c69d09637b747da230 +#: e41d37b52642478ba8b5960322091c62 e7eb3ded3c57413c9ee86ee3409252f9 +msgid "Raises" +msgstr "" + +#: 2750e2c115da40ecaf706f78f45897a8 discord.sinks.core.Sink:20 of +msgid "An invalid encoding type was specified." +msgstr "" + +#: 01169f852b5a4038ae7d519f251930b4 1588985c20834c0ba74aaef6231a58bd +#: 45b9ef0215544a9d860e550bc4ccb921 4e7509b88ea04946bc020fc4de77c0b6 +#: 7d38b47a020b40cdb95c6af18cc1d6d1 b356e78d934c4cd9993fc61cbe1af4e9 +#: bea313c3e6fa42beba3ab64e756ce223 discord.sinks.core.Sink:21 +#: discord.sinks.m4a.M4ASink.format_audio:3 +#: discord.sinks.mka.MKASink.format_audio:3 +#: discord.sinks.mkv.MKVSink.format_audio:3 +#: discord.sinks.mp3.MP3Sink.format_audio:3 +#: discord.sinks.mp4.MP4Sink.format_audio:3 +#: discord.sinks.ogg.OGGSink.format_audio:3 +#: discord.sinks.wave.WaveSink.format_audio:3 fc1928b8934a4555af9965d0c2317ea2 +#: of +msgid "Audio may only be formatted after recording is finished." +msgstr "" + +#: ce7e04b04b104eaf98b124fe959e2088 discord.sinks.core.Sink.get_all_audio:1 of +msgid "Gets all audio files." +msgstr "" + +#: 377a9171544b4e1a90582106b504271e discord.sinks.core.Sink.get_user_audio:1 of +msgid "Gets the audio file(s) of one specific user." +msgstr "" + +#: 8c98ad6ace2a490eb332d994e20ee698 discord.sinks.core.AudioData:1 of +msgid "" +"Handles data that's been completely decrypted and decoded and is ready to" +" be saved to file." +msgstr "" + +#: 691bcb7057ff4b668a6924f1567447bb discord.sinks.core.AudioData.write:1 of +msgid "Writes audio data." +msgstr "" + +#: 156dcea554294f688d2303b360e8eeb5 c514847e5b65402d9c119e0fba871115 +#: discord.sinks.core.AudioData.cleanup:3 discord.sinks.core.AudioData.write:3 +#: of +msgid "The AudioData is already finished writing." +msgstr "" + +#: 8878b11f4bb44242b182551f312611e0 discord.sinks.core.AudioData.cleanup:1 of +msgid "Finishes and cleans up the audio data." +msgstr "" + +#: bcc4d0731438457bb3b42134f2de664d discord.sinks.core.AudioData.on_format:1 of +msgid "Called when audio data is formatted." +msgstr "" + +#: 4328bd3adc894e768723c4be7aa942e0 discord.sinks.core.AudioData.on_format:3 of +msgid "The AudioData is still writing." +msgstr "" + +#: 570b9f01ec964f44a6f4e780cd307291 discord.sinks.core.RawData:1 of +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 "" + +#: 433ebcc0d30f4d9fbd220456a7abbbeb discord.sinks.wave.WaveSink:1 of +msgid "A special sink for .wav(wave) files." +msgstr "" + +#: 08a57363e08c4ea6a322cda7ca882dd2 285ad63cdb584ebd94d7e557e5314619 +#: 665fa3dc297f4f22b0369bd5cbd3b255 6e115579af2240c3ada2216ac756d626 +#: 8edc17c4981b4fc6881cb2c4ccca081d c5088f6657d347dab6bb07ea09dccd7d +#: discord.sinks.m4a.M4ASink.format_audio:1 +#: discord.sinks.mka.MKASink.format_audio:1 +#: discord.sinks.mkv.MKVSink.format_audio:1 +#: discord.sinks.mp3.MP3Sink.format_audio:1 +#: discord.sinks.mp4.MP4Sink.format_audio:1 +#: discord.sinks.ogg.OGGSink.format_audio:1 +#: discord.sinks.wave.WaveSink.format_audio:1 f5b24a38289c496a9f4d55948337d7b2 +#: of +msgid "Formats the recorded audio." +msgstr "" + +#: 0d6886be966b465182e4ac7708898391 47a74f69bb6540ef9f21dfaa43684d36 +#: 6bad2ce294a342759f75493790b102b5 9fa092f5912b4cc794dc15ec1615bb3c +#: b4bafc34899b43ada086ab5e6ca5064b bee146d8a4ce454ca6ab676a1f751bdd +#: discord.sinks.m4a.M4ASink.format_audio:4 +#: discord.sinks.mka.MKASink.format_audio:4 +#: discord.sinks.mkv.MKVSink.format_audio:4 +#: discord.sinks.mp3.MP3Sink.format_audio:4 +#: discord.sinks.mp4.MP4Sink.format_audio:4 +#: discord.sinks.ogg.OGGSink.format_audio:4 +#: discord.sinks.wave.WaveSink.format_audio:4 f1da7192debb4976a99f255ff8f3d860 +#: of +msgid "Formatting the audio failed." +msgstr "" + +#: d0b8264ce4284da5b4f00d3bd6fc0b27 discord.sinks.mp3.MP3Sink:1 of +msgid "A special sink for .mp3 files." +msgstr "" + +#: 12c1601a144f47c2b658cdb1638c2a1a discord.sinks.mp4.MP4Sink:1 of +msgid "A special sink for .mp4 files." +msgstr "" + +#: discord.sinks.m4a.M4ASink:1 ec93398e6fab40c3963078ee6efec8fd of +msgid "A special sink for .m4a files." +msgstr "" + +#: caa9e491104c47bf87dbe04c48e5107d discord.sinks.mkv.MKVSink:1 of +msgid "A special sink for .mkv files." +msgstr "" + +#: 90d4defae7c241bbb26aeec83cfe661e discord.sinks.mka.MKASink:1 of +msgid "A special sink for .mka files." +msgstr "" + +#: 3bf2e13e0ec743b19e3d9c47ef3fc435 discord.sinks.ogg.OGGSink:1 of +msgid "A special sink for .ogg files." +msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/ui_kit.po b/docs/locales/en/LC_MESSAGES/api/ui_kit.po new file mode 100644 index 0000000000..7802407342 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/ui_kit.po @@ -0,0 +1,979 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 "" + +#: 7169fb06bff6465a96fab24a71cd6cdc discord.ui.button.button:1 of +msgid "A decorator that attaches a button to a component." +msgstr "" + +#: 0a98301d144642f3af77faae9044333b discord.ui.button.button:3 of +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 "" + +#: a581c27589c34afeb3bc17c4b0000164 discord.ui.button.button:9 of +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 0eb33b6aec414778a7e06b676fd526f3 +#: 0fde91581db244e9a38eaa1298517198 16f62a630b6c42649b13ec913a13f066 +#: 196110ed1f174bbc90e8e7f376d23b2d 26b856f134bd43d89d7bd04e9508cec1 +#: 31274878cbf8429eb4cbbaab562f687a 3310aa20be5a488690708eb9e3dd0fcc +#: 402dffb461e445cba56e4e1afcc98a38 53499c7c38dd43799b5780dfd21b3b02 +#: 68f0e04b65fd43ccad6348c57bad93ba 7075cd32ada643e1afe2b1b1e2540a78 +#: 7c40b29c39174637a4378923ab36d01b 7f8342f4fa72464f92c9c3cffcfcbda4 +#: 87b1f760ee304fdcb8d3158dad1f9687 89289390586d4a4cab63303506125e33 +#: 8ca8779b464a40069954fb8439451723 99b19d97768746f6aad0d4c9f04602fc +#: a32d29d036704b3aadf3893a40c1fd58 a5c25727efd240d7b3b1f5647ed24ce6 +#: bb7676b81f53410c845e5d60a69a03a4 beefc8c24f164c63a80136a8c5e5e925 +#: ca073ce612814d8abbb2857a4f7c31cc d1dc3c0514e641c29d06f205b7feefc9 +#: db02240fc27a4c479381b1273800b086 dce921ab81d64865ba38df542fa4386f +#: dde97b21e9124139901056550166fb09 de7bcf10bc5947e99f4931c26c17c8c2 +#: e6eacbc6685647afaa993a9e034c2c9e ee24240ba8fe4d32b79a3dbd84647890 +#: f4f99caceafc4e0b857149cb71c15de8 ffbafb20b66d44b193637453dd85a141 +msgid "Parameters" +msgstr "" + +#: discord.ui.button.button:15 e96eba4f6dc741feb44abc732fe9b174 of +msgid "The label of the button, if any." +msgstr "" + +#: 180c7d621c86482cb6b43ceaf4fde368 discord.ui.button.button:18 of +msgid "" +"The ID of the button that gets received during an interaction. It is " +"recommended not to set this parameter to prevent conflicts." +msgstr "" + +#: ac7a0de67602471fb341ca7230448a62 discord.ui.button.button:22 of +msgid "The style of the button. Defaults to :attr:`.ButtonStyle.grey`." +msgstr "" + +#: 48333a30942940d4bf4fad7e72e2aa33 discord.ui.button.button:25 of +msgid "Whether the button is disabled or not. Defaults to ``False``." +msgstr "" + +#: c138b390419e4f4194bf27c7e5da9e82 discord.ui.button.button:28 of +msgid "" +"The emoji of the button. This can be in string form or a " +":class:`.PartialEmoji` or a full :class:`.Emoji`." +msgstr "" + +#: 7226675e37a14baba12bf447b1d4a11e c7feafdb9ed34fceaaf137f89a8fad12 +#: discord.ui.button.Button:28 discord.ui.button.button:32 of +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 4847b534d3c14deba4061b428620b95b +#: 48dd419af0df473f93e5e713b7748656 49a56da0430b431f8c729950b9c55006 +#: 4d44fb14e809440e8f7f915460300e06 5354adfbc0cb4f498d3e07dc0ed3d63c +#: 67269ff08c06462b82bff968f744feea 69ca8cba0b9a411d8e19abd29f7f1ed4 +#: 74e20e420edc4715b4995ab7938b2023 76d49544901349599337569d52510ee9 +#: 787aeffb30b548a38cbe20f0a065de37 79d2f21642c04d77b8bce27656a52f8f +#: 9764068d3bfa4df68a9821f82609e559 9b9d0befc3c64fb9bae98aba514956f0 +#: a0b7807032194a53a18ea1511e4f67d3 ae8f754f5d1a446e866e9443cd10081d +#: b1890cceac0449368e45eca0e3cc227a b96d252eb71246cba2ed7ce0fa575e98 +#: c8632725e7ca4cb18d9ec87f8986c8b6 d36c9dfb2e944d03935e93d529a40227 +#: e1405bf6c4334211ba770e0674f150f9 e5ecb31082e14aa3861296ff5854437a +#: e6251a3992ae4babb7e79b06a31ea11d e6517eae45a3404e899c0bdfabdf3aea +#: f041071e4093433a9cac0a03ce5ab140 f360a94646744e36b9934341c7885ed7 +#: f66852d0a07246dbb596fa01e203d767 f8f0d423ecf24626a1247f45667e5bfd +msgid "Return type" +msgstr "" + +#: 15a54ae1a66549eab609150b6dc69f6b 2e9d4fbae0e54c02b65dcc5c67eccab2 +#: 8b2126220f0a40489f72fbb6541865ab 9d801d79daf4416b8d3f256723d14e9e +#: bedc28aed63d4c35821a3df7a988ceba da524bc45bed4882b24144a6de72d3b3 +#: discord.ui.button.button:39 discord.ui.select.channel_select:19 +#: discord.ui.select.mentionable_select:17 discord.ui.select.role_select:17 +#: discord.ui.select.select:55 discord.ui.select.string_select:19 +#: discord.ui.select.user_select:17 fd120175bb8541ecb5ca7146883b6156 of +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 "" + +#: 23ebf0c41e1a46c9b96eaaed21d7b029 discord.ui.select.select:1 of +msgid "A decorator that attaches a select menu to a component." +msgstr "" + +#: 00b2b61db8b84ae2b5053febef93fed2 discord.ui.select.select:3 of +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 "" + +#: 1a447e447e4947d4ab6031c89b6fa2c8 discord.ui.select.select:7 of +msgid "" +"In order to get the selected items that the user has chosen within the " +"callback use :attr:`Select.values`." +msgstr "" + +#: 5178e617c8584c74ae12204643b4cc51 discord.ui.select.select:12 of +msgid "Creating select menus of different types is now supported." +msgstr "" + +#: acf48d755e5d47f7b645a78fdecb9b9d d47cd55a76154d2c8296ed8d52f4fe49 +#: discord.ui.select.Select:16 discord.ui.select.select:15 of +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 "" + +#: 3e3120d48b4f41869c6ac4d4a11ae788 46f50cc5d1d241dea802bc7c51e5b497 +#: cf7265a79f204a609bac4e3eeac79c31 discord.ui.Select.placeholder:1 +#: discord.ui.select.Select:26 discord.ui.select.select:21 of +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "" + +#: c98d6ddb36f4423f855f14a8bcaa452a discord.ui.select.select:24 of +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 "" + +#: 4bbd3f8002fd49ddb09b40d45fb48efe c01d219ac90b445594257aa88fe409ff +#: discord.ui.select.Select:48 discord.ui.select.select:28 of +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 "" + +#: 3ce98d78639e4b00b541949c1579c3e3 discord.ui.select.select:35 of +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 "" + +#: 796b9050ceed4aeba3ead0a0b4cd7d4d 79d61d2476ba400ca5d40331e2c47372 +#: discord.ui.select.Select:33 discord.ui.select.select:39 of +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.select:43 eb85122a049d4e5ba8a1ac9fdbd6ee30 of +msgid "" +"A list of options that can be selected in this menu. Only valid for the " +":attr:`discord.ComponentType.string_select` type." +msgstr "" + +#: 21bc9c9ab88c428699fe8f30713d0445 discord.ui.select.select:47 of +msgid "" +"The channel types that should be selectable. Only valid for the " +":attr:`discord.ComponentType.channel_select` type. Defaults to all " +"channel types." +msgstr "" + +#: b1d29705ace44ca3872c15046d01f845 discord.ui.select.select:52 of +msgid "Whether the select is disabled or not. Defaults to ``False``." +msgstr "" + +#: 17e132379dad4798922af2a9271f7996 discord.ui.select.string_select:1 of +msgid "" +"A shortcut for :meth:`discord.ui.select` with select type " +":attr:`discord.ComponentType.string_select`." +msgstr "" + +#: 98d5b30855cc484ca89f0acdd2e1c1e7 discord.ui.select.user_select:1 of +msgid "" +"A shortcut for :meth:`discord.ui.select` with select type " +":attr:`discord.ComponentType.user_select`." +msgstr "" + +#: 69ea07d124aa4d38b3ba835ae1545eac discord.ui.select.role_select:1 of +msgid "" +"A shortcut for :meth:`discord.ui.select` with select type " +":attr:`discord.ComponentType.role_select`." +msgstr "" + +#: 27e5bbcab67147e5b4a8d3f3dd62addc discord.ui.select.mentionable_select:1 of +msgid "" +"A shortcut for :meth:`discord.ui.select` with select type " +":attr:`discord.ComponentType.mentionable_select`." +msgstr "" + +#: 4a0b40ad90df4fbb98a435ebcb063111 discord.ui.select.channel_select:1 of +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 "" + +#: 51e6a1596c4a449f9a81c52ebddaa39e discord.ui.view.View:1 of +msgid "Represents a UI view." +msgstr "" + +#: 16b83c8a92c745c8b399ffc3a72f0772 discord.ui.modal.Modal:3 +#: discord.ui.view.View:3 ef81e6ce764b40beb46714a774f98ce0 of +msgid "This object must be inherited to create a UI within Discord." +msgstr "" + +#: 2f917e72a1924778a62c52611093344a discord.ui.view.View:8 of +msgid "The initial items attached to this view." +msgstr "" + +#: 447ce0fa50bb4a4b82ed7747b529452c 807b8f486b1846ca85e2c78b609a287d +#: discord.ui.modal.Modal:19 discord.ui.view.View:11 of +msgid "" +"Timeout in seconds from last interaction with the UI before no longer " +"accepting input. If ``None`` then there is no timeout." +msgstr "" + +#: 880d25828d79404c9b741921ea68a63e discord.ui.view.View:17 of +msgid "" +"Timeout from last interaction with the UI before no longer accepting " +"input. If ``None`` then there is no timeout." +msgstr "" + +#: 3bb28eba0b6e4a33bf70e6ec23f7f0ce 480fbf0b10fa416d83a78fe20327dbce +#: 869c217ef1fb4f1bb558c0c275307664 90ac82a2463949f8a34cca59e7616985 +#: c0f3dd62da99471bbbb9ef04603415f0 discord.ui.view.View of +msgid "type" +msgstr "" + +#: 974b8aac4f3643038bdeb783f44ea94d discord.ui.view.View:20 of +msgid "Optional[:class:`float`]" +msgstr "" + +#: 8ffab86883334a96855bfa18b8fa7750 discord.ui.view.View:24 of +msgid "The list of children attached to this view." +msgstr "" + +#: 3682451fd9d94fd0b7d5c2f0000be28e discord.ui.view.View:26 of +msgid "List[:class:`Item`]" +msgstr "" + +#: 390e0de65aca4e25bf50e5ae6a456657 discord.ui.view.View:30 of +msgid "" +"Whether to disable the view when the timeout is reached. Defaults to " +"``False``." +msgstr "" + +#: 4d45955820034f44b44354116cd9d1f7 81901a6370e14b888c56185b26f75c5c +#: a20a4215e0ea431eb8fb5f8afaff44f3 discord.ui.view.View:32 +#: discord.ui.view.View.interaction_check:23 discord.ui.view.View.wait:8 of +msgid ":class:`bool`" +msgstr "" + +#: 6e02983bce14423ca205b74a4644a71f discord.ui.view.View:36 of +msgid "" +"The message that this view is attached to. If ``None`` then the view has " +"not been sent with a message." +msgstr "" + +#: 62493226680b4bc3bb9641549d93df08 discord.ui.view.View:39 of +msgid "Optional[:class:`.Message`]" +msgstr "" + +#: discord.ui.view.View:43 fbf42b30d6ff425694a8364a242cd8cc of +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.View:46 f5c57d9fa43643e8a8f9e9a19428dfb3 of +msgid "Optional[:class:`.Interaction`]" +msgstr "" + +#: c392f64e411a44c39ed13c8cc5125f2a discord.ui.view.View.from_message:1 of +msgid "Converts a message's components into a :class:`View`." +msgstr "" + +#: 565b68cabf4b4ba5a94ed222b1bdb166 discord.ui.view.View.from_message:3 of +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 "" + +#: 440ace76c1c843a0a6a9ed83aba2d54c discord.ui.view.View.from_message:9 of +msgid "The message with components to convert into a view." +msgstr "" + +#: b159c65de392440fac77f0ec9989f160 discord.ui.view.View.from_message:12 of +msgid "The timeout of the converted view." +msgstr "" + +#: ../../api/ui_kit.rst 28a3de2a47e54084b6f9a9b85e58ffda +#: bdf962475cee47d4ae16bdb523f4bdd4 cebca2833179445fb4e661e106d5cc43 +#: f4f15b52c843401587586464af1f15be +msgid "Returns" +msgstr "" + +#: 64c266a59d7f48e683effda66301b9a2 discord.ui.view.View.from_message:15 of +msgid "" +"The converted view. This always returns a :class:`View` and not one of " +"its subclasses." +msgstr "" + +#: 9718cb2e8075430da95c8d900f3ed7d8 discord.ui.view.View.from_message:17 of +msgid ":class:`View`" +msgstr "" + +#: d149c73fdd87423abab34ae033ad3bb2 discord.ui.view.View.add_item:1 of +msgid "Adds an item to the view." +msgstr "" + +#: 651c40af34754b2cbca1243c29182544 discord.ui.view.View.add_item:4 of +msgid "The item to add to the view." +msgstr "" + +#: ../../api/ui_kit.rst 024152e81dad464c8dea98a5986784a2 +#: a8beb6c0b45f41f3802af4f176357b18 acf1210671c64fe0a94869a2ec5777fd +msgid "Raises" +msgstr "" + +#: 0c2448b08bed49c9b3a36391e2dfe223 discord.ui.view.View.add_item:7 of +msgid "An :class:`Item` was not passed." +msgstr "" + +#: 98c9ab34af564e9bb33dff8527ada782 discord.ui.view.View.add_item:8 of +msgid "" +"Maximum number of children has been exceeded (25) or the row the item" +" is trying to be added to is full." +msgstr "" + +#: 06d7048de769474a8bb1a6d4a2dc4250 0f024bf23b354403841f7dde8d71621a +#: 14e8aec6cbaf4828aec5b04bd5b670b0 3c90e45f56914ab3a3afc07c95abbe60 +#: 5ca2db4b948a4526bbe2f7733e9e1540 8a6327ab096844d5ab16d2316f29be99 +#: c0e5fc96f0134c3ca7023b6236f2a3fd c28cd0a90c6243f48951aebe91f5a89c +#: df7ded422fee4a2f97fa22d4a7adac87 discord.ui.modal.Modal.on_error:14 +#: discord.ui.modal.Modal.on_timeout:6 discord.ui.modal.Modal.stop:4 +#: discord.ui.view.View.add_item:10 discord.ui.view.View.clear_items:4 +#: discord.ui.view.View.disable_all_items:7 +#: discord.ui.view.View.enable_all_items:7 +#: discord.ui.view.View.on_check_failure:9 discord.ui.view.View.on_error:18 +#: discord.ui.view.View.on_timeout:6 discord.ui.view.View.remove_item:7 +#: discord.ui.view.View.stop:6 e8a673c7ef7448448155a519934deb7a +#: f0b9b386cb7f440d9ded8cbb48862408 fe97129bcb4d4e258ff0beb4c6390702 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: 0fab940276ef4a7dae31257c2ac244a7 discord.ui.view.View.remove_item:1 of +msgid "Removes an item from the view." +msgstr "" + +#: 59807342ce744d8d886b5e2235ab0e2b discord.ui.view.View.remove_item:4 of +msgid "The item to remove from the view." +msgstr "" + +#: 3b8def86b7f849908a1d6f20d2c80e17 discord.ui.view.View.clear_items:1 of +msgid "Removes all items from the view." +msgstr "" + +#: 23615972dcdb414abf5f848a9a2ee1ee discord.ui.view.View.get_item:1 of +msgid "" +"Get an item from the view with the given custom ID. Alias for " +"`utils.get(view.children, custom_id=custom_id)`." +msgstr "" + +#: cbb9b6731f96427fb3201cdf6793994c discord.ui.view.View.get_item:4 of +msgid "The custom_id of the item to get" +msgstr "" + +#: 98fa144afc194f7d8515bd447103d0a2 discord.ui.view.View.get_item:7 of +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "" + +#: 3d6d6e176c7f414092ad530cfe34fc1b discord.ui.view.View.get_item:8 of +msgid "Optional[:class:`Item`]" +msgstr "" + +#: 1a6fca5291324410a90c948c1a5ba32b 24255cea69ed481396a70f77f164a517 +#: 34fbdd6619144a00b71dc4a9dfbdf301 69e9487f1d3f4f93adcadb433feb339b +#: 770fffa13a5f46cca1d7d0a054cb695f 8b341b66e04245dd9e4f5a2f1f5e69eb +#: cca85a1077c94196a7736c41aeb0a7f5 discord.ui.item.Item.callback:1 +#: discord.ui.modal.Modal.callback:1 discord.ui.modal.Modal.on_error:1 +#: discord.ui.modal.Modal.on_timeout:1 discord.ui.view.View.interaction_check:1 +#: discord.ui.view.View.on_error:1 discord.ui.view.View.on_timeout:1 +#: e969a0150e5149c3b6be69868a5dcd77 e983730f42794becb4c575857dd306d4 of +msgid "|coro|" +msgstr "" + +#: 21ac5f9f249141399e37682106a8d163 discord.ui.view.View.interaction_check:3 of +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 "" + +#: a5732571b1b646038917e1dd222eb895 discord.ui.view.View.interaction_check:6 of +msgid "" +"This is useful to override if, for example, you want to ensure that the " +"interaction author is a given user." +msgstr "" + +#: cac332ec85fd4e678581cb07369b113e discord.ui.view.View.interaction_check:9 of +msgid "The default implementation of this returns ``True``." +msgstr "" + +#: 6dd6d3e0de674b37b56463799d4e5796 discord.ui.view.View.interaction_check:11 +#: of +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "" + +#: a6e651afda894717a3c7eeb4b0efc534 discord.ui.view.View.interaction_check:15 +#: of +msgid "" +"If an exception occurs within the body then the check is considered a " +"failure and :meth:`on_error` is called." +msgstr "" + +#: 1a432a43d45d41dd97862b1f0f19af7e 79b0908f8b1e4c90a0dbb2d347d1dd8c +#: discord.ui.view.View.interaction_check:19 +#: discord.ui.view.View.on_check_failure:6 of +msgid "The interaction that occurred." +msgstr "" + +#: 44b3331c42c24dd0871d7b6a7ac96dbe discord.ui.view.View.interaction_check:22 +#: of +msgid "Whether the view children's callbacks should be called." +msgstr "" + +#: 0bb24bab4e6440df876e7c91b96d1b76 discord.ui.view.View.on_timeout:3 of +msgid "" +"A callback that is called when a view's timeout elapses without being " +"explicitly stopped." +msgstr "" + +#: 27d3ccf10dd24da88cdb7c2a3974f10c discord.ui.view.View.on_check_failure:1 of +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 "" + +#: 0d75dddb92724f969f33febce6cfc3c3 discord.ui.view.View.on_error:3 of +msgid "" +"A callback that is called when an item's callback or " +":meth:`interaction_check` fails with an error." +msgstr "" + +#: 875e47bef4214d1c8f6c288059a65b3b 99e74ef3f5f9466680a35e8deda8f23c +#: discord.ui.modal.Modal.on_error:5 discord.ui.view.View.on_error:6 of +msgid "The default implementation prints the traceback to stderr." +msgstr "" + +#: 2238043a3f944ee984d06ec6486cb852 93edd4d9bd60459aa302fa40cea76916 +#: discord.ui.modal.Modal.on_error:8 discord.ui.view.View.on_error:9 of +msgid "The exception that was raised." +msgstr "" + +#: 5709e63245134c1cb16bcce2366bfb46 discord.ui.view.View.on_error:12 of +msgid "The item that failed the dispatch." +msgstr "" + +#: 24dd9c6954ba4b6f8baae26063abdfe1 93c2f8cbaba342cb942380efba1bcd38 +#: discord.ui.modal.Modal.on_error:11 discord.ui.view.View.on_error:15 of +msgid "The interaction that led to the failure." +msgstr "" + +#: a29f8a3d5bdb4aec85165d9368bcf74a discord.ui.view.View.stop:1 of +msgid "Stops listening to interaction events from this view." +msgstr "" + +#: d55bc70ac28e4e31bcdca08c3436896c discord.ui.view.View.stop:3 of +msgid "This operation cannot be undone." +msgstr "" + +#: acc1711d1e2247a99930ff1d6dc94787 discord.ui.view.View.is_finished:1 of +msgid "Whether the view has finished interacting." +msgstr "" + +#: 3dd17f55957b46f69f70d89163d80c06 5e86d04d3f744d8e85483af1cc8e54f3 +#: discord.ui.modal.Modal.wait:4 discord.ui.view.View.is_dispatching:4 +#: discord.ui.view.View.is_finished:4 discord.ui.view.View.is_persistent:7 +#: f3f660e1e53145d7adcbd25a47dc519d ff0aea3ebb2f44c0874d3d169b0fc412 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 201608b51af64b808fe79c226b6a3ff4 discord.ui.view.View.is_dispatching:1 of +msgid "Whether the view has been added for dispatching purposes." +msgstr "" + +#: a7c94233f3944c7f91a2fddae3d48713 discord.ui.view.View.is_persistent:1 of +msgid "Whether the view is set up as persistent." +msgstr "" + +#: af57e2f1c3d241c79c75bc007dc6f9e6 discord.ui.view.View.is_persistent:3 of +msgid "" +"A persistent view has all their components with a set ``custom_id`` and a" +" :attr:`timeout` set to ``None``." +msgstr "" + +#: a350e14ae6094bf9a45da3bba4581ba1 discord.ui.view.View.wait:1 of +msgid "Waits until the view has finished interacting." +msgstr "" + +#: 12f9450397a54aaebb6c26b3063d3ffa discord.ui.view.View.wait:3 of +msgid "" +"A view is considered finished when :meth:`stop` is called, or it times " +"out." +msgstr "" + +#: c95bfa514bbd4d9590e3220c31c0c6c5 discord.ui.view.View.wait:6 of +msgid "" +"If ``True``, then the view timed out. If ``False`` then the view finished" +" normally." +msgstr "" + +#: 314de3c4bde54717b2849331287e748e discord.ui.view.View.disable_all_items:1 of +msgid "Disables all items in the view." +msgstr "" + +#: 4072920264ba4042a24a4149853585d3 discord.ui.view.View.disable_all_items:4 of +msgid "A list of items in `self.children` to not disable from the view." +msgstr "" + +#: bf174030a36b4632b1cf6e1fc5fe4038 discord.ui.view.View.enable_all_items:1 of +msgid "Enables all items in the view." +msgstr "" + +#: 156efa1c1fbf4918af0b9e99b8099feb discord.ui.view.View.enable_all_items:4 of +msgid "A list of items in `self.children` to not enable from the view." +msgstr "" + +#: 20e96e2aa54a45bfa5ad1c493abb7dd9 discord.ui.item.Item:1 of +msgid "Represents the base UI item that all UI components inherit from." +msgstr "" + +#: 9a2765dfcfb646e084e717be3bed4b85 discord.ui.item.Item:3 of +msgid "The current UI items supported are:" +msgstr "" + +#: 0b1b92a5722e4ab398df7f16d1135628 discord.ui.item.Item:5 of +msgid ":class:`discord.ui.Button`" +msgstr "" + +#: b7356742ae8c4acebf71b6dc048626a3 discord.ui.item.Item:6 of +msgid ":class:`discord.ui.Select`" +msgstr "" + +#: 718197200d854b84879705c60c0d53e8 82ecd677a8ae42efab9547d6e0c64ca6 +#: discord.ui.Button.view:1 discord.ui.Item.view:1 discord.ui.Select.view:1 +#: eece3a9744f2405a8e83f30be0252a22 of +msgid "The underlying view for this item." +msgstr "" + +#: 055cf67df1e94d0592bbc5d22013c323 c8cd5c6c52b2432086a54d8ebaf9dade +#: discord.ui.item.Item.callback:3 e3934636086a444ea2d8e67a258834cb of +msgid "The callback associated with this UI item." +msgstr "" + +#: 253657b63da14170bec87bc80bc4c38a 30a9c108e9d24604ac60bf1e911af72d +#: 94fcbdc6f4a7448fbbebfa233bf60049 discord.ui.item.Item.callback:5 of +msgid "This can be overridden by subclasses." +msgstr "" + +#: 2dfbae61c770488cbbe415c1fe433949 9083cdfe2ae24b2f950208892462f7bb +#: c4a0d0cb7af54912ad4f4e1cfb4aff78 discord.ui.item.Item.callback:8 of +msgid "The interaction that triggered this UI item." +msgstr "" + +#: d3ed8c14fbc14d40be6691f7709cfe09 discord.ui.button.Button:1 of +msgid "Represents a UI button." +msgstr "" + +#: 3e0672a1b2d64d418a64a8f5033f2572 5f26973a49434bcf9f88e06a44a7629c +#: discord.ui.Button.style:1 discord.ui.button.Button:6 of +msgid "The style of the button." +msgstr "" + +#: bc22a9734365447c827b37fcf29a072c discord.ui.button.Button:9 of +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 "" + +#: 47abb7d1e6094637a97fa3df6a95a8e8 discord.ui.Button.url:1 +#: discord.ui.button.Button:13 f2929e3d104a48f08a200c52f438e072 of +msgid "The URL this button sends you to." +msgstr "" + +#: 1800abfd6ac44f59ae3181e5274b405c 2eb02a2f95694738aa23bf512070f586 +#: discord.ui.Button.disabled:1 discord.ui.button.Button:16 of +msgid "Whether the button is disabled or not." +msgstr "" + +#: 3aa00fa1b0524f57b5984d7f80d72c47 discord.ui.button.Button:19 of +msgid "The label of the button, if any. Maximum of 80 chars." +msgstr "" + +#: 3faa2a41847245938c5f2b330a599f40 74f13428fd0a40f39ee7531329565abf +#: discord.ui.Button.emoji:1 discord.ui.button.Button:22 of +msgid "The emoji of the button, if available." +msgstr "" + +#: bf020129ab2a4825b8dfff6074481348 discord.ui.Button.sku_id:1 +#: discord.ui.button.Button:25 e113ed73331e4e739300825d1691dd3f of +msgid "The ID of the SKU this button refers to." +msgstr "" + +#: discord.ui.Button.custom_id:1 e6884781decb43808438d3e9817dd29b of +msgid "The ID of the button that gets received during an interaction." +msgstr "" + +#: 47b62faa29564d4f9cc2e549f6863c4d discord.ui.Button.custom_id:3 of +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "" + +#: 24753a72351f419db69690e215d59991 discord.ui.Button.label:1 of +msgid "The label of the button, if available." +msgstr "" + +#: b77915704f4243b096bd2422d12bbb91 discord.ui.select.Select:1 of +msgid "Represents a UI select menu." +msgstr "" + +#: 97252e0d347f4d1f99a112d6313bfe29 discord.ui.select.Select:3 of +msgid "This is usually represented as a drop down menu." +msgstr "" + +#: a8c107f041ed4021944056e98e4b13ee discord.ui.select.Select:5 of +msgid "" +"In order to get the selected items that the user has chosen, use " +":attr:`Select.values`." +msgstr "" + +#: 3c3698117004495d830d4610d318dff0 discord.ui.select.Select:11 of +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 "" + +#: 177b62b01c754dd780a7a3d22484d19d discord.ui.select.Select:22 of +msgid "" +"The ID of the select menu that gets received during an interaction. If " +"not given then one is generated for you." +msgstr "" + +#: 4eebabd7f0d44d08a9418e9bb1f45933 discord.ui.select.Select:29 of +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 "" + +#: 16f0527ad7e44487bb43ccfda1c635eb discord.ui.select.Select:37 of +msgid "" +"A list of options that can be selected in this menu. Only valid for " +"selects of type :attr:`discord.ComponentType.string_select`." +msgstr "" + +#: 6f486dcced0f4699b0055a1ecd5b20fc discord.ui.select.Select:41 of +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 "" + +#: 6ccb04df725844a182a2639c2457b4b5 796771ff82554675a187cca6828acb7c +#: discord.ui.Select.disabled:1 discord.ui.select.Select:45 of +msgid "Whether the select is disabled or not." +msgstr "" + +#: a925d6a693154f52a7d0daad0c744686 discord.ui.Select.custom_id:1 of +msgid "The ID of the select menu that gets received during an interaction." +msgstr "" + +#: 7fd54b986674467abbb28a2ced73f7d5 discord.ui.Select.min_values:1 of +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "" + +#: 3d4f7caeeeee4bf9849176d0b17c48b8 discord.ui.Select.max_values:1 of +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "" + +#: 9e37bef3ace54b26a73d62ad34fee227 discord.ui.Select.channel_types:1 of +msgid "A list of channel types that can be selected in this menu." +msgstr "" + +#: d7b6d5871f744324b100f604ccaa833a discord.ui.Select.options:1 of +msgid "A list of options that can be selected in this menu." +msgstr "" + +#: d623f3b744a14701a12c06831d410d96 discord.ui.select.Select.add_option:1 of +msgid "Adds an option to the select menu." +msgstr "" + +#: 0e6d15c2f7ae4c29986e7dd0f1154f23 discord.ui.select.Select.add_option:3 of +msgid "" +"To append a pre-existing :class:`discord.SelectOption` use the " +":meth:`append_option` method instead." +msgstr "" + +#: 0abfcec6e5a4408a803463cec892a147 discord.ui.select.Select.add_option:7 of +msgid "" +"The label of the option. This is displayed to users. Can only be up to " +"100 characters." +msgstr "" + +#: 067e5b5806b14e759abb23e9b4e860a9 discord.ui.select.Select.add_option:11 of +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 "" + +#: 760c50e112a04650a33bf2c56834b14f discord.ui.select.Select.add_option:15 of +msgid "" +"An additional description of the option, if any. Can only be up to 100 " +"characters." +msgstr "" + +#: 042ab23dcae24d1389ceba8d72659509 discord.ui.select.Select.add_option:19 of +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 "" + +#: 27eb750afa664a6ea5cf41996fc3cacc discord.ui.select.Select.add_option:23 of +msgid "Whether this option is selected by default." +msgstr "" + +#: 7eff0916811d4ee2b31c189597562605 discord.ui.select.Select.add_option:26 +#: discord.ui.select.Select.append_option:7 e190a9601c2e43eb88aaeb92ae48a1a1 of +msgid "The number of options exceeds 25." +msgstr "" + +#: 21ff2a9da99b4440929eb12965b39a31 discord.ui.select.Select.append_option:1 of +msgid "Appends an option to the select menu." +msgstr "" + +#: c84b351523dc43f8916def7991ada61a discord.ui.select.Select.append_option:4 of +msgid "The option to append to the select menu." +msgstr "" + +#: b886031b28ca473eb760ef8253f0f94c discord.ui.Select.values:1 of +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 "" + +#: b9270d5d3b734251840a9f06eb712027 discord.ui.modal.Modal:1 of +msgid "Represents a UI Modal dialog." +msgstr "" + +#: d1f45a3b27da4ba69428076fe7aa9191 discord.ui.modal.Modal:8 of +msgid "The initial InputText fields that are displayed in the modal dialog." +msgstr "" + +#: 3534571d450444f3b728e0d7629b67a7 discord.ui.modal.Modal:11 of +msgid "The title of the modal dialog. Must be 45 characters or fewer." +msgstr "" + +#: d3eb5f8c8d2e48efad25d189c53c8702 discord.ui.modal.Modal:15 of +msgid "" +"The ID of the modal dialog that gets received during an interaction. Must" +" be 100 characters or fewer." +msgstr "" + +#: 0dfdf29800e044d89a49e207c803d984 discord.ui.Modal.title:1 of +msgid "The title of the modal dialog." +msgstr "" + +#: 06dd349526264f8a9df66fcb7980af2a discord.ui.Modal.children:1 of +msgid "The child components associated with the modal dialog." +msgstr "" + +#: 686f5e94a69c4dec802fd25dc3c06607 discord.ui.Modal.custom_id:1 of +msgid "The ID of the modal dialog that gets received during an interaction." +msgstr "" + +#: discord.ui.modal.Modal.callback:3 e78cf6c4472c4a7480c4d9b0b79dd7bf of +msgid "" +"The coroutine that is called when the modal dialog is submitted. Should " +"be overridden to handle the values submitted by the user." +msgstr "" + +#: 4d2a53d8fa0a403eb48b376ee949adf4 discord.ui.modal.Modal.callback:7 of +msgid "The interaction that submitted the modal dialog." +msgstr "" + +#: 2027446701754f3794b31d4a61853116 discord.ui.modal.Modal.add_item:1 of +msgid "Adds an InputText component to the modal dialog." +msgstr "" + +#: 698b0ffc9e8a48dd9571951f9059c7aa discord.ui.modal.Modal.add_item:4 of +msgid "The item to add to the modal dialog" +msgstr "" + +#: c4180d38f8514641b975d5b03834cdd5 discord.ui.modal.Modal.remove_item:1 of +msgid "Removes an InputText component from the modal dialog." +msgstr "" + +#: d745be688d5c42638330608e48ad46a2 discord.ui.modal.Modal.remove_item:4 of +msgid "The item to remove from the modal dialog." +msgstr "" + +#: 10c0de82d08242399b35eb6d50cae8b4 discord.ui.modal.Modal.stop:1 of +msgid "Stops listening to interaction events from the modal dialog." +msgstr "" + +#: 844abb1d49a849aa83ab65a5d6348a36 discord.ui.modal.Modal.wait:1 of +msgid "Waits for the modal dialog to be submitted." +msgstr "" + +#: 39116ddd5b794673b34f99da06860ff1 discord.ui.modal.Modal.on_error:3 of +msgid "A callback that is called when the modal's callback fails with an error." +msgstr "" + +#: 716ac8fecc0a4170a9381cec6a9e2ef9 discord.ui.modal.Modal.on_timeout:3 of +msgid "" +"A callback that is called when a modal's timeout elapses without being " +"explicitly stopped." +msgstr "" + +#: 7cc19a1bcc8d474fb7b13e76fe9325ac discord.ui.input_text.InputText:1 of +msgid "Represents a UI text input field." +msgstr "" + +#: 391f2a60ad1a446b9b869244f8074585 46ab89f240c04a70b1772095a8585e87 +#: discord.ui.InputText.style:1 discord.ui.input_text.InputText:6 of +msgid "The style of the input text field." +msgstr "" + +#: 53336a0409494b719bad7895bab5d8e3 7dd47d92ba824a4d802daaecff316b4a +#: discord.ui.InputText.custom_id:1 discord.ui.input_text.InputText:9 of +msgid "The ID of the input text field that gets received during an interaction." +msgstr "" + +#: 484601a95ea846b98aac3f5c46029167 discord.ui.input_text.InputText:12 of +msgid "The label for the input text field. Must be 45 characters or fewer." +msgstr "" + +#: bd55b842a60843b5a8cf3c66d215464b discord.ui.input_text.InputText:16 of +msgid "" +"The placeholder text that is shown if nothing is selected, if any. Must " +"be 100 characters or fewer." +msgstr "" + +#: df92d651e5fa4be1bdc8bcae6e21e348 discord.ui.input_text.InputText:20 of +msgid "" +"The minimum number of characters that must be entered. Defaults to 0 and " +"must be less than 4000." +msgstr "" + +#: discord.ui.input_text.InputText:24 e01a7fc394d841cda09f68b1b136d1f1 of +msgid "" +"The maximum number of characters that can be entered. Must be between 1 " +"and 4000." +msgstr "" + +#: 3c95c7168cee4a3ca835e439caf1363f 584df796ba3345878a51cb7cbbd2ad12 +#: discord.ui.InputText.required:1 discord.ui.input_text.InputText:28 of +msgid "Whether the input text field is required or not. Defaults to ``True``." +msgstr "" + +#: 4b3080c9570045559a3b3f095cd7ede9 discord.ui.input_text.InputText:31 of +msgid "" +"Pre-fills the input text field with this value. Must be 4000 characters " +"or fewer." +msgstr "" + +#: 2f957dcccb3d47ae8f08c48419ea39a1 discord.ui.input_text.InputText:35 of +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 "" + +#: 53bbbf9910f6434a86d331c806dc2485 discord.ui.InputText.label:1 of +msgid "The label of the input text field." +msgstr "" + +#: 8532b6f3c3b54fa1adac3f290721896e discord.ui.InputText.placeholder:1 of +msgid "The placeholder text that is shown before anything is entered, if any." +msgstr "" + +#: 0841d9930482419a831cb90ca1d54c5f discord.ui.InputText.min_length:1 of +msgid "The minimum number of characters that must be entered. Defaults to 0." +msgstr "" + +#: 6369ccce3bbe48e2ac99040cf9f3a39b discord.ui.InputText.max_length:1 of +msgid "The maximum number of characters that can be entered." +msgstr "" + +#: 7eef7bc7f5434d39baab02325cc1ee35 discord.ui.InputText.value:1 of +msgid "The value entered in the text field." +msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/utils.po b/docs/locales/en/LC_MESSAGES/api/utils.po new file mode 100644 index 0000000000..f59470c925 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/utils.po @@ -0,0 +1,819 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\n" + +#: ../../api/utils.rst:6 b2f28caecc924db59cc0bfda2cf725bb +msgid "Utility Functions" +msgstr "" + +#: discord.utils.find:1 e551a85abadc4f54a50aee8720846873 of +msgid "" +"A helper to return the first element found in the sequence that meets the" +" predicate. For example: ::" +msgstr "" + +#: 9281f3d427c24c5199324b441b758af9 discord.utils.find:6 of +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 "" + +#: 8e363292f30e4a8c8001b4f2a413d3f5 discord.utils.find:9 of +msgid "" +"This is different from :func:`py:filter` due to the fact it stops the " +"moment it finds a valid entry." +msgstr "" + +#: ../../api/utils.rst 050571d8ce744379a07e80a62aa94870 +#: 1c60fdf432a34262b02af7df598af358 201c050fc14d44f0810c776b20c676a1 +#: 35c87733e7a44f0abc2df0b1b7ea12be 39fbbccdd8e84cfbb3dd88b8836b653e +#: 4182382f67e146d09cff1cbee0f070a5 4b7d6b239eb844b0a07455620184eb3e +#: 55701d63ab734c498871b0f9b16d1c6d 5f476066bcaf4eae9d5ca625db8badcf +#: 6a62a020e98a4607844e6a1d92754354 7a0f3e4603c446ee80192ad6a4c2a275 +#: 8a406056f674402fbda55a5b21a97010 8cd9a4a6430f4d4083e18c8cf19fcf48 +#: 94c84324850542b18825d9ad059adfca 966fc85ec97e4462a08892e3238a8de7 +#: ab4317ac344e484ab6269743deb00536 ac91098994644d18b800c34e375c9751 +#: b2325f4789474a608227307565f07ab8 b2eaf3d8463e41408acf895a2e2016b6 +#: b4007756f3b14b119341325d85618f45 d084c891f79846a089b9181a6952a853 +#: discord.utils.get_or_fetch e235bd384d1b429d8285ad37f2d4a591 +#: f8bf8feea079450998152dcff00e95c1 of +msgid "Parameters" +msgstr "" + +#: 9fa7a6562c90425ba95278c8fb52c572 discord.utils.find:13 of +msgid "A function that returns a boolean-like result." +msgstr "" + +#: bf625ed56ac94e4e9c16375a29c802e4 discord.utils.find:15 of +msgid "The iterable to search through." +msgstr "" + +#: ../../api/utils.rst 02dcab3cde5943e6b6bb51bb073c78d3 +#: 17bce3950d8d41f999cfc959de1c8005 2b2c738b3ccb483f9981028c7a67eb93 +#: 2eb1e3111512438984551edfa1d65489 392e00c2a71444519c80974c8388009c +#: 3c6d52d4b8354e06b6ce0fcf3b086c85 54a28def4381478084624d76e12f9f45 +#: 6284d5d5ec2c4d81b0867bef1a730df0 737183e407f044cfbdeb3520b0664458 +#: 74261c6f68334a9c9832b03ab14c173c 77e1c55771274774bc9154f8b83f65fc +#: 7b6ea48218734b5d9fdac096eb1869e9 8c58ff1ae8594e3885fc52f7276a6393 +#: abf23af895704f009e6e57170df2e2c3 ae19383e27b04626a84993ee6c1dc6c2 +#: b240a7e64248402482220648f8d25d89 b91f8eeb2b9144e8ae6b7ef21d93a779 +#: bfc10ea03c514b9788b46e71d6bb66fd c287aafc3232425da8ccd5cca5f25e2d +#: cf3a47a3633248deb7dd10cf5aabac09 discord.utils.get_or_fetch +#: eaf3c063f00646c9a476d69b6683b0ac eb0e0c983f3c4751858bc3209d71caf8 +#: f43529e1bd0a4b11aa3c197db4892dee of +msgid "Return type" +msgstr "" + +#: 1f9579e8c87641de83f52a1e20a4f328 b44d8109461742229a137bc4ba3bceef +#: discord.utils.find:18 discord.utils.get:40 discord.utils.sleep_until:17 +#: f5452727e7f94436b7f9a74b23e539ab of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Optional\\`\\\\" +" \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ " +"\\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "" + +#: 1bf4fedf587c4b5fbebab4a690e1e45d discord.utils.get:1 of +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 "" + +#: 7e04bf3fc16d4bdd8184628cad06f709 discord.utils.get:5 of +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.get:9 e17e9bba8fca4009a6e42a4491469d8a of +msgid "" +"To have a nested attribute search (i.e. search by ``x.y``) then pass in " +"``x__y`` as the keyword argument." +msgstr "" + +#: 8ce8eccaa5d54963817ec2ccbfcd4897 discord.utils.get:12 of +msgid "" +"If nothing is found that matches the attributes passed, then ``None`` is " +"returned." +msgstr "" + +#: 3521bfb272664038a752ad0c4215b894 3924fb9efa21466e8ad1606af419115d +#: discord.utils.get:16 discord.utils.get_or_fetch:28 of +msgid "Examples" +msgstr "" + +#: discord.utils.get:17 ebf141cbc71a4423aa0f9536eaa183a4 of +msgid "Basic usage:" +msgstr "" + +#: 6eb8c1d8a594429bbe9089eaa7e1ac0a discord.utils.get:23 of +msgid "Multiple attribute matching:" +msgstr "" + +#: discord.utils.get:29 e122d883c8ba4dc9a17922e005f6f3a0 of +msgid "Nested attribute matching:" +msgstr "" + +#: discord.utils.get:36 ece83686d52643cdb6c8406fde3c7285 of +msgid "An iterable to search through." +msgstr "" + +#: discord.utils.get:38 fe5bcc80273940e1a3c9d8a61010ca49 of +msgid "Keyword arguments that denote attributes to search with." +msgstr "" + +#: 047a5517f469416aab2b765c3711e2c9 813a458483fc4657bb6de6015318ea4c +#: discord.utils.get_or_fetch:1 discord.utils.sleep_until:1 of +msgid "|coro|" +msgstr "" + +#: 6059a0ee37c84b7c968bbb3180cd4061 discord.utils.get_or_fetch:3 of +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 "" + +#: 99c21646a64544a7a66635fe89a62488 discord.utils.get_or_fetch:7 of +msgid "The object to use the get or fetch methods in" +msgstr "" + +#: 722b7174a36e40d9ad7f4158e4dec713 discord.utils.get_or_fetch:10 of +msgid "" +"The attribute to get or fetch. Note the object must have both a ``get_`` " +"and ``fetch_`` method for this attribute." +msgstr "" + +#: d12701e421f14168a8c064b63bbca7d1 discord.utils.get_or_fetch:13 of +msgid "The ID of the object" +msgstr "" + +#: bebeace681de4c4b82947227d8b175ce discord.utils.get_or_fetch:16 of +msgid "" +"The default value to return if the object is not found, instead of " +"raising an error." +msgstr "" + +#: ../../api/utils.rst 1fec765e695e4742b8b12fe2c089354f +#: 2518caf557d74fe89605eb9ccea011f7 2cada1fbf84b404fb2628ac3f35b19ed +#: 36f7538b818747bba0d09bfdca701d0c 410c4260d88e4f388018236761fc0965 +#: 5a9fd330b31e4c7c8844cdf8c620430b 5e2662c472244430a1c5f927e8ad5742 +#: 6a6845d4e22b436ca97dfac93491f478 7fd927630bce466fb5d388f8d11fcdb4 +#: 8035ef1de15d4808923a8f8d047577bc 80cac2a2e81441b287f204bf5131b09d +#: 96d038e7361c4ea69e5d5fb8389f92dd b9b2c90b77b84eb5805166bc365f005b +#: c1a779448b8c416f9893dcbbbc8b8ae1 c2f878aa2d944761ba684104b753f875 +#: c9e6df7e45324f84a24e0117930a36a1 discord.utils.get_or_fetch +#: e4958f5419174efea8ba08cb566b5fe0 fa6b89a60707475d9f9f29fe605228b4 of +msgid "Returns" +msgstr "" + +#: 44457c74e11f4bcb86593baff8be9dab discord.utils.get_or_fetch:19 of +msgid "The object found or the default value." +msgstr "" + +#: 30b0356fd64d4d41b7a8e2cad0506d17 discord.utils.get_or_fetch of +msgid "Raises" +msgstr "" + +#: discord.utils.get_or_fetch:22 f118d1f7f46440f8b25a14d07b483c94 of +msgid "The object is missing a ``get_`` or ``fetch_`` method" +msgstr "" + +#: 044578fd72984f17b794e0b1b3b98deb discord.utils.get_or_fetch:23 of +msgid "Invalid ID for the object" +msgstr "" + +#: a32ef12495724e3592521d9a0b9e1a9a discord.utils.get_or_fetch:24 of +msgid "An error occurred fetching the object" +msgstr "" + +#: 8cf54e47d9784ec687e61aee0ab3215c discord.utils.get_or_fetch:25 of +msgid "You do not have permission to fetch the object" +msgstr "" + +#: 10c9649c25a64cd0a556bf2a290e0a61 discord.utils.get_or_fetch:29 of +msgid "Getting a guild from a guild ID: ::" +msgstr "" + +#: 78c2fa52a132456abfb980a83613441d discord.utils.get_or_fetch:33 of +msgid "" +"Getting a channel from the guild. If the channel is not found, return " +"None: ::" +msgstr "" + +#: discord.utils.oauth_url:1 fe4a3d1e945e470898618bbdafc75294 of +msgid "" +"A helper function that returns the OAuth2 URL for inviting the bot into " +"guilds." +msgstr "" + +#: 6922f1e7d23c4cdca00cb7eb5a3f919f discord.utils.oauth_url:5 of +msgid "The client ID for your bot." +msgstr "" + +#: 53556372d4e94d1fb9ab93f8b9843b8a discord.utils.oauth_url:8 of +msgid "" +"The permissions you're requesting. If not given then you won't be " +"requesting any permissions." +msgstr "" + +#: 96730f42a5cf4cba83bbb44013b202c2 discord.utils.oauth_url:12 of +msgid "The guild to pre-select in the authorization screen, if available." +msgstr "" + +#: 45c5f11bfe894ccaadeefd066064da1f discord.utils.oauth_url:15 of +msgid "An optional valid redirect URI." +msgstr "" + +#: cd3dfb289ce14729873225317a503d8f discord.utils.oauth_url:18 of +msgid "" +"An optional valid list of scopes. Defaults to ``('bot',)``. .. " +"versionadded:: 1.7" +msgstr "" + +#: 0c9e2a41e0514b69a182b945cf09782e discord.utils.oauth_url:18 of +msgid "An optional valid list of scopes. Defaults to ``('bot',)``." +msgstr "" + +#: a58d963b26244f65946d3ce5d9507396 discord.utils.oauth_url:23 of +msgid "" +"Whether to disallow the user from changing the guild dropdown. .. " +"versionadded:: 2.0" +msgstr "" + +#: 33c3ea449b084bbba0bac77189221864 discord.utils.oauth_url:23 of +msgid "Whether to disallow the user from changing the guild dropdown." +msgstr "" + +#: dddb7780a58c4d02a9e33a83610456f6 discord.utils.oauth_url:28 of +msgid "The OAuth2 URL for inviting the bot into guilds." +msgstr "" + +#: 00e022b285884d4caddb3d3d92874d00 1691932c989c44919f5464baf2015706 +#: 35c97cbad62a46f6bbbcc1e7cd22ec91 365ce5216faf447abc535b71d88ddd14 +#: 7f98ae082d164224a29428f14d1e0e6d 9590c8c38e8b4cf78813d5435267d058 +#: 983c0fcb3ba3401e9e63e6128fb8cc0d discord.utils.escape_markdown:21 +#: discord.utils.escape_mentions:18 discord.utils.format_dt:36 +#: discord.utils.oauth_url:29 discord.utils.remove_markdown:19 +#: discord.utils.resolve_invite:8 discord.utils.resolve_template:10 of +msgid ":class:`str`" +msgstr "" + +#: 744cadce5cf74df4b0bff0d86815d9bd discord.utils.remove_markdown:1 of +msgid "A helper function that removes markdown characters." +msgstr "" + +#: dd119c77246d4c808920c17ba3cd4e62 discord.utils.remove_markdown:6 of +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 "" + +#: 4f53660c7b22469a88a4b9d71b7e3b7e discord.utils.remove_markdown:10 of +msgid "The text to remove markdown from." +msgstr "" + +#: a8a0bc5695a34e19b9e67a672ebbc601 discord.utils.remove_markdown:13 of +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 "" + +#: a07ce7398e2448098358b434ba711f00 discord.utils.remove_markdown:18 of +msgid "The text with the markdown special characters removed." +msgstr "" + +#: 8dfc3e36bdd74417ac27356ec9ecb8d8 discord.utils.escape_markdown:1 of +msgid "A helper function that escapes Discord's markdown." +msgstr "" + +#: 8d7409e0a4bb46fa8923de1e64781442 discord.utils.escape_markdown:4 of +msgid "The text to escape markdown from." +msgstr "" + +#: c185975ffa2e45ba87bba442cd8de2cc discord.utils.escape_markdown:7 of +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 "" + +#: 671aab37aa2840b3ae919cb1ca5d756f discord.utils.escape_markdown:14 of +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 "" + +#: 114cb57eb6be46778579ab942ac8a33c discord.utils.escape_markdown:20 of +msgid "The text with the markdown special characters escaped with a slash." +msgstr "" + +#: 92d7cc35f363403b9589b8ca920d471e discord.utils.escape_mentions:1 of +msgid "A helper function that escapes everyone, here, role, and user mentions." +msgstr "" + +#: 211f6b0061a04ff0b830caab837a2a42 discord.utils.escape_mentions:5 of +msgid "This does not include channel mentions." +msgstr "" + +#: 3bc32d1196534e289a79d7d33bbf3888 discord.utils.escape_mentions:9 of +msgid "" +"For more granular control over what mentions should be escaped within " +"messages, refer to the :class:`~discord.AllowedMentions` class." +msgstr "" + +#: 49f4649faee743348413613de50a095a discord.utils.escape_mentions:14 of +msgid "The text to escape mentions from." +msgstr "" + +#: d5330c7ee270424fad80aca4a9bf2687 discord.utils.escape_mentions:17 of +msgid "The text with the mentions removed." +msgstr "" + +#: bfa4bf501e754a7a8e564daf92173adc discord.utils.raw_mentions:1 of +msgid "Returns a list of user IDs matching ``<@user_id>`` in the string." +msgstr "" + +#: 2b8d9969221f4e3b842ecd4c5b0ff7ed discord.utils.raw_mentions:6 of +msgid "The string to get user mentions from." +msgstr "" + +#: discord.utils.raw_mentions:9 ff66d05ec8364c5bb85c870a70b62b85 of +msgid "A list of user IDs found in the string." +msgstr "" + +#: 7683abc8d79f4cff8f52ada8f6f537fe b7adc5671b74425aa0dc7620d4e36e60 +#: bf95fb3638ae4162a3ede56e570d575d discord.utils.raw_channel_mentions:10 +#: discord.utils.raw_mentions:10 discord.utils.raw_role_mentions:10 of +msgid "List[:class:`int`]" +msgstr "" + +#: a1bdaec1c08143d09c3070b44e4546db discord.utils.raw_channel_mentions:1 of +msgid "Returns a list of channel IDs matching ``<@#channel_id>`` in the string." +msgstr "" + +#: discord.utils.raw_channel_mentions:6 ef551f719496417da562512dee9448b1 of +msgid "The string to get channel mentions from." +msgstr "" + +#: bbe74131d518497b942a440880a52043 discord.utils.raw_channel_mentions:9 of +msgid "A list of channel IDs found in the string." +msgstr "" + +#: 090aaefa36ea42ce8ac9a82def9de7c9 discord.utils.raw_role_mentions:1 of +msgid "Returns a list of role IDs matching ``<@&role_id>`` in the string." +msgstr "" + +#: aad51dd511f94d5faf5c31f04e4975a3 discord.utils.raw_role_mentions:6 of +msgid "The string to get role mentions from." +msgstr "" + +#: 27df55b1abed40ad926dbd266a1b38ba discord.utils.raw_role_mentions:9 of +msgid "A list of role IDs found in the string." +msgstr "" + +#: 0b0a46fc6d8148818f7321a47619a716 discord.utils.resolve_invite:1 of +msgid "Resolves an invite from a :class:`~discord.Invite`, URL or code." +msgstr "" + +#: 7852632e3bfc4c818c1f732dabda5b61 discord.utils.resolve_invite:4 of +msgid "The invite." +msgstr "" + +#: 7f73d202fc844dd3bdcdd567127959e0 discord.utils.resolve_invite:7 of +msgid "The invite code." +msgstr "" + +#: 2cdcdcf9d2bf4ffd9559d511ef27090d discord.utils.resolve_template:1 of +msgid "Resolves a template code from a :class:`~discord.Template`, URL or code." +msgstr "" + +#: 9a9b237ba8764f16a2735e97b8ba92cd discord.utils.resolve_template:6 of +msgid "The code." +msgstr "" + +#: 382208b003a849349169f0693d92fe85 discord.utils.resolve_template:9 of +msgid "The template code." +msgstr "" + +#: 759a5b88a9474bde911dc404a88a4c7d discord.utils.sleep_until:3 of +msgid "Sleep until a specified time." +msgstr "" + +#: 498fcacad5e542c9b535af7c5ac323bb discord.utils.sleep_until:5 of +msgid "If the time supplied is in the past this function will yield instantly." +msgstr "" + +#: 356a2d3a17414064a0332ba1c9110db4 discord.utils.sleep_until:10 of +msgid "" +"The timestamp in which to sleep until. If the datetime is naive then it " +"is assumed to be local time." +msgstr "" + +#: 46cdf4f783574bbd845beea1f3778f06 discord.utils.sleep_until:14 of +msgid "If provided is returned to the caller when the coroutine completes." +msgstr "" + +#: b2522dd48dfa4bea8fcd24de4d79178d discord.utils.utcnow:1 of +msgid "" +"A helper function to return an aware UTC datetime representing the " +"current time." +msgstr "" + +#: be409753e4dc466f8c77ca040ecaeccb discord.utils.utcnow:3 of +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 "" + +#: 683514a7b0d641748f3c0d70b7009595 discord.utils.utcnow:8 of +msgid "The current aware datetime in UTC." +msgstr "" + +#: 3d3d51edb6044a099f7629a77d8811e9 56bd424aabf44587a6ffcec02aaa5af0 +#: discord.utils.snowflake_time:8 discord.utils.utcnow:9 of +msgid ":class:`datetime.datetime`" +msgstr "" + +#: db52e7d27432444ebc061c6347543444 discord.utils.snowflake_time:1 of +msgid "Converts a Discord snowflake ID to a UTC-aware datetime object." +msgstr "" + +#: 1445cceebae94da79f69c7ec2c82b3b8 discord.utils.snowflake_time:4 of +msgid "The snowflake ID." +msgstr "" + +#: 050dbdb6689b438184c22d7a4a9c4e1d discord.utils.snowflake_time:7 of +msgid "An aware datetime in UTC representing the creation time of the snowflake." +msgstr "" + +#: 7ddbe7752a5e4bbb8c60ae498b445f46 discord.utils.parse_time:1 of +msgid "A helper function to convert an ISO 8601 timestamp to a datetime object." +msgstr "" + +#: 87b7502a035c4f7a94b7b1d26819abef discord.utils.parse_time:4 of +msgid "The timestamp to convert." +msgstr "" + +#: c723db34011f49828d3bb12fed23d6a9 discord.utils.parse_time:7 of +msgid "The converted datetime object." +msgstr "" + +#: aa502e7ed02045ffa2fd6ab5aec5825c discord.utils.parse_time:8 of +msgid "Optional[:class:`datetime.datetime`]" +msgstr "" + +#: c3e3a912c4c747749a63ac1951adc0cd discord.utils.format_dt:1 of +msgid "" +"A helper function to format a :class:`datetime.datetime` for presentation" +" within Discord." +msgstr "" + +#: 014018350bde44a1af3b87f0a256c312 discord.utils.format_dt:3 of +msgid "" +"This allows for a locale-independent way of presenting data using Discord" +" specific Markdown." +msgstr "" + +#: 47c889fce51d4655894d69995fd09e64 discord.utils.format_dt:6 of +msgid "Style" +msgstr "" + +#: 9d872289da7647aa939a4249ed2116fc discord.utils.format_dt:6 of +msgid "Example Output" +msgstr "" + +#: 04d70e88eed741e8b7baec36dedd45a4 discord.utils.format_dt:6 of +msgid "Description" +msgstr "" + +#: d9773363dfdd4110be3202594b90deac discord.utils.format_dt:8 of +msgid "t" +msgstr "" + +#: 01f669f9d718485dabce66ae18c650d8 discord.utils.format_dt:8 of +msgid "22:57" +msgstr "" + +#: 4505dbbdb65643d689966d6ad5241fe9 discord.utils.format_dt:8 of +msgid "Short Time" +msgstr "" + +#: 7e56e826b4c54267b72e5e1333ce0835 discord.utils.format_dt:10 of +msgid "T" +msgstr "" + +#: 1db4a09a55cd497685f2e7e43eb40b7e discord.utils.format_dt:10 of +msgid "22:57:58" +msgstr "" + +#: discord.utils.format_dt:10 e2d7da40ee0a4cefb235c71f5059c1ba of +msgid "Long Time" +msgstr "" + +#: 0398eefcdaa9424e8095fc7c978adb69 discord.utils.format_dt:12 of +msgid "d" +msgstr "" + +#: 44d935830a894d798035c30178c37847 discord.utils.format_dt:12 of +msgid "17/05/2016" +msgstr "" + +#: 88dc24f2daf64b9b82ab2b5ccc55ef52 discord.utils.format_dt:12 of +msgid "Short Date" +msgstr "" + +#: c9ee5decc37b48bcb25bd130c3d5dc5f discord.utils.format_dt:14 of +msgid "D" +msgstr "" + +#: 3c3e68c2c7b34fa8975ca83d45c6e0d0 discord.utils.format_dt:14 of +msgid "17 May 2016" +msgstr "" + +#: 4dab2a15edd0492e8a71438ceb43b912 discord.utils.format_dt:14 of +msgid "Long Date" +msgstr "" + +#: 5efb87fd0d8744eb878c558c2f961a3c discord.utils.format_dt:16 of +msgid "f (default)" +msgstr "" + +#: a0b3a00fe113498a930293b0366f9ac8 discord.utils.format_dt:16 of +msgid "17 May 2016 22:57" +msgstr "" + +#: cebb638af4a44e89b22972425a3e8afc discord.utils.format_dt:16 of +msgid "Short Date Time" +msgstr "" + +#: 3e3fe2959acc44be92e90ac97ccb20f0 discord.utils.format_dt:18 of +msgid "F" +msgstr "" + +#: 59f32996a6ea4df6b6b3f171f6204b5e discord.utils.format_dt:18 of +msgid "Tuesday, 17 May 2016 22:57" +msgstr "" + +#: 5d1bb8a7e0e94646aa89baef02aa1b35 discord.utils.format_dt:18 of +msgid "Long Date Time" +msgstr "" + +#: 36677a24a28c4e50908c73cdfc0ce8cb discord.utils.format_dt:20 of +msgid "R" +msgstr "" + +#: 2ef4165bf158419caff2c9444a4a275d discord.utils.format_dt:20 of +msgid "5 years ago" +msgstr "" + +#: b4009f9e19a74f9c9c43a0d25e49b637 discord.utils.format_dt:20 of +msgid "Relative Time" +msgstr "" + +#: 8f6bdcb0e1b746d294b046b91e82acfa discord.utils.format_dt:23 of +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 "" + +#: 7a8890fe32364076971c15c65e42d0af discord.utils.format_dt:29 of +msgid "The datetime to format." +msgstr "" + +#: 752d22d96de1489489a0e1045d3f1702 discord.utils.format_dt:32 of +msgid "The style to format the datetime with." +msgstr "" + +#: 1247f6c9467c4399a21d45c6c2540b8f discord.utils.format_dt:35 of +msgid "The formatted string." +msgstr "" + +#: 3dbe398f94684d7d81111c3a9d78ddee discord.utils.time_snowflake:1 of +msgid "Returns a numeric snowflake pretending to be created at the given date." +msgstr "" + +#: 4f0a375b5445437c9b32c94bb126d2eb discord.utils.time_snowflake:3 of +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.time_snowflake:6 fd7692997b8d4147ae031cc74d728ea2 of +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 "" + +#: 156dc943215f43459e046968ed3d56f3 707b6da896314b699199545f50ffaa4c +#: discord.utils.generate_snowflake:5 discord.utils.time_snowflake:10 of +msgid "" +"A datetime object to convert to a snowflake. If naive, the timezone is " +"assumed to be local time." +msgstr "" + +#: 4d4b4aed7951406c98672889e6af4aff discord.utils.time_snowflake:14 of +msgid "Whether to set the lower 22 bit to high or low." +msgstr "" + +#: 36df0fad6db443f498326d3435c79e77 685eec1e29a2446e99fd2c65c95ed67e +#: discord.utils.generate_snowflake:9 discord.utils.time_snowflake:17 of +msgid "The snowflake representing the time given." +msgstr "" + +#: 1592ca8f639d49108573be44e12cd05c discord.utils.generate_snowflake:10 +#: discord.utils.time_snowflake:18 f921d097fcff48d2ba649bf347797916 of +msgid ":class:`int`" +msgstr "" + +#: c8903060dda24558a54ef44d79166e0a discord.utils.generate_snowflake:1 of +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 "" + +#: 342ee272ba1a47d28edeb42756e01b5e discord.utils.basic_autocomplete:1 of +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 "" + +#: 548784abce704512a534212ed4f89380 discord.utils.basic_autocomplete:5 of +msgid "" +"This is meant to be passed into the :attr:`discord.Option.autocomplete` " +"attribute." +msgstr "" + +#: 71b0b09a76194f82a93177616dd8e775 discord.utils.basic_autocomplete:8 of +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 "" + +#: 42efe68651a145729d12aa25efb1c936 discord.utils.basic_autocomplete:12 of +msgid "A wrapped callback for the autocomplete." +msgstr "" + +#: 62cb574c35064e82b913901dea277846 discord.utils.basic_autocomplete:13 of +msgid "" +"Callable[[:class:`.AutocompleteContext`], " +"Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`]," +" Iterable[:class:`int`], Iterable[:class:`float`]]]]" +msgstr "" + +#: 3701cd6df81947f6b20b79fcfdf29842 discord.utils.basic_autocomplete:15 of +msgid "Autocomplete cannot be used for options that have specified choices." +msgstr "" + +#: 38fdef3a74ae45a48840ee240fd21411 discord.utils.basic_autocomplete:18 +#: discord.utils.filter_params:12 f0afb50f77a84f8a8f6c19c3c315c4c4 of +msgid "Example" +msgstr "" + +#: 94bfe37178034b48a425cb2ffe69a1cd discord.utils.as_chunks:1 of +msgid "A helper function that collects an iterator into chunks of a given size." +msgstr "" + +#: 640eef2dc9a746c299d6db0ada4512c9 discord.utils.as_chunks:7 of +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "" + +#: 2262035739314e6d8569f13a615f7cf5 discord.utils.as_chunks:10 of +msgid "The iterator to chunk, can be sync or async." +msgstr "" + +#: 1625a9682d7245ecb50b94b93e94221b discord.utils.as_chunks:13 of +msgid "The maximum chunk size." +msgstr "" + +#: discord.utils.as_chunks:16 e3de94aceeb44a3aafdddf7c05d7465c of +msgid "A new iterator which yields chunks of a given size." +msgstr "" + +#: 3648eed64c0e442d8e3e1df5cea6d046 discord.utils.as_chunks:17 of +msgid "" +"Union[:class:`collections.abc.Iterator`, " +":class:`collections.abc.AsyncIterator`]" +msgstr "" + +#: c36eedeb288e42c78bc4a987d84c2d5d discord.utils.filter_params:1 of +msgid "A helper function to filter out and replace certain keyword parameters" +msgstr "" + +#: d88520e24b1d4208890200ce4d45cbe8 discord.utils.filter_params:4 of +msgid "The initial parameters to filter." +msgstr "" + +#: 8f56edb34ffa4871b090fe88f83da282 discord.utils.filter_params:7 of +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 "" + +#: 8da4e468cec14bc380a9febfd1ecb5f6 discord.utils.warn_deprecated:1 of +msgid "" +"Warn about a deprecated function, with the ability to specify details " +"about the deprecation. Emits a DeprecationWarning." +msgstr "" + +#: discord.utils.warn_deprecated:5 e3d8c023dd1c4350ac0fbd6bf2429a05 of +msgid "The name of the deprecated function." +msgstr "" + +#: 1aba31edeed24fc0bf925b49f4d01770 discord.utils.deprecated:5 +#: discord.utils.warn_deprecated:8 ed5919ff292b4888b37ac2b10a02a9e3 of +msgid "A recommended alternative to the function." +msgstr "" + +#: 5b13e7161cf943cab770cdf8f1dbc614 b9b3be6c3207442c804878da48136de5 +#: discord.utils.deprecated:8 discord.utils.warn_deprecated:11 of +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 "" + +#: 0d693d37c2264cc7b13fe7d0cfabc551 a626227cb070430481695b7033d08037 +#: discord.utils.deprecated:12 discord.utils.warn_deprecated:15 of +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 "" + +#: 99f204a0f2054cc1ba92951549f7fbb6 discord.utils.deprecated:16 +#: discord.utils.warn_deprecated:19 f683b72936684971a741eb6883ee293c of +msgid "" +"A reference that explains the deprecation, typically a URL to a page such" +" as a changelog entry or a GitHub issue/PR." +msgstr "" + +#: ae34e1033c72447ba27713944dacffcb c47d7142272b415fb0e9cc38033dabb9 +#: discord.utils.deprecated:20 discord.utils.warn_deprecated:23 of +msgid "The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3." +msgstr "" + +#: a7e969196e094149b160e9b2d531f047 discord.utils.warn_deprecated:26 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: discord.utils.deprecated:1 efa18c465579446cbbcd9b510d81a062 of +msgid "" +"A decorator implementation of :func:`warn_deprecated`. This will " +"automatically call :func:`warn_deprecated` when the decorated function is" +" called." +msgstr "" + +#: c062d6ae6db141b5ba8ffe616b229d28 discord.utils.deprecated:23 of +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.deprecated:28 f8e97d5772924b948068e5d0a2b93af1 of +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/locales/en/LC_MESSAGES/api/version_info.po b/docs/locales/en/LC_MESSAGES/api/version_info.po new file mode 100644 index 0000000000..148745f015 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/version_info.po @@ -0,0 +1,47 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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/locales/en/LC_MESSAGES/api/voice.po b/docs/locales/en/LC_MESSAGES/api/voice.po new file mode 100644 index 0000000000..e6aff2e3ee --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/voice.po @@ -0,0 +1,1025 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\n" + +#: ../../api/voice.rst:4 d7b0a6618d484ba1b7adda020e2d5f7c +msgid "Voice Related" +msgstr "" + +#: ../../api/voice.rst:7 e1136ab1790544e081feafd9f400987d +msgid "Objects" +msgstr "" + +#: discord.voice_client.VoiceClient:1 ec3682ebcd66478c91ba6f769605c2bd of +msgid "Represents a Discord voice connection." +msgstr "" + +#: 7f911d83faff403797bc9208eca7a850 discord.voice_client.VoiceClient:3 of +msgid "" +"You do not create these, you typically get them from e.g. " +":meth:`VoiceChannel.connect`." +msgstr "" + +#: 36a29fc8e1be46c1a5352da439a5ecbf discord.voice_client.VoiceClient:8 of +msgid "The voice connection session ID." +msgstr "" + +#: 2fcfffeabaf7443ebf721c1610289eb3 6920c629202a446eb012541840b29852 +#: 9c79837399e6407aa5eed5ce9856233c ae85be689738478c8c55931c8bfabb80 +#: dc52e60ff0b643c18a5be52a79f3a6d7 discord.player.PCMAudio +#: discord.voice_client.VoiceClient eee0ca9ed52f4b2bb028227099beabf7 of +msgid "type" +msgstr "" + +#: 793cf2c355174fd7997308d4d9a965ec 8aa94617d01a4f03b9a588e904a22916 +#: 964fa49cd5a840778b2d0de9f6e4cefe discord.voice_client.VoiceClient:10 +#: discord.voice_client.VoiceClient:16 discord.voice_client.VoiceClient:22 of +msgid ":class:`str`" +msgstr "" + +#: c8eec95e8f044116ab027b3ebdd05b77 discord.voice_client.VoiceClient:14 of +msgid "The voice connection token." +msgstr "" + +#: 4ce8872157ad499c94e8f82c673b159a discord.voice_client.VoiceClient:20 of +msgid "The endpoint we are connecting to." +msgstr "" + +#: 918a8f624381475a95a7078b155dff74 discord.voice_client.VoiceClient:26 of +msgid "The voice channel connected to." +msgstr "" + +#: d71979b351204fd49b0e0e85dc0cc9c6 discord.voice_client.VoiceClient:28 of +msgid ":class:`abc.Connectable`" +msgstr "" + +#: 459ead7dba7b415d956100716e15ad0f discord.voice_client.VoiceClient:32 of +msgid "The event loop that the voice client is running on." +msgstr "" + +#: d9b30661623f430c953f825b8cbba403 discord.voice_client.VoiceClient:34 of +msgid ":class:`asyncio.AbstractEventLoop`" +msgstr "" + +#: 26feab966bfa4f1fad07f094b7edee5a discord.voice_client.VoiceClient:38 of +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 "" + +#: ../../api/voice.rst 097916a2827d4169afabc5b5f61c309f +#: 0a1db135ede34233a02cc2111512a49f 2456beac41954a5e95e27b81e6120484 +#: 52330df6b9d74b889c44ecd31ad0bc37 5abdb5e4ddf34de2babfca2950a76dd4 +#: 6475a382392d403e94c6c2d0e49e5aaa 69d41da7ec2e48caa0398ba00f33e5fd +#: 71a09c9337f54d45b2723985acaf9fd5 771c2db901254eee9b8b03d63009dc7c +#: 77a01818697c49a09c752278468a1f99 7f35660d885a4fcebc23c4570f774ee8 +#: 95bd3ccff86b423f850c85a5c16d83be ac4f165d6599452db25226ff0a7e7d7f +#: b0cff60b27144f489fb963f023b9288d b660228e1b894281802c261ae32d2654 +#: b9921e9cbf8f4e13b9611c85e2c50035 discord.player.FFmpegOpusAudio.from_probe +#: e4c505fd25a34b1aaf027a23ce478576 f4deaf0307e544339f4fcaac7b0558bc +#: fab43f55cb8d46c18309ff5fddc61816 fb01f37a3ce2458bb7237088803d269a of +msgid "Parameters" +msgstr "" + +#: 1b19524198b745bd85d0277ffff05c3b discord.VoiceClient.guild:1 of +msgid "The guild we're connected to, if applicable." +msgstr "" + +#: 0ae00dbd951449cab37e06a27e8fe724 discord.VoiceClient.user:1 of +msgid "The user connected to voice (i.e. ourselves)." +msgstr "" + +#: 51d4b8a5a0ee4c83adc7d042188795dc discord.VoiceClient.latency:1 of +msgid "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "" + +#: 480ab595bf334146ba4cf867b73467e4 discord.VoiceClient.latency:3 of +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 "" + +#: 69cfcf62fc9b4036877b01ad9bf6de19 discord.VoiceClient.average_latency:1 of +msgid "Average of most recent 20 HEARTBEAT latencies in seconds." +msgstr "" + +#: 0124a63448a04d09bceabbe0a56e9ad4 036633cf1fdc42ba93a48b21ba9acb09 +#: 15f431251e504476916f5401b3eabcf0 21a0e341554c4244a49b0b723301f8fc +#: 2b2f5a6a6de94ee699bb6965bf262bd0 386aa5eafc2b4c1b83f7f87bd8c9c87b +#: b4b9fb6ef0894b0b95bc06faa3e8c620 cca2eef9de4c41988818f576564c4e3a +#: discord.player.FFmpegOpusAudio.from_probe:1 +#: discord.player.FFmpegOpusAudio.probe:1 +#: discord.voice_client.VoiceClient.disconnect:1 +#: discord.voice_client.VoiceClient.move_to:1 +#: discord.voice_client.VoiceProtocol.connect:1 +#: discord.voice_client.VoiceProtocol.disconnect:1 +#: discord.voice_client.VoiceProtocol.on_voice_server_update:1 +#: discord.voice_client.VoiceProtocol.on_voice_state_update:1 of +msgid "|coro|" +msgstr "" + +#: be3fe67562924e85984c23095c2faca1 +#: discord.voice_client.VoiceClient.disconnect:3 of +msgid "Disconnects this voice client from voice." +msgstr "" + +#: ../../api/voice.rst 0683fdfd1bb2405aa95b2b4b2c0bbd1a +#: 06d93b1e976b437e847218ce968f0293 07b51b94b0f44720be2a13ca0086ab66 +#: 11a61da9e14a4eac83035d9762df668a 170782bc8dac49cf85c15f8bd820fdce +#: 1e6cefcdd84e40e9a18bfcce7bb99d64 221f54b949984748ab0ba4335a5489d0 +#: 234ab6e89ed44bf299fd9a9b6c03740e 2646ac699d59498f8a95fbdc8a0d9239 +#: 3151fce786ad4f619809a9c3b0f9280f 4da06b8539464fd7914552d93cc91452 +#: 4ff780af4f2d4047832ca6fd2fb69c1d 52372051be784eec985737e4b1a63e48 +#: 58475ca4bf0f412399121be3c74b7050 6e566ab77b634a078605db6e2267b8e7 +#: 6fbacc9e2b784528a38eaa2d676bbddd 842f6f1f3a3c4b6fbcea7bd6791fd09e +#: 8771b3930fbe4b44b28b7e32de6036ca a0e56fae902348afaa3d88522fc6a165 +#: b3d3d728afd3400c96992e02f0d272f7 c79a00961d4842a8acb4b23dd0a780d1 +#: c9d8428298034204a7ab4ea957d0f6e1 d3ee0127c9a94ee183118b00b3885b54 +#: d880fe4362264a78b055f8853042db4d discord.player.FFmpegOpusAudio.from_probe +#: ea83c92fc5ad425f90ecc0e31baf3f2f ee9592f37b57465499c3033adfcf68f4 +#: f2a653c8141d46fdbe33cb351ba19af8 f2b636d7a9e24d8e8b49f78d1b2e4900 +#: fa5bcb9db5c84928996fa5c02addb075 feb84d9eed6c4e908e12e23157aa4670 of +msgid "Return type" +msgstr "" + +#: 0ebe6629f33548aca669b37b29a40845 27ab56fb42554bcb96724dbd580097da +#: 2f5356a8850141ef89065109e7ae2978 4ab12054d12a4439898aeda79a0ffa04 +#: 61534759588043399e891c911b5f3db3 6a64640d3165434a8b13b147a92f5bec +#: 729b005c366f4f4c822b8bc5e2c466e6 72a72023fec44b2b8eafea45739fe0d3 +#: 785db422570a4def861b61e7bb64a738 9a9bff1263ae418c8ae68c2e23e0b3f7 +#: ae57b387bc984feab8f549402dd26036 b914d46b053b4af4a12e99411ae4111f +#: b9398b8c3baf4badaaaf3efe5a013c04 discord.opus.load_opus:34 +#: discord.player.AudioSource.cleanup:7 discord.player.FFmpegAudio.cleanup:7 +#: discord.player.PCMVolumeTransformer.cleanup:7 +#: discord.voice_client.VoiceClient.disconnect:7 +#: discord.voice_client.VoiceClient.move_to:9 +#: discord.voice_client.VoiceClient.pause:4 +#: discord.voice_client.VoiceClient.resume:4 +#: discord.voice_client.VoiceClient.send_audio_packet:15 +#: discord.voice_client.VoiceClient.stop:4 +#: discord.voice_client.VoiceProtocol.cleanup:11 +#: discord.voice_client.VoiceProtocol.connect:21 +#: discord.voice_client.VoiceProtocol.disconnect:11 +#: discord.voice_client.VoiceProtocol.on_voice_server_update:14 +#: discord.voice_client.VoiceProtocol.on_voice_state_update:14 +#: e232bb429cf140b3819b63938f75afaa fc569a544ec14408a5b129a075fe4692 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: discord.voice_client.VoiceClient.move_to:3 eeefd3d7363a4f8aa22085b12b874163 +#: of +msgid "Moves you to a different voice channel." +msgstr "" + +#: 69a8eb0817b44122afedbee3993cb7c1 discord.voice_client.VoiceClient.move_to:6 +#: of +msgid "The channel to move to. Must be a voice channel." +msgstr "" + +#: a86c97c8ba4b4ccf88f5143cc8aaf141 +#: discord.voice_client.VoiceClient.is_connected:1 of +msgid "Indicates if the voice client is connected to voice." +msgstr "" + +#: 28146b1e321f4406b70404110817a8d4 28552688575c4203b74fcd559f72956d +#: 3b701c385cb547a6a11c23abdb4d3c10 53c368e1a52442cf8c4569c2730cb2b6 +#: 767c2c6c49084e0caa82953c0237857d 93a9aeb391524022b9bfb3b3a425106b +#: discord.player.AudioSource.is_opus:4 +#: discord.player.FFmpegOpusAudio.is_opus:4 +#: discord.player.FFmpegPCMAudio.is_opus:4 +#: discord.voice_client.VoiceClient.is_connected:4 +#: discord.voice_client.VoiceClient.is_paused:4 +#: discord.voice_client.VoiceClient.is_playing:4 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 57fc8c271dcf4672a13c0d09af0bc893 discord.voice_client.VoiceClient.play:1 of +msgid "Plays an :class:`AudioSource`." +msgstr "" + +#: 6604a136571448a2b914b46492771b17 discord.voice_client.VoiceClient.play:3 of +msgid "" +"The finalizer, ``after`` is called after the source has been exhausted or" +" an error occurred." +msgstr "" + +#: 298919aaef5348af8a476707b4450545 discord.voice_client.VoiceClient.play:6 of +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 "" + +#: d3139e51c8ee42158ddcb51791fa2885 discord.voice_client.VoiceClient.play:11 of +msgid "The audio source we're reading from." +msgstr "" + +#: 38aa862e64a848fb9737c3be39577ce1 discord.voice_client.VoiceClient.play:14 of +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.VoiceClient.play:19 f15d43596eda4ec0b7250dc97d4b689c of +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 "" + +#: af1ade50379d4cd49b29f986f921795b discord.voice_client.VoiceClient.play:19 of +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 "" + +#: 70a489db9279448f8f1e8eb85633e140 discord.voice_client.VoiceClient.play:23 of +msgid "If False, None is returned and the function does not block." +msgstr "" + +#: ../../api/voice.rst 07b869f2652f4453880532931e0146b8 +#: 1a1842ba50904c8e90560e0e2311f5e2 1b7d21b2367044c79adb064f19e07f07 +#: 3876e4149e7941698b0637877bbf309a 4a531e0220044095ab49b23d02bed1e5 +#: 5b7803a2e1d247959c819a77e6831756 7e5e1c4e93574828be02e609a6ff2ef5 +#: 97e4eeebc8584766b8472cc2fb858209 cecb7dc4cdef46e082ef7c10e8821e55 +#: d007fcbd8757434b91652320071c7a09 discord.player.FFmpegOpusAudio.from_probe +#: of +msgid "Raises" +msgstr "" + +#: 9b4977b2920e46ef89d6fa086eed6796 discord.voice_client.VoiceClient.play:28 of +msgid "Already playing audio or not connected." +msgstr "" + +#: 2c32184f081e4d3091dc8b7027c90f34 discord.voice_client.VoiceClient.play:29 of +msgid "Source is not a :class:`AudioSource` or after is not a callable." +msgstr "" + +#: discord.voice_client.VoiceClient.play:30 e2707b00b2434be5ab663ddbaa2b1c97 of +msgid "Source is not opus encoded and opus is not loaded." +msgstr "" + +#: bf26224880174deca44c625c5d7338ae discord.voice_client.VoiceClient.play:32 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\` \\| " +"\\:py\\:class\\:\\`\\~\\_asyncio.Future\\``" +msgstr "" + +#: discord.voice_client.VoiceClient.unpack_audio:1 +#: f504c11b5df84968beb921a3ecfefcfe of +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 "" + +#: c0870bc727bc4716abb4c5cec379c3fc +#: discord.voice_client.VoiceClient.unpack_audio:4 of +msgid "You must be connected to receive audio." +msgstr "" + +#: 4035b1908df1464298c43f79d47c7880 +#: discord.voice_client.VoiceClient.unpack_audio:9 of +msgid "" +"Bytes received by Discord via the UDP connection used for sending and " +"receiving voice data." +msgstr "" + +#: 22fb81c7c5d74f0098058bea9d24f593 +#: discord.voice_client.VoiceClient.start_recording:1 of +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 "" + +#: 42a99458681a4c63a75ff3bae3d4a57d +#: discord.voice_client.VoiceClient.start_recording:9 of +msgid "A Sink which will \"store\" all the audio data." +msgstr "" + +#: 9e56273896d04fe18541e1faae58f269 +#: discord.voice_client.VoiceClient.start_recording:12 of +msgid "A function which is called after the bot has stopped recording." +msgstr "" + +#: 127ca437b79e49ec827c36b61535fe39 +#: discord.voice_client.VoiceClient.start_recording:15 of +msgid "Args which will be passed to the callback function." +msgstr "" + +#: 345367535c76470281d0aebec874d6fb +#: discord.voice_client.VoiceClient.start_recording:17 of +msgid "" +"If True, the recordings of subsequent users will start with silence. This" +" is useful for recording audio just as it was heard." +msgstr "" + +#: 0129914a84dd42f78a94558d9c6d78b2 +#: discord.voice_client.VoiceClient.start_recording:21 of +msgid "Not connected to a voice channel." +msgstr "" + +#: c67a79b83ac64d21ac3835a3cba3003e +#: discord.voice_client.VoiceClient.start_recording:22 of +msgid "Already recording." +msgstr "" + +#: a9cf5b332ce2468589c4b7661294abcf +#: discord.voice_client.VoiceClient.start_recording:23 of +msgid "Must provide a Sink object." +msgstr "" + +#: 603f2190da994c9299b2bdfa9d7daab8 +#: discord.voice_client.VoiceClient.stop_recording:1 of +msgid "Stops the recording. Must be already recording." +msgstr "" + +#: 1d0feb804c5f4998a3a3b6ef09938280 3cffc9df03e94ceea9d7f785d5186ee9 +#: discord.voice_client.VoiceClient.stop_recording:6 +#: discord.voice_client.VoiceClient.toggle_pause:6 of +msgid "Not currently recording." +msgstr "" + +#: b6aff79c184a48ebbed06c780190ebf4 +#: discord.voice_client.VoiceClient.toggle_pause:1 of +msgid "Pauses or unpauses the recording. Must be already recording." +msgstr "" + +#: discord.voice_client.VoiceClient.is_playing:1 +#: f78d41db49fc4152b00c5f70257e56ec of +msgid "Indicates if we're currently playing audio." +msgstr "" + +#: 76ef11546be5411a9f6964c8fd40fc02 +#: discord.voice_client.VoiceClient.is_paused:1 of +msgid "Indicates if we're playing audio, but if we're paused." +msgstr "" + +#: 078a6c259afe4409a4475f652b0e7f88 discord.voice_client.VoiceClient.stop:1 of +msgid "Stops playing audio." +msgstr "" + +#: 2216d420fd7c49c891491be2adb1896f discord.voice_client.VoiceClient.pause:1 of +msgid "Pauses the audio playing." +msgstr "" + +#: 73455b7f90e845ee9744e8c4eda03f86 discord.voice_client.VoiceClient.resume:1 +#: of +msgid "Resumes the audio playing." +msgstr "" + +#: ccad892b561941b9be6b0247b7d092dc discord.VoiceClient.source:1 of +msgid "The audio source being played, if playing." +msgstr "" + +#: 6eb8859de16c4f2fa84d7d41983cceba discord.VoiceClient.source:3 of +msgid "" +"This property can also be used to change the audio source currently being" +" played." +msgstr "" + +#: 7f2243ca2fe440b791ce4cc95fd94958 +#: discord.voice_client.VoiceClient.send_audio_packet:1 of +msgid "Sends an audio packet composed of the data." +msgstr "" + +#: dde0285d86d1429084b5817343862b06 +#: discord.voice_client.VoiceClient.send_audio_packet:3 of +msgid "You must be connected to play audio." +msgstr "" + +#: 98badc5455d34bafb986af7ffbac9a2d +#: discord.voice_client.VoiceClient.send_audio_packet:6 of +msgid "The :term:`py:bytes-like object` denoting PCM or Opus voice data." +msgstr "" + +#: 4a3d7f4095d54101b9925170f9af6e54 +#: discord.voice_client.VoiceClient.send_audio_packet:9 of +msgid "Indicates if ``data`` should be encoded into Opus." +msgstr "" + +#: 08803b6e20e1411fab86e349e2e8e49a +#: discord.voice_client.VoiceClient.send_audio_packet:12 of +msgid "You are not connected." +msgstr "" + +#: 1ca03a935f684bf1a08536d41c8a9612 +#: discord.voice_client.VoiceClient.send_audio_packet:13 of +msgid "Encoding the data failed." +msgstr "" + +#: discord.voice_client.VoiceProtocol:1 f2844a86f9fd4343a918929c51912b97 of +msgid "A class that represents the Discord voice protocol." +msgstr "" + +#: ae6cf4d84a8a4d8bbb01dc5d80f0bc2d discord.voice_client.VoiceProtocol:3 of +msgid "" +"This is an abstract class. The library provides a concrete implementation" +" under :class:`VoiceClient`." +msgstr "" + +#: accd8a733e4b4bc2b22d8f2839ff52ac discord.voice_client.VoiceProtocol:6 of +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 "" + +#: df53f4cee6ed47d69868708c84cbdb80 discord.voice_client.VoiceProtocol:9 of +msgid "" +"These classes are passed to :meth:`abc.Connectable.connect " +"`." +msgstr "" + +#: discord.voice_client.VoiceProtocol:14 fa32e0685f39406384e72c7b9144baf1 of +msgid "The client (or its subclasses) that started the connection request." +msgstr "" + +#: discord.voice_client.VoiceProtocol:17 e16ec818f25d4fddad575fd8d76afe2c of +msgid "The voice channel that is being connected to." +msgstr "" + +#: 6d96f84aee2a482e9e9ad8b2ab7cce78 +#: discord.voice_client.VoiceProtocol.on_voice_state_update:3 of +msgid "" +"An abstract method that is called when the client's voice state has " +"changed. This corresponds to ``VOICE_STATE_UPDATE``." +msgstr "" + +#: 1539ca4620934988956683793045c8fc +#: discord.voice_client.VoiceProtocol.on_voice_state_update:7 of +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 "" + +#: 48bd947053204f28b7732886369ed779 +#: discord.voice_client.VoiceProtocol.on_voice_state_update:7 of +msgid "The raw `voice state payload`__." +msgstr "" + +#: 687e709bbbf0455399519510c189eb8a +#: discord.voice_client.VoiceProtocol.on_voice_server_update:3 of +msgid "" +"An abstract method that is called when initially connecting to voice. " +"This corresponds to ``VOICE_SERVER_UPDATE``." +msgstr "" + +#: 6f7c2101abd34c3f8d08dba198616b24 +#: discord.voice_client.VoiceProtocol.on_voice_server_update:7 of +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 "" + +#: 56fb90b544e34e0da1dcbdcb68f8ee40 +#: discord.voice_client.VoiceProtocol.on_voice_server_update:7 of +msgid "The raw `voice server update payload`__." +msgstr "" + +#: 15f758c06e8545c5a207dd1ef50fdd20 +#: discord.voice_client.VoiceProtocol.connect:3 of +msgid "" +"An abstract method called when the client initiates the connection " +"request." +msgstr "" + +#: discord.voice_client.VoiceProtocol.connect:5 +#: f3d9bcfb8fe844868a6a188fbbbb86c4 of +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 "" + +#: 6a93faa7b4814d8c8b06035acd8d27cd +#: discord.voice_client.VoiceProtocol.connect:9 of +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 "" + +#: 52fae36523ff4d64827f5ceb1a73e433 +#: discord.voice_client.VoiceProtocol.connect:15 of +msgid "The timeout for the connection." +msgstr "" + +#: 63d7b7f77e3246d49c17215bf8b2ae7d +#: discord.voice_client.VoiceProtocol.connect:18 of +msgid "Whether reconnection is expected." +msgstr "" + +#: 31402a8e837b49688a5441ed8cde2d8f +#: discord.voice_client.VoiceProtocol.disconnect:3 of +msgid "An abstract method called when the client terminates the connection." +msgstr "" + +#: 661b5828612c4f76a98e93330261ea1a +#: discord.voice_client.VoiceProtocol.disconnect:5 of +msgid "See :meth:`cleanup`." +msgstr "" + +#: 1ad7a2bd10dc4be5b03c46f6238ba93b +#: discord.voice_client.VoiceProtocol.disconnect:8 of +msgid "Whether the disconnection was forced." +msgstr "" + +#: 62bf494b5c6748648e9814c9a0e0e749 +#: discord.voice_client.VoiceProtocol.cleanup:1 of +msgid "" +"This method *must* be called to ensure proper clean-up during a " +"disconnect." +msgstr "" + +#: c99b55f1341a43eebc7180bc5b921ece +#: discord.voice_client.VoiceProtocol.cleanup:3 of +msgid "" +"It is advisable to call this from within :meth:`disconnect` when you are " +"completely done with the voice protocol instance." +msgstr "" + +#: 454e51becc6b4aa98fd1b2b08c39ab38 +#: discord.voice_client.VoiceProtocol.cleanup:6 of +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 "" + +#: 6564199ed4364bd892d670b97afa2ecd discord.player.AudioSource:1 of +msgid "Represents an audio stream." +msgstr "" + +#: cf25724172b4441abf2ff2192b8f32e5 discord.player.AudioSource:3 of +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 "" + +#: 50ac8d94d685498fbdad97a65885518b discord.player.AudioSource:8 of +msgid "The audio source reads are done in a separate thread." +msgstr "" + +#: 43f562d474ac4f259f5972023ab8ed5e 675add47c72f4f398833a67d9f40191d +#: 67765f2befd54922806d108acabf11dc 9da1fbf002de4b63875e3031da399d50 +#: discord.player.AudioSource.read:1 discord.player.FFmpegOpusAudio.read:1 +#: discord.player.FFmpegPCMAudio.read:1 discord.player.PCMAudio.read:1 +#: discord.player.PCMVolumeTransformer.read:1 e8e10259edc64c879644f1a9b201db6e +#: of +msgid "Reads 20ms worth of audio." +msgstr "" + +#: 2b98519b39494c03b8c9200db1d6a6cf 2d1d2696964848d29041d7ec229c47ea +#: 58f4c65835214f0080d92cb708c5d81b 622981fd3609493ab6b287bc25e013ef +#: discord.player.AudioSource.read:3 discord.player.FFmpegOpusAudio.read:3 +#: discord.player.FFmpegPCMAudio.read:3 discord.player.PCMAudio.read:3 +#: discord.player.PCMVolumeTransformer.read:3 e3a40f1afe8b4883b1c536cf435e7293 +#: of +msgid "Subclasses must implement this." +msgstr "" + +#: 028b3a5cfc9d4c03be777fa025bbe90e 328fd72ba7f5414bbe2da58a9d00b5df +#: 491f29403af749d29f65817e991ad0d8 b76c8c55963741aab1253004def750a9 +#: discord.player.AudioSource.read:5 discord.player.FFmpegOpusAudio.read:5 +#: discord.player.FFmpegPCMAudio.read:5 discord.player.PCMAudio.read:5 +#: discord.player.PCMVolumeTransformer.read:5 ef4ae5ce12c34064887e8328ae00b0a7 +#: of +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 "" + +#: 48d370c95fa84a8d9de06c098830922e 810791910e94420d82963ba06eef394b +#: 88f35ac8d9da447cb483a6b809e12c79 a029ad04c1064ffda7caf9582997d2d0 +#: ce3e1975fc974db2a114fe56549b6bc1 discord.player.AudioSource.read:8 +#: discord.player.FFmpegOpusAudio.read:8 discord.player.FFmpegPCMAudio.read:8 +#: discord.player.PCMAudio.read:8 discord.player.PCMVolumeTransformer.read:8 of +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 "" + +#: ../../api/voice.rst 0a9acaf5f7ce499198d57d6632bf9596 +#: 2f7252b244004532b0e908a77d38f6b8 6d76efb6ea404cfc981cd37f90e8a27a +#: a5945b62e8394839b7db89093a2c291d a6c6108c14654afc85fa299bd2e2d9d9 +#: d96374d07b1e4b93abdc3984aa2338a8 d98c0854b3da4474b294f6d01aa940ab +#: dee8f0cd7c114339a6b21b0ebfe53d19 discord.player.FFmpegOpusAudio.from_probe +#: of +msgid "Returns" +msgstr "" + +#: 0e2bd56840a142639a45c2d166f1fce2 371829d959f044f3ab0a82196195c124 +#: 799b9590449a4eddb9fa665c3767dff4 aa1dffcc093e4cd4a6794116ff9b5c9a +#: d98131655fe1461c83ac202b820ea844 discord.player.AudioSource.read:13 +#: discord.player.FFmpegOpusAudio.read:13 discord.player.FFmpegPCMAudio.read:13 +#: discord.player.PCMAudio.read:13 discord.player.PCMVolumeTransformer.read:13 +#: of +msgid "A bytes like object that represents the PCM or Opus data." +msgstr "" + +#: 22df61c5286d495faaeabfccc2cfebb1 2305960da46f48f6a95b6593d34c1aac +#: c886363fbf8a470a99ad6a99bc3760a8 discord.player.AudioSource.read:14 +#: discord.player.FFmpegOpusAudio.read:14 discord.player.FFmpegPCMAudio.read:14 +#: discord.player.PCMAudio.read:14 discord.player.PCMVolumeTransformer.read:14 +#: edb97626a1724e93b55584e44a7e4a44 febad82c34014a1f9680a5e84ccb5ccc of +msgid ":class:`bytes`" +msgstr "" + +#: 441627e81b294f4e9712c623a70d3e00 6d11292606384b7aa2726296be6efa43 +#: discord.player.AudioSource.is_opus:1 +#: discord.player.FFmpegOpusAudio.is_opus:1 +#: discord.player.FFmpegPCMAudio.is_opus:1 f933a708c92045868a9caa15f8015d92 of +msgid "Checks if the audio source is already encoded in Opus." +msgstr "" + +#: 29e9300bf3e24bcfb0045c59fbaf93ac a6544280b0d94cf092b8461e4608eee8 +#: bbac2762b28c49e18fe322f9591280b4 discord.player.AudioSource.cleanup:1 +#: discord.player.FFmpegAudio.cleanup:1 +#: discord.player.PCMVolumeTransformer.cleanup:1 of +msgid "Called when clean-up is needed to be done." +msgstr "" + +#: 1b31cd5b6fa44ef8b1ed95d966efcddf 557038e96505404694c861b87a5076af +#: 6d8eb37aadee4ea8ad39f10c48e9956f discord.player.AudioSource.cleanup:3 +#: discord.player.FFmpegAudio.cleanup:3 +#: discord.player.PCMVolumeTransformer.cleanup:3 of +msgid "" +"Useful for clearing buffer data or processes after it is done playing " +"audio." +msgstr "" + +#: 454c3a56198942dd91cabdbdac97d3e4 discord.player.PCMAudio:1 of +msgid "Represents raw 16-bit 48KHz stereo PCM audio source." +msgstr "" + +#: 3044964ce61e4da5a28ead256611eb9a discord.player.PCMAudio:5 of +msgid "A file-like object that reads byte data representing raw PCM." +msgstr "" + +#: d92892017cd542f78639516b8b416117 discord.player.PCMAudio:7 of +msgid ":term:`py:file object`" +msgstr "" + +#: discord.player.FFmpegAudio:1 fce50d418e1a49a4bb5c684f1e1ac753 of +msgid "Represents an FFmpeg (or AVConv) based AudioSource." +msgstr "" + +#: b29e6aec2cbf4e37a9f46fcab1071fa1 discord.player.FFmpegAudio:3 of +msgid "" +"User created AudioSources using FFmpeg differently from how " +":class:`FFmpegPCMAudio` and :class:`FFmpegOpusAudio` work should subclass" +" this." +msgstr "" + +#: 2b8ab32191da45798a3bea06b09cad1e 6bfee17debc94240a86d9d31ee71e75a +#: discord.player.FFmpegOpusAudio:1 discord.player.FFmpegPCMAudio:1 of +msgid "An audio source from FFmpeg (or AVConv)." +msgstr "" + +#: 7abcb38cf7144b9a8a0a350e7c64fc27 discord.player.FFmpegPCMAudio:3 of +msgid "This launches a sub-process to a specific input file given." +msgstr "" + +#: 40161dae93a5444592d3b38086c0bbd5 91b78b16596942698136b40beb390887 +#: discord.player.FFmpegOpusAudio:18 discord.player.FFmpegPCMAudio:7 of +msgid "" +"You must have the ffmpeg or avconv executable in your path environment " +"variable in order for this to work." +msgstr "" + +#: discord.player.FFmpegPCMAudio:11 e1f5be3b142f4c60996984791631220f of +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 "" + +#: b18d98307af54783b5509b299f373832 discord.player.FFmpegOpusAudio:43 +#: discord.player.FFmpegPCMAudio:16 ee979d778a514578afa221436f337ae6 of +msgid "The executable name (and path) to use. Defaults to ``ffmpeg``." +msgstr "" + +#: 21ce334995aa4931bcc3071260ba9289 discord.player.FFmpegOpusAudio:46 +#: discord.player.FFmpegPCMAudio:19 f5acb595a683400e9c9246fb48d1b253 of +msgid "" +"If ``True``, denotes that ``source`` parameter will be passed to the " +"stdin of ffmpeg. Defaults to ``False``." +msgstr "" + +#: 374ca46ede85471e8c4796af9955f286 discord.player.FFmpegOpusAudio:50 +#: discord.player.FFmpegPCMAudio:23 ef5575dc64624e11a2c1919f793f55d6 of +msgid "" +"A file-like object to pass to the Popen constructor. Could also be an " +"instance of ``subprocess.PIPE``." +msgstr "" + +#: 452e450be3f544b7bbb5e50227089276 66021a8ed46e44e0ad3a8d872261a124 +#: discord.player.FFmpegOpusAudio:54 discord.player.FFmpegPCMAudio:27 of +msgid "Extra command line arguments to pass to ffmpeg before the ``-i`` flag." +msgstr "" + +#: 79971e5fc9e6447cb18c13317097b842 b8cd968276cf470896aa34aaa8858222 +#: discord.player.FFmpegOpusAudio:57 discord.player.FFmpegPCMAudio:30 of +msgid "Extra command line arguments to pass to ffmpeg after the ``-i`` flag." +msgstr "" + +#: 732d7e069def4da7a6802b95b9c16ff7 cfe616123f1744e89d7e549cdae8baa1 +#: discord.player.FFmpegOpusAudio:60 discord.player.FFmpegPCMAudio:33 of +msgid "The subprocess failed to be created." +msgstr "" + +#: 9dc5129d03a44f96a1113824ad234006 discord.player.FFmpegOpusAudio:3 of +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 "" + +#: 1eb0937b784c4f5a8744e7c5d6627f73 discord.player.FFmpegOpusAudio:7 of +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 "" + +#: 4097804468e6405b98c9e9a7b816e268 discord.player.FFmpegOpusAudio:22 of +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 "" + +#: 6012d88e487c49daa51b2a8bf0029b6b discord.player.FFmpegOpusAudio:27 of +msgid "The bitrate in kbps to encode the output to. Defaults to ``128``." +msgstr "" + +#: c6bb03f73f714f3696b1d71832aa6dd7 discord.player.FFmpegOpusAudio:30 of +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 "" + +#: c802b41b6d7c4883b9a394014bcc25c0 discord.player.FFmpegOpusAudio:30 of +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 "" + +#: 09a411b1eaf34bc69f3bfbeb340af7d3 discord.player.FFmpegOpusAudio:38 of +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 "" + +#: 35f1693ec571498197d28d5d66518671 discord.player.FFmpegOpusAudio.from_probe:3 +#: of +msgid "" +"A factory method that creates a :class:`FFmpegOpusAudio` after probing " +"the input source for audio codec and bitrate information." +msgstr "" + +#: 41e640e3d8f14aa0a4cc4e58026ee763 discord.player.FFmpegOpusAudio.from_probe:7 +#: of +msgid "Identical to the ``source`` parameter for the constructor." +msgstr "" + +#: discord.player.FFmpegOpusAudio.from_probe:9 e38b99fa71bc4e8492387ca26352a623 +#: of +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 "" + +#: a2d8c7a8d4774b2f9fb7fd738de46c8d +#: discord.player.FFmpegOpusAudio.from_probe:16 of +msgid "" +"The remaining parameters to be passed to the :class:`FFmpegOpusAudio` " +"constructor, excluding ``bitrate`` and ``codec``." +msgstr "" + +#: discord.player.FFmpegOpusAudio.from_probe:19 +#: e14ec376d42c48c681eb7482ec2bbc94 of +msgid "An instance of this class." +msgstr "" + +#: 91039cd3f1a646fd93a389dc3e904682 +#: discord.player.FFmpegOpusAudio.from_probe:20 of +msgid ":class:`FFmpegOpusAudio`" +msgstr "" + +#: 3053ad3525814d9b9594f43d09f6897f db6a307d1e144376a9adfd32cd860429 +#: discord.player.FFmpegOpusAudio.from_probe:22 +#: discord.player.FFmpegOpusAudio.probe:16 of +msgid "Invalid probe method, must be ``'native'`` or ``'fallback'``." +msgstr "" + +#: 6cc842547fd3432eba8e2eee96e8c792 +#: discord.player.FFmpegOpusAudio.from_probe:23 +#: discord.player.FFmpegOpusAudio.probe:17 e0336172704945ea9e77c9f6e061ce96 of +msgid "Invalid value for ``probe`` parameter, must be :class:`str` or a callable." +msgstr "" + +#: 15fd471b8f1d4008b6dcecbdd944d531 +#: discord.player.FFmpegOpusAudio.from_probe:26 of +msgid "Examples" +msgstr "" + +#: 5bb31401509a4000a5ac24d2e4fccdcd +#: discord.player.FFmpegOpusAudio.from_probe:27 of +msgid "" +"Use this function to create an :class:`FFmpegOpusAudio` instance instead " +"of the constructor: ::" +msgstr "" + +#: 24863a6c90b147e3b3513066b31da439 +#: discord.player.FFmpegOpusAudio.from_probe:32 of +msgid "" +"If you are on Windows and don't have ffprobe installed, use the " +"``fallback`` method to probe using ffmpeg instead: ::" +msgstr "" + +#: 5f3cfac1b6574d86a3845b06726769ea +#: discord.player.FFmpegOpusAudio.from_probe:38 of +msgid "Using a custom method of determining codec and bitrate: ::" +msgstr "" + +#: aa8415fa4b594f4ea8734411049ff2fe discord.player.FFmpegOpusAudio.probe:3 of +msgid "Probes the input source for bitrate and codec information." +msgstr "" + +#: 07a37479b48e47c2942cbb79eabfe372 discord.player.FFmpegOpusAudio.probe:6 of +msgid "Identical to the ``source`` parameter for :class:`FFmpegOpusAudio`." +msgstr "" + +#: c1a1cca3f2da464795bf0e0b01c1e012 discord.player.FFmpegOpusAudio.probe:8 of +msgid "" +"Identical to the ``method`` parameter for " +":meth:`FFmpegOpusAudio.from_probe`." +msgstr "" + +#: 23cde3d76b3a4182bfe7f7d9b665280c discord.player.FFmpegOpusAudio.probe:10 of +msgid "Identical to the ``executable`` parameter for :class:`FFmpegOpusAudio`." +msgstr "" + +#: 00c5fe83aed044d5ae6120952dda1239 discord.player.FFmpegOpusAudio.probe:13 of +msgid "A 2-tuple with the codec and bitrate of the input source." +msgstr "" + +#: 4546934e84b647eeaab2d6b3fb42f1fe discord.player.FFmpegOpusAudio.probe:14 of +msgid "Optional[Tuple[Optional[:class:`str`], Optional[:class:`int`]]]" +msgstr "" + +#: discord.player.PCMVolumeTransformer:1 e96c63f1e2ae4283862ed283aa007033 of +msgid "Transforms a previous :class:`AudioSource` to have volume controls." +msgstr "" + +#: 73a707c638464a5e95fc9ad86306f669 discord.player.PCMVolumeTransformer:3 of +msgid "" +"This does not work on audio sources that have :meth:`AudioSource.is_opus`" +" set to ``True``." +msgstr "" + +#: 35d32bf867b441eba8a6e6873210647c discord.player.PCMVolumeTransformer:7 of +msgid "The original AudioSource to transform." +msgstr "" + +#: 5a7f62f4887b41f892643cd0f9875629 discord.player.PCMVolumeTransformer:10 of +msgid "The initial volume to set it to. See :attr:`volume` for more info." +msgstr "" + +#: b25b8f369b194c0588eff0b0bc4b849d discord.player.PCMVolumeTransformer:14 of +msgid "Not an audio source." +msgstr "" + +#: 04045b3895c64369adf33b5585c7a5d4 discord.player.PCMVolumeTransformer:15 of +msgid "The audio source is opus encoded." +msgstr "" + +#: 3618db04a8bf4ade8f80c7f6badc6dcb discord.PCMVolumeTransformer.volume:1 of +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 "" + +#: 22e8938e9f34444eb6d6894735b125b8 discord.opus.load_opus:1 of +msgid "Loads the libopus shared library for use with voice." +msgstr "" + +#: afe64cf940e5486696ce22d97e7f0a0e discord.opus.load_opus:3 of +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.load_opus:6 e0503cede5cf472bb7f490681eae194b of +msgid "" +"Not loading a library and attempting to use PCM based AudioSources will " +"lead to voice not working." +msgstr "" + +#: 15797ca758624cdd9e5a2bf2903b9c1b discord.opus.load_opus:9 of +msgid "This function propagates the exceptions thrown." +msgstr "" + +#: afe43f95849942968874292393a7fcc5 discord.opus.load_opus:13 of +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 "" + +#: 1a73eb3b82294411b6413c19cc7f2dac discord.opus.load_opus:20 of +msgid "" +"On Windows, this function should not need to be called as the binaries " +"are automatically loaded." +msgstr "" + +#: cb3839f007134b0494f90eceb2d946e7 discord.opus.load_opus:25 of +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 "" + +#: 327817cde81f4049bd3f39b9d09ab729 discord.opus.load_opus:31 of +msgid "The filename of the shared library." +msgstr "" + +#: discord.opus.is_loaded:1 e8dbd72423d7404eb8cc41395b1aca77 of +msgid "" +"Function to check if opus lib is successfully loaded either via the " +":func:`ctypes.util.find_library` call of :func:`load_opus`." +msgstr "" + +#: ac6afe44563847638f4fd78ddaf09561 discord.opus.is_loaded:4 of +msgid "This must return ``True`` for voice to work." +msgstr "" + +#: bd1e2285c4c64e288ecf523960eb60ef discord.opus.is_loaded:6 of +msgid "Indicates if the opus library has been loaded." +msgstr "" + +#: 7e7adaac9a18484590ca895cd62bf0f4 discord.opus.is_loaded:7 of +msgid ":class:`bool`" +msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/webhooks.po b/docs/locales/en/LC_MESSAGES/api/webhooks.po new file mode 100644 index 0000000000..a72fffd831 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/api/webhooks.po @@ -0,0 +1,1282 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 "" + +#: 54762879672a46deade9460a7b561492 discord.webhook.async_.Webhook:1 of +msgid "Represents an asynchronous Discord webhook." +msgstr "" + +#: 6130f4c50d5c45348a4b8700b8749b08 discord.webhook.async_.Webhook:3 of +msgid "" +"Webhooks are a form to send messages to channels in Discord without a bot" +" user or authentication." +msgstr "" + +#: 2802a4be3d954ea6ac5ed96edb9a9ee4 discord.webhook.async_.Webhook:6 of +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 "" + +#: dc823f1bd57a4d748871bf198faff87f discord.webhook.async_.Webhook:11 of +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_.Webhook:14 f867b6076f3b414b863f2e50bcd71f69 of +msgid "" +"For example, creating a webhook from a URL and using :doc:`aiohttp " +"`:" +msgstr "" + +#: discord.webhook.async_.Webhook:26 ec565b094bc14d95b4f18fd1cf8b70d4 of +msgid "For a synchronous counterpart, see :class:`SyncWebhook`." +msgstr "" + +#: 0f99b9ceb45740a89e4a7bc12c91e1be dc8818835a2a415e91e864c41617c1f6 +#: discord.webhook.async_.Webhook:32 discord.webhook.sync.SyncWebhook:9 of +msgid "Checks if two webhooks are equal." +msgstr "" + +#: 57e5d2ff7e674b70b1cf5a365d0aea05 603bc49aeff04503875d0e8b59b50e85 +#: discord.webhook.async_.Webhook:36 discord.webhook.sync.SyncWebhook:13 of +msgid "Checks if two webhooks are not equal." +msgstr "" + +#: a29f89c3884241678664d1eee50c1e62 discord.webhook.async_.Webhook:40 +#: discord.webhook.sync.SyncWebhook:17 f67c6e3c0c584db6b9a8f1fa014acd8a of +msgid "Returns the webhook's hash." +msgstr "" + +#: 2f5354a5e28d48a18d49b336417b9908 discord.webhook.async_.Webhook:42 +#: discord.webhook.sync.SyncWebhook:19 e2c2d969ba244d58ae00978769243829 of +msgid "Webhooks are now comparable and hashable." +msgstr "" + +#: 3ed2fd63f3bd469a8e02a4173568af01 9ce39e01859943ada5b04b9feca0629d +#: discord.webhook.async_.Webhook:47 discord.webhook.sync.SyncWebhook:24 of +msgid "The webhook's ID" +msgstr "" + +#: 05226483bba4422686ebd5e1759e03eb 072b763bd6954d3887f1377e27a1cf78 +#: 1c5ffd2d40474cd69c8be7d2369fa2bd 399c74a3ba7a4edf8f85c0dbfa06b384 +#: 7f6a88023911415b9572f52fd6745bf6 867fb1d0956c45a688a9bccd4d0e39d2 +#: 8ec37bba20ef472bbd5212b0e31c1f90 977e58a364e54f12a0e7ab82f7953c1e +#: 9ee22664aca94669b7f1f42eee35554d a175b7d3b082438481a88e170e3b56ee +#: a7888f4831c04a9d8543768f6e1124bc c62c2bc7e9dc40df90d661c4f5495935 +#: d7094652b36144c0bfebb152aa3641a5 d78e692debe24339a7306250c641697d +#: discord.webhook.async_.Webhook discord.webhook.sync.SyncWebhook +#: ef7491e47bbe4bc6a92a3f236a1243b5 f3f076cd019940dbac5d2fde2b488ffb +#: f89922b9fe28493d8b9865e2221e51c6 fcd7cc29aa6642c69b150c09448a7cc2 of +msgid "type" +msgstr "" + +#: 184ca03bc9b9433d9d4dddb9314f7e79 8b68ef30b943469eb2d5429f2eb295e0 +#: discord.webhook.async_.Webhook:49 discord.webhook.sync.SyncWebhook:26 of +msgid ":class:`int`" +msgstr "" + +#: 23d4eb2113df49e59ec53bb2ab1ec13d 9d87af4b6a0a46fab4c6bae84cf5672d +#: discord.webhook.async_.Webhook:53 discord.webhook.sync.SyncWebhook:30 of +msgid "The type of the webhook." +msgstr "" + +#: 6528be88792745c6af85081b08b61ae2 bbca3d9eb4cb4108a6ce498ea4c5e5c4 +#: discord.webhook.async_.Webhook:57 discord.webhook.sync.SyncWebhook:34 of +msgid ":class:`WebhookType`" +msgstr "" + +#: 1953f318f067447d92c2841b3eee95f0 46f8d685eb114e3a8bafa7a33030f297 +#: discord.webhook.async_.Webhook:61 discord.webhook.sync.SyncWebhook:38 of +msgid "" +"The authentication token of the webhook. If this is ``None`` then the " +"webhook cannot be used to make requests." +msgstr "" + +#: 39cd7a6cc7614da0951dcb4fd2941973 5649761eac8c4357bf37e0ee72ed10a8 +#: 9fe496235d7840c398a8639d961be6d3 b51554387f2146e2a8d4785717942922 +#: discord.webhook.async_.Webhook:64 discord.webhook.async_.Webhook:89 +#: discord.webhook.sync.SyncWebhook:41 discord.webhook.sync.SyncWebhook:66 of +msgid "Optional[:class:`str`]" +msgstr "" + +#: 002478d171954c4db75c0f7a56587338 3d66f509729149c8bbac1ca7158b6d1d +#: discord.webhook.async_.Webhook:68 discord.webhook.sync.SyncWebhook:45 of +msgid "The guild ID this webhook is for." +msgstr "" + +#: 1b1adc2b50f9480baf153d1c675d23cf 34f98475bb884d7a8a4d349034bec7ac +#: 5d430eaf86a048df9dec47af3be3b9b3 c32911d397be4cf89ac379159b2f6d57 +#: discord.webhook.async_.Webhook:70 discord.webhook.async_.Webhook:76 +#: discord.webhook.sync.SyncWebhook:47 discord.webhook.sync.SyncWebhook:53 of +msgid "Optional[:class:`int`]" +msgstr "" + +#: 5df24bb44a7644778c46c75edf333f6f discord.webhook.async_.Webhook:74 +#: discord.webhook.sync.SyncWebhook:51 f66a9b011d8744dab4f5db75a3354512 of +msgid "The channel ID this webhook is for." +msgstr "" + +#: 4219fda06ac7415fafeabc7dc92505fa cedfbbf319e24b1eaf5c66b0d7c90479 +#: discord.webhook.async_.Webhook:80 discord.webhook.sync.SyncWebhook:57 of +msgid "" +"The user this webhook was created by. If the webhook was received without" +" authentication then this will be ``None``." +msgstr "" + +#: 86343165e9814a6f82275ef89a1bf72b dbf3fdf8db6f4a6aaa23cdd208067234 +#: discord.webhook.async_.Webhook:83 discord.webhook.sync.SyncWebhook:60 of +msgid "Optional[:class:`abc.User`]" +msgstr "" + +#: 1b3eba38201c4dcb92a79961d72806c3 8bc7666887ed4603a6232806b47a4c2d +#: discord.webhook.async_.Webhook:87 discord.webhook.sync.SyncWebhook:64 of +msgid "The default name of the webhook." +msgstr "" + +#: b53f00434bb847d8a9a05f1842e7e1eb discord.webhook.async_.Webhook:93 +#: discord.webhook.sync.SyncWebhook:70 e84cc4c1e7a6427c9575f5db957431f4 of +msgid "" +"The guild of the channel that this webhook is following. Only given if " +":attr:`type` is :attr:`WebhookType.channel_follower`." +msgstr "" + +#: 1e87802b937d4ba987fbf4449c3ddd65 d52a790cb9e7434e88c6340f52a355a2 +#: discord.webhook.async_.Webhook:98 discord.webhook.sync.SyncWebhook:75 of +msgid "Optional[:class:`PartialWebhookGuild`]" +msgstr "" + +#: 4334d13ae69f4f6bb91c758ff189fa68 6b7f2c1f04ab47fbaccb2d8da7fe625b +#: discord.webhook.async_.Webhook:102 discord.webhook.sync.SyncWebhook:79 of +msgid "" +"The channel that this webhook is following. Only given if :attr:`type` is" +" :attr:`WebhookType.channel_follower`." +msgstr "" + +#: 2834bba8c9944769b38d885305df7bba 8de51b6d44fa4737ab540ddd87c185e5 +#: discord.webhook.async_.Webhook:107 discord.webhook.sync.SyncWebhook:84 of +msgid "Optional[:class:`PartialWebhookChannel`]" +msgstr "" + +#: ../../api/webhooks.rst 2a6dbf19fec0401da878f409a1223406 +#: 2a7ce2d14e6f4d43b8c18dff80d69818 4741bbc19cc448e7a02b3f14ab40082c +#: 47f64a1ccedb412d84512fcc3de54af9 4b8e494f55ce467a83a0dcf8564c7128 +#: 5a1d6647cea44a9d9b3b953b03be20a7 65b91ca4c67a4c6e9e223bd4baa39cb6 +#: 65d278375a114be1ad47244bad120056 729868ab3cdb4d64b21427008b0e502a +#: 81a7bc9a0f9b44f096f6bc43e2b732df 89516d3e3b6e4664bc4cb33c0a15da00 +#: 8d2ed0e6e1f04493bea6cde65a3b803e 8d70d5eaacf6471eb3976571a766f5ac +#: aeac642079b24da39a55b480d7f11f21 b6ec5afcc4844a89a37ff06b1fce8728 +#: b9fbe6d21b144e38a3b8bddecb0cd260 baac432c9cbe4b4dafaea5b2e243ef22 +#: bab986faa9b84b6eab3766e5dc4f65be bb88186e3c324dc9ae129eed893ed95a +#: c1637efd86d14f01a5ab87bf13ff0a9a dd2dadd1bc354860a8d3bfd963efa172 +#: e2fc7b85f0a54cf2bc9583210cbc562a eaa61028dd334053a6054d950e115f67 +#: ecefa989d6bf4423817f8af3a9760b04 fca3bbdeba264d51b10896fc9ba953ab +#: ff360a3fe64d475c8bb0223c151e15b2 +msgid "Parameters" +msgstr "" + +#: 018110b6f40d477fb9910915d427bea0 80def0fef9c746b99c1c6e318bf3e746 +#: discord.SyncWebhook.url:1 discord.Webhook.url:1 of +msgid "Returns the webhook's url." +msgstr "" + +#: 7060f29dd7d1487eb9d7de8d9442330e 8a221f21eb4f46038c4abbfa44db1805 +#: discord.webhook.async_.Webhook.partial:1 +#: discord.webhook.sync.SyncWebhook.partial:1 of +msgid "Creates a partial :class:`Webhook`." +msgstr "" + +#: 0592a0870448481e81add88499153b79 4255bef48a8b4c979d2947ded336c0a0 +#: discord.webhook.async_.Webhook.partial:4 +#: discord.webhook.sync.SyncWebhook.partial:4 of +msgid "The ID of the webhook." +msgstr "" + +#: b4570f53785d4f84b44fbd4766c2c1a4 c26ef7a4a733461089c7cc53d5264381 +#: discord.webhook.async_.Webhook.partial:7 +#: discord.webhook.sync.SyncWebhook.partial:7 of +msgid "The authentication token of the webhook." +msgstr "" + +#: 169396a9a2a44033b16911dd71982574 6ba95c33a1c147bcae02dd0fb1ad126f +#: discord.webhook.async_.Webhook.from_url:7 +#: discord.webhook.async_.Webhook.partial:10 of +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 "" + +#: 0392881964294df0adb890e3948ef49a 5d12b915f2fe409e9134257c1fce1245 +#: discord.webhook.async_.Webhook.from_url:7 +#: discord.webhook.async_.Webhook.partial:10 of +msgid "" +"The session to use to send requests with. Note that the library does not " +"manage the session and will not close it." +msgstr "" + +#: 4059598390a3493db4f0464693630d6f discord.webhook.async_.Webhook.from_url:14 +#: discord.webhook.async_.Webhook.partial:17 f56210d48c314e5ea934feb4104820be +#: of +msgid "" +"The bot authentication token for authenticated requests involving the " +"webhook. .. versionadded:: 2.0" +msgstr "" + +#: 064c5bda421e4afe8052ed60c0c4571e 16b667fd36e34ab399f839558bbc75ad +#: b89e527c039d4ac4bfb0a83251f0555f discord.webhook.async_.Webhook.from_url:14 +#: discord.webhook.async_.Webhook.partial:17 +#: discord.webhook.sync.SyncWebhook.from_url:13 +#: discord.webhook.sync.SyncWebhook.partial:16 e533e1fc79ea4a9d894e7d4a9696bd95 +#: of +msgid "" +"The bot authentication token for authenticated requests involving the " +"webhook." +msgstr "" + +#: ../../api/webhooks.rst 12571487fd124a6eb98a51b7920fe0e0 +#: 1d8bc33d958e4f5badb9f73b71839d26 3b3abc39ee1844b0bb02a7aafaee63e2 +#: 6e5d965f5a2349cfb6a0986aa9c2b95c 741af853c2694404a8ef56d3c940e9cf +#: 9ec5fe0284294ee9a5fd8a662fc09e1d a5c71bce8be04ac48397306b296e5072 +#: a69a2f45e4084666a57a753f4330b119 b3acc75316bb4d99b9aaf08576b709ec +#: bbb70b8fcf224bc2921b14e7a306d2f9 be0a1ab8a2254c6fbb9f6bbbc1297311 +#: bfbbab2561944cb7815d1807ed46bbf4 bfccb2081a444eabb4f9950ff32a1f1c +#: ca07b32fc1e442589857078a4fc9fcdd +msgid "Returns" +msgstr "" + +#: 36c2aaac7c1c430ab6e86cbec6344fd5 36f56ffb485d46158134af3f3b72d49e +#: 5ef04c727fa84405952bca3ed5f64830 a9420415c08a419f937591ef861c05bd +#: discord.webhook.async_.Webhook.from_url:20 +#: discord.webhook.async_.Webhook.partial:23 +#: discord.webhook.sync.SyncWebhook.from_url:17 +#: discord.webhook.sync.SyncWebhook.partial:20 of +msgid "" +"A partial :class:`Webhook`. A partial webhook is just a webhook object " +"with an ID and a token." +msgstr "" + +#: ../../api/webhooks.rst 0061f3f374b842f89f81294919e7b332 +#: 0e582d4c476141f2a5dfb615c6d02191 17f68472dcba42fe8f0af144bff7693b +#: 1c93c2d555534835830b25ff5e8de975 21a35e447c374a698149c8cee0fb0f2e +#: 29a4d73f6f654bdb95f59cdb8283b986 3524ae7c70fe448da373ac18c91541b4 +#: 3a0de5cee95f4f069e27cab0d5bd36ad 41dc47e592ff45e9804d032c9de5487c +#: 5e09707da35846aea09a89d60f3c1644 6543b487b51f491093b0a7518bdaff2b +#: 6699173541df4cf0b2d64dc1b9e32155 829bc489f8b4466ca10e8cb4aba00216 +#: a4b300f6a3534ff4b69575c05386db6f aa5695c654474111925b8ffa2a2c9e8b +#: b7c09fab2c2a41bbbdccb0e3bd1c1551 cac2e021160d479aa7aadb818c8ac8e2 +#: d7c1fa42b71d435e943f6847ae61ff6d e4cbe6ca2eb842c8a8500ec39b672a77 +#: ef9b57f90dde4f56a2ccfe907ae6f69a fd3f5c1073b64aef85851f24f370d2a7 +msgid "Return type" +msgstr "" + +#: 059596f78a2a4bc9a8f8dc47c0d72545 0ccfcf6854e942f9b2da580aab110e81 +#: 601902981989407daf93c9fcbb016b17 6abca8c4a9b04a5886c172663749bb17 +#: a0f0f04098a04adb95f6e6abc687ad8f discord.webhook.async_.Webhook.fetch:21 +#: discord.webhook.async_.Webhook.from_url:22 +#: discord.webhook.async_.Webhook.partial:25 +#: discord.webhook.sync.SyncWebhook.from_url:19 +#: discord.webhook.sync.SyncWebhook.partial:22 of +msgid ":class:`Webhook`" +msgstr "" + +#: 62db58ad3bb54bedaf637267dc5a1fee 7149d5e4edae46c987d2af3fcb4ebd5f +#: discord.webhook.async_.Webhook.from_url:1 +#: discord.webhook.sync.SyncWebhook.from_url:1 of +msgid "Creates a partial :class:`Webhook` from a webhook URL." +msgstr "" + +#: 4f9eae91845a4c379810ccd3aad3cc56 7c5b01df522d472f80c1a9f78fa193e0 +#: discord.webhook.async_.Webhook.from_url:4 +#: discord.webhook.sync.SyncWebhook.from_url:4 of +msgid "The URL of the webhook." +msgstr "" + +#: ../../api/webhooks.rst 28e9e782dcad43c79f853109d7b92168 +#: 3080f4116f3e474a964564620d33d546 3a5fb2ca5abe4ff9a7d5135aa47cb20d +#: 43431d37eb44432ab097b3c8bd6eebaa 44a3c53d49f14587bd21ab912ce74102 +#: 595a6c1517874a3ca096bfc82e4eb846 636efb42801a4e0ab427b4b82d656c51 +#: 63a102f3ac9b44338a3a33437fe21c10 735b30610b2d466fbc18d717607b17af +#: 783798e7c763484396703d61f4209dbc 8846e8c581084bd88c4286cea6adbada +#: 897b5cd4992649b8a43bef0460638485 a319616061d3489dbd1dd48a4fee5c2d +#: a4b28b0d5cbc42bc82da2d2681de25c1 c8082c50852f4964a1162bc2b99d28b7 +#: d518bcc0541b4feb921292e91cf26a84 e9c9c989994a48a696dd689ad339f5bb +#: eb44bdd7071642c4a7ccb7218511163e f80dfcc52ab24a2faf78d0c8ae0f3e45 +#: fcb19d9c341241e4bf05a85eca2c35fa +msgid "Raises" +msgstr "" + +#: 022c94d40db7432aa9cf6f59be93c970 discord.webhook.async_.Webhook.from_url:24 +#: discord.webhook.sync.SyncWebhook.from_url:21 +#: fd13911f4fb04a6a8c733764abc6c038 of +msgid "The URL is invalid." +msgstr "" + +#: 3c670e77e3014641b345ff9edcb30e48 5abfca86c9ce4e8ba1b1400f5b041625 +#: 5b3ab39649904daa96a5df16fe43ada9 65809090934a42c385643aa8161f76c5 +#: 98db0506d8664e9883d7d98092812915 99fc496d0ac84fd1b6254e9e641ae26a +#: a07e1c7805a6456eb5fae0f8e1d4e9a7 d750fbe688d34b7aa89e230293149b20 +#: discord.webhook.async_.Webhook.delete:1 +#: discord.webhook.async_.Webhook.delete_message:1 +#: discord.webhook.async_.Webhook.edit:1 +#: discord.webhook.async_.Webhook.edit_message:1 +#: discord.webhook.async_.Webhook.fetch:1 +#: discord.webhook.async_.Webhook.fetch_message:1 +#: discord.webhook.async_.Webhook.send:1 +#: discord.webhook.async_.WebhookMessage.delete:1 +#: discord.webhook.async_.WebhookMessage.edit:1 +#: fdac30d2f8df4bb79aeba08a36bff1af of +msgid "|coro|" +msgstr "" + +#: 06063b46c8fa47e5aa54f5814933d47a c00659f5b83642ed863a181fe19bf563 +#: discord.webhook.async_.Webhook.fetch:3 +#: discord.webhook.sync.SyncWebhook.fetch:1 of +msgid "Fetches the current webhook." +msgstr "" + +#: 128848745b104f83b614d254f783f575 discord.webhook.async_.Webhook.fetch:5 +#: discord.webhook.sync.SyncWebhook.fetch:3 fd68769bc4214fb9b2ab6cb849349357 of +msgid "This could be used to get a full webhook from a partial webhook." +msgstr "" + +#: d017065daedf4887aaa434a7884526ba d8056223bc7b452588e155d2a25a0e6a +#: discord.webhook.async_.Webhook.fetch:11 +#: discord.webhook.sync.SyncWebhook.fetch:7 of +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 "" + +#: 2678d85a6195438ead791df56aba8df8 7bc22bff719a48868bb779b991673888 +#: a3b0757465ff40988f39230e3583ac71 a4d0c0aa071342de89544bd3e9a7b773 +#: a5e2023263e54bc9b57bc000f2d35cb6 d2c9412a9a9540379a2cf7e75301ed37 +#: discord.webhook.async_.Webhook.delete:11 +#: discord.webhook.async_.Webhook.edit:22 +#: discord.webhook.async_.Webhook.fetch:16 +#: discord.webhook.sync.SyncWebhook.delete:9 +#: discord.webhook.sync.SyncWebhook.edit:18 +#: discord.webhook.sync.SyncWebhook.fetch:12 of +msgid "" +"Whether to use the bot token over the webhook token if available. " +"Defaults to ``True``." +msgstr "" + +#: 273850f6ead544f3b039a7fc9a36a66b discord.webhook.async_.Webhook.fetch:20 +#: discord.webhook.sync.SyncWebhook.fetch:16 f0d7a0df843d452d9308fe6926d375e4 +#: of +msgid "The fetched webhook." +msgstr "" + +#: 1042ce16b0744e7eb7b3e2ba09d38b89 9581e77c1dfb4ff891ce35b50293fd58 +#: discord.webhook.async_.Webhook.fetch:23 +#: discord.webhook.sync.SyncWebhook.fetch:19 of +msgid "Could not fetch the webhook" +msgstr "" + +#: ac9d6dc8a5e94357a2e6169cb134288a be725566b076491d86a4709022702a7c +#: discord.webhook.async_.Webhook.fetch:24 +#: discord.webhook.sync.SyncWebhook.fetch:20 of +msgid "Could not find the webhook by this ID" +msgstr "" + +#: 2b80475f32b64b1cb7d4b297023aeabe 4fb58470918e432bbeb2fc2fe82f1a7f +#: 95dfabf235cb4b9aaf48598815661b67 99bdd9cfc74e4f4c8aa76af7a2ece6f9 +#: discord.webhook.async_.Webhook.delete:20 +#: discord.webhook.async_.Webhook.fetch:25 +#: discord.webhook.sync.SyncWebhook.delete:16 +#: discord.webhook.sync.SyncWebhook.fetch:21 of +msgid "This webhook does not have a token associated with it." +msgstr "" + +#: b98fb63484e64e238162e965364b8f0e discord.webhook.async_.Webhook.delete:3 +#: discord.webhook.sync.SyncWebhook.delete:1 fa3754c578994f009aeddfcebd10e908 +#: of +msgid "Deletes this Webhook." +msgstr "" + +#: 41d7fe3477004c43900875770aa5e2b1 cd9be7a2d2974b00948398efa1c82331 +#: discord.webhook.async_.Webhook.delete:6 +#: discord.webhook.sync.SyncWebhook.delete:4 of +msgid "" +"The reason for deleting this webhook. Shows up on the audit log. .. " +"versionadded:: 1.4" +msgstr "" + +#: b038db542f144f3495620fc573cdad90 d1cc11d81a834d5684d1741fa4437b2e +#: discord.webhook.async_.Webhook.delete:6 +#: discord.webhook.sync.SyncWebhook.delete:4 of +msgid "The reason for deleting this webhook. Shows up on the audit log." +msgstr "" + +#: 1044d0d698e040529c945421e1302e6e 4cde6ae633004199abdcb5396fe41a15 +#: discord.webhook.async_.Webhook.delete:11 +#: discord.webhook.async_.Webhook.edit:22 of +msgid "" +"Whether to use the bot token over the webhook token if available. " +"Defaults to ``True``. .. versionadded:: 2.0" +msgstr "" + +#: 45efc6b25d14483b87436e3ecf9fd1f6 discord.webhook.async_.Webhook.delete:17 +#: discord.webhook.sync.SyncWebhook.delete:13 eddf95f3a67e4642bc193431f42deb08 +#: of +msgid "Deleting the webhook failed." +msgstr "" + +#: 3b285a7aeb9f427daeb7bd5e53ff5a86 536f14d418644251b5ff1b7e5ec01288 +#: discord.webhook.async_.Webhook.delete:18 +#: discord.webhook.async_.Webhook.edit:29 +#: discord.webhook.sync.SyncWebhook.delete:14 +#: discord.webhook.sync.SyncWebhook.edit:26 e1f647d0018b4547ad3f3ba402104247 +#: ee60ed9a009c4fa09656abd081f253cf of +msgid "This webhook does not exist." +msgstr "" + +#: 71f5a227d7c44b61a6eef981e23dddc5 85e69036989b4731be5731dfcd41306a +#: discord.webhook.async_.Webhook.delete:19 +#: discord.webhook.sync.SyncWebhook.delete:15 of +msgid "You do not have permissions to delete this webhook." +msgstr "" + +#: 89935539aa134092ac26de7c313688be a670d75bf6e24f2ab26632be661e51c2 +#: discord.webhook.async_.Webhook.edit:3 +#: discord.webhook.sync.SyncWebhook.edit:1 of +msgid "Edits this Webhook." +msgstr "" + +#: a6532d34b6a9471cac961393098701e6 discord.webhook.async_.Webhook.edit:6 +#: discord.webhook.sync.SyncWebhook.edit:4 e242bdfc90f84563bb08b4a578fe643a of +msgid "The webhook's new default name." +msgstr "" + +#: beac2aa1cdaf423b85631336044144f5 bf637234fa6c42e8b1aa7f77b6d274d2 +#: discord.webhook.async_.Webhook.edit:9 +#: discord.webhook.sync.SyncWebhook.edit:7 of +msgid "" +"A :term:`py:bytes-like object` representing the webhook's new default " +"avatar." +msgstr "" + +#: 31a547df48b649ea82615ac1728ab8e3 discord.webhook.async_.Webhook.edit:12 of +msgid "" +"The webhook's new channel. This requires an authenticated webhook. .. " +"versionadded:: 2.0" +msgstr "" + +#: 4f9bd57c61d94fd3a99ab909c3c3191a 5b3c6db14fb245dfb10e78a5d84c0838 +#: discord.webhook.async_.Webhook.edit:12 +#: discord.webhook.sync.SyncWebhook.edit:10 of +msgid "The webhook's new channel. This requires an authenticated webhook." +msgstr "" + +#: 6bdcdf3cdaae445cbdfd9515165491ee a2237b9b7cf84433bed33ef1d5ea7785 +#: discord.webhook.async_.Webhook.edit:17 +#: discord.webhook.sync.SyncWebhook.edit:13 of +msgid "" +"The reason for editing this webhook. Shows up on the audit log. .. " +"versionadded:: 1.4" +msgstr "" + +#: 493fa2a1bfc14309912031da714d1d75 discord.webhook.async_.Webhook.edit:17 +#: discord.webhook.sync.SyncWebhook.edit:13 e92ca34e199847288c58367a4b032e09 of +msgid "The reason for editing this webhook. Shows up on the audit log." +msgstr "" + +#: 4f747bf4be1a48ebb06ecc3d8dbf1852 7b3a47d8d38b48809a95ebfc7dc82b14 +#: discord.webhook.async_.Webhook.edit:28 +#: discord.webhook.sync.SyncWebhook.edit:25 of +msgid "Editing the webhook failed." +msgstr "" + +#: a968a18c0a7541e08b3c4153b1a98a97 discord.webhook.async_.Webhook.edit:30 +#: discord.webhook.sync.SyncWebhook.edit:27 eb556b3e565e4e8090be3be7eecbde0b of +msgid "" +"This webhook does not have a token associated with it, or it tried " +"editing a channel without authentication." +msgstr "" + +#: 42d37765dc084fecb1b5885e6b7e4abe discord.webhook.async_.Webhook.edit:32 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.async\\_.Webhook\\``" +msgstr "" + +#: 04fff9e0abfb46a4904b63e06103f1ba d7b2819abc7d4e308bec9e2c19ab9261 +#: discord.webhook.async_.Webhook.send:3 +#: discord.webhook.sync.SyncWebhook.send:1 of +msgid "Sends a message using the webhook." +msgstr "" + +#: c5e799be8ade40e995feec52b7c333a0 discord.webhook.async_.Webhook.send:5 +#: discord.webhook.sync.SyncWebhook.send:3 e939b3c1c0d244ec8c03f29cbd41840e of +msgid "" +"The content must be a type that can convert to a string through " +"``str(content)``." +msgstr "" + +#: 1b6688110e8b417d9bee52af7467dbb0 discord.webhook.async_.Webhook.send:7 +#: discord.webhook.sync.SyncWebhook.send:5 e72113abad1b4144aa87980fa08569cd of +msgid "" +"To upload a single file, the ``file`` parameter should be used with a " +"single :class:`File` object." +msgstr "" + +#: 0831d821492945b0a04d2f131a91cf8c 63ec2bb4d5414b35bd9c625c36c49c81 +#: discord.webhook.async_.Webhook.send:10 +#: discord.webhook.sync.SyncWebhook.send:8 of +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 "" + +#: 0a8bf2ad589c441980181bba4eb1bfa1 da60f05732dc43f5958cf2351d73c9bd +#: discord.webhook.async_.Webhook.send:15 +#: discord.webhook.sync.SyncWebhook.send:13 of +msgid "The content of the message to send." +msgstr "" + +#: 497b38600d5b47be9c1ede2086ce1e43 discord.webhook.async_.Webhook.send:18 of +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 "" + +#: 329f894d60e8418babd0615535838d79 75fd2675f2e44032be336c27e95f0425 +#: discord.webhook.async_.Webhook.send:24 +#: discord.webhook.sync.SyncWebhook.send:21 of +msgid "" +"The username to send with this message. If no username is provided then " +"the default username for the webhook is used." +msgstr "" + +#: 415ad7a79b724742b603af8dfd4a1d34 discord.webhook.async_.Webhook.send:28 +#: discord.webhook.sync.SyncWebhook.send:25 ed3035289e594e30a8faada7130a8ad3 of +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 "" + +#: 57b92cca2540465fa3d09723f5190ae3 bdec6f4cafa148e3918db01822d37174 +#: discord.webhook.async_.Webhook.send:33 +#: discord.webhook.sync.SyncWebhook.send:30 of +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "" + +#: d3e1180ae6b24785be8cca3925c9f1d5 discord.webhook.async_.Webhook.send:36 of +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 "" + +#: 2073461bc84348999d9dc4844da44c6f discord.webhook.async_.Webhook.send:36 of +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 "" + +#: 3362b95bd934419c9251381914e90628 7c30236d94224488a57c2332448cb6e6 +#: 7c6e08154ecc4ca69dc4a064b23455ef b3a137449ab44e4aae5afd8b4c86108b +#: d5da797dde68461daf15dbe5cbc015df d67be620b0914c15b92a79cd02cb6319 +#: discord.webhook.async_.Webhook.edit_message:31 +#: discord.webhook.async_.Webhook.send:44 +#: discord.webhook.async_.WebhookMessage.edit:21 +#: discord.webhook.sync.SyncWebhook.edit_message:22 +#: discord.webhook.sync.SyncWebhook.send:33 +#: discord.webhook.sync.SyncWebhookMessage.edit:14 of +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "" + +#: 27765acd077d4a3b9e30f2fa38359bd7 34064a7e9e464392a61a70d956a57dfb +#: 7b7808e744a04aadb3d5e42c0f305be7 8d9cff7ca166417db59a8343a80ea9f0 +#: 9f5ad9e7cee54181848d2e2db990f038 +#: discord.webhook.async_.Webhook.edit_message:36 +#: discord.webhook.async_.Webhook.send:47 +#: discord.webhook.async_.WebhookMessage.edit:26 +#: discord.webhook.sync.SyncWebhook.edit_message:25 +#: discord.webhook.sync.SyncWebhook.send:36 +#: discord.webhook.sync.SyncWebhookMessage.edit:17 +#: f80272a359f441769b153488a3dec6eb of +msgid "" +"A list of files to send with the content. This cannot be mixed with the " +"``file`` parameter." +msgstr "" + +#: 7964d458be5e410b8d83db53a682494d 7c09cfd88d8a4109851ed05a46ae1e58 +#: discord.webhook.async_.Webhook.send:51 +#: discord.webhook.sync.SyncWebhook.send:40 of +msgid "" +"The rich embed for the content to send. This cannot be mixed with " +"``embeds`` parameter." +msgstr "" + +#: 33169aeae0d04196aaa9cdba77c5523a 4129e6e69a744c9f9011157faafde27a +#: discord.webhook.async_.Webhook.send:55 +#: discord.webhook.sync.SyncWebhook.send:44 of +msgid "" +"A list of embeds to send with the content. Maximum of 10. This cannot be " +"mixed with the ``embed`` parameter." +msgstr "" + +#: 38548540ca534e32b82858dc7e869d49 5ad6432e50fc4f0b8637b5f042754c8c +#: discord.webhook.async_.Webhook.send:59 +#: discord.webhook.sync.SyncWebhook.send:48 of +msgid "" +"Controls the mentions being processed in this message. .. versionadded::" +" 1.4" +msgstr "" + +#: 25a24ffcb57243e3a6aac660e58f40df a46016c132a14ba9a0b18b8a658f78d0 +#: discord.webhook.async_.Webhook.send:59 +#: discord.webhook.sync.SyncWebhook.send:48 of +msgid "Controls the mentions being processed in this message." +msgstr "" + +#: 5ace0f92a6434f1d842e58de5574440d discord.webhook.async_.Webhook.send:64 of +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 "" + +#: a2103cbca1a146e8b97c4431646b37c6 discord.webhook.async_.Webhook.send:64 of +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 "" + +#: 1091b11fcf1a4d4da35ba6893f4e8510 discord.webhook.async_.Webhook.send:72 of +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "" + +#: cb9cb046f73843b5a03fe43fd7beb042 discord.webhook.async_.Webhook.send:72 of +msgid "The thread to send this webhook to." +msgstr "" + +#: 7a187519aa2940c9905505a4d17452f9 ce59182ca5ae46a7aa023fb15a759cff +#: discord.webhook.async_.Webhook.send:77 +#: discord.webhook.sync.SyncWebhook.send:58 of +msgid "" +"The name of the thread to create. Only works for forum channels. .. " +"versionadded:: 2.0" +msgstr "" + +#: 66b29f938d6744b793c75e144a609c1b cec0156f9702482e87281e9c7d4b5888 +#: discord.webhook.async_.Webhook.send:77 +#: discord.webhook.sync.SyncWebhook.send:58 of +msgid "The name of the thread to create. Only works for forum channels." +msgstr "" + +#: ba1f4ffdfcad4ef7b7b25ce1bcdec3a8 discord.webhook.async_.Webhook.send:82 of +msgid "" +"A list of tags to apply to the message. Only works for threads. .. " +"versionadded:: 2.5" +msgstr "" + +#: discord.webhook.async_.Webhook.send:82 e8959512ab2c4d488d564a97603a1a45 of +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "" + +#: 2e5f0ac61f574217a527c43908d96ed6 discord.webhook.async_.Webhook.send:87 of +msgid "" +"If provided, the number of seconds to wait in the background before " +"deleting the message we just sent." +msgstr "" + +#: 37f414a7bd1b4e68b81070bd20ade192 discord.webhook.async_.Webhook.send:91 of +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "" + +#: dc0e0acf8e3b475f9037531ba1341c62 discord.webhook.async_.Webhook.send:91 of +msgid "The poll to send." +msgstr "" + +#: 198202cf1d9c4722873b76551c23a666 discord.webhook.async_.Webhook.send:96 +#: discord.webhook.sync.SyncWebhook.send:66 e0b22d0c21d741aa88a1390bece4595d of +msgid "" +"If ``wait`` is ``True`` then the message that was sent, otherwise " +"``None``." +msgstr "" + +#: df72ee848bf246b3b47dd71ddf117195 discord.webhook.async_.Webhook.send:97 of +msgid "Optional[:class:`WebhookMessage`]" +msgstr "" + +#: 7f8a38b849e445d6ba889e6cd458100e bfbf2157a6bb43c4b27470ab17ae6444 +#: discord.webhook.async_.Webhook.send:99 +#: discord.webhook.sync.SyncWebhook.send:69 of +msgid "Sending the message failed." +msgstr "" + +#: 14297b15634c4d1c8e59a5505bef80ae bcb74264d1f94f878a08026994728ba7 +#: discord.webhook.async_.Webhook.send:100 +#: discord.webhook.sync.SyncWebhook.send:70 of +msgid "This webhook was not found." +msgstr "" + +#: 288565c3281349929137c3cbd84263c1 57e9e2c90b6345d78dbd1c5a212a020a +#: discord.webhook.async_.Webhook.send:101 +#: discord.webhook.sync.SyncWebhook.send:71 of +msgid "The authorization token for the webhook is incorrect." +msgstr "" + +#: 1a57e7a87a114e19b05434cb16f239d9 discord.webhook.async_.Webhook.send:102 of +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "" + +#: d0ae47fd31c846c989dafd4048aca5c0 discord.webhook.async_.Webhook.send:103 of +msgid "The length of ``embeds`` was invalid." +msgstr "" + +#: 24d33e686b2541a7991efe6371d53143 discord.webhook.async_.Webhook.send:104 of +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 "" + +#: b698d80096f7403ba6c9c5f4f56f8cc4 discord.SyncWebhook.avatar:1 +#: discord.Webhook.avatar:1 fb5c67f696704406ada2e50fc20c3b5a of +msgid "Returns an :class:`Asset` for the avatar the webhook has." +msgstr "" + +#: aa7e7e77e9a6417bbcad10b68769112a cd4bafd5cdd748e68418c0fe6a77903f +#: discord.SyncWebhook.avatar:3 discord.Webhook.avatar:3 of +msgid "" +"If the webhook does not have a traditional avatar, an asset for the " +"default avatar is returned instead." +msgstr "" + +#: b0e5df787afd4134a9f27c14cfa0806f discord.SyncWebhook.channel:1 +#: discord.Webhook.channel:1 ec155bb383b3493db6d592f118ef175d of +msgid "The text channel this webhook belongs to." +msgstr "" + +#: 022253ecc6494569a37a64e3989de332 49f080cdd3004ec4a04e580041816ff8 +#: c66385e00fac41c189ea7d82d85d0db9 discord.SyncWebhook.channel:3 +#: discord.SyncWebhook.guild:3 discord.Webhook.channel:3 +#: discord.Webhook.guild:3 fd82aac7debd473aa87a4ac0207e9c07 of +msgid "If this is a partial webhook, then this will always return ``None``." +msgstr "" + +#: 2bb647713cb24bc2b8fc3564e3c354d3 51ccbb8f14b1435a9cddb90967145461 +#: discord.SyncWebhook.created_at:1 discord.Webhook.created_at:1 of +msgid "Returns the webhook's creation time in UTC." +msgstr "" + +#: 3ebd689f276a43cab2c962219ed428bd +#: discord.webhook.async_.Webhook.fetch_message:3 of +msgid "Retrieves a single :class:`~discord.WebhookMessage` owned by this webhook." +msgstr "" + +#: c416c824f58646938cc10f1ce57ed672 +#: discord.webhook.async_.Webhook.fetch_message:8 +#: discord.webhook.sync.SyncWebhook.fetch_message:6 +#: fe03e2f34f3949aebe2b2c2aeb8f376a of +msgid "The message ID to look for." +msgstr "" + +#: 1b801aa3da694b1fb0a41e006f67db48 54c1624e152d44a1b49022a5be33c6ed +#: c5e6600bf7394a67aa8724a86d9a8276 d3b17fa5d4074e1db1ae04d6532cc0b1 +#: discord.webhook.async_.Webhook.delete_message:14 +#: discord.webhook.async_.Webhook.fetch_message:11 +#: discord.webhook.sync.SyncWebhook.delete_message:12 +#: discord.webhook.sync.SyncWebhook.fetch_message:9 of +msgid "The ID of the thread that contains the message." +msgstr "" + +#: 6ab628d937b6459aafb88ff400bca888 764b8caa264548efafbde9aa61f2bd13 +#: discord.webhook.async_.Webhook.fetch_message:14 +#: discord.webhook.sync.SyncWebhook.fetch_message:12 of +msgid "The message asked for." +msgstr "" + +#: 3d4d1bd7b0fd48aaaccf3c7f3168d80d +#: discord.webhook.async_.Webhook.fetch_message:15 of +msgid ":class:`~discord.WebhookMessage`" +msgstr "" + +#: 7207fe3b68f64f8a8c140da81aa900da adc0d8e7494b4b28a27689f4642a99bf +#: discord.webhook.async_.Webhook.fetch_message:17 +#: discord.webhook.sync.SyncWebhook.fetch_message:15 of +msgid "The specified message was not found." +msgstr "" + +#: c26879650f5d433c814783394ac3ecf4 +#: discord.webhook.async_.Webhook.fetch_message:18 +#: discord.webhook.sync.SyncWebhook.fetch_message:16 +#: e527d204d3684032bdc3fc71333dcb56 of +msgid "You do not have the permissions required to get a message." +msgstr "" + +#: 3b2a515c5b8448499ac19916bebbd377 92494eb4200f4da19d323bc789631de0 +#: discord.webhook.async_.Webhook.fetch_message:19 +#: discord.webhook.sync.SyncWebhook.fetch_message:17 of +msgid "Retrieving the message failed." +msgstr "" + +#: 15d7ddb34d114f7a99c69037b8bc39fa 1776e8cab52642f6a978d91bbf648938 +#: 4d11b05888b04d598188a4d96d126217 5b05a764b5944c69861df40833dc56b8 +#: c26a2b16d5d94bd3a65a5149327152aa +#: discord.webhook.async_.Webhook.fetch_message:20 +#: discord.webhook.async_.WebhookMessage.edit:58 +#: discord.webhook.sync.SyncWebhook.edit_message:40 +#: discord.webhook.sync.SyncWebhook.fetch_message:18 +#: discord.webhook.sync.SyncWebhookMessage.edit:35 of +msgid "There was no token associated with this webhook." +msgstr "" + +#: 52d58c37da744b78934404b08a05d5ef cd00141236a54abb9ac3b84eae0a578b +#: discord.SyncWebhook.guild:1 discord.Webhook.guild:1 of +msgid "The guild this webhook belongs to." +msgstr "" + +#: 53da81ecbe5a4d4bb63f4b4f776c0d41 c46e8899998c48fdbcc590fa47717cef +#: discord.webhook.async_.BaseWebhook.is_authenticated:1 of +msgid "" +"Whether the webhook is authenticated with a bot token. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: b6d6fa1f6451445c81ef826852a24c77 d39d405809f54a778e5db34e04b3fc95 +#: discord.webhook.async_.BaseWebhook.is_partial:1 of +msgid "" +"Whether the webhook is a \"partial\" webhook. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: c1b9dd3681ee4a8584c4cd79ed1d4977 c7eadbacb5ac4096b9b9bada91e833d2 +#: discord.webhook.async_.Webhook.edit_message:3 +#: discord.webhook.sync.SyncWebhook.edit_message:1 of +msgid "Edits a message owned by this webhook." +msgstr "" + +#: 3eefa1a227ea4f96b8d847a3a507fd6e 9971472f245b415aaadbb8956285f297 +#: discord.webhook.async_.Webhook.edit_message:5 +#: discord.webhook.sync.SyncWebhook.edit_message:3 of +msgid "" +"This is a lower level interface to :meth:`WebhookMessage.edit` in case " +"you only have an ID." +msgstr "" + +#: 2d67b9ca76344875adb757cf10cd8511 8af6785c98bc455e81d47c71f41501d8 +#: discord.webhook.async_.Webhook.edit_message:10 +#: discord.webhook.async_.WebhookMessage.edit:7 of +msgid "" +"The edit is no longer in-place, instead the newly edited message is " +"returned." +msgstr "" + +#: 5a82c8e80c41438cae3f995cf46fe2d6 a9e4ea6e61aa408ea880bd28b50cb2f8 +#: discord.webhook.async_.Webhook.edit_message:14 +#: discord.webhook.sync.SyncWebhook.edit_message:9 of +msgid "The message ID to edit." +msgstr "" + +#: 1bc930d388a74891b13d38e6263f9603 7cbd742ce2934ba58758ac9b9bd76dad +#: 9271f9c8ad084cebb3ed15f2dc0c2dc9 +#: discord.webhook.async_.Webhook.edit_message:17 +#: discord.webhook.async_.WebhookMessage.edit:11 +#: discord.webhook.sync.SyncWebhook.edit_message:12 +#: discord.webhook.sync.SyncWebhookMessage.edit:4 +#: ed34e4fc95fb47acbc1577c836be845a of +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "" + +#: 20312965a9b94e4fadbed393402e9263 85dd5e157ee54e66a6e28d78c61dc7bd +#: d8f2037a79c5458fba497be4b8086130 +#: discord.webhook.async_.Webhook.edit_message:20 +#: discord.webhook.async_.WebhookMessage.edit:14 +#: discord.webhook.sync.SyncWebhook.edit_message:15 +#: discord.webhook.sync.SyncWebhookMessage.edit:7 +#: eaf9bef906a241228685837428b088e2 of +msgid "A list of embeds to edit the message with." +msgstr "" + +#: 75f6749124da45c898b2058893bbcf1b 76fc68e7bd934eaf8fd9d73f92e66aa4 +#: a427e1e0136e41efaf57f2ffdb117ca2 b9494426284345ffbacd4b90e110c519 +#: discord.webhook.async_.Webhook.edit_message:23 +#: discord.webhook.async_.WebhookMessage.edit:17 +#: discord.webhook.sync.SyncWebhook.edit_message:18 +#: discord.webhook.sync.SyncWebhookMessage.edit:10 of +msgid "" +"The embed to edit the message with. ``None`` suppresses the embeds. This " +"should not be mixed with the ``embeds`` parameter." +msgstr "" + +#: 1261a847eaa24dc5a94da52ea090d093 6db59c19de404a34aa15bd6d90797c9b +#: discord.webhook.async_.Webhook.edit_message:27 +#: discord.webhook.async_.WebhookMessage.edit:32 of +msgid "" +"A list of attachments to keep in the message. If ``[]`` is passed then " +"all attachments are removed." +msgstr "" + +#: d973a268394c4f73b7f8296b53b752a4 +#: discord.webhook.async_.Webhook.edit_message:31 +#: discord.webhook.async_.WebhookMessage.edit:21 +#: ec50809a68e94bfcad75d7052dd6e7e9 of +msgid "" +"The file to upload. This cannot be mixed with ``files`` parameter. .. " +"versionadded:: 2.0" +msgstr "" + +#: 0648f797465242acbb5ad4fdefade223 2c367cdfe97d4ad0ab9138716b92addd +#: discord.webhook.async_.Webhook.edit_message:36 +#: discord.webhook.async_.WebhookMessage.edit:26 of +msgid "" +"A list of files to send with the content. This cannot be mixed with the " +"``file`` parameter. .. versionadded:: 2.0" +msgstr "" + +#: 67a35408e50b4bed92ac9a3f9e48eea7 8a2bb7cfd1b6467c9c7274a714affc32 +#: cb74411660504cafa28540cb949c8383 +#: discord.webhook.async_.Webhook.edit_message:42 +#: discord.webhook.async_.WebhookMessage.edit:38 +#: discord.webhook.sync.SyncWebhook.edit_message:29 +#: discord.webhook.sync.SyncWebhookMessage.edit:21 +#: e35ae8c47975407d87c8b79a106b96f8 of +msgid "" +"Controls the mentions being processed in this message. See " +":meth:`.abc.Messageable.send` for more information." +msgstr "" + +#: 18109d101eef4900888ecf232da08764 +#: discord.webhook.async_.Webhook.edit_message:46 of +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 "" + +#: 1f6dedbbd77046aba39f88c90128c87e +#: discord.webhook.async_.Webhook.edit_message:46 of +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 "" + +#: 3ffcd5e8c19c43a893c62a8a241bb38e c8e07f2912274c8690eea158d709400e +#: discord.webhook.async_.Webhook.edit_message:53 +#: discord.webhook.sync.SyncWebhook.edit_message:33 of +msgid "The thread that contains the message." +msgstr "" + +#: 0e58b4588c244b2795b9a25162938b69 13349759eb4d4dd8802d0bed0cb95c2b +#: 67c4905f360444e286aa49fcfa2b1b10 ba994c7eba3048d7a5330aa66e6223a2 +#: discord.webhook.async_.Webhook.edit_message:56 +#: discord.webhook.async_.WebhookMessage.edit:48 +#: discord.webhook.sync.SyncWebhook.send:63 +#: discord.webhook.sync.SyncWebhookMessage.edit:25 of +msgid "Whether to suppress embeds for the message." +msgstr "" + +#: c6dc3ee101f54698aeca7d6697305461 +#: discord.webhook.async_.Webhook.edit_message:59 of +msgid "The newly edited webhook message." +msgstr "" + +#: d23329b2f76a4159a4087965b502de6e de7030ddb3b642eab991d82d5465c6f6 +#: discord.webhook.async_.Webhook.edit_message:60 +#: discord.webhook.async_.WebhookMessage.edit:52 of +msgid ":class:`WebhookMessage`" +msgstr "" + +#: 2911c1f972ab4f1288075c647b177fe6 6071f2c259c143f7bbd0333a204b45d3 +#: 6b5a68c2d6384ab18f5c9c56e376ce4d d84d5cea09fe494b9d14bf275d256589 +#: discord.webhook.async_.Webhook.edit_message:62 +#: discord.webhook.async_.WebhookMessage.edit:54 +#: discord.webhook.sync.SyncWebhook.edit_message:36 +#: discord.webhook.sync.SyncWebhookMessage.edit:31 of +msgid "Editing the message failed." +msgstr "" + +#: 614c1f2626bb459b86310fb14a6766a5 97fab4294de84554a109d5cd2c95a4bd +#: ad39ad3511944866a16078d24a752fd5 +#: discord.webhook.async_.Webhook.edit_message:63 +#: discord.webhook.async_.WebhookMessage.edit:55 +#: discord.webhook.sync.SyncWebhook.edit_message:37 +#: discord.webhook.sync.SyncWebhookMessage.edit:32 +#: e85aed7299274aa8a607ea5efecdcd76 of +msgid "Edited a message that is not yours." +msgstr "" + +#: 05ce44d9433040619f0f644b8b548189 0ee40fbeeaed44cd89a5c938b564313c +#: 5cf2e6a486c747f695d24c1dd923ea49 6eac1c3b7292418d9bdc9468d9fd736b +#: d13931c4ffe84322bebc37b53d758401 +#: discord.webhook.async_.Webhook.edit_message:64 +#: discord.webhook.async_.WebhookMessage.edit:56 +#: discord.webhook.sync.SyncWebhook.edit_message:38 +#: discord.webhook.sync.SyncWebhook.send:72 +#: discord.webhook.sync.SyncWebhookMessage.edit:33 of +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "" + +#: 434643453fe94810856e9d1711091f11 4fc8b66942cb4839b20e5560afa7501e +#: b3eab12f8e87462abedbcfa904a6e147 +#: discord.webhook.async_.Webhook.edit_message:65 +#: discord.webhook.async_.WebhookMessage.edit:57 +#: discord.webhook.sync.SyncWebhook.edit_message:39 +#: discord.webhook.sync.SyncWebhook.send:73 +#: discord.webhook.sync.SyncWebhookMessage.edit:34 +#: e8b9d1bf3500443ca1d1f7af7e64ab46 efe8437bf03e4fe99966973bbda26d5e of +msgid "The length of ``embeds`` was invalid" +msgstr "" + +#: 2edea985551c4f80a4872296178d9704 +#: discord.webhook.async_.Webhook.edit_message:66 of +msgid "" +"There was no token associated with this webhook or the webhook had no" +" state." +msgstr "" + +#: 15dea039ddd742c2811ae0ba4a4022a6 5c9da7d28dce4982bb84fd12dbbcecb0 +#: discord.webhook.async_.Webhook.delete_message:3 +#: discord.webhook.sync.SyncWebhook.delete_message:1 of +msgid "Deletes a message owned by this webhook." +msgstr "" + +#: d5c47868890b4d0cafffe8e6d913036b db8c1747493a459087e6b3b081ac0d5e +#: discord.webhook.async_.Webhook.delete_message:5 +#: discord.webhook.sync.SyncWebhook.delete_message:3 of +msgid "" +"This is a lower level interface to :meth:`WebhookMessage.delete` in case " +"you only have an ID." +msgstr "" + +#: 234aadd0447949f7ab7b01771bb782e7 6d1658d87fd344908d39bdff91044acb +#: discord.webhook.async_.Webhook.delete_message:11 +#: discord.webhook.sync.SyncWebhook.delete_message:9 of +msgid "The message ID to delete." +msgstr "" + +#: 08193ea844e54abdbec4d40e9e9ec844 091a2a3956304512919d443b2dfc9323 +#: cf6413728c3f4601bd518d470cd6aa52 +#: discord.webhook.async_.Webhook.delete_message:17 +#: discord.webhook.async_.WebhookMessage.delete:12 +#: discord.webhook.sync.SyncWebhook.delete_message:15 +#: discord.webhook.sync.SyncWebhookMessage.delete:10 +#: f107745635884aef9d7b126413adaca2 of +msgid "Deleting the message failed." +msgstr "" + +#: 922e88d327a343d08e8a5cea1070c9c1 9be5c7332c714e99ba44b7e8ea204674 +#: discord.webhook.async_.Webhook.delete_message:18 +#: discord.webhook.sync.SyncWebhook.delete_message:16 of +msgid "Deleted a message that is not yours." +msgstr "" + +#: 28f726448b1a4165867a73648669ed22 56f1e679fe0149e591ce572cd88e0d1a +#: 8e0ca3a0c65c4e00a88b8200783d8b3f b41bf4df2b96442ca315d4798262ea41 +#: c46e105b902f43849250fbc1da24ed70 +#: discord.webhook.async_.Webhook.delete_message:20 +#: discord.webhook.async_.WebhookMessage.delete:14 +#: discord.webhook.sync.SyncWebhook.delete:18 +#: discord.webhook.sync.SyncWebhook.delete_message:18 +#: discord.webhook.sync.SyncWebhookMessage.delete:12 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: 50e22ee16b5848178dc9b232382ae7e0 d71174eb01124078b8485ecf5425ec05 +#: discord.webhook.async_.WebhookMessage:1 +#: discord.webhook.sync.SyncWebhookMessage:1 of +msgid "Represents a message sent from your webhook." +msgstr "" + +#: 1c655677226f4830aedb23fb6f1837a8 c733980eb8534faf99bb803c964524c3 +#: discord.webhook.async_.WebhookMessage:3 +#: discord.webhook.sync.SyncWebhookMessage:3 of +msgid "This allows you to edit or delete a message sent by your webhook." +msgstr "" + +#: 33093f55fb9f4195a31a391a774f446b 8da32e9c443f44618a2d11ad25586f60 +#: discord.webhook.async_.WebhookMessage:6 +#: discord.webhook.sync.SyncWebhookMessage:6 of +msgid "" +"This inherits from :class:`discord.Message` with changes to :meth:`edit` " +"and :meth:`delete` to work." +msgstr "" + +#: 8d76438ac0a449f096840bc580b21c7a a2e790bc16394691bb3ba3168ece42f6 +#: discord.webhook.async_.WebhookMessage.edit:3 +#: discord.webhook.sync.SyncWebhookMessage.edit:1 of +msgid "Edits the message." +msgstr "" + +#: 465ce5ddd21b444aadbfef12107dcd6c +#: discord.webhook.async_.WebhookMessage.edit:32 of +msgid "" +"A list of attachments to keep in the message. If ``[]`` is passed then " +"all attachments are removed. .. versionadded:: 2.0" +msgstr "" + +#: 40f8551587c84121952e24867cb7b103 +#: discord.webhook.async_.WebhookMessage.edit:42 of +msgid "" +"The updated view to update this message with. If ``None`` is passed then " +"the view is removed. .. versionadded:: 2.0" +msgstr "" + +#: bbe0cec8d8fd472a8414d1f64c871ac9 +#: discord.webhook.async_.WebhookMessage.edit:42 of +msgid "" +"The updated view to update this message with. If ``None`` is passed then " +"the view is removed." +msgstr "" + +#: 0d4acea514904c8b82ce6ba49a8d5093 +#: discord.webhook.async_.WebhookMessage.edit:51 +#: discord.webhook.sync.SyncWebhookMessage.edit:28 +#: ea51e461eb4b4e72921bd90176465112 of +msgid "The newly edited message." +msgstr "" + +#: 1512b9e2d2e74beea6be22bd4a805a28 16f52ca9ace24fb38a6dd193b112cc64 +#: discord.webhook.async_.WebhookMessage.delete:3 +#: discord.webhook.sync.SyncWebhookMessage.delete:1 of +msgid "Deletes the message." +msgstr "" + +#: 243b13bacd334531b0be3088f532d8cd +#: discord.webhook.async_.WebhookMessage.delete:6 of +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 "" + +#: 96b6ad26e0cc4979923a463e329f90b3 aba4600cb0384affabc1e3f706cd8796 +#: discord.webhook.async_.WebhookMessage.delete:10 +#: discord.webhook.sync.SyncWebhookMessage.delete:8 of +msgid "You do not have proper permissions to delete the message." +msgstr "" + +#: b83c32c0775b4ad2903f16caa49b75cf +#: discord.webhook.async_.WebhookMessage.delete:11 +#: discord.webhook.sync.SyncWebhookMessage.delete:9 +#: f04e4a0b1cbf4f3daade0da691833e50 of +msgid "The message was deleted already." +msgstr "" + +#: cc1d33c5b8a84a29876ee006017500e9 discord.webhook.sync.SyncWebhook:1 of +msgid "Represents a synchronous Discord webhook." +msgstr "" + +#: d85dc67cc7ae41b887606e9f7b9836e0 discord.webhook.sync.SyncWebhook:3 of +msgid "For an asynchronous counterpart, see :class:`Webhook`." +msgstr "" + +#: 840907faec8c45c0952ebfdb3349d390 b9c19a7dc665479f9dd4388f7783d712 +#: discord.webhook.sync.SyncWebhook.from_url:7 +#: discord.webhook.sync.SyncWebhook.partial:10 of +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 "" + +#: 4d5326bd667b4df2bebe23caaa5cc701 be82f96debd24cffb17feed64f30b7e9 +#: discord.webhook.sync.SyncWebhook.edit:23 +#: discord.webhook.sync.SyncWebhook.fetch:17 of +msgid ":class:`SyncWebhook`" +msgstr "" + +#: discord.webhook.sync.SyncWebhook.edit:22 e975ac9571684c7395ba098a454e852b of +msgid "The newly edited webhook." +msgstr "" + +#: discord.webhook.sync.SyncWebhook.send:16 f39da5d0640d48a48876001d0283dff5 of +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 "" + +#: 99c8f76e0bc64453945947d86b5cd9c4 discord.webhook.sync.SyncWebhook.send:53 of +msgid "The thread to send this message to. .. versionadded:: 2.0" +msgstr "" + +#: discord.webhook.sync.SyncWebhook.send:53 f63e656d3dc04732bf975f2c2a580042 of +msgid "The thread to send this message to." +msgstr "" + +#: 4df5c9ff55674ecfa020102b402e3263 discord.webhook.sync.SyncWebhook.send:67 of +msgid "Optional[:class:`SyncWebhookMessage`]" +msgstr "" + +#: 785676d5bd474edb981f1c1aedd4a3e0 discord.webhook.sync.SyncWebhook.send:74 of +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 "" + +#: a709c1c1f25a4ac4a42ce45594910a31 +#: discord.webhook.sync.SyncWebhook.fetch_message:1 of +msgid "" +"Retrieves a single :class:`~discord.SyncWebhookMessage` owned by this " +"webhook." +msgstr "" + +#: 09f5ec74a83d4d6e94100ebb8ed78e9d +#: discord.webhook.sync.SyncWebhook.fetch_message:13 of +msgid ":class:`~discord.SyncWebhookMessage`" +msgstr "" + +#: 6a516df32c234c288fde2ccfabba3553 +#: discord.webhook.sync.SyncWebhook.edit_message:44 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.webhook.sync.SyncWebhookMessage\\``" +msgstr "" + +#: 0b0928b5ee704cc3b030ef3abee75509 +#: discord.webhook.sync.SyncWebhookMessage.edit:29 of +msgid ":class:`SyncWebhookMessage`" +msgstr "" + +#: a6721a5618a04f06a9461c10e2957767 +#: discord.webhook.sync.SyncWebhookMessage.delete:4 of +msgid "" +"If provided, the number of seconds to wait before deleting the message. " +"This blocks the thread." +msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/changelog.po b/docs/locales/en/LC_MESSAGES/changelog.po new file mode 100644 index 0000000000..21d1b42141 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/changelog.po @@ -0,0 +1,2308 @@ +# 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 , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.16.0\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 b32d85acd95341dfb2e580a11f6272ca +msgid "⚠️ **This Version Removes Support For Python 3.8** ⚠️" +msgstr "" + +#: ../../changelog.md:15 ../../changelog.md:101 ../../changelog.md:227 +#: ../../changelog.md:379 ../../changelog.md:425 ../../changelog.md:502 +#: ../../changelog.md:641 ../../changelog.md:743 ../../changelog.md:850 +#: 6f3f624eef944b38a861d712cf1c2dd3 +msgid "Changed" +msgstr "" + +#: ../../changelog.md:17 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:20 9fe0dfdfa63e4ad4b9c4e4043aef28b3 +msgid "" +"⚠️ **This Version Removes Support For Python 3.8** ⚠️ " +"([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "" + +#: ../../changelog.md:23 ../../changelog.md:30 ../../changelog.md:137 +#: ../../changelog.md:398 ../../changelog.md:471 ../../changelog.md:526 +#: ../../changelog.md:542 ../../changelog.md:610 ../../changelog.md:711 +#: ../../changelog.md:800 e8cf33c496dc4074adbbcfbbce555d76 +msgid "Added" +msgstr "" + +#: ../../changelog.md:25 73f8d143b51e4d75ba380e16b08e6dcb +msgid "" +"Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-" +"Development/pycord/pull/2528))" +msgstr "" + +#: ../../changelog.md:28 2ea9c95bdc934b7bbbe972ad30512eb5 +msgid "[2.6.0] - 2024-07-09" +msgstr "" + +#: ../../changelog.md:32 ee1185f07728432d90acac5a21dbec45 +msgid "" +"Added `banner` parameter to `ClientUser.edit`. " +"([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" +msgstr "" + +#: ../../changelog.md:34 d88667c6f5dd4c8789c7f597cbcc5b58 +msgid "" +"Added `user` argument to `Paginator.edit`. ([#2390](https://github.com" +"/Pycord-Development/pycord/pull/2390))" +msgstr "" + +#: ../../changelog.md:36 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:38 73f8d143b51e4d75ba380e16b08e6dcb +msgid "" +"Added `Guild.search_members`. ([#2418](https://github.com/Pycord-" +"Development/pycord/pull/2418))" +msgstr "" + +#: ../../changelog.md:40 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:42 f56f60d027c34c1c96d0aae7504b6cfb +msgid "" +"Added `member` data to the `raw_reaction_remove` event. " +"([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" +msgstr "" + +#: ../../changelog.md:44 f9988dfe7b23484b9ba4809f9bb95d74 +msgid "" +"Added `Poll` and all related features. ([#2408](https://github.com" +"/Pycord-Development/pycord/pull/2408))" +msgstr "" + +#: ../../changelog.md:46 9ac720e03f6142e4ac4e0b6de0379c55 +msgid "" +"Added `stacklevel` param to `utils.warn_deprecated` and " +"`utils.deprecated`. ([#2450](https://github.com/Pycord-" +"Development/pycord/pull/2450))" +msgstr "" + +#: ../../changelog.md:48 a8616b9a932f4606b85de797fc499ba7 +msgid "" +"Added support for user-installable applications. " +"([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" +msgstr "" + +#: ../../changelog.md:50 1c4f1fdcf05c43aba319d2e797df1b3e +msgid "" +"Added support for one-time purchases for Discord monetization. " +"([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" +msgstr "" + +#: ../../changelog.md:52 44550f6f16534a32aae326204a92f827 +msgid "" +"Added `Attachment.title`. ([#2486](https://github.com/Pycord-" +"Development/pycord/pull/2486))" +msgstr "" + +#: ../../changelog.md:54 fc13286743f845d19a7cab16bf48759f +msgid "" +"Added `MemberFlags`. ([#2489](https://github.com/Pycord-" +"Development/pycord/pull/2489))" +msgstr "" + +#: ../../changelog.md:55 90ea693eff9d4606a4c04da0d022efe1 +msgid "" +"Added `bypass_verification` parameter to `Member.edit`. " +"([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" +msgstr "" + +#: ../../changelog.md:57 b0e2a36ec1474943ac739d3a17c79296 +msgid "" +"Added `RoleFlags`. ([#2487](https://github.com/Pycord-" +"Development/pycord/pull/2487))" +msgstr "" + +#: ../../changelog.md:58 1acba6757cf74da68c1302cbed5100b5 +msgid "" +"Added `MessageCall` information. ([#2488](https://github.com/Pycord-" +"Development/pycord/pull/2488))" +msgstr "" + +#: ../../changelog.md:61 ../../changelog.md:269 ../../changelog.md:385 +#: ../../changelog.md:435 ../../changelog.md:453 ../../changelog.md:464 +#: ../../changelog.md:492 ../../changelog.md:518 ../../changelog.md:531 +#: ../../changelog.md:574 ../../changelog.md:588 ../../changelog.md:595 +#: ../../changelog.md:603 ../../changelog.md:651 ../../changelog.md:757 +#: ../../changelog.md:863 ../../changelog.md:900 +#: 25748af9e8d041dc8b2c9e7a88663f4f +msgid "Fixed" +msgstr "" + +#: ../../changelog.md:63 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:65 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:68 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:70 9d69c269ed79425ab60e09f9b5e2ee4b +msgid "" +"Fixed `NameError` in some instances of `Interaction`. " +"([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" +msgstr "" + +#: ../../changelog.md:72 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:74 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:76 8b40273b3f334953b36d4e726019a6d1 +msgid "" +"Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. " +"([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" +msgstr "" + +#: ../../changelog.md:78 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:80 ef1005168cfb44b6b8f2055793ee601d +msgid "" +"Fixed option typehints being ignored when using `parameter_name`. " +"([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "" + +#: ../../changelog.md:82 7869c915b3f14f07a5bf3a4475157805 +msgid "" +"Fixed parameter `embed=None` causing `AttributeError` on " +"`PartialMessage.edit`. ([#2446](https://github.com/Pycord-" +"Development/pycord/pull/2446))" +msgstr "" + +#: ../../changelog.md:84 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:86 878001efd2cc45dead2ee90071cecf01 +msgid "" +"Fixed missing `application_id` in `Entitlement.delete`. " +"([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" +msgstr "" + +#: ../../changelog.md:88 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:90 55d4ea1bd82340bcb8c23812b5179448 +msgid "" +"Fixed many inaccurate type hints throughout the library. " +"([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" +msgstr "" + +#: ../../changelog.md:92 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:94 6861ca06f105483bbc97a0928b422c0a +msgid "" +"Fixed `remove_application_command` causing issues while reloading " +"extensions. ([#2480](https://github.com/Pycord-" +"Development/pycord/pull/2480))" +msgstr "" + +#: ../../changelog.md:96 0fe082c072ae49f581e23f1910056ed8 +msgid "" +"Fixed outdated logic for filtering and sorting audit log entries. " +"([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" +msgstr "" + +#: ../../changelog.md:98 af74ad39a1b34e1fa81b9328b1540ea5 +msgid "" +"Further fixed logic when fetching audit logs. ([#2492](https://github.com" +"/Pycord-Development/pycord/pull/2492))" +msgstr "" + +#: ../../changelog.md:103 c07af9a4c1fd4892ae280f8510c5161f +msgid "" +"Changed the type of `Guild.bitrate_limit` to `int`. " +"([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" +msgstr "" + +#: ../../changelog.md:105 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:107 3131b38385834d42af1359ccf1b8e9e8 +msgid "" +"`option` decorator now accepts `input_type`. ([#2417](https://github.com" +"/Pycord-Development/pycord/pull/2417))" +msgstr "" + +#: ../../changelog.md:109 38abe22de33943b2b3ff6091e2c3779f +msgid "" +"`Option` may be used instead of `BridgeOption` until 2.7. " +"([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "" + +#: ../../changelog.md:111 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:113 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:116 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:118 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:121 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:124 ../../changelog.md:262 ../../changelog.md:511 +#: ../../changelog.md:752 cb54f87243e542f6bdc3742c26311fa6 +msgid "Removed" +msgstr "" + +#: ../../changelog.md:126 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:129 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:132 4d2440e51f8346a5894152a1e3ac6351 +msgid "" +"Removed the `vanity_code` parameter from `Guild.edit`. " +"([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" +msgstr "" + +#: ../../changelog.md:135 6a0c9c7b35c54520a5ae4547c8382a6e +msgid "[2.5.0] - 2024-03-02" +msgstr "" + +#: ../../changelog.md:139 60a5bb23d20a46b29897ff0b90b12c68 +msgid "" +"Added method to start bot via async context manager. " +"([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" +msgstr "" + +#: ../../changelog.md:141 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:143 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:146 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:148 3dc5ef7302d8499f8f3b37132cad769a +msgid "" +"Added support for text-related features in `StageChannel`. " +"([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" +msgstr "" + +#: ../../changelog.md:150 b26f8600ddae4ee7adf165d713c4c520 +msgid "" +"Added support for one-time event listeners in `Client.listen`. " +"([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" +msgstr "" + +#: ../../changelog.md:152 4c1d702a0fd34e05b931d0149b6d2e88 +msgid "" +"Added `current_page` argument to `Paginator.update()`. " +"([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" +msgstr "" + +#: ../../changelog.md:154 c424e9e7177746638415ee55b969a529 +msgid "" +"Added application flag `application_auto_moderation_rule_create_badge`. " +"([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" +msgstr "" + +#: ../../changelog.md:156 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:159 af0b802a69904f288b90a992f9990483 +msgid "" +"Added `custom_message` to AutoModActionMetadata. " +"([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" +msgstr "" + +#: ../../changelog.md:161 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:164 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:167 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:170 9d551823bcc84935a681e5d58adf5111 +msgid "" +"Added AutoMod-related models for `AuditLogDiff` enums. " +"([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" +msgstr "" + +#: ../../changelog.md:172 c3f3b5baaf6d4bf3a3deaa582d1444a1 +msgid "" +"Added `Interaction.respond` and `Interaction.edit` as shortcut responses." +" ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" +msgstr "" + +#: ../../changelog.md:174 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:177 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:180 b21a35a76bac4e2d9ae6a07c7a3a696a +msgid "" +"Added support for usernames and modified multiple methods accordingly. " +"([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" +msgstr "" + +#: ../../changelog.md:182 74a9e9832d4c4a6fa8734778209c65e4 +msgid "" +"Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. " +"([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" +msgstr "" + +#: ../../changelog.md:184 f2ec2163c71c48b9a21d3bd75fff5064 +msgid "" +"Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`." +" ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "" + +#: ../../changelog.md:186 85eb170585cb42f598e263c7b60a31e0 +msgid "" +"Added embedded activities Gartic Phone and Jamspace. " +"([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" +msgstr "" + +#: ../../changelog.md:188 7959cb02aa124f1b82dc5adbc03e84c5 +msgid "" +"Added `bridge.Context` type as a `Union` of subclasses. " +"([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" +msgstr "" + +#: ../../changelog.md:190 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:192 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:195 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:197 42ed7327fefc4b54872053b06dc3d128 +msgid "" +"Added support for custom bot status. ([#2206](https://github.com/Pycord-" +"Development/pycord/pull/2206))" +msgstr "" + +#: ../../changelog.md:199 72df647a50374daa932d83ec54fadbce +msgid "" +"Added function `Guild.delete_auto_moderation_rule`. " +"([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" +msgstr "" + +#: ../../changelog.md:201 dddf1b7b1aba48dfb0f3282e4d0658a2 +msgid "" +"Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-" +"Development/pycord/pull/2112))" +msgstr "" + +#: ../../changelog.md:203 3b2c11ddd69145ff9b65a168d5f20f04 +msgid "" +"Added `ForumChannel.default_reaction_emoji` attribute. " +"([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" +msgstr "" + +#: ../../changelog.md:205 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:208 4620d311330a4c04b6b2b7b4de078652 +msgid "" +"Added `applied_tags` parameter to `Webhook.send` method. " +"([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" +msgstr "" + +#: ../../changelog.md:210 90293effcc9a4c0cbe82b4d50f4e2604 +msgid "" +"Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-" +"Development/pycord/pull/2131))" +msgstr "" + +#: ../../changelog.md:212 f1c971d407c9454c85b3b93e5be66b65 +msgid "" +"Added support for guild onboarding related features. " +"([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" +msgstr "" + +#: ../../changelog.md:214 4f80fa16c23e41c19ad5f98cb4764338 +msgid "" +"Added support for monetization related objects and events. " +"([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" +msgstr "" + +#: ../../changelog.md:216 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:218 4d570b6175b846b7b096d02a18bf1053 +msgid "" +"Added `invitable` and `slowmode_delay` to `Thread` creation methods. " +"([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" +msgstr "" + +#: ../../changelog.md:220 6e961ffbbb9c4e43a860891df7ed6fa5 +msgid "" +"Added support for voice channel statuses. ([#2368](https://github.com" +"/Pycord-Development/pycord/pull/2368))" +msgstr "" + +#: ../../changelog.md:222 ee841b6b671d4856b893970d196abd64 +msgid "" +"Added `enforce_nonce` parameter for message sending. " +"([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" +msgstr "" + +#: ../../changelog.md:224 2608a06bd147422aa67260fc397061b3 +msgid "" +"Added audit log support for voice channel status. " +"([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" +msgstr "" + +#: ../../changelog.md:229 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:232 3f5b3c8765174ac6aaefd7493e389482 +msgid "" +"Changed `ffmpeg` output suppression when recording voice channels. " +"([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" +msgstr "" + +#: ../../changelog.md:234 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:236 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:238 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:241 97745879546247a08a47059715774c5b +msgid "" +"Changed `DMChannel.recipients` to potentially be `None`. " +"([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" +msgstr "" + +#: ../../changelog.md:243 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:247 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:250 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:253 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:255 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:257 3bab78924e3d402698ce98a72ddc2c78 +msgid "" +"Replaced `orjson` features with `msgspec` in the codebase. " +"([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" +msgstr "" + +#: ../../changelog.md:259 ca59a473432d434ca872411f9c66003d +msgid "" +"`BridgeOption` must now be used for arguments in bridge commands. " +"([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" +msgstr "" + +#: ../../changelog.md:264 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:266 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:271 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:274 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:276 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:279 26359420acd84d13b7ec8078c585de73 +msgid "" +"Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. " +"([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" +msgstr "" + +#: ../../changelog.md:281 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:283 18befe9e39544595a7a2036d48d19470 +msgid "" +"Fixed boolean converter breaking for Bridge Commands. " +"([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" +msgstr "" + +#: ../../changelog.md:285 084a586848d74bfeb5f2ceba591293d0 +msgid "" +"Fixed bridge command options not working. ([#1999](https://github.com" +"/Pycord-Development/pycord/pull/1999))" +msgstr "" + +#: ../../changelog.md:287 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:289 a3a4c596689748fe814636d674727419 +msgid "" +"Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-" +"Development/pycord/pull/2029))" +msgstr "" + +#: ../../changelog.md:291 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:294 fae4d3fe283e4ea396db05e19418ce5d +msgid "" +"Fixed unloading of cogs with bridge commands. ([#2048](https://github.com" +"/Pycord-Development/pycord/pull/2048))" +msgstr "" + +#: ../../changelog.md:296 eaf24d26663f4e6380db8ad8f0172cbe +msgid "" +"Fixed the `individual` slash command synchronization method. " +"([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" +msgstr "" + +#: ../../changelog.md:298 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:300 47c28724914e4fc9a18709531f47c88d +msgid "" +"Fixed major `TypeError` when an `AuditLogEntry` has no user. " +"([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" +msgstr "" + +#: ../../changelog.md:302 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:304 a148a83edd1f4f7b845a87b1a987c516 +msgid "" +"Fixed `before_invoke` not being run for `SlashCommandGroup`. " +"([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" +msgstr "" + +#: ../../changelog.md:306 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:308 1770b0d4e2994906acfa30119c7eb482 +msgid "" +"Fixed `before_invoke` being run twice for slash subcommands. " +"([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" +msgstr "" + +#: ../../changelog.md:310 df13f489e5fa4cc48904626e021c027d +msgid "" +"Fixed `Guild._member_count` sometimes not being set. " +"([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" +msgstr "" + +#: ../../changelog.md:312 269b54a1fd2744a7866a615c72ace4a8 +msgid "" +"Fixed `Thread.applied_tags` not being updated. " +"([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" +msgstr "" + +#: ../../changelog.md:314 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:317 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:319 2b542989e4474b1497f08ac6f19f99ed +msgid "" +"Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. " +"([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" +msgstr "" + +#: ../../changelog.md:321 b5e55bb544e94272b3397bbc0e072ec3 +msgid "" +"Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com" +"/Pycord-Development/pycord/pull/2185))" +msgstr "" + +#: ../../changelog.md:323 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:326 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:328 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:330 c17344409e9f492a8fd6b8c55ed614aa +msgid "" +"Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. " +"([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" +msgstr "" + +#: ../../changelog.md:332 12ea4e48fc584a9c87ef676eeacfcd07 +msgid "" +"Fixed `ffmpeg` being terminated prematurely when piping audio stream. " +"([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" +msgstr "" + +#: ../../changelog.md:334 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:336 7327cd43427e488999e090c78cac0b79 +msgid "" +"Fixed `AttributeError` when running permission checks without the `bot` " +"scope. ([#2113](https://github.com/Pycord-" +"Development/pycord/issues/2113))" +msgstr "" + +#: ../../changelog.md:338 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:340 8f18e8d005b1496387f152f3df8662b7 +msgid "" +"Fixed offset-aware tasks causing `TypeError` when being prepared. " +"([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" +msgstr "" + +#: ../../changelog.md:342 d15ec1bf07934c9d86604965290c99bf +msgid "" +"Fixed `AttributeError` when serializing commands with `Annotated` type " +"hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" +msgstr "" + +#: ../../changelog.md:344 2eb6e57c0a364efd86ffa8096f540133 +msgid "" +"Fixed `Intents.all()` returning the wrong value. " +"([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" +msgstr "" + +#: ../../changelog.md:346 5b2283d5d5e640999855ad3042fc5e6b +msgid "" +"Fixed `AuditLogIterator` not respecting the `after` parameter. " +"([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" +msgstr "" + +#: ../../changelog.md:348 d3b786079fea46bc8786e6b5154c03ed +msgid "" +"Fixed `AttributeError` when failing to establish initial websocket " +"connection. ([#2301](https://github.com/Pycord-" +"Development/pycord/pull/2301))" +msgstr "" + +#: ../../changelog.md:350 b25e60c5a037415e80243abad7f9df8f +msgid "" +"Fixed `AttributeError` caused by `command.cog` being `MISSING`. " +"([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" +msgstr "" + +#: ../../changelog.md:352 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:354 17ed8177c40a476fb48f4d90f37837c7 +msgid "" +"Fixed `AttributeError` when comparing application commands with non-" +"command objects. ([#2299](https://github.com/Pycord-" +"Development/pycord/issues/2299))" +msgstr "" + +#: ../../changelog.md:356 5114e2e8307349088415bbbee6af60e4 +msgid "" +"Fixed `AttributeError` when copying groups on startup. " +"([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" +msgstr "" + +#: ../../changelog.md:358 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:361 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:363 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:365 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:367 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:370 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:372 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:374 8ef80de7fad747f88bcdb50c5d39b51b +msgid "" +"Fixed enum to support stringified annotations. " +"([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" +msgstr "" + +#: ../../changelog.md:377 b4456318b5c84fd28244fb8d7f496360 +msgid "[2.4.1] - 2023-03-20" +msgstr "" + +#: ../../changelog.md:381 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:387 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:389 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:392 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:396 c101984320c34ce99992f9fe847e0e88 +msgid "[2.4.0] - 2023-02-10" +msgstr "" + +#: ../../changelog.md:400 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:403 7fd8831246324c0ba80b842014371a93 +msgid "" +"Added missing `image` parameter to `Guild.create_scheduled_event()` " +"method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" +msgstr "" + +#: ../../changelog.md:405 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:409 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:413 f5ee939eced64359a65e9e63f4c50556 +msgid "" +"Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-" +"Development/pycord/pull/1859))" +msgstr "" + +#: ../../changelog.md:415 ee535bdbc1cd4d558c6fa469a5b0d528 +msgid "" +"Added new `suppress_notifications` to `MessageFlags`. " +"([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" +msgstr "" + +#: ../../changelog.md:417 fa69515bb7074d55a6b5abe0177aac95 +msgid "" +"Added GIF sticker format type to the `StickerFormatType` enum. " +"([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" +msgstr "" + +#: ../../changelog.md:419 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:422 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:427 571ca9ff303e4bd994e1179a0cadb5b3 +msgid "" +"Changed `EmbeddedActivity` values to update accordingly with the new " +"activities. ([#1859](https://github.com/Pycord-" +"Development/pycord/pull/1859))" +msgstr "" + +#: ../../changelog.md:429 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:432 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:437 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:441 8818ab33e8604db2877b20c041af6723 +msgid "" +"Fixed bridge groups missing the `parent` attribute. " +"([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" +msgstr "" + +#: ../../changelog.md:443 9fe0dfdfa63e4ad4b9c4e4043aef28b3 +msgid "" +"Fixed issues with creating auto moderation rules. " +"([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" +msgstr "" + +#: ../../changelog.md:446 ea5b04755aae4a53a625348b5d5f945d +msgid "[2.3.3] - 2023-02-10" +msgstr "" + +#: ../../changelog.md:448 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:451 aeae11c1ec9e4f4ca20b998880bc4e5b +msgid "[2.3.2] - 2022-12-03" +msgstr "" + +#: ../../changelog.md:455 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:457 7b22f35de99640918b24cf129a8708a1 +msgid "" +"Fixed an `AttributeError` in select relating to the select type. " +"([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" +msgstr "" + +#: ../../changelog.md:459 b940bd229d2b4e6891eec2561e8e815c +msgid "" +"Fixed `Thread.applied_tags` always returning an empty list. " +"([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" +msgstr "" + +#: ../../changelog.md:462 1b92099482524c32940e7b2962f78c68 +msgid "[2.3.1] - 2022-11-27" +msgstr "" + +#: ../../changelog.md:466 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:469 eeb4225156bc403cb9430c14142f0030 +msgid "[2.3.0] - 2022-11-23" +msgstr "" + +#: ../../changelog.md:473 1f69a42547d7413d81ac3be425763eca +msgid "" +"New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com" +"/Pycord-Development/pycord/pull/1676))" +msgstr "" + +#: ../../changelog.md:475 faba5859b8964373ba18f34a5830b58a +msgid "" +"Python 3.11 support. ([#1680](https://github.com/Pycord-" +"Development/pycord/pull/1680))" +msgstr "" + +#: ../../changelog.md:476 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:479 99a675fe67cf47bd8552026dcb0d7680 +msgid "" +"Added support for age-restricted (NSFW) commands. " +"([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" +msgstr "" + +#: ../../changelog.md:481 ee8b90ba67724d46a3efd5335b0a029a +msgid "" +"New flags: `PublicUserFlags.active_developer` & " +"`ApplicationFlags.active`. ([#1776](https://github.com/Pycord-" +"Development/pycord/pull/1776))" +msgstr "" + +#: ../../changelog.md:483 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:485 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:487 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:489 2a37ee55e00e4e68b43bcf62c0b6c16b +msgid "" +"Updated `Guild.features` to include new and previously missing features. " +"([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" +msgstr "" + +#: ../../changelog.md:494 b96a634b3523470b9c6321bfe1d0d386 +msgid "" +"Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-" +"Development/pycord/pull/1695))" +msgstr "" + +#: ../../changelog.md:496 cc90297f0d5b47c7b04fcc3561b2ee44 +msgid "" +"Fix audit log overwrite type always resulting in `None`. " +"([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" +msgstr "" + +#: ../../changelog.md:498 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:504 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:507 7421d3fe662f4595af3381037136c502 +msgid "" +"`get_application_command()` now supports retrieving subcommands and " +"subcommand groups. ([#1678](https://github.com/Pycord-" +"Development/pycord/pull/1678))" +msgstr "" + +#: ../../changelog.md:513 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:516 a11bd7aede7844c6b417faeae902549d +msgid "[2.2.2] - 2022-10-05" +msgstr "" + +#: ../../changelog.md:520 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:524 804d49d35a1a4950bb1844cb14422c04 +msgid "[2.2.1] - 2022-10-05" +msgstr "" + +#: ../../changelog.md:528 96fc9a6acc3d412eb0e4fe8e93e6bce4 +msgid "" +"New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com" +"/Pycord-Development/pycord/pull/1672))" +msgstr "" + +#: ../../changelog.md:533 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:535 cdff853f73034e329f46051f2eee14d5 +msgid "" +"Fixed broken `cog` and `parent` attributes on commands in cogs. " +"([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" +msgstr "" + +#: ../../changelog.md:537 6e43909d03324ff994e8e0c5521b4ab8 +msgid "" +"Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com" +"/Pycord-Development/pycord/pull/1672))" +msgstr "" + +#: ../../changelog.md:540 7c216775f43c4a4283eada7e4c5566be +msgid "[2.2.0] - 2022-10-02" +msgstr "" + +#: ../../changelog.md:544 887646ff61cc484c8fb5a1b77f4705b3 +msgid "" +"New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-" +"Development/pycord/pull/1613))" +msgstr "" + +#: ../../changelog.md:546 1cab4dd437fc47059e14c6622b309200 +msgid "" +"`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com" +"/Pycord-Development/pycord/pull/1587))" +msgstr "" + +#: ../../changelog.md:548 628dc16b78d7462d9e752a6fd5c34f0d +msgid "" +"`proxy` and `proxy_auth` params to many Webhook-related methods. " +"([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" +msgstr "" + +#: ../../changelog.md:550 62fc2f7a9b7647efb0eaeabe6e18b131 +msgid "" +"`delete_message_seconds` parameter in ban methods. " +"([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" +msgstr "" + +#: ../../changelog.md:552 86674d77e2244a8f9a2273474845bc45 +msgid "" +"New `View.get_item()` method. ([#1659](https://github.com/Pycord-" +"Development/pycord/pull/1659))" +msgstr "" + +#: ../../changelog.md:554 eaa5c0bba1a24094995e8bb0a52b7ca0 +msgid "" +"Permissions support for bridge commands. ([#1642](https://github.com" +"/Pycord-Development/pycord/pull/1642))" +msgstr "" + +#: ../../changelog.md:556 f3da627f546c4aebadcf3322597750da +msgid "" +"New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-" +"Development/pycord/pull/1642))" +msgstr "" + +#: ../../changelog.md:558 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:560 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:564 5b535d4b52244097b05ec474ea2121c6 +msgid "Deprecated" +msgstr "" + +#: ../../changelog.md:566 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:569 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:576 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:579 e24fad332ee74561882cb0fe5683d373 +msgid "" +"Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-" +"Development/pycord/pull/1624))" +msgstr "" + +#: ../../changelog.md:581 1658154957934f93aea580480a93f06d +msgid "" +"Removed unnecessary instance check in autocomplete. " +"([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" +msgstr "" + +#: ../../changelog.md:583 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:586 2dd2c8f954934bb593bf96a65aaf49ce +msgid "[2.1.3] - 2022-09-06" +msgstr "" + +#: ../../changelog.md:590 f97d21f188914b99a02eddf404a430d9 +msgid "" +"Fix TypeError in `process_application_commands`. " +"([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" +msgstr "" + +#: ../../changelog.md:593 20f3c230725b4f879eaf13fe8fab8861 +msgid "[2.1.2] - 2022-09-06" +msgstr "" + +#: ../../changelog.md:597 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:601 439fb1afd83545f8b5d955600ad11510 +msgid "[2.1.1] - 2022-08-25" +msgstr "" + +#: ../../changelog.md:605 e74d531343704a3faafa44b907a76e3f +msgid "" +"Bridge command detection in cogs. ([#1592](https://github.com/Pycord-" +"Development/pycord/pull/1592))" +msgstr "" + +#: ../../changelog.md:608 d08ad13239c7439cbbd09aae4a16c23d +msgid "[2.1.0] - 2022-08-25" +msgstr "" + +#: ../../changelog.md:612 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:614 59b42b5316384e81b6ef5f2cfeee36ff +msgid "" +"A `disable_on_timeout` kwarg in the `View` constructor. " +"([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "" + +#: ../../changelog.md:616 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:619 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:622 5a44482095724e8c854fb0dac8a1b688 +msgid "" +"A new `fetch_application` method in the `Client` object. " +"([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" +msgstr "" + +#: ../../changelog.md:624 f384ae7bd39d4645a038b219cc5e3d41 +msgid "" +"New `on_check_failure` event method for the `View` class. " +"([#799](https://github.com/Pycord-Development/pycord/pull/799))" +msgstr "" + +#: ../../changelog.md:626 84fd56364f2e426f8059ab543cf8fa9f +msgid "" +"A `set_mfa_required` method to `Guild`. ([#1552](https://github.com" +"/Pycord-Development/pycord/pull/1552))" +msgstr "" + +#: ../../changelog.md:628 116daae4f3be479d91f71c1dfb2e158e +msgid "" +"Support for command groups with bridge commands. " +"([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:630 aa264304900847509610971067c61d13 +msgid "" +"Support for `Attachment` type options for bridge commands. " +"([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:632 f3a1898c5fb94d22ad268c1b80c06956 +msgid "" +"`is_app` property for `BridgeContext` to better differentiate context " +"types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:634 6bbb2d7903f94ccf928e6d4a39d6181c +msgid "" +"Support for localization on bridge commands. ([#1496](https://github.com" +"/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:636 bf536e2d15b34745aa6202fefc7ecb86 +msgid "" +"A `filter_params` helper function in `discord.utils`. " +"([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" +msgstr "" + +#: ../../changelog.md:638 e9a5cb929d2a400996754846071ec5b6 +msgid "" +"Support for `InteractionMessage` via the `message` property of `View`. " +"([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" +msgstr "" + +#: ../../changelog.md:643 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:646 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:648 1656bec918854d6297b74bb1e35a904f +msgid "" +"`commands.has_permissions()` check now returns `True` in DM channels. " +"([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" +msgstr "" + +#: ../../changelog.md:653 a16756bd1a69469ab4a723abc6249124 +msgid "" +"Fix `VoiceChannel`/`CategoryChannel` data being invalidated on " +"`Option._invoke`. ([#1490](https://github.com/Pycord-" +"Development/pycord/pull/1490))" +msgstr "" + +#: ../../changelog.md:655 22c69d421a4e44b5a09e1885e5b1db36 +msgid "" +"Fix type issues in options.py ([#1473](https://github.com/Pycord-" +"Development/pycord/pull/1473))" +msgstr "" + +#: ../../changelog.md:657 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:659 c18c8cdfbd014c69bef54df5485b077e +msgid "" +"Large code/documentation cleanup & minor bug fixes. " +"([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" +msgstr "" + +#: ../../changelog.md:661 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:663 74ba25ff24a7407f928e6a503cd7731a +msgid "" +"Fix `load_extensions` parameters not being passed through correctly. " +"([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" +msgstr "" + +#: ../../changelog.md:665 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:668 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:670 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:672 203cde94f8b84494a4910014cfd9cb86 +msgid "" +"Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-" +"Development/pycord/pull/1550))" +msgstr "" + +#: ../../changelog.md:674 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:676 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:678 db74b72ec1cb4f2ca20c8ec590aecc57 +msgid "" +"Avoid unnecessary calls to `sync_commands` during runtime. " +"([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" +msgstr "" + +#: ../../changelog.md:680 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:682 e8f97a297155469dad5bf1c0065f7248 +msgid "" +"Respect limit argument in `Guild.bans()`. ([#1573](https://github.com" +"/Pycord-Development/pycord/pull/1573))" +msgstr "" + +#: ../../changelog.md:684 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:687 6f46f75334964b6e803da39b08058134 +msgid "" +"Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. " +"([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" +msgstr "" + +#: ../../changelog.md:689 f8eb486c25734047862d39115603e056 +msgid "" +"Apply `cog_check` method to `ApplicationCommand` invocations. " +"([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" +msgstr "" + +#: ../../changelog.md:691 98838fe24b00482b90f84b4aeef38bdf +msgid "" +"Fix `Interaction.edit_original_message()` using `ConnectionState` instead" +" of `InteractionMessageState`. ([#1565](https://github.com/Pycord-" +"Development/pycord/pull/1565))" +msgstr "" + +#: ../../changelog.md:694 1a3f1825ed6940388193b1ef07b1dc76 +msgid "" +"Fix required parameters validation error. ([#1589](https://github.com" +"/Pycord-Development/pycord/pull/1589))" +msgstr "" + +#: ../../changelog.md:697 ../../changelog.md:704 +#: 4b8d0071a17948a789b4a3850b4cfd3e +msgid "Security" +msgstr "" + +#: ../../changelog.md:699 595d6f7ff4074370b90bec1e9625132b +msgid "" +"Improved fix for application-based bots without the bot scope " +"([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" +msgstr "" + +#: ../../changelog.md:702 0cd65ab173c0451bb9ae1ba3fb40b232 +msgid "[2.0.1] - 2022-08-16" +msgstr "" + +#: ../../changelog.md:706 ee4dccbc90654cbcb8d0c05f33e124bd +msgid "" +"Fix for application-based bots without the bot scope " +"([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" +msgstr "" + +#: ../../changelog.md:709 97414cf074d2496da5acf484c69838a0 +msgid "[2.0.0] - 2022-07-08" +msgstr "" + +#: ../../changelog.md:713 f926a09ced2d481492984936a41f6dc7 +msgid "" +"New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-" +"Development/pycord/pull/1370))" +msgstr "" + +#: ../../changelog.md:715 1ecb7fa75dff41449dde4615b6e710bf +msgid "" +"New `invisible` kwarg to `defer()` method. ([#1379](https://github.com" +"/Pycord-Development/pycord/pull/1379))" +msgstr "" + +#: ../../changelog.md:717 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:719 825af1ddcde1480883171e981e1da9cb +msgid "" +"New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-" +"Development/pycord/pull/1440))" +msgstr "" + +#: ../../changelog.md:721 98bfc9d190a748579e55cb74c092cc50 +msgid "" +"A shortcut `jump_url` property to users. ([#1444](https://github.com" +"/Pycord-Development/pycord/pull/1444))" +msgstr "" + +#: ../../changelog.md:723 63e71264efce40bc9ac3f7f177759671 +msgid "" +"Ability for webhooks to create forum posts. ([#1405](https://github.com" +"/Pycord-Development/pycord/pull/1405))" +msgstr "" + +#: ../../changelog.md:725 583f0a83c644415fbd248eee5f5d8fc5 +msgid "" +"New `message` property to `View` ([#1446](https://github.com/Pycord-" +"Development/pycord/pull/1446))" +msgstr "" + +#: ../../changelog.md:727 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:729 d30d886bcbdc4227805bd6ddb03ba9ae +msgid "" +"New `thread` property to `Message`. ([#1447](https://github.com/Pycord-" +"Development/pycord/pull/1447))" +msgstr "" + +#: ../../changelog.md:731 eaf48b5278cf458da58e8d6c74d872d5 +msgid "" +"A `starting_message` property to `Thread`. ([#1447](https://github.com" +"/Pycord-Development/pycord/pull/1447))" +msgstr "" + +#: ../../changelog.md:733 618f1139d2854adb9498024de569eae4 +msgid "" +"An `app_permissions` property to `Interaction` and `ApplicationContext`. " +"([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" +msgstr "" + +#: ../../changelog.md:735 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:737 bcd876b3c5524167af08b9c49fc9461d +msgid "" +"Support for AutoMod ([#1316](https://github.com/Pycord-" +"Development/pycord/pull/1316))" +msgstr "" + +#: ../../changelog.md:738 8963ace1487b41d689eaed24f1cbf62f +msgid "" +"Support for `min_length` and `max_length` kwargs in `Option`. " +"([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" +msgstr "" + +#: ../../changelog.md:740 8768c70fc00d4e31b7a80d6b00075daa +msgid "" +"Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-" +"Development/pycord/pull/1434))" +msgstr "" + +#: ../../changelog.md:745 ee060919f00041db8b5be55cafb2c8c8 +msgid "" +"Updated to new sticker limit for premium guilds. " +"([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" +msgstr "" + +#: ../../changelog.md:747 dc5c99a601e643378a95fd67cc096a3a +msgid "" +"Replace deprecated endpoint in `HTTPClient.change_my_nickname`. " +"([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "" + +#: ../../changelog.md:749 8c2807db86ce44949802e774add43122 +msgid "" +"Updated deprecated IDENTIFY packet connection properties. " +"([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" +msgstr "" + +#: ../../changelog.md:754 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:759 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:761 c7e8ed3ea27249a3ba3139f4749fe67f +msgid "" +"Fix `repr(ScheduledEventLocation)` raising TypeError. " +"([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" +msgstr "" + +#: ../../changelog.md:763 138b4b66eaaa464cbd8b470b39dfe3cf +msgid "" +"Fix `repr(TextChannel)` raising AttributeError. " +"([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" +msgstr "" + +#: ../../changelog.md:765 83f10b99afb54627877654d2f7d13542 +msgid "" +"Fix application command validation. ([#1372](https://github.com/Pycord-" +"Development/pycord/pull/1372))" +msgstr "" + +#: ../../changelog.md:767 f5ed697972464eef896be8d20a91d41f +msgid "" +"Fix scheduled event `cover` property raising AttributeError. " +"([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" +msgstr "" + +#: ../../changelog.md:769 718f4fb72ad84abbb9e6433b4106c70a +msgid "" +"Fix `SlashCommandGroup` treating optional arguments as required. " +"([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" +msgstr "" + +#: ../../changelog.md:771 3af4499fd5724a2bbab36758855eefba +msgid "" +"Fix `remove_application_command` not always removing commands. " +"([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" +msgstr "" + +#: ../../changelog.md:773 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:775 879a1e7ca8194078b8b54e0d9399b4b4 +msgid "" +"Fix incorrect activities and permissions on `Interaction` and `Option` " +"objects. ([#1365](https://github.com/Pycord-" +"Development/pycord/pull/1365))" +msgstr "" + +#: ../../changelog.md:777 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:779 980b8f6131b547259c6e3243f776160f +msgid "" +"Use `PUT` instead of `POST` in `HTTPClient.join_thread`. " +"([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" +msgstr "" + +#: ../../changelog.md:781 1579cb6ca4374946ae9d2aa00c6a2a05 +msgid "" +"Fix enum options not setting `input_type` to a SlashCommandOptionType. " +"([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" +msgstr "" + +#: ../../changelog.md:783 1addb165c9c3437ca5dca418e2638d46 +msgid "" +"Fixed TypeError when using thread options. ([#1427](https://github.com" +"/Pycord-Development/pycord/pull/1427))" +msgstr "" + +#: ../../changelog.md:785 d4ea2324cedb4d729a6e016ed9914ed1 +msgid "" +"Allow voice channels in PartialMessage. ([#1441](https://github.com" +"/Pycord-Development/pycord/pull/1441))" +msgstr "" + +#: ../../changelog.md:787 d965df96de2444d2a3da4bac5f41fa32 +msgid "" +"Fixed `AuditLogAction.target_type` for application command permission " +"updates. ([#1445](https://github.com/Pycord-" +"Development/pycord/pull/1445))" +msgstr "" + +#: ../../changelog.md:789 a426447d83a0416b82a2ad38cf28f165 +msgid "" +"Fix bridge commands to ignore the ephemeral kwarg. " +"([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" +msgstr "" + +#: ../../changelog.md:791 8f82c1560e2a4beca1d49b51032693c7 +msgid "" +"Update `thread.members` on `thread.fetch_members`. " +"([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" +msgstr "" + +#: ../../changelog.md:793 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:795 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:798 dbcf3c4d21c14c479387995847602e95 +msgid "[2.0.0-rc.1] - 2022-05-17" +msgstr "" + +#: ../../changelog.md:802 71808897a05a4d3791bc6f9dac867d50 +msgid "" +"A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com" +"/Pycord-Development/pycord/pull/1245))" +msgstr "" + +#: ../../changelog.md:804 1666cc8af144493294f14e435b91e247 +msgid "" +"New `reason` kwarg to `Thread.delete_messages`. " +"([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" +msgstr "" + +#: ../../changelog.md:806 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:809 65fefed9ae734de68d3bf2484df13eee +msgid "" +"New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-" +"Development/pycord/pull/1258))" +msgstr "" + +#: ../../changelog.md:811 e51f6c5505f84ed69127a68178587f84 +msgid "" +"An `EmbedField` object. ([#1181](https://github.com/Pycord-" +"Development/pycord/pull/1181))" +msgstr "" + +#: ../../changelog.md:813 3b7406b62a0941a398ac7fdd33ea2a0b +msgid "" +"Option names and descriptions are now validated locally. " +"([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" +msgstr "" + +#: ../../changelog.md:815 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:818 6d7c1c2574e84c82aa22abf622baf28d +msgid "" +"Support providing option channel types as a list. " +"([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" +msgstr "" + +#: ../../changelog.md:820 e7e85506316f4046a79bf1bee7c0213e +msgid "" +"New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-" +"Development/pycord/pull/1282))" +msgstr "" + +#: ../../changelog.md:822 20413647edf3450886b175cd2f53edc2 +msgid "" +"ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-" +"Development/pycord/pull/1288))" +msgstr "" + +#: ../../changelog.md:824 d29d910018724595a72b329b086dae1b +msgid "" +"Implement `None` check for check_guilds. ([#1291](https://github.com" +"/Pycord-Development/pycord/pull/1291))" +msgstr "" + +#: ../../changelog.md:826 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:828 715f3642c43e4b818b36ac879254a1ad +msgid "" +"A new `files` parameter to `Page` object. ([#1300](https://github.com" +"/Pycord-Development/pycord/pull/1300))" +msgstr "" + +#: ../../changelog.md:830 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:833 a1b658522e74433b8248a8632c132c83 +msgid "" +"New `is_nsfw` attribute to voice channels. ([#1317](https://github.com" +"/Pycord-Development/pycord/pull/1317))" +msgstr "" + +#: ../../changelog.md:835 45b48efa33e2445ea77ca5d350cbc1f7 +msgid "" +"Support for Permissions v2. ([#1328](https://github.com/Pycord-" +"Development/pycord/pull/1328))" +msgstr "" + +#: ../../changelog.md:837 9201af3619a241128b9361d32485948e +msgid "" +"Allow using Enum to specify option choices. ([#1292](https://github.com" +"/Pycord-Development/pycord/pull/1292))" +msgstr "" + +#: ../../changelog.md:839 bd0157bc4b0f4b8f8628064afc16fae9 +msgid "" +"The `file` and `files` parameters to " +"`InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-" +"Development/pycord/pull/1340))" +msgstr "" + +#: ../../changelog.md:841 6e19fe31455347129e5a8bc95d7b3572 +msgid "" +"A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-" +"Development/pycord/pull/1348))" +msgstr "" + +#: ../../changelog.md:843 99861fea2ef74154a4150f91fa8eef16 +msgid "" +"Forum channels support. ([#1249](https://github.com/Pycord-" +"Development/pycord/pull/1249))" +msgstr "" + +#: ../../changelog.md:845 0a54f2b4c9764c26a62124a36810df1f +msgid "" +"Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-" +"Development/pycord/pull/1274))" +msgstr "" + +#: ../../changelog.md:847 99d5ef66098a46d3a923357f8a26c740 +msgid "" +"Support event covers for audit logs. ([#1355](https://github.com/Pycord-" +"Development/pycord/pull/1355))" +msgstr "" + +#: ../../changelog.md:852 3fc4ac26224f413589a65d539f172b72 +msgid "" +"Removed implicit defer call in `View`. ([#1260](https://github.com" +"/Pycord-Development/pycord/pull/1260))" +msgstr "" + +#: ../../changelog.md:854 c6ba3c12853545738f571c0366063c82 +msgid "" +"`Option` class and usage were rewritten. ([#1251](https://github.com" +"/Pycord-Development/pycord/pull/1251))" +msgstr "" + +#: ../../changelog.md:856 916c6e9e2e524421870ac2ad12af1c1b +msgid "" +"`description` argument of `PageGroup` is now optional. " +"([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" +msgstr "" + +#: ../../changelog.md:858 8d7dea175fb24794a355b13007c92e01 +msgid "" +"Allow `Modal.children` to be set on initialization. " +"([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" +msgstr "" + +#: ../../changelog.md:860 eb953d6d30db42809fb6a250571f29b1 +msgid "" +"Renamed `delete_exiting` to `delete_existing` (typo). " +"([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" +msgstr "" + +#: ../../changelog.md:865 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:867 6a79d4a32b634bd3a7b74c101fa54a7e +msgid "" +"Fix channel parsing in slash command invocations. " +"([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "" + +#: ../../changelog.md:869 05aa589e0a9a469d96f811423c1b3bd2 +msgid "" +"Make the channel `position` attribute optional. " +"([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" +msgstr "" + +#: ../../changelog.md:871 3da23a6d6d4b4324a36f0b33cc59f82e +msgid "" +"Fix `PaginatorMenu` to use interaction routes for updates. " +"([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" +msgstr "" + +#: ../../changelog.md:873 d463353b612449e89a9a7015a794e5e2 +msgid "" +"Fix `PartialMessage.edit()` behavior when `content` is `None`. " +"([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" +msgstr "" + +#: ../../changelog.md:875 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:877 7d105926ee684e439657e29d1a57156a +msgid "" +"Fix `process_application_commands` command not found fallback. " +"([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" +msgstr "" + +#: ../../changelog.md:879 54b42e8bc31145a9a8831d96c1c7a836 +msgid "" +"Fix interaction response race condition. ([#1039](https://github.com" +"/Pycord-Development/pycord/pull/1039))" +msgstr "" + +#: ../../changelog.md:881 5797d5a4023d458aa6eaefe95fdcbe70 +msgid "" +"Remove voice client when the bot disconnects. ([#1273](https://github.com" +"/Pycord-Development/pycord/pull/1273))" +msgstr "" + +#: ../../changelog.md:883 98b7cc4cbd3b4529bd64539cdc0166e7 +msgid "" +"Fix conversion exception in `ext.bridge`. ([#1250](https://github.com" +"/Pycord-Development/pycord/pull/1250))" +msgstr "" + +#: ../../changelog.md:885 89cd1c71990c439c8187661846e4817c +msgid "" +"`Context.me` returns ClientUser when guilds intent is absent. " +"([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" +msgstr "" + +#: ../../changelog.md:887 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:889 fec7f8bc5c1c40638b2c7541a613f3b3 +msgid "" +"Improved validation regex for command names & options. " +"([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" +msgstr "" + +#: ../../changelog.md:891 1b22b1b48af64ab082e28d5be38e9470 +msgid "" +"Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com" +"/Pycord-Development/pycord/pull/1323))" +msgstr "" + +#: ../../changelog.md:893 109809acf2d545559ad5bd7c1d9d668d +msgid "" +"Multiple fixes and enhancements for `PageGroup` handling. " +"([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" +msgstr "" + +#: ../../changelog.md:895 c648e6fc6f44425195f326fb578e61d3 +msgid "" +"Make `TextChannel._get_channel` async. ([#1358](https://github.com" +"/Pycord-Development/pycord/pull/1358))" +msgstr "" + +#: ../../changelog.md:898 7de5791d77fa4367bcc58a2b9db9f7dc +msgid "[2.0.0-beta.7] - 2022-04-09" +msgstr "" + +#: ../../changelog.md:902 681f7f806d614707ae86fcc2e8c3042e +msgid "" +"Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-" +"Development/pycord/pull/1240))" +msgstr "" + +#: ../../changelog.md:941 c3d9893dfd4c43e1af3405c2b96d7e8a +msgid "Older Versions" +msgstr "" + +#: ../../changelog.md:943 f2ab2347b52c49258384ff69cb70c6ce +msgid "" +"A changelog for versions prior to v2.0 can be found " +"[here](old_changelog.rst)." +msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/cogs.po b/docs/locales/en/LC_MESSAGES/cogs.po new file mode 100644 index 0000000000..542a97f9bf --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/cogs.po @@ -0,0 +1,118 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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/locales/en/LC_MESSAGES/discord.po b/docs/locales/en/LC_MESSAGES/discord.po new file mode 100644 index 0000000000..4988e12fc2 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/discord.po @@ -0,0 +1,206 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 138839594467417c9675ccdf255cc4bb +#: bb20d2b0e2524050ab13ce5fd4a482ca +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/locales/en/LC_MESSAGES/ext/bridge/api.po b/docs/locales/en/LC_MESSAGES/ext/bridge/api.po new file mode 100644 index 0000000000..a4355e1fdc --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/ext/bridge/api.po @@ -0,0 +1,782 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 "" + +#: 850dd85571d6439399b7f0a0340472e1 discord.ext.bridge.bot.Bot:1 of +msgid "" +"Represents a discord bot, with support for cross-compatibility between " +"command types." +msgstr "" + +#: 34f98446e5144990aba7a0cd2abf6a62 discord.ext.bridge.bot.Bot:3 of +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 08bff09c730c4b5bb565bdaf3e105965 +#: 0936a9c30a344f258129933949a2fe06 2712df298b134b468aa30aa758768e1d +#: 2893cea81e8f4c3c99c350ae184b88ad 3a31bead22ec46cfab167528f73388b2 +#: 3cf8dd9f30944cd5ada56237da8290df 3e6ba5715e114d6fae10fa8ce19898f4 +#: 485704f10e284a189c55eacd55ea3968 530632fafabb426d8c56d3caece3f7b2 +#: 5492abf2718b4206b9d9d7d5f287fca0 864d918f2bc34eba95e43108295e2471 +#: 95d1ec3d0f144201a711952e040146be a4305c757d594d6f932e4154fc97ffcb +#: bb06477aff3d4ac398c2b90dfc77b732 be224dfe5e9f4390b28f0c12baedd70e +#: c4851b106cef42399e6a64f61c78fd3e d414290a24964ae2827a233b80f9d820 +#: daf51d42250a4b68a63ce4a569ff39d8 ecc99c5f64b747e49d92d73c86da310a +#: fcee5fb1439849cb91efe93d9ca99a9e fe14b112db024067910f4c9edd3a2966 +msgid "Parameters" +msgstr "" + +#: 22b7c6d14796429fb28865fbed90ee9e +#: discord.ext.bridge.bot.BotBase.add_bridge_command:1 of +msgid "" +"Takes a :class:`.BridgeCommand` and adds both a slash and traditional " +"(prefix-based) version of the command to the bot." +msgstr "" + +#: d20cb8aae77c4788bf65f2a78f61b172 +#: discord.ext.bridge.bot.BotBase.bridge_command:1 of +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 a01549abab034ce9aada5ab30d72a4ca +msgid "Returns" +msgstr "" + +#: 81f3afc0052540ee82f717b2768752eb +#: discord.ext.bridge.bot.BotBase.bridge_command:4 of +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 145bd739c2fe4aff906e41e5bcc428ad +#: 59d0f08676f541b5b40d4eb3830146af 5ba572703a4e4af88ec233bfad6f0c14 +#: 648fa6421bf940e5b202bd6565384518 7f5fa723e8af44a78f11ee8eb2f6ff67 +#: c102617394d14eb786c58ca83d415312 cb3f7e3974f148e19e43b78db36e24e6 +#: e198af69a1d8498ea9d0efdb944c67b4 +msgid "Return type" +msgstr "" + +#: 7c4ef82e00da4b50a94fd04a73b7f9e9 +#: discord.ext.bridge.bot.BotBase.bridge_command:6 of +msgid "Callable[..., :class:`BridgeCommand`]" +msgstr "" + +#: 2c6205c46bcb426b9704199b6cc54bf4 cdfc2954c8984d69b6de2a61ed0884ff +#: discord.ext.bridge.bot.BotBase.bridge_group:1 +#: discord.ext.bridge.core.bridge_group:1 of +msgid "A decorator that is used to wrap a function as a bridge command group." +msgstr "" + +#: 707c2ec5657142f58d78b7c9667c251e +#: discord.ext.bridge.bot.BotBase.bridge_group:4 of +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 "" + +#: 642e409bd50148c39b57d779a5e53e72 discord.ext.bridge.bot.AutoShardedBot:1 of +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 e098ee37ebf04ac493756d6f20633bc4 +#: e899524679a1438fb1615fb8fe418aff ffa1a0bd33ce45888d7e9b6b0304db8a +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 "" + +#: 7f6eb99fd9284122b01c9373d31e4126 a0c6dbe8972d4ad4ae67079c14bf9e8d +#: discord.ext.bridge.core.BridgeCommand:1 +#: discord.ext.bridge.core.BridgeCommandGroup:1 of +msgid "Compatibility class between prefixed-based commands and slash commands." +msgstr "" + +#: 3ed668f86ee448458bf66c209f08687c discord.ext.bridge.core.BridgeCommand:4 +#: discord.ext.bridge.core.BridgeCommandGroup:4 +#: f096041bd94348b8809ae058ce510c72 of +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 "" + +#: 200935417b504aaebb24dd1a99bfcaa4 discord.ext.bridge.core.BridgeCommand:7 of +msgid "Parent of the BridgeCommand." +msgstr "" + +#: 484e0bd2743e4f18a5f09ffcb1c749d9 7f6dd7f8a2ee460b99a72804e8aea788 +#: discord.ext.bridge.core.BridgeCommand:10 +#: discord.ext.bridge.core.BridgeCommandGroup:8 +#: discord.ext.bridge.core.BridgeCommandGroup.command:4 +#: discord.ext.bridge.core.bridge_command:4 f0f21d359a4a48ea86df915710a12562 +#: f9f0d50c11aa402ea2a874490f653e3b of +msgid "" +"Keyword arguments that are directly passed to the respective command " +"constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" +msgstr "" + +#: discord.ext.bridge.core.BridgeCommand:15 f37ea5004f7d46b79174fffb4bbe6dfb of +msgid "The slash command version of this bridge command." +msgstr "" + +#: 0dcaa4de42d7417ab675d15d95c0545e 3233f6d67e434cb4930d286b1cedbf93 +#: 530c706f8f2d4cde86d4b9959a708cf9 695ca16e39234b53a145ba1a621e6ef6 +#: c199030b71784af6aa7369b62ea3c70a discord.ext.bridge.core.BridgeCommand +#: discord.ext.bridge.core.BridgeCommandGroup fcd3136ef9a54e679fb18bae06554cee +#: of +msgid "type" +msgstr "" + +#: cbc6f859d39248e7a83d97cd457b250e discord.ext.bridge.core.BridgeCommand:17 of +msgid ":class:`.BridgeSlashCommand`" +msgstr "" + +#: 2f51e8a9edc4443f9d679a119e619cf5 discord.ext.bridge.core.BridgeCommand:21 of +msgid "The prefix-based version of this bridge command." +msgstr "" + +#: discord.ext.bridge.core.BridgeCommand:23 e63578c4dc7f46c89c6203e32b68347d of +msgid ":class:`.BridgeExtCommand`" +msgstr "" + +#: 191eaf3d235142118f52b1abb1b5cb13 +#: discord.ext.bridge.BridgeCommand.name_localizations:1 of +msgid "" +"Returns name_localizations from :attr:`slash_variant` You can edit/set " +"name_localizations directly with .. code-block:: python3" +msgstr "" + +#: 201f3f3932184f08a7790734fe0c0df9 +#: discord.ext.bridge.BridgeCommand.name_localizations:4 of +msgid "" +"bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale" +" # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": " +"...}" +msgstr "" + +#: 9000d83f46db48c88492fd4b3d99c08b +#: discord.ext.bridge.BridgeCommand.description_localizations:1 of +msgid "" +"Returns description_localizations from :attr:`slash_variant` You can " +"edit/set description_localizations directly with .. code-block:: python3" +msgstr "" + +#: 664bc2c5a41e47f7b116b97ca69052f3 +#: discord.ext.bridge.BridgeCommand.description_localizations:4 of +msgid "" +"bridge_command.description_localizations[\"en-UK\"] = ... # or any other" +" locale # or bridge_command.description_localizations = {\"en-UK\": ..., " +"\"fr-FR\": ...}" +msgstr "" + +#: b3a675d4098741a9b1cae5c41f38c6e9 +#: discord.ext.bridge.core.BridgeCommand.add_to:1 of +msgid "" +"Adds the command to a bot. This method is inherited by " +":class:`.BridgeCommandGroup`." +msgstr "" + +#: ae52f8a5e5d4453bb3cbb37559232e97 +#: discord.ext.bridge.core.BridgeCommand.add_to:4 of +msgid "The bot to add the command to." +msgstr "" + +#: 89a3b017daba4d45b6db08bfd3046c9b 927e81b21d1f42ca92a240294c3af3ee +#: discord.ext.bridge.context.BridgeExtContext.delete:12 +#: discord.ext.bridge.core.BridgeCommand.add_to:7 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: c48326d91a0342ecb10271b42baf00ab +#: discord.ext.bridge.core.BridgeCommand.error:1 of +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "" + +#: discord.ext.bridge.core.BridgeCommand.error:3 +#: f6d650ad1c6f44ba94471825a2363aef of +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 "" + +#: df78c1bea8514032ad90b19418a581e1 +#: discord.ext.bridge.core.BridgeCommand.error:8 of +msgid "" +"This error handler takes two parameters, a :class:`.BridgeContext` and a " +":class:`~discord.DiscordException`." +msgstr "" + +#: 83b35fe23ddd442b8b4ed5835267be7e +#: discord.ext.bridge.core.BridgeCommand.error:12 of +msgid "The coroutine to register as the local error handler." +msgstr "" + +#: ../../ext/bridge/api.rst 2ed336ac83374dbab238cdfaae50a01b +#: 41965c0d21844dfa8e47f852e6d14b56 5bb2b8d65a0c4d5d93576c19239e7330 +#: a2b73e3775c045e7a5f824ee24cf0092 +msgid "Raises" +msgstr "" + +#: 6b619def53b84a94af6ad1abb1e294fe ad1c8992416b44389487ffb94fa63520 +#: bd351550f69a4824a31d1028f2f9d016 +#: discord.ext.bridge.core.BridgeCommand.after_invoke:13 +#: discord.ext.bridge.core.BridgeCommand.before_invoke:13 +#: discord.ext.bridge.core.BridgeCommand.error:15 of +msgid "The coroutine passed is not actually a coroutine." +msgstr "" + +#: 035eaa995b2348dcaab9e35ed861a5c1 +#: discord.ext.bridge.core.BridgeCommand.before_invoke:1 of +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "" + +#: bef6d6b4b0fb43fc923b5777b3bff7bc +#: discord.ext.bridge.core.BridgeCommand.before_invoke:3 of +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 "" + +#: 7d6d731c61084aeabd82697f41f21a56 +#: discord.ext.bridge.core.BridgeCommand.before_invoke:7 of +msgid "This pre-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "" + +#: 7e4e42913fa342cd92afead956d25c58 +#: discord.ext.bridge.core.BridgeCommand.before_invoke:10 of +msgid "The coroutine to register as the pre-invoke hook." +msgstr "" + +#: 6e32363e7d914b69b7f319b7f1472e4f +#: discord.ext.bridge.core.BridgeCommand.after_invoke:1 of +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "" + +#: 9d8cd8a28f2e47deb002d8312d3a351b +#: discord.ext.bridge.core.BridgeCommand.after_invoke:3 of +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 "" + +#: 94e3d86c469f48e9a68759fa1e7cf54d +#: discord.ext.bridge.core.BridgeCommand.after_invoke:7 of +msgid "This post-invoke hook takes a sole parameter, a :class:`.BridgeContext`." +msgstr "" + +#: 3721ef9b30b5455cb9d3e7201a173f6c +#: discord.ext.bridge.core.BridgeCommand.after_invoke:10 of +msgid "The coroutine to register as the post-invoke hook." +msgstr "" + +#: ../../ext/bridge/api.rst:92 cfe096223cd243a497dd1834b89a6210 +msgid "BridgeCommandGroup" +msgstr "" + +#: 0f525e459e0749eda68c2f757c2b4b7c +#: discord.ext.bridge.core.BridgeCommandGroup:13 of +msgid "The slash command version of this command group." +msgstr "" + +#: d5f80ea868be4479b31c15d7c145a257 +#: discord.ext.bridge.core.BridgeCommandGroup:15 of +msgid ":class:`.SlashCommandGroup`" +msgstr "" + +#: 6ee6e20458ca445b83f5a44bb94c21cd +#: discord.ext.bridge.core.BridgeCommandGroup:19 of +msgid "The prefix-based version of this command group." +msgstr "" + +#: 501cd7140e8f448bb10ec476988ea419 +#: discord.ext.bridge.core.BridgeCommandGroup:21 of +msgid ":class:`.ext.commands.Group`" +msgstr "" + +#: 0aaeec7bdf1f444392d736e0edaa40dd +#: discord.ext.bridge.core.BridgeCommandGroup:25 of +msgid "List of bridge commands in this group" +msgstr "" + +#: c5d8310ad9cf403f8de8dc56d6bf3c26 +#: discord.ext.bridge.core.BridgeCommandGroup:27 of +msgid "List[:class:`.BridgeCommand`]" +msgstr "" + +#: 6da69d8c508343b4862328abf6d1d42b +#: discord.ext.bridge.core.BridgeCommandGroup:31 of +msgid "If :func:`map_to` is used, the mapped slash command." +msgstr "" + +#: 3c0f50029ec14982b2c178a7a22b62de +#: discord.ext.bridge.core.BridgeCommandGroup:33 of +msgid "Optional[:class:`.SlashCommand`]" +msgstr "" + +#: 737188b67b894eaf9961484f4cd68c2b +#: discord.ext.bridge.core.BridgeCommandGroup.walk_commands:1 of +msgid "" +"An iterator that recursively walks through all the bridge group's " +"subcommands." +msgstr "" + +#: be375185d935402f9bece4e8479efc7d +#: discord.ext.bridge.core.BridgeCommandGroup.walk_commands of +msgid "Yields" +msgstr "" + +#: ab1ffcf146a34b59b7be85e9fc72e879 +#: discord.ext.bridge.core.BridgeCommandGroup.walk_commands:3 of +msgid ":class:`.BridgeCommand` -- A bridge command of this bridge group." +msgstr "" + +#: discord.ext.bridge.core.BridgeCommandGroup.walk_commands:6 +#: e2ad6ebfe5824570a21d38811de1a22e of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~collections.abc.Iterator\\`\\\\" +" " +"\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.bridge.core.BridgeCommand\\`\\]`" +msgstr "" + +#: a8e41674d62e47c884b4b94285c8c79e +#: discord.ext.bridge.core.BridgeCommandGroup.command:1 of +msgid "A decorator to register a function as a subcommand." +msgstr "" + +#: ../../ext/bridge/api.rst:100 85c6676b73cd4e3598474888a69220ee +msgid "Decorators" +msgstr "" + +#: 0ea58971f2c64f7384ea418f5e94e192 discord.ext.bridge.core.bridge_command:1 of +msgid "A decorator that is used to wrap a function as a bridge command." +msgstr "" + +#: cb885a3f5922444ca8d68724b2adb497 discord.ext.bridge.core.bridge_group:4 of +msgid "" +"Keyword arguments that are directly passed to the respective command " +"constructors (:class:`.SlashCommandGroup` and " +":class:`.ext.commands.Group`)." +msgstr "" + +#: 54e3f1a6164142ada5b4642e8008c3f2 discord.ext.bridge.core.map_to:1 of +msgid "" +"To be used with bridge command groups, map the main command to a slash " +"subcommand." +msgstr "" + +#: d21ac3819ede416f8f28497cd60b5369 discord.ext.bridge.core.map_to:4 of +msgid "The new name of the mapped command." +msgstr "" + +#: 192392e47e3f47bebb2f929f1f778892 discord.ext.bridge.core.map_to:7 of +msgid "The new description of the mapped command." +msgstr "" + +#: 09a8c314d2334ca2a33f0ccae64de705 discord.ext.bridge.core.map_to:11 of +msgid "Example" +msgstr "" + +#: d8cba8f60cac4e78b72ecefd5e198a09 discord.ext.bridge.core.map_to:23 of +msgid "Prefixed commands will not be affected, but slash commands will appear as:" +msgstr "" + +#: 8748247655d94525be995419809f53cc discord.ext.bridge.core.guild_only:1 of +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 "" + +#: 7e61ec9dd3b545c785883dd2349fb166 discord.ext.bridge.core.guild_only:4 of +msgid "" +"Basically a utility function that wraps both " +":func:`discord.ext.commands.guild_only` and " +":func:`discord.commands.guild_only`." +msgstr "" + +#: 96dc0b24c06542e580f588b6df02e7c8 discord.ext.bridge.core.is_nsfw:1 of +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 "" + +#: c8d25c4b9711421cb1eee1d8f1f6e7c3 discord.ext.bridge.core.is_nsfw:4 of +msgid "" +"Basically a utility function that wraps both " +":func:`discord.ext.commands.is_nsfw` and " +":func:`discord.commands.is_nsfw`." +msgstr "" + +#: 061033f4c75446c3a6b9fa17e864fc13 discord.ext.bridge.core.is_nsfw:8 of +msgid "" +"In DMs, the prefixed-based command will always run as the user's privacy " +"settings cannot be checked directly." +msgstr "" + +#: 24bf1747781640e4af98e4808495d17e discord.ext.bridge.core.has_permissions:1 +#: of +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 "" + +#: 36a8f1cc8cd048fda5579993cf4f1d0f discord.ext.bridge.core.has_permissions:5 +#: of +msgid "" +"Basically a utility function that wraps both " +":func:`discord.ext.commands.has_permissions` and " +":func:`discord.commands.default_permissions`." +msgstr "" + +#: 02a8d1d690944a72b8679c14f57ae747 discord.ext.bridge.core.has_permissions:9 +#: of +msgid "An argument list of permissions to check for." +msgstr "" + +#: ../../ext/bridge/api.rst:120 3d796982686f494da2668a0e0a9544d6 +msgid "Command Subclasses" +msgstr "" + +#: 68ab0eb1255f4b6dbc35bd39a029ff61 discord.ext.bridge.core.BridgeExtCommand:1 +#: of +msgid "" +"A subclass of :class:`.ext.commands.Command` that is used for bridge " +"commands." +msgstr "" + +#: discord.ext.bridge.core.BridgeExtGroup:1 f99dd00f0e1f43a484a58f999c68ca01 of +msgid "" +"A subclass of :class:`.ext.commands.Group` that is used for bridge " +"commands." +msgstr "" + +#: c12038ebec8d4aceae4cc60ed8ba17bb +#: discord.ext.bridge.core.BridgeSlashCommand:1 of +msgid "A subclass of :class:`.SlashCommand` that is used for bridge commands." +msgstr "" + +#: b0e79ad4368c482fadf8d443f9584918 discord.ext.bridge.core.BridgeSlashGroup:1 +#: of +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 "" + +#: 72208e8dc06d49b48ffb951c4a7c0dc5 discord.ext.bridge.context.BridgeContext:1 +#: of +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 "" + +#: a0c5063715dc4110a62fc98f24680696 discord.ext.bridge.context.BridgeContext:5 +#: of +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 "" + +#: f30c4ce6aa1b461f8f83a8c6f0b97652 of typing._overload_dummy:1 +msgid "Helper for @overload to raise when called." +msgstr "" + +#: 0ce390d55fbb4f518af7dbde2a8fc4b4 12f4cce4c9d24748b98e3746f8edba6a +#: 47958ab3fa804196bbed67e7d4128770 9cbe5a9cbe914b528ad81f23a4ad5481 +#: 9eeff2bc29d04f65a81322028a9e98bb de66e4aa5b244b38acf315ebadaa5346 +#: discord.ext.bridge.context.BridgeContext.defer:1 +#: discord.ext.bridge.context.BridgeContext.edit:1 +#: discord.ext.bridge.context.BridgeContext.reply:1 +#: discord.ext.bridge.context.BridgeContext.respond:1 +#: discord.ext.bridge.context.BridgeExtContext.delete:1 +#: discord.ext.bridge.core.BridgeOption.convert:1 of +msgid "|coro|" +msgstr "" + +#: d1ad409f80644b6994ba2e04cd0d70c6 +#: discord.ext.bridge.context.BridgeContext.respond:3 of +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 "" + +#: 21394f711ded49cdb6a23566b0a7cd53 d4ce5e66006147babe02bdf635472c9f +#: discord.ext.bridge.context.BridgeContext.reply:6 +#: discord.ext.bridge.context.BridgeContext.respond:8 of +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.BridgeContext.reply:3 +#: ecb38c12b5cb45f2b63ee4759b9a72ab of +msgid "Alias for :meth:`~.BridgeContext.respond`." +msgstr "" + +#: discord.ext.bridge.context.BridgeContext.defer:3 +#: e284edacef264148b98fd65cf5832a4f of +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 "" + +#: 6b331c393af24345a6dc904dd6177bd9 +#: discord.ext.bridge.context.BridgeContext.defer:10 of +msgid "" +"There is no ``trigger_typing`` alias for this method. ``trigger_typing`` " +"will always provide the same functionality across contexts." +msgstr "" + +#: 62c545f510f84f8090befb9f0a37c7b1 +#: discord.ext.bridge.context.BridgeContext.edit:3 of +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 "" + +#: 829993f931c34774b02a374bee1d885f +#: discord.ext.bridge.context.BridgeContext.edit:8 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.interactions.InteractionMessage\\`" +" \\| \\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr "" + +#: cc361c83e8314be5b9c5fcc6f9d9f97a discord.ext.bridge.BridgeContext.is_app:1 +#: of +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.BridgeApplicationContext:1 +#: edb2d387c93c49179b7615dd26d27b36 of +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 "" + +#: ac8e72c3de8f4997993a1a37cc9da2b8 +#: discord.ext.bridge.context.BridgeExtContext:1 of +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.BridgeExtContext.delete:3 +#: f87476695de442659103636aadd364ae of +msgid "Deletes the original response message, if it exists." +msgstr "" + +#: c61014534796459d833957ad39ce0cc2 +#: discord.ext.bridge.context.BridgeExtContext.delete:6 of +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "" + +#: bfea474cbf854303b371c49f389e86a6 +#: discord.ext.bridge.context.BridgeExtContext.delete:9 of +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 "" + +#: 545f31dcbb4e4ab0ac92bc0c8e7e6b47 discord.ext.bridge.core.BridgeOption:1 of +msgid "" +"A subclass of :class:`discord.Option` which represents a selectable slash" +" command option and a prefixed command argument for bridge commands." +msgstr "" + +#: 761f4405d509432f87a2ac1b2dabf7ed +#: discord.ext.bridge.core.BridgeOption.convert:3 of +msgid "The method to override to do conversion logic." +msgstr "" + +#: 5c1ade82f7f841f08a5dbb10b20be098 +#: discord.ext.bridge.core.BridgeOption.convert:5 of +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 "" + +#: 8bef3e5908644772b4ee25277a02cfe4 +#: discord.ext.bridge.core.BridgeOption.convert:10 of +msgid "The invocation context that the argument is being used in." +msgstr "" + +#: b947563417964b228a845d5f06eb65af +#: discord.ext.bridge.core.BridgeOption.convert:13 of +msgid "The argument that is being converted." +msgstr "" + +#: 93ae6d03448d48ce990b117e1505ec77 +#: discord.ext.bridge.core.BridgeOption.convert:16 of +msgid "A generic exception occurred when converting the argument." +msgstr "" + +#: 7854a83f22984d88ab55a993d5060ea2 +#: discord.ext.bridge.core.BridgeOption.convert:17 of +msgid "The converter failed to convert the argument." +msgstr "" + +#: 2fb1f6d9385a42efa294143acd847528 +#: discord.ext.bridge.core.BridgeOption.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/ext/bridge/index.po b/docs/locales/en/LC_MESSAGES/ext/bridge/index.po new file mode 100644 index 0000000000..cd205b3ebb --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/ext/bridge/index.po @@ -0,0 +1,38 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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/locales/en/LC_MESSAGES/ext/commands/api.po b/docs/locales/en/LC_MESSAGES/ext/commands/api.po new file mode 100644 index 0000000000..27a1b1c51c --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,8248 @@ +# 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 , 2024. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Pycord 0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-08-12 14:51+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 "" + +#: b469b90375a14a8b986f7b1b8a67a72d discord.ext.commands.bot.Bot:1 of +msgid "Represents a discord bot." +msgstr "" + +#: 4d17f20fad654fb4babd30e58d852b6c discord.ext.commands.bot.Bot:3 of +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 "" + +#: 7d6d6af71a314aceb2ec965318f05bc3 discord.ext.commands.bot.Bot:7 of +msgid "" +"This class also subclasses :class:`.GroupMixin` to provide the " +"functionality to manage commands." +msgstr "" + +#: 11f3decf6af545119f242d17e4ea02d9 discord.ext.commands.bot.Bot:12 of +msgid "" +"Using prefixed commands requires :attr:`discord.Intents.message_content` " +"to be enabled." +msgstr "" + +#: 1197743250b64d25b9534197e3b19dd9 discord.ext.commands.bot.Bot:16 of +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.Bot:24 fd93e34dd8834b20bc344422cf70e68a of +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 "" + +#: 78f9a5eccd1e4f9eb8008ffe838f1c23 discord.ext.commands.bot.Bot:29 of +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 "" + +#: b786a1a7cee643dabc413b882de33d09 discord.ext.commands.bot.Bot:37 of +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 "" + +#: c98aa001a62745c3a90ffa2e14f5a30a discord.ext.commands.bot.Bot:47 of +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 "" + +#: 108b348c252b4fc789b680c4989870da 1448a02e23c546f4aa4a5072438e16fb +#: 49345f7753d447cf9094bb2cdecd0929 54a780ec9c5b4270b61cb1c40f28ae63 +#: 6704eed5f747450d8dfdeaeec60cbbd4 6d8c11bb47b2404baadf295e73360b7c +#: 723b2bd90f97499ba5dc2f350d048982 8ea34deeeeef47bea5ed8bf17d465dd5 +#: 99c61ff23a9f43c1a74a3608cf5bc810 b010c0c3b0fa454a90311a3446f9c49b +#: bb7a8a01292b449d92d4b82befbce7c0 c68d85257a5e4af6bd219a6159648c77 +#: d6182d5081b04a73b45cdab6770e7195 de6c28dbc55944cba7b85d7aa7fcbd63 +#: discord.cog.CogMeta discord.ext.commands.Bot.store_url +#: discord.ext.commands.bot.Bot discord.ext.commands.context.Context +#: discord.ext.commands.converter.clean_content +#: discord.ext.commands.cooldowns.Cooldown discord.ext.commands.core.Command +#: discord.ext.commands.core.Group discord.ext.commands.core.GroupMixin +#: discord.ext.commands.errors.BadBoolArgument +#: discord.ext.commands.errors.BadColourArgument +#: discord.ext.commands.errors.BadFlagArgument +#: discord.ext.commands.errors.BadLiteralArgument +#: discord.ext.commands.errors.BadUnionArgument +#: discord.ext.commands.errors.BotMissingAnyRole +#: discord.ext.commands.errors.BotMissingPermissions +#: discord.ext.commands.errors.BotMissingRole +#: discord.ext.commands.errors.ChannelNotFound +#: discord.ext.commands.errors.ChannelNotReadable +#: discord.ext.commands.errors.CheckAnyFailure +#: discord.ext.commands.errors.CommandInvokeError +#: discord.ext.commands.errors.CommandOnCooldown +#: discord.ext.commands.errors.CommandRegistrationError +#: discord.ext.commands.errors.ConversionError +#: discord.ext.commands.errors.EmojiNotFound +#: discord.ext.commands.errors.ExpectedClosingQuoteError +#: discord.ext.commands.errors.GuildNotFound +#: discord.ext.commands.errors.GuildStickerNotFound +#: discord.ext.commands.errors.InvalidEndOfQuotedStringError +#: discord.ext.commands.errors.MaxConcurrencyReached +#: discord.ext.commands.errors.MemberNotFound +#: discord.ext.commands.errors.MessageNotFound +#: discord.ext.commands.errors.MissingAnyRole +#: discord.ext.commands.errors.MissingFlagArgument +#: discord.ext.commands.errors.MissingPermissions +#: discord.ext.commands.errors.MissingRequiredArgument +#: discord.ext.commands.errors.MissingRequiredFlag +#: discord.ext.commands.errors.MissingRole +#: discord.ext.commands.errors.PartialEmojiConversionFailure +#: discord.ext.commands.errors.RoleNotFound +#: discord.ext.commands.errors.ThreadNotFound +#: discord.ext.commands.errors.TooManyFlags +#: discord.ext.commands.errors.UnexpectedQuoteError +#: discord.ext.commands.errors.UserNotFound discord.ext.commands.flags.Flag +#: discord.ext.commands.help.DefaultHelpCommand +#: discord.ext.commands.help.HelpCommand +#: discord.ext.commands.help.MinimalHelpCommand +#: discord.ext.commands.help.Paginator e0d28de49a3749f3948e2f460a2bc193 +#: e20543c5f090466484011ef7bf9cb1c9 e81e864ce6e74c53a1da0ea0da311d4b +#: ed2d367aaec844adb55fb898bbffac16 f147a85e13784370a831501af464a220 of +msgid "type" +msgstr "" + +#: 028c17ce435547ffae49bfe544b27746 276711c2a624419c9122929d2b0cdce4 +#: 8eca1380293a4e09adb2fe3078136d93 af2f1296905749558682b61c1f7363ae +#: discord.abc.Messageable.can_send:4 discord.bot.BotBase.is_owner:18 +#: discord.ext.commands.bot.Bot:51 discord.ext.commands.bot.Bot:69 +#: discord.ext.commands.context.Context:97 +#: discord.ext.commands.converter.clean_content:10 +#: discord.ext.commands.converter.clean_content:16 +#: discord.ext.commands.converter.clean_content:22 +#: discord.ext.commands.converter.clean_content:30 +#: discord.ext.commands.core.Command:49 discord.ext.commands.core.Command:86 +#: discord.ext.commands.core.Command:97 discord.ext.commands.core.Command:112 +#: discord.ext.commands.core.Command:121 discord.ext.commands.core.Command:129 +#: discord.ext.commands.core.Command.can_run:15 +#: discord.ext.commands.core.Command.is_on_cooldown:8 +#: discord.ext.commands.core.Group:18 discord.ext.commands.core.Group:25 +#: discord.ext.commands.core.GroupMixin:15 +#: discord.ext.commands.errors.CommandRegistrationError:18 +#: discord.ext.commands.flags.Flag:48 +#: discord.ext.commands.help.DefaultHelpCommand:18 +#: discord.ext.commands.help.HelpCommand:24 +#: discord.ext.commands.help.MinimalHelpCommand:9 +#: e56be582fd2f43eb94adef4955c9abc0 f9b93a380a284e189dc49fa48f348b9d of +msgid ":class:`bool`" +msgstr "" + +#: a5c952c8f62649ff98c795f04e8a9a37 discord.ext.commands.bot.Bot:55 of +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 "" + +#: 4e41dd2f6e474b968c86fe917f45284f discord.ext.commands.bot.Bot:59 of +msgid "Optional[:class:`.HelpCommand`]" +msgstr "" + +#: 7fa36f820e74436d9d890ec066f529db discord.ext.commands.bot.Bot:63 of +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 "" + +#: ../../ext/commands/api.rst 024cbb8ca69e4f12a98419f0192bae96 +#: 0376d1f3354048868ddfbd60acc27c3f 0aeb5e483b864662a2c92eebe6f73d99 +#: 0d64926e9bea4ccd8315b15fc036fc4a 102f67d17332471589053ba459ce6673 +#: 108b930bfc3f4ea6bd10cbaf29718687 1801dd137def4a99846c6e603f11be1f +#: 183496d428a34f7fa249dc88301f8431 188381798d224cf9b16d6f04651426d2 +#: 261e22506dc44e6484564a98a9ec4011 2a95458e7d8643c2ba53f80511c7fd97 +#: 31bcf378e11c4b7ab87c5037821c6bda 3750ee9874a649329aece5d76398dd35 +#: 37a692f9433046b2adc05d7f464911ab 3bc1086271a94765a82ebba9760e62e2 +#: 3dbc0c3d62ea4dd1817205318f484376 3f6507abd3334942a24533f0ac0406f9 +#: 440b7315543740c799170efcdd4c8f0e 49e2026dab654b5ca1a75e1ff2ccedc9 +#: 4d9ef44a16e243bbb935cce7d88c9077 4f4b773ec13f47708179d77079b9f6f2 +#: 558e0cf6198b497cbdb8d7560555cc5b 563e5536890b484ba2cbd0130f1fd9b2 +#: 57fb1651bc2740c48fe01620a1aed31e 5b1a773778e843eea6be076e295ca033 +#: 634b9b9ff2e24fdd91b9e3cd5b880d80 746d82f9ccbd40149262634a1f669cd2 +#: 775f4dd1f7fb4a1b9380f86b62fb8056 798fa21ae55f4282b4274758b25d4a83 +#: 812d0fca4d1549339fe98076a893d054 8ff0aa5a5bb6453aa531130a984ee93d +#: 942d8503487448198ea61a6b6e8305d0 9e65520881584d7680f63c943351a497 +#: c30960c78b1a46e2ab2904693f41c626 c6adc9c02e9a4ce6b1595ac2630bf3b0 +#: ca919f2f99a9425793383e7999f3af1c cd224adfd8e945a795b92654c0537e46 +#: d18243f289de4f3aa562ec83d726eb9c discord.abc.Messageable.history +#: discord.client.Client.entitlements discord.client.Client.fetch_guilds +#: discord.client.Client.wait_for e42e172090a0442eba2ac0f76facbcb5 +#: e532d59c72474f99b0c1ce7c2be358e2 e979a2cb64c144f08aaf2803550cb543 +#: f49495cd4b3f496f96f84ac8aa1f87e4 fb6332a28a1242f5bede4ea1b4001c1a of +msgid "Parameters" +msgstr "" + +#: baeb56b4ff064e6aa001a5ea8f1091bf discord.bot.BotBase.after_invoke:1 of +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 "" + +#: 32289ec6ecad415fbc1716cd28bb27a1 discord.bot.BotBase.after_invoke:9 of +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 "" + +#: 1f4414f19cb245d88c190908023d9ac8 25b3652c08d44d8393ec6f0711deff0e +#: discord.bot.BotBase.after_invoke:16 +#: discord.ext.commands.core.Command.after_invoke:12 of +msgid "The coroutine to register as the post-invoke hook." +msgstr "" + +#: ../../ext/commands/api.rst 00e100a89db949b995244b5d7ea5c0e0 +#: 0257c75535174994a013c404eed4de3d 081141882b5340b1a80561ca9111ae72 +#: 0aaa7547a84144fc98f8383462258a5d 0d7bea2ab09344bda3df67dcce3ccdeb +#: 1604d3c4c756481bb44124fe1ee7d611 227204ee62a54c638c2f8b9a91f21145 +#: 2650f6c238e74f72b4357fd0f3649d83 2d00ed43b7e24723b1c4d6801312bdce +#: 3a49aabda5f543efb7eef2d44dc0035e 3cf4e4f8fc3944a4b6b9f023fcb9e6e1 +#: 4518277f66b34d9ea6be92e3704fe30a 5f1237616e624c018af062a4d89f032c +#: 630f4288af604d4dbc8e4177a7f21fac 65b2a4bfdd9f4cc8b834d6d484ef0034 +#: 77dbba5eef11464da6e6d8561993d040 7ae1c7e45ccf4e3583a54ff7c5d20a74 +#: 85f893142dbc4e559193fbceb66e29f8 9deb4f77a61449abb51bd5c6b99a742f +#: b3afb24572e449de8c461403f5864f56 b49c0073b56340ec9b78c3636e71e85c +#: bd10f9d638b347be80279e61dbb6e087 db7ea1055966404583fc0cb0b2c4d74f +#: db8e0299f4d5440f9756cf07c76ff3d2 discord.abc.Messageable.history +#: discord.client.Client.entitlements discord.client.Client.fetch_guilds +#: discord.client.Client.wait_for e20c74a6209b4f6ba2e2c83d146ec9b9 +#: f601fd2e0ec94ce3a040c5466afdf390 fd1ed033251349feb65a4373c39a3112 +#: fd688e2c9468425f8650382857f2fe9a of +msgid "Raises" +msgstr "" + +#: 2cb6dbd6878a4f67b5005054d4f2340f 7c6f3f25c6eb4f608a6c686dd14b8cad +#: 9824f3f114b94bd7a2ba929d2afe59d4 d8c011efa50c47929c394609e419d093 +#: discord.bot.BotBase.after_invoke:19 discord.bot.BotBase.before_invoke:18 +#: discord.client.Client.event:13 +#: discord.ext.commands.core.Command.after_invoke:15 +#: discord.ext.commands.core.Command.before_invoke:15 +#: discord.ext.commands.core.Command.error:11 of +msgid "The coroutine passed is not actually a coroutine." +msgstr "" + +#: ce34b808e8804ba09dcdbdd5e43f819b discord.bot.BotBase.before_invoke:1 of +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 "" + +#: b71fb7de34de469fb20971cf6703e7c3 discord.bot.BotBase.before_invoke:9 of +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 "" + +#: 148cdbf1c8ed4fb8b616c3fd3c815e8d discord.bot.BotBase.before_invoke:15 +#: discord.ext.commands.core.Command.before_invoke:12 +#: ff1c1be395074d0bb084578f9648eed3 of +msgid "The coroutine to register as the pre-invoke hook." +msgstr "" + +#: 30a3ced0836b40dabba33773003dc2bd discord.bot.BotBase.check:1 of +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 "" + +#: 095a14ed7b60432a89818371f06efc90 discord.bot.BotBase.check:7 +#: discord.bot.BotBase.check_once:13 e5ff436d190a46d49314f31d064db949 of +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 "" + +#: 123407d31ff24dd999888399d8c675ba 2f0dc352e6954dfd855ac44d79767155 +#: 34a0e26f2a9f4d4dadfcba125b8d60d8 587e23d4697f4a4f94f960f265e6d788 +#: 6a9a9b160ee24cf4bfd1c63a997e9b6d 6e75c57ecbba458cbf5f3669a2924ab2 +#: d64565eb8c0f49fabf5ba8ebd0408016 discord.bot.BotBase.check:12 +#: discord.bot.BotBase.check_once:18 discord.client.Client.add_listener:15 +#: discord.client.Client.change_presence:16 discord.client.Client.event:16 +#: discord.client.Client.listen:11 discord.ext.commands.bot.when_mentioned_or:8 +#: discord.ext.commands.core.before_invoke:11 +#: discord.ext.commands.core.has_any_role:22 +#: discord.ext.commands.core.has_permissions:21 of +msgid "Example" +msgstr "" + +#: bf4f1977d6504fd5aa739b28dc3f3390 discord.bot.BotBase.check_once:1 of +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 "" + +#: acbeb7009e4c42fb9f128986d2327e71 discord.bot.BotBase.check_once:8 of +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 "" + +#: 61aae0b994f947b8a1853fda41ee0156 66c60cbf615a4450a0177eb8da660fe0 +#: discord.ext.commands.core.GroupMixin.command:1 of +msgid "" +"A shortcut decorator that invokes :func:`.command` and adds it to the " +"internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "" + +#: ../../ext/commands/api.rst 00966068ccb2456abc827d903250b689 +#: 21b6898829444dfdb4d7580f4b8e8d68 21f49b5974d544ffa30d029b89640d48 +#: 2fccd0b36926425aa78d42b9de69dd3f 3befc35084eb4ca69d1eae3463158861 +#: 3e6b25fcdbcd450dba91025338af56fb 40cd0e3b914a4a93ba95b1043d54fb57 +#: 5112301599a2461ab64d607e13e31a0c 581f5bcbba424fdf8b15bcd0b8dc5711 +#: 60a9892afb20420f98ee9221fe525e3e 63cdadc9d8aa4bfabd4c2ebf92943762 +#: 6913a08768f04878a8aae3849f2adbcb 6a9df72d6343436e8a5d6be1812ec065 +#: 6d76557cfaf549eb9bbc18d2a380ba49 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 98009cff8e324960b08e4c96846a22ab a7e906d78e604e498c0790b35695e171 +#: ad5f35b147574d30a0a839258b537e52 ae1200f79d0048e199cda9ddbb154333 +#: b6a1edaf8c42494ba5a9e62d8f3d7a0a d0d2c521ec0e46899e9c57882edc2983 +#: dfe2da6e0d804d72b6ac73f14963c8f2 discord.client.Client.wait_for +#: e7bb28eb3fa44f87a1b2e6c2b6fd300f ec9b0c7dd290456795aee20a50830ab1 +#: f4e36f6415c74fc8a5a3d6a231c6612a of +msgid "Returns" +msgstr "" + +#: 230236e4038a412abf293a0551512e31 +#: discord.ext.commands.core.GroupMixin.command:4 +#: f2b7b7f29eb2477e9258c08e49fb3a95 of +msgid "" +"A decorator that converts the provided method into a Command, adds it to " +"the bot, then returns it." +msgstr "" + +#: ../../ext/commands/api.rst 05d8c3f799b246739284dcbebc3d5739 +#: 09d2baeccc6b4e50adbfb853f2ddf881 0d5178bf994b44cf926dcc67b591b256 +#: 0e729c9e43cf4805bafb0bab9cc41897 10722e3a6685409b8ad039a73479cf66 +#: 123b5e5640914f0c8b4e3046caba82cd 13f3ffb767a74f8e9e764aa5a74a089a +#: 198305646666451196d990dc353636ba 33ed8c12d23741c6880f5a1831375fdf +#: 378dd7f9c2a64e0189299a60058beda8 3bcb056fb2e14a0fb068215205695ca6 +#: 3c4a3dc146ea4ead9cbc60eaff2e0088 3c9ab793d144498097bcfd76a5b53eac +#: 410437ffc3e04b40a383df209d8b16f3 45ea3bdc5022438c98fa1d50fa047386 +#: 4c5fd8c24f5b4ad28a6e1aae56787d18 53e94d21edab4737b42673ee97fdb49c +#: 55536d0434d84487aa4b5a9de46e940b 5636ea5552c544f5b61e1173aabbd424 +#: 5c50e685ec2041e597da308a07641a2c 631a53d5fb644b1dbbe93c6614a7c4f2 +#: 6cbefb296dbe48689f75969f7d94f823 747e9c0cdf2f4e9bb919c9dc427e2cc2 +#: 77e4fafb7b5f4845b9d186a0206d03e2 83f34d28e50d49638d87349d48d2369e +#: 83f96d62a16b4d479ab2c81dd1f136f5 844194587e244cf2b26a421da5ef2919 +#: 853376070e4546b989f18c50a2d9817b 8ad6c4547b91438cac30d78cc6b56789 +#: 9014a07ae4274d518383c0faced251e7 9d5d85b51d48428ba902d02b951bcffb +#: 9d778ca7356943e294915c2454341f4a aa13bf25f19340fc931e80e3daed2919 +#: b45285c94435415aa6a5322e8781abbd b46102d67b324fd8a3c1c4ae247fa8b3 +#: ba9d73b43cc14b0c8711857654f83f62 bf756d9820a94075834d33924e09e0e2 +#: c34bb5212e8843d885c20cbf2eb7d819 c9bc8a557c184c6d9f063626b67cc4cd +#: cc0179f647c24dc9a5287080d1c62d99 cd347a646db3434e925a1c1ee2047412 +#: dd1387feedaf4788a91e66c7120bb6bf df0dfaebe66b4cf0840971e222e3f126 +#: discord.abc.Messageable.history discord.client.Client.entitlements +#: discord.client.Client.fetch_guilds discord.client.Client.wait_for +#: e33db6d356e34de5945d286505e336fa efde8f14120541b68759499f509605ce +#: f4e246fdf7f2458baa9253a36a4045e0 fc5da63fdcca41d5a4742949f05235c9 of +msgid "Return type" +msgstr "" + +#: 0fac82441bda46b2857b66cc3d6fc1ab 44da924bb9b14d1e8a47ed370ae96009 +#: discord.ext.commands.core.GroupMixin.command:5 of +msgid "Callable[..., :class:`Command`]" +msgstr "" + +#: 25ca5d10c25a43ab825740b2fb2874e4 discord.client.Client.event:1 of +msgid "A decorator that registers an event to listen to." +msgstr "" + +#: 6ced4d446c2447a7b3f807c6868b6598 discord.client.Client.event:3 of +msgid "" +"You can find more info about the events on the :ref:`documentation below " +"`." +msgstr "" + +#: 58e8a1624b6b47c18cba15aa21150688 discord.client.Client.event:5 of +msgid "" +"The events must be a :ref:`coroutine `, if not, " +":exc:`TypeError` is raised." +msgstr "" + +#: bd32e11d29e74bd6b0f29d4020cbd2b9 discord.client.Client.event:9 of +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 "" + +#: 84c8e89006cc4917a75cff6dd4a7be7f discord.client.Client.event:25 of +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 "" + +#: 2d92005457764c1c8814201cecd4d501 b4303f71de864e7e98b980bd33ef7d84 +#: discord.ext.commands.core.GroupMixin.group:1 of +msgid "" +"A shortcut decorator that invokes :func:`.group` and adds it to the " +"internal command list via :meth:`~.GroupMixin.add_command`." +msgstr "" + +#: dc51e15c515241e1b7db18a0e7ddfb03 +#: discord.ext.commands.core.GroupMixin.group:4 +#: fd3c8f26e2e64cbc919c3e72c8975e46 of +msgid "" +"A decorator that converts the provided method into a Group, adds it to " +"the bot, then returns it." +msgstr "" + +#: cdd278087924410f940c85c590d6565c +#: discord.ext.commands.core.GroupMixin.group:5 +#: ffe6eb92b0224834b83f3814c9c5df5f of +msgid "Callable[..., :class:`Group`]" +msgstr "" + +#: 439a5983b3e34e9ab7954fa7b9042e7d discord.client.Client.listen:1 of +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 "" + +#: 2401d9783e7d4182918ca052d3e803b3 discord.client.Client.listen:5 of +msgid "The functions being listened to must be a :ref:`coroutine `." +msgstr "" + +#: 5e016ce55c294e638a73a097f5997136 discord.client.Client.listen:7 of +msgid "The function being listened to is not a coroutine." +msgstr "" + +#: 55915adcdcbc4935b1637428f964dfbb discord.client.Client.add_listener:11 +#: discord.client.Client.listen:8 e21be3ea4d0446efaa81b5acd1c28fdd of +msgid "The ``name`` (event name) does not start with 'on_'" +msgstr "" + +#: discord.client.Client.listen:29 f56714807dea497f8cc547c870355a4c of +msgid "Would print one and two in an unspecified order." +msgstr "" + +#: 65dec0b829f94471a23a32db5dbbedb1 discord.client.Client.listen:35 of +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.activity:1 ee245e9df3564ff19f3c70e347412642 of +msgid "The activity being used upon logging in." +msgstr "" + +#: 533f9a9e3798459b9be6f604992915b5 discord.ext.commands.Bot.activity:3 of +msgid "Optional[:class:`.BaseActivity`]" +msgstr "" + +#: 965049efae4b4ed685004789480c0f4d +#: discord.bot.ApplicationCommandMixin.add_application_command:1 of +msgid "Adds an :class:`.ApplicationCommand` into the internal list of commands." +msgstr "" + +#: a65c13c994b94c719a718b96e4e93521 +#: discord.bot.ApplicationCommandMixin.add_application_command:3 of +msgid "" +"This is usually not called, instead the :meth:`command` or other shortcut" +" decorators are used instead." +msgstr "" + +#: 20ea5167076042deabb0d765a6285277 38bbdb3e941a4af0b99ed4c90132372c +#: 3ec982cd2dee46bfbf4f020d2e46a906 +#: discord.bot.ApplicationCommandMixin.add_application_command:9 +#: discord.ext.commands.core.GroupMixin.add_command:10 of +msgid "The command to add." +msgstr "" + +#: 0017e074dd134426b570354c2504b7db 2955a6e82aa6427ea4129e090d9e0e1a +#: 5f1082c1e4e04874900a56140fe3d2cc 62d9613a1121411c960009687e8cc328 +#: 63f22bb531d541109902fec69dcfcbfc 7d0a457d06344339819fc176a73566c2 +#: 7dbaac0f1ff047cbad5ca6c2242d4dc4 7e4abed9dc9d44818dc910ae2bb0e976 +#: af9c896fbca541199d50ed6f9311ec05 bb305a7b77fe4ff9a8e70816d97d46ae +#: d2e6da7f13ae45be9d21b97011a05d14 db30e1b1f2df4726842b6713f2dc4d6c +#: discord.abc.Messageable.trigger_typing:8 +#: discord.bot.ApplicationCommandMixin.add_application_command:12 +#: discord.bot.ApplicationCommandMixin.invoke_application_command:10 +#: discord.bot.ApplicationCommandMixin.process_application_commands:26 +#: discord.bot.ApplicationCommandMixin.sync_commands:55 +#: discord.bot.BotBase.add_check:10 +#: discord.bot.BotBase.on_application_command_error:14 +#: discord.bot.BotBase.remove_check:12 discord.client.Client.add_listener:12 +#: discord.client.Client.add_view:20 +#: discord.client.Client.before_identify_hook:18 discord.client.Client.clear:8 +#: discord.client.Client.connect:18 discord.client.Client.delete_invite:16 +#: discord.client.Client.login:14 discord.client.Client.on_error:15 +#: discord.client.Client.remove_listener:10 discord.client.Client.run:28 +#: discord.client.Client.start:11 discord.client.Client.wait_until_ready:6 +#: discord.cog.CogMixin.add_cog:24 discord.cog.CogMixin.reload_extension:26 +#: discord.cog.CogMixin.unload_extension:27 +#: discord.ext.commands.bot.BotBase.close:6 +#: discord.ext.commands.bot.BotBase.invoke:10 +#: discord.ext.commands.bot.BotBase.on_command_error:14 +#: discord.ext.commands.bot.BotBase.process_commands:21 +#: discord.ext.commands.context.Context.reinvoke:27 +#: discord.ext.commands.cooldowns.Cooldown.reset:4 +#: discord.ext.commands.core.Command.add_check:10 +#: discord.ext.commands.core.Command.remove_check:11 +#: discord.ext.commands.core.Command.reset_cooldown:7 +#: discord.ext.commands.core.Command.update:9 +#: discord.ext.commands.core.GroupMixin.add_command:16 +#: e03239f359674e139b092cf33b2fc6b8 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: ca5a955495a14c66abb490d1030e0cd0 discord.bot.BotBase.add_check:1 of +msgid "" +"Adds a global check to the bot. This is the non-decorator interface to " +":meth:`.check` and :meth:`.check_once`." +msgstr "" + +#: 90a3747872a741d39fb20a4e62affa2c discord.bot.BotBase.add_check:5 of +msgid "The function that was used as a global check." +msgstr "" + +#: 6434458ce10745d6a4d2a97b9da6450d discord.bot.BotBase.add_check:7 of +msgid "If the function should only be called once per :meth:`.Bot.invoke` call." +msgstr "" + +#: 611c86c2efb64169bc1e0f178722f5f2 discord.cog.CogMixin.add_cog:1 of +msgid "Adds a \"cog\" to the bot." +msgstr "" + +#: 9dc96a6bb3b84a9d9242c5e1d477d2c4 discord.cog.CogMixin.add_cog:3 of +msgid "A cog is a class that has its own event listeners and commands." +msgstr "" + +#: 5a7030646e2649debc2d67517dff7e24 discord.cog.CogMixin.add_cog:7 of +msgid "" +":exc:`.ClientException` is raised when a cog with the same name is " +"already loaded." +msgstr "" + +#: discord.cog.CogMixin.add_cog:11 ff50388be9f44e8da25ecebf5b0a0b70 of +msgid "The cog to register to the bot." +msgstr "" + +#: da93463a84aa47688b8cdfcd1763e98c discord.cog.CogMixin.add_cog:14 of +msgid "" +"If a previously loaded cog with the same name should be ejected instead " +"of raising an error. .. versionadded:: 2.0" +msgstr "" + +#: 3076fac6693049dca8d5d9f83410f565 discord.cog.CogMixin.add_cog:14 of +msgid "" +"If a previously loaded cog with the same name should be ejected instead " +"of raising an error." +msgstr "" + +#: 3a5615d016404f33be6f8b2e7c7b8789 discord.cog.CogMixin.add_cog:20 of +msgid "The cog does not inherit from :class:`.Cog`." +msgstr "" + +#: 2ea43d18eb7849e2babe871b171547ab discord.cog.CogMixin.add_cog:21 of +msgid "An error happened during loading." +msgstr "" + +#: c3e4756dc3be4e039b57e146c8ee4b70 discord.cog.CogMixin.add_cog:22 of +msgid "A cog with the same name is already loaded." +msgstr "" + +#: 892271b7879440eba8bad74a82d01f99 d4bd8f7f9afe4890b60e3c7608d4a53d +#: discord.ext.commands.core.GroupMixin.add_command:1 of +msgid "Adds a :class:`.Command` into the internal list of commands." +msgstr "" + +#: 6e7cfb1130eb428fbd9da148ceb6848a db096b0658f14eb398b8c0901a0bb4a8 +#: discord.ext.commands.core.GroupMixin.add_command:3 of +msgid "" +"This is usually not called, instead the :meth:`~.GroupMixin.command` or " +":meth:`~.GroupMixin.group` shortcut decorators are used instead." +msgstr "" + +#: 881af903b3834288bf30777981226c3d d005cfa388ba4c9c93b28569e45a9895 +#: discord.ext.commands.core.GroupMixin.add_command:6 of +msgid "" +"Raise :exc:`.CommandRegistrationError` instead of generic " +":exc:`.ClientException`" +msgstr "" + +#: 4058311b664443489c2bdcf7ccdf0294 7c9098b1dbc6448dbaf83869211f25a2 +#: discord.ext.commands.core.GroupMixin.add_command:13 of +msgid "If the command or its alias is already registered by different command." +msgstr "" + +#: 0624e7fcbdab454e8a678d05ead1d15a 523abcff2f2e4510b53afb5e45c51c91 +#: discord.ext.commands.core.GroupMixin.add_command:14 of +msgid "If the command passed is not a subclass of :class:`.Command`." +msgstr "" + +#: 02bd817bbaf44c34a50afab9bf939469 discord.client.Client.add_listener:1 of +msgid "The non decorator alternative to :meth:`.listen`." +msgstr "" + +#: 034fe8fbfb664caba055dda25a8d01f2 discord.client.Client.add_listener:4 of +msgid "The function to call." +msgstr "" + +#: 4894173aaabd439d9e19b2422e82fb53 discord.client.Client.add_listener:7 of +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "" + +#: 88019ec42e9b4afe90bf593a2293878b discord.client.Client.add_listener:10 of +msgid "The ``func`` parameter is not a coroutine function." +msgstr "" + +#: d05412d810f4441fa9fc55ed14abaccb discord.client.Client.add_view:1 of +msgid "Registers a :class:`~discord.ui.View` for persistent listening." +msgstr "" + +#: 31f9b3425c8846d0bf9819c936651f8f discord.client.Client.add_view:3 of +msgid "" +"This method should be used for when a view is comprised of components " +"that last longer than the lifecycle of the program." +msgstr "" + +#: 9b1f1c7e6e204527b0b7f0e584cc5c50 discord.client.Client.add_view:9 of +msgid "The view to register for dispatching." +msgstr "" + +#: discord.client.Client.add_view:12 e571a3cbd785484d976fd3b2fd0a4cde of +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.client.Client.add_view:17 e785ad522f2841a0bae2684ff1da2749 of +msgid "A view was not passed." +msgstr "" + +#: 41cdd2c26f04437d9e50356565bbe005 discord.client.Client.add_view:18 of +msgid "" +"The view is not persistent. A persistent view has no timeout and all " +"their components have an explicitly provided ``custom_id``." +msgstr "" + +#: 01a7d56f6fc64da79e759f8199be445b discord.ext.commands.Bot.allowed_mentions:1 +#: of +msgid "The allowed mention configuration." +msgstr "" + +#: 4d61bc9673774eaf9ec7b47ed96bb05c +#: discord.bot.ApplicationCommandMixin.application_command:1 of +msgid "" +"A shortcut decorator that invokes :func:`command` and adds it to the " +"internal command list via :meth:`~.Bot.add_application_command`." +msgstr "" + +#: 2322bb50ae2547e7b1a75b809b816a29 +#: discord.bot.ApplicationCommandMixin.application_command:6 of +msgid "" +"A decorator that converts the provided method into an " +":class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "" + +#: discord.bot.ApplicationCommandMixin.application_command:8 +#: fa1dea0535a34d4f970b6c1933b766d6 of +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "" + +#: 3891c47a359a4c85b46a4ce0c7583dcf +#: discord.ext.commands.Bot.application_flags:1 of +msgid "The client's application flags." +msgstr "" + +#: b16cae8c17764094ab2a6221966688d1 discord.ext.commands.Bot.application_id:1 +#: of +msgid "The client's application ID." +msgstr "" + +#: 3805665860b74387aaf8deeb87f400fd discord.ext.commands.Bot.application_id:3 +#: of +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 "" + +#: 236578d5657f4b75a93140c452d6f243 25dea9a1072d49a4a52f17e137de72c3 +#: 40abc24f54c34f2298f5012fb5ee7aff 41de831c34ab4a10a10e0efcf817263c +#: 4221da88b8e04f5daa5831179d2c8102 52ecf1b64db9436094a380bfd867b180 +#: 5718794be4e14211ae9436403f12609e 5978a98a88184e328613785e29a04c93 +#: 5b000a6fdae3492da6ed60fb279a55dd 62c513a80a3c4ec5b566f2dfe95621cb +#: 649c19de56d047de904a5b185d87a42c 78993876a1f6444389ced7ccf1897b45 +#: 84206d2ae0324e83b7a28e37d5dc1140 8d5d8cf44a1143208772382e441a15f3 +#: a429f06c46d147308e50e9a00d3c0ebc b29f0f791885488596a5ff1ec37ba539 +#: b42983e9e7764522bb4f34f045ad1da5 d424f44f65dc4c50bc16b509389106d6 +#: d878c81f64ca41a3ba4b287fe6201669 discord.abc.Messageable.fetch_message:1 +#: discord.abc.Messageable.pins:1 discord.abc.Messageable.send:1 +#: discord.abc.Messageable.trigger_typing:1 +#: discord.bot.ApplicationCommandMixin.get_application_context:1 +#: discord.bot.ApplicationCommandMixin.get_autocomplete_context:1 +#: discord.bot.ApplicationCommandMixin.get_desynced_commands:1 +#: discord.bot.ApplicationCommandMixin.invoke_application_command:1 +#: discord.bot.ApplicationCommandMixin.process_application_commands:1 +#: discord.bot.ApplicationCommandMixin.register_command:1 +#: discord.bot.ApplicationCommandMixin.register_commands:1 +#: discord.bot.ApplicationCommandMixin.sync_commands:1 +#: discord.bot.BotBase.is_owner:1 +#: discord.bot.BotBase.on_application_command_error:1 +#: discord.client.Client.application_info:1 +#: discord.client.Client.before_identify_hook:1 +#: discord.client.Client.change_presence:1 discord.client.Client.connect:1 +#: discord.client.Client.create_dm:1 discord.client.Client.create_guild:1 +#: discord.client.Client.delete_invite:1 discord.client.Client.fetch_channel:1 +#: discord.client.Client.fetch_guild:1 discord.client.Client.fetch_invite:1 +#: discord.client.Client.fetch_premium_sticker_packs:1 +#: discord.client.Client.fetch_role_connection_metadata_records:1 +#: discord.client.Client.fetch_skus:1 +#: discord.client.Client.fetch_stage_instance:1 +#: discord.client.Client.fetch_sticker:1 discord.client.Client.fetch_template:1 +#: discord.client.Client.fetch_user:1 discord.client.Client.fetch_webhook:1 +#: discord.client.Client.fetch_widget:1 +#: discord.client.Client.get_or_fetch_user:1 discord.client.Client.login:1 +#: discord.client.Client.on_error:1 discord.client.Client.start:1 +#: discord.client.Client.update_role_connection_metadata_records:1 +#: discord.client.Client.wait_for:1 discord.client.Client.wait_until_ready:1 +#: discord.ext.commands.bot.BotBase.close:1 +#: discord.ext.commands.bot.BotBase.get_context:1 +#: discord.ext.commands.bot.BotBase.get_prefix:1 +#: discord.ext.commands.bot.BotBase.invoke:1 +#: discord.ext.commands.bot.BotBase.on_command_error:1 +#: discord.ext.commands.bot.BotBase.process_commands:1 +#: discord.ext.commands.context.Context.invoke:1 +#: discord.ext.commands.context.Context.reinvoke:1 +#: discord.ext.commands.context.Context.reply:1 +#: discord.ext.commands.context.Context.send_help:1 +#: discord.ext.commands.converter.CategoryChannelConverter.convert:1 +#: discord.ext.commands.converter.ColourConverter.convert:1 +#: discord.ext.commands.converter.Converter.convert:1 +#: discord.ext.commands.converter.EmojiConverter.convert:1 +#: discord.ext.commands.converter.ForumChannelConverter.convert:1 +#: discord.ext.commands.converter.GameConverter.convert:1 +#: discord.ext.commands.converter.GuildChannelConverter.convert:1 +#: discord.ext.commands.converter.GuildConverter.convert:1 +#: discord.ext.commands.converter.GuildStickerConverter.convert:1 +#: discord.ext.commands.converter.InviteConverter.convert:1 +#: discord.ext.commands.converter.MemberConverter.convert:1 +#: discord.ext.commands.converter.MessageConverter.convert:1 +#: discord.ext.commands.converter.ObjectConverter.convert:1 +#: discord.ext.commands.converter.PartialEmojiConverter.convert:1 +#: discord.ext.commands.converter.PartialMessageConverter.convert:1 +#: discord.ext.commands.converter.RoleConverter.convert:1 +#: discord.ext.commands.converter.StageChannelConverter.convert:1 +#: discord.ext.commands.converter.TextChannelConverter.convert:1 +#: discord.ext.commands.converter.ThreadConverter.convert:1 +#: discord.ext.commands.converter.UserConverter.convert:1 +#: discord.ext.commands.converter.VoiceChannelConverter.convert:1 +#: discord.ext.commands.converter.clean_content.convert:1 +#: discord.ext.commands.converter.run_converters:1 +#: discord.ext.commands.core.Command.__call__:1 +#: discord.ext.commands.core.Command.can_run:1 +#: discord.ext.commands.flags.FlagConverter.convert:1 +#: discord.ext.commands.help.HelpCommand.command_callback:1 +#: discord.ext.commands.help.HelpCommand.filter_commands:1 +#: discord.ext.commands.help.HelpCommand.on_help_command_error:1 +#: discord.ext.commands.help.HelpCommand.prepare_help_command:1 +#: discord.ext.commands.help.HelpCommand.send_bot_help:1 +#: discord.ext.commands.help.HelpCommand.send_cog_help:1 +#: discord.ext.commands.help.HelpCommand.send_command_help:1 +#: discord.ext.commands.help.HelpCommand.send_error_message:1 +#: discord.ext.commands.help.HelpCommand.send_group_help:1 +#: e3601a366188485199c64c569dddce15 e377492e6ddb4255aa4fe483b4e6eadb +#: eb09d3aeb7ee496982cd2147e719a780 ed13365273a643888369cf52b1e8fb1a +#: fe4bb802cda24bcca261d0efa60e2fc0 of +msgid "|coro|" +msgstr "" + +#: 58bce22f218c4d7e972f6d8603a932db discord.client.Client.application_info:3 of +msgid "Retrieves the bot's application information." +msgstr "" + +#: 20ac1c8e924e4a74bfc8271a895ac046 discord.client.Client.application_info:5 of +msgid "The bot's application information." +msgstr "" + +#: ddd2ee7b903d4405b001c528caddc533 discord.client.Client.application_info:6 of +msgid ":class:`.AppInfo`" +msgstr "" + +#: 4bebc8aa589942539aac4fc7cb39bcb0 discord.client.Client.application_info:8 of +msgid "Retrieving the information failed somehow." +msgstr "" + +#: 37dcfe79744144d6b82955792c13e62b +#: discord.client.Client.before_identify_hook:3 of +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 "" + +#: d04199f41dda4861a2bb97a9ceccc58a +#: discord.client.Client.before_identify_hook:7 of +msgid "The default implementation sleeps for 5 seconds." +msgstr "" + +#: 6ddc40ac88e94492a8be6d87f1e5473f +#: discord.client.Client.before_identify_hook:12 of +msgid "The shard ID that requested being IDENTIFY'd" +msgstr "" + +#: 968a4b1e18b74b5fbbaafcd5a53b8e19 +#: discord.client.Client.before_identify_hook:15 of +msgid "Whether this IDENTIFY is the first initial IDENTIFY." +msgstr "" + +#: discord.ext.commands.Bot.cached_messages:1 e212e868790742248ba3a8d76f5ea528 +#: of +msgid "Read-only list of messages the connected client has cached." +msgstr "" + +#: 1a5853c1b8704ad5b75e31c63d16a5fe discord.client.Client.change_presence:3 of +msgid "Changes the client's presence." +msgstr "" + +#: 51fcf3308e2d482c8ccfe51009f5ae62 discord.client.Client.change_presence:6 of +msgid "The activity being done. ``None`` if no currently active activity is done." +msgstr "" + +#: c6e5a0e37494498da3615b0e041001e2 discord.client.Client.change_presence:9 of +msgid "" +"Indicates what status to change to. If ``None``, then " +":attr:`.Status.online` is used." +msgstr "" + +#: 1b5a4b8162af4194b8d525d26a63f617 discord.client.Client.change_presence:13 of +msgid "If the ``activity`` parameter is not the proper type." +msgstr "" + +#: 8ce0e28322c74e469822ed7531e3c682 discord.client.Client.change_presence:22 of +msgid "Removed the ``afk`` keyword-only parameter." +msgstr "" + +#: discord.client.Client.clear:1 e22dd1f501464842b709455fd8d77a6d of +msgid "Clears the internal state of the bot." +msgstr "" + +#: 15885728217642229cd612c0fcb9525e discord.client.Client.clear:3 of +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 "" + +#: cbfb9a74a2ec448fa8ac94b59aac9515 discord.ext.commands.bot.BotBase.close:3 of +msgid "Closes the connection to Discord." +msgstr "" + +#: discord.ext.commands.Bot.cogs:1 ef290ef0d76a4205bca66cab42c47b0a of +msgid "A read-only mapping of cog name to cog." +msgstr "" + +#: 23309f092f064da6afced5088b16900c 585e5854876b422d856c9a7d7f4f3745 +#: discord.ext.commands.Bot.commands:1 discord.ext.commands.Group.commands:1 +#: discord.ext.commands.GroupMixin.commands:1 of +msgid "A unique set of commands without aliases that are registered." +msgstr "" + +#: 8e0bc55d2ece473b911a77a7184ef59c discord.client.Client.connect:3 of +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 "" + +#: 6d7f1882aea04a02a4ef6b80ced08594 discord.client.Client.connect:9 of +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 "" + +#: 669921a33c214d4aa713229f40eea540 discord.client.Client.connect:15 of +msgid "" +"The gateway to connect to Discord is not found. Usually if this is " +"thrown then there is a Discord API outage." +msgstr "" + +#: 61b4497757cd4290acbdefb487ebd4aa discord.client.Client.connect:16 of +msgid "The WebSocket connection has been terminated." +msgstr "" + +#: af3102965b034ed883227ac3904af51c discord.client.Client.create_dm:3 of +msgid "Creates a :class:`.DMChannel` with this user." +msgstr "" + +#: 84eb1de364fb4f44af43a334a3f0a7bc discord.client.Client.create_dm:5 of +msgid "" +"This should be rarely called, as this is done transparently for most " +"people." +msgstr "" + +#: 26efd0e745864817a629901f9d4274e0 discord.client.Client.create_dm:11 of +msgid "The user to create a DM with." +msgstr "" + +#: a5eed69dc19842e7be8ca4132ff21f2a discord.client.Client.create_dm:14 of +msgid "The channel that was created." +msgstr "" + +#: ca7c03d41e78401bb047c80cf470d632 discord.client.Client.create_dm:15 of +msgid ":class:`.DMChannel`" +msgstr "" + +#: 32894198e43c44e6be5d31d30af3a30d +#: discord.bot.ApplicationCommandMixin.create_group:1 of +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 "" + +#: c37bcf8a3fcc4623a52e5842e62a1bf5 +#: discord.bot.ApplicationCommandMixin.create_group:7 of +msgid "The name of the group to create." +msgstr "" + +#: 39b074dd62fe4a2c9593642d30d91cab 70182e1186984166914ebe5256fd2312 +#: discord.bot.ApplicationCommandMixin.create_group:10 +#: discord.bot.ApplicationCommandMixin.group:10 of +msgid "The description of the group to create." +msgstr "" + +#: 3daecf48b7c64c31b108f8dd881ff771 46500bc4b09146558d44dcee21047fca +#: discord.bot.ApplicationCommandMixin.create_group:13 +#: discord.bot.ApplicationCommandMixin.group:13 of +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 "" + +#: 3e5a4860a9d1483cb61b40ce198e5fee +#: discord.bot.ApplicationCommandMixin.create_group:17 of +msgid "Any additional keyword arguments to pass to :class:`.SlashCommandGroup`." +msgstr "" + +#: 7afd9a7e1abf445c9185ee1392202fd6 +#: discord.bot.ApplicationCommandMixin.create_group:19 +#: discord.bot.ApplicationCommandMixin.group:17 +#: e95710966abe488e8ce4970bd2f35160 of +msgid "The slash command group that was created." +msgstr "" + +#: 583248c24e104f60a8d7b44b63a93d8b discord.client.Client.create_guild:3 of +msgid "Creates a :class:`.Guild`." +msgstr "" + +#: 480ab82fc12b401f8b75d5ac50648a04 discord.client.Client.create_guild:5 of +msgid "Bot accounts in more than 10 guilds are not allowed to create guilds." +msgstr "" + +#: 751a75562aa647628af12ff17756d819 discord.client.Client.create_guild:8 of +msgid "The name of the guild." +msgstr "" + +#: 75d40bc85a17414a943100275453e7b5 discord.client.Client.create_guild:11 of +msgid "" +"The :term:`py:bytes-like object` representing the icon. See " +":meth:`.ClientUser.edit` for more details on what is expected." +msgstr "" + +#: 7ca63a3c7aca436ca90a0d584ad7a2bb discord.client.Client.create_guild:15 of +msgid "The code for a template to create the guild with. .. versionadded:: 1.4" +msgstr "" + +#: 46ee421067d246aeabd1ba31f8c97032 discord.client.Client.create_guild:15 of +msgid "The code for a template to create the guild with." +msgstr "" + +#: 4312ec6459c5431e9821af9fc31fb0d5 discord.client.Client.create_guild:20 of +msgid "The guild created. This is not the same guild that is added to cache." +msgstr "" + +#: 97536bb06f8049b5837ac583ff2dce33 c91fefbf98ca4abfadde5d5caadb9dc1 +#: discord.client.Client.create_guild:22 discord.client.Client.fetch_guild:26 +#: of +msgid ":class:`.Guild`" +msgstr "" + +#: discord.client.Client.create_guild:24 fe6c3f12bfb54bee919c57282004f16c of +msgid "Guild creation failed." +msgstr "" + +#: 76f88cf22b1d4c1ba41c3a09a320adf1 discord.client.Client.create_guild:25 of +msgid "Invalid icon image format given. Must be PNG or JPG." +msgstr "" + +#: 0149655ae5be40f8b70d5d69362b94f0 discord.client.Client.delete_invite:3 of +msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." +msgstr "" + +#: 12997acdfb41427eafde4adf144e6b6d discord.client.Client.delete_invite:5 of +msgid "" +"You must have the :attr:`~.Permissions.manage_channels` permission in the" +" associated guild to do this." +msgstr "" + +#: 16bd71de63f54315b81153e65c2efa00 discord.client.Client.delete_invite:9 of +msgid "The invite to revoke." +msgstr "" + +#: 3b8ea28dfd4b4aa6aae2fba880397f50 discord.client.Client.delete_invite:12 of +msgid "You do not have permissions to revoke invites." +msgstr "" + +#: 9ce1620b29d14465babd2e9ef51f9c80 discord.client.Client.delete_invite:13 of +msgid "The invite is invalid or expired." +msgstr "" + +#: 0e1b8d18fdd444df8b1e1bc2bfd61746 discord.client.Client.delete_invite:14 of +msgid "Revoking the invite failed." +msgstr "" + +#: discord.ext.commands.Bot.emojis:1 f053fc31a26848abb5f0b22c31bba150 of +msgid "The emojis that the connected client has." +msgstr "" + +#: 55996a99ae5a4b76bcf2980286829ff0 discord.client.Client.entitlements:1 of +msgid "" +"Returns an :class:`.AsyncIterator` that enables fetching the " +"application's entitlements." +msgstr "" + +#: 59b671a29aec481bb8db91eb772084d7 discord.client.Client.entitlements:6 of +msgid "Limit the fetched entitlements to entitlements owned by this user." +msgstr "" + +#: discord.client.Client.entitlements:9 fc74e3fd9066451da15dbb859f393f0b of +msgid "Limit the fetched entitlements to entitlements that are for these SKUs." +msgstr "" + +#: a8980247c8994cc6a3315e3acd06b88b discord.client.Client.entitlements:12 of +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 "" + +#: d2f6b335c5d149edb5739256c2d0ac02 discord.client.Client.entitlements:17 of +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 "" + +#: 4468fb7df14b42d6b759894e1d023b0e discord.client.Client.entitlements:22 of +msgid "" +"The number of entitlements to retrieve. If ``None``, retrieves every " +"entitlement, which may be slow. Defaults to ``100``." +msgstr "" + +#: 103afa9d7a7c469186412d2b0f7fd59d discord.client.Client.entitlements:27 of +msgid "Limit the fetched entitlements to entitlements owned by this guild." +msgstr "" + +#: discord.client.Client.entitlements:30 f7befb3d512042b89e8a107e5a39f44f of +msgid "" +"Whether to limit the fetched entitlements to those that have not ended. " +"Defaults to ``False``." +msgstr "" + +#: 1ac0e449c2064ee3872b93131ef5099f acdddbfef28f4deeba67e1c0eeae3126 +#: db580d1226264744a222ffee4584ffd4 discord.abc.Messageable.history +#: discord.bot.ApplicationCommandMixin.walk_application_commands +#: discord.client.Client.entitlements discord.client.Client.fetch_guilds +#: discord.client.Client.get_all_channels discord.client.Client.get_all_members +#: discord.ext.commands.cog.Cog.walk_commands +#: discord.ext.commands.core.GroupMixin.walk_commands +#: e2d006ad6c904920bebc27cd7a383901 of +msgid "Yields" +msgstr "" + +#: 22f913aa3bef434cb525ae9ec6673c3b discord.client.Client.entitlements:34 of +msgid ":class:`.Entitlement` -- The application's entitlements." +msgstr "" + +#: dcca79b2fa794e09b838c1ab709d75b9 discord.client.Client.entitlements:36 of +msgid "Retrieving the entitlements failed." +msgstr "" + +#: 295caaa8c9a047a1a1ee5c2029093ff0 discord.client.Client.entitlements:37 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" +msgstr "" + +#: 1713b7f68ab24b69904742961b2e7c20 3321eb8445bb48ffb68d9cb74a155012 +#: c41d42eda335471399cd63c006bb2131 discord.abc.Messageable.history:39 +#: discord.client.Client.entitlements:40 discord.client.Client.fetch_guilds:35 +#: discord.client.Client.wait_for:42 discord.ext.commands.core.check:37 +#: discord.ext.commands.core.check_any:20 of +msgid "Examples" +msgstr "" + +#: 94bc24f4c61e41b5964c4a1322f961f1 9c43804aa1e84f4db26daf70ceda2518 +#: c44882f2d2fa4e16be22d009df4a9e97 discord.abc.Messageable.history:40 +#: discord.client.Client.entitlements:41 discord.client.Client.fetch_guilds:36 +#: of +msgid "Usage ::" +msgstr "" + +#: 30d73cc7fe64490fa9bc06ee689bd9ca 843417dafe404d64bc7fa228cb7035a1 +#: discord.client.Client.entitlements:46 discord.client.Client.fetch_guilds:41 +#: of +msgid "Flattening into a list ::" +msgstr "" + +#: 828a83477bcd4a6481593e689e4c7a6e 890c3220aa92482a88d9eb963d89a73f +#: discord.abc.Messageable.history:52 discord.client.Client.entitlements:50 +#: discord.client.Client.fetch_guilds:46 f3a460b6dbc644f1a519e478316d2ace of +msgid "All parameters are optional." +msgstr "" + +#: 8e4eb4c3e9b145dba548425d3c8bd29d discord.ext.commands.Bot.extensions:1 of +msgid "A read-only mapping of extension name to extension." +msgstr "" + +#: 97276bbeae3c4082aa2038967c3d1a7e discord.client.Client.fetch_application:1 +#: of +msgid "|coro| Retrieves a :class:`.PartialAppInfo` from an application ID." +msgstr "" + +#: c1b69445d0ac4ea887666dd2f395ccab discord.client.Client.fetch_application:5 +#: of +msgid "The application ID to retrieve information from." +msgstr "" + +#: d55c33490ff042be856a57e1e3950e4e discord.client.Client.fetch_application:8 +#: of +msgid "The application information." +msgstr "" + +#: discord.client.Client.fetch_application:9 e7a5155c45d6429799f5a97c8dfa4bc0 +#: of +msgid ":class:`.PartialAppInfo`" +msgstr "" + +#: discord.client.Client.fetch_application:11 fd59854a364349e9be47834da22da297 +#: of +msgid "An application with this ID does not exist." +msgstr "" + +#: b599a77bcabf40d6aa2b743085912ee5 discord.client.Client.fetch_application:12 +#: of +msgid "Retrieving the application failed." +msgstr "" + +#: discord.client.Client.fetch_channel:3 f979de9b2d7e43efb9fcc960cc1168f5 of +msgid "" +"Retrieves a :class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, or " +":class:`.Thread` with the specified ID." +msgstr "" + +#: 1b2978a016b84e08a0154c5e484807fb discord.client.Client.fetch_channel:7 of +msgid "" +"This method is an API call. For general usage, consider " +":meth:`get_channel` instead." +msgstr "" + +#: 88777b1026884b65845244f98566ac70 discord.client.Client.fetch_channel:11 of +msgid "The channel from the ID." +msgstr "" + +#: 27fa5ae581504a6a9713f76e82cc767c discord.client.Client.fetch_channel:12 of +msgid "" +"Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, " +":class:`.Thread`]" +msgstr "" + +#: 7325a3b3e22f45189185a1fbd5628349 discord.client.Client.fetch_channel:14 of +msgid "An unknown channel type was received from Discord." +msgstr "" + +#: 9235f18a77de465ab639f9dedb10cb0b discord.client.Client.fetch_channel:15 of +msgid "Retrieving the channel failed." +msgstr "" + +#: discord.client.Client.fetch_channel:16 f1d9c0f459c0447fb1203723387ced8f of +msgid "Invalid Channel ID." +msgstr "" + +#: 9410d10bcdb94e0b9d7c7f7c89b65810 discord.client.Client.fetch_channel:17 of +msgid "You do not have permission to fetch this channel." +msgstr "" + +#: de71bd64cf04416ea9bf2abe61ff72ef discord.client.Client.fetch_guild:3 of +msgid "Retrieves a :class:`.Guild` from an ID." +msgstr "" + +#: discord.client.Client.fetch_guild:7 edb1ce0678394fe9a6f1189463300018 of +msgid "" +"Using this, you will **not** receive :attr:`.Guild.channels`, " +":attr:`.Guild.members`, :attr:`.Member.activity` and " +":attr:`.Member.voice` per :class:`.Member`." +msgstr "" + +#: c79ec39844b242ddab93abb4013a80bb discord.client.Client.fetch_guild:12 of +msgid "" +"This method is an API call. For general usage, consider :meth:`get_guild`" +" instead." +msgstr "" + +#: discord.client.Client.fetch_guild:15 f3271bc911514fa7805b7c965fb3840d of +msgid "The guild's ID to fetch from." +msgstr "" + +#: 3b20121f198d4f388ed94fe5e12cdba9 discord.client.Client.fetch_guild:18 of +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 "" + +#: 732356fbef43429eb694993f26d59533 discord.client.Client.fetch_guild:18 of +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 "" + +#: a3f16751f69144a3b4797e7f1b235a0c discord.client.Client.fetch_guild:25 of +msgid "The guild from the ID." +msgstr "" + +#: a68501f7e36b4401a713f42b2c3a2f1e discord.client.Client.fetch_guild:28 of +msgid "You do not have access to the guild." +msgstr "" + +#: 7b41d7287cd448e680bd03c2ebdf67a0 discord.client.Client.fetch_guild:29 of +msgid "Getting the guild failed." +msgstr "" + +#: 22fe20229852494988db210ec83c4f4d discord.client.Client.fetch_guilds:1 of +msgid "Retrieves an :class:`.AsyncIterator` that enables receiving your guilds." +msgstr "" + +#: 4f617e895bd74f44b301bbfdc7c4d06b discord.client.Client.fetch_guilds:5 of +msgid "" +"Using this, you will only receive :attr:`.Guild.owner`, " +":attr:`.Guild.icon`, :attr:`.Guild.id`, and :attr:`.Guild.name` per " +":class:`.Guild`." +msgstr "" + +#: 183ae9d745be416ebb36824adc018c25 discord.client.Client.fetch_guilds:10 of +msgid "" +"This method is an API call. For general usage, consider :attr:`guilds` " +"instead." +msgstr "" + +#: 5e0f42cbfd094760b0f8d936646ebd13 discord.client.Client.fetch_guilds:13 of +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.client.Client.fetch_guilds:19 f76547af39e240eda917471e6066d68f of +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 "" + +#: cb18e3313c264059aed626e8ca209206 discord.client.Client.fetch_guilds:24 of +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 "" + +#: bc466b15258f4b2aa8ac9a96e0f937d7 discord.client.Client.fetch_guilds:29 of +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr "" + +#: 15f4a4f866324c7ba489cd589b442544 discord.client.Client.fetch_guilds:31 of +msgid "Getting the guilds failed." +msgstr "" + +#: 75ee4f3a774e4d8f987a57c3125133f5 discord.client.Client.fetch_guilds:32 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr "" + +#: discord.client.Client.fetch_invite:3 ff98e5f070514ea2b279d2d1f6472a4f of +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "" + +#: 7fde0851174d4b20815dc8e56fc1e221 discord.client.Client.fetch_invite:7 of +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 "" + +#: 7069a208e047405292e67ba908588d72 discord.client.Client.fetch_invite:12 of +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "" + +#: 7eb4713ed1164e76849f0cee607b077d discord.client.Client.fetch_invite:15 of +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 "" + +#: 009f29d2f1774d75a283c895fcc1c121 discord.client.Client.fetch_invite:20 of +msgid "" +"Whether to include the expiration date of the invite. This fills the " +":attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "" + +#: a05f7b7813ee445883dbc3cbb934d233 discord.client.Client.fetch_invite:20 of +msgid "" +"Whether to include the expiration date of the invite. This fills the " +":attr:`.Invite.expires_at` field." +msgstr "" + +#: discord.client.Client.fetch_invite:26 e450c21618cc4c59822e7eca956eb52f of +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 "" + +#: 1b421bdc1a804a888d03595605dccbc8 discord.client.Client.fetch_invite:26 of +msgid "The ID of the scheduled event to be associated with the event." +msgstr "" + +#: 0a8572f3c1154620828f50adc2fc3755 discord.client.Client.fetch_invite:28 of +msgid "" +"See :meth:`Invite.set_scheduled_event` for more info on event invite " +"linking." +msgstr "" + +#: 67ada2da2c8f457abcdfe820c35edb34 discord.client.Client.fetch_invite:34 of +msgid "The invite from the URL/ID." +msgstr "" + +#: discord.client.Client.fetch_invite:35 f4512599faea4485b636174c2e95a371 of +msgid ":class:`.Invite`" +msgstr "" + +#: ae0ccbddaeb4447b81059e5f08572ab7 discord.client.Client.fetch_invite:37 of +msgid "The invite has expired or is invalid." +msgstr "" + +#: 7fa0a78b22de41ed8f3547cbc22044fd discord.client.Client.fetch_invite:38 of +msgid "Getting the invite failed." +msgstr "" + +#: d96e9f2b7e40438c9c764c153268da08 +#: discord.client.Client.fetch_premium_sticker_packs:3 of +msgid "Retrieves all available premium sticker packs." +msgstr "" + +#: be5f3a4b0acc431c9d9094685b52c871 +#: discord.client.Client.fetch_premium_sticker_packs:7 of +msgid "All available premium sticker packs." +msgstr "" + +#: d46c4e3e7bd0488c971b6236c132c575 +#: discord.client.Client.fetch_premium_sticker_packs:8 of +msgid "List[:class:`.StickerPack`]" +msgstr "" + +#: 6be215fce77e413fbf525b18952eacf9 +#: discord.client.Client.fetch_premium_sticker_packs:10 of +msgid "Retrieving the sticker packs failed." +msgstr "" + +#: 97b00444639641fc920ebe9efab0d1ba +#: discord.client.Client.fetch_role_connection_metadata_records:3 of +msgid "Fetches the bot's role connection metadata records." +msgstr "" + +#: afcef3e1573241dda22efc2bc8eb0113 +#: discord.client.Client.fetch_role_connection_metadata_records:7 of +msgid "The bot's role connection metadata records." +msgstr "" + +#: 1c6038fbd90940a99452e42246965fcd +#: discord.client.Client.fetch_role_connection_metadata_records:8 +#: discord.client.Client.update_role_connection_metadata_records:12 +#: f85d9e595c1d4f359d02d7b2baf0b555 of +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "" + +#: 1d947818db1f4e21a9a1a157a728523a discord.client.Client.fetch_skus:3 of +msgid "Fetches the bot's SKUs." +msgstr "" + +#: d7510512f1274c79ad9b92b41e15793a discord.client.Client.fetch_skus:7 of +msgid "The bot's SKUs." +msgstr "" + +#: a17b32aff2164b37be4992da3fa602b3 discord.client.Client.fetch_skus:8 of +msgid "List[:class:`.SKU`]" +msgstr "" + +#: discord.client.Client.fetch_stage_instance:3 +#: ff7eb61902374a9b9694a60b27e0b35f of +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "" + +#: 29afd240aa184ce2b8ed8ec77aaba1e9 +#: discord.client.Client.fetch_stage_instance:8 of +msgid "The stage channel ID." +msgstr "" + +#: 0c2c6ce8c1be4ce989544e552be5a9c0 +#: discord.client.Client.fetch_stage_instance:11 of +msgid "The stage instance from the stage channel ID." +msgstr "" + +#: b7086bac74e049e7aaf21d056f2891b3 +#: discord.client.Client.fetch_stage_instance:12 of +msgid ":class:`.StageInstance`" +msgstr "" + +#: discord.client.Client.fetch_stage_instance:14 +#: fa27d36619154f23b87e1454acdd2c5f of +msgid "The stage instance or channel could not be found." +msgstr "" + +#: 34b64cf26dd147618b0f7319a1740988 +#: discord.client.Client.fetch_stage_instance:15 of +msgid "Getting the stage instance failed." +msgstr "" + +#: discord.client.Client.fetch_sticker:3 f4fa9ab7c1a24513b89988310ac21c10 of +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "" + +#: 29648dc231984792ae7aa4469ac255e8 discord.client.Client.fetch_sticker:7 of +msgid "The sticker you requested." +msgstr "" + +#: discord.client.Client.fetch_sticker:8 f61c55e61f634f758236b63c220ed5c0 of +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "" + +#: discord.client.Client.fetch_sticker:10 fc7eb527b8b34720a79877daef24b860 of +msgid "Retrieving the sticker failed." +msgstr "" + +#: 5174684b72234a59aef76d140423d20d discord.client.Client.fetch_sticker:11 of +msgid "Invalid sticker ID." +msgstr "" + +#: ba25538202404ece8e0799e24cc225e8 discord.client.Client.fetch_template:3 of +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "" + +#: 7b26287c2057457497765948aa0f9c14 discord.client.Client.fetch_template:6 of +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "" + +#: adcdc3cfb5d64c07946c55aa2e3b0466 discord.client.Client.fetch_template:9 of +msgid "The template from the URL/code." +msgstr "" + +#: 2973bc0fd60c44818c36d29ab2bd1156 discord.client.Client.fetch_template:10 of +msgid ":class:`.Template`" +msgstr "" + +#: discord.client.Client.fetch_template:12 e4b1d12659f942f3bce704baf2b2f6d6 of +msgid "The template is invalid." +msgstr "" + +#: d65929c5b5a04a258026ede0724fc4df discord.client.Client.fetch_template:13 of +msgid "Getting the template failed." +msgstr "" + +#: 71afe2141b384fa5b9855d506b0f85f8 discord.client.Client.fetch_user:3 of +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 "" + +#: 63caafa99b464ecba062135b46365975 discord.client.Client.fetch_user:9 of +msgid "" +"This method is an API call. If you have :attr:`discord.Intents.members` " +"and member cache enabled, consider :meth:`get_user` instead." +msgstr "" + +#: 50a668aa170c4373aac97fc0a8a14b8a discord.client.Client.fetch_user:13 of +msgid "The user's ID to fetch from." +msgstr "" + +#: 0647be848cbd4b258ebcc87840b89635 discord.client.Client.fetch_user:16 of +msgid "The user you requested." +msgstr "" + +#: c908af689e304ea3bd9f626173a93765 discord.client.Client.fetch_user:17 of +msgid ":class:`~discord.User`" +msgstr "" + +#: discord.client.Client.fetch_user:19 f567052fb055456c8ad1fbc3829b2ea3 of +msgid "A user with this ID does not exist." +msgstr "" + +#: 0fa0e89be2e041a6a5cb91ce3b84f051 discord.client.Client.fetch_user:20 of +msgid "Fetching the user failed." +msgstr "" + +#: 9b847aa5ea2b4c86b5f64749b6132bcd discord.client.Client.fetch_webhook:3 of +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "" + +#: c5cc8c5449904509b773a938723d081b discord.client.Client.fetch_webhook:5 of +msgid "The webhook you requested." +msgstr "" + +#: discord.client.Client.fetch_webhook:6 e9b26972e0e8420a861e3228ac815486 of +msgid ":class:`.Webhook`" +msgstr "" + +#: ab91f98f4cbf49a19efa88ac091db2db discord.client.Client.fetch_webhook:8 of +msgid "Retrieving the webhook failed." +msgstr "" + +#: 4755f27ecf194457b272d0eb7a579cf4 discord.client.Client.fetch_webhook:9 of +msgid "Invalid webhook ID." +msgstr "" + +#: b6b0773a5d794264aad31f84bb06e24d discord.client.Client.fetch_webhook:10 of +msgid "You do not have permission to fetch this webhook." +msgstr "" + +#: 2f3d59f28dd84376becd6c9687f23b72 discord.client.Client.fetch_widget:3 of +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "" + +#: a56e920a963d4c6180465244f8ea2461 discord.client.Client.fetch_widget:7 of +msgid "The guild must have the widget enabled to get this information." +msgstr "" + +#: 35b8312d608f4df0bea14aedb684366f discord.client.Client.fetch_widget:10 of +msgid "The ID of the guild." +msgstr "" + +#: discord.client.Client.fetch_widget:13 efeb960cd7004534adc71634f17ed0cd of +msgid "The guild's widget." +msgstr "" + +#: ce6c7c941e4d42699364e7e4595e5773 discord.client.Client.fetch_widget:14 of +msgid ":class:`.Widget`" +msgstr "" + +#: 167e8f21acd347249d24f6d8970351f4 discord.client.Client.fetch_widget:16 of +msgid "The widget for this guild is disabled." +msgstr "" + +#: 7f5a896385554d7ea4671665ba911293 discord.client.Client.fetch_widget:17 of +msgid "Retrieving the widget failed." +msgstr "" + +#: 85ef0a2cbac449e680f8f39698ec1a9c discord.client.Client.get_all_channels:1 of +msgid "" +"A generator that retrieves every :class:`.abc.GuildChannel` the client " +"can 'access'." +msgstr "" + +#: 72d83d8cefd0467bbfcf9ddc6b6a47cf c91d10a08ad54d2980f75fb326863880 +#: discord.client.Client.get_all_channels:3 +#: discord.client.Client.get_all_members:3 of +msgid "This is equivalent to: ::" +msgstr "" + +#: 32d5a41f29ab4eab83ff4181703345a6 discord.client.Client.get_all_channels:11 +#: of +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 "" + +#: 9860d3eda1264a0c8df1f138ffe0bb12 discord.client.Client.get_all_channels:15 +#: of +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr "" + +#: 9dfe9cfdde67409dbe4f8f536a632605 discord.client.Client.get_all_members:1 of +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "" + +#: af882d2cbfb6416a9e8ae82fe4d00b7d discord.client.Client.get_all_members:9 of +msgid ":class:`.Member` -- A member the client can see." +msgstr "" + +#: beeb38432c18467199e1986a4a5a5802 +#: discord.bot.ApplicationCommandMixin.get_application_command:1 of +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "" + +#: c33347ffc3c742ffa39ad2da8713137b +#: discord.bot.ApplicationCommandMixin.get_application_command:7 of +msgid "The qualified name of the command to get." +msgstr "" + +#: 2f30620e074f4420a037b25f8352a23a +#: discord.bot.ApplicationCommandMixin.get_application_command:10 of +msgid "The guild ids associated to the command to get." +msgstr "" + +#: b6355726cccf49c08342b8e9bbe0f50f +#: discord.bot.ApplicationCommandMixin.get_application_command:13 of +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "" + +#: 8075abb274e04650a70502fe718d48e1 +#: discord.bot.ApplicationCommandMixin.get_application_command:16 +#: discord.ext.commands.core.GroupMixin.get_command:14 of +msgid "The command that was requested. If not found, returns ``None``." +msgstr "" + +#: a0421f9c994a4d42b5d1d086df607ef7 +#: discord.bot.ApplicationCommandMixin.get_application_command:17 +#: discord.bot.ApplicationCommandMixin.remove_application_command:12 of +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "" + +#: 211fd50ce0b145a58e93f891f7e62aac +#: discord.bot.ApplicationCommandMixin.get_application_context:3 of +msgid "Returns the invocation context from the interaction." +msgstr "" + +#: 5ff022119a8143e9b08a979f66a6e2a0 +#: discord.bot.ApplicationCommandMixin.get_application_context:5 +#: discord.bot.ApplicationCommandMixin.get_autocomplete_context:5 of +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 "" + +#: 976de055999f46f58eea47f454eaef7a +#: discord.bot.ApplicationCommandMixin.get_application_context:9 +#: discord.bot.ApplicationCommandMixin.get_autocomplete_context:9 of +msgid "The interaction to get the invocation context from." +msgstr "" + +#: 0802b984866b410088e3bb08e945ee73 +#: discord.bot.ApplicationCommandMixin.get_application_context:12 of +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 "" + +#: 3b38ccebb4774f71be6c3c835dd6d70e +#: discord.bot.ApplicationCommandMixin.get_application_context:17 +#: discord.ext.commands.bot.BotBase.get_context:22 of +msgid "" +"The invocation context. The type of this can change via the ``cls`` " +"parameter." +msgstr "" + +#: 31df93db9f4145448a26c7500326286c +#: discord.bot.ApplicationCommandMixin.get_application_context:19 of +msgid ":class:`.ApplicationContext`" +msgstr "" + +#: 1557cc6eb4f447ad9db07037606871a3 +#: discord.bot.ApplicationCommandMixin.get_autocomplete_context:3 of +msgid "Returns the autocomplete context from the interaction." +msgstr "" + +#: 42a5b4ca86ee472ca7a3804eace741a7 +#: discord.bot.ApplicationCommandMixin.get_autocomplete_context:12 of +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 "" + +#: ca667b8dd303434b96f15be6e466fa15 +#: discord.bot.ApplicationCommandMixin.get_autocomplete_context:17 of +msgid "" +"The autocomplete context. The type of this can change via the ``cls`` " +"parameter." +msgstr "" + +#: 75759b0976f74cb6b002eed64c030ee9 +#: discord.bot.ApplicationCommandMixin.get_autocomplete_context:19 of +msgid ":class:`.AutocompleteContext`" +msgstr "" + +#: 54305eefde134b89aedcd1a998ec40c6 discord.client.Client.get_channel:1 of +msgid "Returns a channel or thread with the given ID." +msgstr "" + +#: abb8574be99a40e3abe788514c73ab7a discord.client.Client.get_channel:4 +#: discord.client.Client.get_emoji:4 discord.client.Client.get_guild:4 +#: discord.client.Client.get_message:7 +#: discord.client.Client.get_or_fetch_user:6 +#: discord.client.Client.get_stage_instance:6 discord.client.Client.get_user:4 +#: of +msgid "The ID to search for." +msgstr "" + +#: 107b87ee058841a9966abb7b7ccf4fcb discord.client.Client.get_channel:7 of +msgid "The returned channel or ``None`` if not found." +msgstr "" + +#: 7f38faba9ead4fa386a53e29f69d7559 discord.client.Client.get_channel:8 of +msgid "" +"Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, " +":class:`.abc.PrivateChannel`]]" +msgstr "" + +#: b4d2e92605154bebadcedcbf79765885 discord.cog.CogMixin.get_cog:1 of +msgid "Gets the cog instance requested." +msgstr "" + +#: bb4e1d06781a402ab963ee718abec1bc discord.cog.CogMixin.get_cog:3 of +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "" + +#: 5ecdd5ca3b364d2bb11d4214a316a07a discord.cog.CogMixin.get_cog:6 of +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 "" + +#: ceac76e5ab5e40dea8f50d62ced7e0f9 discord.cog.CogMixin.get_cog:11 of +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "" + +#: 076958fd76f448899e7a5f907e409cea discord.cog.CogMixin.get_cog:12 +#: discord.ext.commands.HelpCommand.cog:10 discord.ext.commands.core.Command:62 +#: of +msgid "Optional[:class:`Cog`]" +msgstr "" + +#: d555628fb6a74c5697817061624609d9 +#: discord.ext.commands.core.GroupMixin.get_command:1 of +msgid "Get a :class:`.Command` from the internal list of commands." +msgstr "" + +#: 77d72aaabce64e60a149d21b1319d604 +#: discord.ext.commands.core.GroupMixin.get_command:4 of +msgid "This could also be used as a way to get aliases." +msgstr "" + +#: 3f540ff7c6ba442abc0635a2ce276025 +#: discord.ext.commands.core.GroupMixin.get_command:6 of +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 "" + +#: d9354bca6a4948efb9716c2410e9413a +#: discord.ext.commands.core.GroupMixin.get_command:11 of +msgid "The name of the command to get." +msgstr "" + +#: 98d36fa1cabf419197df81cba05fdb4e discord.ext.commands.context.Context:56 +#: discord.ext.commands.context.Context:81 +#: discord.ext.commands.core.Command:103 +#: discord.ext.commands.core.GroupMixin.get_command:15 of +msgid "Optional[:class:`Command`]" +msgstr "" + +#: 7b7c1555a358410c85f6ef2538a9156b +#: discord.ext.commands.bot.BotBase.get_context:3 of +msgid "Returns the invocation context from the message." +msgstr "" + +#: c65ae05ccc974f74b5932810e2ba0643 +#: discord.ext.commands.bot.BotBase.get_context:5 of +msgid "" +"This is a more low-level counter-part for :meth:`.process_commands` to " +"allow users more fine-grained control over the processing." +msgstr "" + +#: 5291ea7e7d094bb28812eed968557647 +#: discord.ext.commands.bot.BotBase.get_context:8 of +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 "" + +#: 8b35a61c7ba94b27a0c920be2cbc9a74 +#: discord.ext.commands.bot.BotBase.get_context:14 of +msgid "The message to get the invocation context from." +msgstr "" + +#: 4106c84ada9b403a9888f3aca451fac7 +#: discord.ext.commands.bot.BotBase.get_context:17 of +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 "" + +#: a560748f69f04cf0a14045b10804954e +#: discord.ext.commands.bot.BotBase.get_context:24 of +msgid ":class:`.Context`" +msgstr "" + +#: 7b604a1feb4d46a2bca090967d256ef8 +#: discord.bot.ApplicationCommandMixin.get_desynced_commands:3 of +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 "" + +#: b60a51ab863e464eb9c454fdae9c6a22 +#: discord.bot.ApplicationCommandMixin.get_desynced_commands:7 of +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.ApplicationCommandMixin.get_desynced_commands:13 +#: e6a978a1641c44a283815caa0a1909c8 of +msgid "" +"The guild id to get the desynced commands for, else global commands if " +"unspecified." +msgstr "" + +#: 500100e533c44af7b7407da993c87eb1 +#: discord.bot.ApplicationCommandMixin.get_desynced_commands:16 of +msgid "" +"If you already fetched the commands, you can pass them here to be used. " +"Not recommended for typical usage." +msgstr "" + +#: discord.bot.ApplicationCommandMixin.get_desynced_commands:19 +#: f817262ce5e64a8590082a8280041694 of +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 "" + +#: ab7dff05807644ed96e2b974b63dff7e +#: discord.bot.ApplicationCommandMixin.get_desynced_commands:22 of +msgid "List[Dict[:class:`str`, Any]]" +msgstr "" + +#: 85c87b8fec81465c9020b141be856fb8 discord.client.Client.get_emoji:1 of +msgid "Returns an emoji with the given ID." +msgstr "" + +#: 157f1b3c941147a19ce8edf840834d4a discord.client.Client.get_emoji:7 of +msgid "The custom emoji or ``None`` if not found." +msgstr "" + +#: 1c0cbebe556443ec8b777892bbb413ca discord.client.Client.get_emoji:8 of +msgid "Optional[:class:`.Emoji`]" +msgstr "" + +#: 3c43e6dcda3848efb665d49d3cb97ad1 discord.client.Client.get_guild:1 of +msgid "Returns a guild with the given ID." +msgstr "" + +#: 0351a20e8ffe40e09099eb75e30dc93d discord.client.Client.get_guild:7 of +msgid "The guild or ``None`` if not found." +msgstr "" + +#: 4df5d4e82b5c432789f6a9477c590bd3 discord.client.Client.get_guild:8 of +msgid "Optional[:class:`.Guild`]" +msgstr "" + +#: ce8c96bbbff74f8bbd3ebd9b88d31149 discord.client.Client.get_message:1 of +msgid "Returns a message the given ID." +msgstr "" + +#: 560f12cac3994e419d298070a28577bf discord.client.Client.get_message:3 of +msgid "" +"This is useful if you have a message_id but don't want to do an API call " +"to access the message." +msgstr "" + +#: 3faa4e73ac324172bd8e447ab0a92e16 discord.client.Client.get_message:10 of +msgid "The returned message or ``None`` if not found." +msgstr "" + +#: 29a148422678430dbb20acdb70e8f5cb discord.client.Client.get_message:11 of +msgid "Optional[:class:`.Message`]" +msgstr "" + +#: 275a6d7b15584cc595412689b620e5d8 discord.client.Client.get_or_fetch_user:3 +#: of +msgid "Looks up a user in the user cache or fetches if not found." +msgstr "" + +#: a0ddffa324eb4f69b621dc78d6085347 discord.client.Client.get_or_fetch_user:9 +#: discord.client.Client.get_user:7 of +msgid "The user or ``None`` if not found." +msgstr "" + +#: 6750b7f88cee434d86d97c6e26df794e discord.client.Client.get_or_fetch_user:10 +#: discord.client.Client.get_user:8 of +msgid "Optional[:class:`~discord.User`]" +msgstr "" + +#: discord.client.Client.get_partial_messageable:1 +#: e430c83c877c4c3cab0b0160e4441a7c of +msgid "Returns a partial messageable with the given channel ID." +msgstr "" + +#: 0906235be1c847718975e2d5950d3263 +#: discord.client.Client.get_partial_messageable:3 of +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 "" + +#: 20f68ab6445a4e1eb3d21d94d48d56f5 +#: discord.client.Client.get_partial_messageable:9 of +msgid "The channel ID to create a partial messageable for." +msgstr "" + +#: discord.client.Client.get_partial_messageable:12 +#: f4cbce994233498eb9c3f7ab43945ed7 of +msgid "The underlying channel type for the partial messageable." +msgstr "" + +#: 448098dfa06645d1a21f0383e872fb66 +#: discord.client.Client.get_partial_messageable:15 of +msgid "The partial messageable" +msgstr "" + +#: 0c8f5fc1798148dc82d346f118df8ac8 +#: discord.client.Client.get_partial_messageable:16 of +msgid ":class:`.PartialMessageable`" +msgstr "" + +#: 6a88dea154924ac58b40c4ab9e98a394 discord.client.Client.get_poll:1 of +msgid "Returns a poll attached to the given message ID." +msgstr "" + +#: 4ad781ecc41c4c0fa34cdc928810b164 discord.client.Client.get_poll:4 of +msgid "The message ID of the poll to search for." +msgstr "" + +#: b3004ecd7bfe478c89204898761a7aa8 discord.client.Client.get_poll:7 of +msgid "The poll or ``None`` if not found." +msgstr "" + +#: 6070523df32e409d9b1fac2a8f96b3b4 discord.client.Client.get_poll:8 of +msgid "Optional[:class:`.Poll`]" +msgstr "" + +#: 05cce8cd9a4d41cb865b62006f90c2f3 +#: discord.ext.commands.bot.BotBase.get_prefix:3 of +msgid "" +"Retrieves the prefix the bot is listening to with the message as a " +"context." +msgstr "" + +#: c7ba4ac424cc4ca19751b328abfe0998 +#: discord.ext.commands.bot.BotBase.get_prefix:7 of +msgid "The message context to get the prefix of." +msgstr "" + +#: 4715b82f27524b18bb0212b3bd49ff25 +#: discord.ext.commands.bot.BotBase.get_prefix:10 of +msgid "A list of prefixes or a single prefix that the bot is listening for." +msgstr "" + +#: 23e4ab83cc1a4d03a15a745646a517a6 +#: discord.ext.commands.bot.BotBase.get_prefix:12 of +msgid "Union[List[:class:`str`], :class:`str`]" +msgstr "" + +#: 19d360590711420b85975a29897dd4da discord.client.Client.get_stage_instance:1 +#: of +msgid "Returns a stage instance with the given stage channel ID." +msgstr "" + +#: c1c509ff2b7c46abbd81eba5db015104 discord.client.Client.get_stage_instance:9 +#: of +msgid "The stage instance or ``None`` if not found." +msgstr "" + +#: 8afa09e8ce9f483187ee524cfbbb7769 discord.client.Client.get_stage_instance:10 +#: of +msgid "Optional[:class:`.StageInstance`]" +msgstr "" + +#: discord.client.Client.get_sticker:1 f3c2837e8008408bbf23da1bb066e7e6 of +msgid "Returns a guild sticker with the given ID." +msgstr "" + +#: 36b40417971b4043b37fd64a140e398f discord.client.Client.get_sticker:7 of +msgid "" +"To retrieve standard stickers, use :meth:`.fetch_sticker`. or " +":meth:`.fetch_premium_sticker_packs`." +msgstr "" + +#: 1d52b076ff9e4c908e00cd5a15c2ab81 discord.client.Client.get_sticker:10 of +msgid "The sticker or ``None`` if not found." +msgstr "" + +#: 72554f8103de4c6e9cb6a9beaf5e0b7d discord.client.Client.get_sticker:11 of +msgid "Optional[:class:`.GuildSticker`]" +msgstr "" + +#: ba4b9a4cd1454d8f96be7a8f51de1611 discord.client.Client.get_user:1 of +msgid "Returns a user with the given ID." +msgstr "" + +#: 3c6ffdbfdb4345c6a359147783febc67 discord.ext.commands.Bot.guilds:1 of +msgid "The guilds that the connected client is a member of." +msgstr "" + +#: 209488a932bb47e0931fac3e4d09609c discord.ext.commands.Bot.intents:1 of +msgid "The intents configured for this connection." +msgstr "" + +#: 3075bea48f2a4ca8852df93b0bd3498d discord.ext.commands.bot.BotBase.invoke:3 +#: of +msgid "" +"Invokes the command given under the invocation context and handles all " +"the internal event dispatch mechanisms." +msgstr "" + +#: 0f638f48f50f4c09993a064ea83cd283 +#: discord.bot.ApplicationCommandMixin.invoke_application_command:7 +#: discord.ext.commands.bot.BotBase.invoke:7 of +msgid "The invocation context to invoke." +msgstr "" + +#: 6e5ba81f8ba047ec86c62d502cf47bce +#: discord.bot.ApplicationCommandMixin.invoke_application_command:3 of +msgid "" +"Invokes the application command given under the invocation context and " +"handles all the internal event dispatch mechanisms." +msgstr "" + +#: 90e5eaa0acd44e75b0f81269d2e4704d discord.client.Client.is_closed:1 of +msgid "Indicates if the WebSocket connection is closed." +msgstr "" + +#: discord.client.Client.is_closed:4 discord.client.Client.is_ready:4 +#: f2d2ffb4c5de4294b00e0d6960df1d3d of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 118afb096dbb49fc99f4fa1d450cc94b discord.bot.BotBase.is_owner:3 of +msgid "" +"Checks if a :class:`~discord.User` or :class:`~discord.Member` is the " +"owner of this bot." +msgstr "" + +#: 0188040002234e448bfcefb5879da6d0 discord.bot.BotBase.is_owner:6 of +msgid "" +"If an :attr:`owner_id` is not set, it is fetched automatically through " +"the use of :meth:`~.Bot.application_info`." +msgstr "" + +#: discord.bot.BotBase.is_owner:9 ea92aef62ae14860a92b74b19f31e2fd of +msgid "" +"The function also checks if the application is team-owned if " +":attr:`owner_ids` is not set." +msgstr "" + +#: 75f037142b784ca0b0280584acb209a7 discord.bot.BotBase.is_owner:14 of +msgid "The user to check for." +msgstr "" + +#: 0518f3bb4aa1444db2ac2032b93b409a discord.bot.BotBase.is_owner:17 of +msgid "Whether the user is the owner." +msgstr "" + +#: 041173496c8247cf8d05c7ccbbfb734f discord.client.Client.is_ready:1 of +msgid "Specifies if the client's internal cache is ready for use." +msgstr "" + +#: d06516a48e6c46c6a3e32f6409bc7f1b discord.client.Client.is_ws_ratelimited:1 +#: of +msgid "Whether the WebSocket is currently rate limited." +msgstr "" + +#: 247b66b1c7ac49109fc876742bb3aa13 discord.client.Client.is_ws_ratelimited:3 +#: of +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 "" + +#: cd244fd94faf4a6d80340bdcbf4fa037 discord.ext.commands.Bot.latency:1 of +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "" + +#: 68a27c5f06f046589b9966084c427b86 discord.ext.commands.Bot.latency:3 of +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "" + +#: 73ca6be9f6c44ea39c1efce5ee47bf23 discord.cog.CogMixin.load_extension:1 of +msgid "Loads an extension." +msgstr "" + +#: discord.cog.CogMixin.load_extension:3 f6a4fbb9fd74467f9c879de246769ffa of +msgid "" +"An extension is a python module that contains commands, cogs, or " +"listeners." +msgstr "" + +#: 975e840eaee14b4dbee8a00ddbbeda2f discord.cog.CogMixin.load_extension:6 of +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 "" + +#: 3b164d7e34d1453b97c0f38f3f312a3f discord.cog.CogMixin.load_extension:10 of +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 "" + +#: 8e89d87054594008abe505c84310338c discord.cog.CogMixin.load_extension:14 of +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 "" + +#: 7f2cff7a3dcb41ef859adebe2c9703ac discord.cog.CogMixin.load_extension:19 +#: discord.cog.CogMixin.load_extensions:12 of +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 "" + +#: 85cb40e2b8f843238e36491f437ae881 discord.cog.CogMixin.load_extension:19 +#: discord.cog.CogMixin.load_extensions:12 of +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 "" + +#: 318cf231125c4652934e2e3dcd11f3b4 discord.cog.CogMixin.load_extension:27 +#: discord.cog.CogMixin.load_extensions:20 of +msgid "" +"If subdirectories under the given head directory should be recursively " +"loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "" + +#: discord.cog.CogMixin.load_extension:27 +#: discord.cog.CogMixin.load_extensions:20 e772cf6937df4d08811f8b5aca62ed7e of +msgid "" +"If subdirectories under the given head directory should be recursively " +"loaded. Defaults to ``False``." +msgstr "" + +#: 3cecd5dac3b1428186b2006eed2a09ea discord.cog.CogMixin.load_extension:34 +#: discord.cog.CogMixin.load_extensions:27 of +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.cog.CogMixin.load_extension:34 +#: discord.cog.CogMixin.load_extensions:27 f8f0294e84b04031843107316a63aa39 of +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 "" + +#: c16f13ff56c14c05b160e177859de1d9 discord.cog.CogMixin.load_extension:45 of +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 "" + +#: 236d07f9e65049aead2c01b2e184cb28 discord.cog.CogMixin.load_extension:51 +#: discord.cog.CogMixin.load_extensions:44 of +msgid "" +"Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, " +":class:`bool`]], List[:class:`str`]]]" +msgstr "" + +#: 52b9fd3899444591860e9ea100e5b710 discord.cog.CogMixin.load_extension:53 +#: discord.cog.CogMixin.reload_extension:22 of +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 "" + +#: a427a8d14c11445e824427e908258a19 discord.cog.CogMixin.load_extension:54 of +msgid "The extension is already loaded." +msgstr "" + +#: 94d3b957e1c145fba0c65ca08b4a9e7d discord.cog.CogMixin.load_extension:55 +#: discord.cog.CogMixin.reload_extension:23 of +msgid "The extension does not have a setup function." +msgstr "" + +#: 02cb58ade4144bd090d000ee9512e4e5 discord.cog.CogMixin.load_extension:56 of +msgid "The extension or its setup function had an execution error." +msgstr "" + +#: discord.cog.CogMixin.load_extensions:1 fc5ee1b90ff04683b6a6a0a44d25f634 of +msgid "Loads multiple extensions at once." +msgstr "" + +#: 8dbd82d2722b4abe982887f6fbd463cb discord.cog.CogMixin.load_extensions:3 of +msgid "" +"This method simplifies the process of loading multiple extensions by " +"handling the looping of ``load_extension``." +msgstr "" + +#: c6dc0ea347054e669a9fceb19b14f3df discord.cog.CogMixin.load_extensions:7 of +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 "" + +#: c4b1636eec6a4b959f385ec831af35b9 discord.cog.CogMixin.load_extensions:38 of +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 "" + +#: dff67721c328405f993460604610704e discord.cog.CogMixin.load_extensions:46 of +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.cog.CogMixin.load_extensions:47 e26df7023d3e44de9392d0ee2666de5b of +msgid "A given extension is already loaded." +msgstr "" + +#: 9f8a6c8de9054e5d8f785f7013ff5426 discord.cog.CogMixin.load_extensions:48 of +msgid "A given extension does not have a setup function." +msgstr "" + +#: c7ee960eb3ed48cfa6219da68eda0e8a discord.cog.CogMixin.load_extensions:49 of +msgid "A given extension or its setup function had an execution error." +msgstr "" + +#: 0cd5999f08474ec09e84b3a0fcf53f6a discord.client.Client.login:3 of +msgid "Logs in the client with the specified credentials." +msgstr "" + +#: a83e8afd3b9a4df1aca1563503e19a4f discord.client.Client.login:6 of +msgid "" +"The authentication token. Do not prefix this token with anything as the " +"library will do it for you." +msgstr "" + +#: 4a7aece89b5d4b57b8a98d40cd1eb652 discord.client.Client.login:10 of +msgid "The token was in invalid type." +msgstr "" + +#: 96d7271f109c4e388ec84a0bd84841ed discord.client.Client.login:11 of +msgid "The wrong credentials are passed." +msgstr "" + +#: a224ce433d9d407eada620bbe58b79fb discord.client.Client.login:12 of +msgid "" +"An unknown HTTP related error occurred, usually when it isn't 200 or " +"the known incorrect credentials passing status code." +msgstr "" + +#: 06aaa4a06f1643458bac9277ab9c0586 +#: discord.bot.ApplicationCommandMixin.message_command:1 of +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 "" + +#: 7d14b3bdf9634d46bdca6fcd9a21b9e3 +#: discord.bot.ApplicationCommandMixin.message_command:7 of +msgid "" +"A decorator that converts the provided method into a " +":class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "" + +#: 3a1f259101664820b1fdf332b5ba0384 +#: discord.bot.ApplicationCommandMixin.message_command:9 of +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "" + +#: 66802051ce734e8097ec34d915787746 +#: discord.bot.BotBase.on_application_command_error:3 +#: discord.ext.commands.bot.BotBase.on_command_error:3 of +msgid "The default command error handler provided by the bot." +msgstr "" + +#: 1cfd6552a76b4aa8a505f6638f251018 +#: discord.bot.BotBase.on_application_command_error:5 +#: discord.ext.commands.bot.BotBase.on_command_error:5 of +msgid "" +"By default, this prints to :data:`sys.stderr` however it could be " +"overridden to have a different implementation." +msgstr "" + +#: 2bccaf197b874b678e4c7e0f4392290a +#: discord.bot.BotBase.on_application_command_error:8 +#: discord.ext.commands.bot.BotBase.on_command_error:8 of +msgid "This only fires if you do not specify any listeners for command error." +msgstr "" + +#: discord.client.Client.on_error:3 edd24076077248e7b2b4b2ed5ab4d44f of +msgid "The default error handler provided by the client." +msgstr "" + +#: 0109e81b10394bdb842f6887198636a4 discord.client.Client.on_error:5 of +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 "" + +#: 373aeb873c344d82970e4a032b9ac217 discord.ext.commands.Bot.persistent_views:1 +#: of +msgid "A sequence of persistent views added to the client." +msgstr "" + +#: a6ba0d7629694f7f82906545519f7701 discord.ext.commands.Bot.polls:1 of +msgid "The polls that the connected client has." +msgstr "" + +#: 2a456fe204bb49ccba1c8ef998f0cc07 discord.ext.commands.Bot.private_channels:1 +#: of +msgid "The private channels that the connected client is participating on." +msgstr "" + +#: ceac0cfc384647d298f39f12c0acf7ed discord.ext.commands.Bot.private_channels:5 +#: of +msgid "" +"This returns only up to 128 most recent private channels due to an " +"internal working on how Discord deals with private channels." +msgstr "" + +#: 7182196090184bd2924a20549adf2d46 +#: discord.bot.ApplicationCommandMixin.process_application_commands:3 +#: discord.ext.commands.bot.BotBase.process_commands:3 of +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 "" + +#: ba527e37463647ce8c5432016f29f78c +#: discord.bot.ApplicationCommandMixin.process_application_commands:7 of +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 "" + +#: 50c7c9cad8cf4f289847762194b48a53 +#: discord.bot.ApplicationCommandMixin.process_application_commands:11 of +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 "" + +#: cb839530614640e8968e100adf2228d8 +#: discord.bot.ApplicationCommandMixin.process_application_commands:18 of +msgid "The interaction to process" +msgstr "" + +#: discord.bot.ApplicationCommandMixin.process_application_commands:21 +#: ff06c0ebce444f51a73fe1ee516f7264 of +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 "" + +#: 6804d4b7ab9c43949f7ebec022a2b5e5 +#: discord.ext.commands.bot.BotBase.process_commands:7 of +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.BotBase.process_commands:11 +#: f62bf245cd8e481981dfd17614caa216 of +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 "" + +#: 2d7cb9beeb8349dd9c7fa0501f057e21 +#: discord.ext.commands.bot.BotBase.process_commands:14 of +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 "" + +#: c4b59976df7f42f0a3c51d4f2e358b52 +#: discord.ext.commands.bot.BotBase.process_commands:18 of +msgid "The message to process commands for." +msgstr "" + +#: 164fb90b104045e89d7c1f0414020a3e +#: discord.bot.ApplicationCommandMixin.register_command:3 of +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 "" + +#: 78e53cdddda540b9a21a7fd370ac3b07 +#: discord.bot.ApplicationCommandMixin.register_command:7 of +msgid "The command to register." +msgstr "" + +#: 608b9bb60d2140218c03a6ef164385a0 +#: discord.bot.ApplicationCommandMixin.register_command:10 of +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 "" + +#: dad7c61d72ce47a992ed88b6a217b991 +#: discord.bot.ApplicationCommandMixin.register_command:14 of +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 "" + +#: 4e1b3e10ead548c8804fdc8b0a1b2664 +#: discord.bot.ApplicationCommandMixin.register_command:18 of +msgid "The command that was registered" +msgstr "" + +#: 91dfc7d1b4eb4a6086d3b32f16fd9469 +#: discord.bot.ApplicationCommandMixin.register_command:19 of +msgid ":class:`~.ApplicationCommand`" +msgstr "" + +#: 62e8f2e9cd354bfaa1251489d46acd96 +#: discord.bot.ApplicationCommandMixin.register_commands:3 of +msgid "Register a list of commands." +msgstr "" + +#: c5082ea44ddf4a65ab929232d45ea410 +#: discord.bot.ApplicationCommandMixin.register_commands:8 of +msgid "" +"A list of commands to register. If this is not set (``None``), then all " +"commands will be registered." +msgstr "" + +#: af5a7516da5e45ec8955283376c7ce27 +#: discord.bot.ApplicationCommandMixin.register_commands:11 of +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 "" + +#: 4fae560ecd074d41a1539bb3058d9c8e +#: discord.bot.ApplicationCommandMixin.register_commands:15 +#: discord.bot.ApplicationCommandMixin.sync_commands:30 of +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 "" + +#: c70634c2e0434418a3a5d78525171060 +#: discord.bot.ApplicationCommandMixin.register_commands:20 +#: discord.bot.ApplicationCommandMixin.sync_commands:35 of +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 "" + +#: d41fd7f478444437aa26d461b53c89b0 +#: discord.bot.ApplicationCommandMixin.register_commands:24 +#: discord.bot.ApplicationCommandMixin.sync_commands:52 of +msgid "" +"Whether to delete existing commands that are not in the list of commands " +"to register. Defaults to True." +msgstr "" + +#: 9bd42b0833e541da9ea21e3253f0f1e1 +#: discord.bot.ApplicationCommandMixin.register_commands:27 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ " +"\\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr "" + +#: discord.cog.CogMixin.reload_extension:1 f5bfe1db4bd748fbabc1c2d748a1ad3d of +msgid "Atomically reloads an extension." +msgstr "" + +#: discord.cog.CogMixin.reload_extension:3 e00b1c26b7c541efad26075cc3da1773 of +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 "" + +#: 7397c9310acb4dc49acf1b6efd3fc08b discord.cog.CogMixin.reload_extension:9 of +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 "" + +#: 918b442226fd4dcab9ff66a48716b0ea discord.cog.CogMixin.reload_extension:14 of +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 "" + +#: 4f400cab8da54866b5de772471327cbc discord.cog.CogMixin.reload_extension:14 of +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 "" + +#: 84cf47932ab94200b27422be14d0bf12 ce093ca8e94b492b9baae5fe63c4e335 +#: discord.cog.CogMixin.reload_extension:21 +#: discord.cog.CogMixin.unload_extension:25 of +msgid "The extension was not loaded." +msgstr "" + +#: b6163285297844998306e8645322884b discord.cog.CogMixin.reload_extension:24 of +msgid "The extension setup function had an execution error." +msgstr "" + +#: a1ef0b2b55144410b778bb7ffb8be5b9 +#: discord.bot.ApplicationCommandMixin.remove_application_command:1 of +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "" + +#: discord.bot.ApplicationCommandMixin.remove_application_command:7 +#: e62f5010bdd14887b34428f27772f090 of +msgid "The command to remove." +msgstr "" + +#: 36c1c6930d5745a4b82db78c7cc5dae2 +#: discord.bot.ApplicationCommandMixin.remove_application_command:10 of +msgid "" +"The command that was removed. If the command has not been added, ``None``" +" is returned instead." +msgstr "" + +#: 8c096a18316e4395b5a8c99d778633a6 discord.bot.BotBase.remove_check:1 of +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 "" + +#: d836f1015d2f4872921e7e2bd23cfd08 discord.bot.BotBase.remove_check:6 of +msgid "The function to remove from the global checks." +msgstr "" + +#: 52505a1773da45cd96132292f234668a discord.bot.BotBase.remove_check:8 of +msgid "" +"If the function was added with ``call_once=True`` in the " +":meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "" + +#: 4bce31052eae454cb922019dfa00224e discord.cog.CogMixin.remove_cog:1 of +msgid "Removes a cog from the bot and returns it." +msgstr "" + +#: 70dceeec61a3451a9e1f6bc70fbcfa91 discord.cog.CogMixin.remove_cog:3 of +msgid "" +"All registered commands and event listeners that the cog has registered " +"will be removed as well." +msgstr "" + +#: 4d06c08c84414815a3913eec615e16e7 discord.cog.CogMixin.remove_cog:6 of +msgid "If no cog is found then this method has no effect." +msgstr "" + +#: af1036bce59746d093abd81aab79b1d0 discord.cog.CogMixin.remove_cog:9 of +msgid "The name of the cog to remove." +msgstr "" + +#: discord.cog.CogMixin.remove_cog:12 e9f40ae4bcf146d9abae3c78d57f5fd5 of +msgid "The cog that was removed. ``None`` if not found." +msgstr "" + +#: 7e9562f29ff24c168294ced809e39c48 discord.cog.CogMixin.remove_cog:13 of +msgid "Optional[:class:`.Cog`]" +msgstr "" + +#: 72e56541aba94b5094116625bae069d9 +#: discord.ext.commands.core.GroupMixin.remove_command:1 of +msgid "Remove a :class:`.Command` from the internal list of commands." +msgstr "" + +#: discord.ext.commands.core.GroupMixin.remove_command:4 +#: e1f8b4c4d35e4ad8b57c3d018b6f4174 of +msgid "This could also be used as a way to remove aliases." +msgstr "" + +#: d399c8aa90334ed29d8c347beafa631d +#: discord.ext.commands.core.GroupMixin.remove_command:7 of +msgid "The name of the command to remove." +msgstr "" + +#: 6edfdbe1280e4cf398df37fe2792d8ee +#: discord.ext.commands.core.GroupMixin.remove_command:10 of +msgid "" +"The command that was removed. If the name is not valid then ``None`` is " +"returned instead." +msgstr "" + +#: 99f6a7ad97a24341a814e6f291e294d2 +#: discord.ext.commands.core.GroupMixin.remove_command:12 of +msgid "Optional[:class:`.Command`]" +msgstr "" + +#: 89237b2df8894f028c8d6fe4b723ac9e discord.client.Client.remove_listener:1 of +msgid "Removes a listener from the pool of listeners." +msgstr "" + +#: 4126c6c0ad9d41f98850f0a0daf3d13f discord.client.Client.remove_listener:4 of +msgid "The function that was used as a listener to remove." +msgstr "" + +#: 04dcea9827704258a9e40aebaabf81cb discord.client.Client.remove_listener:6 of +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "" + +#: d770bb73dbb7401f974c801b9884b9d2 discord.client.Client.run:1 of +msgid "" +"A blocking call that abstracts away the event loop initialisation from " +"you." +msgstr "" + +#: 7cf3c2253ef341fd9ea4cd589e8a8f24 discord.client.Client.run:4 of +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 "" + +#: 81da8969b71546b2b65729eae997a16f discord.client.Client.run:8 of +msgid "Roughly Equivalent to: ::" +msgstr "" + +#: 4e683fc6fb4d4a70936b85ea61e72a74 discord.client.Client.run:20 of +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 "" + +#: dd492beae05f4a8d8cb809e7edef441e +#: discord.bot.ApplicationCommandMixin.slash_command:1 of +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 "" + +#: 802ce9a737a9484c896d16f372e3b6de +#: discord.bot.ApplicationCommandMixin.slash_command:7 of +msgid "" +"A decorator that converts the provided method into a " +":class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "" + +#: 108e23f4f6284ab29c327401bf146ddc +#: discord.bot.ApplicationCommandMixin.slash_command:9 of +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "" + +#: 7634d59aa45e4d26b2c565151cc3782e discord.bot.ApplicationCommandMixin.group:1 +#: of +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 "" + +#: 737591a4772a41f6bdeea4dd51546778 discord.bot.ApplicationCommandMixin.group:7 +#: of +msgid "" +"The name of the group to create. This will resolve to the name of the " +"decorated class if ``None`` is passed." +msgstr "" + +#: d76b1fe4d76f4ca69d1a0ade53afc1ce discord.client.Client.start:3 of +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "" + +#: 76b5f1a0b02348759deca85bc9662056 discord.client.Client.start:5 of +msgid "An unexpected keyword argument was received." +msgstr "" + +#: 63ac3c15418f4a8ab3731229e8c99da7 discord.ext.commands.Bot.status:1 of +msgid "The status being used upon logging on to Discord." +msgstr "" + +#: 1538eaf30f75407ab466133776dbc71e discord.ext.commands.Bot.stickers:1 of +msgid "The stickers that the connected client has." +msgstr "" + +#: discord.ext.commands.Bot.store_url:1 e5d3eb89db9845c5aec24b89323f4b32 of +msgid "The URL that leads to the application's store page for monetization." +msgstr "" + +#: 7f5438a9f9b340e0ab8f4b6c5f5cf6a3 discord.cog.CogMeta:37 +#: discord.cog.CogMeta:45 discord.ext.commands.Bot.store_url:5 +#: discord.ext.commands.HelpCommand.invoked_with:10 +#: discord.ext.commands.core.Command:10 discord.ext.commands.core.Command:79 +#: discord.ext.commands.errors.BadBoolArgument:11 +#: discord.ext.commands.errors.BadColourArgument:11 +#: discord.ext.commands.errors.ChannelNotFound:11 +#: discord.ext.commands.errors.CommandRegistrationError:12 +#: discord.ext.commands.errors.EmojiNotFound:11 +#: discord.ext.commands.errors.ExpectedClosingQuoteError:9 +#: discord.ext.commands.errors.GuildNotFound:11 +#: discord.ext.commands.errors.GuildStickerNotFound:11 +#: discord.ext.commands.errors.InvalidEndOfQuotedStringError:10 +#: discord.ext.commands.errors.MemberNotFound:12 +#: discord.ext.commands.errors.MessageNotFound:11 +#: discord.ext.commands.errors.PartialEmojiConversionFailure:12 +#: discord.ext.commands.errors.RoleNotFound:11 +#: discord.ext.commands.errors.ThreadNotFound:11 +#: discord.ext.commands.errors.UnexpectedQuoteError:9 +#: discord.ext.commands.errors.UserNotFound:12 +#: discord.ext.commands.flags.Flag:11 discord.ext.commands.flags.Flag:23 +#: discord.ext.commands.help.DefaultHelpCommand:49 +#: discord.ext.commands.help.DefaultHelpCommand:56 +#: discord.ext.commands.help.HelpCommand.command_not_found:14 +#: discord.ext.commands.help.HelpCommand.get_command_signature:8 +#: discord.ext.commands.help.HelpCommand.remove_mentions:6 +#: discord.ext.commands.help.HelpCommand.subcommand_not_found:22 +#: discord.ext.commands.help.MinimalHelpCommand:16 +#: discord.ext.commands.help.MinimalHelpCommand:23 +#: discord.ext.commands.help.MinimalHelpCommand:48 +#: discord.ext.commands.help.MinimalHelpCommand.get_command_signature:8 +#: discord.ext.commands.help.MinimalHelpCommand.get_ending_note:6 +#: discord.ext.commands.help.MinimalHelpCommand.get_opening_note:9 +#: discord.ext.commands.help.Paginator:13 +#: discord.ext.commands.help.Paginator:19 +#: discord.ext.commands.help.Paginator:34 of +msgid ":class:`str`" +msgstr "" + +#: 56dee18f303b43e79e6b6a77a2eadd69 +#: discord.bot.ApplicationCommandMixin.sync_commands:3 of +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 "" + +#: 2ab7c2937ad74760b370b73a6a8ba2ca +#: discord.bot.ApplicationCommandMixin.sync_commands:8 of +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 "" + +#: 76d41f32c4ba46cfbd8dd7155cf5bd05 +#: discord.bot.ApplicationCommandMixin.sync_commands:20 of +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 "" + +#: 952a63d7ebec443ea612b0602057c526 +#: discord.bot.ApplicationCommandMixin.sync_commands:27 of +msgid "" +"A list of commands to register. If this is not set (None), then all " +"commands will be registered." +msgstr "" + +#: discord.bot.ApplicationCommandMixin.sync_commands:39 +#: e8fe7f09dcf84062a21c87edb848005f of +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 "" + +#: 8f87ec3068be415190fee8343946adbf +#: discord.bot.ApplicationCommandMixin.sync_commands:43 of +msgid "Whether to register guild commands. Defaults to True." +msgstr "" + +#: discord.bot.ApplicationCommandMixin.sync_commands:46 +#: f5a29066bc064defbb80514c03a3f884 of +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 "" + +#: d3b66c696d4c429fa2944c1d45bf4f3e discord.cog.CogMixin.unload_extension:1 of +msgid "Unloads an extension." +msgstr "" + +#: 9a66a37183ff460ab14866054d375aeb discord.cog.CogMixin.unload_extension:3 of +msgid "" +"When the extension is unloaded, all commands, listeners, and cogs are " +"removed from the bot and the module is un-imported." +msgstr "" + +#: a598066c3fe44c7f8e0e5489ed9659e1 discord.cog.CogMixin.unload_extension:6 of +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 "" + +#: b32f49db4c9e4716a586f8f433a8babb discord.cog.CogMixin.unload_extension:12 of +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 "" + +#: b8bc526bb85d4212b18245588c6d2774 discord.cog.CogMixin.unload_extension:17 of +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 "" + +#: 38ab1a9d45e54b7f9b7a2df37263d789 discord.cog.CogMixin.unload_extension:17 of +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 "" + +#: 59b51e51c9d8441c8b1d6fa796ed8885 discord.cog.CogMixin.unload_extension:24 of +msgid "" +"The name of the extension could not be resolved using the provided " +"``package`` parameter." +msgstr "" + +#: 25ed7845b9674200a5ba81f4ea0a431d +#: discord.client.Client.update_role_connection_metadata_records:3 of +msgid "Updates the bot's role connection metadata records." +msgstr "" + +#: discord.client.Client.update_role_connection_metadata_records:8 +#: fa964cb583594724886c942b50bbb257 of +msgid "The new metadata records to send to Discord." +msgstr "" + +#: 896b8eabc98b4e468b4e0d752178c9b5 +#: discord.client.Client.update_role_connection_metadata_records:11 of +msgid "The updated role connection metadata records." +msgstr "" + +#: 65f4a38703104a058b05302678b5631e discord.ext.commands.Bot.user:1 of +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "" + +#: b2b91e77f7d741618fea041bc44a2047 +#: discord.bot.ApplicationCommandMixin.user_command:1 of +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 "" + +#: b1b309bd09ac4f3cba07626e0d84770e +#: discord.bot.ApplicationCommandMixin.user_command:7 of +msgid "" +"A decorator that converts the provided method into a " +":class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "" + +#: 43ff330447974841a60b8ce9ff1babcc +#: discord.bot.ApplicationCommandMixin.user_command:9 of +msgid "Callable[..., :class:`UserCommand`]" +msgstr "" + +#: 85e2b097c0464c2983971f8c305ef6db discord.ext.commands.Bot.users:1 of +msgid "Returns a list of all the users the bot can see." +msgstr "" + +#: abdc4c41e9c546b2b961ef5395b29fcf discord.ext.commands.Bot.voice_clients:1 of +msgid "Represents a list of voice connections." +msgstr "" + +#: 165917f65ed0449492cc9106a1860d96 discord.ext.commands.Bot.voice_clients:3 of +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "" + +#: 15de8e6d9e4640ca8681f96393db605e discord.client.Client.wait_for:3 of +msgid "Waits for a WebSocket event to be dispatched." +msgstr "" + +#: discord.client.Client.wait_for:5 f30e7c279c614fe78d5d370ebee54379 of +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 "" + +#: 7ffe4d5b36924c5fbf56359a276435bf discord.client.Client.wait_for:9 of +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 "" + +#: 68218290695e4d94a40a0dfa0e6f0eb7 discord.client.Client.wait_for:14 of +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 "" + +#: 891286b54b444d3e857a3e11ebd36f2c discord.client.Client.wait_for:19 of +msgid "This function returns the **first event that meets the requirements**." +msgstr "" + +#: 53489b7bb49642c6be5938b4b13c4a5d discord.client.Client.wait_for:22 of +msgid "" +"The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "" + +#: 6b6eeb0f83914b9cade3cb77db136009 discord.client.Client.wait_for:26 of +msgid "" +"A predicate to check what to wait for. The arguments must meet the " +"parameters of the event being waited for." +msgstr "" + +#: cdaf56492bf840f6bd28460c4343513a discord.client.Client.wait_for:30 of +msgid "" +"The number of seconds to wait before timing out and raising " +":exc:`asyncio.TimeoutError`." +msgstr "" + +#: a9dae933ab7e444fa98d09fc664439ac discord.client.Client.wait_for:34 of +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 "" + +#: c18ac7e53ef548b3b012fd24da33f00e discord.client.Client.wait_for:39 of +msgid "Raised if a timeout is provided and reached." +msgstr "" + +#: 1efb0f90994a4d09b084d196cd2dbd19 discord.client.Client.wait_for:43 of +msgid "Waiting for a user reply: ::" +msgstr "" + +#: discord.client.Client.wait_for:57 fec96c30c379416b9f9c0ee73ed2280d of +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "" + +#: 4e183d241d704c97af61ff44652e8970 discord.client.Client.wait_until_ready:3 of +msgid "Waits until the client's internal cache is all ready." +msgstr "" + +#: discord.bot.ApplicationCommandMixin.walk_application_commands:1 +#: e5f1e9c359cb4fd1a94239b501fb3078 of +msgid "" +"An iterator that recursively walks through all application commands and " +"subcommands." +msgstr "" + +#: 8cf9700f44cb4982999c7f0e06fae9a7 +#: discord.bot.ApplicationCommandMixin.walk_application_commands:3 of +msgid "" +":class:`.ApplicationCommand` -- An application command from the internal " +"list of application commands." +msgstr "" + +#: 1456f4943caa4b34a8e69f60b5a07808 +#: discord.ext.commands.core.GroupMixin.walk_commands:1 of +msgid "An iterator that recursively walks through all commands and subcommands." +msgstr "" + +#: 49f59fb863cd4209bd0f1f4182299127 +#: discord.ext.commands.core.GroupMixin.walk_commands:3 of +msgid "Duplicates due to aliases are no longer returned" +msgstr "" + +#: c046361221d6494fa948452872c5775c +#: discord.ext.commands.core.GroupMixin.walk_commands:6 of +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 "" + +#: c43ed20f7e3248c99243a25c12d9b7c9 discord.ext.commands.bot.AutoShardedBot:1 +#: of +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 "" + +#: 4c8b697e316940b296c4ff16559692be discord.ext.commands.bot.when_mentioned:1 +#: of +msgid "A callable that implements a command prefix equivalent to being mentioned." +msgstr "" + +#: 94c1395e027c46d6ade3d6e434844537 discord.ext.commands.bot.when_mentioned:3 +#: discord.ext.commands.bot.when_mentioned_or:3 of +msgid "" +"These are meant to be passed into the :attr:`.Bot.command_prefix` " +"attribute." +msgstr "" + +#: 871ad9b1ab9946a18c415864a779a250 discord.ext.commands.bot.when_mentioned:9 +#: of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ " +"\\\\\\[\\:py\\:class\\:\\`str\\`\\]`" +msgstr "" + +#: 23b7b72806634d609c92fb1e70fe4ad1 +#: discord.ext.commands.bot.when_mentioned_or:1 of +msgid "A callable that implements when mentioned or other prefixes provided." +msgstr "" + +#: 846bfc51b4944ad4983ff4d1d99850c1 +#: discord.ext.commands.bot.when_mentioned_or:5 of +msgid ":func:`.when_mentioned`" +msgstr "" + +#: c8eceea9e53d45cc97cfcbb42398acb9 +#: discord.ext.commands.bot.when_mentioned_or:15 of +msgid "" +"This callable returns another callable, so if this is done inside a " +"custom callable, you must call the returned callable, for example:" +msgstr "" + +#: c5b60bd7da7b4768b14a994651830b23 +#: discord.ext.commands.bot.when_mentioned_or:26 of +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 "" + +#: ../../ext/commands/api.rst:83 ../../ext/commands/api.rst:95 +#: ../../ext/commands/api.rst:105 08d36c605612426784eaf9ec301a665e +#: discord.ext.commands.flags.FlagConverter.convert:8 +#: discord.ext.commands.help.HelpCommand.on_help_command_error:12 +#: discord.ext.commands.help.HelpCommand.prepare_help_command:16 of +msgid "The invocation context." +msgstr "" + +#: ../../ext/commands/api.rst:85 7db908c9bd4146148c671612f1a21c16 +#: discord.ext.commands.help.HelpCommand.on_help_command_error:15 of +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 "" + +#: 708aede471434da3975092e896c74818 discord.ext.commands.core.command:1 of +msgid "" +"A decorator that transforms a function into a :class:`.Command` or if " +"called with :func:`.group`, :class:`.Group`." +msgstr "" + +#: c63fd729dfb8408dafe13dc7810919fa discord.ext.commands.core.command:4 of +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.command:9 e53325d7f3aa42c8a94797b99ede0e96 of +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 "" + +#: a0a1831b938245e4bc643705c843a97f discord.ext.commands.core.command:14 of +msgid "" +"The name to create the command with. By default, this uses the function " +"name unchanged." +msgstr "" + +#: 2dee1730ac3e4b508e2d0151bdc7b6fc discord.ext.commands.core.command:18 of +msgid "" +"The class to construct with. By default, this is :class:`.Command`. You " +"usually do not change this." +msgstr "" + +#: 8750c06b578949b2bec301ab09966274 discord.ext.commands.core.command:21 of +msgid "" +"Keyword arguments to pass into the construction of the class denoted by " +"``cls``." +msgstr "" + +#: 2164945e8ddc44eea1067cd31fd4dbee discord.ext.commands.core.command:24 of +msgid "If the function is not a coroutine or is already a command." +msgstr "" + +#: 578d8eb6b02947ff986b9f8f510ecdca discord.ext.commands.core.command:26 of +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 "" + +#: 55c95dbeda95432bbc44c8e8b1bbfb82 discord.ext.commands.core.group:1 of +msgid "A decorator that transforms a function into a :class:`.Group`." +msgstr "" + +#: 0bdb03a91ab2407e8b5340be7023af87 discord.ext.commands.core.group:3 of +msgid "" +"This is similar to the :func:`.command` decorator but the ``cls`` " +"parameter is set to :class:`Group` by default." +msgstr "" + +#: 7fb2f6d0e28b47be902cbe75c475e17f discord.ext.commands.core.group:6 of +msgid "The ``cls`` parameter can now be passed." +msgstr "" + +#: 9e786b12bf0e42e587114de4fa12b997 discord.ext.commands.core.group:15 of +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 "" + +#: b2740c0e271c45ffa31ee9e4ef9110d9 discord.ext.commands.core.Command:1 of +msgid "A class that implements the protocol for a bot text command." +msgstr "" + +#: 38d70fc6a98e49428906980496be477e discord.ext.commands.core.Command:3 of +msgid "" +"These are not created manually, instead they are created via the " +"decorator or functional interface." +msgstr "" + +#: discord.ext.commands.core.Command:8 fea00179db634bc3b5280d608f1aaf46 of +msgid "The name of the command." +msgstr "" + +#: 74f8737bef614b73b50cc19b5b1fedcc discord.ext.commands.core.Command:14 of +msgid "The coroutine that is executed when the command is called." +msgstr "" + +#: 724c19721b204ffcb58a102838f26c9c discord.ext.commands.core.Command:16 of +msgid ":ref:`coroutine `" +msgstr "" + +#: 9cbe2b0ec42e48bc9b35c83c82e2940a discord.ext.commands.core.Command:20 of +msgid "The long help text for the command." +msgstr "" + +#: 1cae6d584b4042669667b6b5b19e8ca7 2fa587e86d45443b9e8de44d3a40adb3 +#: discord.ext.commands.context.Context:50 +#: discord.ext.commands.context.Context:63 +#: discord.ext.commands.context.Context:90 discord.ext.commands.core.Command:22 +#: discord.ext.commands.core.Command:28 discord.ext.commands.core.Command:34 of +msgid "Optional[:class:`str`]" +msgstr "" + +#: b746e9e3fb354ee1a6d3769b00a98e29 discord.ext.commands.core.Command:26 of +msgid "The short help text for the command." +msgstr "" + +#: dd8d8fc9f64e45ef87981bb7bc7471f4 discord.ext.commands.core.Command:32 of +msgid "A replacement for arguments in the default help text." +msgstr "" + +#: 42fc2c295e1243b79b516d3c03109b96 discord.ext.commands.core.Command:38 of +msgid "The list of aliases the command can be invoked under." +msgstr "" + +#: cf54b9762201480cab2c561bc2d887c4 discord.ext.commands.core.Command:40 of +msgid "Union[List[:class:`str`], Tuple[:class:`str`]]" +msgstr "" + +#: 0a79f1e290f24adc8156b6f1bd32b74e discord.ext.commands.core.Command:44 of +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.Command:53 f54613a1d2e0437eb1091031a27cd79a of +msgid "" +"The parent group that this command belongs to. ``None`` if there isn't " +"one." +msgstr "" + +#: 3df23d8b3d4345098f4d4afd3baff1e2 discord.ext.commands.core.Command:56 of +msgid "Optional[:class:`Group`]" +msgstr "" + +#: d8e1092e543f43618448013b2110ca43 discord.ext.commands.core.Command:60 of +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "" + +#: 8244542dc8084a9da29dd9ff51c67359 discord.ext.commands.core.Command:66 of +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 "" + +#: 94ebb1d8ffa74c098316e5fc504e71fd discord.ext.commands.core.Command:73 of +msgid "List[Callable[[:class:`.Context`], :class:`bool`]]" +msgstr "" + +#: 145735dc029546e0a341c7629552a704 discord.ext.commands.core.Command:77 of +msgid "The message prefixed into the default help command." +msgstr "" + +#: 9e57d5cbe57144f392610c29de2f9c85 discord.ext.commands.core.Command:83 of +msgid "" +"If ``True``\\, the default help command does not show this in the help " +"output." +msgstr "" + +#: 14cac0f6a6ae461ab7fe5343e0f7f3d0 discord.ext.commands.core.Command:90 of +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 "" + +#: 093e94bdc8a74603b4cfab983620c699 discord.ext.commands.core.Command:101 of +msgid "The subcommand that was invoked, if any." +msgstr "" + +#: b9e5bf62202047d7a0dbd96c11552eb8 discord.ext.commands.core.Command:107 of +msgid "" +"If ``True`` and a variadic positional argument is specified, requires the" +" user to specify at least one argument. Defaults to ``False``." +msgstr "" + +#: 4d59accdbe704484b8e291b9fa4bcffd discord.ext.commands.core.Command:116 of +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.Command:125 f1dc7aea853f496cb8f912346dbd74ba of +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 "" + +#: acbffbc6ee1a4eae9845e9c260ca365f discord.ext.commands.core.Command:133 of +msgid "A dict of user provided extras to attach to the Command." +msgstr "" + +#: da23aa9c2f1b457c89b393dc1ce8d53d discord.ext.commands.core.Command:136 of +msgid "This object may be copied by the library." +msgstr "" + +#: bc8667441e1444d0897a7803d2b26f77 discord.cog.CogMeta:65 +#: discord.ext.commands.context.Context:35 +#: discord.ext.commands.core.Command:138 discord.ext.commands.core.GroupMixin:9 +#: discord.ext.commands.help.HelpCommand:44 of +msgid ":class:`dict`" +msgstr "" + +#: 349fc1bcfd9746f7be16678892cd7ec9 discord.ext.commands.core.Command:142 of +msgid "cooldown: Optional[:class:`Cooldown`]" +msgstr "" + +#: 8f08e59bec544f6fa289612f427d41a9 discord.ext.commands.core.Command:143 of +msgid "" +"The cooldown applied when the command is invoked. ``None`` if the command" +" doesn't have a cooldown." +msgstr "" + +#: 90e414e8d0b44cd79cab048aefdf6405 +#: discord.ext.commands.core.Command.after_invoke:1 +#: discord.ext.commands.core.after_invoke:1 of +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "" + +#: d32e1cac49544fd5ae400c1fba138334 +#: discord.ext.commands.core.Command.after_invoke:3 of +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 "" + +#: 51aa7afdb49f4da6ac20b1dcf6b57e06 +#: discord.ext.commands.core.Command.after_invoke:7 of +msgid "This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "" + +#: 19f8492ddfb9427abc3cde521480b85d +#: discord.ext.commands.core.Command.after_invoke:9 of +msgid "See :meth:`.Bot.after_invoke` for more info." +msgstr "" + +#: 7ae4c11caa124e808c7fb7b202116f45 +#: discord.ext.commands.core.Command.after_invoke:17 +#: discord.ext.commands.core.Command.before_invoke:17 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\" +" \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" +msgstr "" + +#: 855503b6108245fcb68107267c49085e +#: discord.ext.commands.core.Command.before_invoke:1 +#: discord.ext.commands.core.before_invoke:1 of +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "" + +#: cf73320a95f4476b80a6f070ab5b02e3 +#: discord.ext.commands.core.Command.before_invoke:3 of +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 "" + +#: 06e921e2b2fb4c21a72f500bd46a2810 +#: discord.ext.commands.core.Command.before_invoke:7 of +msgid "This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "" + +#: 40fdc1fda7b94b879512d0e996f8258d +#: discord.ext.commands.core.Command.before_invoke:9 of +msgid "See :meth:`.Bot.before_invoke` for more info." +msgstr "" + +#: discord.ext.commands.core.Command.error:1 e84346f5de634da79e860d51d22db014 +#: of +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "" + +#: discord.ext.commands.core.Command.error:3 f38c35e1e73e491699c0f0ddb73663c7 +#: of +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 "" + +#: 23a93b3beb964d8cbe69ad9ff6b02688 discord.ext.commands.core.Command.error:8 +#: of +msgid "The coroutine to register as the local error handler." +msgstr "" + +#: 20f06aa013104c82b4b355c39d43a727 discord.ext.commands.core.Command.error:13 +#: of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\" +" \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" +msgstr "" + +#: ad8decf8dfa04986bacfea9596033dc8 +#: discord.ext.commands.core.Command.add_check:1 of +msgid "Adds a check to the command." +msgstr "" + +#: ade7620bbb9c4a79a2272aa1abd4ec09 +#: discord.ext.commands.core.Command.add_check:3 of +msgid "This is the non-decorator interface to :func:`.check`." +msgstr "" + +#: 94e53b88c7864946aa8238fa03858fcf df2ebe85b1c24e0994ef469c4abbb696 +#: discord.ext.commands.core.Command.add_check:8 +#: discord.ext.commands.help.HelpCommand.add_check:6 of +msgid "The function that will be used as a check." +msgstr "" + +#: c9b66986248346dba1791fd1cb802588 +#: discord.ext.commands.core.Command.remove_check:1 of +msgid "Removes a check from the command." +msgstr "" + +#: 03c21e4d038949829e3d40810fc4b45d 765ac029ae7e480ab864cfded7dc1d08 +#: discord.ext.commands.core.Command.remove_check:3 +#: discord.ext.commands.help.HelpCommand.remove_check:3 of +msgid "" +"This function is idempotent and will not raise an exception if the " +"function is not in the command's checks." +msgstr "" + +#: 53d65f268cfb4a8ba97bcd294871ec32 dc6b6d44452748f48fb47d44228fb6fa +#: discord.ext.commands.core.Command.remove_check:9 +#: discord.ext.commands.help.HelpCommand.remove_check:9 of +msgid "The function to remove from the checks." +msgstr "" + +#: 2d740adac15a4ca48c6960d4946687a2 discord.ext.commands.core.Command.update:1 +#: of +msgid "Updates :class:`Command` instance with updated attribute." +msgstr "" + +#: 3420696530994c2dbd03cb86dbc54b25 discord.ext.commands.core.Command.update:3 +#: of +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 "" + +#: a94a96db6cea4071aed07dc63c09457a +#: discord.ext.commands.core.Command.__call__:3 of +msgid "Calls the internal callback that the command holds." +msgstr "" + +#: 06e2104d086e4245b4d7953660649bc0 +#: discord.ext.commands.core.Command.__call__:7 of +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 "" + +#: 71c24cc891e04432849002e8709dfdf0 +#: discord.ext.commands.context.Context.invoke:27 +#: discord.ext.commands.core.Command.__call__:19 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\" +" \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr "" + +#: 6cd1c8a959c040b78e73444a59627b2c discord.ext.commands.core.Command.copy:1 of +msgid "Creates a copy of this command." +msgstr "" + +#: 1db5a8f7327d4ba1a4f75c7409af2b59 discord.ext.commands.core.Command.copy:3 of +msgid "A new instance of this command." +msgstr "" + +#: c0493f185aa540c18c9db1724fd3fb0e discord.ext.commands.core.Command.copy:4 of +msgid ":class:`Command`" +msgstr "" + +#: 422208602e70468a8cc4695ddaf9285c discord.ext.commands.Command.clean_params:1 +#: discord.ext.commands.Group.clean_params:1 of +msgid "" +"Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter " +"dictionary without the context or self parameters." +msgstr "" + +#: 697abd5fedc04c189332444f2135a9ac discord.ext.commands.Command.clean_params:4 +#: discord.ext.commands.Group.clean_params:4 of +msgid "Useful for inspecting signature." +msgstr "" + +#: 512c2c1ea4184e77bfd168579929e201 +#: discord.ext.commands.Command.full_parent_name:1 +#: discord.ext.commands.Group.full_parent_name:1 of +msgid "Retrieves the fully qualified parent command name." +msgstr "" + +#: c3494ed24b134e688ac5f49b5eb047d7 +#: discord.ext.commands.Command.full_parent_name:3 +#: discord.ext.commands.Group.full_parent_name:3 of +msgid "" +"This the base command name required to execute it. For example, in ``?one" +" two three`` the parent name would be ``one two``." +msgstr "" + +#: b6e4c6ca7e85435f9351a14cbf9b2bcb discord.ext.commands.Command.parents:1 +#: discord.ext.commands.Group.parents:1 of +msgid "Retrieves the parents of this command." +msgstr "" + +#: 21ee38bff0764697b17dd22c2db5ed96 discord.ext.commands.Command.parents:3 +#: discord.ext.commands.Group.parents:3 of +msgid "If the command has no parents then it returns an empty :class:`list`." +msgstr "" + +#: 5eedd15d7f0045a89807cee976a97cc0 discord.ext.commands.Command.parents:5 +#: discord.ext.commands.Group.parents:5 of +msgid "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." +msgstr "" + +#: discord.ext.commands.Command.root_parent:1 +#: discord.ext.commands.Group.root_parent:1 e65c9a5c570a416f969edeec9068e39a of +msgid "Retrieves the root parent of this command." +msgstr "" + +#: 2f1f6da9123b4f4aa3d0a56f508f3e3b discord.ext.commands.Command.root_parent:3 +#: discord.ext.commands.Group.root_parent:3 of +msgid "If the command has no parents then it returns ``None``." +msgstr "" + +#: 6521e09bdf944e6db9d3f60cbe90b65f discord.ext.commands.Command.root_parent:5 +#: discord.ext.commands.Group.root_parent:5 of +msgid "For example in commands ``?a b c test``, the root parent is ``a``." +msgstr "" + +#: bcf9477a72ac4c729bb905cfcb4e2405 +#: discord.ext.commands.Command.qualified_name:1 +#: discord.ext.commands.Group.qualified_name:1 of +msgid "Retrieves the fully qualified command name." +msgstr "" + +#: d070d67e1ecf455b8dfd8194fa5d3e29 +#: discord.ext.commands.Command.qualified_name:3 +#: discord.ext.commands.Group.qualified_name:3 of +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 "" + +#: 30141c30cc364576aac449f316b52da0 +#: discord.ext.commands.core.Command.is_on_cooldown:1 of +msgid "Checks whether the command is currently on cooldown." +msgstr "" + +#: 6e7a91b24b664b699c0791b676c4aaac +#: discord.ext.commands.core.Command.is_on_cooldown:4 of +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "" + +#: b4eff87099ad4ac9852614c8f3eb7862 +#: discord.ext.commands.core.Command.is_on_cooldown:7 of +msgid "A boolean indicating if the command is on cooldown." +msgstr "" + +#: 8a5495bda5cb470183ef2086755ce0f0 +#: discord.ext.commands.core.Command.reset_cooldown:1 of +msgid "Resets the cooldown on this command." +msgstr "" + +#: ca312cee971a438abb381bf66fb2cbff +#: discord.ext.commands.core.Command.reset_cooldown:4 of +msgid "The invocation context to reset the cooldown under." +msgstr "" + +#: 51fa09d7f11f43a1b781787a52ce8436 +#: discord.ext.commands.core.Command.get_cooldown_retry_after:1 of +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "" + +#: 45878d40a5fa4890ad42de0e8e9edc6e +#: discord.ext.commands.core.Command.get_cooldown_retry_after:6 of +msgid "The invocation context to retrieve the cooldown from." +msgstr "" + +#: discord.ext.commands.core.Command.get_cooldown_retry_after:9 +#: fdf38ba24dc14b689ad1e1eab70c6c1d of +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 "" + +#: 34090bfda6e1409eb479e3b919bede99 discord.ext.commands.cooldowns.Cooldown:13 +#: discord.ext.commands.cooldowns.Cooldown.get_retry_after:9 +#: discord.ext.commands.core.Command.get_cooldown_retry_after:11 +#: discord.ext.commands.errors.CommandOnCooldown:22 of +msgid ":class:`float`" +msgstr "" + +#: 3970666bdb78497b8d5a65197482a7bc +#: discord.ext.commands.core.Command.has_error_handler:1 of +msgid "" +"Checks whether the command has an error handler registered. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: a5a5f0ae305348feb8f1456838a1ee4a discord.ext.commands.Command.cog_name:1 +#: discord.ext.commands.Group.cog_name:1 of +msgid "The name of the cog this command belongs to, if any." +msgstr "" + +#: a359e8b0858f4bff80df0d29205d3ab0 discord.ext.commands.Command.short_doc:1 +#: discord.ext.commands.Group.short_doc:1 of +msgid "Gets the \"short\" documentation of a command." +msgstr "" + +#: 8f95d0a88a984f439e3dadb59ef199aa discord.ext.commands.Command.short_doc:3 +#: discord.ext.commands.Group.short_doc:3 of +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 "" + +#: 0c0b9317fcac46ecae100cfc277bf9f6 discord.ext.commands.Command.signature:1 +#: discord.ext.commands.Group.signature:1 of +msgid "Returns a POSIX-like signature useful for help command output." +msgstr "" + +#: cc5fd641e6244884961560f59e53c689 discord.ext.commands.core.Command.can_run:3 +#: of +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 "" + +#: 3950bda5fbf14e40adee997651342820 discord.ext.commands.core.Command.can_run:7 +#: of +msgid "Checks whether the command is disabled or not" +msgstr "" + +#: a6de3b877d0e4c7a991b4259bdb1f086 +#: discord.ext.commands.core.Command.can_run:11 of +msgid "The ctx of the command currently being invoked." +msgstr "" + +#: discord.ext.commands.core.Command.can_run:14 +#: ff73ac563b12400cbce6a1ad1f8c9d09 of +msgid "A boolean indicating if the command can be invoked." +msgstr "" + +#: 076a8f5c048c40b2bcc438d5a1ea5158 +#: discord.ext.commands.core.Command.can_run:17 of +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 "" + +#: 65da7b12e7ed47018fbcd2ff170d1f42 discord.ext.commands.core.Group:1 of +msgid "" +"A class that implements a grouping protocol for commands to be executed " +"as subcommands." +msgstr "" + +#: 44ff4fdaef554c62906b9c12c2cd9e96 discord.ext.commands.core.Group:4 of +msgid "" +"This class is a subclass of :class:`.Command` and thus all options valid " +"in :class:`.Command` are valid in here as well." +msgstr "" + +#: cd807d5e802148398e05f6c146d7f48a discord.ext.commands.core.Group:9 of +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 "" + +#: 91d77491c49d418ebb264e030f237dc4 discord.ext.commands.core.Group:22 of +msgid "" +"Indicates if the group's commands should be case-insensitive. Defaults to" +" ``False``." +msgstr "" + +#: b43b4fa9017b4d8f854052a65d37b34b discord.ext.commands.core.Group.copy:1 of +msgid "Creates a copy of this :class:`Group`." +msgstr "" + +#: bc8bbf36168a464287d18919b8ea1f56 discord.ext.commands.core.Group.copy:3 of +msgid "A new instance of this group." +msgstr "" + +#: 479727513b454596af0d83565a93505c discord.ext.commands.core.Group.copy:4 of +msgid ":class:`Group`" +msgstr "" + +#: ../../ext/commands/api.rst:167 843f0ae741c841bfa76f1b6f1d03c365 +msgid "GroupMixin" +msgstr "" + +#: b31eb1a7344948f0a4b726060f32dcc5 discord.ext.commands.core.GroupMixin:1 of +msgid "" +"A mixin that implements common functionality for classes that behave " +"similar to :class:`.Group` and are allowed to register commands." +msgstr "" + +#: 01122ecc57164cf2a9d1668806c98ec7 discord.ext.commands.core.GroupMixin:6 of +msgid "A mapping of command name to :class:`.Command` objects." +msgstr "" + +#: b98c3fc6b795488fbf03190087b1ed2e discord.ext.commands.core.GroupMixin:13 of +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 "" + +#: 1456f4943caa4b34a8e69f60b5a07808 +#: discord.ext.commands.cog.Cog.walk_commands:1 of +msgid "" +"An iterator that recursively walks through this cog's commands and " +"subcommands." +msgstr "" + +#: b0889f2d31ab45d59206aac0730ee26b +#: discord.ext.commands.cog.Cog.walk_commands:3 of +msgid "" +"Union[:class:`.Command`, :class:`.Group`] -- A command or group from the " +"cog." +msgstr "" + +#: discord.ext.commands.cog.Cog.get_commands:1 e903471dee0946f698493b70bbd6bfff +#: of +msgid "" +"A :class:`list` of commands that are defined inside this cog. .. note::" +" This does not include subcommands." +msgstr "" + +#: 10b1036c1fb04d5fadf115fd0156dc7d discord.ext.commands.cog.Cog.get_commands:1 +#: of +msgid "A :class:`list` of commands that are defined inside this cog." +msgstr "" + +#: c8f8940e1a334d72ace74656658dc636 discord.ext.commands.cog.Cog.get_commands:5 +#: of +msgid "This does not include subcommands." +msgstr "" + +#: 4eef2169b57545a39732b35f19317928 discord.ext.commands.cog.Cog.get_commands:6 +#: of +msgid "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" +msgstr "" + +#: ../../ext/commands/api.rst:195 9ffc5edca62a4591b776577d4c3be17a +msgid "CogMeta" +msgstr "" + +#: 6d3498e089d64e64bd39b02748feed7a discord.cog.CogMeta:1 of +msgid "A metaclass for defining a cog." +msgstr "" + +#: 818b7abc0e4e4c92ad300745b12e67f3 discord.cog.CogMeta:3 of +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 "" + +#: 14bca144e04f49f2b6a2ffa5bd12bb21 discord.cog.CogMeta:7 of +msgid "" +"For example, to create an abstract cog mixin class, the following would " +"be done." +msgstr "" + +#: 8541d72ae9d240c5853b5b012bac5870 discord.cog.CogMeta:24 of +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 "" + +#: 4d0773ce7be443b3b02b0723cfa9ee2a discord.cog.CogMeta:35 of +msgid "" +"The cog name. By default, it is the name of the class with no " +"modification." +msgstr "" + +#: dbc8e995b5204e4b90abebe755df26d2 discord.cog.CogMeta:41 of +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "" + +#: 005387bb127242fc80381666a6e1faf3 discord.cog.CogMeta:49 of +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.CogMeta:69 e654676f10784a318be772baf59e50ac of +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.CogMeta:74 f873bb0240304b34b00b4783ad8f63aa of +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 "" + +#: 3728d038715e49f5a3791584fce2a04c discord.ext.commands.help.HelpCommand:1 of +msgid "The base implementation for help command formatting." +msgstr "" + +#: 4bf99b5a33634da38019379fa568c795 discord.ext.commands.help.HelpCommand:5 of +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 "" + +#: 57d8ce635a7c4dfd85c2969ac2a3326d discord.ext.commands.help.HelpCommand:9 of +msgid "" +"This means that relying on the state of this class to be the same between" +" command invocations would not work as expected." +msgstr "" + +#: 8c76b92e97954a5fb2a3b8af6e6cc3db discord.ext.commands.help.HelpCommand:14 of +msgid "" +"The context that invoked this help formatter. This is generally set after" +" the help command assigned, :func:`command_callback`\\, has been called." +msgstr "" + +#: 92aebe5e9b4d4fecaa3da5db20b743c7 discord.ext.commands.help.HelpCommand:17 of +msgid "Optional[:class:`Context`]" +msgstr "" + +#: 28d3ba87fb3143faafc7eb87f9d151bf discord.ext.commands.help.HelpCommand:21 of +msgid "" +"Specifies if hidden commands should be shown in the output. Defaults to " +"``False``." +msgstr "" + +#: 1ec7123c827d411a81fe0bee61f34a24 discord.ext.commands.help.HelpCommand:28 of +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 "" + +#: 308cf1e234b44a168f5eb03f15d8e8be +#: discord.ext.commands.help.DefaultHelpCommand:29 +#: discord.ext.commands.help.HelpCommand:35 +#: discord.ext.commands.help.MinimalHelpCommand:34 of +msgid "Optional[:class:`bool`]" +msgstr "" + +#: 1ccdbf4b50b44ab0b1fd37f54bd29a43 discord.ext.commands.help.HelpCommand:39 of +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 "" + +#: c57ad58f60af400783c843a1cebeb8b7 +#: discord.ext.commands.help.HelpCommand.add_check:1 of +msgid "Adds a check to the help command." +msgstr "" + +#: 54b841f106a3437e9947dfc91d5d0e84 +#: discord.ext.commands.help.HelpCommand.remove_check:1 of +msgid "Removes a check from the help command." +msgstr "" + +#: 59fa9d80d1b34f4bb1a23eb82603def1 +#: discord.ext.commands.help.HelpCommand.get_bot_mapping:1 of +msgid "Retrieves the bot mapping passed to :meth:`send_bot_help`." +msgstr "" + +#: discord.ext.commands.HelpCommand.invoked_with:1 +#: fe94b765ac834e9bb6aa25e17682999d of +msgid "" +"Similar to :attr:`Context.invoked_with` except properly handles the case " +"where :meth:`Context.send_help` is used." +msgstr "" + +#: bad68c0718fe4f8dbbd049e0bb78b35a +#: discord.ext.commands.HelpCommand.invoked_with:4 of +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 "" + +#: 9605ca58dc7540ba809f5b9944de8e93 +#: discord.ext.commands.HelpCommand.invoked_with:9 of +msgid "The command name that triggered this invocation." +msgstr "" + +#: 9d4ac7ff40e040b3b6a9aeb703e66c99 +#: discord.ext.commands.help.HelpCommand.get_command_signature:1 +#: discord.ext.commands.help.MinimalHelpCommand.get_command_signature:1 of +msgid "Retrieves the signature portion of the help page." +msgstr "" + +#: b3103498c74f46489696da57302a113e +#: discord.ext.commands.help.HelpCommand.get_command_signature:4 +#: discord.ext.commands.help.MinimalHelpCommand.get_command_signature:4 of +msgid "The command to get the signature of." +msgstr "" + +#: 0870226ae3fd45bbb1d7b250eedd749c +#: discord.ext.commands.help.HelpCommand.get_command_signature:7 +#: discord.ext.commands.help.MinimalHelpCommand.get_command_signature:7 of +msgid "The signature for the command." +msgstr "" + +#: a2e753b9567a47f8bc8fa70e5ad3c66d +#: discord.ext.commands.help.HelpCommand.remove_mentions:1 of +msgid "Removes mentions from the string to prevent abuse." +msgstr "" + +#: 1ba0ed368b63426894a070cbaab0c580 +#: discord.ext.commands.help.HelpCommand.remove_mentions:3 of +msgid "This includes ``@everyone``, ``@here``, member mentions and role mentions." +msgstr "" + +#: 818a2ecc265d46fca2d1e230a5e1256f +#: discord.ext.commands.help.HelpCommand.remove_mentions:5 of +msgid "The string with mentions removed." +msgstr "" + +#: 6733db68c82649d2ad2b96e2b5b0606a discord.ext.commands.HelpCommand.cog:1 of +msgid "A property for retrieving or setting the cog for the help command." +msgstr "" + +#: discord.ext.commands.HelpCommand.cog:3 f0a6d3eda29d4e77884be9d27dc414c3 of +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 "" + +#: bd2865c7de154f0393060ce06ec5c389 discord.ext.commands.HelpCommand.cog:7 of +msgid "To unbind the cog from the help command, you can set it to ``None``." +msgstr "" + +#: b572e133ce4f4e49afc52d6cf5f868fc discord.ext.commands.HelpCommand.cog:9 of +msgid "The cog that is currently set for the help command." +msgstr "" + +#: a9b1544b7406441bbc26c947190156a5 +#: discord.ext.commands.help.HelpCommand.command_not_found:1 +#: discord.ext.commands.help.HelpCommand.subcommand_not_found:1 of +msgid "|maybecoro|" +msgstr "" + +#: 11b6366f06024bc18f31f51384b84719 +#: discord.ext.commands.help.HelpCommand.command_not_found:3 of +msgid "" +"A method called when a command is not found in the help command. This is " +"useful to override for i18n." +msgstr "" + +#: 870b0c00321c4963b624a270b9ec77ad +#: discord.ext.commands.help.HelpCommand.command_not_found:6 of +msgid "Defaults to ``No command called {0} found.``" +msgstr "" + +#: a7682b9639e94a5f8c68412a2d7a34bd +#: discord.ext.commands.help.HelpCommand.command_not_found:9 of +msgid "" +"The string that contains the invalid command. Note that this has had " +"mentions removed to prevent abuse." +msgstr "" + +#: discord.ext.commands.help.HelpCommand.command_not_found:13 +#: f966be26463f407884dbcda0640ec7c1 of +msgid "The string to use when a command has not been found." +msgstr "" + +#: 90f61b1e8c2b42159ea4d0f65e3ab6be +#: discord.ext.commands.help.HelpCommand.subcommand_not_found:3 of +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 "" + +#: 04095c7b194645cc8c006f273579b8b7 +#: discord.ext.commands.help.HelpCommand.subcommand_not_found:6 of +msgid "Defaults to either:" +msgstr "" + +#: bd93202046e7474bbfd1271fb5aebfa7 +#: discord.ext.commands.help.HelpCommand.subcommand_not_found:8 of +msgid "``'Command \"{command.qualified_name}\" has no subcommands.'``" +msgstr "" + +#: 2f9dbb03410e41b39b38db1520d17207 +#: discord.ext.commands.help.HelpCommand.subcommand_not_found:9 of +msgid "If there is no subcommand in the ``command`` parameter." +msgstr "" + +#: 1bd86a8162e147a2b78964b23a6da060 +#: discord.ext.commands.help.HelpCommand.subcommand_not_found:10 of +msgid "" +"``'Command \"{command.qualified_name}\" has no subcommand named " +"{string}'``" +msgstr "" + +#: d742621c65014debaf4e6ef8da190d11 +#: discord.ext.commands.help.HelpCommand.subcommand_not_found:11 of +msgid "If the ``command`` parameter has subcommands but not one named ``string``." +msgstr "" + +#: c7f990e681054582bab785f391126075 +#: discord.ext.commands.help.HelpCommand.subcommand_not_found:14 of +msgid "The command that did not have the subcommand requested." +msgstr "" + +#: de81605a27384dbb9bfee27cb9f993c6 +#: discord.ext.commands.help.HelpCommand.subcommand_not_found:17 of +msgid "" +"The string that contains the invalid subcommand. Note that this has had " +"mentions removed to prevent abuse." +msgstr "" + +#: bf836e28f2c04c2cb1c3ceb955a4c816 +#: discord.ext.commands.help.HelpCommand.subcommand_not_found:21 of +msgid "The string to use when the command did not have the subcommand requested." +msgstr "" + +#: 8cdeecd1f78a45a490d0b086b59dbfea +#: discord.ext.commands.help.HelpCommand.filter_commands:3 of +msgid "Returns a filtered list of commands and optionally sorts them." +msgstr "" + +#: c3c2bdabbbf04ae289fa869f1aac253a +#: discord.ext.commands.help.HelpCommand.filter_commands:5 of +msgid "" +"This takes into account the :attr:`verify_checks` and :attr:`show_hidden`" +" attributes." +msgstr "" + +#: 2e41bb491bbf4887818e70951501c8c3 +#: discord.ext.commands.help.HelpCommand.filter_commands:9 of +msgid "An iterable of commands that are getting filtered." +msgstr "" + +#: discord.ext.commands.help.HelpCommand.filter_commands:12 +#: e8074b04eb1b465ca6f97d8caa66f96c of +msgid "Whether to sort the result." +msgstr "" + +#: discord.ext.commands.help.HelpCommand.filter_commands:15 +#: f82defb618954648af121dc1a4a87f4f of +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 "" + +#: 9f05a77eef2445268d540b4f9653f322 +#: discord.ext.commands.help.HelpCommand.filter_commands:20 of +msgid "A list of commands that passed the filter." +msgstr "" + +#: 0722f1eb0d854e748d5363eedae8ec27 +#: discord.ext.commands.help.HelpCommand.filter_commands:21 of +msgid "List[:class:`Command`]" +msgstr "" + +#: 1d7ab689f36d49ea84a4187da695f2cd +#: discord.ext.commands.help.HelpCommand.get_max_size:1 of +msgid "Returns the largest name length of the specified command list." +msgstr "" + +#: b0df17a168244fc881783a67405bc86d +#: discord.ext.commands.help.HelpCommand.get_max_size:4 of +msgid "A sequence of commands to check for the largest size." +msgstr "" + +#: 638a8223116c44afbc70a3490dc30977 +#: discord.ext.commands.help.HelpCommand.get_max_size:7 of +msgid "The maximum width of the commands." +msgstr "" + +#: 36db3ba452e247c3ad141758bb50a822 discord.ext.commands.cooldowns.Cooldown:7 +#: discord.ext.commands.cooldowns.Cooldown.get_tokens:9 +#: discord.ext.commands.errors.MaxConcurrencyReached:9 +#: discord.ext.commands.flags.Flag:42 +#: discord.ext.commands.help.DefaultHelpCommand:12 +#: discord.ext.commands.help.DefaultHelpCommand:42 +#: discord.ext.commands.help.HelpCommand.get_max_size:8 +#: discord.ext.commands.help.Paginator:25 of +msgid ":class:`int`" +msgstr "" + +#: 11d5736edd904be0909712cba6262a08 +#: discord.ext.commands.help.DefaultHelpCommand.get_destination:1 +#: discord.ext.commands.help.HelpCommand.get_destination:1 +#: discord.ext.commands.help.MinimalHelpCommand.get_destination:1 of +msgid "" +"Returns the :class:`~discord.abc.Messageable` where the help command will" +" be output." +msgstr "" + +#: 0da023124b764228803413e8e928ba2e 0fff7255071443deb952fb069385e343 +#: 221263475094489f990e402ae86805f6 4c8415699f38454caa3f28ff7645e137 +#: discord.ext.commands.help.DefaultHelpCommand.get_destination:3 +#: discord.ext.commands.help.HelpCommand.get_destination:3 +#: discord.ext.commands.help.HelpCommand.send_bot_help:11 +#: discord.ext.commands.help.HelpCommand.send_cog_help:11 +#: discord.ext.commands.help.HelpCommand.send_command_help:10 +#: discord.ext.commands.help.HelpCommand.send_error_message:6 +#: discord.ext.commands.help.HelpCommand.send_group_help:11 +#: discord.ext.commands.help.MinimalHelpCommand.get_destination:3 +#: f8c115ff7057440482dceb4d05d3c394 of +msgid "You can override this method to customise the behaviour." +msgstr "" + +#: 7463ee9371c746469ce380c3c6a9f69b +#: discord.ext.commands.help.DefaultHelpCommand.get_destination:5 +#: discord.ext.commands.help.HelpCommand.get_destination:5 +#: discord.ext.commands.help.MinimalHelpCommand.get_destination:5 of +msgid "By default, this returns the context's channel." +msgstr "" + +#: d4a4dc4660df41218b1ef139ba681fc6 +#: discord.ext.commands.help.DefaultHelpCommand.get_destination:7 +#: discord.ext.commands.help.HelpCommand.get_destination:7 +#: discord.ext.commands.help.MinimalHelpCommand.get_destination:7 of +msgid "The destination where the help command will be output." +msgstr "" + +#: 22ac12821be84e64abe4208c66e428ca +#: discord.ext.commands.help.DefaultHelpCommand.get_destination:8 +#: discord.ext.commands.help.HelpCommand.get_destination:8 +#: discord.ext.commands.help.MinimalHelpCommand.get_destination:8 of +msgid ":class:`.abc.Messageable`" +msgstr "" + +#: discord.ext.commands.help.HelpCommand.send_error_message:3 +#: ecf08844becf48199a5aba387a75a395 of +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 "" + +#: 91bb9645a42e40298a5fa110a0f0f035 +#: discord.ext.commands.help.HelpCommand.send_error_message:8 of +msgid "" +"By default, this sends the error message to the destination specified by " +":meth:`get_destination`." +msgstr "" + +#: 145f3f00a2854c308de39ac9f2935d3d 1a16d349e6b147ea8072bbe46e99443b +#: 44d8a4471f8d46199d03cf08d9d852fb bb2b8cf7f8da4ab498331b3d6bfb0f42 +#: discord.ext.commands.help.HelpCommand.send_bot_help:15 +#: discord.ext.commands.help.HelpCommand.send_cog_help:15 +#: discord.ext.commands.help.HelpCommand.send_command_help:14 +#: discord.ext.commands.help.HelpCommand.send_error_message:13 +#: discord.ext.commands.help.HelpCommand.send_group_help:15 of +msgid "You can access the invocation context with :attr:`HelpCommand.context`." +msgstr "" + +#: discord.ext.commands.help.HelpCommand.send_error_message:16 +#: f7931984f74a4af5a0f13a3131100e8f of +msgid "" +"The error message to display to the user. Note that this has had mentions" +" removed to prevent abuse." +msgstr "" + +#: 62a23463e67743778ff5b5ffda0e1cb5 +#: discord.ext.commands.help.HelpCommand.on_help_command_error:3 of +msgid "" +"The help command's error handler, as specified by " +":ref:`ext_commands_error_handler`." +msgstr "" + +#: 2b2100cd275e4909a0cc009c6a3d63d9 +#: discord.ext.commands.help.HelpCommand.on_help_command_error:5 of +msgid "" +"Useful to override if you need some specific behaviour when the error " +"handler is called." +msgstr "" + +#: discord.ext.commands.help.HelpCommand.on_help_command_error:8 +#: f9b68e3eab0e4186b0e12bab0d4c59e5 of +msgid "" +"By default, this method does nothing and just propagates to the default " +"error handlers." +msgstr "" + +#: b1bcd236de8d485e97c9dcf3a2b6c09c +#: discord.ext.commands.help.HelpCommand.send_bot_help:3 of +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 "" + +#: 2d550440e5cf4edc8ced1cacaeea627b 8733bb9051b04e2f91d902a402af6929 +#: 92cd46fd01884b549196ce7d6f3affaf d2912db2232849caa145cdcedd335057 +#: discord.ext.commands.help.HelpCommand.send_bot_help:6 +#: discord.ext.commands.help.HelpCommand.send_cog_help:6 +#: discord.ext.commands.help.HelpCommand.send_command_help:5 +#: discord.ext.commands.help.HelpCommand.send_group_help:6 of +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 "" + +#: b39a59a79b09468a9c8275ebfce85a16 +#: discord.ext.commands.help.HelpCommand.send_bot_help:17 of +msgid "" +"Also, the commands in the mapping are not filtered. To do the filtering " +"you will have to call :meth:`filter_commands` yourself." +msgstr "" + +#: 02dcb1f0bd02493bbe5ae9e872616207 +#: discord.ext.commands.help.HelpCommand.send_bot_help:21 of +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 "" + +#: a828d648b1ea4065b69f360aaf334a2e +#: discord.ext.commands.help.HelpCommand.send_cog_help:3 of +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 "" + +#: 0fca5ad2726a4da3aa2b4cd57bc85212 +#: discord.ext.commands.help.HelpCommand.send_cog_help:17 of +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 "" + +#: 98ac7e67a5fa4e958a227fe3594c0796 +#: discord.ext.commands.help.HelpCommand.send_cog_help:22 of +msgid "The cog that was requested for help." +msgstr "" + +#: 27ac13aaf6a54dcd9614dba2b03d98c9 +#: discord.ext.commands.help.HelpCommand.send_group_help:3 of +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 "" + +#: 8bc4bcfb9f3141838dbe400cd555c11c +#: discord.ext.commands.help.HelpCommand.send_group_help:17 of +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 "" + +#: 481ed9cbfcfe4d5c945aedb7f564be2e +#: discord.ext.commands.help.HelpCommand.send_group_help:22 of +msgid "The group that was requested for help." +msgstr "" + +#: 55e69ff04387467396ff5f080c4b729c +#: discord.ext.commands.help.HelpCommand.send_command_help:3 of +msgid "Handles the implementation of the single command page in the help command." +msgstr "" + +#: 15230ebc88374c4696b38f30fd9070a2 +#: discord.ext.commands.help.HelpCommand.send_command_help:16 of +msgid "Showing Help" +msgstr "" + +#: discord.ext.commands.help.HelpCommand.send_command_help:19 +#: e5bdf0c519cc42b5ba11a16bd65b33aa of +msgid "" +"There are certain attributes and methods that are helpful for a help " +"command to show such as the following:" +msgstr "" + +#: 3491b2a4d9d74002b8ead57973164b4f +#: discord.ext.commands.help.HelpCommand.send_command_help:22 of +msgid ":attr:`Command.help`" +msgstr "" + +#: 0d6cc8451c074f339f08d2ea9ff6f289 +#: discord.ext.commands.help.HelpCommand.send_command_help:23 of +msgid ":attr:`Command.brief`" +msgstr "" + +#: discord.ext.commands.help.HelpCommand.send_command_help:24 +#: fd4e0a0770cb4dd583602d3067e81b24 of +msgid ":attr:`Command.short_doc`" +msgstr "" + +#: 76ce4a6e88d444ecbad32de75bc5fe22 +#: discord.ext.commands.help.HelpCommand.send_command_help:25 of +msgid ":attr:`Command.description`" +msgstr "" + +#: 20889f14e1744f53bf91b3810fd8bf36 +#: discord.ext.commands.help.HelpCommand.send_command_help:26 of +msgid ":meth:`get_command_signature`" +msgstr "" + +#: 3049f2cecc1b439da3d78baacd2005e2 +#: discord.ext.commands.help.HelpCommand.send_command_help:28 of +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 "" + +#: 0a14d7e642ed4889b30688b6c0048821 +#: discord.ext.commands.help.HelpCommand.send_command_help:32 of +msgid "The command that was requested for help." +msgstr "" + +#: 404a74fe43794d0fbed34f5c3d1ea920 +#: discord.ext.commands.help.HelpCommand.prepare_help_command:3 of +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 "" + +#: 85592828042a4467a6777ebda074bc0c +#: discord.ext.commands.help.HelpCommand.prepare_help_command:8 +#: discord.ext.commands.help.MinimalHelpCommand.get_ending_note:3 of +msgid "The default implementation does nothing." +msgstr "" + +#: discord.ext.commands.help.HelpCommand.prepare_help_command:12 +#: ea87701788ad4a47b061de81d0fe4850 of +msgid "" +"This is called *inside* the help command callback body. So all the usual " +"rules that happen inside apply here as well." +msgstr "" + +#: 210b8f6390bb4dc69b4eadd6b4ddfc9b +#: discord.ext.commands.help.HelpCommand.prepare_help_command:19 of +msgid "The argument passed to the help command." +msgstr "" + +#: 11a8f56569d6415181816fa4eefa4fb6 +#: discord.ext.commands.help.HelpCommand.command_callback:3 of +msgid "The actual implementation of the help command." +msgstr "" + +#: b6cdc3d230bc4daca9399775d44f4ce2 +#: discord.ext.commands.help.HelpCommand.command_callback:5 of +msgid "" +"It is not recommended to override this method and instead change the " +"behaviour through the methods that actually get dispatched." +msgstr "" + +#: 3f473bec01bb44ac91e8ff68715f11e9 +#: discord.ext.commands.help.HelpCommand.command_callback:8 of +msgid ":meth:`send_bot_help`" +msgstr "" + +#: 80edd5df25254ff99b0ad02aa9274411 +#: discord.ext.commands.help.HelpCommand.command_callback:9 of +msgid ":meth:`send_cog_help`" +msgstr "" + +#: discord.ext.commands.help.HelpCommand.command_callback:10 +#: eb6bdd4d05734e8991acd54e5104d075 of +msgid ":meth:`send_group_help`" +msgstr "" + +#: 6dee8753a3564294b028a06230aeb65f +#: discord.ext.commands.help.HelpCommand.command_callback:11 of +msgid ":meth:`send_command_help`" +msgstr "" + +#: 3c5f3d8e5cbe4e5aaa7c3f131a3045de +#: discord.ext.commands.help.HelpCommand.command_callback:12 of +msgid ":meth:`get_destination`" +msgstr "" + +#: 39474771f7684d45b5373b17b69f2f6e +#: discord.ext.commands.help.HelpCommand.command_callback:13 of +msgid ":meth:`command_not_found`" +msgstr "" + +#: discord.ext.commands.help.HelpCommand.command_callback:14 +#: f3c5d3d6839c4af5ba7d4184930ea80f of +msgid ":meth:`subcommand_not_found`" +msgstr "" + +#: d5005de494d94770b7117858517d4bad +#: discord.ext.commands.help.HelpCommand.command_callback:15 of +msgid ":meth:`send_error_message`" +msgstr "" + +#: 83cbfb0f715e49a2a63f2b66d6fc98ff +#: discord.ext.commands.help.HelpCommand.command_callback:16 of +msgid ":meth:`on_help_command_error`" +msgstr "" + +#: 05293fc84d7d40f29448138536a0d84d +#: discord.ext.commands.help.HelpCommand.command_callback:17 of +msgid ":meth:`prepare_help_command`" +msgstr "" + +#: ../../ext/commands/api.rst:216 280052a3bfce4f8a8146f4f398509707 +msgid "DefaultHelpCommand" +msgstr "" + +#: 9de62005f62e44ff9931e1d9a2f0d6a2 +#: discord.ext.commands.help.DefaultHelpCommand:1 of +msgid "The implementation of the default help command." +msgstr "" + +#: 98cc93d14ebe483c8ea65f00dd5b35bb +#: discord.ext.commands.help.DefaultHelpCommand:3 +#: discord.ext.commands.help.MinimalHelpCommand:3 of +msgid "This inherits from :class:`HelpCommand`." +msgstr "" + +#: 2d8f18b9ac2a4f7ebcfbc98885b666e5 +#: discord.ext.commands.help.DefaultHelpCommand:5 of +msgid "It extends it with the following attributes." +msgstr "" + +#: df8735e1f5c348a88ce9829e4c3bd4da +#: discord.ext.commands.help.DefaultHelpCommand:9 of +msgid "The maximum number of characters that fit in a line. Defaults to 80." +msgstr "" + +#: ad75381379ab48acb3057dc68b6c4a37 +#: discord.ext.commands.help.DefaultHelpCommand:16 +#: discord.ext.commands.help.MinimalHelpCommand:7 of +msgid "" +"Whether to sort the commands in the output alphabetically. Defaults to " +"``True``." +msgstr "" + +#: discord.ext.commands.help.DefaultHelpCommand:22 +#: discord.ext.commands.help.MinimalHelpCommand:27 +#: fcb81f11c0f146b49699484d0ce0f808 of +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 "" + +#: bdb32d5c391a4020a14aa9e04df4dfb3 +#: discord.ext.commands.help.DefaultHelpCommand:33 +#: discord.ext.commands.help.MinimalHelpCommand:38 of +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 "" + +#: 3ed75e87187148e5b3a2193a292ef53b +#: discord.ext.commands.help.DefaultHelpCommand:36 +#: discord.ext.commands.help.MinimalHelpCommand:41 of +msgid "Optional[:class:`int`]" +msgstr "" + +#: ca0e9178e75445c5bc4e6128b058880c +#: discord.ext.commands.help.DefaultHelpCommand:40 of +msgid "How much to indent the commands from a heading. Defaults to ``2``." +msgstr "" + +#: 0ccd0499465045b780f7a265704d5d53 +#: discord.ext.commands.help.DefaultHelpCommand:46 of +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 "" + +#: 506d95ebb9664f17a10381534561613a +#: discord.ext.commands.help.DefaultHelpCommand:53 +#: discord.ext.commands.help.MinimalHelpCommand:45 of +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 "" + +#: 1ad02dd72b1b4b84a48ebbb3b20dcf54 +#: discord.ext.commands.help.DefaultHelpCommand:60 +#: discord.ext.commands.help.MinimalHelpCommand:52 of +msgid "The paginator used to paginate the help command output." +msgstr "" + +#: discord.ext.commands.help.DefaultHelpCommand:62 +#: discord.ext.commands.help.MinimalHelpCommand:54 +#: eb7ca19c2ce740f49eafb5aa2225772f of +msgid ":class:`Paginator`" +msgstr "" + +#: 94814d7b6a2f4e74a8ef24ccfb43fc0b +#: discord.ext.commands.help.DefaultHelpCommand.shorten_text:1 of +msgid "Shortens text to fit into the :attr:`width`." +msgstr "" + +#: discord.ext.commands.converter.clean_content.convert:19 +#: discord.ext.commands.help.DefaultHelpCommand.get_ending_note:4 +#: discord.ext.commands.help.DefaultHelpCommand.shorten_text:5 +#: ea5d814f698e427c927fe26e57311142 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" +msgstr "" + +#: d2d8ce0a6f2947739d49d1a3d2b80967 +#: discord.ext.commands.help.DefaultHelpCommand.get_ending_note:1 of +msgid "" +"Returns help command's ending note. This is mainly useful to override for" +" i18n purposes." +msgstr "" + +#: 561ce69694644ee584ffcd113fb09369 +#: discord.ext.commands.help.DefaultHelpCommand.add_indented_commands:1 of +msgid "Indents a list of commands after the specified heading." +msgstr "" + +#: 02d98ac7859f4ade9548622bb854fc31 +#: discord.ext.commands.help.DefaultHelpCommand.add_indented_commands:3 of +msgid "The formatting is added to the :attr:`paginator`." +msgstr "" + +#: d1c297d5dfe44c07ab17475943a517cf +#: discord.ext.commands.help.DefaultHelpCommand.add_indented_commands:5 of +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 "" + +#: dacbb4c5af9145caac90d727d81893c0 +#: discord.ext.commands.help.DefaultHelpCommand.add_indented_commands:11 of +msgid "A list of commands to indent for output." +msgstr "" + +#: 9a760df2465e482a9ccab7abd60204a4 +#: discord.ext.commands.help.DefaultHelpCommand.add_indented_commands:14 of +msgid "" +"The heading to add to the output. This is only added if the list of " +"commands is greater than 0." +msgstr "" + +#: cd7322b48f414511b8f0e5a791f99e01 +#: discord.ext.commands.help.DefaultHelpCommand.add_indented_commands:18 of +msgid "" +"The max size to use for the gap between indents. If unspecified, calls " +":meth:`~HelpCommand.get_max_size` on the commands parameter." +msgstr "" + +#: 604e96dc969d4a16ab5e5513a0590f96 +#: discord.ext.commands.help.DefaultHelpCommand.send_pages:1 +#: discord.ext.commands.help.MinimalHelpCommand.send_pages:1 of +msgid "" +"A helper utility to send the page output from :attr:`paginator` to the " +"destination." +msgstr "" + +#: 0c64282ae9a7447db39ab64e33fb73aa +#: discord.ext.commands.help.DefaultHelpCommand.add_command_formatting:1 of +msgid "" +"A utility function to format the non-indented block of commands and " +"groups." +msgstr "" + +#: 56429d0375c84befb1b01caa55354f47 +#: discord.ext.commands.help.DefaultHelpCommand.add_command_formatting:4 +#: discord.ext.commands.help.MinimalHelpCommand.add_command_formatting:4 of +msgid "The command to format." +msgstr "" + +#: ../../ext/commands/api.rst:225 b08b39dd303f4219b5448e9c41960424 +msgid "MinimalHelpCommand" +msgstr "" + +#: 782cc545def54629a84441b98b842142 +#: discord.ext.commands.help.MinimalHelpCommand:1 of +msgid "An implementation of a help command with minimal output." +msgstr "" + +#: 0d0161510712488bba1af85693fb13c1 +#: discord.ext.commands.help.MinimalHelpCommand:13 of +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 "" + +#: 2a3d9de0455d454db86f48ea4fce0bee +#: discord.ext.commands.help.MinimalHelpCommand:20 of +msgid "" +"The alias list's heading string used to list the aliases of the command. " +"Useful for i18n. Defaults to ``\"Aliases:\"``." +msgstr "" + +#: bf9bfcfccb6d4729ab5e79ca296f4be7 +#: discord.ext.commands.help.MinimalHelpCommand.get_opening_note:1 of +msgid "" +"Returns help command's opening note. This is mainly useful to override " +"for i18n purposes." +msgstr "" + +#: 89825549a52b49f0b61ce22ede84a59b +#: discord.ext.commands.help.MinimalHelpCommand.get_opening_note:3 of +msgid "The default implementation returns ::" +msgstr "" + +#: 1b33ab9eb24c4202a2d0f6d49d35944e +#: discord.ext.commands.help.MinimalHelpCommand.get_opening_note:8 of +msgid "The help command opening note." +msgstr "" + +#: c7be250c990b40f894b42471edbb3f04 +#: discord.ext.commands.help.MinimalHelpCommand.get_ending_note:1 of +msgid "" +"Return the help command's ending note. This is mainly useful to override " +"for i18n purposes." +msgstr "" + +#: 73dd495170d14ddb8230ad7b4b9fde74 +#: discord.ext.commands.help.MinimalHelpCommand.get_ending_note:5 of +msgid "The help command ending note." +msgstr "" + +#: dc6008496d7f47f98cba8124a45e9fd8 +#: discord.ext.commands.help.MinimalHelpCommand.add_bot_commands_formatting:1 +#: of +msgid "Adds the minified bot heading with commands to the output." +msgstr "" + +#: 7b8dc415474a458294ed699b814d8908 +#: discord.ext.commands.help.MinimalHelpCommand.add_aliases_formatting:3 +#: discord.ext.commands.help.MinimalHelpCommand.add_bot_commands_formatting:3 +#: discord.ext.commands.help.MinimalHelpCommand.add_subcommand_formatting:3 of +msgid "The formatting should be added to the :attr:`paginator`." +msgstr "" + +#: 173c5382465042adb49b12d09c20a4e9 +#: discord.ext.commands.help.MinimalHelpCommand.add_bot_commands_formatting:5 +#: of +msgid "" +"The default implementation is a bold underline heading followed by " +"commands separated by an EN SPACE (U+2002) in the next line." +msgstr "" + +#: 6bbc75e158a44e9ab07b181c71107a32 +#: discord.ext.commands.help.MinimalHelpCommand.add_bot_commands_formatting:9 +#: of +msgid "A list of commands that belong to the heading." +msgstr "" + +#: 812ae0735d0048639c1084356979556a +#: discord.ext.commands.help.MinimalHelpCommand.add_bot_commands_formatting:12 +#: of +msgid "The heading to add to the line." +msgstr "" + +#: 432e24a0d5014f5f9fd67c74acc6e33c +#: discord.ext.commands.help.MinimalHelpCommand.add_subcommand_formatting:1 of +msgid "Adds formatting information on a subcommand." +msgstr "" + +#: 8680c6a80a314ee4867833116e05da47 +#: discord.ext.commands.help.MinimalHelpCommand.add_subcommand_formatting:5 of +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 "" + +#: 36593ac4e6934eb69a5ebb891697a668 +#: discord.ext.commands.help.MinimalHelpCommand.add_subcommand_formatting:9 of +msgid "The command to show information of." +msgstr "" + +#: ab5863e544b64f7b87d3f984d5c394d4 +#: discord.ext.commands.help.MinimalHelpCommand.add_aliases_formatting:1 of +msgid "Adds the formatting information on a command's aliases." +msgstr "" + +#: db40888f62d34d5aaba4d8576d27cbf4 +#: discord.ext.commands.help.MinimalHelpCommand.add_aliases_formatting:5 of +msgid "" +"The default implementation is the :attr:`aliases_heading` bolded followed" +" by a comma separated list of aliases." +msgstr "" + +#: 57236ac0df9640058e87d6c99e2af3e6 +#: discord.ext.commands.help.MinimalHelpCommand.add_aliases_formatting:8 of +msgid "This is not called if there are no aliases to format." +msgstr "" + +#: 9c56559714724ad8804be05c5188648a +#: discord.ext.commands.help.MinimalHelpCommand.add_aliases_formatting:11 of +msgid "A list of aliases to format." +msgstr "" + +#: discord.ext.commands.help.MinimalHelpCommand.add_command_formatting:1 +#: ef842cc9007e4bf4967e22877b29c9b3 of +msgid "A utility function to format commands and groups." +msgstr "" + +#: ../../ext/commands/api.rst:234 e087918d096d4026ae2a63986aa52427 +msgid "Paginator" +msgstr "" + +#: discord.ext.commands.help.Paginator:1 f4b68527e826465aa64533fd9b28a338 of +msgid "A class that aids in paginating code blocks for Discord messages." +msgstr "" + +#: 198c467dbad64882b4699ce2063dc523 discord.ext.commands.help.Paginator:7 of +msgid "Returns the total number of characters in the paginator." +msgstr "" + +#: 528352da5fe14198a01e6fef61626b57 discord.ext.commands.help.Paginator:11 of +msgid "The prefix inserted to every page. e.g. three backticks." +msgstr "" + +#: 457c0e8dfeaa4f79955f96a9ebe8f605 discord.ext.commands.help.Paginator:17 of +msgid "The suffix appended at the end of every page. e.g. three backticks." +msgstr "" + +#: discord.ext.commands.help.Paginator:23 ef009d5cd2d84fce81fd6b4f1782cb73 of +msgid "The maximum amount of codepoints allowed in a page." +msgstr "" + +#: 3bd1178464ce48e4bd3fd97e62c20268 discord.ext.commands.help.Paginator:31 of +msgid "The character string inserted between lines. e.g. a newline character." +msgstr "" + +#: discord.ext.commands.help.Paginator.clear:1 f2fe538d81054b20bc5330048409a978 +#: of +msgid "Clears the paginator to have no pages." +msgstr "" + +#: a889ff4c34e14afb871b9789e307a078 +#: discord.ext.commands.help.Paginator.add_line:1 of +msgid "Adds a line to the current page." +msgstr "" + +#: 46f22c4041284ea785c2e00a9d318648 +#: discord.ext.commands.help.Paginator.add_line:3 of +msgid "If the line exceeds the :attr:`max_size` then an exception is raised." +msgstr "" + +#: discord.ext.commands.help.Paginator.add_line:7 +#: f0def295b6fd46abb95f378c74fd8d1b of +msgid "The line to add." +msgstr "" + +#: 5c5acb52ec8841aa917643fcee21679e +#: discord.ext.commands.help.Paginator.add_line:10 of +msgid "Indicates if another empty line should be added." +msgstr "" + +#: 9b7fe0db24cc4c3ea3a7265e7dbe6695 +#: discord.ext.commands.help.Paginator.add_line:13 of +msgid "The line was too big for the current :attr:`max_size`." +msgstr "" + +#: c7e11f385ddf48978184752e980418d2 +#: discord.ext.commands.help.Paginator.close_page:1 of +msgid "Prematurely terminate a page." +msgstr "" + +#: a117c5b0ea474b4391c3709d34b040dc discord.ext.commands.Paginator.pages:1 of +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 "" + +#: 8f81b5584b3b4d4fa4663b09d276fa5a discord.ext.commands.core.check:1 of +msgid "" +"A decorator that adds a check to the :class:`.Command` or its subclasses." +" These checks could be accessed via :attr:`.Command.checks`." +msgstr "" + +#: 3c2d00f8a23041ec9335281080bf4edc discord.ext.commands.core.check:4 of +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 "" + +#: 4f5494b1e3554410800f085bfbffbf9c discord.ext.commands.core.check:9 of +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 "" + +#: 3d1a87c8862542469116e77863535058 discord.ext.commands.core.check:14 of +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 "" + +#: 9e93c35970eb43ecbdeb837dfcff73da discord.ext.commands.core.check:30 of +msgid "" +"The function returned by ``predicate`` is **always** a coroutine, even if" +" the original function was not a coroutine." +msgstr "" + +#: 5c3b4dcd8381445fabe4944d88c6c1e8 discord.ext.commands.core.check:33 of +msgid "The ``predicate`` attribute was added." +msgstr "" + +#: 0bcd317d5e9f4e9e91ca1b060403a727 discord.ext.commands.core.check:38 of +msgid "Creating a basic check to see if the command invoker is you." +msgstr "" + +#: dd48570384ea4a05aac75e08169fd0f8 discord.ext.commands.core.check:50 of +msgid "Transforming common checks into its own decorator:" +msgstr "" + +#: 02a2a5184ec947eaaf5460150b287c2c discord.ext.commands.core.check:65 of +msgid "The predicate to check if the command should be invoked." +msgstr "" + +#: 641aba9d9e1242ee81b39f49ea575ac7 9624b70cfbee4ca3af484bcf68e4e8ab +#: d1219c96be1d44378e6cc2e7e6537aaa +#: discord.ext.commands.core.bot_has_any_role:15 +#: discord.ext.commands.core.bot_has_guild_permissions:8 +#: discord.ext.commands.core.bot_has_permissions:9 +#: discord.ext.commands.core.bot_has_role:15 discord.ext.commands.core.check:68 +#: discord.ext.commands.core.check_any:21 discord.ext.commands.core.cooldown:27 +#: discord.ext.commands.core.dynamic_cooldown:29 +#: discord.ext.commands.core.guild_only:9 +#: discord.ext.commands.core.has_any_role:19 +#: discord.ext.commands.core.has_guild_permissions:11 +#: discord.ext.commands.core.has_permissions:18 +#: discord.ext.commands.core.has_role:25 discord.ext.commands.core.is_owner:10 +#: discord.ext.commands.core.max_concurrency:24 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\" +" \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ " +"\\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\" +" \\\\\\(\\`\\`T\\`\\`\\)\\]`" +msgstr "" + +#: 649033939727472cbd4f8a6f09454810 discord.ext.commands.core.check_any:1 of +msgid "" +"A :func:`check` that is added that checks if any of the checks passed " +"will pass, i.e. using logical OR." +msgstr "" + +#: 5e230c760ea048268aa0056ae3f03f4e discord.ext.commands.core.check_any:4 of +msgid "" +"If all checks fail then :exc:`.CheckAnyFailure` is raised to signal the " +"failure. It inherits from :exc:`.CheckFailure`." +msgstr "" + +#: discord.ext.commands.core.check_any:9 e990ee703a2549a897471de430a1da05 of +msgid "The ``predicate`` attribute for this function **is** a coroutine." +msgstr "" + +#: 4a7b81eca1c3484fba8cf44b85ba6fdc discord.ext.commands.core.check_any:14 of +msgid "" +"An argument list of checks that have been decorated with the " +":func:`check` decorator." +msgstr "" + +#: 0a3c24e60414491ba64d3853fc673029 discord.ext.commands.core.check_any:18 of +msgid "" +"A check passed has not been decorated with the :func:`check` " +"decorator." +msgstr "" + +#: discord.ext.commands.core.check_any:23 e375d514f6dc4418ab45510e055e9919 of +msgid "Creating a basic check to see if it's the bot owner or the server owner:" +msgstr "" + +#: 81ea5857330741739c83ed3dc41dde4e discord.ext.commands.core.has_role:1 of +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 "" + +#: ca512848d2bb4648a0bdb9addbf84a42 discord.ext.commands.core.has_role:4 of +msgid "" +"If a string is specified, you must give the exact name of the role, " +"including caps and spelling." +msgstr "" + +#: 393358caeb1f4b51b551ddb9b959abef discord.ext.commands.core.has_role:7 of +msgid "" +"If an integer is specified, you must give the exact snowflake ID of the " +"role." +msgstr "" + +#: 78c59b4d3b6349ba846bc6eb0826344b discord.ext.commands.core.has_role:9 of +msgid "" +"If the message is invoked in a private message context then the check " +"will return ``False``." +msgstr "" + +#: 8452153ef43340fba093ab84f4df5a56 discord.ext.commands.core.has_role:12 of +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 "" + +#: b03d3b707fb44779acdfb64a04c67537 discord.ext.commands.core.has_role:18 of +msgid "" +"Raise :exc:`.MissingRole` or :exc:`.NoPrivateMessage` instead of generic " +":exc:`.CheckFailure`" +msgstr "" + +#: 5cca5ffe93f440dd85df9dc52292045e discord.ext.commands.core.has_role:22 of +msgid "The name or ID of the role to check." +msgstr "" + +#: 72a7042c5b714f9a82015a2f50305e10 discord.ext.commands.core.has_permissions:1 +#: of +msgid "" +"A :func:`.check` that is added that checks if the member has all of the " +"permissions necessary." +msgstr "" + +#: b36c2e278059410ebb228e8102743974 discord.ext.commands.core.has_permissions:4 +#: of +msgid "" +"Note that this check operates on the current channel permissions, not the" +" guild wide permissions." +msgstr "" + +#: bf44a1aa790e4c76b7585d4744c49ade discord.ext.commands.core.has_permissions:7 +#: of +msgid "" +"The permissions passed in must be exactly like the properties shown under" +" :class:`.discord.Permissions`." +msgstr "" + +#: b65895b130444cd3b829c68a0599c012 +#: discord.ext.commands.core.has_permissions:10 of +msgid "" +"This check raises a special exception, :exc:`.MissingPermissions` that is" +" inherited from :exc:`.CheckFailure`." +msgstr "" + +#: 46edcac0a3e6496ea9e80f35ca24f270 +#: discord.ext.commands.core.has_permissions:13 of +msgid "If the command is executed within a DM, it returns ``True``." +msgstr "" + +#: a4c609c072e54e3f84a6a00d7843380a +#: discord.ext.commands.core.has_permissions:16 of +msgid "An argument list of permissions to check for." +msgstr "" + +#: 93b6336c75374f4d84a059524c59dff7 +#: discord.ext.commands.core.has_guild_permissions:1 of +msgid "" +"Similar to :func:`.has_permissions`, but operates on guild wide " +"permissions instead of the current channel permissions." +msgstr "" + +#: 6b5b1ee1f906410abcadc2b79fc8dad4 +#: discord.ext.commands.core.has_guild_permissions:4 of +msgid "" +"If this check is called in a DM context, it will raise an exception, " +":exc:`.NoPrivateMessage`." +msgstr "" + +#: 7c5a4039354e4b71b6f01196a16a2740 discord.ext.commands.core.has_any_role:1 of +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 "" + +#: 6fc2639d3bfe40a3983045e6959bd1a5 discord.ext.commands.core.has_any_role:5 of +msgid "Similar to :func:`.has_role`\\, the names or IDs passed in must be exact." +msgstr "" + +#: 5da254078bdc405689d63c4229f9bf8e discord.ext.commands.core.has_any_role:7 of +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 "" + +#: 35ade017b87c4fe4b05145ddc2f2f201 discord.ext.commands.core.has_any_role:13 +#: of +msgid "" +"Raise :exc:`.MissingAnyRole` or :exc:`.NoPrivateMessage` instead of " +"generic :exc:`.CheckFailure`" +msgstr "" + +#: a94c7b20e99a4d3d8b7b90aa74e6271c discord.ext.commands.core.has_any_role:17 +#: of +msgid "An argument list of names or IDs to check that the member has roles wise." +msgstr "" + +#: ab9f894a18c44d9e9a4899949d10abcd discord.ext.commands.core.bot_has_role:1 of +msgid "Similar to :func:`.has_role` except checks if the bot itself has the role." +msgstr "" + +#: 8ef5c87638f942bf8deadf8ebbd596d5 discord.ext.commands.core.bot_has_role:4 of +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 "" + +#: 94f6e1f2bbe042f7b4d946ecfa351b19 discord.ext.commands.core.bot_has_role:10 +#: of +msgid "" +"Raise :exc:`.BotMissingRole` or :exc:`.NoPrivateMessage` instead of " +"generic :exc:`.CheckFailure`" +msgstr "" + +#: 31696f0d12c64bcba9fe56a3e1a6e3c0 +#: discord.ext.commands.core.bot_has_permissions:1 of +msgid "" +"Similar to :func:`.has_permissions` except checks if the bot itself has " +"the permissions listed." +msgstr "" + +#: 649ad7d58605463aba43ee78c2fe92ca +#: discord.ext.commands.core.bot_has_permissions:4 of +msgid "" +"This check raises a special exception, :exc:`.BotMissingPermissions` that" +" is inherited from :exc:`.CheckFailure`." +msgstr "" + +#: 6e1dea28f1e242dcb89ac9f27aba156f +#: discord.ext.commands.core.bot_has_guild_permissions:1 of +msgid "" +"Similar to :func:`.has_guild_permissions`, but checks the bot members " +"guild permissions." +msgstr "" + +#: 504a86050e164f1cbc2ef3dfab214b6e +#: discord.ext.commands.core.bot_has_any_role:1 of +msgid "" +"Similar to :func:`.has_any_role` except checks if the bot itself has any " +"of the roles listed." +msgstr "" + +#: 85b5f7bf08514667a71efb8c49f1dcf8 +#: discord.ext.commands.core.bot_has_any_role:4 of +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 "" + +#: ac715be0bb8a4b75b4be55e531a54809 +#: discord.ext.commands.core.bot_has_any_role:10 of +msgid "" +"Raise :exc:`.BotMissingAnyRole` or :exc:`.NoPrivateMessage` instead of " +"generic :exc:`.CheckFailure`." +msgstr "" + +#: discord.ext.commands.core.cooldown:1 e9dbbf29266342019191e100cc14b33e of +msgid "A decorator that adds a cooldown to a command" +msgstr "" + +#: a718cc3afe304175996a7f319afead4a discord.ext.commands.core.cooldown:3 +#: discord.ext.commands.core.dynamic_cooldown:8 of +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 "" + +#: 1a5e6e01b634462489aa2c9b72d75c8e discord.ext.commands.core.cooldown:9 +#: discord.ext.commands.core.dynamic_cooldown:14 of +msgid "" +"If a cooldown is triggered, then :exc:`.CommandOnCooldown` is triggered " +"in :func:`.on_command_error` and the local error handler." +msgstr "" + +#: 4149b91a8b9b4f4ebcb203d68f34a4c2 discord.ext.commands.core.cooldown:12 +#: discord.ext.commands.core.dynamic_cooldown:17 of +msgid "A command can only have a single cooldown." +msgstr "" + +#: discord.ext.commands.core.cooldown:15 f571532f4e36472da1ad4894c98e70f2 of +msgid "The number of times a command can be used before triggering a cooldown." +msgstr "" + +#: 3c9e0cce40ef4459b3b93b81f9112985 discord.ext.commands.core.cooldown:18 of +msgid "The amount of seconds to wait for a cooldown when it's been triggered." +msgstr "" + +#: 768f7ee582bb422f8b4f95c93a20d22f discord.ext.commands.core.cooldown:21 of +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 "" + +#: 2dcd9030125648b1b302cd76f6a181e4 discord.ext.commands.core.cooldown:21 of +msgid "" +"The type of cooldown to have. If callable, should return a key for the " +"mapping." +msgstr "" + +#: 2f0d5a5a8e65496d84352249b0582557 discord.ext.commands.core.cooldown:23 of +msgid "Callables are now supported for custom bucket types." +msgstr "" + +#: 6094d0e28a9c4019a165562f2964df1c +#: discord.ext.commands.core.dynamic_cooldown:1 of +msgid "A decorator that adds a dynamic cooldown to a command" +msgstr "" + +#: 079f58510a774037972396f8a7e81087 +#: discord.ext.commands.core.dynamic_cooldown:3 of +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 "" + +#: 672cd5f2ef144f6fbad1395b2f5c0b95 +#: discord.ext.commands.core.dynamic_cooldown:22 of +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 "" + +#: 593c7a5e5b1d4edda83dc41a14a274cd +#: discord.ext.commands.core.dynamic_cooldown:26 of +msgid "The type of cooldown to have." +msgstr "" + +#: discord.ext.commands.core.max_concurrency:1 fa44abacc86b4549a649aa49b5b6ac82 +#: of +msgid "A decorator that adds a maximum concurrency to a command" +msgstr "" + +#: discord.ext.commands.core.max_concurrency:3 e94f4d66c33a4a8095e7fbf8d1a92968 +#: of +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 "" + +#: a11c0e11f70d46c9993cbeeadecc0979 +#: discord.ext.commands.core.max_concurrency:11 of +msgid "" +"The maximum number of invocations of this command that can be running at " +"the same time." +msgstr "" + +#: a412433be92548c09349f173e0f21567 +#: discord.ext.commands.core.max_concurrency:14 of +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 "" + +#: 4606a73966d64b4a90a6cdd92f2e88aa +#: discord.ext.commands.core.max_concurrency:18 of +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.before_invoke:3 f5e756aa4e554e66a3257a5129c4ef4b +#: of +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.after_invoke:3 f74267b631a5439eb0c212f5feded4e0 of +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 "" + +#: 6e1c6fc4c43844059652d7bf1c1d21d5 discord.ext.commands.core.guild_only:1 of +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 "" + +#: 51b7f083cf344183970934ed917e18fc discord.ext.commands.core.guild_only:5 of +msgid "" +"This check raises a special exception, :exc:`.NoPrivateMessage` that is " +"inherited from :exc:`.CheckFailure`." +msgstr "" + +#: 887a1905103842a688e15cf1b6ee6216 discord.ext.commands.core.dm_only:1 of +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 "" + +#: 590b200bb7aa4c1080ac46793bed34f7 discord.ext.commands.core.dm_only:5 of +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 "" + +#: 887311557f434bafa7caf9d0257629cb discord.ext.commands.core.is_owner:1 of +msgid "" +"A :func:`.check` that checks if the person invoking this command is the " +"owner of the bot." +msgstr "" + +#: caeb6f7d083e49cab51f2b82ee02f9ee discord.ext.commands.core.is_owner:4 of +msgid "This is powered by :meth:`.Bot.is_owner`." +msgstr "" + +#: c1106d33034b4444bbbcbf91375f5fcc discord.ext.commands.core.is_owner:6 of +msgid "" +"This check raises a special exception, :exc:`.NotOwner` that is derived " +"from :exc:`.CheckFailure`." +msgstr "" + +#: 1b423666d7694ad387cc429489d03abe discord.ext.commands.core.is_nsfw:1 of +msgid "A :func:`.check` that checks if the channel is a NSFW channel." +msgstr "" + +#: discord.ext.commands.core.is_nsfw:3 fba7938014474c98afff1432159e3000 of +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 "" + +#: 7588f10840c442aea15f191eac9ae20c discord.ext.commands.core.is_nsfw:10 of +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.Cooldown:1 f693cf1699b84066aad9b40c50de702a +#: of +msgid "Represents a cooldown for a command." +msgstr "" + +#: a8e6375201964283838d7bebb18fd640 discord.ext.commands.cooldowns.Cooldown:5 +#: of +msgid "The total number of tokens available per :attr:`per` seconds." +msgstr "" + +#: 9922824a0cb34709ac41ec5fb31849e8 discord.ext.commands.cooldowns.Cooldown:11 +#: of +msgid "The length of the cooldown period in seconds." +msgstr "" + +#: d95a9dfdb80445d98472f84997e7fc9a +#: discord.ext.commands.cooldowns.Cooldown.get_tokens:1 of +msgid "Returns the number of available tokens before rate limiting is applied." +msgstr "" + +#: 94930446a5ce4847b1c683389d552a57 +#: discord.ext.commands.cooldowns.Cooldown.get_tokens:4 of +msgid "" +"The time in seconds since Unix epoch to calculate tokens at. If not " +"supplied then :func:`time.time()` is used." +msgstr "" + +#: 37c64c1f6261438891a797a6a574ac89 +#: discord.ext.commands.cooldowns.Cooldown.get_tokens:8 of +msgid "The number of tokens available before the cooldown is to be applied." +msgstr "" + +#: discord.ext.commands.cooldowns.Cooldown.get_retry_after:1 +#: ebc6225bfbf4471ea8705b0813f0c2ca of +msgid "Returns the time in seconds until the cooldown will be reset." +msgstr "" + +#: discord.ext.commands.cooldowns.Cooldown.get_retry_after:4 +#: e762ab85aab44884be1d2bd769467a1e of +msgid "" +"The current time in seconds since Unix epoch. If not supplied, then " +":func:`time.time()` is used." +msgstr "" + +#: c6cf86ab00b84adbb67edd54f9fac287 +#: discord.ext.commands.cooldowns.Cooldown.get_retry_after:8 of +msgid "The number of seconds to wait before this cooldown will be reset." +msgstr "" + +#: discord.ext.commands.cooldowns.Cooldown.update_rate_limit:1 +#: e116ae67c1cd4dc285f47b3476ee09be of +msgid "Updates the cooldown rate limit." +msgstr "" + +#: discord.ext.commands.cooldowns.Cooldown.update_rate_limit:4 +#: fe6e90f08c66469ea5d5f007bd8444b2 of +msgid "" +"The time in seconds since Unix epoch to update the rate limit at. If not " +"supplied, then :func:`time.time()` is used." +msgstr "" + +#: 451125af000a49a4a8a75a4da1012f89 +#: discord.ext.commands.cooldowns.Cooldown.update_rate_limit:8 of +msgid "The retry-after time in seconds if rate limited." +msgstr "" + +#: 337ae2421ec549f8afa675182a9a8eab +#: discord.ext.commands.cooldowns.Cooldown.update_rate_limit:9 of +msgid "Optional[:class:`float`]" +msgstr "" + +#: c37c3555b58b45a7804186ddaefded8d +#: discord.ext.commands.cooldowns.Cooldown.reset:1 of +msgid "Reset the cooldown to its initial state." +msgstr "" + +#: b701fd3d4965415e8b93f8b7254478ba +#: discord.ext.commands.cooldowns.Cooldown.copy:1 of +msgid "Creates a copy of this cooldown." +msgstr "" + +#: 958e6160c5d34c63afa9f3c9414d1927 +#: discord.ext.commands.cooldowns.Cooldown.copy:3 of +msgid "A new instance of this cooldown." +msgstr "" + +#: dac0d660be9a427495f6cbf44647e95d +#: discord.ext.commands.cooldowns.Cooldown.copy:4 of +msgid ":class:`Cooldown`" +msgstr "" + +#: ../../ext/commands/api.rst:347 4942dd8081954a83978bfc1c1e8ae392 +msgid "Context" +msgstr "" + +#: 2a57cbae1bfa4447b0bc2a09e3f4f878 discord.ext.commands.context.Context:1 of +msgid "Represents the context in which a command is being invoked under." +msgstr "" + +#: 8032257bdf734e74b87c614d3237173a discord.ext.commands.context.Context:3 of +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.Context:7 e0c4816bb06d4bd2a34987e6818214c2 of +msgid "This class implements the :class:`~discord.abc.Messageable` ABC." +msgstr "" + +#: df100d3bf6124f60895f455a7f705170 discord.ext.commands.context.Context:11 of +msgid "The message that triggered the command being executed." +msgstr "" + +#: 6c79017c8b06446498c3190155904db2 discord.ext.commands.context.Context:13 +#: discord.ext.commands.context.Context.reply:9 +#: e1bc43a7b22b49f7bb9f4ba8e292f620 of +msgid ":class:`.Message`" +msgstr "" + +#: 6004a27f6c4540209779e671c47e15e3 discord.ext.commands.context.Context:17 of +msgid "The bot that contains the command being executed." +msgstr "" + +#: 7e00bcb1f585437696837bdd6b95547f discord.ext.commands.context.Context:19 of +msgid ":class:`.Bot`" +msgstr "" + +#: 708802b8cfb84541895d3b8f333bd922 discord.ext.commands.context.Context:23 of +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 "" + +#: 1b9289e73d8242c7ba23ba6e1e013dde discord.ext.commands.context.Context:27 of +msgid ":class:`list`" +msgstr "" + +#: 44a48bb25cec474f9ee80bd4f8294ad8 discord.ext.commands.context.Context:31 of +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 "" + +#: d8ba277419e4447db3c9c9a0f367840b discord.ext.commands.context.Context:39 of +msgid "" +"The parameter that is currently being inspected and converted. This is " +"only of use for within converters." +msgstr "" + +#: 87b4052a2fbc4a99b8faca40162e548e discord.ext.commands.context.Context:44 of +msgid "Optional[:class:`inspect.Parameter`]" +msgstr "" + +#: 35b629babfae442680af8ef790c77862 discord.ext.commands.context.Context:48 of +msgid "The prefix that was used to invoke the command." +msgstr "" + +#: 010aa10818794f5e9150e284ed0e5d53 discord.ext.commands.context.Context:54 of +msgid "The command that is being invoked currently." +msgstr "" + +#: 12b1f3d1af694899946545d0df78f3c7 discord.ext.commands.context.Context:60 of +msgid "" +"The command name that triggered this invocation. Useful for finding out " +"which alias called the command." +msgstr "" + +#: 2d3c6624565f41f183a437ef5099cc50 discord.ext.commands.context.Context:67 of +msgid "" +"The command names of the parents that triggered this invocation. Useful " +"for finding out which aliases called the command." +msgstr "" + +#: 23c2f761a59c4f3bb5fdb60ddbd0b33b discord.ext.commands.context.Context:70 of +msgid "" +"For example in commands ``?a b c test``, the invoked parents are ``['a', " +"'b', 'c']``." +msgstr "" + +#: 9205feec771a4b34b5d819ac90529941 discord.ext.commands.context.Context:74 +#: discord.ext.commands.errors.BotMissingPermissions:10 +#: discord.ext.commands.errors.MissingPermissions:10 +#: discord.ext.commands.errors.TooManyFlags:17 +#: discord.ext.commands.flags.Flag:17 of +msgid "List[:class:`str`]" +msgstr "" + +#: 5bb9c8cd59e1402ea7fcc3bc6401b70e discord.ext.commands.context.Context:78 of +msgid "" +"The subcommand that was invoked. If no valid subcommand was invoked then " +"this is equal to ``None``." +msgstr "" + +#: 269228517d874a2984924a4675897cfc discord.ext.commands.context.Context:85 of +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 "" + +#: 7f645d52858449aa8a2efd0f66f235b4 discord.ext.commands.context.Context:94 of +msgid "" +"A boolean that indicates if the command failed to be parsed, checked, or " +"invoked." +msgstr "" + +#: 61fb3dc224d44b0783c3b04b7fea1ddd discord.abc.Messageable.history:1 of +msgid "" +"Returns an :class:`~discord.AsyncIterator` that enables receiving the " +"destination's message history." +msgstr "" + +#: 89afaf721f6643aab53272b5f881dec9 discord.abc.Messageable.history:3 of +msgid "" +"You must have :attr:`~discord.Permissions.read_message_history` " +"permissions to use this." +msgstr "" + +#: 51ebc16f2d4d414a99faa0ae6bcf7601 discord.abc.Messageable.history:6 of +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.Messageable.history:11 eaf31d1fd11746ff859caaec64b90ca1 of +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 "" + +#: 57b793e910ca43faadaa044dc537fe87 discord.abc.Messageable.history:16 of +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.Messageable.history:21 f1761b940ade4a788c4e8430b8edaf05 of +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 "" + +#: 53fb69e1b6954079bd5f2985c156bf5b discord.abc.Messageable.history:28 of +msgid "" +"If set to ``True``, return messages in oldest->newest order. Defaults to " +"``True`` if ``after`` is specified, otherwise ``False``." +msgstr "" + +#: 83b8d6805ef1420b87d97e31bc10efdf discord.abc.Messageable.history:32 of +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr "" + +#: 9510fd4d07914ac0a5d62b96ad673bbc discord.abc.Messageable.history:34 of +msgid "You do not have permissions to get channel message history." +msgstr "" + +#: 4355deb6fa9d4bdfb104c171c05cdabd discord.abc.Messageable.history:35 of +msgid "The request to get message history failed." +msgstr "" + +#: b2ded6cd5eef4474a03a58b81418e0fd discord.abc.Messageable.history:36 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr "" + +#: 1cad16da9e4a4a039e1c0be9c6789df6 discord.abc.Messageable.history:47 of +msgid "Flattening into a list: ::" +msgstr "" + +#: 36d6064ff8644307a143e9643a73d3b1 discord.abc.Messageable.typing:1 of +msgid "" +"Returns a context manager that allows you to type for an indefinite " +"period of time." +msgstr "" + +#: 186d34907d0f42f0be28a22e9c5d48f6 discord.abc.Messageable.typing:3 of +msgid "" +"This is useful for denoting long computations in your bot. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "" + +#: 03c747a982a54571968a3331429f7a20 discord.abc.Messageable.typing:9 of +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 "" + +#: a48fc9f9ab9846158116f6d2cd0dee5b discord.abc.Messageable.typing:12 of +msgid "Example Usage: ::" +msgstr "" + +#: 0c5cca1e94144653989d617b781dc61a +#: discord.ext.commands.context.Context.invoke:3 of +msgid "Calls a command with the arguments given." +msgstr "" + +#: 3c31d3de30834b32ad5f1b70ba33922b +#: discord.ext.commands.context.Context.invoke:5 of +msgid "" +"This is useful if you want to just call the callback that a " +":class:`.Command` holds internally." +msgstr "" + +#: ba95aa92309b4ac1bdcb9344fcd4f787 +#: discord.ext.commands.context.Context.invoke:10 of +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 "" + +#: c027a3c528604f43b1436b5cfa0640c5 +#: discord.ext.commands.context.Context.invoke:14 of +msgid "" +"You must take care in passing the proper arguments when using this " +"function." +msgstr "" + +#: 721b6a15a25543cebe7d83e0ffac4465 +#: discord.ext.commands.context.Context.invoke:18 of +msgid "The command that is going to be called." +msgstr "" + +#: 99d44329ceb947579cd3bce2c2cf2aa6 +#: discord.ext.commands.context.Context.invoke:21 of +msgid "The arguments to use." +msgstr "" + +#: 63e53520af0043749b354138ad9211a1 +#: discord.ext.commands.context.Context.invoke:23 of +msgid "The keyword arguments to use." +msgstr "" + +#: 05c7de921b3f4b9c9df3814555cc5fd1 +#: discord.ext.commands.context.Context.invoke:25 of +msgid "The command argument to invoke is missing." +msgstr "" + +#: c7fe99da5385412abfc8c220108ef77c +#: discord.ext.commands.context.Context.reinvoke:3 of +msgid "Calls the command again." +msgstr "" + +#: 04d502dbc692422eaceb397b4b6ad11a +#: discord.ext.commands.context.Context.reinvoke:5 of +msgid "" +"This is similar to :meth:`~.Context.invoke` except that it bypasses " +"checks, cooldowns, and error handlers." +msgstr "" + +#: 1cdff60fefdc4f86b552f02bd81be288 +#: discord.ext.commands.context.Context.reinvoke:10 of +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 "" + +#: 075d311288124d9996697486ed5104e7 +#: discord.ext.commands.context.Context.reinvoke:17 of +msgid "Whether to call the before and after invoke hooks." +msgstr "" + +#: 203459acad88404ab30cd45897df3052 +#: discord.ext.commands.context.Context.reinvoke:20 of +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 "" + +#: 2f6aa4215b0a4936bb6bacfb0d2b72af +#: discord.ext.commands.context.Context.reinvoke:25 of +msgid "The context to reinvoke is not valid." +msgstr "" + +#: discord.ext.commands.Context.valid:1 e537426c5a4243f3980cb0e87280d9c6 of +msgid "Checks if the invocation context is valid to be invoked with." +msgstr "" + +#: 78c10dddc1524e24aa3ad63f554c414f discord.ext.commands.Context.clean_prefix:1 +#: of +msgid "" +"The cleaned up invoke prefix. i.e. mentions are ``@name`` instead of " +"``<@id>``." +msgstr "" + +#: discord.ext.commands.Context.cog:1 fd2658097cc24f7db5314f08ca902c2c of +msgid "" +"Returns the cog associated with this context's command. None if it does " +"not exist." +msgstr "" + +#: ../../docstring 3b3b16de997e4e54877d2d70b173cfe2 +#: discord.ext.commands.Context.guild:1 of +msgid "" +"Returns the guild associated with this context's command. None if not " +"available." +msgstr "" + +#: ../../docstring 40a2b9fd266f44c69a5de1c7ee7ed5ff +#: discord.ext.commands.Context.channel:1 of +msgid "" +"Returns the channel associated with this context's command. Shorthand for" +" :attr:`.Message.channel`." +msgstr "" + +#: ../../docstring dd56849813db4c7299d6a6f2757ca297 +#: discord.ext.commands.Context.author:1 of +msgid "" +"Union[:class:`~discord.User`, :class:`.Member`]: Returns the author " +"associated with this context's command. Shorthand for " +":attr:`.Message.author`" +msgstr "" + +#: ../../docstring a3c47787a8d44d61ba8043b2dcfd58ab +#: discord.ext.commands.Context.me:1 of +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 "" + +#: a3ce24b8f1b54cb7bad801cd08901ef2 discord.ext.commands.Context.voice_client:1 +#: of +msgid "A shortcut to :attr:`.Guild.voice_client`\\, if applicable." +msgstr "" + +#: b801313d2d364c268100784609b70816 +#: discord.ext.commands.context.Context.send_help:3 of +msgid "" +"Shows the help command for the specified entity if given. The entity can " +"be a command or a cog." +msgstr "" + +#: 45cea76cc29a4eb1b767fc7c489a81e5 +#: discord.ext.commands.context.Context.send_help:6 of +msgid "If no entity is given, then it'll show help for the entire bot." +msgstr "" + +#: discord.ext.commands.context.Context.send_help:9 +#: e49a64b80a234858915386f65ba97580 of +msgid "" +"If the entity is a string, then it looks up whether it's a :class:`Cog` " +"or a :class:`Command`." +msgstr "" + +#: 2d8cd3a7d42f4f7faf846ef88b04a2e5 +#: discord.ext.commands.context.Context.send_help:14 of +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 "" + +#: 13a046373ec84445af9a1a75a3426873 +#: discord.ext.commands.context.Context.send_help:18 of +msgid "The entity to show help for." +msgstr "" + +#: 68525271233843f89cac1a272fb172f9 +#: discord.ext.commands.context.Context.send_help:21 of +msgid "The result of the help command, if any." +msgstr "" + +#: 2f8ba1ce6e854c78bb794c8d818a52fc discord.abc.Messageable.can_send:1 of +msgid "" +"Returns a :class:`bool` indicating whether you have the permissions to " +"send the object(s)." +msgstr "" + +#: caa6e97a4c40413b818721112e133895 discord.abc.Messageable.can_send:3 of +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "" + +#: c9c33719233542fc9ab097fbef9946b7 discord.abc.Messageable.can_send:6 of +msgid "An invalid type has been passed." +msgstr "" + +#: 39474d78af2f441d818ba1b7ccdeccd0 discord.abc.Messageable.fetch_message:3 of +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "" + +#: 680a3c9536194ffd9086dc8f20207694 discord.abc.Messageable.fetch_message:6 of +msgid "The message ID to look for." +msgstr "" + +#: 3f227eccd4324618943ec343072814bf discord.abc.Messageable.fetch_message:9 of +msgid "The message asked for." +msgstr "" + +#: 2f6f2c77fe9f49d6af547d8b4d988847 discord.abc.Messageable.fetch_message:10 +#: discord.abc.Messageable.send:100 of +msgid ":class:`~discord.Message`" +msgstr "" + +#: cfef24f3237e4958816a5a01baa12172 discord.abc.Messageable.fetch_message:12 of +msgid "The specified message was not found." +msgstr "" + +#: 93b6c7c33ef84abfa0fba2952731ae42 discord.abc.Messageable.fetch_message:13 of +msgid "You do not have the permissions required to get a message." +msgstr "" + +#: 87417e86a48a426f9a94bb355a04bab5 discord.abc.Messageable.fetch_message:14 of +msgid "Retrieving the message failed." +msgstr "" + +#: c0f7203f91234dcf9b71d4aa08c2743e discord.abc.Messageable.pins:3 of +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "" + +#: 5897281b37544f1ab20f5339ce9ab3ed discord.abc.Messageable.pins:7 of +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 "" + +#: 7bad27e461a740d299b8c4bd148fd4e3 discord.abc.Messageable.pins:11 of +msgid "The messages that are currently pinned." +msgstr "" + +#: discord.abc.Messageable.pins:12 e8b1b5f758104e489149fdbb07deeafb of +msgid "List[:class:`~discord.Message`]" +msgstr "" + +#: 46fce97e3e2044b9812605b7371e03c5 discord.abc.Messageable.pins:14 of +msgid "Retrieving the pinned messages failed." +msgstr "" + +#: 666fc58fd984426b9fc3697183d98530 +#: discord.ext.commands.context.Context.reply:3 of +msgid "" +"A shortcut method to :meth:`.abc.Messageable.send` to reply to the " +":class:`.Message`." +msgstr "" + +#: 07908514f89544cd8fadb56e8b84c9ea discord.abc.Messageable.send:99 +#: discord.ext.commands.context.Context.reply:8 of +msgid "The message that was sent." +msgstr "" + +#: 44cfdba165a2496f86c393e4ff002312 discord.abc.Messageable.send:102 +#: discord.ext.commands.context.Context.reply:11 of +msgid "Sending the message failed." +msgstr "" + +#: 1baacf7f645a4a3e98b1d53ae7e82fa4 discord.abc.Messageable.send:103 +#: discord.ext.commands.context.Context.reply:12 of +msgid "You do not have the proper permissions to send the message." +msgstr "" + +#: dd5c11c9c7f04d8da2c0fcf683585cbd +#: discord.ext.commands.context.Context.reply:13 of +msgid "" +"The ``files`` list is not of the appropriate size, or you specified " +"both ``file`` and ``files``." +msgstr "" + +#: 233e5db05eb849cc92f9a5d67a3c1cb0 discord.abc.Messageable.send:3 of +msgid "Sends a message to the destination with the content given." +msgstr "" + +#: 401b162816dd4269983af2a0953407c2 discord.abc.Messageable.send:5 of +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.Messageable.send:9 fc1fb167cc7c4368938fbc342518f479 of +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 "" + +#: a67e87cd5c8d44fdb709013d4ff36929 discord.abc.Messageable.send:14 of +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 "" + +#: a59873e3c70548c5a2419384906c6096 discord.abc.Messageable.send:20 of +msgid "The content of the message to send." +msgstr "" + +#: c4b9c97ff6d14d1bb9ea552fb6386908 discord.abc.Messageable.send:23 of +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "" + +#: 75e503161f364fa5a593ca4873cec071 discord.abc.Messageable.send:26 of +msgid "The rich embed for the content." +msgstr "" + +#: ce1d5306f02a4b228235ba11840ae1da discord.abc.Messageable.send:29 of +msgid "The file to upload." +msgstr "" + +#: 657cdc05b2744bf99bd70c4f327ae6a6 discord.abc.Messageable.send:32 of +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "" + +#: 5dedce0b1ad64c5f98413e459d91b5d9 discord.abc.Messageable.send:35 of +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 "" + +#: 9e1547829fc343e9a1b366baf07c9b31 discord.abc.Messageable.send:39 of +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "" + +#: 4210f7e257dd4a96af7c38683f665d88 discord.abc.Messageable.send:39 of +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "" + +#: a634d6f1d80b454f9468298d1ddef3d6 discord.abc.Messageable.send:44 of +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 "" + +#: 8e05171456134fe3b53ec51198be752f discord.abc.Messageable.send:49 of +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 "" + +#: 310aceb3d63846e8a3c93bc70dea8dbe discord.abc.Messageable.send:49 of +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 "" + +#: db923c5ea4f34a8ab38cd7fd07aa8f96 discord.abc.Messageable.send:59 of +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.Messageable.send:59 e35ba87b49314f98b33ba3227b02d2e0 of +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 "" + +#: 1124d9197c524ad5b4c48f4a10574a39 discord.abc.Messageable.send:68 of +msgid "" +"If set, overrides the :attr:`~discord.AllowedMentions.replied_user` " +"attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "" + +#: discord.abc.Messageable.send:68 e5ea147dab2a42f9a952890a2690940b of +msgid "" +"If set, overrides the :attr:`~discord.AllowedMentions.replied_user` " +"attribute of ``allowed_mentions``." +msgstr "" + +#: 23c9f13fa7754faf8b1ab81a09dc4688 discord.abc.Messageable.send:73 of +msgid "A Discord UI View to add to the message." +msgstr "" + +#: 3ad8c72fa9314999b37d175de732583d discord.abc.Messageable.send:76 of +msgid "" +"A list of embeds to upload. Must be a maximum of 10. .. versionadded:: " +"2.0" +msgstr "" + +#: 1ee790371a76498aac1fa3332d7a306a discord.abc.Messageable.send:76 of +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "" + +#: c01e8fe8d227480387cf8df951050189 discord.abc.Messageable.send:81 of +msgid "" +"A list of stickers to upload. Must be a maximum of 3. .. versionadded:: " +"2.0" +msgstr "" + +#: 8e58570511c14eba84fb64fefa25077d discord.abc.Messageable.send:81 of +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "" + +#: 30c1bd01caa44c0693f3a649d876db8b discord.abc.Messageable.send:86 of +msgid "Whether to suppress embeds for the message." +msgstr "" + +#: 4a4c60e54808412797081f64973c2198 discord.abc.Messageable.send:89 of +msgid "" +"Whether to suppress push and desktop notifications for the message. .. " +"versionadded:: 2.4" +msgstr "" + +#: 8007bf6be7b3451e82b1bb3047cfe9cd discord.abc.Messageable.send:89 of +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "" + +#: discord.abc.Messageable.send:94 e4817933749f49f39bff7308c3294a2f of +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "" + +#: 29bd5583d5a045a7903518ab2ed3337d discord.abc.Messageable.send:94 of +msgid "The poll to send." +msgstr "" + +#: 92fd7f8bda8f4e59a6add001c2ae563e discord.abc.Messageable.send:104 of +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 "" + +#: 7e981ac3a20345ffb61daf4c3509de80 discord.abc.Messageable.trigger_typing:3 of +msgid "Triggers a *typing* indicator to the destination." +msgstr "" + +#: b663ff6e5f654ad88fa62051626ab64d discord.abc.Messageable.trigger_typing:5 of +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 "" + +#: 646dda467a2949ffb2a6f2b4d12b9da9 discord.ext.commands.converter.Converter:1 +#: of +msgid "" +"The base class of custom converters that require the :class:`.Context` to" +" be passed to be useful." +msgstr "" + +#: 736c189e21924d62b1bca6145d56aaa5 discord.ext.commands.converter.Converter:4 +#: of +msgid "" +"This allows you to implement converters that function similar to the " +"special cased ``discord`` classes." +msgstr "" + +#: b09220a3e54145b982ce91fd4028ad9c discord.ext.commands.converter.Converter:7 +#: of +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 "" + +#: 2b33792d59994112b5f8ae2f18cdd1e9 +#: discord.ext.commands.converter.CategoryChannelConverter.convert:3 +#: discord.ext.commands.converter.ColourConverter.convert:3 +#: discord.ext.commands.converter.Converter.convert:3 +#: discord.ext.commands.converter.EmojiConverter.convert:3 +#: discord.ext.commands.converter.ForumChannelConverter.convert:3 +#: discord.ext.commands.converter.GameConverter.convert:3 +#: discord.ext.commands.converter.GuildChannelConverter.convert:3 +#: discord.ext.commands.converter.GuildConverter.convert:3 +#: discord.ext.commands.converter.GuildStickerConverter.convert:3 +#: discord.ext.commands.converter.InviteConverter.convert:3 +#: discord.ext.commands.converter.MemberConverter.convert:3 +#: discord.ext.commands.converter.MessageConverter.convert:3 +#: discord.ext.commands.converter.ObjectConverter.convert:3 +#: discord.ext.commands.converter.PartialEmojiConverter.convert:3 +#: discord.ext.commands.converter.PartialMessageConverter.convert:3 +#: discord.ext.commands.converter.RoleConverter.convert:3 +#: discord.ext.commands.converter.StageChannelConverter.convert:3 +#: discord.ext.commands.converter.TextChannelConverter.convert:3 +#: discord.ext.commands.converter.ThreadConverter.convert:3 +#: discord.ext.commands.converter.UserConverter.convert:3 +#: discord.ext.commands.converter.VoiceChannelConverter.convert:3 +#: discord.ext.commands.converter.clean_content.convert:3 of +msgid "The method to override to do conversion logic." +msgstr "" + +#: 9d9f9443ace94d45aff747a2a2a753af +#: discord.ext.commands.converter.CategoryChannelConverter.convert:5 +#: discord.ext.commands.converter.ColourConverter.convert:5 +#: discord.ext.commands.converter.Converter.convert:5 +#: discord.ext.commands.converter.EmojiConverter.convert:5 +#: discord.ext.commands.converter.ForumChannelConverter.convert:5 +#: discord.ext.commands.converter.GameConverter.convert:5 +#: discord.ext.commands.converter.GuildChannelConverter.convert:5 +#: discord.ext.commands.converter.GuildConverter.convert:5 +#: discord.ext.commands.converter.GuildStickerConverter.convert:5 +#: discord.ext.commands.converter.InviteConverter.convert:5 +#: discord.ext.commands.converter.MemberConverter.convert:5 +#: discord.ext.commands.converter.MessageConverter.convert:5 +#: discord.ext.commands.converter.ObjectConverter.convert:5 +#: discord.ext.commands.converter.PartialEmojiConverter.convert:5 +#: discord.ext.commands.converter.PartialMessageConverter.convert:5 +#: discord.ext.commands.converter.RoleConverter.convert:5 +#: discord.ext.commands.converter.StageChannelConverter.convert:5 +#: discord.ext.commands.converter.TextChannelConverter.convert:5 +#: discord.ext.commands.converter.ThreadConverter.convert:5 +#: discord.ext.commands.converter.UserConverter.convert:5 +#: discord.ext.commands.converter.VoiceChannelConverter.convert:5 +#: discord.ext.commands.converter.clean_content.convert:5 of +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 "" + +#: 8e1557a164a24dd18a9d3e3d7524d840 +#: discord.ext.commands.converter.CategoryChannelConverter.convert:10 +#: discord.ext.commands.converter.ColourConverter.convert:10 +#: discord.ext.commands.converter.Converter.convert:10 +#: discord.ext.commands.converter.EmojiConverter.convert:10 +#: discord.ext.commands.converter.ForumChannelConverter.convert:10 +#: discord.ext.commands.converter.GameConverter.convert:10 +#: discord.ext.commands.converter.GuildChannelConverter.convert:10 +#: discord.ext.commands.converter.GuildConverter.convert:10 +#: discord.ext.commands.converter.GuildStickerConverter.convert:10 +#: discord.ext.commands.converter.InviteConverter.convert:10 +#: discord.ext.commands.converter.MemberConverter.convert:10 +#: discord.ext.commands.converter.MessageConverter.convert:10 +#: discord.ext.commands.converter.ObjectConverter.convert:10 +#: discord.ext.commands.converter.PartialEmojiConverter.convert:10 +#: discord.ext.commands.converter.PartialMessageConverter.convert:10 +#: discord.ext.commands.converter.RoleConverter.convert:10 +#: discord.ext.commands.converter.StageChannelConverter.convert:10 +#: discord.ext.commands.converter.TextChannelConverter.convert:10 +#: discord.ext.commands.converter.ThreadConverter.convert:10 +#: discord.ext.commands.converter.UserConverter.convert:10 +#: discord.ext.commands.converter.VoiceChannelConverter.convert:10 +#: discord.ext.commands.converter.clean_content.convert:10 of +msgid "The invocation context that the argument is being used in." +msgstr "" + +#: 28f8742b518343c0a0621906d8c7afa4 +#: discord.ext.commands.converter.CategoryChannelConverter.convert:13 +#: discord.ext.commands.converter.ColourConverter.convert:13 +#: discord.ext.commands.converter.Converter.convert:13 +#: discord.ext.commands.converter.EmojiConverter.convert:13 +#: discord.ext.commands.converter.ForumChannelConverter.convert:13 +#: discord.ext.commands.converter.GameConverter.convert:13 +#: discord.ext.commands.converter.GuildChannelConverter.convert:13 +#: discord.ext.commands.converter.GuildConverter.convert:13 +#: discord.ext.commands.converter.GuildStickerConverter.convert:13 +#: discord.ext.commands.converter.InviteConverter.convert:13 +#: discord.ext.commands.converter.MemberConverter.convert:13 +#: discord.ext.commands.converter.MessageConverter.convert:13 +#: discord.ext.commands.converter.ObjectConverter.convert:13 +#: discord.ext.commands.converter.PartialEmojiConverter.convert:13 +#: discord.ext.commands.converter.PartialMessageConverter.convert:13 +#: discord.ext.commands.converter.RoleConverter.convert:13 +#: discord.ext.commands.converter.StageChannelConverter.convert:13 +#: discord.ext.commands.converter.TextChannelConverter.convert:13 +#: discord.ext.commands.converter.ThreadConverter.convert:13 +#: discord.ext.commands.converter.UserConverter.convert:13 +#: discord.ext.commands.converter.VoiceChannelConverter.convert:13 +#: discord.ext.commands.converter.clean_content.convert:13 of +msgid "The argument that is being converted." +msgstr "" + +#: 4d5298f99ee649468bc32cbb48858423 +#: discord.ext.commands.converter.CategoryChannelConverter.convert:16 +#: discord.ext.commands.converter.ColourConverter.convert:16 +#: discord.ext.commands.converter.Converter.convert:16 +#: discord.ext.commands.converter.EmojiConverter.convert:16 +#: discord.ext.commands.converter.ForumChannelConverter.convert:16 +#: discord.ext.commands.converter.GameConverter.convert:16 +#: discord.ext.commands.converter.GuildChannelConverter.convert:16 +#: discord.ext.commands.converter.GuildConverter.convert:16 +#: discord.ext.commands.converter.GuildStickerConverter.convert:16 +#: discord.ext.commands.converter.InviteConverter.convert:16 +#: discord.ext.commands.converter.MemberConverter.convert:16 +#: discord.ext.commands.converter.MessageConverter.convert:16 +#: discord.ext.commands.converter.ObjectConverter.convert:16 +#: discord.ext.commands.converter.PartialEmojiConverter.convert:16 +#: discord.ext.commands.converter.PartialMessageConverter.convert:16 +#: discord.ext.commands.converter.RoleConverter.convert:16 +#: discord.ext.commands.converter.StageChannelConverter.convert:16 +#: discord.ext.commands.converter.TextChannelConverter.convert:16 +#: discord.ext.commands.converter.ThreadConverter.convert:16 +#: discord.ext.commands.converter.UserConverter.convert:16 +#: discord.ext.commands.converter.VoiceChannelConverter.convert:16 +#: discord.ext.commands.converter.clean_content.convert:16 of +msgid "A generic exception occurred when converting the argument." +msgstr "" + +#: discord.ext.commands.converter.CategoryChannelConverter.convert:17 +#: discord.ext.commands.converter.ColourConverter.convert:17 +#: discord.ext.commands.converter.Converter.convert:17 +#: discord.ext.commands.converter.EmojiConverter.convert:17 +#: discord.ext.commands.converter.ForumChannelConverter.convert:17 +#: discord.ext.commands.converter.GameConverter.convert:17 +#: discord.ext.commands.converter.GuildChannelConverter.convert:17 +#: discord.ext.commands.converter.GuildConverter.convert:17 +#: discord.ext.commands.converter.GuildStickerConverter.convert:17 +#: discord.ext.commands.converter.InviteConverter.convert:17 +#: discord.ext.commands.converter.MemberConverter.convert:17 +#: discord.ext.commands.converter.MessageConverter.convert:17 +#: discord.ext.commands.converter.ObjectConverter.convert:17 +#: discord.ext.commands.converter.PartialEmojiConverter.convert:17 +#: discord.ext.commands.converter.PartialMessageConverter.convert:17 +#: discord.ext.commands.converter.RoleConverter.convert:17 +#: discord.ext.commands.converter.StageChannelConverter.convert:17 +#: discord.ext.commands.converter.TextChannelConverter.convert:17 +#: discord.ext.commands.converter.ThreadConverter.convert:17 +#: discord.ext.commands.converter.UserConverter.convert:17 +#: discord.ext.commands.converter.VoiceChannelConverter.convert:17 +#: discord.ext.commands.converter.clean_content.convert:17 +#: e5f482e53ee44aa2a15113dc1e1e41de of +msgid "The converter failed to convert the argument." +msgstr "" + +#: c601cdd1c13e49e1995ff8a62823953d +#: discord.ext.commands.converter.Converter.convert:19 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\" +" \\\\\\(\\`\\`T\\_co\\`\\`\\, covariant\\=True\\)`" +msgstr "" + +#: 0e92c7b2d8f147b69988c8e009418b69 +#: discord.ext.commands.converter.ObjectConverter:1 of +msgid "Converts to a :class:`~discord.Object`." +msgstr "" + +#: 727747e448be408ca7871bda57d10222 +#: discord.ext.commands.converter.ObjectConverter:3 of +msgid "" +"The argument must follow the valid ID or mention formats (e.g. " +"`<@80088516616269824>`)." +msgstr "" + +#: 8908a3f472604dd1b17e67bf4cce1a98 +#: discord.ext.commands.converter.CategoryChannelConverter:6 +#: discord.ext.commands.converter.EmojiConverter:6 +#: discord.ext.commands.converter.ForumChannelConverter:6 +#: discord.ext.commands.converter.GuildChannelConverter:6 +#: discord.ext.commands.converter.GuildConverter:3 +#: discord.ext.commands.converter.GuildStickerConverter:6 +#: discord.ext.commands.converter.MemberConverter:6 +#: discord.ext.commands.converter.MessageConverter:5 +#: discord.ext.commands.converter.ObjectConverter:7 +#: discord.ext.commands.converter.RoleConverter:6 +#: discord.ext.commands.converter.StageChannelConverter:8 +#: discord.ext.commands.converter.TextChannelConverter:6 +#: discord.ext.commands.converter.ThreadConverter:5 +#: discord.ext.commands.converter.UserConverter:5 +#: discord.ext.commands.converter.VoiceChannelConverter:6 of +msgid "The lookup strategy is as follows (in order):" +msgstr "" + +#: 81bc7f6190a44dfdad07b950eef59a75 +#: discord.ext.commands.converter.CategoryChannelConverter:8 +#: discord.ext.commands.converter.EmojiConverter:8 +#: discord.ext.commands.converter.ForumChannelConverter:8 +#: discord.ext.commands.converter.GuildChannelConverter:8 +#: discord.ext.commands.converter.GuildConverter:5 +#: discord.ext.commands.converter.MemberConverter:8 +#: discord.ext.commands.converter.ObjectConverter:9 +#: discord.ext.commands.converter.RoleConverter:8 +#: discord.ext.commands.converter.StageChannelConverter:10 +#: discord.ext.commands.converter.TextChannelConverter:8 +#: discord.ext.commands.converter.ThreadConverter:7 +#: discord.ext.commands.converter.UserConverter:7 +#: discord.ext.commands.converter.VoiceChannelConverter:8 of +msgid "Lookup by ID." +msgstr "" + +#: afdd2a4d0f1840cfad2fbddc72f9d667 +#: discord.ext.commands.converter.ObjectConverter:10 of +msgid "Lookup by member, role, or channel mention." +msgstr "" + +#: 76bd5224cbd7404a82a7e1a65a2ba7e7 +#: discord.ext.commands.converter.ObjectConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.object.Object\\``" +msgstr "" + +#: 742769f030bb4786b80dbd891805017e +#: discord.ext.commands.converter.MemberConverter:1 of +msgid "Converts to a :class:`~discord.Member`." +msgstr "" + +#: 437a2f3b32a94663b8596fabd903f9b8 +#: discord.ext.commands.converter.CategoryChannelConverter:3 +#: discord.ext.commands.converter.ForumChannelConverter:3 +#: discord.ext.commands.converter.GuildChannelConverter:3 +#: discord.ext.commands.converter.MemberConverter:3 +#: discord.ext.commands.converter.StageChannelConverter:5 +#: discord.ext.commands.converter.TextChannelConverter:3 +#: discord.ext.commands.converter.VoiceChannelConverter:3 of +msgid "" +"All lookups are via the local guild. If in a DM context, then the lookup " +"is done by the global cache." +msgstr "" + +#: 2f289a0b34b94af6b7788cb39ee945d5 +#: discord.ext.commands.converter.CategoryChannelConverter:9 +#: discord.ext.commands.converter.ForumChannelConverter:9 +#: discord.ext.commands.converter.GuildChannelConverter:9 +#: discord.ext.commands.converter.MemberConverter:9 +#: discord.ext.commands.converter.RoleConverter:9 +#: discord.ext.commands.converter.StageChannelConverter:11 +#: discord.ext.commands.converter.TextChannelConverter:9 +#: discord.ext.commands.converter.ThreadConverter:8 +#: discord.ext.commands.converter.UserConverter:8 +#: discord.ext.commands.converter.VoiceChannelConverter:9 of +msgid "Lookup by mention." +msgstr "" + +#: 0d48779a2f444266936b946c2049cc49 +#: discord.ext.commands.converter.MemberConverter:10 +#: discord.ext.commands.converter.UserConverter:9 of +msgid "Lookup by name#discrim" +msgstr "" + +#: cb41bf47efbc46a88f1fb382c99df3a8 +#: discord.ext.commands.converter.CategoryChannelConverter:10 +#: discord.ext.commands.converter.EmojiConverter:10 +#: discord.ext.commands.converter.ForumChannelConverter:10 +#: discord.ext.commands.converter.MemberConverter:11 +#: discord.ext.commands.converter.RoleConverter:10 +#: discord.ext.commands.converter.StageChannelConverter:12 +#: discord.ext.commands.converter.TextChannelConverter:10 +#: discord.ext.commands.converter.UserConverter:10 +#: discord.ext.commands.converter.VoiceChannelConverter:10 of +msgid "Lookup by name" +msgstr "" + +#: 24bf57716efe420eb9723a91f138c0b1 +#: discord.ext.commands.converter.MemberConverter:12 of +msgid "Lookup by nickname" +msgstr "" + +#: 4cf7868345df4c21a983edab41b1b0d9 +#: discord.ext.commands.converter.MemberConverter:14 of +msgid "Raise :exc:`.MemberNotFound` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: 5e76492d4be6488b995dabf985898d99 +#: discord.ext.commands.converter.MemberConverter:17 of +msgid "" +"This converter now lazily fetches members from the gateway and HTTP APIs," +" optionally caching the result if :attr:`.MemberCacheFlags.joined` is " +"enabled." +msgstr "" + +#: 8d06743c4aaf4e759f2e26bec639327d +#: discord.ext.commands.converter.MemberConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.member.Member\\``" +msgstr "" + +#: 412f9a2fbaf94008a49dc5d7e0485240 +#: discord.ext.commands.converter.UserConverter:1 of +msgid "Converts to a :class:`~discord.User`." +msgstr "" + +#: 974a011359994de7af1c409ba415d6b6 +#: discord.ext.commands.converter.UserConverter:3 of +msgid "All lookups are via the global user cache." +msgstr "" + +#: 9f3a5094c8b04217b84085255960e9cf +#: discord.ext.commands.converter.UserConverter:12 of +msgid "Raise :exc:`.UserNotFound` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: 3bee8790498d44a396c4c3893cf43aa0 +#: discord.ext.commands.converter.UserConverter:15 of +msgid "" +"This converter now lazily fetches users from the HTTP APIs if an ID is " +"passed, and it's not available in cache." +msgstr "" + +#: 18ca02cf99df44a79e77275819dfec4b +#: discord.ext.commands.converter.UserConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.user.User\\``" +msgstr "" + +#: 2a032d08244340bfa4dc4be912b4932c +#: discord.ext.commands.converter.MessageConverter:1 of +msgid "Converts to a :class:`discord.Message`." +msgstr "" + +#: bfabc815487148ad94863e1ac2f8634f +#: discord.ext.commands.converter.MessageConverter:7 of +msgid "" +"Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on " +"\"Copy ID\")" +msgstr "" + +#: d5024e9b27bc4c5bbac52cc20e642175 +#: discord.ext.commands.converter.MessageConverter:8 of +msgid "Lookup by message ID (the message **must** be in the context channel)" +msgstr "" + +#: 32e249ca19b74aa09bfbd282a5f9c214 +#: discord.ext.commands.converter.MessageConverter:9 of +msgid "Lookup by message URL" +msgstr "" + +#: 2abe1582bd5341d5bf25227a0bc0cb70 +#: discord.ext.commands.converter.MessageConverter:11 of +msgid "" +"Raise :exc:`.ChannelNotFound`, :exc:`.MessageNotFound` or " +":exc:`.ChannelNotReadable` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: discord.ext.commands.converter.MessageConverter.convert:19 +#: f69d6050db19450db3668e8de5bcfd6f of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.Message\\``" +msgstr "" + +#: ae67fe03686c4532bdc49de9b2070f16 +#: discord.ext.commands.converter.PartialMessageConverter:1 of +msgid "Converts to a :class:`discord.PartialMessage`." +msgstr "" + +#: d924d7ff07ac42489f5c1ce537fa7b03 +#: discord.ext.commands.converter.PartialMessageConverter:5 of +msgid "The creation strategy is as follows (in order):" +msgstr "" + +#: 85bdb7294d554afbabc5e1eb19bc11c3 +#: discord.ext.commands.converter.PartialMessageConverter:7 of +msgid "" +"By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy " +"ID\")" +msgstr "" + +#: 8a6d3c3213c644568d162301e0ce3fe6 +#: discord.ext.commands.converter.PartialMessageConverter:8 of +msgid "By message ID (The message is assumed to be in the context channel.)" +msgstr "" + +#: 76454ca185ae45b1bd5cb22ac59e1909 +#: discord.ext.commands.converter.PartialMessageConverter:9 of +msgid "By message URL" +msgstr "" + +#: d9900b47bbf7468e8ac55515c260f4ca +#: discord.ext.commands.converter.PartialMessageConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.message.PartialMessage\\``" +msgstr "" + +#: 2cfea3fb0254411fb0b6754daa3ce282 +#: discord.ext.commands.converter.GuildChannelConverter:1 of +msgid "Converts to a :class:`~discord.abc.GuildChannel`." +msgstr "" + +#: 34555afe05c64c22ba65fa8c467758fb +#: discord.ext.commands.converter.GuildChannelConverter:10 +#: discord.ext.commands.converter.ThreadConverter:9 of +msgid "Lookup by name." +msgstr "" + +#: 1196b93dbf1843f9871f472f0fdaa174 +#: discord.ext.commands.converter.GuildChannelConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\``" +msgstr "" + +#: 6c443151bd9b488ea48551a8364f6d33 +#: discord.ext.commands.converter.TextChannelConverter:1 of +msgid "Converts to a :class:`~discord.TextChannel`." +msgstr "" + +#: 4ea1417c2e794a5e9f8755ffbf256902 +#: discord.ext.commands.converter.CategoryChannelConverter:12 +#: discord.ext.commands.converter.TextChannelConverter:12 +#: discord.ext.commands.converter.VoiceChannelConverter:12 of +msgid "Raise :exc:`.ChannelNotFound` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: 9acb0ac5aac34aa78efac7c13d4a1331 +#: discord.ext.commands.converter.TextChannelConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.TextChannel\\``" +msgstr "" + +#: 8ccdd108a7064b83aca8e4ab62fd305a +#: discord.ext.commands.converter.VoiceChannelConverter:1 of +msgid "Converts to a :class:`~discord.VoiceChannel`." +msgstr "" + +#: 2096498a3b5340ad90200fbfb19632ff +#: discord.ext.commands.converter.VoiceChannelConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.VoiceChannel\\``" +msgstr "" + +#: 20f52a031cab406dab1a51afced52432 +#: discord.ext.commands.converter.StageChannelConverter:1 of +msgid "Converts to a :class:`~discord.StageChannel`." +msgstr "" + +#: a929e67bd3d04b41a0dabcb8512f778a +#: discord.ext.commands.converter.StageChannelConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.StageChannel\\``" +msgstr "" + +#: a83f903ad1b34ad487fb7a4a03dc5b27 +#: discord.ext.commands.converter.CategoryChannelConverter:1 of +msgid "Converts to a :class:`~discord.CategoryChannel`." +msgstr "" + +#: 2623771c36a040caab45e6a378ce74e0 +#: discord.ext.commands.converter.CategoryChannelConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.CategoryChannel\\``" +msgstr "" + +#: 172a64bd6247459f9b5b43137b24c5bc +#: discord.ext.commands.converter.ForumChannelConverter:1 of +msgid "Converts to a :class:`~discord.ForumChannel`." +msgstr "" + +#: 0de36a5f0a2b41c1b482db1e3a98f017 +#: discord.ext.commands.converter.ForumChannelConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumChannel\\``" +msgstr "" + +#: b779ed1feb044884a3e36e41011028ba +#: discord.ext.commands.converter.InviteConverter:1 of +msgid "Converts to a :class:`~discord.Invite`." +msgstr "" + +#: discord.ext.commands.converter.InviteConverter:3 +#: fce31dd1ef1141ddbd7d7502bcab8a40 of +msgid "This is done via an HTTP request using :meth:`.Bot.fetch_invite`." +msgstr "" + +#: 77f0d4a2234e4ddf85645b0da2eac317 +#: discord.ext.commands.converter.InviteConverter:5 of +msgid "Raise :exc:`.BadInviteArgument` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: bc6ce10d467f4390ac66c2d5d0ca23ca +#: discord.ext.commands.converter.InviteConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.invite.Invite\\``" +msgstr "" + +#: 6b7a74325383465caf8f1f009428b33b +#: discord.ext.commands.converter.GuildConverter:1 of +msgid "Converts to a :class:`~discord.Guild`." +msgstr "" + +#: discord.ext.commands.converter.GuildConverter:6 +#: fd52a4dd3bc0463c896b76e00dde8a04 of +msgid "" +"Lookup by name. (There is no disambiguation for Guilds with multiple " +"matching names)." +msgstr "" + +#: 39ab7f0b8b79427689539f5cef19c853 +#: discord.ext.commands.converter.GuildConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.guild.Guild\\``" +msgstr "" + +#: 7c2bee80870241ea9d20251d3217dc89 +#: discord.ext.commands.converter.RoleConverter:1 of +msgid "Converts to a :class:`~discord.Role`." +msgstr "" + +#: 61d67e8d54b04821a028d8ab39e6c98a +#: discord.ext.commands.converter.RoleConverter:3 of +msgid "" +"All lookups are via the local guild. If in a DM context, the converter " +"raises :exc:`.NoPrivateMessage` exception." +msgstr "" + +#: 08b6aa908bb64dcea42329171a14f5c2 +#: discord.ext.commands.converter.RoleConverter:12 of +msgid "Raise :exc:`.RoleNotFound` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: 45e204c610ee43ed950dcc22b1ecac5d +#: discord.ext.commands.converter.RoleConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.role.Role\\``" +msgstr "" + +#: discord.ext.commands.converter.GameConverter:1 +#: f68137599ad141848aea62797bd0b069 of +msgid "Converts to :class:`~discord.Game`." +msgstr "" + +#: 7dbcdc21d90f448b9d1efd11e118645f +#: discord.ext.commands.converter.GameConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.activity.Game\\``" +msgstr "" + +#: discord.ext.commands.converter.ColourConverter:1 +#: f4e87a79041a451c801d3b6c0c26393c of +msgid "Converts to a :class:`~discord.Colour`." +msgstr "" + +#: bd1d31daa2fe4f7ba99d73ef48a4d20a +#: discord.ext.commands.converter.ColourConverter:3 of +msgid "Add an alias named ColorConverter" +msgstr "" + +#: 7e8e22e6115f449b8de9d66de21770ea +#: discord.ext.commands.converter.ColourConverter:6 of +msgid "The following formats are accepted:" +msgstr "" + +#: 2975fccff559428e99d149e8fd618d24 +#: discord.ext.commands.converter.ColourConverter:8 of +msgid "``0x``" +msgstr "" + +#: discord.ext.commands.converter.ColourConverter:9 +#: fd078f70f7a1418a97ecd2b2d1bd1084 of +msgid "``#``" +msgstr "" + +#: c278ff33210c42e2a6f842916a54f37c +#: discord.ext.commands.converter.ColourConverter:10 of +msgid "``0x#``" +msgstr "" + +#: d94660f553f04addb931a9aedf36734c +#: discord.ext.commands.converter.ColourConverter:11 of +msgid "``rgb(, , )``" +msgstr "" + +#: b6271dd49d2b4d08b612c7f8ad362306 +#: discord.ext.commands.converter.ColourConverter:12 of +msgid "Any of the ``classmethod`` in :class:`~discord.Colour`" +msgstr "" + +#: a3a933b8465e4e2aac98efb09e3792ff +#: discord.ext.commands.converter.ColourConverter:14 of +msgid "The ``_`` in the name can be optionally replaced with spaces." +msgstr "" + +#: d8013b78f4674f15b973ba505866fe32 +#: discord.ext.commands.converter.ColourConverter:16 of +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 "" + +#: 0fe40cd0acb149afb058b8a72858a814 +#: discord.ext.commands.converter.ColourConverter:19 of +msgid "Raise :exc:`.BadColourArgument` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: 678c8011b29a497caae665ce41559203 +#: discord.ext.commands.converter.ColourConverter:22 of +msgid "Added support for ``rgb`` function and 3-digit hex shortcuts" +msgstr "" + +#: 4633cc38f1954c9fb988d94796c138e8 +#: discord.ext.commands.converter.ColourConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" +msgstr "" + +#: 5fe8c3fcda8a4f62af280c4d6ab3397a +#: discord.ext.commands.converter.EmojiConverter:1 of +msgid "Converts to a :class:`~discord.Emoji`." +msgstr "" + +#: b0e0e871ab064289a32c66c40214fd9e +#: discord.ext.commands.converter.EmojiConverter:3 +#: discord.ext.commands.converter.GuildStickerConverter:3 of +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 "" + +#: b07065acb83c45b486baabdf63179771 +#: discord.ext.commands.converter.EmojiConverter:9 of +msgid "Lookup by extracting ID from the emoji." +msgstr "" + +#: c4d58c4ef0a6423da6a5e5b6eb0d6be9 +#: discord.ext.commands.converter.EmojiConverter:12 of +msgid "Raise :exc:`.EmojiNotFound` instead of generic :exc:`.BadArgument`" +msgstr "" + +#: 97ae2776efac4d31b3a7edda0567ced5 +#: discord.ext.commands.converter.EmojiConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" +msgstr "" + +#: a6e1bbb66c634ba882343850f5060099 +#: discord.ext.commands.converter.PartialEmojiConverter:1 of +msgid "Converts to a :class:`~discord.PartialEmoji`." +msgstr "" + +#: 42c767df989a4c90b5d6b441a08d7df2 +#: discord.ext.commands.converter.PartialEmojiConverter:3 of +msgid "This is done by extracting the animated flag, name and ID from the emoji." +msgstr "" + +#: 07638781992545e39720fcaf86933a79 +#: discord.ext.commands.converter.PartialEmojiConverter:5 of +msgid "" +"Raise :exc:`.PartialEmojiConversionFailure` instead of generic " +":exc:`.BadArgument`" +msgstr "" + +#: 1e63c68c4f734c36b2b9f66fcf8eece7 +#: discord.ext.commands.converter.PartialEmojiConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.partial\\_emoji.PartialEmoji\\``" +msgstr "" + +#: ce9f0c4726d04dee89258a89147f1c84 +#: discord.ext.commands.converter.ThreadConverter:1 of +msgid "Coverts to a :class:`~discord.Thread`." +msgstr "" + +#: 790b28ad496d47d8ba6e1763d3ee0ad1 +#: discord.ext.commands.converter.ThreadConverter:3 of +msgid "All lookups are via the local guild." +msgstr "" + +#: 9fd932f95910427882b21cd8049861b0 +#: discord.ext.commands.converter.ThreadConverter.convert:19 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.threads.Thread\\``" +msgstr "" + +#: discord.ext.commands.converter.GuildStickerConverter:1 +#: e61870d441594fc08984aae236b3c1da of +msgid "Converts to a :class:`~discord.GuildSticker`." +msgstr "" + +#: discord.ext.commands.converter.GuildStickerConverter:8 +#: f6697785b6e9452dbb7a1e3d2e50e6c1 of +msgid "1. Lookup by ID. 3. Lookup by name" +msgstr "" + +#: discord.ext.commands.converter.GuildStickerConverter.convert:19 +#: e659cc67ce3f47b49647be349da570fc of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.sticker.GuildSticker\\``" +msgstr "" + +#: 26b5eaad74174413ad5f62f07c19e04e +#: discord.ext.commands.converter.clean_content:1 of +msgid "Converts the argument to mention scrubbed version of said content." +msgstr "" + +#: 222b174f45a6491685b454e0ca7ac505 +#: discord.ext.commands.converter.clean_content:4 of +msgid "This behaves similarly to :attr:`~discord.Message.clean_content`." +msgstr "" + +#: cd20087853094691a18a67dfa932b7e7 +#: discord.ext.commands.converter.clean_content:8 of +msgid "Whether to clean channel mentions." +msgstr "" + +#: 3d7a283473d84c54be777d237ce9b0ea +#: discord.ext.commands.converter.clean_content:14 of +msgid "Whether to use nicknames when transforming mentions." +msgstr "" + +#: cad7e9188975461bab6898228488e849 +#: discord.ext.commands.converter.clean_content:20 of +msgid "Whether to also escape special markdown characters." +msgstr "" + +#: ac08fe2514bd4811b892d04d1aaee218 +#: discord.ext.commands.converter.clean_content:26 of +msgid "" +"Whether to also remove special markdown characters. This option is not " +"supported with ``escape_markdown``" +msgstr "" + +#: 693ad27846404f11a8c7dcd918b18571 discord.ext.commands.converter.Greedy:1 of +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 "" + +#: 65c82b1d226e4019830193c66d7b71fb discord.ext.commands.converter.Greedy:5 of +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.Greedy:8 eea47d9f94744e9b917b9d652e66a173 of +msgid "For example, in the following code:" +msgstr "" + +#: 8d160e434a7f4a6ab63e90f02f9906c0 discord.ext.commands.converter.Greedy:16 of +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 "" + +#: 4c73772c707a41a8bca1bc1d45003b4f discord.ext.commands.converter.Greedy:19 of +msgid "For more information, check :ref:`ext_commands_special_converters`." +msgstr "" + +#: b8cb297c3d1e4c6590617210c3e66258 +#: discord.ext.commands.converter.run_converters:3 of +msgid "Runs converters for a given converter, argument, and parameter." +msgstr "" + +#: 76a8a32516ab489385eead76873a3063 +#: discord.ext.commands.converter.run_converters:5 of +msgid "This function does the same work that the library does under the hood." +msgstr "" + +#: 26189e1dade84d1695feb50b0f581be0 +#: discord.ext.commands.converter.run_converters:10 of +msgid "The invocation context to run the converters under." +msgstr "" + +#: 7d0cc1620d474215b3792c80011ca01c +#: discord.ext.commands.converter.run_converters:13 of +msgid "The converter to run, this corresponds to the annotation in the function." +msgstr "" + +#: 3b33275cf8bc4265ad0e767e85abf029 +#: discord.ext.commands.converter.run_converters:16 of +msgid "The argument to convert to." +msgstr "" + +#: 70f697fdaf9e420197d1e7b68bacadd4 +#: discord.ext.commands.converter.run_converters:19 of +msgid "The parameter being converted. This is mainly for error reporting." +msgstr "" + +#: ca628a1c253c4ef09eba37baf33c7df8 +#: discord.ext.commands.converter.run_converters:22 of +msgid "The resulting conversion." +msgstr "" + +#: c0ae70d2dde14c5ba5ea30a0e9ffeca6 +#: discord.ext.commands.converter.run_converters:25 of +msgid "The converter failed to convert." +msgstr "" + +#: ../../ext/commands/api.rst:438 1e2749402e7849088fc29daf98fe46aa +msgid "Flag Converter" +msgstr "" + +#: discord.ext.commands.flags.FlagConverter:1 ebf35e6c9cc74dfea31978fe12ef8441 +#: of +msgid "A converter that allows for a user-friendly flag syntax." +msgstr "" + +#: 9cd13fd1f8fa45eb928cd329ee9c0b6b discord.ext.commands.flags.FlagConverter:3 +#: of +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.FlagConverter:12 e2322223de744e58bfd011edac6861bc +#: of +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 "" + +#: d315ec7b9ea34fa69b128dc9251defe2 discord.ext.commands.flags.FlagConverter:18 +#: of +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 "" + +#: 5cbcd48f9c6a4f3a946cb7f7d31ace3a discord.ext.commands.flags.FlagConverter:22 +#: of +msgid "" +"The prefix that all flags must be prefixed with. By default, there is no " +"prefix." +msgstr "" + +#: b288c7ce85f543eab6734e8f8af233ad discord.ext.commands.flags.FlagConverter:25 +#: of +msgid "" +"The delimiter that separates a flag's argument from the flag's name. By " +"default, this is ``:``." +msgstr "" + +#: b88d014bc2fe4314b4cfc532d2b4a53d +#: discord.ext.commands.flags.FlagConverter.get_flags:1 of +msgid "A mapping of flag name to flag object this converter has." +msgstr "" + +#: 71f48457a02b4dd6aed21b6792ad8e49 +#: discord.ext.commands.flags.FlagConverter.get_flags:4 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`dict\\`\\\\ " +"\\\\\\[\\:py\\:class\\:\\`str\\`\\, " +"\\:py\\:class\\:\\`\\~discord.ext.commands.flags.Flag\\`\\]`" +msgstr "" + +#: c80c9b5b801e4b62a57251824320bace +#: discord.ext.commands.flags.FlagConverter.convert:3 of +msgid "The method that actually converters an argument to the flag mapping." +msgstr "" + +#: discord.ext.commands.flags.FlagConverter.convert:5 +#: eff33f3c050c4e038d09a2a9bdcc8efa of +msgid "The flag converter class." +msgstr "" + +#: 76a247e0e011404e9c25960694f09952 +#: discord.ext.commands.flags.FlagConverter.convert:11 of +msgid "The argument to convert from." +msgstr "" + +#: 818f36c5b4cb490aae6b80095dff1b0f +#: discord.ext.commands.flags.FlagConverter.convert:14 of +msgid "The flag converter instance with all flags parsed." +msgstr "" + +#: discord.ext.commands.flags.FlagConverter.convert:15 +#: e3615b359fd44a1fa52dd21c0878e6b9 of +msgid ":class:`FlagConverter`" +msgstr "" + +#: 7c7a50f6b7434393951a3c121025f908 +#: discord.ext.commands.flags.FlagConverter.convert:17 of +msgid "A flag related parsing error." +msgstr "" + +#: 5e97f1db6bc948e9afa242cbf64fbbc2 +#: discord.ext.commands.flags.FlagConverter.convert:18 of +msgid "A command related error." +msgstr "" + +#: 45e7a4bb9a3f4ced97c9384d6f7b1df7 discord.ext.commands.flags.Flag:1 of +msgid "Represents a flag parameter for :class:`FlagConverter`." +msgstr "" + +#: 56adcf6a1e7e4dba975c4276d615605d discord.ext.commands.flags.Flag:3 of +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 "" + +#: 0fd508502b6142d693389cf1f8ef3d9e discord.ext.commands.flags.Flag:9 of +msgid "The name of the flag." +msgstr "" + +#: 9fd4ac94309f4005a49ca8a1845f8f02 discord.ext.commands.flags.Flag:15 of +msgid "The aliases of the flag name." +msgstr "" + +#: ba6fbc2b3b924e09b4847d09c9265c3f discord.ext.commands.flags.Flag:21 of +msgid "The attribute in the class that corresponds to this flag." +msgstr "" + +#: 42585df2efea4584b149b8afaf0017da discord.ext.commands.flags.Flag:27 of +msgid "The default value of the flag, if available." +msgstr "" + +#: b755efe3ab02421ebf20dd845a99ba63 discord.ext.commands.flags.Flag:29 +#: discord.ext.commands.flags.Flag:35 of +msgid "Any" +msgstr "" + +#: discord.ext.commands.flags.Flag:33 e380378a9b484f9a97ae7cd84cef8d0b of +msgid "The underlying evaluated annotation of the flag." +msgstr "" + +#: 994cd4022bc249d6a975fc2c6d060ef9 discord.ext.commands.flags.Flag:39 of +msgid "" +"The maximum number of arguments the flag can accept. A negative value " +"indicates an unlimited amount of arguments." +msgstr "" + +#: 9bcc7c0f11ce42f68c9b4e442b1bd117 discord.ext.commands.flags.Flag:46 of +msgid "Whether multiple given values overrides the previous value." +msgstr "" + +#: 639c1e5bc42f4c34b75f3a1d21ac5f49 discord.ext.commands.Flag.required:1 of +msgid "Whether the flag is required." +msgstr "" + +#: discord.ext.commands.Flag.required:3 ed39444a85a541809414f9fb64c50751 of +msgid "A required flag has no default value." +msgstr "" + +#: 361b8bfe96934487a49fe9586d484562 discord.ext.commands.flags.flag:1 of +msgid "" +"Override default functionality and parameters of the underlying " +":class:`FlagConverter` class attributes." +msgstr "" + +#: 88f1bd71d9cf4cb09270bb77151b8277 discord.ext.commands.flags.flag:5 of +msgid "The flag name. If not given, defaults to the attribute name." +msgstr "" + +#: a6bcfd20152f405a86597c00bed08f64 discord.ext.commands.flags.flag:8 of +msgid "Aliases to the flag name. If not given, no aliases are set." +msgstr "" + +#: 80b9750cb95441f4b9f8e74b1ebc5ce1 discord.ext.commands.flags.flag:11 of +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 "" + +#: 1301032487f84c4b983ffd5cc18cd69f discord.ext.commands.flags.flag:16 of +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 "" + +#: 9d12431a536a41a196ca323965285a01 discord.ext.commands.flags.flag:21 of +msgid "" +"Whether multiple given values overrides the previous value. The default " +"value depends on the annotation given." +msgstr "" + +#: 739a359756dd4d95bcbb386fc201f629 discord.ext.commands.flags.flag:25 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr "" + +#: ../../ext/commands/api.rst:451 9f12f5caa99e439489d62576052ce36d +msgid "Exceptions" +msgstr "" + +#: de8054c7a89f40cc9c628cd008ed4c08 discord.ext.commands.errors.CommandError:1 +#: of +msgid "The base exception type for all command related errors." +msgstr "" + +#: discord.ext.commands.errors.CommandError:3 e3a7a1c8784e4b0391cba40b4b86bc07 +#: of +msgid "This inherits from :exc:`discord.DiscordException`." +msgstr "" + +#: 28c66f1b65264ecbb347abcc7549e452 discord.ext.commands.errors.CommandError:5 +#: of +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 "" + +#: 775da09f3b11433c96643d4bd6880d60 +#: discord.ext.commands.errors.ConversionError:1 of +msgid "Exception raised when a Converter class raises non-CommandError." +msgstr "" + +#: c1628f75af2142f1a0c57e3232afa38b +#: discord.ext.commands.errors.CommandNotFound:7 +#: discord.ext.commands.errors.ConversionError:3 +#: discord.ext.commands.errors.MaxConcurrencyReached:3 +#: discord.ext.commands.errors.UserInputError:4 of +msgid "This inherits from :exc:`CommandError`." +msgstr "" + +#: 5f5b0fab620946b7b1c3c64f32df513d +#: discord.ext.commands.errors.ConversionError:7 of +msgid "The converter that failed." +msgstr "" + +#: discord.ext.commands.errors.ConversionError:9 +#: fbe4c703f5a84067985a716e2052e9dc of +msgid ":class:`discord.ext.commands.Converter`" +msgstr "" + +#: 59bc4fd8d04e4eec9b78caa9b9dcee7d +#: discord.ext.commands.errors.CommandInvokeError:7 +#: discord.ext.commands.errors.ConversionError:13 of +msgid "" +"The original exception that was raised. You can also get this via the " +"``__cause__`` attribute." +msgstr "" + +#: a7b6a5d248994baa9f94e2df8562e74b +#: discord.ext.commands.errors.CommandInvokeError:10 +#: discord.ext.commands.errors.ConversionError:16 of +msgid ":exc:`Exception`" +msgstr "" + +#: 14e0a4d933194585bdad3d9f70b27f50 +#: discord.ext.commands.errors.MissingRequiredArgument:1 of +msgid "" +"Exception raised when parsing a command and a parameter that is required " +"is not encountered." +msgstr "" + +#: 165ab37adc89428e90ff4df2f0b80314 discord.ext.commands.errors.BadArgument:4 +#: discord.ext.commands.errors.BadLiteralArgument:4 +#: discord.ext.commands.errors.BadUnionArgument:4 +#: discord.ext.commands.errors.MissingRequiredArgument:4 +#: discord.ext.commands.errors.TooManyArguments:4 of +msgid "This inherits from :exc:`UserInputError`" +msgstr "" + +#: be98043a63b449a988de52a1b8df47d6 +#: discord.ext.commands.errors.MissingRequiredArgument:8 of +msgid "The argument that is missing." +msgstr "" + +#: ac767ecf96d642aeac005e669fd48fea +#: discord.ext.commands.errors.BadLiteralArgument:12 +#: discord.ext.commands.errors.BadUnionArgument:10 +#: discord.ext.commands.errors.MissingRequiredArgument:10 of +msgid ":class:`inspect.Parameter`" +msgstr "" + +#: 99f048e71ece48c19ae6f915f5dcee0e +#: discord.ext.commands.errors.ArgumentParsingError:1 of +msgid "An exception raised when the parser fails to parse a user's input." +msgstr "" + +#: 197972f134b643a4bcc356605c847a4f +#: discord.ext.commands.errors.ArgumentParsingError:3 of +msgid "This inherits from :exc:`UserInputError`." +msgstr "" + +#: 19a270dea6a84fb4b01280520155719c +#: discord.ext.commands.errors.ArgumentParsingError:5 of +msgid "" +"There are child classes that implement more granular parsing errors for " +"i18n purposes." +msgstr "" + +#: c6f44123c0d8446688a895b2dab96f02 +#: discord.ext.commands.errors.UnexpectedQuoteError:1 of +msgid "" +"An exception raised when the parser encounters a quote mark inside a non-" +"quoted string." +msgstr "" + +#: 71e587d424b0450b9e26f4c4abad9240 +#: discord.ext.commands.errors.ExpectedClosingQuoteError:3 +#: discord.ext.commands.errors.InvalidEndOfQuotedStringError:4 +#: discord.ext.commands.errors.UnexpectedQuoteError:3 of +msgid "This inherits from :exc:`ArgumentParsingError`." +msgstr "" + +#: 452b63fa0e564a6ab5468150309d0422 +#: discord.ext.commands.errors.UnexpectedQuoteError:7 of +msgid "The quote mark that was found inside the non-quoted string." +msgstr "" + +#: bc59593a8a08405c86a2f64f83389d40 +#: discord.ext.commands.errors.InvalidEndOfQuotedStringError:1 of +msgid "" +"An exception raised when a space is expected after the closing quote in a" +" string but a different character is found." +msgstr "" + +#: 1f7b37cfa2b44800b2a62fc6b846c7a0 +#: discord.ext.commands.errors.InvalidEndOfQuotedStringError:8 of +msgid "The character found instead of the expected string." +msgstr "" + +#: 302d5d1597f04b16a58937bcc46bebba +#: discord.ext.commands.errors.ExpectedClosingQuoteError:1 of +msgid "An exception raised when a quote character is expected but not found." +msgstr "" + +#: 8fcd7001236a4867b6766ec2fa48fa79 +#: discord.ext.commands.errors.ExpectedClosingQuoteError:7 of +msgid "The quote character expected." +msgstr "" + +#: 1407890e0c744feaa93d64791a0ceb59 discord.ext.commands.errors.BadArgument:1 +#: of +msgid "" +"Exception raised when a parsing or conversion failure is encountered on " +"an argument to pass into a command." +msgstr "" + +#: 3f5ca23837a541c288466959940aa1ab +#: discord.ext.commands.errors.BadUnionArgument:1 of +msgid "" +"Exception raised when a :data:`typing.Union` converter fails for all its " +"associated types." +msgstr "" + +#: bfb5f51c531d44e49c5ae964e7432593 +#: discord.ext.commands.errors.BadLiteralArgument:10 +#: discord.ext.commands.errors.BadUnionArgument:8 of +msgid "The parameter that failed being converted." +msgstr "" + +#: 885d985954d94bcfa4bd9e86dbbade74 +#: discord.ext.commands.errors.BadUnionArgument:14 of +msgid "A tuple of converters attempted in conversion, in order of failure." +msgstr "" + +#: a50f4bbb339542909f100b744c975ce5 +#: discord.ext.commands.errors.BadUnionArgument:16 of +msgid "Tuple[Type, ``...``]" +msgstr "" + +#: discord.ext.commands.errors.BadLiteralArgument:22 +#: discord.ext.commands.errors.BadUnionArgument:20 +#: e17c717ab6224038bba2f6a093d6be4e of +msgid "A list of errors that were caught from failing the conversion." +msgstr "" + +#: 9cfe57c2d101467d87400e0d145a2c08 +#: discord.ext.commands.errors.BadLiteralArgument:24 +#: discord.ext.commands.errors.BadUnionArgument:22 of +msgid "List[:class:`CommandError`]" +msgstr "" + +#: d65d70b1132a4bbaa0c1c0e749f7278b +#: discord.ext.commands.errors.BadLiteralArgument:1 of +msgid "" +"Exception raised when a :data:`typing.Literal` converter fails for all " +"its associated values." +msgstr "" + +#: 94ba1f40a50347beb65c73d6279c02d7 +#: discord.ext.commands.errors.BadLiteralArgument:16 of +msgid "A tuple of values compared against in conversion, in order of failure." +msgstr "" + +#: discord.ext.commands.errors.BadLiteralArgument:18 +#: e563d171b653419bb5ebffa44618706e of +msgid "Tuple[Any, ``...``]" +msgstr "" + +#: 4accdd8a5de0454d836bcb7a601d2249 +#: discord.ext.commands.errors.PrivateMessageOnly:1 of +msgid "" +"Exception raised when an operation does not work outside of private " +"message contexts." +msgstr "" + +#: dbb9cfa723ce4683a0356453833bc9c9 +#: discord.ext.commands.errors.BotMissingAnyRole:4 +#: discord.ext.commands.errors.BotMissingPermissions:4 +#: discord.ext.commands.errors.BotMissingRole:3 +#: discord.ext.commands.errors.MissingAnyRole:4 +#: discord.ext.commands.errors.MissingPermissions:4 +#: discord.ext.commands.errors.MissingRole:3 +#: discord.ext.commands.errors.NoPrivateMessage:4 +#: discord.ext.commands.errors.NotOwner:3 +#: discord.ext.commands.errors.PrivateMessageOnly:4 of +msgid "This inherits from :exc:`CheckFailure`" +msgstr "" + +#: 96608eb292b948cbac864b16f33f6e05 +#: discord.ext.commands.errors.NoPrivateMessage:1 of +msgid "" +"Exception raised when an operation does not work in private message " +"contexts." +msgstr "" + +#: 03237b06950349af8b5877c3b0865393 discord.ext.commands.errors.CheckFailure:1 +#: of +msgid "" +"Exception raised when the predicates in :attr:`.Command.checks` have " +"failed." +msgstr "" + +#: 21521951fe3645c599f43042bd74017f discord.ext.commands.errors.CheckFailure:3 +#: discord.ext.commands.errors.CommandInvokeError:3 +#: discord.ext.commands.errors.CommandOnCooldown:3 +#: discord.ext.commands.errors.DisabledCommand:3 of +msgid "This inherits from :exc:`CommandError`" +msgstr "" + +#: discord.ext.commands.errors.CheckAnyFailure:1 +#: fdf4dcd227e148228e21d1948cb2676a of +msgid "Exception raised when all predicates in :func:`check_any` fail." +msgstr "" + +#: discord.ext.commands.errors.CheckAnyFailure:3 +#: discord.ext.commands.errors.NSFWChannelRequired:3 +#: e51c110bd8cb4f13b2f0dc5eb781134e of +msgid "This inherits from :exc:`CheckFailure`." +msgstr "" + +#: 4ff5239ba6b048c492f5196098784413 +#: discord.ext.commands.errors.CheckAnyFailure:9 of +msgid "A list of errors that were caught during execution." +msgstr "" + +#: discord.ext.commands.errors.CheckAnyFailure:11 +#: e6eef43806f64b449d040306cc418c6c of +msgid "List[:class:`CheckFailure`]" +msgstr "" + +#: 72280e5b7a9247358710cf411d55e66f +#: discord.ext.commands.errors.CheckAnyFailure:15 of +msgid "A list of check predicates that failed." +msgstr "" + +#: 9c95362945e54d249dfb1f53c01df57a +#: discord.ext.commands.errors.CheckAnyFailure:17 of +msgid "List[Callable[[:class:`Context`], :class:`bool`]]" +msgstr "" + +#: 6d3a08a8839845fca30e84b8a4b306e2 +#: discord.ext.commands.errors.CommandNotFound:1 of +msgid "" +"Exception raised when a command is attempted to be invoked but no command" +" under that name is found." +msgstr "" + +#: 4e2fbed34f904d2f803049cdfda27e2a +#: discord.ext.commands.errors.CommandNotFound:4 of +msgid "" +"This is not raised for invalid subcommands, rather just the initial main " +"command that is attempted to be invoked." +msgstr "" + +#: 9f86073a221845eea8f7c391b8bdde72 +#: discord.ext.commands.errors.DisabledCommand:1 of +msgid "Exception raised when the command being invoked is disabled." +msgstr "" + +#: 7075cb5d93a942a884908449fe8754c4 +#: discord.ext.commands.errors.CommandInvokeError:1 of +msgid "Exception raised when the command being invoked raised an exception." +msgstr "" + +#: 52d12ffa6eeb41e2880bed34a9b4bbce +#: discord.ext.commands.errors.TooManyArguments:1 of +msgid "" +"Exception raised when the command was passed too many arguments and its " +":attr:`.Command.ignore_extra` attribute was not set to ``True``." +msgstr "" + +#: 7eed2c49b4da49a0b1895c22914b4e6c +#: discord.ext.commands.errors.UserInputError:1 of +msgid "" +"The base exception type for errors that involve errors regarding user " +"input." +msgstr "" + +#: 7e037c297ba143e4805430b144f46bbb +#: discord.ext.commands.errors.CommandOnCooldown:1 of +msgid "Exception raised when the command being invoked is on cooldown." +msgstr "" + +#: discord.ext.commands.errors.CommandOnCooldown:7 +#: ee6083fa81ee4a83874d43c623041852 of +msgid "" +"A class with attributes ``rate`` and ``per`` similar to the " +":func:`.cooldown` decorator." +msgstr "" + +#: 2fd7d25d75794561a8a2d78143ec44fa +#: discord.ext.commands.errors.CommandOnCooldown:10 of +msgid ":class:`.Cooldown`" +msgstr "" + +#: 9fc0412e234440a194944d2b45b92fe2 +#: discord.ext.commands.errors.CommandOnCooldown:14 of +msgid "The type associated with the cooldown." +msgstr "" + +#: 3cb421159c314fb4adf5e168945317ab +#: discord.ext.commands.errors.CommandOnCooldown:16 of +msgid ":class:`BucketType`" +msgstr "" + +#: 8d2ea9a9b813410eac680f92f1b344f6 +#: discord.ext.commands.errors.CommandOnCooldown:20 of +msgid "The amount of seconds to wait before you can retry again." +msgstr "" + +#: discord.ext.commands.errors.MaxConcurrencyReached:1 +#: ec430b1c0a9549cfad0cdde9485394d1 of +msgid "" +"Exception raised when the command being invoked has reached its maximum " +"concurrency." +msgstr "" + +#: discord.ext.commands.errors.MaxConcurrencyReached:7 +#: f686fa32c5764e62b8b8bd10fc099503 of +msgid "The maximum number of concurrent invokers allowed." +msgstr "" + +#: 6410e5d4f966442db39c50132e842e6c +#: discord.ext.commands.errors.MaxConcurrencyReached:13 of +msgid "The bucket type passed to the :func:`.max_concurrency` decorator." +msgstr "" + +#: 8adb54bbebb74a19816d333471507599 +#: discord.ext.commands.errors.MaxConcurrencyReached:15 of +msgid ":class:`.BucketType`" +msgstr "" + +#: ca0fc435abf24248bb4790c352b24822 discord.ext.commands.errors.NotOwner:1 of +msgid "Exception raised when the message author is not the owner of the bot." +msgstr "" + +#: c9e4459728ac4cc6a27b56a6defdcf14 +#: discord.ext.commands.errors.MessageNotFound:1 of +msgid "Exception raised when the message provided was not found in the channel." +msgstr "" + +#: cafbbd3a5904470cbe7817bdf3a418bf +#: discord.ext.commands.errors.BadBoolArgument:3 +#: discord.ext.commands.errors.BadColourArgument:3 +#: discord.ext.commands.errors.BadInviteArgument:3 +#: discord.ext.commands.errors.ChannelNotFound:3 +#: discord.ext.commands.errors.ChannelNotReadable:4 +#: discord.ext.commands.errors.EmojiNotFound:3 +#: discord.ext.commands.errors.GuildNotFound:3 +#: discord.ext.commands.errors.GuildStickerNotFound:3 +#: discord.ext.commands.errors.MemberNotFound:4 +#: discord.ext.commands.errors.MessageNotFound:3 +#: discord.ext.commands.errors.PartialEmojiConversionFailure:4 +#: discord.ext.commands.errors.RoleNotFound:3 +#: discord.ext.commands.errors.ThreadNotFound:3 +#: discord.ext.commands.errors.UserNotFound:4 of +msgid "This inherits from :exc:`BadArgument`" +msgstr "" + +#: 919b214d6e7b45fca37e039161972510 +#: discord.ext.commands.errors.MessageNotFound:9 of +msgid "The message supplied by the caller that was not found" +msgstr "" + +#: 53aa71c340174d789b45ad3fd9260c8d +#: discord.ext.commands.errors.MemberNotFound:1 of +msgid "" +"Exception raised when the member provided was not found in the bot's " +"cache." +msgstr "" + +#: 7bb3f96e98cb461d8a0c7ce08b497005 +#: discord.ext.commands.errors.MemberNotFound:10 of +msgid "The member supplied by the caller that was not found" +msgstr "" + +#: discord.ext.commands.errors.GuildNotFound:1 ea7ce6eabe934c1fad2a3c1988cebefa +#: of +msgid "Exception raised when the guild provided was not found in the bot's cache." +msgstr "" + +#: 01925b74dade4730a5bcefbfa11d69dd discord.ext.commands.errors.GuildNotFound:9 +#: of +msgid "The guild supplied by the called that was not found" +msgstr "" + +#: c7c19e3d8c6c4893b5f8b6e9867b16f5 discord.ext.commands.errors.UserNotFound:1 +#: of +msgid "Exception raised when the user provided was not found in the bot's cache." +msgstr "" + +#: 0f431bc819e74530801b87d339ec4ada discord.ext.commands.errors.UserNotFound:10 +#: of +msgid "The user supplied by the caller that was not found" +msgstr "" + +#: discord.ext.commands.errors.ChannelNotFound:1 +#: f6b591356c80408192207ebfbb8ebfe1 of +msgid "Exception raised when the bot can not find the channel." +msgstr "" + +#: 5921dca926fc477e9a91b1d7696c508f +#: discord.ext.commands.errors.ChannelNotFound:9 of +msgid "The channel supplied by the caller that was not found" +msgstr "" + +#: 9fa4e65ac9814e07b00cfd524eeca282 +#: discord.ext.commands.errors.ChannelNotReadable:1 of +msgid "" +"Exception raised when the bot does not have permission to read messages " +"in the channel." +msgstr "" + +#: a38283be5eb8407680d6eb16d0fee127 +#: discord.ext.commands.errors.ChannelNotReadable:10 of +msgid "The channel supplied by the caller that was not readable" +msgstr "" + +#: 36582766bdc1404fba01c7e34a7d291e +#: discord.ext.commands.errors.ChannelNotReadable:12 of +msgid "Union[:class:`.abc.GuildChannel`, :class:`.Thread`]" +msgstr "" + +#: 43052fa171924f6998cf30a4408d2d3c +#: discord.ext.commands.errors.ThreadNotFound:1 of +msgid "Exception raised when the bot can not find the thread." +msgstr "" + +#: 1dea63fd1bb84e059219eae7f81fd40d +#: discord.ext.commands.errors.ThreadNotFound:9 of +msgid "The thread supplied by the caller that was not found" +msgstr "" + +#: 05e8d50caba64b2184fbf03a21b366f9 +#: discord.ext.commands.errors.BadColourArgument:1 of +msgid "Exception raised when the colour is not valid." +msgstr "" + +#: 66b2891f3b2f48619d3d939bc9bcee37 +#: discord.ext.commands.errors.BadColourArgument:9 of +msgid "The colour supplied by the caller that was not valid" +msgstr "" + +#: discord.ext.commands.errors.RoleNotFound:1 ed0be8e86e444e4e8c850511fc8e48c5 +#: of +msgid "Exception raised when the bot can not find the role." +msgstr "" + +#: 11a097db73c2490497cb7b7429cb7d40 discord.ext.commands.errors.RoleNotFound:9 +#: of +msgid "The role supplied by the caller that was not found" +msgstr "" + +#: cd6ec6e8aa3345b5968634efb9fdbfb6 +#: discord.ext.commands.errors.BadInviteArgument:1 of +msgid "Exception raised when the invite is invalid or expired." +msgstr "" + +#: dbfafb99d9924e058e9f4085e51b4e85 discord.ext.commands.errors.EmojiNotFound:1 +#: of +msgid "Exception raised when the bot can not find the emoji." +msgstr "" + +#: 79c87d5b8880428daee4e62770468475 discord.ext.commands.errors.EmojiNotFound:9 +#: of +msgid "The emoji supplied by the caller that was not found" +msgstr "" + +#: af44f3e759ca46c0ae4b639c71e28277 +#: discord.ext.commands.errors.PartialEmojiConversionFailure:1 of +msgid "" +"Exception raised when the emoji provided does not match the correct " +"format." +msgstr "" + +#: 6c1c2df0327a441bbe1c96a50ba39d49 +#: discord.ext.commands.errors.PartialEmojiConversionFailure:10 of +msgid "The emoji supplied by the caller that did not match the regex" +msgstr "" + +#: discord.ext.commands.errors.GuildStickerNotFound:1 +#: e43d76903cc749c78ccd3ca87300ebfa of +msgid "Exception raised when the bot can not find the sticker." +msgstr "" + +#: cb6279d6304e4c069ce89ef37082f364 +#: discord.ext.commands.errors.GuildStickerNotFound:9 of +msgid "The sticker supplied by the caller that was not found" +msgstr "" + +#: a815b02a064846279adc4f121cc2b07f +#: discord.ext.commands.errors.BadBoolArgument:1 of +msgid "Exception raised when a boolean argument was not convertible." +msgstr "" + +#: 2982ea51ace646d8bd8c2fd76d7f9b7c +#: discord.ext.commands.errors.BadBoolArgument:9 of +msgid "" +"The boolean argument supplied by the caller that is not in the predefined" +" list" +msgstr "" + +#: discord.ext.commands.errors.MissingPermissions:1 +#: f7c1e866271f4a6284aee4c6711c27d7 of +msgid "" +"Exception raised when the command invoker lacks permissions to run a " +"command." +msgstr "" + +#: 5ada78a870114789b2525dfb7258f469 +#: discord.ext.commands.errors.BotMissingPermissions:8 +#: discord.ext.commands.errors.MissingPermissions:8 of +msgid "The required permissions that are missing." +msgstr "" + +#: 17bbff2318d343aab6e8abf37d823b00 +#: discord.ext.commands.errors.BotMissingPermissions:1 of +msgid "Exception raised when the bot's member lacks permissions to run a command." +msgstr "" + +#: 69a44f4ec8e946ff86107a955100b0dc discord.ext.commands.errors.MissingRole:1 +#: of +msgid "Exception raised when the command invoker lacks a role to run a command." +msgstr "" + +#: 464aff7b7d6d4edab7c5c9f1d4b1390e +#: discord.ext.commands.errors.BotMissingRole:9 +#: discord.ext.commands.errors.MissingRole:9 of +msgid "" +"The required role that is missing. This is the parameter passed to " +":func:`~.commands.has_role`." +msgstr "" + +#: 495f17f5f821498f8c20b5437e881ce8 +#: discord.ext.commands.errors.BotMissingRole:12 +#: discord.ext.commands.errors.MissingRole:12 of +msgid "Union[:class:`str`, :class:`int`]" +msgstr "" + +#: discord.ext.commands.errors.BotMissingRole:1 +#: ea6884c4574d42039894bd8eda813eeb of +msgid "Exception raised when the bot's member lacks a role to run a command." +msgstr "" + +#: b51a7d82c7ae471c9e0927f161646b60 +#: discord.ext.commands.errors.MissingAnyRole:1 of +msgid "" +"Exception raised when the command invoker lacks any of the roles " +"specified to run a command." +msgstr "" + +#: bb3b944232324fe987d73d6df70499d0 +#: discord.ext.commands.errors.MissingAnyRole:10 of +msgid "" +"The roles that the invoker is missing. These are the parameters passed to" +" :func:`~.commands.has_any_role`." +msgstr "" + +#: 4800e7486dea463f9b780669f880aaee +#: discord.ext.commands.errors.BotMissingAnyRole:13 +#: discord.ext.commands.errors.MissingAnyRole:13 of +msgid "List[Union[:class:`str`, :class:`int`]]" +msgstr "" + +#: 91d8c29682f5470aaaa17fdd9e54ab7c +#: discord.ext.commands.errors.BotMissingAnyRole:1 of +msgid "" +"Exception raised when the bot's member lacks any of the roles specified " +"to run a command." +msgstr "" + +#: 03dff160785045fdafd78a2d6dc2ec69 +#: discord.ext.commands.errors.BotMissingAnyRole:10 of +msgid "" +"The roles that the bot's member is missing. These are the parameters " +"passed to :func:`~.commands.has_any_role`." +msgstr "" + +#: cdd99306574d42fbbdca211e043eb448 +#: discord.ext.commands.errors.NSFWChannelRequired:1 of +msgid "Exception raised when a channel does not have the required NSFW setting." +msgstr "" + +#: 03481b87678a41ab8f534266523f04e3 +#: discord.ext.commands.errors.NSFWChannelRequired:8 of +msgid "The channel that does not have NSFW enabled." +msgstr "" + +#: 397619a293eb4871a61c96cf18d8966c discord.ext.commands.errors.FlagError:1 of +msgid "The base exception type for all flag parsing related errors." +msgstr "" + +#: 4df1966bd2224d8097e05de8614e0ae1 discord.ext.commands.errors.FlagError:3 of +msgid "This inherits from :exc:`BadArgument`." +msgstr "" + +#: ad1d800328234006bb717f17aaabd02d +#: discord.ext.commands.errors.BadFlagArgument:1 of +msgid "An exception raised when a flag failed to convert a value." +msgstr "" + +#: 91798d8c295b4e5a95ae65bc3717c132 +#: discord.ext.commands.errors.BadFlagArgument:3 +#: discord.ext.commands.errors.MissingFlagArgument:3 +#: discord.ext.commands.errors.MissingRequiredFlag:3 of +msgid "This inherits from :exc:`FlagError`" +msgstr "" + +#: 3169dff1f74241f4b187f32057eee70a +#: discord.ext.commands.errors.BadFlagArgument:9 of +msgid "The flag that failed to convert." +msgstr "" + +#: 53f5b703a1754889b6501bc0bb13587d +#: discord.ext.commands.errors.BadFlagArgument:11 +#: discord.ext.commands.errors.MissingFlagArgument:11 +#: discord.ext.commands.errors.MissingRequiredFlag:11 +#: discord.ext.commands.errors.TooManyFlags:11 of +msgid ":class:`~discord.ext.commands.Flag`" +msgstr "" + +#: b2fb965c7465456f99ebd4e00ac3e6b8 +#: discord.ext.commands.errors.MissingFlagArgument:1 of +msgid "An exception raised when a flag did not get a value." +msgstr "" + +#: 51f3abb37a5e4994ba35116283b2a5b8 +#: discord.ext.commands.errors.MissingFlagArgument:9 of +msgid "The flag that did not get a value." +msgstr "" + +#: 41386efb30914b5190300d75a9841355 discord.ext.commands.errors.TooManyFlags:1 +#: of +msgid "An exception raised when a flag has received too many values." +msgstr "" + +#: 81da839939ae4de9ac168277a8d393b3 discord.ext.commands.errors.TooManyFlags:3 +#: of +msgid "This inherits from :exc:`FlagError`." +msgstr "" + +#: 22360e7ef17a43adafe941a0a99e9cea discord.ext.commands.errors.TooManyFlags:9 +#: of +msgid "The flag that received too many values." +msgstr "" + +#: 523b4c7b89a04e638cbca478a4086147 discord.ext.commands.errors.TooManyFlags:15 +#: of +msgid "The values that were passed." +msgstr "" + +#: 8ecebd5789744f5eb9e9fb41f2de3718 +#: discord.ext.commands.errors.MissingRequiredFlag:1 of +msgid "An exception raised when a required flag was not given." +msgstr "" + +#: 7eb7e6f4248e4600b9881f494de33f37 +#: discord.ext.commands.errors.MissingRequiredFlag:9 of +msgid "The required flag that was not found." +msgstr "" + +#: 33517164ec0241ad90d22b66b1bb6681 +#: discord.ext.commands.errors.CommandRegistrationError:1 of +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.CommandRegistrationError:4 +#: f911fded08e14082a434d5415f49a0dc of +msgid "This inherits from :exc:`discord.ClientException`" +msgstr "" + +#: 944edaa1770a49f09cb67186b72b3a46 +#: discord.ext.commands.errors.CommandRegistrationError:10 of +msgid "The command name that had the error." +msgstr "" + +#: c786264a69f741c6abc2b1c87a4bc9e7 +#: discord.ext.commands.errors.CommandRegistrationError:16 of +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/locales/en/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/en/LC_MESSAGES/ext/commands/cogs.po new file mode 100644 index 0000000000..0e19955008 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/ext/commands/cogs.po @@ -0,0 +1,227 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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/locales/en/LC_MESSAGES/ext/commands/commands.po b/docs/locales/en/LC_MESSAGES/ext/commands/commands.po new file mode 100644 index 0000000000..a5f6a947f0 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/ext/commands/commands.po @@ -0,0 +1,1094 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 +#: 2ed2e5e8c91c422e8df4d374c103c019 b5c11ba0502a4e51815954014a35ff1b +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 +#: 1ec8a898c9914345aca3d9abd69c13b3 cc025777e0c641e193733daff072b0a5 +msgid ":class:`Role`" +msgstr "" + +#: ../../ext/commands/commands.rst:395 ../../ext/commands/commands.rst:436 +#: 2024345e0b124791866b632b87ada241 d6e648eab28640d58ef49d32b79f77c8 +msgid ":class:`Game`" +msgstr "" + +#: ../../ext/commands/commands.rst:396 ../../ext/commands/commands.rst:438 +#: 3345d10003a643f89ce0e50c4017ea99 c3c6a678814a43ad8823e8ea97fc0f3b +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 +#: a741c083d4934dddb1ec2bd513f5680c e4ff43d5b0184c3dafc1e721adc80b5d +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 +#: acd3e73ab332454c88ae1f945d276569 b9723a06f2f940b89af2ddb90dd6b3f8 +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/locales/en/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/en/LC_MESSAGES/ext/commands/extensions.po new file mode 100644 index 0000000000..26e1a11292 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/ext/commands/extensions.po @@ -0,0 +1,115 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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/locales/en/LC_MESSAGES/ext/commands/index.po b/docs/locales/en/LC_MESSAGES/ext/commands/index.po new file mode 100644 index 0000000000..34ae5a5cf9 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/ext/commands/index.po @@ -0,0 +1,35 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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/locales/en/LC_MESSAGES/ext/pages/index.po b/docs/locales/en/LC_MESSAGES/ext/pages/index.po new file mode 100644 index 0000000000..aea1a8cbb8 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/ext/pages/index.po @@ -0,0 +1,1287 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 "" + +#: bd25b5c331004759a671ad50a0fb4b41 discord.ext.pages.pagination.Page:1 of +msgid "Represents a page shown in the paginator." +msgstr "" + +#: ae8bacdd6f74434091d786f43b97b4e3 discord.ext.pages.pagination.Page:3 of +msgid "" +"Allows for directly referencing and modifying each page as a class " +"instance." +msgstr "" + +#: ../../ext/pages/index.rst 001d8bed52f640e6b65faeb5e57cd564 +#: 063bbc6f3e424780b3fca294ca70043c 075fafed1a384290b249cd03322da598 +#: 09ddd6dd6d764f9d8afa0a4291730274 0e9e89efe9e643c3acc962e0648c89a5 +#: 0ee33849feaa4e1c9b968a1b176c4840 13ad2f1d0c7641d59bec5738903ebd38 +#: 148f4b586e154d7b9784cf4e6149b19c 1ed97b7d592d457e91f0607e776a78d6 +#: 341e6342cd654d72a002d8bc1bbf025a 34ba1e0e3f634a529e2461c1c8d10b16 +#: 422220e75757468b9e523551808c390d 4c13c6d74aac47ba8b3ab6fc503d4c08 +#: 4ebe1f73ecfe4d27aff3c7e8aca24bfd 5526f25c16e840daa4ff844390a50843 +#: 5a2d03e908f5498ca371e47073d60077 5d0da1f34118460c8f4eddf4eedb0437 +#: 5d6bf83ea6804891811293d85965e471 655fc98117b74364b87cb5d49111b23f +#: 697e50f1545c45f4b9e7370baba6fb36 6a04ca7a36094db29f14c6fe2ce8b176 +#: 6bf63b66304d4c34b3dee842785b34c1 6e0c755cc95c460dacb7bb287f7856fc +#: 99a76d768ef6423e9a3952a8dec21a78 9a2b6c56e51f47e6b866350220f8c0f6 +#: ac20d3e78ca94a39857c8376d4001b92 beac103455d843ac836e933650a4dd62 +#: c11dd90c56d64c83a8bbac2e2b0f341e c1d3f802b5e54055a23682050656d600 +#: c6df38aa49414da5a6de205f703db624 d5bca9a9f4e3404884791ef3d4aca196 +#: dbf01b3b2c5841ba9be4972edf38c752 df1997f923f64977a58153c7935dca20 +#: f2a2b2cd04354ce2b4dbcb6e77dd1bd1 +msgid "Parameters" +msgstr "" + +#: 11cf6e703d674e4b84c439e1aa100391 discord.ext.pages.pagination.Page:6 of +msgid "" +"The content of the page. Corresponds to the " +":class:`discord.Message.content` attribute." +msgstr "" + +#: 838dc022445d4c7288ddb26f9b9e7b79 discord.ext.pages.pagination.Page:9 of +msgid "" +"The embeds of the page. Corresponds to the " +":class:`discord.Message.embeds` attribute." +msgstr "" + +#: 7863a87aab514116a1c91370164c4eff discord.ext.pages.pagination.Page:12 of +msgid "A list of local files to be shown with the page." +msgstr "" + +#: d9743329c81241099f5684a505c85dd2 discord.ext.pages.pagination.Page:15 of +msgid "" +"The custom view shown when the page is visible. Overrides the " +"`custom_view` attribute of the main paginator." +msgstr "" + +#: 0ac477cf619c420fafdaac5b6a1fbd18 0e2e6db2218f41dc81c2bbdf0354cbe4 +#: 5d024d19341544b2a7a40d0969eef03e b2df49c3af9a4c74bb099b83349ddcfc +#: cfc9f4305077455fad6922d274bc383d +#: discord.ext.pages.pagination.Page.callback:1 +#: discord.ext.pages.pagination.Paginator.interaction_check:1 +#: discord.ext.pages.pagination.PaginatorButton.callback:1 +#: discord.ext.pages.pagination.PaginatorMenu.callback:1 +#: discord.ui.view.View.on_error:1 of +msgid "|coro|" +msgstr "" + +#: 00e243c7a32046b3bb334815364cd744 +#: discord.ext.pages.pagination.Page.callback:3 of +msgid "" +"The coroutine associated to a specific page. If `Paginator.page_action()`" +" is used, this coroutine is called." +msgstr "" + +#: a43956ce2cc443b4a7dc593c11685574 +#: discord.ext.pages.pagination.Page.callback:6 of +msgid "The interaction associated with the callback, if any." +msgstr "" + +#: 14dc2bbbfd654ccea6ef76d9d586e887 +#: discord.ext.pages.pagination.Page.update_files:1 of +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 08830e24540a4075a566ce6b6055bf58 +#: 0df6b7d0cf984f17843c219c54453fdd 1562ad6d689b4e78a93104700ab3429f +#: 1f00671156554ebb8b1e8e178a7e76bb 20aa4fd3a1ba4a329e930300f1bfec70 +#: 2aef4bef743e42c6b10dc7dc409dddee 2b3e3b8a6018461984a424487aa9e6ab +#: 371cb60b44484310bd22f6a9197741e9 38bb18eb66264addb0e210e066903922 +#: 44df48e0960e411391d8959fd9d11450 4cee4928e1df4606b6ef905abbd63533 +#: 4d583655849d4c3eae271f096ea6e32a 550c48f6c2e1423ba8c77b021dbb3dcd +#: 5f9e2f91dd6f4ddf8aba9945c851a7d0 68cd1cac42dd4ab384b9d993fd5b3d3d +#: 7fae07446dae40adbe93cfc309708f70 89185399683243b8a8161ef2321fb944 +#: 8b422ca21de24735a81d7c356e107d08 a97d7cfc0d8547fba1a07c473d6aa220 +#: abda4ea8404f4fd1b6ff60b850d9f36b aeb2988a559840d3ba83ac47b72253f7 +#: b17d3a717a7c43bfbf6a28db9c9e8847 be696f9851b549dc9e9ac50b6f55f198 +#: d4e5702bc04a4bc4b7641557751fde48 d5396ed79c0a49578511de018e0b2963 +#: df303e968a55460b84813fa21867fc46 e5bcc53a42f240c9b5ff34f27d6f0bc4 +msgid "Return type" +msgstr "" + +#: c00ec830bb5c410f8a62d21db42e50e4 +#: discord.ext.pages.pagination.Page.update_files:5 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ " +"\\\\\\[\\:py\\:class\\:\\`\\~discord.file.File\\`\\] \\| " +"\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: discord.ext.pages.Page.content:1 ffe769a89ef340cd91dac029ddf8a270 of +msgid "Gets the content for the page." +msgstr "" + +#: 4a20614242ff49c98c15934b6aacaea9 discord.ext.pages.Page.embeds:1 of +msgid "Gets the embeds for the page." +msgstr "" + +#: 734b759d6f34415790c449280122f7c0 discord.ext.pages.Page.custom_view:1 of +msgid "Gets the custom view assigned to the page." +msgstr "" + +#: c7ec9a0c9bf34cc8831e0cedb813b560 discord.ext.pages.Page.files:1 of +msgid "Gets the files associated with the page." +msgstr "" + +#: ../../ext/pages/index.rst:303 35d41aaa665649e88470e1f4d3913ae4 +msgid "Paginator" +msgstr "" + +#: discord.ext.pages.pagination.Paginator:1 fd8a1d163c3a4ee1945a7434adfec3b8 of +msgid "" +"Creates a paginator which can be sent as a message and uses buttons for " +"navigation." +msgstr "" + +#: 8cda8ae5c6884250afa6014ccd2d1518 discord.ext.pages.pagination.Paginator:4 of +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 "" + +#: 9862f559cf4d46f7a8dddfd90b6913db 9db02074d9c94a49bb0521fec4c63a78 +#: c1ef75e202bf43d089126729e2fbfa5a discord.ext.pages.pagination.PageGroup:28 +#: discord.ext.pages.pagination.Paginator:9 +#: discord.ext.pages.pagination.Paginator.update:8 of +msgid "Whether to show disabled buttons." +msgstr "" + +#: 20144622344a4ac6a82ba99b28691461 7bae99044a5a4aa9ab38e9546c5f3427 +#: 9f7169cd5e0841edb66e3b4afc357032 discord.ext.pages.pagination.PageGroup:31 +#: discord.ext.pages.pagination.Paginator:12 +#: discord.ext.pages.pagination.Paginator.update:11 of +msgid "Whether to show the page indicator when using the default buttons." +msgstr "" + +#: 7350d44eca9e4b60ba03f3756966c84d 87d7b2f7eda64012b345e45181b5aa9a +#: discord.ext.pages.pagination.Paginator:15 +#: discord.ext.pages.pagination.Paginator.update:14 of +msgid "" +"Whether to show a select menu that allows the user to switch between " +"groups of pages." +msgstr "" + +#: 48cdaafe961448ea8435a914b65d59b1 c80991802f7749b7997151be89ffe3ac +#: discord.ext.pages.pagination.Paginator:18 +#: discord.ext.pages.pagination.Paginator.update:20 of +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 "" + +#: 899bfeaaf84b4233aa6a174ab45803d0 bfd67da67dc84a2db829bcfb79ae099d +#: dea0f3e5ef3c4c6ea0067ef707954f13 discord.ext.pages.pagination.PageGroup:34 +#: discord.ext.pages.pagination.Paginator:22 +#: discord.ext.pages.pagination.Paginator.update:17 of +msgid "Whether only the original user of the command can change pages." +msgstr "" + +#: 779b82d3374f4bab948e1fe6d9fedd84 cf4e82cd445643499f51a23de19eea56 +#: discord.ext.pages.pagination.PageGroup:37 +#: discord.ext.pages.pagination.Paginator:25 +#: discord.ext.pages.pagination.Paginator.update:24 +#: f55070f9c63b4f438d22e271d923e292 of +msgid "Whether the buttons get disabled when the paginator view times out." +msgstr "" + +#: 7c8f9e0762e4471a8f475ad877770d3f 9d80446d78c74078828826d8fad283fd +#: a97270c704f840a79d3a26539fa11c44 discord.ext.pages.pagination.PageGroup:40 +#: discord.ext.pages.pagination.Paginator:28 +#: discord.ext.pages.pagination.Paginator.update:27 of +msgid "" +"Whether to use the default buttons (i.e. ``first``, ``prev``, " +"``page_indicator``, ``next``, ``last``)" +msgstr "" + +#: 359dca5b47f9408b86cc5b913f19ae1a 3d89ab0ca1ca4ddf95a66e1052b1416b +#: b521eded949b46f39de788085cad3ac5 discord.ext.pages.pagination.PageGroup:43 +#: discord.ext.pages.pagination.Paginator:31 +#: discord.ext.pages.pagination.Paginator.update:30 of +msgid "" +"The row where the default paginator buttons are displayed. Has no effect " +"if custom buttons are used." +msgstr "" + +#: 28f65f81ba3a46e6aae6abe2d4ff3ef1 98a9d82f780e433d8df62c12f3ba9583 +#: d4e55005744346dfa8bec1e681ba7b61 discord.ext.pages.pagination.PageGroup:46 +#: discord.ext.pages.pagination.Paginator:34 +#: discord.ext.pages.pagination.Paginator.update:33 of +msgid "" +"Whether to loop the pages when clicking prev/next while at the first/last" +" page in the list." +msgstr "" + +#: 4d2ba455eeef4ae0be01901805d02dde discord.ext.pages.pagination.Paginator:37 +#: of +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 "" + +#: 060cb092dcd84afbab1654c4a673ae40 7cfd82ebd0c3445fbc2e87f9cc91d6c9 +#: b4dd779623cc447686e75ded05b049d5 discord.ext.pages.pagination.PageGroup:52 +#: discord.ext.pages.pagination.Paginator:42 +#: discord.ext.pages.pagination.Paginator.update:39 of +msgid "" +"Timeout in seconds from last interaction with the paginator before no " +"longer accepting input." +msgstr "" + +#: 53a7f7e412d544caa4ea3554dfcd74c2 61407496e9e345548b4662bf9c3f4420 +#: discord.ext.pages.pagination.PageGroup:55 +#: discord.ext.pages.pagination.Paginator:45 +#: discord.ext.pages.pagination.Paginator.update:42 +#: fcff089de6814bc8b2b2bbd270418f40 of +msgid "" +"A list of PaginatorButtons to initialize the Paginator with. If " +"``use_default_buttons`` is ``True``, this parameter is ignored." +msgstr "" + +#: 3724bfedfe9d4166b773ce52f6f96b10 554037abcf4f47588ac9452c56ce0e92 +#: a606dd1d1de94ab685aa1d8ce6e80fb8 discord.ext.pages.pagination.PageGroup:59 +#: discord.ext.pages.pagination.Paginator:49 +#: discord.ext.pages.pagination.Paginator.update:46 of +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 "" + +#: 756df0e58bf4427d9c783f16cb3c0e4e discord.ext.pages.pagination.Paginator:55 +#: of +msgid "The page group select menu associated with this paginator." +msgstr "" + +#: 0018653201484c08a1efb39a95e5496a 10fc8a4ebd814531a213613eb9c1a227 +#: 25f5deaf82234969896d2ff9af594576 370e4876a6f44d2fb97522e2d6436744 +#: 3bf364dda08e4407b362896b9f58c12d 5ab60fb665a04f979c0831942086c3de +#: 6463e465ccd0446d997680daed481da6 95024e9505d948148493ddafe8b895de +#: cf1fd8809876457cad8b65bb8ecdff62 db10884582044f4e9c0b780d876ae769 +#: discord.ext.pages.pagination.Paginator +#: discord.ext.pages.pagination.PaginatorButton +#: discord.ext.pages.pagination.PaginatorMenu of +msgid "type" +msgstr "" + +#: b4c0337d404a45e8892fe156cc9bd943 discord.ext.pages.pagination.Paginator:57 +#: of +msgid "Optional[List[:class:`PaginatorMenu`]]" +msgstr "" + +#: discord.ext.pages.pagination.Paginator:61 f93be253c778483880b98ed031460760 +#: of +msgid "List of :class:`PageGroup` objects the user can switch between." +msgstr "" + +#: bf99cdb634044fbdaa3eb8afab3539a1 discord.ext.pages.pagination.Paginator:63 +#: of +msgid "Optional[List[:class:`PageGroup`]]" +msgstr "" + +#: discord.ext.pages.pagination.Paginator:67 ebe7495d7a554db8911766d9a94dda30 +#: of +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 "" + +#: 9427ff2e436a432290830b7a5ed07653 discord.ext.pages.pagination.Paginator:70 +#: of +msgid "Optional[:class:`int`]" +msgstr "" + +#: ce115ee07db249d3b02b2739d39dfb9f discord.ext.pages.pagination.Paginator:74 +#: of +msgid "A zero-indexed value showing the current page number." +msgstr "" + +#: 2ac3cef8cda94569a45f9c40a7419fcf cd1000c6b1654d0f856cdf9321d03a5c +#: discord.ext.pages.pagination.Paginator:76 +#: discord.ext.pages.pagination.Paginator:82 of +msgid ":class:`int`" +msgstr "" + +#: a3dcbf307b9f4881923e5a7270193d27 discord.ext.pages.pagination.Paginator:80 +#: of +msgid "A zero-indexed value showing the total number of pages." +msgstr "" + +#: 4e8469fd89304c68966aad2f8bc27030 discord.ext.pages.pagination.Paginator:86 +#: of +msgid "" +"A dictionary containing the :class:`~PaginatorButton` objects included in" +" this paginator." +msgstr "" + +#: 603b801b380945289ad846d62a25d0f3 6f163c5ef9af46fb96941b6d6f597e70 +#: discord.ext.pages.pagination.Paginator:88 +#: discord.ext.pages.pagination.Paginator.update_buttons:4 of +msgid "" +"Dict[:class:`str`, Dict[:class:`str`, Union[:class:`~PaginatorButton`, " +":class:`bool`]]]" +msgstr "" + +#: b8fbd37143be495fa07f7afd6e225bee discord.ext.pages.pagination.Paginator:92 +#: of +msgid "The user or member that invoked the paginator." +msgstr "" + +#: a193d3a3f88146cdbc98453f06ba4224 discord.ext.pages.pagination.Paginator:94 +#: of +msgid "Optional[Union[:class:`~discord.User`, :class:`~discord.Member`]]" +msgstr "" + +#: 3434a6aec3d144e28ca23d5691b76c64 discord.ext.pages.pagination.Paginator:98 +#: of +msgid "The message the paginator is attached to." +msgstr "" + +#: 249266a0e6c24ccdbd83f6d3b93049b7 be60611a1e5f4142bc4e8c2825ad0bce +#: discord.ext.pages.pagination.Paginator:100 +#: discord.ext.pages.pagination.Paginator.respond:25 of +msgid "Union[:class:`~discord.Message`, :class:`~discord.WebhookMessage`]" +msgstr "" + +#: 02e566c042de48b1841f604571514d29 +#: discord.ext.pages.pagination.Paginator.update:1 of +msgid "" +"Updates the existing :class:`Paginator` instance with the provided " +"options." +msgstr "" + +#: 429d25bcb3884adca03177c1cf56439d +#: discord.ext.pages.pagination.Paginator.update:4 of +msgid "" +"The list of :class:`PageGroup` objects, :class:`Page` objects, strings, " +"embeds, or list of embeds to paginate." +msgstr "" + +#: b3c853535a3147128ef4397cfa4c2631 +#: discord.ext.pages.pagination.Paginator.update:36 of +msgid "A custom view whose items are appended below the pagination components." +msgstr "" + +#: da4ea72df96a4fbe99896196a3b51693 +#: discord.ext.pages.pagination.Paginator.update:50 of +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 "" + +#: 32cf976654204696bcf4a6210302ffe3 +#: discord.ext.pages.pagination.Paginator.update:54 of +msgid "The initial page number to display when updating the paginator." +msgstr "" + +#: 0a8139d4555647b2bb348dabbddcbc6e +#: discord.ext.pages.pagination.Paginator.on_timeout:1 of +msgid "Disables all buttons when the view times out." +msgstr "" + +#: 128c5298c9494f91a4b3f649fa6df996 1b99936247fa444d8f760ffecb3bfbeb +#: 3c63f3adb2364adead3012e035129ebc 68e2cc93f0e6490b8f2f6cee4790cba9 +#: 718868e38cac43a586cfbd4a6305d236 73506917c2ae4d10839ac863f15c0649 +#: 948ff3860b7449e189966372f0999657 a7be2bff8d9e4794b701800978b38389 +#: b6e8b71f2e914b7aa52f4bf5895f9498 c2fbf9bef8224850b4afa5ea4c5afbc2 +#: discord.ext.pages.pagination.Paginator.cancel:10 +#: discord.ext.pages.pagination.Paginator.disable:10 +#: discord.ext.pages.pagination.Paginator.on_timeout:4 +#: discord.ext.pages.pagination.Paginator.page_action:7 +#: discord.ui.view.View.add_item:10 discord.ui.view.View.clear_items:4 +#: discord.ui.view.View.disable_all_items:7 +#: discord.ui.view.View.enable_all_items:7 +#: discord.ui.view.View.on_check_failure:9 discord.ui.view.View.on_error:18 +#: discord.ui.view.View.remove_item:7 discord.ui.view.View.stop:6 +#: e63b8fb4db3b4bee81d67b79af441412 e7e7b98e6e7b4408b492675432ece6e4 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: 8d470e192c8f45a28576b5da00104921 +#: discord.ext.pages.pagination.Paginator.disable:1 of +msgid "Stops the paginator, disabling all of its components." +msgstr "" + +#: 1c19001e498d4934b264501cf3f195de +#: discord.ext.pages.pagination.Paginator.disable:4 of +msgid "Whether to disable components added via custom views." +msgstr "" + +#: discord.ext.pages.pagination.Paginator.disable:7 +#: e09e9f0034204fa084519c19526ececf of +msgid "The page content to show after disabling the paginator." +msgstr "" + +#: 385f026c4c984195899345daeff900dc +#: discord.ext.pages.pagination.Paginator.cancel:1 of +msgid "Cancels the paginator, removing all of its components from the message." +msgstr "" + +#: d92a2abb21bd49f0b1a6c02cb2f1b83a +#: discord.ext.pages.pagination.Paginator.cancel:4 of +msgid "Whether to remove components added via custom views." +msgstr "" + +#: 5ced813a67dd4e249de76fa20d2cbfe4 +#: discord.ext.pages.pagination.Paginator.cancel:7 of +msgid "The page content to show after canceling the paginator." +msgstr "" + +#: 273705cd08924bcc81e0fb7eb24ab41f +#: discord.ext.pages.pagination.Paginator.goto_page:1 of +msgid "Updates the paginator message to show the specified page number." +msgstr "" + +#: 86705ad6d652450a8187cf631ecc4aef +#: discord.ext.pages.pagination.Paginator.goto_page:4 of +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 "" + +#: 8e4069b66dfd41f9a73acb1874a5723d +#: discord.ext.pages.pagination.Paginator.goto_page:4 of +msgid "The page to display." +msgstr "" + +#: a05df0eb26fa4b9ebaf18d70d4d979f2 +#: discord.ext.pages.pagination.Paginator.goto_page:8 of +msgid "" +"Page numbers are zero-indexed when referenced internally, but appear as " +"one-indexed when shown to the user." +msgstr "" + +#: b46a6169ff5b433981d54d5239460cc7 +#: discord.ext.pages.pagination.Paginator.goto_page:12 of +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 071b3f2f83194ecb863f34a81f2b7318 +#: 23d2d513e75249be834c3da0e3806faf 433ab35ccdc34f8a8721f26b0e699f02 +#: 5b58697a956a4cf4a58ce5a800e4deb1 60cad8cd26d448e497604cad7a23855a +#: 7194b0de3a6c48f09395740786c65dfe 9d3a83013ff043eda39a19a8533e2db2 +#: afe45ade9581404fbe8fb11422546746 b76f2a1bbef34d9e922ff8ccd944e554 +msgid "Returns" +msgstr "" + +#: 395be673321547f88323e638d86c0bbf +#: discord.ext.pages.pagination.Paginator.goto_page:16 of +msgid "The message associated with the paginator." +msgstr "" + +#: 1e69c14db8ce48d48ba9c2d633221880 b6dcdd3d4ca34722a9e4b56af3acc19c +#: discord.ext.pages.pagination.Paginator.goto_page:17 +#: discord.ext.pages.pagination.Paginator.send:35 of +msgid ":class:`~discord.Message`" +msgstr "" + +#: 9bde443dec424572b5043c1a1666c470 +#: discord.ext.pages.pagination.Paginator.interaction_check:3 of +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 "" + +#: 1ab2878c6df045968a80c9a6132ff611 +#: discord.ext.pages.pagination.Paginator.interaction_check:6 of +msgid "" +"This is useful to override if, for example, you want to ensure that the " +"interaction author is a given user." +msgstr "" + +#: 74ea1075550e4bfead0fa3cc3dedbcf3 +#: discord.ext.pages.pagination.Paginator.interaction_check:9 of +msgid "The default implementation of this returns ``True``." +msgstr "" + +#: 327caaf61c324a10a0dfaf64d5f4e77b +#: discord.ext.pages.pagination.Paginator.interaction_check:11 of +msgid "If this returns ``False``, :meth:`on_check_failure` is called." +msgstr "" + +#: 504f795f741c495fab7278de056195c6 +#: discord.ext.pages.pagination.Paginator.interaction_check:15 of +msgid "" +"If an exception occurs within the body then the check is considered a " +"failure and :meth:`on_error` is called." +msgstr "" + +#: 616d5c00eb544301af1b0d00548c865e 62c2722e6b6a40fd8c8a215d7cb11a21 +#: discord.ext.pages.pagination.Paginator.interaction_check:19 +#: discord.ui.view.View.on_check_failure:6 of +msgid "The interaction that occurred." +msgstr "" + +#: cf58c9c3031c44dcbcc4d6428b2e79ca +#: discord.ext.pages.pagination.Paginator.interaction_check:22 of +msgid "Whether the view children's callbacks should be called." +msgstr "" + +#: 607f9270f774451e96d48d6a223876de c5464d8a113b4293be79478ba33f200d +#: discord.ext.pages.pagination.Paginator.interaction_check:23 +#: discord.ui.view.View.wait:8 of +msgid ":class:`bool`" +msgstr "" + +#: 3cb43fceb24a4303a7740545bbb7404d +#: discord.ext.pages.pagination.Paginator.add_menu:1 of +msgid "Adds the default :class:`PaginatorMenu` instance to the paginator." +msgstr "" + +#: abdf9feeb622435d94c856d8fcc2d2ff +#: discord.ext.pages.pagination.Paginator.add_default_buttons:1 of +msgid "" +"Adds the full list of default buttons that can be used with the " +"paginator. Includes ``first``, ``prev``, ``page_indicator``, ``next``, " +"and ``last``." +msgstr "" + +#: 16033ccfd3734326b67553524cb67b97 +#: discord.ext.pages.pagination.Paginator.add_button:1 of +msgid "Adds a :class:`PaginatorButton` to the paginator." +msgstr "" + +#: ac7bec46e3714d67afca04109440ae90 +#: discord.ext.pages.pagination.Paginator.remove_button:1 of +msgid "Removes a :class:`PaginatorButton` from the paginator." +msgstr "" + +#: 4658b4a4f750447183ee2ecd2cbaadfe +#: discord.ext.pages.pagination.Paginator.update_buttons:1 of +msgid "Updates the display state of the buttons (disabled/hidden)" +msgstr "" + +#: c2d8bc65b789479db1e60116d49bab98 +#: discord.ext.pages.pagination.Paginator.update_buttons:3 of +msgid "The dictionary of buttons that were updated." +msgstr "" + +#: 638eaa550f0547419dffb949d7e9ceb6 +#: discord.ext.pages.pagination.Paginator.update_custom_view:1 of +msgid "Updates the custom view shown on the paginator." +msgstr "" + +#: 997aaa398a3a43b6b53b595557fe623b +#: discord.ext.pages.pagination.Paginator.get_page_group_content:1 of +msgid "" +"Returns a converted list of `Page` objects for the given page group based" +" on the content of its pages." +msgstr "" + +#: d51ced468afd49acbb4cf1d506cd4f1c +#: discord.ext.pages.pagination.Paginator.get_page_group_content:5 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ " +"\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\`\\]`" +msgstr "" + +#: 0ee5e3fd03144afb81fc1a6c6c12210b +#: discord.ext.pages.pagination.Paginator.get_page_content:1 of +msgid "Converts a page into a :class:`Page` object based on its content." +msgstr "" + +#: a0ccbe1c8fc4425295588d16116d15d6 +#: discord.ext.pages.pagination.Paginator.get_page_content:5 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.ext.pages.pagination.Page\\``" +msgstr "" + +#: 5de60ff973594979bbbebf60e8de1154 +#: discord.ext.pages.pagination.Paginator.page_action:1 of +msgid "Triggers the callback associated with the current page, if any." +msgstr "" + +#: 12777550042c4fc88db802149be1f8c1 +#: discord.ext.pages.pagination.Paginator.page_action:4 of +msgid "The interaction that was used to trigger the page action." +msgstr "" + +#: d38f6b90fb214fd2a38c0598a305e9a6 +#: discord.ext.pages.pagination.Paginator.send:1 of +msgid "Sends a message with the paginated items." +msgstr "" + +#: abf2c08783684a009f6acb497aefbc07 +#: discord.ext.pages.pagination.Paginator.send:4 of +msgid "A command's invocation context." +msgstr "" + +#: 6b819a6920f04efdbefbc83eff28faaa +#: discord.ext.pages.pagination.Paginator.send:7 of +msgid "" +"A target where the paginated message should be sent, if different from " +"the original :class:`Context`" +msgstr "" + +#: 9630cacaacc24ddcb6ffc7702609685e +#: discord.ext.pages.pagination.Paginator.send:10 of +msgid "An optional message shown when the paginator message is sent elsewhere." +msgstr "" + +#: 867846727c0943ff80115b0482336ac1 +#: discord.ext.pages.pagination.Paginator.send:13 of +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 "" + +#: 65b0b09d70bf4e49b640609c5e99a404 +#: discord.ext.pages.pagination.Paginator.edit:17 +#: discord.ext.pages.pagination.Paginator.send:20 +#: fba3e242c89c4eefab5d66255b0cf54b of +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 "" + +#: 060f7bfa5d004b3d86d6a1c172bba770 +#: discord.ext.pages.pagination.Paginator.send:28 of +msgid "" +"If set, overrides the :attr:`~discord.AllowedMentions.replied_user` " +"attribute of ``allowed_mentions``." +msgstr "" + +#: 669ef73d878345249fe2920dcef25bb4 +#: discord.ext.pages.pagination.Paginator.edit:25 +#: discord.ext.pages.pagination.Paginator.send:31 +#: f202d710e2904f8a8f758be7d1f8e13f of +msgid "If set, deletes the paginator after the specified time." +msgstr "" + +#: ac39d8da08a34f0dae55de6f23200c09 +#: discord.ext.pages.pagination.Paginator.send:34 of +msgid "The message that was sent with the paginator." +msgstr "" + +#: 0d286971aaf84f359ea3f2b868341679 discord.ui.view.View.add_item:1 of +msgid "Adds an item to the view." +msgstr "" + +#: b596145e148445798536949956fec5b6 discord.ui.view.View.add_item:4 of +msgid "The item to add to the view." +msgstr "" + +#: ../../ext/pages/index.rst 9f2e580e981742ac800ab0c0ffa636e3 +#: b67cd9be980a4fdf8e179a3825ce7070 db25be38ef7749eab275cfcf7ce4fb30 +msgid "Raises" +msgstr "" + +#: 799eb95c1d8f40df9edcf9e5b694789e discord.ui.view.View.add_item:7 of +msgid "An :class:`Item` was not passed." +msgstr "" + +#: discord.ui.view.View.add_item:8 e69d7b97a3c8409c8efd81ad1626f25d of +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.view.View.clear_items:1 f7b8e5d7c4304348abcbfbc505545cf3 of +msgid "Removes all items from the view." +msgstr "" + +#: 1a4ac6f032f5427aab3f14952bb0a9ae discord.ui.view.View.disable_all_items:1 of +msgid "Disables all items in the view." +msgstr "" + +#: 115ed036dbed4b93bf59511d61482bc4 discord.ui.view.View.disable_all_items:4 of +msgid "A list of items in `self.children` to not disable from the view." +msgstr "" + +#: db376aa4460347ecaa0cc6a71294ed64 +#: discord.ext.pages.pagination.Paginator.edit:1 of +msgid "Edits an existing message to replace it with the paginator contents." +msgstr "" + +#: d041a66736ff473ea7a033d2a180a519 +#: discord.ext.pages.pagination.Paginator.edit:5 of +msgid "" +"If invoked from an interaction, you will still need to respond to the " +"interaction." +msgstr "" + +#: 698e3ece2a734f139df7af407e051dc5 +#: discord.ext.pages.pagination.Paginator.edit:8 of +msgid "The message to edit with the paginator." +msgstr "" + +#: 8eb175cbee9947f89eee0e3239a53d93 +#: discord.ext.pages.pagination.Paginator.edit:11 of +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 "" + +#: 441faf97de83480f8e9acd0688378a8c +#: discord.ext.pages.pagination.Paginator.edit:28 of +msgid "If set, changes the user that this paginator belongs to." +msgstr "" + +#: b9b96a33a4134ec08e531b25ce552a7b +#: discord.ext.pages.pagination.Paginator.edit:31 of +msgid "The message that was edited. Returns ``None`` if the operation failed." +msgstr "" + +#: bde2084b48ec4c9787e78682dcc81fb5 +#: discord.ext.pages.pagination.Paginator.edit:32 of +msgid "Optional[:class:`discord.Message`]" +msgstr "" + +#: 5529aa1751fe48a1aac3071120fe5b99 discord.ui.view.View.enable_all_items:1 of +msgid "Enables all items in the view." +msgstr "" + +#: b115fab8e9f441ae97058262b47e4eeb discord.ui.view.View.enable_all_items:4 of +msgid "A list of items in `self.children` to not enable from the view." +msgstr "" + +#: discord.ui.view.View.from_message:1 fb9fe3622ae9490eba53b40685382759 of +msgid "Converts a message's components into a :class:`View`." +msgstr "" + +#: a5239e55bd5d43f5831e3e995120db1d discord.ui.view.View.from_message:3 of +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 "" + +#: 5e13e4d3661642fd8e02726cc001660a discord.ui.view.View.from_message:9 of +msgid "The message with components to convert into a view." +msgstr "" + +#: 1830d4b99a8e451d8fc931733f8bfd68 discord.ui.view.View.from_message:12 of +msgid "The timeout of the converted view." +msgstr "" + +#: 9bc9774d4bd74c418de1d9b36c3c5c8a discord.ui.view.View.from_message:15 of +msgid "" +"The converted view. This always returns a :class:`View` and not one of " +"its subclasses." +msgstr "" + +#: 086f552dd0d342c290385bf3bdf985ab discord.ui.view.View.from_message:17 of +msgid ":class:`View`" +msgstr "" + +#: b2a30fc2dab449648d3ccac33a6713a4 discord.ui.view.View.get_item:1 of +msgid "" +"Get an item from the view with the given custom ID. Alias for " +"`utils.get(view.children, custom_id=custom_id)`." +msgstr "" + +#: 39c8c0f1510244288c5734268ff2ecfc discord.ui.view.View.get_item:4 of +msgid "The custom_id of the item to get" +msgstr "" + +#: d3278dd56b5e4104b98070ea85764693 discord.ui.view.View.get_item:7 of +msgid "The item with the matching ``custom_id`` if it exists." +msgstr "" + +#: 49f9aab462e146199bb0ad2eb8987e74 discord.ui.view.View.get_item:8 of +msgid "Optional[:class:`Item`]" +msgstr "" + +#: 1d7e2b0e1c18422c9227cbe351a94a36 discord.ui.view.View.is_dispatching:1 of +msgid "Whether the view has been added for dispatching purposes." +msgstr "" + +#: 47016b19dd1741b1a063b2f5068dd3ec 7ebc8aa9eb5a4749b302688f0898a9bc +#: discord.ui.view.View.is_dispatching:4 discord.ui.view.View.is_finished:4 +#: discord.ui.view.View.is_persistent:7 e528916f3a854bc58c88136808c5e02c of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 37860b521c8143f3833fb4beb0a1a2ea discord.ui.view.View.is_finished:1 of +msgid "Whether the view has finished interacting." +msgstr "" + +#: 8fcb089aef584d57b8d0165e8a22048e discord.ui.view.View.is_persistent:1 of +msgid "Whether the view is set up as persistent." +msgstr "" + +#: b1fe671c39f5430baade51f464b8eaf2 discord.ui.view.View.is_persistent:3 of +msgid "" +"A persistent view has all their components with a set ``custom_id`` and a" +" :attr:`timeout` set to ``None``." +msgstr "" + +#: 26ea98091eed4b37a02e4fb299ce6413 discord.ui.view.View.on_check_failure:1 of +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 "" + +#: de6e9c49e57d45b2a3a59296cd5da7c8 discord.ui.view.View.on_error:3 of +msgid "" +"A callback that is called when an item's callback or " +":meth:`interaction_check` fails with an error." +msgstr "" + +#: bf46d9fcc45d4f1b885a743615cbd049 discord.ui.view.View.on_error:6 of +msgid "The default implementation prints the traceback to stderr." +msgstr "" + +#: 955a74f46d014b4db4a84da5f9e43c02 discord.ui.view.View.on_error:9 of +msgid "The exception that was raised." +msgstr "" + +#: discord.ui.view.View.on_error:12 f882a5d3e3cb47b1bcf9d7c720cf97d7 of +msgid "The item that failed the dispatch." +msgstr "" + +#: 0eaa94893f944a62a87305a25f22ee07 discord.ui.view.View.on_error:15 of +msgid "The interaction that led to the failure." +msgstr "" + +#: cb2bb9fa0f2d4adf8ae284983f41b8eb discord.ui.view.View.remove_item:1 of +msgid "Removes an item from the view." +msgstr "" + +#: 13af2b65c7a6448b89c506d4b733b44a discord.ui.view.View.remove_item:4 of +msgid "The item to remove from the view." +msgstr "" + +#: cd3fd1e5c76042c8896020ad68e3d6ed discord.ui.view.View.stop:1 of +msgid "Stops listening to interaction events from this view." +msgstr "" + +#: da2a7c40b68548eea51cd5f66cd11ea1 discord.ui.view.View.stop:3 of +msgid "This operation cannot be undone." +msgstr "" + +#: a7fd726fe8824da08c1ef4726cb85e56 discord.ui.view.View.wait:1 of +msgid "Waits until the view has finished interacting." +msgstr "" + +#: 2c6c8756f7ad4b758c243288a6f448be discord.ui.view.View.wait:3 of +msgid "" +"A view is considered finished when :meth:`stop` is called, or it times " +"out." +msgstr "" + +#: 3c69a4b00f914f128f11aa2b8240d061 discord.ui.view.View.wait:6 of +msgid "" +"If ``True``, then the view timed out. If ``False`` then the view finished" +" normally." +msgstr "" + +#: 5a13e5a534e2484180375a59f828dadf +#: discord.ext.pages.pagination.Paginator.respond:1 of +msgid "Sends an interaction response or followup with the paginated items." +msgstr "" + +#: da2b82bc0dac4e5e9ffff1e289a0efc3 +#: discord.ext.pages.pagination.Paginator.respond:4 of +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.Paginator.respond:8 +#: f5d2bd10e4864a64b7bb4175916dc97c of +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 "" + +#: a5b209f9e41c40668aa22f24ab3cc043 +#: discord.ext.pages.pagination.Paginator.respond:8 of +msgid "" +"Whether the paginator message and its components are ephemeral. If " +"``target`` is specified, the ephemeral message content will be " +"``target_message`` instead." +msgstr "" + +#: a5a9d6f0eeae435e85be10f33420ae78 +#: discord.ext.pages.pagination.Paginator.respond:13 of +msgid "" +"If your paginator is ephemeral, it cannot have a timeout longer than 15 " +"minutes (and cannot be persistent)." +msgstr "" + +#: 050718b89ecc46ca8d2bc5eb98e6e72c +#: discord.ext.pages.pagination.Paginator.respond:17 of +msgid "" +"A target where the paginated message should be sent, if different from " +"the original :class:`discord.Interaction`" +msgstr "" + +#: 095ca86d10b7456e90419b5b5023b0d3 +#: discord.ext.pages.pagination.Paginator.respond:21 of +msgid "" +"The content of the interaction response shown when the paginator message " +"is sent elsewhere." +msgstr "" + +#: bd17bd959c86463c8dc7581e9843ad82 +#: discord.ext.pages.pagination.Paginator.respond:24 of +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 "" + +#: 9d89624578c7499fb29f824d9a4a0336 +#: discord.ext.pages.pagination.PaginatorButton:1 of +msgid "Creates a button used to navigate the paginator." +msgstr "" + +#: discord.ext.pages.pagination.PaginatorButton:4 +#: ef90e083b4c24a29b99dc4bbe2197f46 of +msgid "" +"The type of button being created. Must be one of ``first``, ``prev``, " +"``next``, ``last``, or ``page_indicator``." +msgstr "" + +#: d839761b333045e49f5c7ae824615764 +#: discord.ext.pages.pagination.PaginatorButton:8 of +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.PaginatorButton:12 +#: e3c16ce4afa94d8099e73c3985fde852 of +msgid "The emoji shown on the button in front of the label." +msgstr "" + +#: 33acfd60dff04f368d4eced4ccde5acd +#: discord.ext.pages.pagination.PaginatorButton:15 of +msgid "Whether to initially show the button as disabled." +msgstr "" + +#: 629096497ac84fc69a4ff620e40e46ff +#: discord.ext.pages.pagination.PaginatorButton:18 of +msgid "" +"The label shown on the button when ``loop_pages`` is set to ``True`` in " +"the Paginator class." +msgstr "" + +#: 5161e3d1f2ea4042bcf7f389c9cb86fe +#: discord.ext.pages.pagination.PaginatorButton:23 of +msgid "" +"The paginator class where this button is being used. Assigned to the " +"button when ``Paginator.add_button`` is called." +msgstr "" + +#: 65b16c206cc54c01a115ae6dd829d2c1 +#: discord.ext.pages.pagination.PaginatorButton:26 +#: discord.ext.pages.pagination.PaginatorMenu:12 +#: f24f43ef85fc4fa49db3873d9f486199 of +msgid ":class:`Paginator`" +msgstr "" + +#: 19fef157664f4c64a9b773232fe202e6 discord.ext.pages.PaginatorButton.label:1 +#: of +msgid "The label of the button, if available." +msgstr "" + +#: 9b573729b4a841b88ca87d1314759096 discord.ext.pages.PaginatorButton.emoji:1 +#: of +msgid "The emoji of the button, if available." +msgstr "" + +#: discord.ext.pages.PaginatorButton.style:1 e095e568418b49cdbbac418b65bddc4a +#: of +msgid "The style of the button." +msgstr "" + +#: 73ee32fb4f884db8a2baaec52956a4ff +#: discord.ext.pages.PaginatorButton.disabled:1 of +msgid "Whether the button is disabled or not." +msgstr "" + +#: b2dbc527cb194711bb5c77bedc10c1e1 +#: discord.ext.pages.pagination.PaginatorButton.callback:3 of +msgid "The coroutine that is called when the navigation button is clicked." +msgstr "" + +#: 9b2955fae778492b859452b34a58b65a +#: discord.ext.pages.pagination.PaginatorButton.callback:6 of +msgid "The interaction created by clicking the navigation button." +msgstr "" + +#: cd80cb2731d3486b84b9c1a19aed382d +#: discord.ext.pages.PaginatorButton.custom_id:1 of +msgid "The ID of the button that gets received during an interaction." +msgstr "" + +#: 57fd2e9ba90f45fc9504e7438dbe787f +#: discord.ext.pages.PaginatorButton.custom_id:3 of +msgid "If this button is for a URL, it does not have a custom ID." +msgstr "" + +#: c87c8240e5dd4ff69d19866fc6522c5f discord.ext.pages.PaginatorButton.sku_id:1 +#: of +msgid "The ID of the SKU this button refers to." +msgstr "" + +#: dda9b3885e0a4250979ffbca77e592f9 discord.ext.pages.PaginatorButton.url:1 of +msgid "The URL this button sends you to." +msgstr "" + +#: 779b1ffc73854c80b1b87b3fb7b03228 b3dc3a0e33de4930b09c6128690cc85b +#: discord.ext.pages.PaginatorButton.view:1 +#: discord.ext.pages.PaginatorMenu.view:1 of +msgid "The underlying view for this item." +msgstr "" + +#: ../../ext/pages/index.rst:321 bbee89d0c8f54cddb8d204dce6e729bd +msgid "PaginatorMenu" +msgstr "" + +#: 11ee7599b2af45e69b577929e02558da +#: discord.ext.pages.pagination.PaginatorMenu:1 of +msgid "" +"Creates a select menu used to switch between page groups, which can each " +"have their own set of buttons." +msgstr "" + +#: 93f0b0f5f5344cd7917004ed6c17ade5 +#: discord.ext.pages.pagination.PaginatorMenu:4 of +msgid "The placeholder text that is shown if nothing is selected." +msgstr "" + +#: 733bbd198a724ff89d849e17bb4464ef +#: discord.ext.pages.pagination.PaginatorMenu:9 of +msgid "" +"The paginator class where this menu is being used. Assigned to the menu " +"when ``Paginator.add_menu`` is called." +msgstr "" + +#: discord.ui.select.Select.add_option:1 fd0f251caa31466f86f28a963b80e74e of +msgid "Adds an option to the select menu." +msgstr "" + +#: 0ef246583a96465ab9a2662925dea262 discord.ui.select.Select.add_option:3 of +msgid "" +"To append a pre-existing :class:`discord.SelectOption` use the " +":meth:`append_option` method instead." +msgstr "" + +#: 7debbe68aa84435e8200d7e2981cd202 discord.ui.select.Select.add_option:7 of +msgid "" +"The label of the option. This is displayed to users. Can only be up to " +"100 characters." +msgstr "" + +#: 08e93f8f2b6b4e2e9bc8a54af7e9cabf discord.ui.select.Select.add_option:11 of +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 "" + +#: c8c94a6f3925491fbdbfc616e9f7a4bb discord.ui.select.Select.add_option:15 of +msgid "" +"An additional description of the option, if any. Can only be up to 100 " +"characters." +msgstr "" + +#: 03aca7b4fad14c57a7cec8d245b4958b discord.ui.select.Select.add_option:19 of +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.Select.add_option:23 e73c3cef480d411881ff3001d10f64f4 of +msgid "Whether this option is selected by default." +msgstr "" + +#: 39baed4852504458b9d8d46f72c39a2a 8aa241191edb441496f0c1bd02fe0da0 +#: discord.ui.select.Select.add_option:26 +#: discord.ui.select.Select.append_option:7 of +msgid "The number of options exceeds 25." +msgstr "" + +#: bafa80d0afd248d4b54b80365d46b82a discord.ui.select.Select.append_option:1 of +msgid "Appends an option to the select menu." +msgstr "" + +#: 2d8599f9eca74a0cb9cc8f88c0406158 discord.ui.select.Select.append_option:4 of +msgid "The option to append to the select menu." +msgstr "" + +#: 97d6790260324dad936de6871ef37839 +#: discord.ext.pages.PaginatorMenu.channel_types:1 of +msgid "A list of channel types that can be selected in this menu." +msgstr "" + +#: d75ecd6ec9e44825a919ca427b5ec5e4 discord.ext.pages.PaginatorMenu.custom_id:1 +#: of +msgid "The ID of the select menu that gets received during an interaction." +msgstr "" + +#: 4ca8076e7aa84cf0959662de2d2070a3 discord.ext.pages.PaginatorMenu.disabled:1 +#: of +msgid "Whether the select is disabled or not." +msgstr "" + +#: 89964f8198b14cc49d9b7ab8b6b5b5c1 +#: discord.ext.pages.PaginatorMenu.max_values:1 of +msgid "The maximum number of items that must be chosen for this select menu." +msgstr "" + +#: 63d719dbf42149e1ad7e9107549a1c8e +#: discord.ext.pages.PaginatorMenu.min_values:1 of +msgid "The minimum number of items that must be chosen for this select menu." +msgstr "" + +#: 6323c7b02d2242bfaec760b147775d6d discord.ext.pages.PaginatorMenu.options:1 +#: of +msgid "A list of options that can be selected in this menu." +msgstr "" + +#: 2360c22bf0db488ea313baf24fc77930 +#: discord.ext.pages.PaginatorMenu.placeholder:1 of +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "" + +#: 1a9c671416ff416a8098e527e4238487 discord.ext.pages.PaginatorMenu.values:1 of +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.PaginatorMenu.callback:3 +#: f77011c86cae47989890beafa1381460 of +msgid "The coroutine that is called when a menu option is selected." +msgstr "" + +#: b46da7fdc2e2499f8b9c9229a1d4258e +#: discord.ext.pages.pagination.PaginatorMenu.callback:6 of +msgid "The interaction created by selecting the menu option." +msgstr "" + +#: ../../ext/pages/index.rst:330 729faa6949a64481845ce15d9de049be +msgid "PageGroup" +msgstr "" + +#: 0f19f3e8fcae4dd2b7871b731090eeb4 discord.ext.pages.pagination.PageGroup:1 of +msgid "Creates a group of pages which the user can switch between." +msgstr "" + +#: ddf81666476e43c1b66bac8ad7016d82 discord.ext.pages.pagination.PageGroup:3 of +msgid "" +"Each group of pages can have its own options, custom buttons, custom " +"views, etc." +msgstr "" + +#: discord.ext.pages.pagination.PageGroup:7 ecc0ed43087e49ce9f6bc57ac582a2cb of +msgid "" +"If multiple :class:`PageGroup` objects have different options, they " +"should all be set explicitly when creating each instance." +msgstr "" + +#: discord.ext.pages.pagination.PageGroup:11 f44c1d50fe2241ae90bd68f0b86bc490 +#: of +msgid "" +"The list of :class:`Page` objects, strings, embeds, or list of embeds to " +"include in the page group." +msgstr "" + +#: 618c8dc7c14745af8932b5e444a46f47 discord.ext.pages.pagination.PageGroup:14 +#: of +msgid "" +"The label shown on the corresponding PaginatorMenu dropdown option. Also " +"used as the SelectOption value." +msgstr "" + +#: 6233ba31ec5d4ae6a3e21fea5df4fd03 discord.ext.pages.pagination.PageGroup:18 +#: of +msgid "The description shown on the corresponding PaginatorMenu dropdown option." +msgstr "" + +#: 406c3c7333924c1a928efb524d4d59b3 discord.ext.pages.pagination.PageGroup:21 +#: of +msgid "The emoji shown on the corresponding PaginatorMenu dropdown option." +msgstr "" + +#: 640d81823b8945488f29aa310f7b50fe discord.ext.pages.pagination.PageGroup:24 +#: of +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 "" + +#: a0d57e1edeaa4012830f0df83c584427 discord.ext.pages.pagination.PageGroup:49 +#: of +msgid "A custom view whose items are appended below the pagination buttons." +msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/ext/tasks/index.po b/docs/locales/en/LC_MESSAGES/ext/tasks/index.po new file mode 100644 index 0000000000..70b909f6e3 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/ext/tasks/index.po @@ -0,0 +1,540 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 "" + +#: 0d9e3d92282d42b39abe6bda09a6c1a5 discord.ext.tasks.Loop:1 of +msgid "" +"A background task helper that abstracts the loop and reconnection logic " +"for you." +msgstr "" + +#: 94f3800cced04f77866012b145727c45 discord.ext.tasks.Loop:3 of +msgid "The main interface to create this is through :func:`loop`." +msgstr "" + +#: ../../ext/tasks/index.rst 0430760556bc454eb496f803a14cbe47 +#: 224eb1ea4d464d899b6db853b26a2846 4652ba98dd17419892fcd50a56a420d0 +#: 6c4c3d6ae0cf4dd3bf9a90b9939d1d43 6f12894246604c7eab1521c1bd45ca57 +#: 761a207eac3447b899de047d9e5ebf7b 7b563966d82a4f03b7d409731c7032b5 +#: 91965bac6d654b3e8109e274bdc46bfd bef7bd65f8fd40808f7c4a269ed9d7c9 +#: cabe2bc452c248be884063fac80d1ad0 eda2eba72cd74d40a81fb96a622558f1 +msgid "Parameters" +msgstr "" + +#: 8cf7f115e3e94e6491cfb5cdff90f8d1 discord.ext.tasks.Loop.after_loop:1 of +msgid "" +"A decorator that register a coroutine to be called after the loop " +"finished running." +msgstr "" + +#: ac000acd3f5743c1a5679fd61466b379 d4f8de6e87f64f9bbc7b4f305e1986cf +#: discord.ext.tasks.Loop.after_loop:3 discord.ext.tasks.Loop.before_loop:6 of +msgid "The coroutine must take no arguments (except ``self`` in a class context)." +msgstr "" + +#: 8cb871d1f5da49e79441d574f90ac13c discord.ext.tasks.Loop.after_loop:7 of +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 "" + +#: 73c64e4f2eeb4b0eaa468253fe8ab317 discord.ext.tasks.Loop.after_loop:12 of +msgid "The coroutine to register after the loop finishes." +msgstr "" + +#: ../../ext/tasks/index.rst 27b88dc7486040678f313ebaed311309 +#: 4f0346fd2f594d87bc6a71fc5f3aaf36 88dd06b54a304b18aaafa8828477df67 +#: 95e660541beb4b44a8764bd93c54a94e a6b9eae8aff44f3ca7bd392a1f0ef0a0 +#: e37d85d7fd3a46cfb5ba0faec8cc2057 eb4160d3b1904ad7b6fb4a90b73082a8 +msgid "Raises" +msgstr "" + +#: 34a7b1d07fa947eca3999296e8c0e55a 369596d73e694c09aa9e9476267a53bd +#: a665cd72f12f444e93e63d177913e3a4 discord.ext.tasks.Loop.after_loop:15 +#: discord.ext.tasks.Loop.before_loop:12 discord.ext.tasks.Loop.error:14 of +msgid "The function was not a coroutine." +msgstr "" + +#: ../../ext/tasks/index.rst 07d97a21eac140af8f4d536dcb062e2e +#: 0da50f3c0c5e4d7bb6fb2b2b8a3138a3 33d39f515aa24c48a28b1f3c05edef44 +#: 3f67b80a7be749d6b9e06e40040ba69e 54b3c2d1fd1b471b83c462abaeeedee8 +#: 6b16812b4e8d43a48dfc08003424686b 7d90def94e9b4721b355b5c6568e8e6f +#: 8de254edf5c84d599fb5c37d26253ec0 a2407e90429149a79db1b5ee278a1dc9 +#: bf5eae97450b4e40bd2157395afa650e c236bd9da41742fa9c9399bd38e4aa90 +#: df4b78673a4946d18d2e5d56973c31a1 ffc3e9102ad84c3c9424d446574b2b0c +msgid "Return type" +msgstr "" + +#: 2576cec782cf4d21bc6d4cd68fb2044e 809ce216769e456b858d7830388f6963 +#: discord.ext.tasks.Loop.after_loop:17 discord.ext.tasks.Loop.before_loop:14 +#: of +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 "" + +#: 29ffc9a0452f4bb7b0c6d26b12bad850 discord.ext.tasks.Loop.before_loop:1 of +msgid "" +"A decorator that registers a coroutine to be called before the loop " +"starts running." +msgstr "" + +#: 27da0e08409c41898200b30e74fb4894 discord.ext.tasks.Loop.before_loop:3 of +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 "" + +#: b0c7be8d4ce84d3baa6bcd24027bee2b discord.ext.tasks.Loop.before_loop:9 of +msgid "The coroutine to register before the loop runs." +msgstr "" + +#: afec46798b8b440ba38c4fd62fa80fd4 discord.ext.tasks.Loop.error:1 of +msgid "" +"A decorator that registers a coroutine to be called if the task " +"encounters an unhandled exception." +msgstr "" + +#: c93726b33b2343148524f006e53e436b discord.ext.tasks.Loop.error:3 of +msgid "" +"The coroutine must take only one argument the exception raised (except " +"``self`` in a class context)." +msgstr "" + +#: 7a8a6183c0dd4264a404dd9e7330321c discord.ext.tasks.Loop.error:5 of +msgid "" +"By default, this prints to :data:`sys.stderr` however it could be " +"overridden to have a different implementation." +msgstr "" + +#: a60614b72b074d8fb36796b2656d2ae9 discord.ext.tasks.Loop.error:11 of +msgid "The coroutine to register in the event of an unhandled exception." +msgstr "" + +#: db7c90536e494551a78eae3eb557d085 discord.ext.tasks.Loop.error:16 of +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 "" + +#: 5e6767c4d5274c98af777dc1798705a9 discord.ext.tasks.Loop.seconds:1 of +msgid "" +"Read-only value for the number of seconds between each iteration. " +"``None`` if an explicit ``time`` value was passed instead." +msgstr "" + +#: cb3c8e59e3ae41ff90f25ab50b2291d2 discord.ext.tasks.Loop.minutes:1 of +msgid "" +"Read-only value for the number of minutes between each iteration. " +"``None`` if an explicit ``time`` value was passed instead." +msgstr "" + +#: 4ec44806924247d389a4222760d17398 discord.ext.tasks.Loop.hours:1 of +msgid "" +"Read-only value for the number of hours between each iteration. ``None`` " +"if an explicit ``time`` value was passed instead." +msgstr "" + +#: a4a728fad7b744f1b572a3c1b2d900f2 discord.ext.tasks.Loop.time:1 of +msgid "" +"Read-only list for the exact times this loop runs at. ``None`` if " +"relative times were passed instead." +msgstr "" + +#: 46a26f5c4f654551917d4052c697d446 discord.ext.tasks.Loop.current_loop:1 of +msgid "The current iteration of the loop." +msgstr "" + +#: 67cc28bb7d7f41fd98f5537ff865fd59 discord.ext.tasks.Loop.next_iteration:1 of +msgid "When the next iteration of the loop will occur." +msgstr "" + +#: a9bf7898d326412dad82fa5a15f28684 discord.ext.tasks.Loop.__call__:1 of +msgid "|coro|" +msgstr "" + +#: c3c46c7036f341b1b90e0abea8f5f616 discord.ext.tasks.Loop.__call__:3 of +msgid "Calls the internal callback that the task holds." +msgstr "" + +#: 0eea72ae5aa84c54b46185aa5c361739 376b8508bb68448e9350e524f6d32325 +#: discord.ext.tasks.Loop.__call__:8 discord.ext.tasks.Loop.restart:9 +#: discord.ext.tasks.Loop.start:4 f99f14954e59457eaabda6d178089525 of +msgid "The arguments to use." +msgstr "" + +#: 185f83c525344b5fb287ea076b7886c5 1906741e1b214e448dd86dbd7128b436 +#: 1da985900f1b4aed8d9b0c3917920ca7 discord.ext.tasks.Loop.__call__:10 +#: discord.ext.tasks.Loop.restart:11 discord.ext.tasks.Loop.start:6 of +msgid "The keyword arguments to use." +msgstr "" + +#: 13e340d01db24b0eaf05daf96be094de discord.ext.tasks.Loop.__call__:12 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Any\\``" +msgstr "" + +#: 921266d2dbea49ed8cf049cea79b9eec discord.ext.tasks.Loop.start:1 of +msgid "Starts the internal task in the event loop." +msgstr "" + +#: 619644ebbe9a4476af9a5564d1028373 discord.ext.tasks.Loop.start:8 of +msgid "A task has already been launched and is running." +msgstr "" + +#: ../../ext/tasks/index.rst cf40520758d644df9ddec49a8aa57320 +#: f20f33b463e44af88836838ef51a6e54 +msgid "Returns" +msgstr "" + +#: 2de78bd7b1a447518ddece14601b9e87 discord.ext.tasks.Loop.start:10 of +msgid "The task that has been created." +msgstr "" + +#: discord.ext.tasks.Loop.start:11 e309e5aef21247378016668a451c034d of +msgid ":class:`asyncio.Task`" +msgstr "" + +#: b0ed2c9ed3794b04aa76ffa817151a2d discord.ext.tasks.Loop.stop:1 of +msgid "Gracefully stops the task from running." +msgstr "" + +#: 728c248aab564a90a3260107d51aba61 discord.ext.tasks.Loop.stop:3 of +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 "" + +#: 455bbbc49062472e84be47a8520c7a7e discord.ext.tasks.Loop.stop:10 of +msgid "" +"If the internal function raises an error that can be handled before " +"finishing then it will retry until it succeeds." +msgstr "" + +#: 3adfd1fe09014389a8d77c57bc6a9a33 discord.ext.tasks.Loop.stop:14 of +msgid "" +"If this is undesirable, either remove the error handling before stopping " +"via :meth:`clear_exception_types` or use :meth:`cancel` instead." +msgstr "" + +#: 3a18cece246a4010a6ab25de921042cc discord.ext.tasks.Loop.cancel:1 of +msgid "Cancels the internal task, if it is running." +msgstr "" + +#: 2efbe31b3fd64b6eacee66fb02b272aa 5871f9579cb5482a9eb81da12f4cdd26 +#: a83424395d0f4d8d8ebfd708aebfb3b9 cc431f5256bc4e699afe36a16bb35452 +#: discord.ext.tasks.Loop.add_exception_type:16 discord.ext.tasks.Loop.cancel:4 +#: discord.ext.tasks.Loop.change_interval:29 discord.ext.tasks.Loop.restart:13 +#: of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: a7de1ec471ef4af788957432e6df3502 discord.ext.tasks.Loop.restart:1 of +msgid "A convenience method to restart the internal task." +msgstr "" + +#: discord.ext.tasks.Loop.restart:5 f8b7b414464243bb80406dcbb475f87b of +msgid "" +"Due to the way this function works, the task is not returned like " +":meth:`start`." +msgstr "" + +#: 327d247dc3704dcca9f385d5d879e03c discord.ext.tasks.Loop.add_exception_type:1 +#: of +msgid "Adds exception types to be handled during the reconnect logic." +msgstr "" + +#: d0ccc7fae84244f58ab340407c73bbf1 discord.ext.tasks.Loop.add_exception_type:3 +#: of +msgid "" +"By default, the exception types handled are those handled by " +":meth:`discord.Client.connect`\\, which includes a lot of internet " +"disconnection errors." +msgstr "" + +#: 979bf5b73dcf4870a3d33b8e994c371d discord.ext.tasks.Loop.add_exception_type:7 +#: of +msgid "" +"This function is useful if you're interacting with a 3rd party library " +"that raises its own set of exceptions." +msgstr "" + +#: 162db15291784b0fa4b3654019ca5aa4 d46fb346a0d249eebdb303ea7b661ab3 +#: discord.ext.tasks.Loop.add_exception_type:11 +#: discord.ext.tasks.Loop.remove_exception_type:4 of +msgid "An argument list of exception classes to handle." +msgstr "" + +#: 5fb93a77f12e4138a319bd0fa837a848 +#: discord.ext.tasks.Loop.add_exception_type:14 of +msgid "" +"An exception passed is either not a class or not inherited from " +":class:`BaseException`." +msgstr "" + +#: 9567edfad8a444f6a38c8cd8ad6697dd +#: discord.ext.tasks.Loop.clear_exception_types:1 of +msgid "" +"Removes all exception types that are handled. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: 714a51591f9143eab9a0a994136f1368 +#: discord.ext.tasks.Loop.clear_exception_types:7 of +msgid "This operation obviously cannot be undone!" +msgstr "" + +#: discord.ext.tasks.Loop.remove_exception_type:1 +#: f0710a79660c4be0a5d577ed8a840729 of +msgid "Removes exception types from being handled during the reconnect logic." +msgstr "" + +#: 4ca4d3d9ff2346e2a6b79c8ed24ef34c +#: discord.ext.tasks.Loop.remove_exception_type:7 of +msgid "Whether all exceptions were successfully removed." +msgstr "" + +#: afcf8b92eb0a4e10990054ad284c53d7 +#: discord.ext.tasks.Loop.remove_exception_type:8 of +msgid ":class:`bool`" +msgstr "" + +#: discord.ext.tasks.Loop.get_task:1 e1d9e16237bb4547af60a9877b90b088 of +msgid "Fetches the internal task or ``None`` if there isn't one running." +msgstr "" + +#: 260dd2e1b8ad4da5a5a7f29ab8f540ef discord.ext.tasks.Loop.get_task:4 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~\\_asyncio.Task\\`\\\\" +" \\\\\\[\\:py\\:obj\\:\\`None\\`\\] \\| \\:py\\:obj\\:\\`None\\``" +msgstr "" + +#: 9f7395681a764732af43ed770788b329 discord.ext.tasks.Loop.is_being_cancelled:1 +#: of +msgid "Whether the task is being cancelled." +msgstr "" + +#: ca525c4cd84243e7a6954afd8c4177ca discord.ext.tasks.Loop.is_being_cancelled:4 +#: of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: b07983af01e44e859cff333049533f23 discord.ext.tasks.Loop.failed:1 of +msgid "" +"Whether the internal task has failed. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: afea19295c07476b9c661c3c4877faa0 discord.ext.tasks.Loop.is_running:1 of +msgid "" +"Check if the task is currently running. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 83530989bb114f24b7e77d873f86ceff discord.ext.tasks.Loop.change_interval:1 of +msgid "Changes the interval for the sleep time." +msgstr "" + +#: 9d539eda63744ec18b6422108e8dcc3f c79687228d5f4b14a5b5cf8eedf1d2f2 +#: discord.ext.tasks.Loop.change_interval:6 discord.ext.tasks.loop:5 of +msgid "The number of seconds between every iteration." +msgstr "" + +#: 643036f81e8548148226f98ad662f662 discord.ext.tasks.Loop.change_interval:9 +#: discord.ext.tasks.loop:8 faab724401534ba891a54abd1063b632 of +msgid "The number of minutes between every iteration." +msgstr "" + +#: 25e739b47679456d9706cd47304e9978 6e09adb27be8418588dfd743e748f717 +#: discord.ext.tasks.Loop.change_interval:12 discord.ext.tasks.loop:11 of +msgid "The number of hours between every iteration." +msgstr "" + +#: 5c6fb443b2604b33af94b201f8b258d8 discord.ext.tasks.Loop.change_interval:15 +#: of +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 "" + +#: 6224d70d5fda4bd78858977a37bf9607 discord.ext.tasks.Loop.change_interval:15 +#: of +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 "" + +#: 318ff42090a54ee6ba110b06461a5d2e b3b725baac894dc4aec2325b26106b6f +#: discord.ext.tasks.Loop.change_interval:23 discord.ext.tasks.loop:22 of +msgid "Duplicate times will be ignored, and only run once." +msgstr "" + +#: b9bff9f275424b10b9b4b4a745dc7f96 d34550bdeb504b4ba94cd33934a387ac +#: discord.ext.tasks.Loop.change_interval:26 discord.ext.tasks.loop:40 of +msgid "An invalid value was given." +msgstr "" + +#: 622a6c84602644b581053d78b1619f3a discord.ext.tasks.Loop.change_interval:27 +#: of +msgid "" +"An invalid value for the ``time`` parameter was passed, or the " +"``time`` parameter was passed in conjunction with relative time " +"parameters." +msgstr "" + +#: d1cde6f36bb94fa8a109a7406e99305c discord.ext.tasks.loop:1 of +msgid "" +"A decorator that schedules a task in the background for you with optional" +" reconnect logic. The decorator returns a :class:`Loop`." +msgstr "" + +#: 2730a5b0e80a4bb78a3110623b108393 discord.ext.tasks.loop:14 of +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 "" + +#: 4957f25f5de04866a15143387272931f discord.ext.tasks.loop:14 of +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.loop:18 e4cdfd5e2c074237adb1bc9479a240c4 of +msgid "This cannot be used in conjunction with the relative time parameters." +msgstr "" + +#: c959854a17704c0c9357e7e7922da117 discord.ext.tasks.loop:27 of +msgid "The number of loops to do, ``None`` if it should be an infinite loop." +msgstr "" + +#: 3adeed780b7b4670b41253cc6354e85a discord.ext.tasks.loop:31 of +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 "" + +#: 7e644a647eaa4981aad624c207683f5a discord.ext.tasks.loop:36 of +msgid "" +"The loop to use to register the task, if not given defaults to " +":func:`asyncio.get_event_loop`." +msgstr "" + +#: 1b6f0ce5942646378838dbe0ab4fe0a0 discord.ext.tasks.loop:41 of +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 "" + +#: 3dd1e6ebb48849edb09bcd60b72c860c discord.ext.tasks.loop:43 of +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/locales/en/LC_MESSAGES/faq.po b/docs/locales/en/LC_MESSAGES/faq.po new file mode 100644 index 0000000000..1d7d3299e6 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/faq.po @@ -0,0 +1,552 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 2ac40c17e7e146adaf2e1882a0895624 +#: 4af31f34d79f4b15bdcd9f9c0ecb638d 7466bd3209ed4da6a1db6c319e409d98 +#: 8a59ed4e66c942a0abc4d59c6b33ad77 d619f977a1fc4114ae22961529c04ae9 +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 2bca210db4524a3dab85438e7d12f2b3 +#: 8a369aaa0965425abecf4147f8627866 +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/locales/en/LC_MESSAGES/index.po b/docs/locales/en/LC_MESSAGES/index.po new file mode 100644 index 0000000000..1ac430e82b --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/index.po @@ -0,0 +1,171 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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/locales/en/LC_MESSAGES/installing.po b/docs/locales/en/LC_MESSAGES/installing.po new file mode 100644 index 0000000000..8c57d88b52 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/installing.po @@ -0,0 +1,164 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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/locales/en/LC_MESSAGES/intents.po b/docs/locales/en/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..52dc00ba96 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/intents.po @@ -0,0 +1,445 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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/locales/en/LC_MESSAGES/logging.po b/docs/locales/en/LC_MESSAGES/logging.po new file mode 100644 index 0000000000..6e067240e8 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/logging.po @@ -0,0 +1,67 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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/locales/en/LC_MESSAGES/migrating_to_v1.po b/docs/locales/en/LC_MESSAGES/migrating_to_v1.po new file mode 100644 index 0000000000..fa32574f83 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/migrating_to_v1.po @@ -0,0 +1,2403 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 6b67d4e97b6d4c8694c2e8da96a76517 +#: 6cb5196bb0504400af83d4731274d8be 9e94073e377e4f0e982b3de50c7f9206 +msgid "Before" +msgstr "" + +#: ../../migrating_to_v1.rst:59 ../../migrating_to_v1.rst:95 +#: ../../migrating_to_v1.rst:869 0ee0a1495d2d41beaa51cd3784372563 +#: a331664e22074b3a87583500ac143465 eb2dcd846f054ca58906e7e4b49a54c5 +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 +#: 74f3be9c3add4f368f86a690fc5d1472 aa792784735d4bdba990f4c81103bdf8 +#: de31911786464ca6ba77fd0a83061978 ea928f7105be4ba58ae0cf4fafee9a56 +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 +#: 2ca2af0b09124e90a2f0d31328f8e1d6 7a3c12cb8dfb41bf955590556e87f472 +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 +#: 202dc8001ca4408aa742db9ad98ce404 aeb94dbd878040e18cd6830187c6c850 +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 +#: 635b9e52c62b40be95e8f1251bc4cecf a95df90801f5424ba3ffc944daf822d2 +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 +#: 05be7cd79c304f8d8d3938d10271bd25 44ad88423637441a84457439a0f40c90 +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 43cd0c51ff7c4ecb97667690a1b6ef3a +#: 5e096ef003564027843e2cf77fd49905 6da4ff8098aa4351a5c83d1ffcc4f1d1 +#: b07d66fff1a5420480498608ba884ffe c58eac28c0944f9ea8c790dcb2b6fdae +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 +#: 1e2d99c8a53d4b3b84555fbdaa0098c0 4eb11e4ee15f433b860e24da2cc52f5b +#: 6c20b982c40b44939fc9ee44f1a8ca76 708ade3f91f04892bdda6c045520adb8 +#: f2d06097e5364ac494727a51843f9e15 f7e16601163143e5a5c386382d1cc530 +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/locales/en/LC_MESSAGES/migrating_to_v2.po b/docs/locales/en/LC_MESSAGES/migrating_to_v2.po new file mode 100644 index 0000000000..5bbd8a9803 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/migrating_to_v2.po @@ -0,0 +1,695 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 +#: 03cd95fabd374e4982e6da2ae545982a 555d85f847b7406c83991fb44ffec3cf +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 +#: 71cfc7c63d664ccaae1a843441419313 b8837ab04fef402282277085c9efbd73 +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/locales/en/LC_MESSAGES/old_changelog.po b/docs/locales/en/LC_MESSAGES/old_changelog.po new file mode 100644 index 0000000000..adba7bc68c --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/old_changelog.po @@ -0,0 +1,3837 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 +#: 0cfe368e06df4e1ea7c150453f89de6e 17f17608af0a43cc962fac5db9cc8ddf +#: 23efacaa85b24de6ad0abd7fb71e2ac7 2d8a2079d07d471185fd771cd110e196 +#: 2dc4ae7f1672461b99cb21d7f4c1c44b 30d3f7fc96194b079dc989af8254ccb4 +#: 37d0810d51c84bf687249ea3a8ff8a85 50f297ce67c74677b1ee89c30fde8409 +#: 544e311820a74571b148c112223905fa 64872ef88d1e420a88cc9ff9eb89ced2 +#: 68ce32f8aabb41649fc4afa11b3f0bf1 69eb18190cd849848afb4111eb0bb649 +#: 70c3ca9bce654a929c96e04fc09b4b8e 732ef6051bcb4804a5c9e79154c78279 +#: 73fc735825794200af7a30630764db24 7817b4312a154f009dff55e432a858c7 +#: 78ed3243a842422cadbb88aaae754d02 7c148660626547308b1391067e9ced02 +#: 7cc0d22d8b2943e7aa79c455e015b3b6 81fd18a62df0458f9c29cf729ae7ca07 +#: 91bf4aa50b16483f889c8f3e912f0d24 a26c3200a835429795617d743cd8e40f +#: a67d46ada6074351bae4038c9b1130e7 b365962e4ace4f4699a0e934d4285afc +#: b3fa3203990f4d0c98d2c93de388634e b4afbdf7fe6e4760ad70fe8db595e132 +#: cd7f6bebae794a53828a66d9cbecafec d4257b1c63b649d2bab2777f8f87974b +#: dceb88c2f12845d6aaba763f7a1eaa93 dec246ccbf76406dbf2f4d6fb7752d72 +#: ef3d030669fc4e67885f6989dcbda763 f94aa69bf4f9450dab1d250ecd1cbda4 +#: fa8aa6eb723f40efb4fedb376fbd320e fed539cd2e6c4e53ba4aebc61df10f3c +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 09ef2dfc185f422f85996a6f5f33bac0 +#: 111b5503166c49049c83def274c3d777 204e63c3290b4fc88a1d943da58066ad +#: 2199902f33d7402e943e5681ed7282b2 226e4f2fbc514dd2b1792a6a22c75007 +#: 36bcd7cd8e4e45e2b1dce6ac93ce18e4 6d540400003c4c0d9a46efb8124d5831 +#: 766d20e109394d4f9d97b5e570375d42 9b63b5b3747040e0ba5f64a7c819bcf1 +#: 9f395f70c5344ef0b711c4248d8bacb3 c2770ae1af9b4102b8a693f993b1d639 +#: d56c88d569c24dddb1487157ed9d48a2 d9f378368bb5411da040252341ae2384 +#: dc35086399e943d6ae66d4137f6c7084 e3502fe3e4524732aa20fa04e01c3807 +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 2bc932f969fb46fb94ffea3585aef3b8 +#: 58b8c638cd2b4c5ba356c542a0d06f16 6033308e4fa246309f44ff2a9c62ff84 +#: 6577690b508a41508166de7f527309de 68b50c582bfe4c26a0062c99a16a67d1 +#: 7cfe8c8e4f1348d18ba5b233fa4378a3 8cd36561ec9247c3a46aab2c0bc4091e +#: aae073b86ab64b3cbeb8991af651aacf aecfd74254fe4380a3a35c820f199656 +#: bacd8bb1f2e94851957735f5c9b966a2 c30304010e0645a58629fa474ad0b4b0 +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 +#: 01bd7be1c4304e208005be731ba4afd6 424cc5829d774465a38c056fef25a32b +msgid "" +"Fix :attr:`abc.GuildChannel.permissions_synced` always being ``False`` " +"(:dpy-issue:`5772`)" +msgstr "" + +#: ../../old_changelog.rst:306 ../../old_changelog.rst:340 +#: 5a400f231b0f431e88023cec102cc1f7 9eaaa5136a534eef8985ae7b55a07932 +msgid "" +"Fix handling of cloudflare bans on webhook related requests (:dpy-" +"issue:`5221`)" +msgstr "" + +#: ../../old_changelog.rst:307 ../../old_changelog.rst:341 +#: 60986dddc4514d5f8439bb750827cc8a 88a01d4747cf40c680c7fe0fb9f3d1f2 +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 +#: b0334e961f684210a4a187503f27acd1 d282047850f0430cbf53c5cc4102453e +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 +#: 21306977bea14641b77f1a9ec1faabb6 e5b9d4e38bc14f8fbfdde8181d940040 +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 +#: 16b3062f67904ff2ae561b2546794925 b96344b6c603408dab9ca02983fffb11 +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 +#: 14ffcd2aaf65405e87ca219d9dc793d1 dac3191f3dbf46fe97c6c31f9a63ce5b +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 +#: 09f4349738e94800b64e5fac16700400 69a6f356a382470a93a0254e1ef839fb +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 +#, python-format +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 353cdc2e00964c6581422a101ca734c2 +#: 35b01b73e8b7417c9e8fa9aea638facf bf8f0a7614934e239dca8a71fe39d6ec +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/locales/en/LC_MESSAGES/quickstart.po b/docs/locales/en/LC_MESSAGES/quickstart.po new file mode 100644 index 0000000000..43958880c1 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/quickstart.po @@ -0,0 +1,181 @@ +# 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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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 +#: 2ef0ca47c35d4a87a66ecf37ac34fbee fc7a9fd22cd347f08e3a12508390d564 +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/locales/en/LC_MESSAGES/version_guarantees.po b/docs/locales/en/LC_MESSAGES/version_guarantees.po new file mode 100644 index 0000000000..d5aea67208 --- /dev/null +++ b/docs/locales/en/LC_MESSAGES/version_guarantees.po @@ -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 , 2024. +# +#, 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: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.14.0\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/locales/es/LC_MESSAGES/api/abcs.po b/docs/locales/es/LC_MESSAGES/api/abcs.po new file mode 100644 index 0000000000..6315a084b0 --- /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 "Clases base abstractas" + +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 "Una :term:`clase base abstracta` (también conocidas como ``cba``) es un tipo de clase la cual otros objetos utilizan heredar sus funcionalidades. **Las clases base abstractas no deben ser inicializadas**. Su principal causa de uso es para utilizar comprobaciones :func:`isinstance` e :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 "La librería tiene un módulo centrado en las clases bases abstractas, en la que todas son heredadas de :class:`typing.Protocol`." + +msgid "An ABC that details the common operations on a Discord model." +msgstr "Una CBA que detalla las operaciones más comunes en un modelo de Discord." + +msgid "Almost all :ref:`Discord models ` meet this abstract base class." +msgstr "Casi todos los :ref:`modelos de Discord ` cumplen el protocolo de esta clase base abstracta." + +msgid "If you want to create a snowflake on your own, consider using :class:`.Object`." +msgstr "Si quieres crear un snowflake por tu cuenta, es preferible que uses :class:`.Object`." + +msgid "The model's unique ID." +msgstr "El ID único del modelo." + +msgid "type" +msgstr "tipo" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "An ABC that details the common operations on a Discord user." +msgstr "Una CBA que detalla las operaciones más comunes en un usuario de Discord." + +msgid "The following implement this ABC:" +msgstr "Los siguientes son heredados de esta CBA:" + +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 "Esta CBA también debe implementar :class:`~discord.abc.Snowflake`." + +msgid "The user's username." +msgstr "El nombre del usuario." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's discriminator." +msgstr "El discriminador del usuario." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "Si el usuario ha migrado al nuevo sistema de nombres de usuario, esto siempre será \"0\"." + +msgid "The user's global name." +msgstr "El nombre global del usuario." + +msgid "The avatar asset the user has." +msgstr "El avatar que tiene el usuario." + +msgid ":class:`~discord.Asset`" +msgstr ":class:`~discord.Asset`" + +msgid "If the user is a bot account." +msgstr "Si el usuario es un bot." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Returns the user's display name." +msgstr "Retorna el nombre mostrado del usuario." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Retorna una cadena que permite mencionar al usuario." + +msgid "An ABC that details the common operations on a private Discord channel." +msgstr "Una CBA que detalla las operaciones más comunes en un canal privado de Discord." + +msgid ":class:`~discord.DMChannel`" +msgstr ":class:`~discord.DMChannel`" + +msgid ":class:`~discord.GroupChannel`" +msgstr ":class:`~discord.GroupChannel`" + +msgid "The user presenting yourself." +msgstr "El usuario que te representa." + +msgid "An ABC that details the common operations on a Discord guild channel." +msgstr "Una CBA que detalla las operaciones más comunes en un canal de un servidor de Discord." + +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 "El nombre del canal." + +msgid "The guild the channel belongs to." +msgstr "El servidor al cual este canal pertenece." + +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 "La posición del canal en la lista de canales. Este es un entero comenzando desde 0. p. ej., el primer canal tiene la posición 0." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Retorna una lista de roles que han sido sobreescritos de su valor predeterminado en el atributo :attr:`~discord.Guild.roles`." + +msgid "The string that allows you to mention the channel." +msgstr "Retorna una cadena que permite mencionar el canal." + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Retorna un enlace que permite al cliente ir directamente al canal." + +msgid "Returns the channel's creation time in UTC." +msgstr "Retorna la fecha de creación del canal en UTC." + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Retorna las sobrescrituras de un miembro o rol específicas de este canal." + +msgid "Parameters" +msgstr "Parámetros" + +msgid "The role or user denoting whose overwrite to get." +msgstr "El rol o usuario de los que quieres obtener las sobrescrituras." + +msgid "Returns" +msgstr "Retorna" + +msgid "The permission overwrites for this object." +msgstr "Las sobre escrituras de los permisos para este objeto." + +msgid "Return type" +msgstr "Tipo del valor retornado" + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "Returns all of the channel's overwrites." +msgstr "Retorna todas las sobrescrituras de este canal." + +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 "Esto es retornado como un diccionario donde la llave es el objeto, que puede ser de tipo :class:`~discord.Role` o :class:`~discord.Member`, y el valor es la sobrescritura, que es de tipo :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "Las sobrescrituras de los permisos de este canal." + +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 "La categoría a la cual pertenece este canal." + +msgid "If there is no category then this is ``None``." +msgstr "Si no pertenece a ninguna, entonces esto retorna ``None``." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Si los permisos de este canal están sincronizados con los de la categoría a la que pertenece." + +msgid "If there is no category then this is ``False``." +msgstr "Si no pertenece a ninguna categoría, entonces esto es ``False``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Gestiona la resolución de los permisos para el :class:`~discord.Member` o :class:`~discord.Role`." + +msgid "This function takes into consideration the following cases:" +msgstr "Esta función tiene en cuenta los siguientes casos:" + +msgid "Guild owner" +msgstr "Propietario del servidor" + +msgid "Guild roles" +msgstr "Roles del servidor" + +msgid "Channel overrides" +msgstr "Sobrescrituras de canales" + +msgid "Member overrides" +msgstr "Sobrescrituras de miembros" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "Si se proporciona un :class:`~discord.Role`, entonces esto comprueba los permisos de alguien que tenga el rol, que es esencialmente:" + +msgid "The default role permissions" +msgstr "Los permisos del rol por defecto" + +msgid "The permissions of the role used as a parameter" +msgstr "Los permisos del rol usado como parámetro" + +msgid "The default role permission overwrites" +msgstr "Las sobrescrituras de permisos del rol por defecto" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "Las sobrescrituras de permisos del rol usado como parámetro" + +msgid "The object passed in can now be a role object." +msgstr "El objeto proporcionado ahora puede ser un rol." + +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 "El objeto del que obtener los permisos. Este puede ser un miembro o rol. Si es un rol, entonces las sobrescrituras de miembro no son calculadas." + +msgid "The resolved permissions for the member or role." +msgstr "Los permisos calculados del miembro o rol." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Deletes the channel." +msgstr "Elimina este canal." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "Debes tener el permiso :attr:`~discord.Permissions.manage_channels` para poder usar esto." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "La razón por la que se elimina el canal. Se muestra en el registro de auditoría." + +msgid "Raises" +msgstr "Errores" + +msgid "You do not have proper permissions to delete the channel." +msgstr "No tienes los permisos necesarios para poder eliminar el canal." + +msgid "The channel was not found or was already deleted." +msgstr "El canal no se encontró o ya fue eliminado." + +msgid "Deleting the channel failed." +msgstr "Algo falló mientras se eliminaba el canal." + +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 "Establece las sobrescrituras de permisos para un objetivo en el canal." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "El parámetro ``target`` debe ser del tipo :class:`~discord.Member` o :class:`~discord.Role` que pertenezca al servidor." + +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 "El parámetro ``overwrite``, si es proporcionado, debe ser ``None`` o de tipo :class:`~discord.PermissionOverwrite`. Por conveniencia, puedes proporcionar argumentos de palabras clave que denoten atributos :class:`~discord.Permissions`. Si eso se hace, no se podrán combinar los argumentos de palabras clave con el parámetro ``overwrite``." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "Si el parámetro ``overwrite`` es ``None``, entonces se eliminarán las sobrescrituras ya existentes." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "Debes tener el permiso :attr:`~discord.Permissions.manage_roles` para poder usar esto." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "Este método *reemplaza* las sobrescrituras antiguas con las proporcionadas." + +msgid "Examples" +msgstr "Ejemplos" + +msgid "Setting allow and deny: ::" +msgstr "Estableciendo permitidos y denegados: ::" + +msgid "Deleting overwrites ::" +msgstr "Eliminar sobrescrituras: ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Usando :class:`~discord.PermissionOverwrite`: ::" + +msgid "The member or role to overwrite permissions for." +msgstr "El miembro o rol al que editar las sobrescrituras de permisos." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "Los permisos que aceptar o denegar al objetivo, o ``None`` para eliminar la sobrescritura." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "Una lista de argumentos de palabras clave de los permisos a establecer para facilitar el uso. No se puede combinar con ``overwrite``." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "La razón por la que se hace esta acción. Se muestra en el registro de auditoría." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "No tienes permisos para editar los permisos de este canal." + +msgid "Editing channel specific permissions failed." +msgstr "Algo falló mientras se editaban los permisos del canal." + +msgid "The role or member being edited is not part of the guild." +msgstr "El rol o miembro que se va a editar no es parte del servidor." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "El parámetro ``overwrite`` no es válido o el tipo de objetivo no era un :class:`~discord.Role` o :class:`~discord.Member`." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Clona este canal. Esto crea uno nuevo con las mismas propiedades." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "Debes tener el permiso :attr:`~discord.Permissions.manage_channels` para poder usar esto." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "El nuevo nombre del canal. Si no se proporciona, se usará el nombre del canal existente." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "La razón por la que se clona el canal. Se muestra en el registro de auditoría." + +msgid "The channel that was created." +msgstr "El canal que fue creado." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "No tienes los permisos necesarios para crear este canal." + +msgid "Creating the channel failed." +msgstr "Algo falló mientras se creaba el canal." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "Una interfaz completa la cual ayuda a mover un canal en relación con los otros." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "Si la posición exacta a la que quiere moverse es requerida, deberías usar ``edit`` en su lugar." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Los canales de voz siempre se ordenarán después de los canales de texto. Esto es una limitación de Discord." + +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 "Si debería moverse el canal al principio de la lista de canales (o categoría, si es proporcionada). Esto es mutuamente excluyente con ``end``, ``before`` y ``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 "Si mover el canal al final de la lista de canales (o de la categoría, si es proporcionada). Esto es mutuamente excluyente con ``beginning``, ``before`` y ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "El canal que debería estar antes del canal actual. Esto es mutuamente excluyente con ``beginning``, ``end`` y ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "El canal que debería estar después del canal actual. Esto es mutuamente excluyente con ``beginning``, ``end`` y ``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 "La cantidad de canales que mover para compensar. Por ejemplo, un desplazamiento de valor ``2`` con ``beginning=True`` moverá el canal 2 posiciones a partir del principio. Un número positivo mueve el canal hacia abajo, mientras uno negativo lo mueve hacia arriba. Tenga en cuenta que este número es relativo y calculado a partir de los parámetros ``beginning``, ``end``, ``before`` y ``after``." + +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 "La categoría a la que mover este canal. Si se proporciona ``None`` entonces mueve el canal fuera de esta. Este parámetro es ignorado si se mueve una categoría." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Si se deben sincronizar los permisos con la categoría a la que se mueve (si es proporcionada)." + +msgid "The reason for the move." +msgstr "La razón por la que se mueve este canal." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "Se proporcionó una posición no válida, o se mezclaron parámetros mutuamente excluyentes." + +msgid "You do not have permissions to move the channel." +msgstr "No tienes los permisos necesarios para poder mover el canal." + +msgid "Moving the channel failed." +msgstr "Algo falló mientras se movía el canal." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Crea una invitación instantánea a partir de un canal de texto o voz." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "Debes tener el permiso :attr:`~discord.Permissions.create_instant_invite` para poder usar esto." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "Cuánto durará la invitación en segundos. Si se proporciona 0 entonces esta invitación no expirará. El valor por defecto es ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "Cuántos usos tendrá la invitación. Si se proporciona 0 entonces tendrá usos ilimitados. El valor por defecto es ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Marca que la invitación otorgará una membresía temporal (es decir, son expulsados después de desconectarse). El valor por defecto es ``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 "Indica si debería crearse un enlace único para la invitación. El valor por defecto es ``True``. Si se proporciona ``False`` entonces retornará una invitación ya existente." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "La razón por la que se crea la invitación. Se muestra en el registro de auditoría." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "El tipo de objetivo para la invitación al canal de voz, si aplicable. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "El tipo de objetivo para la invitación al canal de voz, si aplicable." + +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 "El usuario cuál directo mostrar en esta invitación. Obligatorio si el valor del parámetro `target_type` es `TargetType.stream`. El usuario debe estar en directo en el canal. .. 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 "El usuario cuál directo mostrar en esta invitación. Obligatorio si el valor del parámetro `target_type` es `TargetType.stream`. El usuario debe estar en directo en el canal." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "El ID de la aplicación que mostrar en la invitación. Obligatorio si el valor del parámetro de `target_type` es `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 "El ID de la aplicación que mostrar en la invitación. Obligatorio si el valor del parámetro de `target_type` es `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 "El objeto de evento que enlazar a la invitación. Atajo de :meth:`.Invite.set_scheduled_event`. Véase también :meth:`.Invite.set_scheduled_event` para más información en como enlazar un evento a la invitación. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "El objeto de evento que enlazar a la invitación. Atajo de :meth:`.Invite.set_scheduled_event`." + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "Véase también :meth:`.Invite.set_scheduled_event` para más información en como enlazar un evento a la invitación." + +msgid "The invite that was created." +msgstr "La invitación que fue creada." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Algo falló al crear la invitación." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "El canal que se proporcionó era una categoría o era un canal no válido." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Retorna una lista de todas las invitaciones activas de este canal." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "Debes tener el permiso :attr:`~discord.Permissions.manage_channels` para poder usar esto." + +msgid "The list of invites that are currently active." +msgstr "La lista de invitaciones actualmente activas." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "You do not have proper permissions to get the information." +msgstr "No tienes los permisos necesarios para poder obtener esta información." + +msgid "An error occurred while fetching the information." +msgstr "Algo falló mientras se obtenía la información." + +msgid "An ABC that details the common operations on a model that can send messages." +msgstr "Una CBA que detalla las operaciones más comunes en un modelo que permite enviar mensajes." + +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 "Retorna un iterador asíncrono (:class:`~discord.AsyncIterator`) que permite recibir el historial de mensajes del canal." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "Debes tener el permiso :attr:`~discord.Permissions.read_message_history` para poder usar esto." + +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 "La cantidad de mensajes a obtener. Si se proporciona ``None``, obtiene todos los mensajes del canal. Ten en cuenta que esto lo haría una operación lenta." + +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 "Obtiene los mensajes antes de esta fecha o mensaje. Si se proporciona un datetime, se recomienda que sea con una zona horaria establecida en UTC, en caso de que no, se asumirá que está en hora local." + +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 "Obtiene los mensajes después de esta fecha o mensaje. Si se proporciona un datetime, se recomienda que sea con una zona horaria establecida en UTC, en caso de que no, se asumirá que está en hora local." + +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 "Obtiene los mensajes alrededor de esta fecha o mensaje. Si se proporciona un datetime, se recomienda que sea con una zona horaria establecida en UTC, en caso de que no, se asumirá que está en hora local. Cuando se usa este argumento, el límite que se pueden obtener es de 101. Ten en cuenta que si el límite es par, entonces esto retornará como mucho el límite + 1 mensajes." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "Si se proporciona ``True``, retorna los mensajes en orden de creación descendente (antiguo -> nuevo). El valor por defecto es ``True`` si se proporciona un valor a ``after``, sino es ``False``." + +msgid "Yields" +msgstr "Genera" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- El mensaje con la información analizada." + +msgid "You do not have permissions to get channel message history." +msgstr "No tienes permisos para ver el historial de mensajes de este canal." + +msgid "The request to get message history failed." +msgstr "Algo falló mientras se obtenía el historial de mensajes." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Usage ::" +msgstr "Uso ::" + +msgid "Flattening into a list: ::" +msgstr "Convertir a una lista: ::" + +msgid "All parameters are optional." +msgstr "Todos los parámetros son opcionales." + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Retorna un gestor de contexto que permite que aparezcas como \"escribiendo\" por un periodo de tiempo indefinido." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "Esto es útil si tu bot tiene que realizar cálculos longevos. :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 "Esto es tanto como un gestor de contexto síncrono como asíncrono, que quiere decir que, se puede utilizar tanto en un gestor de contexto ``with`` como ``async with``." + +msgid "Example Usage: ::" +msgstr "Ejemplo de uso: ::" + +msgid "Sends a message to the destination with the content given." +msgstr "Envía un mensaje al canal con el contenido proporcionado." + +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 "El valor del parámetro ``content`` debe de ser un objeto convertible a una cadena mediante ``str(content)``. Si se establece a ``None`` (el valor por defecto), entonces el parámetro ``embed`` debe ser porporcionado." + +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 "Para adjuntar un solo archivo se ha de utilizar el parámetro ``file`` con un :class:`~discord.File`. Para adjuntar varios archivos se recomienda utilizar el parámetro ``files`` en vez, en este caso, proporcionando una :class:`list` de objetos :class:`~discord.File`. **En caso de especificar los dos, se mostrará un error**." + +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 "Para enviar un solo embed se ha de utilizar el parámetro ``embed`` con un objeto de tipo :class:`~discord.Embed`. Para adjuntar varios embeds se recomienda utilizar el parámetro ``embeds`` en vez, en este caso, proporcionando un objeto de tipo :class:`list` cuyos elementos han de ser instancias de :class:`~discord.Embed`. **En caso de especificar los dos, se mostrará un error**." + +msgid "The content of the message to send." +msgstr "El contenido del mensaje a enviar." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indica si el mensaje se enviará usando la función texto a voz." + +msgid "The rich embed for the content." +msgstr "El embed que adjuntar." + +msgid "The file to upload." +msgstr "El archivo que adjuntar." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "Una lista de archivos a adjuntar. Debe de ser un máximo de 10 elementos." + +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 "El valor único a utilizar para enviar este mensaje. Si el mensaje se envió correctamente, entonces el mensaje tendrá como nonce este valor." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Si se forzará la validación del atributo :attr:`nonce`. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Si se forzará la validación del atributo :attr:`nonce`." + +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 "Si es proporcionado, la cantidad de segundos a esperar en segundo plano antes de eliminar el mensaje que se envió. Si algo falla mientras se eliminaba el mensaje, entonces el error es silenciosamente ignorado." + +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 "Controla las menciones que se procesarán en el mensaje. Si esto es proporcionado entonces se combinará con :attr:`~discord.Client.allowed_mentions`. La combinación solo sobrescribirá aquellos atributos que se hayan explícitamente proporcionado, sino, usa los establecidos en :attr:`~discord.Client.allowed_mentions`. Si no se proporciona ningún valor, usa como valor el establecido en :attr:`~discord.Client.allowed_mentions`. .. 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 "Controla las menciones que se procesarán en el mensaje. Si esto es proporcionado entonces se combinará con :attr:`~discord.Client.allowed_mentions`. La combinación solo sobrescribirá aquellos atributos que se hayan explícitamente proporcionado, sino, usa los establecidos en :attr:`~discord.Client.allowed_mentions`. Si no se proporciona ningún valor, usa como valor el establecido en :attr:`~discord.Client.allowed_mentions`." + +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 "La referencia al :class:`~discord.Message` que representa el mensaje al cual estás respondiendo, esto se puede crear mediante :meth:`~discord.Message.to_reference` o directamente proporcionando como un :class:`~discord.Message`. Puedes controlar si esto menciona al autor del mensaje al que respondes usando el atributo :attr:`~discord.AllowedMentions.replied_user` del parámetro ``allowed_mentions`` o estableciendo ``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 "La referencia al :class:`~discord.Message` que representa el mensaje al cual estás respondiendo, esto se puede crear mediante :meth:`~discord.Message.to_reference` o directamente proporcionando como un :class:`~discord.Message`. Puedes controlar si esto menciona al autor del mensaje al que respondes usando el atributo :attr:`~discord.AllowedMentions.replied_user` del parámetro ``allowed_mentions`` o estableciendo ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "Si es establecido, sobrescribe el atributo :attr:`~discord.AllowedMentions.replied_user` del parámetro ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "Si es establecido, sobrescribe el atributo :attr:`~discord.AllowedMentions.replied_user` del parámetro ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "El contenedor de componentes al que añadir al mensaje." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "Una lista de embeds que adjuntar. El máximo de elementos es 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "Una lista de embeds que adjuntar. El máximo de elementos es 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "Una lista de stickers que adjuntar. El máximo de elementos es 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "Una lista de stickers que adjuntar. El máximo de elementos es 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Si suprimir los embeds del mensaje." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Si suprimir las notificaciones push y las notificaciones de escritorio de este mensaje. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Si suprimir las notificaciones push y las notificaciones de escritorio de este mensaje." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "La encuesta a enviar. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "La encuesta a enviar." + +msgid "The message that was sent." +msgstr "El mensaje que fue enviado." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "Sending the message failed." +msgstr "Algo falló mientras se enviaba el mensaje." + +msgid "You do not have the proper permissions to send the message." +msgstr "No tienes los permisos necesarios para enviar este mensaje." + +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 "La lista ``files`` no cumple con los límites de tamaño, especificaste ambos parámetros ``file`` y ``files``, especificaste ambos parámetros ``embed`` y ``embeds``, o el valor del parámetro ``reference`` no es un objeto de tipo :class:`~discord.Message`, :class:`~discord.MesageReference` o :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Activa el indicador de *escribiendo* en el canal." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "El indicador *escribiendo* desaparecerá luego de 10 segundos, o cuando se envía un mensaje." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Obtiene un solo :class:`~discord.Message` del canal." + +msgid "The message ID to look for." +msgstr "El ID del mensaje a buscar." + +msgid "The message asked for." +msgstr "El mensaje solicitado." + +msgid "The specified message was not found." +msgstr "El mensaje especificado no fue encontrado." + +msgid "You do not have the permissions required to get a message." +msgstr "No tienes los permisos necesarios para poder obtener un mensaje." + +msgid "Retrieving the message failed." +msgstr "Algo falló mientras se obtenía el mensaje." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Obtiene todos los mensajes que están fijados en el canal." + +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 "Por una limitación con la API de Discord, los objetos :class:`.Message` retornados por este método no contienen información completa de :attr:`.Message.reactions`." + +msgid "The messages that are currently pinned." +msgstr "Los mensajes que están fijados." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Algo falló mientras se obtenían los mensajes fijados." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Retorna un :class:`bool` el cual indica si tienes permisos de enviar el/los objeto/s." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Indica si tienes permisos de enviar el/los objeto/s." + +msgid "An invalid type has been passed." +msgstr "Un objeto de tipo no válido ha sido proporcionado." + +msgid "An ABC that details the common operations on a channel that can connect to a voice server." +msgstr "Una CBA que detalla las operaciones más comunes en un canal al que se puede conectar." + +msgid "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." +msgstr "Esta CBA no fue decorada con :func:`typing.runtime_checkable` por lo que fallará las comprobaciones :func:`ininstance` e :func:`issubclass`." + 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..6bee3ccc47 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,877 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Comandos de la aplicación" + +msgid "Command Permission Decorators" +msgstr "Decoradores de Permisos de Comandos" + +msgid "A decorator that limits the usage of an application command to members with certain permissions." +msgstr "Un decorador que limita el uso de un comando de aplicación a los miembros con ciertos permisos." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "Los permisos proporcionados han de ser los mismos que las propiedades mostradas en :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 "Estos permisos pueden ser actualizados por los administradores de cada servidor. Por ende, esto solo establece los \"predeterminados\", tal como el nombre dice. Si aun así quieres asegurarte de que un usuario **siempre** tiene los permisos especificados, deberías utilizar un comprobador interno como :func:`~.ext.commands.has_permissions`." + +msgid "Parameters" +msgstr "Parámetros" + +msgid "An argument list of permissions to check for." +msgstr "Una lista de argumentos que representan los permisos que comprobar." + +msgid "Return type" +msgstr "Tipo del valor devuelto" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" + +msgid "Example" +msgstr "Ejemplo" + +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 "Un decorador que limita el uso de un comando de aplicación a contextos de servidores. El comando no podrá ser usado en canales privados." + +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 "Un decorador que limita el uso de un comando de aplicación a usuarios y canales +18. En servidores, el comando solo estará disponible en canales con restricción de edad. En MDs, los usuarios deberán haber aceptado el uso de comandos con restricción de edad en los ajustes de privacidad." + +msgid "Note that apps intending to be listed in the App Directory cannot have NSFW commands." +msgstr "Ten en cuenta que las aplicaciones que quieras aparecer en el Directorio de Apps no pueden tener comandos con restricción de edad." + +msgid "Commands" +msgstr "Comandos" + +msgid "Shortcut Decorators" +msgstr "Decoradores \"Atajo\"" + +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 "Un decorador que transforma una función en un :class:`.ApplicationCommand`. Más específicamente, cualquier tipo de :class:`.SlashCommand`, :class:`.UserCommand` o :class:`.MessageCommand`. La clase exacta depende del parámetro ``cls``. Por defecto, el atributo ``description`` proviene de la cadena de documentación de la función, y es limpiada gracias a ``inspect.cleandoc``. Si el tipo de la cadena de documentación es ``bytes``, entonces es decodificado a :class:`str` usando la codificación utf-8. El atributo ``name`` también se predetermina al nombre de la función sin cambios." + +msgid "The class to construct with. By default, this is :class:`.SlashCommand`. You usually do not change this." +msgstr "La clase con la que inicializar el comando. Por defecto esto es :class:`.SlashCommand`. Normalmente esto no se cambia." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Argumentos de palabras clave que pasar al inicializador de la clase proporcionada en el parámetro ``cls``." + +msgid "Returns" +msgstr "Retorna" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, or subclass of it." +msgstr "Un decorador que convierte el método proporcionado a un objeto de tipo :class:`.ApplicationCommand`, o cualquiera de sus subclases." + +msgid "Callable[..., :class:`.ApplicationCommand`]" +msgstr "Callable[..., :class:`.ApplicationCommand`]" + +msgid "Raises" +msgstr "Errores" + +msgid "If the function is not a coroutine or is already a command." +msgstr "Si la función no es una corrutina o ya es un comando." + +msgid "An alias for :meth:`application_command`." +msgstr "Un alias de :meth:`application_command`." + +msgid "This decorator is overridden by :func:`ext.commands.command`." +msgstr "Este decorador es sobreescrito por :func:`ext.commands.command`." + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`." +msgstr "Un decorador que convierte el método proporcionado en un objeto :class:`.ApplicationCommand`." + +msgid "Decorator for slash commands that invokes :func:`application_command`." +msgstr "Decorador de comandos de barra que invoca :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`." +msgstr "Un decorador que convierte el método proporcionado en un objeto :class:`.SlashCommand`." + +msgid "Callable[..., :class:`.SlashCommand`]" +msgstr "Callable[..., :class:`.SlashCommand`]" + +msgid "Decorator for user commands that invokes :func:`application_command`." +msgstr "Decorador para comandos de usuarios que invoca :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`." +msgstr "Un decorador que convierte el método proporcionado en un objeto :class:`.UserCommand`." + +msgid "Callable[..., :class:`.UserCommand`]" +msgstr "Callable[..., :class:`.UserCommand`]" + +msgid "Decorator for message commands that invokes :func:`application_command`." +msgstr "Decorador de comandos de mensajes que invoca :func:`application_command`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`." +msgstr "Un decorador que convierte el método proporcionado en un objeto :class:`.MessageCommand`." + +msgid "Callable[..., :class:`.MessageCommand`]" +msgstr "Callable[..., :class:`.MessageCommand`]" + +msgid "Objects" +msgstr "Objetos" + +msgid "Checks whether the command is currently on cooldown." +msgstr "Comprueba si el comando actualmente está en el tiempo de enfriamiento." + +msgid "This uses the current time instead of the interaction time." +msgstr "Esto utiliza el tiempo actual en vez del tiempo de creación de la interacción." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "El contexto de invocación que usar para comprobar el estado de enfriamiento del comando." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "Un booleano el cual indica si el comando está en enfriamiento o no." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Resets the cooldown on this command." +msgstr "Restablece el tiempo de enfriamiento de este comando." + +msgid "The invocation context to reset the cooldown under." +msgstr "El contexto de invocación del cual restablecer el tiempo de enfriamiento." + +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 "Obtiene la cantidad de segundos los cuales esperar antes de poder reutilizar el comando." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "El contexto de invocación del cual obtener el tiempo de enfriamiento." + +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 "La cantidad de segundos de enfriamiento restantes del comando. Si esto es ``0.0`` el comando no está en enfriamiento." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "Un decorador que registra una corrutina como un gestor de errores local." + +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 "Un gestor de errores local es como el evento :func:`.on_command_error`, pero limitado a un solo comando. Sin embargo, este mismo es invocado después." + +msgid "The coroutine to register as the local error handler." +msgstr "La corrutina a registrar como gestor de errores local." + +msgid "The coroutine passed is not actually a coroutine." +msgstr "La corrutina proporcionada no era verdaderamente una corrutina." + +msgid "Checks whether the command has an error handler registered." +msgstr "Comprueba si el comando tiene un gestor de errores registrado." + +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 "Un decorador que registra una corrutina como el \"pre-invocador\". Un \"pre-invocador\" es invocado antes que el comando. Esto es una función útil para, por ejemplo, configurar conexiones a una base de datos, o cualquier tipo de configuración requerida." + +msgid "This pre-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.before_invoke` for more info." +msgstr "El \"pre-invocador\" toma un único argumento, un objeto :class:`.ApplicationContext`. Véase también :meth:`.Bot.before_invoke` para más información." + +msgid "The coroutine to register as the pre-invoke hook." +msgstr "La corrutina a registrar como \"pre-invocador\"." + +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 "Un decorador que registra una corrutina como un \"post-invocador\". Un \"post-invocador\" es invocado después del comando. Esto es una función útil para, por ejemplo, limpiar conexiones a una base de datos, o cualquier tipo de limpieza requerida." + +msgid "This post-invoke hook takes a sole parameter, an :class:`.ApplicationContext`. See :meth:`.Bot.after_invoke` for more info." +msgstr "El \"post-invocador\" toma un único argumento, un objeto :class:`.ApplicationContext`. Véase también :meth:`.Bot.after_invoke` para más información." + +msgid "The coroutine to register as the post-invoke hook." +msgstr "La corrutina a registrar como \"post-invocador\"." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Obtiene el nombre completo del comando padre." + +msgid "This the base command name required to execute it. For example, in ``/one two three`` the parent name would be ``one two``." +msgstr "Este es el nombre del comando base requerido para ejecutarlo. Por ejemplo, en ``/uno dos tres`` el nombre del comando padre sería ``uno dos``." + +msgid "Retrieves the fully qualified command name." +msgstr "Obtiene el nombre completo del comando." + +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 "Este es el nombre del comando padre junto al nombre del comando. Por ejemplo, en ``/uno dos tres`` el nombre completo sería ``uno dos tres``." + +msgid "Retrieves the fully qualified command ID." +msgstr "Obtiene la ID completa del comando." + +msgid "This is the root parent ID. For example, in ``/one two three`` the qualified ID would return ``one.id``." +msgstr "Esta es la ID del padre base. Por ejemplo, en ``/uno dos tres`` la ID completa sería ``uno.id``." + +msgid "A class that implements the protocol for a slash command." +msgstr "Una clase que implementa el protocolo para un comando de barra." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "Estos no son creados manualmente sino por el decorador o interfaz funcional." + +msgid "The name of the command." +msgstr "El nombre del comando." + +msgid "type" +msgstr "tipo" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The coroutine that is executed when the command is called." +msgstr "La corrutina que es ejecutada cuando se invoca el comando." + +msgid ":ref:`coroutine `" +msgstr ":ref:`corrutina `" + +msgid "The description for the command." +msgstr "La descripción del comando." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The ids of the guilds where this command will be registered." +msgstr "Las IDs de los servidores en los cuales se registrará este comando." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "The parameters for this command." +msgstr "Los parámetros de este comando." + +msgid "List[:class:`Option`]" +msgstr "List[:class:`Option`]" + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "El grupo al cual este comando pertenece. ``None`` si ninguno." + +msgid "Optional[:class:`SlashCommandGroup`]" +msgstr "Optional[:class:`SlashCommandGroup`]" + +msgid "Returns a string that allows you to mention the slash command." +msgstr "Retorna una cadena que permite mencionar este comando de barra." + +msgid "Whether the command should only be usable inside a guild." +msgstr "Si el comando solo puede ser utilizado en un servidor." + +msgid "Use the :attr:`contexts` parameter instead." +msgstr "Utiliza el parámetro :attr:`contexts` en vez." + +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 "Si el comando debe restringirse a canales y usuarios +18. Las aplicaciones que pretendan aparecer en el Directorio de Apps no pueden tener comandos con restricción de edad." + +msgid "The default permissions a member needs to be able to run the command." +msgstr "Los permisos por defecto que un miembro necesita para poder ejecutar el comando." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "El módulo al cual este comando pertenece. ``None`` si ninguno." + +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 "Genera" + +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 "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..cf14e9eafc --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/clients.po @@ -0,0 +1,1567 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Objetos del cliente" + +msgid "Bots" +msgstr "Bots" + +msgid "Represents a discord bot." +msgstr "Representa un bot de discord." + +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 "Esta clase es una subclase de :class:`discord.Client` y como consecuencia, todo lo que puedas hacer con un :class:`discord.Client`, también lo puedes hacer con este bot." + +msgid "This class also subclasses ``ApplicationCommandMixin`` to provide the functionality to manage commands." +msgstr "Esta clase también tiene una subclase ``ApplicationCommandMixin`` para proporcionar la funcionalidad necesaria para administrar comandos." + +msgid "The content prefixed into the default help message." +msgstr "El contenido prefijado en el mensaje de ayuda por defecto." + +msgid "type" +msgstr "tipo" + +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 "El ID de usuario del dueño del bot. Si no está establecido y se hace una consulta mediante :meth:`.is_owner`, lo busca automáticamente usando :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 "El ID de usuario del dueño del bot. Esto es similar a :attr:`owner_id`. Si no está establecido y la aplicación está en un equipo, lo busca automáticamente usando :meth:`~.Bot.application_info`. Por razones de rendimiento, se recomienda usar un :class:`set` para la colección. No puedes establecer ``owner_id`` y ``owner_ids`` al mismo tiempo." + +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 "El ID de uno de los gremios para el uso de comandos de prueba. El bot no creará ningún comando global si se pasan gremios de depuración." + +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 "Si hay que sincronizar automáticamente los comandos de barra. Esto llamará :meth:`~.Bot.sync_commands` en :func:`discord.on_connect`, y :attr:`.process_application_commands` si el comando no se encuentra. El valor por defecto es ``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 "El contexto de tipos por defecto que el bot usará para los comandos. El valor por defecto es un set que contiene :attr:`InteractionContextType.guild`, :attr:`InteractionContextType.bot_dm` y :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 "La integración de tipos por defecto que el bot usará para los comandos. El valor por defecto es un set que contiene :attr:`IntegrationType.guild_install`." + +msgid "Collection[:class:`IntegrationType`]]" +msgstr "Collection[:class:`IntegrationType`]]" + +msgid "An alias for :meth:`application_command`." +msgstr "Un alias para :meth:`application_command`." + +msgid "This decorator is overridden by :class:`discord.ext.commands.Bot`." +msgstr "Este decorador es sobreescrito por :class:`discord.ext.commands.Bot`." + +msgid "Returns" +msgstr "Retorna" + +msgid "A decorator that converts the provided method into an :class:`.ApplicationCommand`, adds it to the bot, then returns it." +msgstr "Un decorador que convierte el método en una :class:`.ApplicationCommand`, la añade al bot y la retorna." + +msgid "Return type" +msgstr "Tipo de retorno" + +msgid "Callable[..., :class:`ApplicationCommand`]" +msgstr "Callable[..., :class:`ApplicationCommand`]" + +msgid "A decorator that registers an event to listen to." +msgstr "Un decorador que registra un evento a escuchar." + +msgid "You can find more info about the events on the :ref:`documentation below `." +msgstr "Puedes encontrar más información sobre los eventos en la :ref:`documentación de abajo `." + +msgid "The events must be a :ref:`coroutine `, if not, :exc:`TypeError` is raised." +msgstr "Los eventos deben ser una :ref:`corrutina `, si no, se lanza un :exc:`TypeError`." + +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 "Esto reemplaza cualquier manejador por defecto. Se recomienda que los desarrolladores usen :py:meth:`~discord.Client.listen` para añadir manejadores adicionales en lugar de :py:meth:`~discord.Client.event` a no ser que quiera reemplazar el método por defecto." + +msgid "Raises" +msgstr "Lanza" + +msgid "The coroutine passed is not actually a coroutine." +msgstr "La corrutina pasada no es realmente una corrutina." + +msgid "Example" +msgstr "Ejemplo" + +msgid "Parameters" +msgstr "Parámetros" + +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 "Un acceso directo a un decorador que invoca :func:`command` y la añade a la lista de comandos internos a través de :meth:`add_application_command`. Este acceso directo está hecho específicamente para :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "Un decorador que convierte el método proporcionado en una :class:`.MessageCommand`, la añade al bot y la retorna." + +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 "Un acceso directo a un decorador que invoca :func:`command` y la añade a la lista de comandos internos a través de :meth:`add_application_command`. Este acceso directo está hecho específicamente para :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "Un decorador que convierte el método proporcionado en un :class:`.SlashCommand`, la añade al bot y la retorna." + +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 "Un acceso directo a un decorador que invoca :func:`command` y la añade a la lista de comandos internos a través de :meth:`add_application_command`. Este acceso directo está hecho específicamente para :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "Un decorador que convierte el método proporcionado en un :class:`.UserCommand`, la añade al bot y la retorna." + +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 "El comando a añadir." + +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 "Añade una comprobación global al bot. Esta es la interfaz no-decoradora de :meth:`.check` y :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 "Añade un \"cog\" al 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 "La función a llamar." + +msgid "The name of the event to listen for. Defaults to ``func.__name__``." +msgstr "El nombre del evento a escuchar. El valor por defecto es ``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 "Genera" + +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 "La cantidad de gremios a obtener. Si se proporciona ``None``, obtiene todos los servidores a los que tienes acceso. Ten en cuenta que esto lo haría una operación lenta``. El valor por defecto es ``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 "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 "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 "El tipo del comando a obtener. El valor por defecto es :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 "El nombre del paquete con el que resolver importaciones relativas. Esto se requiere al cargar una extensión usando una ruta relativa, por ejemplo, ``.foo.test``. El valor por defecto es ``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 "El nombre del paquete con el que resolver importaciones relativas. Esto se requiere al cargar una extensión usando una ruta relativa, por ejemplo, ``.foo.test``. El valor por defecto es ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "Si los directorios bajo el directorio principal dado deberían ser cargados recursivamente. El valor por defecto es ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "Si los directorios bajo el directorio principal dado deberían ser cargados recursivamente. El valor por defecto es ``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 "Si las excepciones deberián guardarse o lanzarse. Si se establece ``True``, todas las excepciones encontradas se guardaran en el diccionario retornado como estado cargador. Si se establece ``False``, cualquier excepcion que se encuentre será lanzada y el bot se cerrará. Si no se encuentra ninguna excepción, se retornará una lista con el nombre de extensiones cargadas. El valor por defecto es ``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 "Si las excepciones deberián guardarse o lanzarse. Si se establece ``True``, todas las excepciones encontradas se guardaran en el diccionario retornado como estado cargador. Si se establece ``False``, cualquier excepcion que se encuentre será lanzada y el bot se cerrará. Si no se encuentra ninguna excepción, se retornará una lista con el nombre de extensiones cargadas. El valor por defecto es ``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 "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 "Ejemplo: ::" + +msgid "Indicates what status to change to. If ``None``, then :attr:`Status.online` is used." +msgstr "Indica a que estado cambiar. Si se establece en ``None``, se usará :attr:`Status.online`." + +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 "El shard_id a la que se cambiará la presencia. Si no se especifica o se establece en ``None``, se cambiará la presencia de cada shard que el bot pueda ver." + +msgid "If the ``activity`` parameter is not of proper type." +msgstr "Si el parámetro ``activity`` no es del tipo correcto." + +msgid "Whether the websocket is currently rate limited." +msgstr "Si la velocidad del websocket está actualmente limitada." + +msgid "This can be useful to know when deciding whether you should query members using HTTP or via the gateway." +msgstr "Esto puede ser útil para saber si deberías consultar los miembros usando HTTP o a través del 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..5135a2b2bb --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/cogs.po @@ -0,0 +1,187 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Genera" + +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 "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 "Errores" + +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 "El contexto de invocación." + +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..db7aaa30f7 --- /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 "Errores" + +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 "Genera" + +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 "Comprueba si dos ApplicationFlags son iguales." + +msgid "Checks if two ApplicationFlags are not equal." +msgstr "Comprueba si dos ApplicationFlags no son iguales." + +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 "Comprueba si dos PublicUserFlags son iguales." + +msgid "Checks if two PublicUserFlags are not equal." +msgstr "Comprueba si dos PublicUserFlags no son iguales." + +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 "Comprueba si dos ChannelFlags son iguales." + +msgid "Checks if two ChannelFlags are not equal." +msgstr "Comprueba si dos ChannelFlags no son iguales." + +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 "Comprueba si dos SKUFlags son iguales." + +msgid "Checks if two SKUFlags are not equal." +msgstr "Comprueba si dos SKUFlags no son iguales." + +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 "Comprueba si dos MemberFlags son iguales." + +msgid "Checks if two MemberFlags are not equal." +msgstr "Comprueba si dos MemberFlags no son iguales." + +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 "Comprueba si dos RoleFlags son iguales." + +msgid "Checks if two RoleFlags are not equal." +msgstr "Comprueba si dos RoleFlags no son iguales." + +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 "Comprueba si dos colores son iguales." + +msgid "Checks if two colours are not equal." +msgstr "Comprueba si dos colores no son iguales." + +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 "Actividad" + +msgid "Represents an activity in Discord." +msgstr "Representa una actividad en Discord." + +msgid "This could be an activity such as streaming, playing, listening or watching." +msgstr "Esto podría ser una actividad como transmitiendo, jugando, escuchando o viendo." + +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 "Comprueba si dos juegos son iguales." + +msgid "Checks if two games are not equal." +msgstr "Comprueba si dos juegos no son iguales." + +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 "Comprueba si dos transmisiones son iguales." + +msgid "Checks if two streams are not equal." +msgstr "Comprueba si dos transmisiones no son iguales." + +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 "El URL de la transmisión." + +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 "Comprueba si dos actividades son iguales." + +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..33c7cb059a --- /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 "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 "Un subcomando de barra." + +msgid "A slash command group." +msgstr "Un grupo de comandos de barra." + +msgid "A string." +msgstr "Una cadena de texto." + +msgid "An integer between -2⁵³ and 2⁵³." +msgstr "Un entero entre -2⁵³ y 2⁵³." + +msgid "IDs, such as 881224361015672863, are often too big for this input type." +msgstr "Los ID, como 881224361015672863, son a menudo demasiado grandes para este tipo de entrada." + +msgid "A boolean." +msgstr "Un booleano." + +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:`User` 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 canal 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 -2⁵³ y 2⁵³." + +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 grupal privado." + +msgid "A category channel." +msgstr "Un canal categoría." + +msgid "A guild news channel." +msgstr "Un canal de noticias del gremio." + +msgid "A guild stage voice channel." +msgstr "Un canal de voz (escenario) del gremio." + +msgid "A news thread." +msgstr "Un hilo de noticias." + +msgid "A public thread." +msgstr "Un hilo público." + +msgid "A private thread." +msgstr "Un hilo privado." + +msgid "A guild directory entry, used in hub guilds, currently in experiment." +msgstr "Una entrada en el directorio del gremio, usada en el descubrimieto de gremios, actualmente en experimento." + +msgid "User can only write in threads, similar functionality to a forum." +msgstr "El usuario solo puede escribir en hilos, funcionas similar a un foro." + +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 "Comprueba si dos mensajes son iguales." + +msgid "Checks if two messages are not equal." +msgstr "Comprueba si dos mensajes no son iguales." + +msgid "The default message type. This is the same as regular messages." +msgstr "El tipo de mensaje predeterminado. Esto es lo mismo que los mensajes normales." + +msgid "The system message when a user is added to a group private message or a thread." +msgstr "El mensaje del sistema cuando un usuario se añade a un mensaje privado de grupo o un hilo." + +msgid "The system message when a user is removed from a group private message or a thread." +msgstr "El mensaje del sistema cuando un usuario se añade a un mensaje privado de grupo o un hilo." + +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 "El mensaje del sistema que indica que un miembro ha \"potenciado con nitro\" un gremio." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 1." +msgstr "El mensaje del sistema que indica que un miembro ha \"potenciado con nitro\" un gremio y ha conseguido el nivel 1." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 2." +msgstr "El mensaje del sistema que indica que un miembro ha \"potenciado con nitro\" un gremio y ha conseguido el nivel 2." + +msgid "The system message denoting that a member has \"nitro boosted\" a guild and it achieved level 3." +msgstr "El mensaje del sistema que indica que un miembro ha \"potenciado con nitro\" un gremio y ha conseguido el nivel 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 "Un tipo de actividad \"Jugando\"." + +msgid "A \"Streaming\" activity type." +msgstr "Un tipo de actividad \"Transmitiendo\"." + +msgid "A \"Listening\" activity type." +msgstr "Un tipo de actividad \"Escuchando\"." + +msgid "A \"Watching\" activity type." +msgstr "Un tipo de actividad \"Viendo\"." + +msgid "A custom activity type." +msgstr "Un tipo de actividad personalizada." + +msgid "A competing activity type." +msgstr "Un tipo de actividad competitiva." + +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 "Representa una interacción con un comando de barra." + +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 "Un alias para :attr:`primary`." + +msgid "An alias for :attr:`secondary`." +msgstr "Un alias para :attr:`secondary`." + +msgid "An alias for :attr:`success`." +msgstr "Un alias para :attr:`success`." + +msgid "An alias for :attr:`danger`." +msgstr "Un alias para :attr:`danger`." + +msgid "An alias for :attr:`link`." +msgstr "Un alias para :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 "Un alias para :attr:`short`." + +msgid "An alias for :attr:`long`." +msgstr "Un alias para :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 "Un alias para :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 "Se ha creado un nuevo canal." + +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` (siempre establecido en ``1`` si es así)" + +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 "Un alias para :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 para :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 para :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 "Eliminado por Discord y fusionado con :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..0e91e23542 --- /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 "actividad" + +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 "Llamado cuando un :class:`Member` cambia su :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 "El estado de voz antes de los cambios." + +msgid "The voice state after the changes." +msgstr "El estado de voz después de los cambios." + +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..bb7e94bda2 --- /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 "Excepciones" + +msgid "Exception Hierarchy" +msgstr "Jerarquía de excepciones" + +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 "Objetos" + +msgid "The following exceptions are thrown by the library." +msgstr "Las siguientes excepciones son lanzadas por la biblioteca." + +msgid "Base exception class for pycord" +msgstr "Clase base de las excepciones de pycord" + +msgid "Ideally speaking, this could be caught to handle any exceptions raised from this library." +msgstr "En términos ideales, esto podría capturarse para gestionar las excepciones lanzadas desde esta biblioteca." + +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 "Estas excepciones generalmente ocurren debido a lo que introduce del usuario." + +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 "Parámetros" + +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 "Esto hereda de :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..209146bb6a --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/api/models.po @@ -0,0 +1,7804 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Errores" + +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 "Comprueba si dos actividades son iguales." + +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 "Genera" + +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 "El nombre del usuario." + +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 "El nombre global del usuario." + +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 "Retorna una cadena que permite mencionar al usuario." + +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 "Comprueba si dos mensajes son iguales." + +msgid "Checks if two messages are not equal." +msgstr "Comprueba si dos mensajes no son iguales." + +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 "La posición del canal en la lista de canales. Este es un entero comenzando desde 0. p. ej., el primer canal tiene la posición 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 "No tienes los permisos necesarios para crear este canal." + +msgid "Creating the channel failed." +msgstr "Algo falló mientras se creaba el canal." + +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 "No tienes los permisos necesarios para poder obtener esta información." + +msgid "This user is not banned." +msgstr "This user is not banned." + +msgid "An error occurred while fetching the information." +msgstr "Algo falló mientras se obtenía la información." + +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 "La razón por la que se hace esta acción. Se muestra en el registro de auditoría." + +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 "La lista de invitaciones actualmente activas." + +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 "Retrieves a :class:`Role` that the guild has." +msgstr "Retrieves a :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider using :attr:`get_role` instead." +msgstr "This method is an API call. For general usage, consider using :attr:`get_role` instead." + +msgid "The role in the guild with the specified ID." +msgstr "The role in the guild with the specified ID." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "Retrieving the role failed." +msgstr "Retrieving the role 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 "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 "Cambia el estado de voz del cliente en el gremio." + +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 "Esto lanza las mismas excepciones que :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 "Retorna una cadena que permite mencionar el canal." + +msgid "Returns the channel's creation time in UTC." +msgstr "Retorna la fecha de creación del canal en 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 "Ejemplo" + +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 "Gestiona la resolución de los permisos para el :class:`~discord.Member` o :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 "El objeto del que obtener los permisos. Este puede ser un miembro o rol. Si es un rol, entonces las sobrescrituras de miembro no son calculadas." + +msgid "The resolved permissions for the member or role." +msgstr "Los permisos calculados del miembro o rol." + +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 "El nombre del canal." + +msgid "The guild the channel belongs to." +msgstr "El servidor al cual este canal pertenece." + +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 "Clona este canal. Esto crea uno nuevo con las mismas propiedades." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "Debes tener el permiso :attr:`~discord.Permissions.manage_channels` para poder usar esto." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "El nuevo nombre del canal. Si no se proporciona, se usará el nombre del canal existente." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "La razón por la que se clona el canal. Se muestra en el registro de auditoría." + +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 "La categoría a la cual pertenece este canal." + +msgid "If there is no category then this is ``None``." +msgstr "Si no pertenece a ninguna, entonces esto retorna ``None``." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Retorna una lista de roles que han sido sobreescritos de su valor predeterminado en el atributo :attr:`~discord.Guild.roles`." + +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 "Crea una invitación instantánea a partir de un canal de texto o voz." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "Debes tener el permiso :attr:`~discord.Permissions.create_instant_invite` para poder usar esto." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "Cuánto durará la invitación en segundos. Si se proporciona 0 entonces esta invitación no expirará. El valor por defecto es ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "Cuántos usos tendrá la invitación. Si se proporciona 0 entonces tendrá usos ilimitados. El valor por defecto es ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Marca que la invitación otorgará una membresía temporal (es decir, son expulsados después de desconectarse). El valor por defecto es ``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 "Indica si debería crearse un enlace único para la invitación. El valor por defecto es ``True``. Si se proporciona ``False`` entonces retornará una invitación ya existente." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "La razón por la que se crea la invitación. Se muestra en el registro de auditoría." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "El tipo de objetivo para la invitación al canal de voz, si aplicable. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "El tipo de objetivo para la invitación al canal de voz, si aplicable." + +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 "El usuario cuál directo mostrar en esta invitación. Obligatorio si el valor del parámetro `target_type` es `TargetType.stream`. El usuario debe estar en directo en el canal. .. 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 "El usuario cuál directo mostrar en esta invitación. Obligatorio si el valor del parámetro `target_type` es `TargetType.stream`. El usuario debe estar en directo en el canal." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "El ID de la aplicación que mostrar en la invitación. Obligatorio si el valor del parámetro de `target_type` es `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 "El ID de la aplicación que mostrar en la invitación. Obligatorio si el valor del parámetro de `target_type` es `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 "El objeto de evento que enlazar a la invitación. Atajo de :meth:`.Invite.set_scheduled_event`. Véase también :meth:`.Invite.set_scheduled_event` para más información en como enlazar un evento a la invitación. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "El objeto de evento que enlazar a la invitación. Atajo de :meth:`.Invite.set_scheduled_event`." + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "Véase también :meth:`.Invite.set_scheduled_event` para más información en como enlazar un evento a la invitación." + +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 "Algo falló al crear la invitación." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "El canal que se proporcionó era una categoría o era un canal no válido." + +msgid "Deletes the channel." +msgstr "Elimina este canal." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "Debes tener el permiso :attr:`~discord.Permissions.manage_channels` para poder usar esto." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "La razón por la que se elimina el canal. Se muestra en el registro de auditoría." + +msgid "You do not have proper permissions to delete the channel." +msgstr "No tienes los permisos necesarios para poder eliminar el canal." + +msgid "The channel was not found or was already deleted." +msgstr "El canal no se encontró o ya fue eliminado." + +msgid "Deleting the channel failed." +msgstr "Algo falló mientras se eliminaba el canal." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Retorna una lista de todas las invitaciones activas de este canal." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "Debes tener el permiso :attr:`~discord.Permissions.manage_channels` para poder usar esto." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Retorna un enlace que permite al cliente ir directamente al canal." + +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 "Una interfaz completa la cual ayuda a mover un canal en relación con los otros." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "Si la posición exacta a la que quiere moverse es requerida, deberías usar ``edit`` en su lugar." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Los canales de voz siempre se ordenarán después de los canales de texto. Esto es una limitación de Discord." + +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 "Si debería moverse el canal al principio de la lista de canales (o categoría, si es proporcionada). Esto es mutuamente excluyente con ``end``, ``before`` y ``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 "Si mover el canal al final de la lista de canales (o de la categoría, si es proporcionada). Esto es mutuamente excluyente con ``beginning``, ``before`` y ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "El canal que debería estar antes del canal actual. Esto es mutuamente excluyente con ``beginning``, ``end`` y ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "El canal que debería estar después del canal actual. Esto es mutuamente excluyente con ``beginning``, ``end`` y ``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 "La cantidad de canales que mover para compensar. Por ejemplo, un desplazamiento de valor ``2`` con ``beginning=True`` moverá el canal 2 posiciones a partir del principio. Un número positivo mueve el canal hacia abajo, mientras uno negativo lo mueve hacia arriba. Tenga en cuenta que este número es relativo y calculado a partir de los parámetros ``beginning``, ``end``, ``before`` y ``after``." + +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 "La categoría a la que mover este canal. Si se proporciona ``None`` entonces mueve el canal fuera de esta. Este parámetro es ignorado si se mueve una categoría." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Si se deben sincronizar los permisos con la categoría a la que se mueve (si es proporcionada)." + +msgid "The reason for the move." +msgstr "La razón por la que se mueve este canal." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "Se proporcionó una posición no válida, o se mezclaron parámetros mutuamente excluyentes." + +msgid "You do not have permissions to move the channel." +msgstr "No tienes los permisos necesarios para poder mover el canal." + +msgid "Moving the channel failed." +msgstr "Algo falló mientras se movía el canal." + +msgid "Returns all of the channel's overwrites." +msgstr "Retorna todas las sobrescrituras de este canal." + +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 "Esto es retornado como un diccionario donde la llave es el objeto, que puede ser de tipo :class:`~discord.Role` o :class:`~discord.Member`, y el valor es la sobrescritura, que es de tipo :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "Las sobrescrituras de los permisos de este canal." + +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 "Retorna las sobrescrituras de un miembro o rol específicas de este canal." + +msgid "The role or user denoting whose overwrite to get." +msgstr "El rol o usuario de los que quieres obtener las sobrescrituras." + +msgid "The permission overwrites for this object." +msgstr "Las sobre escrituras de los permisos para este objeto." + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "This function takes into consideration the following cases:" +msgstr "Esta función tiene en cuenta los siguientes casos:" + +msgid "Guild owner" +msgstr "Propietario del servidor" + +msgid "Guild roles" +msgstr "Roles del servidor" + +msgid "Channel overrides" +msgstr "Sobrescrituras de canales" + +msgid "Member overrides" +msgstr "Sobrescrituras de miembros" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "Si se proporciona un :class:`~discord.Role`, entonces esto comprueba los permisos de alguien que tenga el rol, que es esencialmente:" + +msgid "The default role permissions" +msgstr "Los permisos del rol por defecto" + +msgid "The permissions of the role used as a parameter" +msgstr "Los permisos del rol usado como parámetro" + +msgid "The default role permission overwrites" +msgstr "Las sobrescrituras de permisos del rol por defecto" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "Las sobrescrituras de permisos del rol usado como parámetro" + +msgid "The object passed in can now be a role object." +msgstr "El objeto proporcionado ahora puede ser un rol." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Si los permisos de este canal están sincronizados con los de la categoría a la que pertenece." + +msgid "If there is no category then this is ``False``." +msgstr "Si no pertenece a ninguna categoría, entonces esto es ``False``." + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Establece las sobrescrituras de permisos para un objetivo en el canal." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "El parámetro ``target`` debe ser del tipo :class:`~discord.Member` o :class:`~discord.Role` que pertenezca al servidor." + +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 "El parámetro ``overwrite``, si es proporcionado, debe ser ``None`` o de tipo :class:`~discord.PermissionOverwrite`. Por conveniencia, puedes proporcionar argumentos de palabras clave que denoten atributos :class:`~discord.Permissions`. Si eso se hace, no se podrán combinar los argumentos de palabras clave con el parámetro ``overwrite``." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "Si el parámetro ``overwrite`` es ``None``, entonces se eliminarán las sobrescrituras ya existentes." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "Debes tener el permiso :attr:`~discord.Permissions.manage_roles` para poder usar esto." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "Este método *reemplaza* las sobrescrituras antiguas con las proporcionadas." + +msgid "Setting allow and deny: ::" +msgstr "Estableciendo permitidos y denegados: ::" + +msgid "Deleting overwrites ::" +msgstr "Eliminar sobrescrituras: ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Usando :class:`~discord.PermissionOverwrite`: ::" + +msgid "The member or role to overwrite permissions for." +msgstr "El miembro o rol al que editar las sobrescrituras de permisos." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "Los permisos que aceptar o denegar al objetivo, o ``None`` para eliminar la sobrescritura." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "Una lista de argumentos de palabras clave de los permisos a establecer para facilitar el uso. No se puede combinar con ``overwrite``." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "No tienes permisos para editar los permisos de este canal." + +msgid "Editing channel specific permissions failed." +msgstr "Algo falló mientras se editaban los permisos del canal." + +msgid "The role or member being edited is not part of the guild." +msgstr "El rol o miembro que se va a editar no es parte del servidor." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "El parámetro ``overwrite`` no es válido o el tipo de objetivo no era un :class:`~discord.Role` o :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 "El usuario que te representa." + +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..fa8952c887 --- /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 "Errores" + +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..6e96255856 --- /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 "Objetos" + +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 "Errores" + +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..c0ed378e34 --- /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 "Errores" + +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 "Ejemplo" + +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..5f6ee92322 --- /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 "Objetos" + +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 "Errores" + +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 "Esta función propaga las excepciones lanzadas." + +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..55ffe9c5a0 --- /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 "Errores" + +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..0c2f048b47 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/changelog.po @@ -0,0 +1,1111 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️" +msgstr "⚠️ **Esta versión elimina el soporte para Python 3.8** ⚠️" + +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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **Esta versión elimina el soporte para Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" + +msgid "Added" +msgstr "Added" + +msgid "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" +msgstr "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +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..6233cb544e --- /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 "Crear una cuenta bot" + +msgid "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." +msgstr "Para poder trabajar con la biblioteca y la API de Discord en general, primero debemos crear una cuenta de bot en Discord." + +msgid "Creating a Bot account is a pretty straightforward process." +msgstr "Crear una cuenta de bot es un proceso bastante sencillo." + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Asegúrate de haber iniciado sesión en el `sitio web de Discord `_." + +msgid "Navigate to the `application page `_" +msgstr "Ve a la página de `aplicaciones `_" + +msgid "Click on the \"New Application\" button." +msgstr "Haz clic en el botón \"New Application\"." + +msgid "The new application button." +msgstr "El botón de nueva aplicación." + +msgid "Give the application a name and click \"Create\"." +msgstr "Dale un nombre a la aplicación y haz clic en \"Create\"." + +msgid "The new application form filled in." +msgstr "El formulario de la nueva aplicación llenado." + +msgid "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." +msgstr "Crea un usuario de bot navegando a la pestaña \"Bot\" y haz clic en \"Add Bot\"." + +msgid "Click \"Yes, do it!\" to continue." +msgstr "Haz clic en \"Yes, do it!\" para continuar." + +msgid "The Add Bot button." +msgstr "El botón Añadir bot." + +msgid "Make sure that **Public Bot** is ticked if you want others to invite your bot." +msgstr "Asegúrate de que el **Public Bot** esté activado si quieres que otros inviten a tu 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 "También deberías asegurarte que **Require OAuth2 Code Grant** esté desactivado, a no ser que estés desarrollando un servicio que lo necesite. Si no estás seguro, entonces **mantenlo desactivado**." + +msgid "How the Bot User options should look like for most people." +msgstr "Cómo se deberían ver las opciones de usuario Bot para la mayoría de las personas." + +msgid "Copy the token using the \"Copy\" button." +msgstr "Copie el token usando el botón \"Copy\"." + +msgid "**This is not the Client Secret at the General Information page.**" +msgstr "**Este no es el Client Secret de la página de General Information.**" + +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 "Vale la pena señalar que este token es esencialmente la contraseña de tu bot. **Nunca** deberías compartir esto con otra persona. Al hacerlo, alguien puede iniciar sesión en tu bot y realizar acciones maliciosas, como abandonar servidores, banear todos los miembros dentro de un servidor, o mencionar a everyone maliciosamente." + +msgid "The possibilities are endless, so **do not share this token.**" +msgstr "Las posibilidades son infinitas, así que **no compartas este 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 "Si accidentalmente filtraste tu token, haz clic en el botón \"Regenerate\" tan pronto como puedas. Esto revoca tu viejo token y vuelve a generar uno nuevo. Ahora necesitas usar este nuevo token para iniciar sesión." + +msgid "And that's it. You now have a bot account and you can login with that token." +msgstr "Y eso es todo. Ahora tienes una cuenta de bot y puedes iniciar sesión con ese token." + +msgid "Inviting Your Bot" +msgstr "Invitar a tu bot" + +msgid "So you've made a Bot User but it's not actually in any server." +msgstr "Así que has creado un usuario de bot, pero en realidad no está en ningún servidor." + +msgid "If you want to invite your bot you must create an invite URL for it." +msgstr "Si quieres invitar a tu bot debes crear una URL de invitación para él." + +msgid "Click on your bot's page." +msgstr "Haz clic en la página de tu bot." + +msgid "Expand the \"OAuth2\" tab and click on \"URL Generator\"." +msgstr "Expande la pestaña \"OAuth2\" y haz clic en \"URL Generator\"." + +msgid "How the OAuth2 tab should look like." +msgstr "Cómo debería verse la pestaña OAuth2." + +msgid "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." +msgstr "Marca las casillas \"bot\" y \"applications.commands\" bajo \"scopes\"." + +msgid "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." +msgstr "Las casillas \"bot\" y \"applications.commands\" marcadas." + +msgid "Tick the permissions required for your bot to function under \"Bot Permissions\"." +msgstr "Selecciona los permisos necesarios para que tu bot funcione bajo \"Bot Permissions\"." + +msgid "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." +msgstr "Por favor, ten en cuenta las consecuencias de requerir que tu bot tenga el permiso de \"Administrador\"." + +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 "Los propietarios de bots deben tener A2F habilitados para ciertas acciones y permisos cuando se agregan en servidores que tienen habilitado A2F. Consulta la `página de soporte de A2F `_ para más información." + +msgid "The permission checkboxes with some permissions checked." +msgstr "Las casillas de permisos con algunos permisos marcados." + +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 "Ahora la URL resultante puede ser usada para agregar tu bot a un servidor. Copia y pega la URL en tu navegador, elige un servidor al que invitar al bot, y haz clic en \"Autorizar\"." + +msgid "The person adding the bot needs \"Manage Server\" permissions to do so." +msgstr "La persona que añade el bot necesita permisos de \"Administrar Servidor\" para hacerlo." + +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 "Si quieres generar esta URL dinámicamente en tiempo de ejecución dentro de tu bot y usando la interfaz :class:`discord.Permissions`, puedes usar :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..6a70a1f1a6 --- /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 "Referencia de la API" + +msgid "The reference manual that follows details the API of Pycord's bridge command extension module." +msgstr "El manual de referencia que sigue los detalles de la API del módulo de extensiones puente de Pycord." + +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 "Usar los comandos prefijados (que usa la extensión ``ext.commands``) de los comandos puente en gremios requiere que :attr:`Intents.message_context` esté habilitado." + +msgid "Bots" +msgstr "Bots" + +msgid "Bot" +msgstr "Bot" + +msgid "Represents a discord bot, with support for cross-compatibility between command types." +msgstr "Representa un bot de discord, con soporte de compatibilidad cruzada entre los tipos de comandos." + +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 "Parámetros" + +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 "Retorna" + +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 "Tipo del valor retornado" + +msgid "Callable[..., :class:`BridgeCommand`]" +msgstr "Callable[..., :class:`BridgeCommand`]" + +msgid "A decorator that is used to wrap a function as a bridge command group." +msgstr "Un decorador que se usa para envolver una función en un grupo de comandos." + +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 "Referencia del evento" + +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 "El contexto de invocación." + +msgid "The error that was raised." +msgstr "El error producido." + +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 "Comandos" + +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 "Padre del BridgeCommand." + +msgid "Keyword arguments that are directly passed to the respective command constructors. (:class:`.SlashCommand` and :class:`.ext.commands.Command`)" +msgstr "Argumentos de palabras clave que se proporcionan directamente a los respectivos constructores de los comandos. (:class:`.SlashCommand` y :class:`.ext.commands.Command`)" + +msgid "The slash command version of this bridge command." +msgstr "La versión del comando de barra de este comando puente." + +msgid "type" +msgstr "type" + +msgid ":class:`.BridgeSlashCommand`" +msgstr ":class:`.BridgeSlashCommand`" + +msgid "The prefix-based version of this bridge command." +msgstr "La versión del comando prefijado de este comando puente." + +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 "Errores" + +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 "Genera" + +msgid ":class:`.BridgeCommand` -- A bridge command of this bridge group." +msgstr ":class:`.BridgeCommand` -- Un comando puente de este grupo puente." + +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 "Un decorador para registrar la función como un subcomando." + +msgid "Decorators" +msgstr "Decoradores" + +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 "Ejemplo" + +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 "Subclases de los comandos" + +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 para :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 "Subclases de BridgeContext" + +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..118cd1d7c9 --- /dev/null +++ b/docs/locales/es/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4105 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Errores" + +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 "Ejemplo" + +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 "Genera" + +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 "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 "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 "An iterator that recursively walks through all commands and subcommands." +msgstr "An iterator that recursively walks through all commands and subcommands." + +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 "El contexto de invocación." + +msgid "The error that was raised." +msgstr "El error producido." + +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 "Comandos" + +msgid "Decorators" +msgstr "Decoradores" + +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 "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 "Esta comprobación lanza una de las dos excepciones especiales, :exc:`.MissingRole` si al usuario le falta un rol, o :exc:`.NoPrivateMessage` si se ha usado en un mensaje privado. Ambos heredan de :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 "Esta comprobación lanza una de las dos excepciones especiales, :exc:`.MissingAnyRole` si al usuario le faltan todos los roles, o :exc:`.NoPrivateMessage` si se ha usado en un mensaje privado. Ambos heredan de :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 "Esta comprobación lanza una de las dos excepciones especiales, :exc:`.BotMissingRole` si al bot le falta un rol, o :exc:`.NoPrivateMessage` si se ha usado en un mensaje privado. Ambos heredan de :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 "Esta comprobación lanza una de las dos excepciones especiales, :exc:`.BotMissingAnyRole` si al bot le faltan todos los roles, o :exc:`.NoPrivateMessage` si se ha usado en un mensaje privado. Ambos heredan de :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 "Si quieres omitir las excepciones derivadas de :exc:`.UserInputError`, es recomendado usar el :meth:`~.Context.invoke` regular, ya que funcionará más naturalmente. Después de todo, esto acabará usando los argumentos antiguos que el usuario ha usado y simplemente fallará de nuevo." + +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 "Excepciones" + +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 "Jerarquía de excepciones" + +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..0e9060f881 --- /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 "Comandos" + +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..9876b5fada --- /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 "Errores" + +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..947753cde0 --- /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 "Errores" + +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 "Esta función es útil si estás interactuando con una biblioteca de terceros que lanza sus propias extensiones." + +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 "Si todas las excepciones se eliminaron correctamente." + +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..6fdebb4be3 --- /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 "Preguntas frecuentes" + +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 "Esta es una lista de preguntas frecuentes sobre el uso de ``Pycord`` y sus módulos de extensión. Siéntete libre de sugerir una nueva pregunta o envía una a través de una pull request." + +msgid "Coroutines" +msgstr "Corutinas" + +msgid "Questions regarding coroutines and asyncio belong here." +msgstr "Las preguntas sobre corutinas y asyncio pertenecen aquí." + +msgid "What is a coroutine?" +msgstr "¿Qué es una corutina?" + +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 "Una |coroutine_link|_ es una función que debe ser llamada con ``await`` o ``yield from``. Cuando Python se encuentra con un ``await``, se detiene la ejecución de la función en ese punto y se trabaja en otras cosas hasta que regresa a ese punto y termina su trabajo. Esto le permite a tu programa hacer múltiples cosas al mismo tiempo sin usar hilos o multiprocesamiento complicado." + +msgid "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" +msgstr "**Si te olvidas de utilizar await en una corrutina, entonces ésta no funcionará. Nunca olvides utilizar await en una corutina.**" + +msgid "Where can I use ``await``\\?" +msgstr "¿Dónde puedo usar ``await``\\?" + +msgid "You can only use ``await`` inside ``async def`` functions and nowhere else." +msgstr "Solo puedes utilizar ``await`` dentro de funciones ``async def`` y en ningún otro lugar." + +msgid "What does \"blocking\" mean?" +msgstr "¿Qué significa \"bloquear\"?" + +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 "En la programación asíncrona una llamada de bloqueo es esencialmente todas las partes de la función que no son ``await``. Sin embargo, no desesperes, porque no todas las formas de bloqueo son malas! Usar llamadas de bloqueo es inevitable, pero debes trabajar en asegurarte de no bloquear excesivamente las funciones. Recuerda, si bloqueas durante demasiado tiempo, tu bot se congelará ya que no ha detenido la ejecución de la función en ese momento para hacer otras cosas." + +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 "Si activas el registro, esta biblioteca intentará advertirte de que un bloqueo está ocurriendo con el mensaje: ``Heartbeat blocked for more than N seconds.`` Puedes ver :ref:`logging_setup` para detalles sobre como activar el registro." + +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 "Una fuente común de bloqueo durante demasiado tiempo es algo como :func:`time.sleep`. No hagas eso. Utiliza :func:`asyncio.sleep` en su lugar. Similar a este ejemplo: ::" + +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 "Otra fuente común de bloqueo durante demasiado tiempo es realizar peticiones HTTP con el famoso módulo :doc:`requests `. Mientras que :doc:`requests ` es un asombroso módulo para la programación no asincrónica, no es una buena opción para :mod:`asyncio` porque ciertas peticiones pueden bloquear el loop de eventos por demasiado tiempo. En su lugar, usa el módulo :doc:`aiohttp ` el cual viene instalado de lado con esta biblioteca." + +msgid "Consider the following example: ::" +msgstr "Consideremos el siguiente ejemplo: ::" + +msgid "General" +msgstr "General" + +msgid "General questions regarding library usage belong here." +msgstr "Las preguntas generales sobre la biblioteca están aquí." + +msgid "Where can I find usage examples?" +msgstr "¿Dónde puedo encontrar ejemplos de uso?" + +msgid "Example code can be found in the `examples folder `_ in the repository." +msgstr "Puedes encontrar ejemplos de código en la `carpeta de ejemplos `_ en el repositorio." + +msgid "How do I set the \"Playing\" status?" +msgstr "¿Cómo establezco el estado \"Jugando\"?" + +msgid "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." +msgstr "El argumento de palabra clave ``activity`` puede ser pasado en el constructor :class:`Client` o :meth:`Client.change_presence`, dado un objeto :class:`Activity`." + +msgid "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." +msgstr "El constructor puede ser usado para actividades estáticas, mientras que :meth:`Client.change_presence` puede ser usado para actualizar la actividad en tiempo de ejecución." + +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 "No es para nada recomendable usar :meth:`Cliente.change_presence` o llamadas de API en :func:`on_ready` ya que este evento puede ser llamado muchas veces en tiempo de ejecución, no solo una vez." + +msgid "There is a high chance of disconnecting if presences are changed right after connecting." +msgstr "Existe una gran probabilidad de desconexión si las presencias son cambiadas justo después de conectarse." + +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 "El tipo de estado (jugando, escuchando, streaming, viendo) puede ser establecido usando el enum :class:`ActivityType`. Por motivos de optimización de memoria, algunas actividades son ofrecidas en versiones reducidas:" + +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 "Al juntar estas dos piezas de información, obtenemos lo siguiente: ::" + +msgid "How do I send a message to a specific channel?" +msgstr "¿Cómo puedo enviar un mensaje a un canal en específico?" + +msgid "You must fetch the channel directly and then call the appropriate method. Example: ::" +msgstr "Debemos obtener el canal directamente y luego llamar al método apropiado. Ejemplo: ::" + +msgid "How do I send a DM?" +msgstr "¿Cómo envío un mensaje directo?" + +msgid "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" +msgstr "Obtén una instancia de :class:`User` o :class:`Member` y llama al método :meth:`abc.Messageable.send`. Por ejemplo: ::" + +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 "Si estás respondiendo a un evento, como :func:`on_message`, ya posees el objeto :class:`User` a través de :attr:`Message.author`: ::" + +msgid "How do I get the ID of a sent message?" +msgstr "¿Cómo obtengo el ID de un mensaje enviado?" + +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` retorna el :class:`Message` que fue enviado. Puedes acceder al ID del mensaje a través de :attr:`Message.id`: ::" + +msgid "How do I upload an image?" +msgstr "¿Cómo puedo adjuntar una imagen?" + +msgid "To upload something to Discord you have to use the :class:`File` object." +msgstr "Para adjuntar un archivo a Discord, tienes que utilizar una instancia de :class:`File`." + +msgid "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." +msgstr "La clase :class:`File` acepta dos parámetros, un objeto tipo archivo (o la ruta de este) y el nombre del archivo a pasar a Discord al momento de subirlo." + +msgid "If you want to upload an image it's as simple as: ::" +msgstr "Si quieres subir una imagen, es tan simple como: ::" + +msgid "If you have a file-like object you can do as follows: ::" +msgstr "Si tienes un objeto tipo archivo, puedes hacer lo siguiente: ::" + +msgid "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" +msgstr "Para subir varios archivos, puedes utilizar el argumento de palabra clave ``files`` en lugar de ``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 "Si quiere subir algo desde una URL, tendrás que realizar una petición HTTP utilizando :doc:`aiohttp ` y luego pasar una instancia de :class:`io.BytesIO` a la clase :class:`File`. Tal que así:" + +msgid "How can I add a reaction to a message?" +msgstr "¿Cómo puedo añadir una reacción a un mensaje?" + +msgid "You use the :meth:`Message.add_reaction` method." +msgstr "Utiliza el método :meth:`Message.add_reaction`." + +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 "Si quieres usar emojis unicode, debes pasar un unicode válido en una cadena. En tu código, puedes escribir esto de varias maneras diferentes:" + +msgid "``'👍'``" +msgstr "``'👍'``" + +msgid "``'\\U0001F44D'``" +msgstr "``'\\U0001F44D'``" + +msgid "``'\\N{THUMBS UP SIGN}'``" +msgstr "``'\\N{THUMBS UP SIGN}'``" + +msgid "Quick example: ::" +msgstr "Ejemplo rápido: ::" + +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 "En caso de que quieras usar emojis que vienen de un mensaje, ya obtienes sus puntos de código en el contenido sin necesidad de hacer nada especial. **No puedes** enviar abreviaturas de estilo ``':thumbsup:'```." + +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 "Para emojis personalizados, debes pasar una instancia de :class:`Emoji`. También puedes pasar un string del tipo ``'<:nombre:id>'``, pero si puedes usar dicho emoji, deberías poder usar el método :meth:`Client.get_emoji` para obtener un emoji a través de su ID. Como alternativa, puedes utilizar :func:`utils.find`/ :func:`utils.get` sobre las colecciones de :attr:`Client.emojis` o :attr:`Guild.emojis`." + +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 "El nombre y ID de un emoji personalizado puede ser encontrado en Discord añadiendo a ``:custom_emoji:`` una barra invertida. Por ejemplo, al enviar el mensaje ``\\:python3:`` en Discord, el resultado será ``<:python3:232720527448342530>``." + +msgid "How do I pass a coroutine to the player's \"after\" function?" +msgstr "¿Cómo puedo pasar una corrutina a la función \"after\" del reproductor?" + +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 "El reproductor de música de la biblioteca se lanza en un hilo separado, por consecuencia, no se ejecuta dentro de una corrutina. Esto no significa que no es posible llamar una corrutina en el parámetro ``after``. Para hacerlo debes pasar un callable que contenga un par de aspectos." + +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 "De lo primero que debes ser consciente es que llamar a una corrutina no es una operación segura en hilos. Puesto que estamos en otro hilo, debemos tomar precaución al llamar operaciones seguras en hilos así las cosas no fallan. Para nuestra suerte, :mod:`asyncio` viene con la función :func:`asyncio.run_coroutine_threadsafe` que nos permite llamar a una corrutina desde otro hilo." + +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 "Sin embargo, esta función devuelve un :class:`~concurrent.futures.Future` y para llamarlo tenemos que obtener su resultado. Poniendo todo esto junto podemos hacer lo siguiente: ::" + +msgid "How do I run something in the background?" +msgstr "¿Cómo puedo ejecutar algo en segundo plano?" + +msgid "`Check the background_task.py example. `_" +msgstr "`Comprueba el ejemplo background_task.py. `_" + +msgid "How do I get a specific model?" +msgstr "¿Cómo obtengo un modelo en específico?" + +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 "Hay varias maneras de hacer esto. Si tienes un ID de un modelo en específico entonces puedes usar una de las siguientes funciones:" + +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 "Lo siguiente usa una solicitud HTTP:" + +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 "Si las funciones anteriores no te ayudan, entonces usa :func:`utils.find` o :func:`utils.get` para encontrar modelos específicos." + +msgid "How do I make a web request?" +msgstr "¿Cómo hago una petición web?" + +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 "Para hacer una solicitud, deberás usar una librería sin bloqueo. Esta biblioteca ya usa y requiere una librería de terceros para hacer peticiones, :doc:`aiohttp `." + +msgid "See `aiohttp's full documentation `_ for more information." +msgstr "Véase la `documentación completa de aiohttp `_ para más información." + +msgid "How do I use a local image file for an embed image?" +msgstr "¿Cómo uso una imagen local para una imagen en una embed?" + +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 "Los casos especiales de Discord cargan una imagen adjunta y la usan dentro de una embed para que no se muestre por separado, sino en la thumbnail (miniatura) de la embed, imagen, el pie o el icono de autor." + +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 "Para hacerlo, adjunta una imagen normalmente con :meth:`abc.Messageable.send`, y establece la URL de la imagen a ``attachment://image.png``, donde ``image.png`` es el nombre de la imagen que vas a enviar." + +msgid "Is there an event for audit log entries being created?" +msgstr "¿Hay un evento para la creación de registros de auditoría?" + +msgid "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." +msgstr "A partir de la versión 2.5, puedes recibir entradas del registro de auditoría con el evento :func:`on_audit_log_entry`." + +msgid "Commands Extension" +msgstr "Extensiones de comandos" + +msgid "Questions regarding ``discord.ext.commands`` belong here." +msgstr "Las preguntas con respecto a ``discord.ext.commands`` pertenecen aquí." + +msgid "Why does ``on_message`` make my commands stop working?" +msgstr "¿Por qué ``on_message`` hace que mis comandos dejen de funcionar?" + +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 "Sobrescribir el evento predeterminado ``on_message`` prohíbe a cualquier comando extra de ejecutarse. Para arreglar esto, añade ``bot.process_commands(message)`` al final de tu ``on_message``. Por ejemplo: ::" + +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 "Como alternativa, puedes colocar la lógica de tu ``on_message`` en un **listener**. Con esta configuración, NO deberías llamar manualmente a ``bot.process_commands()``. Esto también te permite realizar múltiples cosas asincrónicamente en respuesta a un mensaje. Ejemplo::" + +msgid "Why do my arguments require quotes?" +msgstr "¿Por qué mis argumentos requieren comillas?" + +msgid "In a simple command defined as: ::" +msgstr "En un simple comando definido como: ::" + +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 "Llamándolo a través de ``?echo a b c`` solo obtendrá el primer argumento e ignorará el resto. Para arreglar esto deberías llamar al comando a través de ``?echo \"a b c\"`` o cambiar la definición de tu comando para obtener un comportamiento \"consumir al resto\". Ejemplo: ::" + +msgid "This will allow you to use ``?echo a b c`` without needing the quotes." +msgstr "Esto te permitirá usar ``?echo a b c`` sin la necesidad de comillas." + +msgid "How do I get the original ``message``\\?" +msgstr "¿Cómo obtengo el ``mensaje`` original\\?" + +msgid "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." +msgstr "El :class:`~ext.commands.Context` contiene el atributo :attr:`~.Context.message` para obtener el mensaje original." + +msgid "Example: ::" +msgstr "Ejemplo: ::" + +msgid "How do I make a subcommand?" +msgstr "¿Cómo hago un subcomando?" + +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 "Usa el decorador :func:`~ext.commands.group`. Esto transformará la retrollamada en una :class:`~ext.commands.Group` que te permitirá añadir comandos al grupo operando como un \"subcomando\". Estos grupos también pueden ser anidados arbitrariamente." + +msgid "This could then be used as ``?git push origin master``." +msgstr "Esto podría ser usado como ``?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..862d065966 --- /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 "Extensiones" + +msgid "Meta" +msgstr "Meta" + +msgid "Welcome to Pycord" +msgstr "Bienvenido a Pycord" + +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "Pycord es un empaquetador de la API de Discord moderno, fácil de usar y asíncrono." + +msgid "**Features:**" +msgstr "**Características:**" + +msgid "Modern Pythonic API using ``async``\\/``await`` syntax" +msgstr "API moderna y pitónica usando la sintaxis ``async``\\/``await``" + +msgid "Sane rate limit handling that prevents 429s" +msgstr "Manejo sano de los límites que previene 429s" + +msgid "Command extension to aid with bot creation" +msgstr "Extensión de comandos para ayudar a la creación de bots" + +msgid "Easy to use with an object oriented design" +msgstr "Fácil de usar con un diseño orientado a objetos" + +msgid "Optimised for both speed and memory" +msgstr "Optimizado para velocidad y memoria" + +msgid "Getting started" +msgstr "Comenzando" + +msgid "Is this your first time using the library? This is the place to get started!" +msgstr "¿Es tu primera vez utilizando la librería? ¡Este es el lugar para empezar!" + +msgid "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" +msgstr "**Primeros pasos:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guía `" + +msgid "**Working with Discord:** :doc:`discord` | :doc:`intents`" +msgstr "**Trabajando con Discord:** :doc:`discord` | :doc:`intents`" + +msgid "**Examples:** Many examples are available in the :resource:`repository `." +msgstr "**Ejemplos:** Muchos ejemplos se encuentran en nuestro :resource:`repositorio `." + +msgid "Getting help" +msgstr "Obtener ayuda" + +msgid "If you're having trouble with something, these resources might help." +msgstr "Si presentas problemas con algo, estos recursos podrían ayudarte." + +msgid "Try the :doc:`faq` first, it's got answers to all common questions." +msgstr "Prueba a revisar las :doc:`faq` primero, contiene respuestas a preguntas comunes." + +msgid "Ask us and hang out with us in our :resource:`Discord ` server." +msgstr "Pregúntanos y pasa el rato con nosotros en nuestro servidor de :resource:`Discord `." + +msgid "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." +msgstr "Si estás buscando algo en específico, prueba el :ref:`índice ` o el :ref:`buscador `." + +msgid "Report bugs in the :resource:`issue tracker `." +msgstr "Reporta bugs en nuestro :resource:`issue tracker `." + +msgid "Manuals" +msgstr "Manuales" + +msgid "These pages go into great detail about everything the API can do." +msgstr "Estas páginas entran en gran detalle sobre todo lo que la API puede hacer." + +msgid "Core API" +msgstr "Núcleo de la API" + +msgid "These extensions help you during development when it comes to common tasks." +msgstr "Estas extensiones te ayudan durante el desarrollo cuando se trata de tareas comunes." + +msgid ":doc:`ext/commands/index` - Bot commands framework" +msgstr ":doc:`ext/commands/index` - Framework para comandos del bot" + +msgid ":doc:`ext/tasks/index` - asyncio.Task helpers" +msgstr ":doc:`ext/tasks/index` - Ayudantes de asyncio.Task" + +msgid ":doc:`ext/pages/index` - A pagination extension module" +msgstr ":doc:`ext/pages/index` - Un módulo extensión para paginación" + +msgid ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" +msgstr ":doc:`ext/bridge/index` - Módulo que enlaza los comandos de barra y comandos de chat" + +msgid "If you're looking for something related to the project itself, it's here." +msgstr "Si estás buscando algo relacionado con el proyecto en sí, está aquí." + +msgid ":doc:`changelog` - The changelog for the library." +msgstr ":doc:`changelog` - El registro de cambios para la librería." + +msgid ":doc:`version_guarantees` - The version guarantees for the library." +msgstr ":doc:`version_guarantees` - Las garantías de versionado de la librería." + +msgid ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." +msgstr ":doc:`migrating_to_v1` - Cómo migrar de v0.x a v1.x." + +msgid ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." +msgstr ":doc:`migrating_to_v2` - Cómo migrar de v1.x a 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..7a3215f27a --- /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 "Instalación de Pycord" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "Esta es la documentación para Pycord, una biblioteca para Python para ayudar en la creación de aplicaciones que usan la API de Discord." + +msgid "Prerequisites" +msgstr "Requisitos previos" + +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 funciona con Python 3.8 o superior. No se proporciona soporte para versiones anteriores de Python. Python 2.7 o inferior no es compatible. Python 3.7 o inferior, no es compatible." + +msgid "Installing" +msgstr "Instalación" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "Para nuevas características en las próximas versiones, necesitarás instalar la versión de pre lanzamiento hasta que se publique una versión estable. ::" + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "Para los usuarios de Windows, este comando debe usarse para instalar la versión de pre lanzamiento: ::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "Puedes obtener la biblioteca directamente desde PyPI: ::" + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "Si estás usando Windows, entonces deberías usar lo siguiente en su lugar: ::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "Para instalar paquetes adicionales para una mayor velocidad, deberías usar ``py-cord[speed]`` en lugar de ``py-cord``, por ejemplo." + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "Para obtener soporte de voz, deberías usar ``py-cord[voice]`` en lugar de ``py-cord``, por ejemplo ::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "En entornos Linux, la instalación de voz requiere las siguientes dependencias:" + +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 "Para un sistema basado en Debian, el siguiente comando instalará estas dependencias:" + +msgid "Remember to check your permissions!" +msgstr "¡Recuerda comprobar tus permisos!" + +msgid "Virtual Environments" +msgstr "Entornos virtuales" + +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 "A veces se quiere evitar que las bibliotecas contaminen las instalaciones en el sistema o usar una versión distinta de aquellas instaladas en el sistema. Es posible que tampoco tengas permisos para instalar bibliotecas en tu sistema. Para este propósito, la biblioteca estándar a partir de Python 3.3 viene con un concepto llamado \"entornos virtuales\" para ayudar a mantener estas versiones separadas." + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "Puedes encontrar un tutorial más detallado en :doc:`py:tutorial/venv`." + +msgid "However, for the quick and dirty:" +msgstr "Sin embargo, para lo rápido y sucio:" + +msgid "Go to your project's working directory:" +msgstr "Ve al directorio de trabajo de tu proyecto:" + +msgid "Activate the virtual environment:" +msgstr "Activa el entorno virtual:" + +msgid "On Windows you activate it with:" +msgstr "En Windows lo activas con:" + +msgid "Use pip like usual:" +msgstr "Usa pip como de costumbre:" + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "Enhorabuena. Ahora tienes un entorno virtual configurado." + +msgid "Basic Concepts" +msgstr "Conceptos básicos" + +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 gira en torno al concepto de :ref:`eventos `. Un evento es algo a lo que escuchas y luego respondes. Por ejemplo, cuando ocurre un mensaje, recibirás un evento al que puedas responder." + +msgid "A quick example to showcase how events work:" +msgstr "Un ejemplo rápido para mostrar cómo funcionan los eventos:" + diff --git a/docs/locales/es/LC_MESSAGES/intents.po b/docs/locales/es/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..216fcfeab3 --- /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 "Un vistazo a las intenciones del gateway" + +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 "La versión 1.5 viene con la introducción de :class:`Intents`. Este es un cambio radical en la forma que se escriben los bots. Una intención básicamente permite a tu bot a suscribirse a ciertos eventos del bucket. Los eventos que corresponden a cada intención están documentados en cada atributo individual de :class:`Intents`." + +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 "Estas intenciones son pasadas al constructor de :class:`Client`, o sus subclases (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`), con el argumento ``intents``." + +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 "Si no pasas ninguna intención, la biblioteca predeterminará a habilitar todas las intenciones, a excepción de las intenciones privilegiadas, actualmente siendo :attr:`Intents.members`, :attr:`Intents.presences`, y :attr:`Intents.message_content`." + +msgid "What intents are needed?" +msgstr "¿Qué intenciones se necesitan?" + +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 "Las intenciones que son necesarias para tu bot solo pueden ser dictadas por ti mismo. Cada atributo en la clase :class:`Intents` documenta a que :ref:`eventos ` corresponden y que tipo de caché habilitan." + +msgid "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" +msgstr "Por ejemplo, si quieres un bot que funcione sin eventos que son molestos como las presencias o el tipo, entonces podríamos hacer lo siguiente:" + +msgid "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." +msgstr "Ten en cuenta que esto no habilita :attr:`Intents.members` o :attr:`Intents.message_content` ya que son intenciones privilegiadas." + +msgid "Another example showing a bot that only deals with messages and guild information:" +msgstr "Otro ejemplo donde se muestra un bot que solo se ocupa de los mensajes e información de servidores:" + +msgid "Privileged Intents" +msgstr "Intenciones privilegiadas" + +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 "Con el cambio de la API que requiere que los propietarios de los bots especifiquen intenciones, algunas intenciones fueron restringidas aún más y requieren más pasos manuales. Estas intenciones son llamadas **intenciones privilegiadas**." + +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 "Una intención privilegiada es aquella que requiere que vayas al developer portal y la habilites manualmente. Para habilitar una intención privilegiada, haz lo siguiente:" + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Asegúrate de haber iniciado sesión en el `sitio web de Discord `_." + +msgid "Navigate to the `application page `_." +msgstr "Navega a la página de `aplicaciones `_." + +msgid "Click on the bot you want to enable privileged intents for." +msgstr "Haz clic en el bot para que el cual quieres activar las intenciones privilegiadas." + +msgid "Navigate to the bot tab on the left side of the screen." +msgstr "Navega a la pestaña de bot en el lado izquierda de la pantalla." + +msgid "The bot tab in the application page." +msgstr "La pestaña de bot en la página de la aplicación." + +msgid "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." +msgstr "Desplázate hacia abajo hasta la sección de \"Privileged Gateway Intents\" y activa los que desees." + +msgid "The privileged gateway intents selector." +msgstr "El selector de intenciones privilegiadas." + +msgid "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." +msgstr "Habilitar intenciones privilegiadas cuando tu bot está en más de 100 servidores, requiere pasar por la `verificación de bots `_." + +msgid "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." +msgstr "Incluso si activas las intenciones a través del portal de desarrolladores, todavía tienes que activar las intenciones a través de tu código." + +msgid "Do I need privileged intents?" +msgstr "¿Necesito intenciones privilegiadas?" + +msgid "This is a quick checklist to see if you need specific privileged intents." +msgstr "Esta es una lista de verificación rápida para ver si necesitas intenciones privilegiadas específicas." + +msgid "Presence Intent" +msgstr "Intención de presencia" + +msgid "Whether you use :attr:`Member.status` at all to track member statuses." +msgstr "Si usas :attr:`Member.status` en absoluto para seguir los estados de los miembros." + +msgid "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." +msgstr "Si usas :attr:`Member.activity` o :attr:`Member.activity.activities` para comprobar las actividades de miembros." + +msgid "Member Intent" +msgstr "Intención de miembros" + +msgid "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." +msgstr "Si deseas registrar las entradas o salidas de miembros, corresponde a los eventos :func:`on_member_join` y :func:`on_member_remove`." + +msgid "Whether you want to track member updates such as nickname or role changes." +msgstr "Si deseas realizar un seguimiento de las actualizaciones de los miembros, tales como nick o cambios de rol." + +msgid "Whether you want to track user updates such as usernames, avatars, discriminators, etc." +msgstr "Si desea rastrear actualizaciones de usuarios como nombres de usuario, avatares, discriminadores, etc." + +msgid "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." +msgstr "Si quieres solicitar la lista de miembros del servidor a través de :meth:`Guild.chunk` o :meth:`Guild.fetch_members`." + +msgid "Whether you want high accuracy member cache under :attr:`Guild.members`." +msgstr "Si quieres un caché de miembros de alta precisión bajo :attr:`Guild.members`." + +msgid "Message Content Intent" +msgstr "Intención de contenido del mensaje" + +msgid "Whether you have a message based command system using ext.commands" +msgstr "Si tienes un sistema de comandos basado en mensajes usando ext.commands" + +msgid "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." +msgstr "Si usas el evento :func:`on_message` para cualquier cosa usando contenido de mensajes, tales como moderación automática." + +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 "Si usas el contenido del mensaje en :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 "El bot todavía puede recibir contenidos de mensajes en sus MD, cuando se lo menciona en los mensajes en servidores, y para sus propios mensajes en servidores." + +msgid "Member Cache" +msgstr "Caché de miembros" + +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 "Junto con las intenciones, Discord ahora restringe aún más la capacidad de cachear a los miembros y espera que los autores del bot cacheen tan poco como sea necesario. Sin embargo, para mantener correctamente un caché se requiere la intención :attr:`Intents.members` para poder hacer un seguimiento de los miembros que dejaron el servidor y removerlos correctamente." + +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 "Para ayudar con el caché de miembros donde no necesitamos que los miembros sean cacheados, la biblioteca ahora tiene una bandera :class:`MemberCacheFlags` para controlar la caché de miembros. La página de documentación de la clase va más allá de las políticas específicas que son posibles." + +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 "Debe tenerse en cuenta que ciertas cosas no necesitan un caché de miembros, ya que Discord proporcionará información completa si es posible. Por ejemplo:" + +msgid ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." +msgstr ":func:`on_message` tendrá :attr:`Message.author` como un miembro incluso si el caché está deshabilitado." + +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` tendrá al parámetro ``member`` como un miembro incluso si el caché está deshabilitado." + +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` tendrá el parámetro ``user`` como miembro cuando esté en un servidor incluso si el caché está deshabilitado." + +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` tendrá :attr:`RawReactionActionEvent.member` como un miembro cuando esté en un servidor incluso si el caché está deshabilitado." + +msgid "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." +msgstr "Los eventos de añadir reacciones no contienen información adicional cuando nos encontramos en mensajes directos. Esta es una limitación de Discord." + +msgid "The reaction removal events do not have member information. This is a Discord limitation." +msgstr "Los eventos de eliminación de reacciones no contienen información sobre los miembros. Esta es una limitación de Discord." + +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 "Otros eventos que acepten un :class:`Member` requerirán el uso de la caché de miembros. Si la precisión absoluta sobre la caché de miembros es asumible, entonces es recomendable activar la intención :attr:`Intents.members`." + +msgid "Retrieving Members" +msgstr "Obteniendo miembros" + +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 "Si el caché está deshabilitado o desactivas el chunking de servidores al inicio, puede que necesitemos una forma de cargar miembros. La biblioteca ofrece algunas maneras de hacer esto:" + +msgid ":meth:`Guild.query_members`" +msgstr ":meth:`Guild.query_members`" + +msgid "Used to query members by a prefix matching nickname or username." +msgstr "Utilizado para consultar a los miembros por un prefijo que coincida con el nick o nombre de usuario." + +msgid "This can also be used to query members by their user ID." +msgstr "Esto también puede ser utilizado para consultar a los miembros por su ID de usuario." + +msgid "This uses the gateway and not the HTTP." +msgstr "Esto utiliza la gateway y no las peticiones HTTP." + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid "This can be used to fetch the entire member list through the gateway." +msgstr "Esto se puede utilizar para obtener toda la lista de miembros a través de la gateway." + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "Used to fetch a member by ID through the HTTP API." +msgstr "Utilizado para obtener un miembro por su ID a través de la API HTTP." + +msgid ":meth:`Guild.fetch_members`" +msgstr ":meth:`Guild.fetch_members`" + +msgid "used to fetch a large number of members through the HTTP API." +msgstr "usado para obtener un gran número de miembros a través de la API HTTP." + +msgid "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." +msgstr "Cabe señalar que la gateway tiene un estricto límite de tasa de 120 solicitudes por 60 segundos." + +msgid "Troubleshooting" +msgstr "Resolución de problemas" + +msgid "Some common issues relating to the mandatory intent change." +msgstr "Algunas cuestiones comunes relacionadas con el cambio de intenciones obligatorio." + +msgid "Where'd my members go?" +msgstr "¿A dónde irían mis miembros?" + +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 "Debido a un :ref:`cambio en la API `, Discord ahora está forzando a los desarrolladores que quieren cachear miembros a explícitamente optar por este. Este es un cambio mandificado de Discord y no hay forma de saltarlo. Para recuperar miembros, tienes que habilitar explícitamente las :ref:`intenciones privilegiadas de miembros ` y cambiar :attr:`Intents.members` a true." + +msgid "For example:" +msgstr "Por ejemplo:" + +msgid "Why does ``on_ready`` take so long to fire?" +msgstr "¿Por qué ``on_ready`` tarda tanto en disparar?" + +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 "Como parte del cambio en la API referido a las intenciones, Discord también cambió como los miembros son cargados al inicio. Originalmente, la biblioteca podía solicitar hasta 75 servidores a la vez, y solo solicitar los miembros de aquellos servidores cuyo :attr:`Guild.large` era ``True``. Con este nuevo cambio de las intenciones, Discord dicta que solo podemos solicitar 1 servidor por petición. Esto causa una lentitud de x75, que es aun más contraproducente por el hecho de que **todos** los servidores, no solo aquellos grandes, están siendo solicitados." + +msgid "There are a few solutions to fix this." +msgstr "Hay algunas soluciones para arreglar esto." + +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 "La primera solución es solicitar la intención de las presencias privilegiadas junto con la intención de los miembros privilegiados y permitir ambas cosas. Esto permite que la lista inicial de miembros contenga miembros en línea como la gateway antigua. Ten en cuenta que todavía estamos limitados a 1 servidor por solicitud, pero el número de servidores que solicitamos se reduce significativamente." + +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 "La segunda solución es deshabilitar el chunking de miembros estableciendo ``chunk_guilds_at_startup`` a ``False`` al construir un cliente. Luego, cuando sea necesario hacer chunking para un servidor, puedes usar las distintas técnicas para obtener :ref:`recuperar ` los miembros." + +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 "Para ilustrar la desaceleración causada por el cambio de API, toma un bot que está en 840 servidores y 95 de estos servidores son \"grandes\" (más de 250 miembros)." + +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 "Bajo el sistema original esto resultaría en 2 solicitudes para obtener la lista de miembros (75 servidores, 20 servidores) aproximadamente tardando 60 segundos. Con :attr:`Intents.members` pero no :attr:`Intents.presences` esto requiere 840 peticiones, con un límite de tasa de 120 solicitudes por 60 segundos. Significa que debido a la espera del límite nos da un total de unos 7 minutos de espera para que el límite obtenga todos los miembros. Con :attr:`Intents.members` y :attr:`Intents.presences` obtenemos principalmente el comportamiento antiguo, así que solo estamos obligados a solicitar los 95 servidores grandes, esto es un poco menor que nuestro límite de tasa, por lo que está cerca del tiempo original para obtener la lista de miembros." + +msgid "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." +msgstr "Lamentablemente, debido a este cambio que se requiere de Discord, no hay nada que la biblioteca pueda hacer para mitigar esto." + +msgid "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." +msgstr "Si realmente no te gusta la dirección que Discord lleva con su API, puedes contactarlos a través de `soporte `_." + 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..2cb93cde8f --- /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 "Cambio de 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.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 "Cambios en el modelo principal" + +msgid "Below are major model changes that have happened in v1.0" +msgstr "A continuación se muestran los cambios en el modelo principal que han ocurrido en la v1.0" + +msgid "Snowflakes are int" +msgstr "Los snowflakes son enteros" + +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 "Ejemplo rápido: ::" + +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 ahora es 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 "Antes" + +msgid "After" +msgstr "Después" + +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 "Los modelos tienen estado" + +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` (véase :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 "Cambios de propiedad" + +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 "Cambios en los diccionarios" + +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` (nuevo en v1.0)" + +msgid ":attr:`Client.emojis` (new in v1.0)" +msgstr ":attr:`Client.emojis` (nuevo en v1.0)" + +msgid ":attr:`Guild.channels`" +msgstr ":attr:`Guild.channels`" + +msgid ":attr:`Guild.text_channels` (new in v1.0)" +msgstr ":attr:`Guild.text_channels` (nuevo en v1.0)" + +msgid ":attr:`Guild.voice_channels` (new in v1.0)" +msgstr ":attr:`Guild.voice_channels` (nuevo en v1.0)" + +msgid ":attr:`Guild.emojis`" +msgstr ":attr:`Guild.emojis`" + +msgid ":attr:`Guild.members`" +msgstr ":attr:`Guild.members`" + +msgid "Voice State Changes" +msgstr "Cambio en los estados de voz" + +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 "Separar el tipo de usuario y miembro" + +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 "Separar el tipo de canal" + +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 "Para guardar memoria, los canales se han separado en 4 tipos diferentes:" + +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 "Otros cambios del modelo" + +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 "Usa :attr:`Client.emojis` en su lugar." + +msgid "``Client.messages``" +msgstr "``Client.messages``" + +msgid "Use read-only :attr:`Client.cached_messages` instead." +msgstr "Usa la propiedad de solo lectura :attr:`Client.cached_messages` en su lugar." + +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 "Usa :attr:`VoiceChannel.members` en su lugar." + +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` y :attr:`Message.application` para más información sobre la presencia enriquecida." + +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 "Enviar mensajes" + +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 "Cambios de eventos" + +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 "Los eventos ``on_channel_`` han recibido una separación de nivel de tipos (véase :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 "Cambios en las comprobaciones" + +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..a429625e5a --- /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 "Migración 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 deprecado 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 de aplicaciones y componentes. Estos cambios incluyen una nueva clase :class:`Bot`, :class:`ui.View`, y una nueva clase :class:`ApplicationContext`. Si estás interesado en crearlas, por favor, revisa nuestra :resource:`guía `." + +msgid "Python Version Change" +msgstr "Cambio de 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 "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 "Cambios en el modelo principal" + +msgid "Below are major changes that have happened in v2.0:" +msgstr "A continuación se muestran los mayores cambios que han ocurrido en la 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 "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`` 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``, ``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_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 en función de la 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, proporciona ``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 "Cambios de recursos" + +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 "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(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 "Cambios en los 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``, 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 "Cambios en las intenciones" + +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 "Se han introducido los hilos" + +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 "El argumento ``channel`` de :class:`ext.commands.NSFWChannelRequired`" + +msgid ":meth:`Client.get_channel`" +msgstr ":meth:`Client.get_channel`" + +msgid "Permission Changes" +msgstr "Cambios en los permisos" + +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 "Cambios de eventos" + +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` para las actualizaciones de :attr:`Member.status` y :attr:`Member.activities`." + +msgid "``on_private_channel_create/delete`` will no longer be dispatched due to Discord changes." +msgstr "``on_private_channel_create/delete`` ya no se enviará 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` 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 para respuestas" + +msgid ":attr:`Message.type` now returns :attr:`MessageType.reply` for replies, instead of :attr:`MessageType.default`." +msgstr ":attr:`Message.type` ahora retorna :attr:`MessageType.reply` para respuestas, en lugar de :attr:`MessageType.default`." + +msgid "Sticker Changes" +msgstr "Cambios en los stickers" + +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``, 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 "Cambios de tipos" + +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 "Otros cambios" + +msgid "The following were removed:" +msgstr "Se eliminó lo siguiente:" + +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 "Se renombró lo siguiente:" + +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 "Se han cambiado los siguientes tipos:" + +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..37758bc626 --- /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 "Esta versión es principalmente para mejoras y correcciones de errores. Esta es más que probable la última versión importante de la serie 1.x. El trabajo después de esto se usará en v2. Como resultado, **esta es la última versión que soporta Python 3.5**. Del mismo modo, **esta es la última versión que soporta los bots de usuario**." + +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 "Corregir que el canal devuelto desde :meth:`Client.fetch_channel` lance un error al enviar mensajes. (: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>` ahora permite establecer múltiples excepciones. (: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 "Propagar correctamente las excepciones en :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 "Hace que la salida de ``python -m discord --version`` sea un poco más útil." + +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..e7805cc77c --- /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 "Inicio rápido" + +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 "Esta página da una breve introducción a la biblioteca. Se asume que tienes la biblioteca instalada. Si no la tienes, revisa :ref:`installing`." + +msgid "A Minimal Bot" +msgstr "Un bot mínimo" + +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "Creemos un bot que responda a un mensaje en específico y guiarte en el proceso." + +msgid "It looks something like this:" +msgstr "Se ve algo así:" + +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "Debido a que este ejemplo usa el contenido del mensaje, necesitamos la intención privilegiada :attr:`Intents.message_content`." + +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 "Nombremos a este archivo ``example_bot.py``. Asegúrate de no nombrarlo ``discord.py``, ya que puede causar conflictos con la biblioteca." + +msgid "There's a lot going on here, so let's walk you through it step by step:" +msgstr "Muchas cosas están sucediendo aquí, vamos paso a paso:" + +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 "La primera línea importa la biblioteca, si esto genera un `ModuleNotFoundError` o `ImportError`, entonces ve a la sección de :ref:`installing` para instalar correctamente la biblioteca." + +msgid "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." +msgstr "A continuación, creamos una instancia de :class:`Client`. Este cliente es nuestra conexión a 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 "Luego usamos el decorador :meth:`Client.event` para registrar un evento. La biblioteca cuenta con muchos eventos. Puesto que la biblioteca es asíncrona, hacemos las cosas en un estilo de \"retrollamada\"." + +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 "Una retrollamada es esencialmente una función que es llamada cuando algo pasa. En nuestro caso, el evento :func:`on_ready` es llamado cuando nuestro bot ha terminado de iniciar sesión y configurarse, y el evento :func:`on_message` es llamado cuando nuestro bot recibe un mensaje." + +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 "Puesto que nuestro evento :func:`on_message` es llamado por *cada* mensaje recibido, tenemos que asegurarnos de ignorar nuestros mismos mensajes. Hacemos esto comprobando si el :attr:`Message.author` es el mismo que :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 "Después, comprobamos si :class:`Message.content` empieza con ``'$hello'``. Si lo hace, entonces enviamos un mensaje al canal donde fue usado con ``'Hello!'``. Esto es una forma básica de manejar comandos, que luego puede ser automatizado con el framework :doc:`./ext/commands/index`." + +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 "Finalmente, ejecutamos nuestro bot con nuestro token de inicio de sesión. Si necesitas ayuda para obtener tu token o para crear un bot, mira la sección :ref:`discord-intro`." + +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 "Ahora que hemos creado un bot, tenemos que *ejecutar* el bot. Por suerte, esto es simple, ya que este es solo un script de Python, podemos ejecutarlo directamente." + +msgid "On Windows:" +msgstr "En Windows:" + +msgid "On other systems:" +msgstr "En otros sistemas:" + +msgid "Now you can try playing around with your basic bot." +msgstr "Ahora puedes intentar jugar con tu bot básico." + +msgid "A Minimal Bot with Slash Commands" +msgstr "Un bot mínimo con comandos de barra" + +msgid "As a continuation, let's create a bot that registers a simple slash command!" +msgstr "Como una continuación, vamos a crear un bot que registre un simple comando de barra." + +msgid "Let's look at the differences compared to the previous example, step-by-step:" +msgstr "Veamos las diferencias en comparación con el ejemplo anterior, paso a paso:" + +msgid "The first line remains unchanged." +msgstr "La primera línea no ha cambiado." + +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 "A continuación, creamos una instancia de :class:`.Bot`. Esto es diferente de :class:`.Client`, ya que soporta la creación de comandos de barra y otras características, al tiempo que hereda todas las características de :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 "Luego usamos el decorador :meth:`.Bot.slash_command` para registrar un nuevo comando de barra. El atributo ``guild_ids`` contiene una lista de servidores donde este comando será activo. Si se omite, el comando estará disponible globalmente, y puede tardar hasta una hora en registrarse." + +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 "Después, activamos una respuesta al comando de barra en forma de texto. Por favor, ten en cuenta que todos los comandos de barra deben tener alguna forma de respuesta, de lo contrario fallarán." + +msgid "Finally, we, once again, run the bot with our login token." +msgstr "Por último, una vez más, ejecutamos el bot con nuestro token de inicio de sesión." + +msgid "Congratulations! Now you have created your first slash command!" +msgstr "¡Enhorabuena! ¡Ahora has creado tu primer comando de barra!" + 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..6d31e09158 --- /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 "Garantías de versión" + +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 `_ lo que significa que la mayor versión es actualizada cada vez que hay un cambio incompatible en la API. Sin embargo, debido a la falta de garantías en el lado de Discord cuando se refiere a ruptura de cambios junto con la naturaleza bastante dinámica de Python, puede ser difícil discernir que se puede considerar una ruptura de cambios o 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 "La primera cosa a tener en cuenta es que la ruptura de cambios solo se aplica a **funciones y clases públicamente documentadas**. Si no aparece en la documentación, no es parte de la API pública y puede cambiar en cualquier momento. Esto incluye atributos que empiezan por una barra baja o funciones que no estén documentadas." + +msgid "The examples below are non-exhaustive." +msgstr "Los siguientes ejemplos no son exhaustivos." + +msgid "Examples of Breaking Changes" +msgstr "Ejemplos de roturas de cambios" + +msgid "Changing the default parameter value to something else." +msgstr "Cambiar 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 "Añadir o quitar parámetros a un evento." + +msgid "Examples of Non-Breaking Changes" +msgstr "Ejemplos de cambios sin rupturas" + +msgid "Adding or removing private underscored attributes." +msgstr "Añadir o quitar atributos privados." + +msgid "Adding an element into the ``__slots__`` of a data class." +msgstr "Añadir un elemento en los ``__slots__`` de una clase de datos." + +msgid "Changing the behaviour of a function to fix a bug." +msgstr "Cambiar el comportamiento de una función para arreglar un bug." + +msgid "Changes in the documentation." +msgstr "Cambios en la documentación." + +msgid "Modifying the internal HTTP handling." +msgstr "Modificar el manejo del HTTP interno." + +msgid "Upgrading the dependencies to a new version, major or otherwise." +msgstr "Actualizar las dependencias a una nueva versión, mayor o de otro tipo." + 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..5c4616b31a --- /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 "Retours" + +msgid "The permission overwrites for this object." +msgstr "The permission overwrites for this object." + +msgid "Return type" +msgstr "Type de retour" + +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..0d93aa1807 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,877 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Type de retour" + +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 "Retours" + +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 "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 "Les arguments à utiliser." + +msgid "The keyword arguments to use." +msgstr "Les arguments de mot-clé à utiliser." + +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..78cb7d3554 --- /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 "Retours" + +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 "Type de retour" + +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..e1a5574a28 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/clients.po @@ -0,0 +1,1567 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Retours" + +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 "Type de retour" + +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 "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 "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 "Par défaut, cela imprime dans :data:`sys.stderr`, mais cela peut être remplacé par une autre implémentation." + +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 "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..dbc72d4e6a --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/cogs.po @@ -0,0 +1,187 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "La classe de base dont tous les cogs doivent hériter." + +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 "Retours" + +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 "Type de retour" + +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 "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..bb64f8bfe3 --- /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 "Type de retour" + +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 "Retours" + +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..0ec385be41 --- /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 "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/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..66ca503bfb --- /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 "Référence de l'API" + +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..f035829bac --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/api/models.po @@ -0,0 +1,7804 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Type de retour" + +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 "Retours" + +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 "Retrieves a :class:`Role` that the guild has." +msgstr "Retrieves a :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider using :attr:`get_role` instead." +msgstr "This method is an API call. For general usage, consider using :attr:`get_role` instead." + +msgid "The role in the guild with the specified ID." +msgstr "The role in the guild with the specified ID." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "Retrieving the role failed." +msgstr "Retrieving the role 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 "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..601c67f9ec --- /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 "Type de retour" + +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 "Retours" + +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..c9a1c14519 --- /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 "Type de retour" + +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 "Retours" + +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..3f6583f5a3 --- /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 "Type de retour" + +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 "Retours" + +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..81abdf4f7a --- /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 "Retours" + +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 "Type de retour" + +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..0126c68c10 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/changelog.po @@ -0,0 +1,1111 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️" + +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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" + +msgid "Added" +msgstr "Added" + +msgid "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" +msgstr "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +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..5b98ce475e --- /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 "Référence de l'API" + +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 "Retours" + +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 "Type de retour" + +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..c2ee2a3545 --- /dev/null +++ b/docs/locales/fr/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4105 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Référence de l'API" + +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 "Retours" + +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 "Type de retour" + +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 "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 "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 "Par défaut, cela imprime dans :data:`sys.stderr`, mais cela peut être remplacé par une autre implémentation." + +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 "An iterator that recursively walks through all commands and subcommands." +msgstr "An iterator that recursively walks through all commands and subcommands." + +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 "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 "Les arguments à utiliser." + +msgid "The keyword arguments to use." +msgstr "Les arguments de mot-clé à utiliser." + +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..89529d2930 --- /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 "Référence de l'API" + +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 "Type de retour" + +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 "Retours" + +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..0d9e4f2505 --- /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 "L'une des opérations les plus courantes lors de la création d'un bot est d'avoir une boucle s'exécutant en arrière-plan à un intervalle spécifié. Ce modèle est très courant, mais présente de nombreux éléments auxquels il faut faire attention :" + +msgid "How do I handle :exc:`asyncio.CancelledError`?" +msgstr "Comment gérer :exc:`asyncio.CancelledError` ?" + +msgid "What do I do if the internet goes out?" +msgstr "Que faire si la connexion Internet est interrompue ?" + +msgid "What is the maximum number of seconds I can sleep anyway?" +msgstr "Quelle est la durée maximale en secondes pendant laquelle je peux dormir de toute façon ?" + +msgid "The goal of this Pycord extension is to abstract all these worries away from you." +msgstr "L'objectif de cette extension Pycord est d'abstraire toutes ces préoccupations pour vous." + +msgid "Recipes" +msgstr "Recettes" + +msgid "A simple background task in a :class:`~discord.ext.commands.Cog`:" +msgstr "Une tâche en arrière-plan simple dans un :class:`~discord.ext.commands.Cog` :" + +msgid "Adding an exception to handle during reconnect:" +msgstr "Ajouter une exception à gérer lors de la reconnexion :" + +msgid "Looping a certain amount of times before exiting:" +msgstr "Boucler un certain nombre de fois avant de quitter :" + +msgid "Waiting until the bot is ready before the loop starts:" +msgstr "Attendre que le bot soit prêt avant le début de la boucle :" + +msgid "Doing something during cancellation:" +msgstr "Faire quelque chose pendant l'annulation :" + +msgid "API Reference" +msgstr "Référence de l'API" + +msgid "A background task helper that abstracts the loop and reconnection logic for you." +msgstr "Un utilitaire de tâche en arrière-plan qui abstrait pour vous la logique de boucle et de reconnexion." + +msgid "The main interface to create this is through :func:`loop`." +msgstr "L'interface principale pour créer ceci est à travers :func:`loop`." + +msgid "Parameters" +msgstr "Paramètres" + +msgid "A decorator that register a coroutine to be called after the loop finished running." +msgstr "Un décorateur qui enregistre une coroutine à appeler après l'exécution de la boucle." + +msgid "The coroutine must take no arguments (except ``self`` in a class context)." +msgstr "La coroutine ne doit prendre aucun argument (sauf ``self`` dans un contexte de classe)." + +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 "Cette coroutine est appelée même en cas d'annulation. Si vous souhaitez distinguer si quelque chose a été annulé ou non, vérifiez si :meth:`is_being_cancelled` est ``True`` ou non." + +msgid "The coroutine to register after the loop finishes." +msgstr "La coroutine à enregistrer après la fin de la boucle." + +msgid "Raises" +msgstr "Lève" + +msgid "The function was not a coroutine." +msgstr "La fonction n'était pas une coroutine." + +msgid "Return type" +msgstr "Type de retour" + +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\\`\\\\ \\\\\\(\\`\\`\\`\\`\\`\\, 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 "Un décorateur qui enregistre une coroutine à appeler avant le début de l'exécution de la boucle." + +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 "Ceci est utile si vous voulez attendre un état du bot avant le début de la boucle, comme :meth:`discord.Client.wait_until_ready`." + +msgid "The coroutine to register before the loop runs." +msgstr "La coroutine à enregistrer avant l'exécution de la boucle." + +msgid "A decorator that registers a coroutine to be called if the task encounters an unhandled exception." +msgstr "Un décorateur qui enregistre une coroutine à appeler si la tâche rencontre une exception non gérée." + +msgid "The coroutine must take only one argument the exception raised (except ``self`` in a class context)." +msgstr "La coroutine ne doit prendre qu'un seul argument l'exception levée (sauf ``self`` dans un contexte de classe)." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "Par défaut, cela imprime dans :data:`sys.stderr`, mais cela peut être remplacé par une autre implémentation." + +msgid "The coroutine to register in the event of an unhandled exception." +msgstr "La coroutine à inscrire en cas d'exception non gérée." + +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\\`\\\\ \\\\\\(\\`\\`\\`\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\`\\~typing.Callable\\`\\\\\\\\\\\\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\: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 "Valeur en lecture seule pour le nombre de secondes entre chaque itération. ``None`` si une valeur ``time`` explicite a été passée à la place." + +msgid "Read-only value for the number of minutes between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Valeur en lecture seule pour le nombre de minutes entre chaque itération. ``None`` si une valeur ``time`` explicite a été passée à la place." + +msgid "Read-only value for the number of hours between each iteration. ``None`` if an explicit ``time`` value was passed instead." +msgstr "Valeur en lecture seule pour le nombre d'heures entre chaque itération. ``None`` si une valeur ``time`` explicite a été passée à la place." + +msgid "Read-only list for the exact times this loop runs at. ``None`` if relative times were passed instead." +msgstr "Liste en lecture seule du temps exacte auxquelles cette boucle s'exécute. ``None`` si du temps relatifs a été passées a la place." + +msgid "The current iteration of the loop." +msgstr "L'itération actuelle de la boucle." + +msgid "When the next iteration of the loop will occur." +msgstr "Quand l'itération suivante de la boucle se produira." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls the internal callback that the task holds." +msgstr "Appelle le rappel interne que la tâche détient." + +msgid "The arguments to use." +msgstr "Les arguments à utiliser." + +msgid "The keyword arguments to use." +msgstr "Les arguments de mot-clé à utiliser." + +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 "Démarre la tâche interne dans la boucle d'événement." + +msgid "A task has already been launched and is running." +msgstr "Une tâche a déjà été lancée et est en cours d'exécution." + +msgid "Returns" +msgstr "Retours" + +msgid "The task that has been created." +msgstr "La tâche qui a été créée." + +msgid ":class:`asyncio.Task`" +msgstr ":class:`asyncio.Task`" + +msgid "Gracefully stops the task from running." +msgstr "Empêche la tâche de s'exécuter." + +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 "Contrairement à :meth:`cancel`\\, cela permet à la tâche de terminer son itération actuelle avant de se terminer. :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 "Si la fonction interne lève une erreur pouvant être gérée avant la fin, elle sera réessayée jusqu'à ce qu'elle réussisse." + +msgid "If this is undesirable, either remove the error handling before stopping via :meth:`clear_exception_types` or use :meth:`cancel` instead." +msgstr "Si cela est indésirable, soit retirez la gestion des erreurs avant d'arrêter via :meth:`clear_exception_types`, soit utilisez :meth:`cancel` à la place." + +msgid "Cancels the internal task, if it is running." +msgstr "Annule la tâche interne si elle est en cours d'exécution." + +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 "Une méthode pratique pour redémarrer la tâche interne." + +msgid "Due to the way this function works, the task is not returned like :meth:`start`." +msgstr "En raison de la façon dont cette fonction fonctionne, la tâche n'est pas retournée comme :meth:`start`." + +msgid "Adds exception types to be handled during the reconnect logic." +msgstr "Ajoute les types d'exception à traiter pendant la logique de reconnexion." + +msgid "By default, the exception types handled are those handled by :meth:`discord.Client.connect`\\, which includes a lot of internet disconnection errors." +msgstr "Par défaut, les types d'exceptions gérés sont ceux traités par :meth:`discord.Client.connect`, ce qui inclut de nombreux types d'erreurs de déconnexion Internet." + +msgid "This function is useful if you're interacting with a 3rd party library that raises its own set of exceptions." +msgstr "Cette fonction est utile si vous interagissez avec une bibliothèque tierce qui augmente son propre ensemble d'exceptions." + +msgid "An argument list of exception classes to handle." +msgstr "Une liste d'arguments de classes d'exception à gérer." + +msgid "An exception passed is either not a class or not inherited from :class:`BaseException`." +msgstr "Une exception passée n'est soit pas une classe, soit elle n'est pas héritée de :class:`BaseException`." + +msgid "Removes all exception types that are handled. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr "Supprime tous les types d'exception qui sont gérés. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\:\\`None\\``" + +msgid "This operation obviously cannot be undone!" +msgstr "Cette opération ne peut évidemment pas être annulée !" + +msgid "Removes exception types from being handled during the reconnect logic." +msgstr "Ajoute les types d'exception à traiter pendant la logique de reconnexion." + +msgid "Whether all exceptions were successfully removed." +msgstr "Si toutes les exceptions ont bien été supprimées." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Fetches the internal task or ``None`` if there isn't one running." +msgstr "Récupère la tâche interne ou ``None`` s'il n'y en a pas un." + +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 "Si la tâche est en cours d'annulation." + +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 "Si la tâche interne a échoué. :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 "Vérifie si la tâche est en cours d'exécution. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Changes the interval for the sleep time." +msgstr "Modifie l'intervalle de temps de veille." + +msgid "The number of seconds between every iteration." +msgstr "Le nombre de secondes entre chaque itération." + +msgid "The number of minutes between every iteration." +msgstr "Le nombre de minutes entre chaque itération." + +msgid "The number of hours between every iteration." +msgstr "Le nombre d'heures entre chaque itération." + +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 "Les heures exactes auxquelles exécuter cette boucle. Vous devez passer soit une liste non vide, soit une seule valeur de :class:`datetime.time`. Cela ne peut pas être utilisé en conjonction avec les paramètres de temps relatifs. .. versionadded:: 2.0 .. note:: Les heures dupliquées seront ignorées et exécutées une seule fois." + +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 "Les heures exactes auxquelles exécuter cette boucle. Vous devez passer soit une liste non vide, soit une seule valeur de :class:`datetime.time`. Cela ne peut pas être utilisé en conjonction avec les paramètres de temps relatifs." + +msgid "Duplicate times will be ignored, and only run once." +msgstr "Les doublons seront ignorés, et ne seront exécutés qu'une seule fois." + +msgid "An invalid value was given." +msgstr "Une valeur non valide a été donnée." + +msgid "An invalid value for the ``time`` parameter was passed, or the ``time`` parameter was passed in conjunction with relative time parameters." +msgstr "Une valeur invalide pour le paramètre ``time`` a été passée, ou le paramètre ``time`` a été passé en conjonction avec des paramètres de temps relatifs." + +msgid "A decorator that schedules a task in the background for you with optional reconnect logic. The decorator returns a :class:`Loop`." +msgstr "Un décorateur qui planifie une tâche en arrière-plan pour vous avec une logique de reconnexion optionnelle. Le décorateur renvoie une :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 "Les heures exactes auxquelles exécuter cette boucle. Vous devez passer soit une liste non vide, soit une seule valeur de :class:`datetime.time`. Les fuseaux horaires sont pris en charge. Si aucun fuseau horaire n'est spécifié pour les heures, il est supposé qu'elles représentent l'heure UTC. Cela ne peut pas être utilisé en conjonction avec les paramètres de temps relatifs. .. note:: Les heures dupliquées seront ignorées et exécutées une seule fois. .. 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 "Les heures exactes auxquelles exécuter cette boucle. Vous devez passer soit une liste non vide, soit une seule valeur de :class:`datetime.time`. Les fuseaux horaires sont pris en charge. Si aucun fuseau horaire n'est spécifié, il est supposé que les heures représentent l'heure UTC." + +msgid "This cannot be used in conjunction with the relative time parameters." +msgstr "Cela ne peut pas être utilisé en conjonction avec les paramètres de temps relatifs." + +msgid "The number of loops to do, ``None`` if it should be an infinite loop." +msgstr "Le nombre de boucles à faire, ``None`` si elle doit être une boucle infinie." + +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 "Si vous voulez gérer les erreurs et redémarrer la tâche en utilisant un algorithme de back-off exponentiel similaire à celui utilisé dans :meth:`discord.Client.connect`." + +msgid "The loop to use to register the task, if not given defaults to :func:`asyncio.get_event_loop`." +msgstr "La boucle à utiliser pour enregistrer la tâche, si elle n'est pas donnée par défaut à :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 "La fonction n'était pas une coroutine, une valeur invalide a été passée pour le paramètre ``time``, ou le paramètre ``time`` a été passé en conjonction avec des paramètres de temps relatifs." + +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..6e08b323f6 --- /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 "Bienvenue sur Pycord" + +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "Pycord est un wrapper API moderne, facile à utiliser, riche en fonctionnalités et prêt pour l'aspour Discord." + +msgid "**Features:**" +msgstr "**Fonctionnalités :**" + +msgid "Modern Pythonic API using ``async``\\/``await`` syntax" +msgstr "API Pythonique moderne utilisant la syntaxe ``async``\\/``await``" + +msgid "Sane rate limit handling that prevents 429s" +msgstr "Manipulation de la limite de vitesse de la sane qui empêche les 429 s" + +msgid "Command extension to aid with bot creation" +msgstr "Commandez l'extension pour aider à la création du bot" + +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..ca7905e21f --- /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 "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.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 "Changements majeurs du modèle" + +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..a4b74302c0 --- /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 v2.0" + +msgid "v2.0 introduced new Discord features and deprecated some old ones." +msgstr "v2.0 a introduit de nouvelles fonctionnalités Discord et a marqué certaines anciennes fonctionnalités comme obsolètes." + +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 de la refonte implique la création de commandes d'application et de composants. Ces changements incluent une nouvelle classe :class:`Bot`, :class:`ui.View`, et une nouvelle classe :class:`ApplicationContext`. Si vous êtes intéressé par leur création, 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 se mettre à jour pour supporter Python 3.8 ou une version supérieure, la bibliothèque a dû retirer le support des versions de Python inférieures à 3.7, ce qui signifie essentiellement que **le support pour Python 3.7 et les versions antérieures 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 "Ci-dessous sont les changements majeurs qui se sont produits dans la v2.0 :" + +msgid "Dropped User Accounts Support" +msgstr "Suppression du support des comptes utilisateurs" + +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 version 2.0, les comptes utilisateurs étaient pris en charge. Cela allait à l'encontre de l'esprit de la bibliothèque et des conditions d'utilisation de Discord, et a été supprimé. Ainsi, les fonctionnalités qui leur étaient exclusivement réservées ont été supprimées :" + +msgid "``bot`` argument of :meth:`Client.start` and :meth:`Client.run`" +msgstr "L'argument ``bot`` de :meth:`Client.start` et :meth:`Client.run`" + +msgid "``afk`` argument of :meth:`Client.change_presence`" +msgstr "L'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 : ``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 un objet :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 "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/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..d7d8c40506 --- /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 "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 "La bibliothèque suit le `principe de versionnage sémantique `_, ce qui signifie que la version majeure est mise à jour à chaque changement incompatible de l'API. Cependant, en raison de l'absence de garanties du côté de Discord concernant les changements incompatibles, ainsi que de la nature assez dynamique de Python, il peut être difficile de discerner ce qui peut être considéré comme un changement incompatible 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 incompatibles ne s'appliquent qu'aux **fonctions et classes documentées publiquement**. Si elles ne figurent pas dans la documentation ici, elles ne font pas partie de l'API publique et sont donc susceptibles de changer. Cela inclut les attributs commençant par un underscore ou les fonctions sans underscore qui ne sont pas documentées." + +msgid "The examples below are non-exhaustive." +msgstr "Les exemples ci-dessous ne sont pas exhaustifs." + +msgid "Examples of Breaking Changes" +msgstr "Exemples de changements incompatibles" + +msgid "Changing the default parameter value to something else." +msgstr "Modifier la valeur par défaut d'un paramètre pour 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 "Ajouter ou supprimer des paramètres à un événement." + +msgid "Examples of Non-Breaking Changes" +msgstr "Exemples de changements non incompatibles" + +msgid "Adding or removing private underscored attributes." +msgstr "Ajouter ou supprimer des attributs privés avec un underscore." + +msgid "Adding an element into the ``__slots__`` of a data class." +msgstr "Ajouter un élément dans les ``__slots__`` d'une classe de données." + +msgid "Changing the behaviour of a function to fix a bug." +msgstr "Modifier le 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 "Modifier la gestion interne des requêtes 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..ee950c0b7a --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,877 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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..e4b8f95258 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/clients.po @@ -0,0 +1,1567 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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 "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 "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..9449613e48 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/cogs.po @@ -0,0 +1,187 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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..b12fa4f3a2 --- /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..340260998e --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/api/models.po @@ -0,0 +1,7804 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Retrieves a :class:`Role` that the guild has." +msgstr "Retrieves a :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider using :attr:`get_role` instead." +msgstr "This method is an API call. For general usage, consider using :attr:`get_role` instead." + +msgid "The role in the guild with the specified ID." +msgstr "The role in the guild with the specified ID." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "Retrieving the role failed." +msgstr "Retrieving the role 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 "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..8b3003f0c5 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/changelog.po @@ -0,0 +1,1111 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️" + +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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" + +msgid "Added" +msgstr "Added" + +msgid "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" +msgstr "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +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..76f6bbe713 --- /dev/null +++ b/docs/locales/hi/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4105 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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 "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 "An iterator that recursively walks through all commands and subcommands." +msgstr "An iterator that recursively walks through all commands and subcommands." + +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 "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..ee950c0b7a --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,877 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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..e4b8f95258 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/clients.po @@ -0,0 +1,1567 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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 "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 "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..9449613e48 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/cogs.po @@ -0,0 +1,187 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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..b12fa4f3a2 --- /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 "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/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..340260998e --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/api/models.po @@ -0,0 +1,7804 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Retrieves a :class:`Role` that the guild has." +msgstr "Retrieves a :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider using :attr:`get_role` instead." +msgstr "This method is an API call. For general usage, consider using :attr:`get_role` instead." + +msgid "The role in the guild with the specified ID." +msgstr "The role in the guild with the specified ID." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "Retrieving the role failed." +msgstr "Retrieving the role 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 "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..8b3003f0c5 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/changelog.po @@ -0,0 +1,1111 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️" + +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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" + +msgid "Added" +msgstr "Added" + +msgid "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" +msgstr "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +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..76f6bbe713 --- /dev/null +++ b/docs/locales/it/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4105 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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 "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 "An iterator that recursively walks through all commands and subcommands." +msgstr "An iterator that recursively walks through all commands and subcommands." + +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 "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..3a88ade7dd --- /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 "Cambiamento di versione di Python" + +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..e467d72eeb --- /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 "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 "Cambiamento di versione di 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 "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/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..3cecd7dd3a --- /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 "Garanzie quanto al versionamento" + +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 `_, implicando che la libreria ed aggiornata ad una versione maggiore dopo ogni modifica di rottura dell'API. Tuttavia, il manco di garanzia dalla parte di Discord a questo proposito e la natura dinamica di Python ed impossibile definire cosa sarebbe o no una modifica di rottura." + +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 ricordare è che modifiche di rottura avverrebbero unicamente per **funzioni e classi definite pubblicamente**. Se qualcosa non è listato qui nella documentazione, vuole dire che non fa parte dell'API pubblica e può cambiare a qualsiasi momento. Questo include attributi cominciando con un trattino basso o qualsiasi funzione non documentata qui." + +msgid "The examples below are non-exhaustive." +msgstr "Gli esempi sottostanti non sono esaustivi." + +msgid "Examples of Breaking Changes" +msgstr "Esempi di modifiche non di rottura" + +msgid "Changing the default parameter value to something else." +msgstr "Cambiare il valore predefinito di un parametro." + +msgid "Renaming a function without an alias to an old function." +msgstr "Rinominare una funzione senza dargli un alias." + +msgid "Adding or removing parameters to an event." +msgstr "Aggiungere o togliere dei parametri a un evento." + +msgid "Examples of Non-Breaking Changes" +msgstr "Esempi di modifiche non di rottura" + +msgid "Adding or removing private underscored attributes." +msgstr "Aggiungere o togliere attributi privati con un trattino basso." + +msgid "Adding an element into the ``__slots__`` of a data class." +msgstr "Aggiungere un elemento agli ``__slots__`` di una dataclass." + +msgid "Changing the behaviour of a function to fix a bug." +msgstr "Modificare il comportamento di una funzione nell'obiettivo di risolvere un bug." + +msgid "Changes in the documentation." +msgstr "Modificare la documentazione." + +msgid "Modifying the internal HTTP handling." +msgstr "Modificare l'API interna." + +msgid "Upgrading the dependencies to a new version, major or otherwise." +msgstr "Aggiornare le dipendenze a una nuova versione, sia maggiore o non." + 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..5a489cfc98 --- /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 "抽象的な基底クラス" + +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 "このライブラリには抽象基底クラスに関連するモジュールがあり、すべての ABC は :class:`typing.Protocol` のサブクラスです。" + +msgid "An ABC that details the common operations on a Discord model." +msgstr "Discordモデルの一般的な操作について詳しく説明するABC。" + +msgid "Almost all :ref:`Discord models ` meet this abstract base class." +msgstr "ほぼすべての :ref:`Discord models ` は、この抽象基底クラスを満たしています。" + +msgid "If you want to create a snowflake on your own, consider using :class:`.Object`." +msgstr "スノーフレークを自分で作成したい場合は、 :class:`.Object` の使用を検討してください。" + +msgid "The model's unique ID." +msgstr "モデルの固有ID。" + +msgid "type" +msgstr "type" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "An ABC that details the common operations on a Discord user." +msgstr "Discordユーザーの一般的な操作を詳細に説明するABC。" + +msgid "The following implement this ABC:" +msgstr "以下の 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 "このABCは、 :class:`~discord.abc.Snowflake` も実装しなければなりません。" + +msgid "The user's username." +msgstr "ユーザーのユーザー名" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's discriminator." +msgstr "ユーザーの識別子。" + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "ユーザーが新しいユーザー名システムに移行した場合は、常に「0」になります。" + +msgid "The user's global name." +msgstr "ユーザーのグローバル名。" + +msgid "The avatar asset the user has." +msgstr "ユーザーが持っているアバターアセット。" + +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..fcb0a52347 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,877 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "アプリケーションコマンド" + +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 "特定の権限を持つメンバーにアプリケーションコマンドの使用を制限するデコレーター" + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "渡された権限は、 :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 "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..c3ea149c61 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/clients.po @@ -0,0 +1,1567 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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 "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 "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..e0a5531320 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/cogs.po @@ -0,0 +1,187 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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..dc333ff02b --- /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..11445c8af0 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/api/models.po @@ -0,0 +1,7804 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "ユーザーのユーザー名" + +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 "ユーザーのグローバル名。" + +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 "Retrieves a :class:`Role` that the guild has." +msgstr "Retrieves a :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider using :attr:`get_role` instead." +msgstr "This method is an API call. For general usage, consider using :attr:`get_role` instead." + +msgid "The role in the guild with the specified ID." +msgstr "The role in the guild with the specified ID." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "Retrieving the role failed." +msgstr "Retrieving the role 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 "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..6394b6c1a0 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/changelog.po @@ -0,0 +1,1111 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️" + +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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" + +msgid "Added" +msgstr "Added" + +msgid "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" +msgstr "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +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..eaacd057b9 --- /dev/null +++ b/docs/locales/ja/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4105 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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 "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 "An iterator that recursively walks through all commands and subcommands." +msgstr "An iterator that recursively walks through all commands and subcommands." + +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 "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..4220fe4212 --- /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 "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/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..1e4ba53722 --- /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 "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/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..3deec14558 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,877 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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..c3ea149c61 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/clients.po @@ -0,0 +1,1567 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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 "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 "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..e0a5531320 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/cogs.po @@ -0,0 +1,187 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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..dc333ff02b --- /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..ae7418f17f --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/api/models.po @@ -0,0 +1,7804 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Retrieves a :class:`Role` that the guild has." +msgstr "Retrieves a :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider using :attr:`get_role` instead." +msgstr "This method is an API call. For general usage, consider using :attr:`get_role` instead." + +msgid "The role in the guild with the specified ID." +msgstr "The role in the guild with the specified ID." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "Retrieving the role failed." +msgstr "Retrieving the role 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 "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..6394b6c1a0 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/changelog.po @@ -0,0 +1,1111 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️" + +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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" + +msgid "Added" +msgstr "Added" + +msgid "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" +msgstr "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +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..eaacd057b9 --- /dev/null +++ b/docs/locales/ko/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4105 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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 "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 "An iterator that recursively walks through all commands and subcommands." +msgstr "An iterator that recursively walks through all commands and subcommands." + +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 "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..a8e9379c70 --- /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 "확장" + +msgid "Meta" +msgstr "메타" + +msgid "Welcome to Pycord" +msgstr "Pycord에 오신 것을 환영합니다" + +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "Pycord는 사용하기 쉽고, 기능이 풍부하고, 비동기를 지원하는 최신 Discord API 래퍼입니다." + +msgid "**Features:**" +msgstr "**특징:**" + +msgid "Modern Pythonic API using ``async``\\/``await`` syntax" +msgstr "``async``\\/``await`` 구문 등 Python에 걸맞는 최신 API" + +msgid "Sane rate limit handling that prevents 429s" +msgstr "429 오류를 방지하는 알맞은 속도 제한" + +msgid "Command extension to aid with bot creation" +msgstr "봇 제작을 거들어 주는 명령어 확장" + +msgid "Easy to use with an object oriented design" +msgstr "객체 지향 설계로 사용이 쉬움" + +msgid "Optimised for both speed and memory" +msgstr "속도와 메모리 둘 다 최적화됨" + +msgid "Getting started" +msgstr "시작하기" + +msgid "Is this your first time using the library? This is the place to get started!" +msgstr "이 라이브러리를 처음 써 보시나요? 여기서부터 시작해 보세요!" + +msgid "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" +msgstr "**첫걸음:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`가이드 `" + +msgid "**Working with Discord:** :doc:`discord` | :doc:`intents`" +msgstr "**Discord 작업:** :doc:`discord` | :doc:`intents`" + +msgid "**Examples:** Many examples are available in the :resource:`repository `." +msgstr "**예시:** :resource:`리포지토리 `에서 각종 예시들을 찾아보실 수 있습니다.." + +msgid "Getting help" +msgstr "도움 받기" + +msgid "If you're having trouble with something, these resources might help." +msgstr "문제를 겪고 있다면 다음 자료들이 도움이 될 수 있습니다." + +msgid "Try the :doc:`faq` first, it's got answers to all common questions." +msgstr "우선 :doc:`faq` 문서를 읽어 보세요. 흔히 묻는 질문들에 대한 답이 전부 있습니다." + +msgid "Ask us and hang out with us in our :resource:`Discord ` server." +msgstr ":resource:`Discord ` 서버에서 문의하거나, 함께 시간을 보내 보세요." + +msgid "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." +msgstr "특정한 무언가를 찾고 계시면, :ref:`색인 `이나 :ref:`검색 페이지 `를 살펴보세요." + +msgid "Report bugs in the :resource:`issue tracker `." +msgstr ":resource:`이슈 트래커 `에 버그를 알려 주세요." + +msgid "Manuals" +msgstr "매뉴얼" + +msgid "These pages go into great detail about everything the API can do." +msgstr "다음 페이지들에서는 API로 가능한 모든 것을 아주 상세하게 설명합니다." + +msgid "Core API" +msgstr "핵심 API" + +msgid "These extensions help you during development when it comes to common tasks." +msgstr "아래 확장들은 개발 중 자주 이뤄지는 작업들을 진행하는 데 도움을 줍니다." + +msgid ":doc:`ext/commands/index` - Bot commands framework" +msgstr ":doc:`ext/commands/index` - 봇 명령어 프레임워크" + +msgid ":doc:`ext/tasks/index` - asyncio.Task helpers" +msgstr ":doc:`ext/tasks/index` - asyncio.Task 보조 도구" + +msgid ":doc:`ext/pages/index` - A pagination extension module" +msgstr ":doc:`ext/pages/index` - 페이지네이션 확장 모듈" + +msgid ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" +msgstr ":doc:`ext/bridge/index` - 빗금 명령어와 채팅 명령어를 서로 잇는 모듈" + +msgid "If you're looking for something related to the project itself, it's here." +msgstr "여기에서 이 프로젝트에 대한 내용을 찾아보실 수 있습니다." + +msgid ":doc:`changelog` - The changelog for the library." +msgstr ":doc:`changelog` - 라이브러리 변경 기록" + +msgid ":doc:`version_guarantees` - The version guarantees for the library." +msgstr ":doc:`version_guarantees` - 라이브러리의 버전에 대한 보증" + +msgid ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." +msgstr ":doc:`migrating_to_v1` - v0.x에서 v1.x으로 마이그레이션하는 방법" + +msgid ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." +msgstr ":doc:`migrating_to_v2` - v1.x에서 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..b8715b919c --- /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 "Pycord 설치하기" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "이 문서는 Discord API를 활용하는 애플리케이션을 제작하는 데 도와주는 라이브러리인 Pycord에 대한 문서입니다." + +msgid "Prerequisites" +msgstr "요구 사항" + +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는 Python 3.8 이상을 요구합니다. 이전 버전의 Python에 대한 지원은 제공되지 않습니다. Python 2.7 이하는 지원되지 않습니다. Python 3.7 이하는 지원되지 않습니다." + +msgid "Installing" +msgstr "설치하기" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "향후 버전의 새 기능을 사용하려면, 안정(stable) 버전이 출시되기 전까지 프리릴리스 버전을 사용해야 합니다." + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "Windows의 경우, 프리릴리스를 설치하려면 다음 명령을 사용해야 합니다. ::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "다음 명령으로 PyPI에서 직접 라이브러리를 받을 수 있습니다." + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "Windows의 경우, 대신 다음 명령을 사용해야 합니다. ::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "속도 향상을 위한 추가 패키지를 설치하려면, 아래와 같이 ``pycord`` 대신 ``py-cord[speed]``를 사용하셔야 합니다." + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "음성 기능을 사용하려면, 아래와 같이 ``py-cord`` 대신 ``py-cord[voice]``를 사용하셔야 합니다. ::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "Linux 환경의 경우, 음성 기능을 사용하려면 다음 의존성이 필요합니다." + +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 "Debian 기반 환경의 경우, 다음 명령으로 위 의존성을 설치할 수 있습니다." + +msgid "Remember to check your permissions!" +msgstr "명령 실행 권한을 가지고 있는지 확인하세요!" + +msgid "Virtual Environments" +msgstr "가상 환경" + +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 "때때로 라이브러리가 시스템 환경을 오염시키는 것을 막는다거나, 시스템에 이미 설치된 것과는 다른 버전의 라이브러리를 쓰고 싶은 경우가 있습니다. 어쩌면 시스템에 직접 라이브러리를 설치할 수 있는 권한이 없을 수도 있습니다. 이러한 경우를 위해 Python 3.3부터의 표준 라이브러리에서는 각 버전의 라이브러리를 유지하는 데 도움을 주는 ‘가상 환경’이라는 개념이 제공됩니다." + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "자세한 튜토리얼은 :doc:`py:tutorial/venv`에서 확인하실 수 있습니다." + +msgid "However, for the quick and dirty:" +msgstr "간단히 말하자면" + +msgid "Go to your project's working directory:" +msgstr "프로젝트의 작업 폴더로 접근합니다." + +msgid "Activate the virtual environment:" +msgstr "가상 환경을 활성화합니다." + +msgid "On Windows you activate it with:" +msgstr "Windows에서 활성화하려면 다음을 실행하세요." + +msgid "Use pip like usual:" +msgstr "평소처럼 pip를 사용합니다." + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "축하합니다. 가상 환경 구축이 모두 끝났습니다." + +msgid "Basic Concepts" +msgstr "기본 개념" + +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는 :ref:`이벤트 ` 개념을 중심으로 작동합니다. 이벤트는 무언가를 감지하고 이에 반응하는 일을 합니다. 예컨대, 메시지가 전송되면 관련 이벤트를 받게 되며, 이에 대해 응답할 수 있게 됩니다." + +msgid "A quick example to showcase how events work:" +msgstr "다음은 이벤트의 작동 방법를 보여주는 간단한 예입니다." + 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..16a9510381 --- /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 "빠른 시작" + +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 "이 페이지는 라이브러리에 대해 짧게 소개합니다. 라이브러리가 설치돼 있다는 전제하에 진행됩니다. 만약 설치돼 있지 않다면 :ref:`installing` 항목을 확인해 주세요." + +msgid "A Minimal Bot" +msgstr "최소 기능의 봇" + +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "특정 메시지에 응답하는 봇을 만들어 봅시다. 차근차근 알려 드리겠습니다." + +msgid "It looks something like this:" +msgstr "결과는 대강 다음과 같습니다." + +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "이 예시는 메시지 콘텐츠를 활용하기 때문에 :attr:`Intents.message_content` 권한이 부여된 인텐트가 필요합니다." + +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 "이 파일의 이름을 ``example_bot.py``라고 하겠습니다. 파일 이름은 라이브러리와 충돌할 수 있으니 ``discord.py``로 짓지 마세요." + +msgid "There's a lot going on here, so let's walk you through it step by step:" +msgstr "많은 일이 일어나고 있으니 하나하나씩 설명해 드리겠습니다." + +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 "첫째 줄에서는 단순히 라이브러리를 불러옵니다. `ModuleNotFoundError`나 `ImportError`가 발생한다면 :ref:`installing` 항목에서 제대로 설치해 주세요." + +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_BR/LC_MESSAGES/api/abcs.po b/docs/locales/pt_BR/LC_MESSAGES/api/abcs.po new file mode 100644 index 0000000000..dd0448a634 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/api/application_commands.po b/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po new file mode 100644 index 0000000000..ee950c0b7a --- /dev/null +++ b/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,877 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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_BR/LC_MESSAGES/api/application_info.po b/docs/locales/pt_BR/LC_MESSAGES/api/application_info.po new file mode 100644 index 0000000000..31922fca86 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/api/async_iter.po b/docs/locales/pt_BR/LC_MESSAGES/api/async_iter.po new file mode 100644 index 0000000000..b322381f39 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/api/audit_logs.po b/docs/locales/pt_BR/LC_MESSAGES/api/audit_logs.po new file mode 100644 index 0000000000..05c56e27c2 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/api/clients.po b/docs/locales/pt_BR/LC_MESSAGES/api/clients.po new file mode 100644 index 0000000000..2405b21dbd --- /dev/null +++ b/docs/locales/pt_BR/LC_MESSAGES/api/clients.po @@ -0,0 +1,1567 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Representa um bot do discord." + +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 "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 "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 "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_BR/LC_MESSAGES/api/cogs.po b/docs/locales/pt_BR/LC_MESSAGES/api/cogs.po new file mode 100644 index 0000000000..5ee8a9d72e --- /dev/null +++ b/docs/locales/pt_BR/LC_MESSAGES/api/cogs.po @@ -0,0 +1,187 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "A classe base da qual todas as cogs devem herdar." + +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 "Uma cog é uma coleção de comandos, listeners e optional states para ajudar a agrupar comandos. Mais informações sobre elas podem ser encontradas na página 'ext_commands_cogs' do :ref:." + +msgid "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." +msgstr "Quando herdamos desta classe, as opções mostradas na :class:`CogMeta` são igualmente válidas aqui." + +msgid "Returns" +msgstr "Retorna" + +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 "Isso não inclui subcomandos." + +msgid "Return type" +msgstr "Tipo de retorno" + +msgid "List[:class:`.ApplicationCommand`]" +msgstr "List[:class:`.ApplicationCommand`]" + +msgid "Returns the cog's specified name, not the class name." +msgstr "Retorna o nome especificado da cog, não o nome da classe." + +msgid "Returns the cog's description, typically the cleaned docstring." +msgstr "Retorna a descrição do cog, normalmente a docstring limpa." + +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 "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 "Os listeners definidos nesta 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 "Um decorador que marca uma função como um listener." + +msgid "This is the cog equivalent of :meth:`.Bot.listen`." +msgstr "This is the cog equivalent of :meth:`.Bot.listen`." + +msgid "Parameters" +msgstr "Parâmetros" + +msgid "The name of the event being listened to. If not provided, it defaults to the function's name." +msgstr "O nome do evento que está sendo executado. Se não for fornecido, o padrão é o nome da função." + +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 "Gera" + +msgid "The function is not a coroutine function or a string was not passed as the name." +msgstr "A função não é uma coroutine function ou uma “string” não foi passada como o nome." + +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 "Um método especial chamado quando a cog é removida." + +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 "O contexto de chamada." + +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 "Isto **deve** ser uma coroutine." + +msgid "The invocation context where the error happened." +msgstr "The invocation context where the error happened." + +msgid "The error that happened." +msgstr "O erro que ocorreu." + +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 "Uma metaclasse para definir uma 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 que você provavelmente não deve usar isso diretamente. Ele é exposto apenas para fins de documentação juntamente com a criação de metaclasses personalizadas para misturar com outras metaclasses, como a metaclasse :class:`abc.ABCMeta`." + +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 "O nome da cog. Por padrão, é o nome da classe sem modificações." + +msgid "type" +msgstr "tipo" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "A descrição da cog. Por padrão, é a docstring limpa da classe." + +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_BR/LC_MESSAGES/api/data_classes.po b/docs/locales/pt_BR/LC_MESSAGES/api/data_classes.po new file mode 100644 index 0000000000..bc1c9d6327 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/api/enums.po b/docs/locales/pt_BR/LC_MESSAGES/api/enums.po new file mode 100644 index 0000000000..b12fa4f3a2 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/api/events.po b/docs/locales/pt_BR/LC_MESSAGES/api/events.po new file mode 100644 index 0000000000..3de9f161c1 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/api/exceptions.po b/docs/locales/pt_BR/LC_MESSAGES/api/exceptions.po new file mode 100644 index 0000000000..1840bc94e8 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/api/index.po b/docs/locales/pt_BR/LC_MESSAGES/api/index.po new file mode 100644 index 0000000000..80efb62166 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/api/models.po b/docs/locales/pt_BR/LC_MESSAGES/api/models.po new file mode 100644 index 0000000000..cd3f8bc4f6 --- /dev/null +++ b/docs/locales/pt_BR/LC_MESSAGES/api/models.po @@ -0,0 +1,7804 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Modelos do Discord" + +msgid "Models are classes that are received from Discord and are not meant to be created by the user of the library." +msgstr "Modelos são classes recebidas do Discord e não devem ser criadas pelo usuário da biblioteca." + +msgid "The classes listed below are **not intended to be created by users** and are also **read-only**." +msgstr "As classes listadas abaixo **não devem ser criadas por usuários** e também são **somente para leitura**." + +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 "Por exemplo, isso significa que você não deve criar suas próprias instâncias :class:`User` nem deve modificar a instância :class:`User` você mesmo(a)." + +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 "Se você quiser obter uma dessas instâncias de classes de modelo, elas terão que ser obtidas por meio do cache, e uma maneira comum de fazer isso é através da função :func:`utils.find` ou dos atributos das classes de modelo que você recebe dos eventos especificados em :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 "Quase todas as classes aqui têm :ref:`py:slots` definidos, o que torna impossível ter atributos dinâmicos para as classes de dados." + +msgid "Represents a CDN asset on Discord." +msgstr "Representa um ativo CDN no Discord." + +msgid "Returns the URL of the CDN asset." +msgstr "Retorna o URL do ativo CDN." + +msgid "Returns the length of the CDN asset's URL." +msgstr "Retorna o comprimento do URL do ativo CDN." + +msgid "Checks if the asset is equal to another asset." +msgstr "Verifica se o ativo é igual a outro ativo." + +msgid "Checks if the asset is not equal to another asset." +msgstr "Verifica se o ativo não é igual a outro ativo." + +msgid "Returns the hash of the asset." +msgstr "Retorna o hash do ativo." + +msgid "Parameters" +msgstr "Parâmetros" + +msgid "Returns the underlying URL of the asset." +msgstr "Retorna o URL subjacente do ativo." + +msgid "Returns the identifying key of the asset." +msgstr "Retorna a chave identificadora do ativo." + +msgid "Returns whether the asset is animated." +msgstr "Retorna se o ativo é animado ou não." + +msgid "Return type" +msgstr "Tipo de retorno" + +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 "Retorna um novo ativo com os componentes passados substituídos." + +msgid "The new size of the asset." +msgstr "O novo tamanho do ativo." + +msgid "The new format to change it to. Must be either 'webp', 'jpeg', 'jpg', 'png', or 'gif' if it's animated." +msgstr "O novo formato para alterar. Deve ser 'webp', 'jpeg', 'jpg', 'png' ou 'gif' se for animado." + +msgid "The new format to change it to if the asset isn't animated. Must be either 'webp', 'jpeg', 'jpg', or 'png'." +msgstr "O novo formato para alterá-lo se o ativo não for animado. Deve ser 'webp', 'jpeg', 'jpg', ou 'png'." + +msgid "Returns" +msgstr "Retorna" + +msgid "The newly updated asset." +msgstr "O ativo recém-atualizado." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "Raises" +msgstr "Gera" + +msgid "An invalid size or format was passed." +msgstr "Um tamanho ou formato inválido foi inserido." + +msgid "Returns a new asset with the specified size." +msgstr "Retorna um novo ativo com o tamanho especificado." + +msgid "The new updated asset." +msgstr "O novo ativo atualizado." + +msgid "The asset had an invalid size." +msgstr "O ativo tinha um tamanho inválido." + +msgid "Returns a new asset with the specified format." +msgstr "Retorna um novo ativo com o formato especificado." + +msgid "The new format of the asset." +msgstr "O novo formato do ativo." + +msgid "The asset has an invalid format." +msgstr "O conteúdo tem um formato inválido." + +msgid "Returns a new asset with the specified static format." +msgstr "Retorna um novo ativo com o formato estático especificado." + +msgid "This only changes the format if the underlying asset is not animated. Otherwise, the asset is not changed." +msgstr "Isso só muda o formato se o ativo subjacente não estiver animado. Caso contrário, o arquivo não será alterado." + +msgid "The new static format of the asset." +msgstr "O novo formato estático do ativo." + +msgid "The asset had an invalid format." +msgstr "O ativo tem um formato inválido." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Retrieves the content of this asset as a :class:`bytes` object." +msgstr "Recupera o conteúdo deste ativo como um objeto :class:`bytes`." + +msgid "The content of the asset." +msgstr "O conteúdo do ativo." + +msgid ":class:`bytes`" +msgstr ":class:`bytes`" + +msgid "There was no internal connection state." +msgstr "Não houve nenhum estado interno de conexão." + +msgid "Downloading the asset failed." +msgstr "Falha ao baixar o ativo." + +msgid "The asset was deleted." +msgstr "O ativo foi excluído." + +msgid "Saves this asset into a file-like object." +msgstr "Salva este ativo em um objeto semelhante a um arquivo." + +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 "O objeto tipo arquivo para salvar este anexo ou o nome do arquivo a ser usado. Se um nome de arquivo for passado, um arquivo será criado com esse nome de arquivo e usado em vez dele." + +msgid "Whether to seek to the beginning of the file after saving is successfully done." +msgstr "Se você deve procurar no início do arquivo após salvar é feito com sucesso." + +msgid "The number of bytes written." +msgstr "O número de bytes escritos." + +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 "Representa uma atividade de escuta do Spotify do Discord. Este é um caso especial de :class:`Activity` que torna mais fácil trabalhar com a integração do Spotify." + +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 "Retrieves a :class:`Role` that the guild has." +msgstr "Retrieves a :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider using :attr:`get_role` instead." +msgstr "This method is an API call. For general usage, consider using :attr:`get_role` instead." + +msgid "The role in the guild with the specified ID." +msgstr "The role in the guild with the specified ID." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "Retrieving the role failed." +msgstr "Retrieving the role 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 "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_BR/LC_MESSAGES/api/sinks.po b/docs/locales/pt_BR/LC_MESSAGES/api/sinks.po new file mode 100644 index 0000000000..c041d54623 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/api/ui_kit.po b/docs/locales/pt_BR/LC_MESSAGES/api/ui_kit.po new file mode 100644 index 0000000000..0e374cd9d7 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/api/utils.po b/docs/locales/pt_BR/LC_MESSAGES/api/utils.po new file mode 100644 index 0000000000..c59ea4f08e --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/api/version_info.po b/docs/locales/pt_BR/LC_MESSAGES/api/version_info.po new file mode 100644 index 0000000000..a57036beac --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/api/voice.po b/docs/locales/pt_BR/LC_MESSAGES/api/voice.po new file mode 100644 index 0000000000..ce04e5fda5 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/api/webhooks.po b/docs/locales/pt_BR/LC_MESSAGES/api/webhooks.po new file mode 100644 index 0000000000..c6f477ed90 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/changelog.po b/docs/locales/pt_BR/LC_MESSAGES/changelog.po new file mode 100644 index 0000000000..8b3003f0c5 --- /dev/null +++ b/docs/locales/pt_BR/LC_MESSAGES/changelog.po @@ -0,0 +1,1111 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️" + +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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" + +msgid "Added" +msgstr "Added" + +msgid "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" +msgstr "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +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_BR/LC_MESSAGES/cogs.po b/docs/locales/pt_BR/LC_MESSAGES/cogs.po new file mode 100644 index 0000000000..d3b99d560a --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/discord.po b/docs/locales/pt_BR/LC_MESSAGES/discord.po new file mode 100644 index 0000000000..1d84eae006 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/ext/bridge/api.po b/docs/locales/pt_BR/LC_MESSAGES/ext/bridge/api.po new file mode 100644 index 0000000000..c8f2bfa309 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/ext/bridge/index.po b/docs/locales/pt_BR/LC_MESSAGES/ext/bridge/index.po new file mode 100644 index 0000000000..d829d3af31 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/ext/commands/api.po b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/api.po new file mode 100644 index 0000000000..e8ee8165e0 --- /dev/null +++ b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4105 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "Referência de API" + +msgid "The following section outlines the API of Pycord's prefixed command extension module." +msgstr "A seção a seguir descreve a API do módulo de extensão de comando pré-fixo do Pycord." + +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 "Representa um bot do discord." + +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 "Essa classe é uma subclasse de :class:`discord. Bot` e como resultado, qualquer coisa que você possa fazer com um :class:`discord.Bot` você pode fazer com esse 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 "O prefixo do comando é o que o conteúdo da mensagem deve ter inicialmente para ter um comando acionado. Esse prefixo pode ser uma \"string\" para indicar o que o mesmo deve ser, ou um \"callable\" que recebe o bot como seu primeiro parâmetro e :class:`discord.Message` como seu segundo parâmetro e retorna o prefixo. Isto serve para facilitar prefixos de comando \"dinâmicos\". Este \"callable\" pode ser uma \"regular function\" ou uma \"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 "Se os comandos devem ser sensíveis a maiúsculas de minúsculas. O padrão é \"False\". Esse atributo não é transferido para grupos. Você deve definí-lo para cada grupo se precisar que os comandos do grupo também sejam sensíveis a maiúsculas de minúsculas." + +msgid "type" +msgstr "tipo" + +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 "Parâmetros" + +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 "Exemplo" + +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 "Retorna" + +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 "Tipo de retorno" + +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 "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 "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 "An iterator that recursively walks through all commands and subcommands." +msgstr "An iterator that recursively walks through all commands and subcommands." + +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 "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 "Conversores" + +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_BR/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/cogs.po new file mode 100644 index 0000000000..b6bdcd19af --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/ext/commands/commands.po b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/commands.po new file mode 100644 index 0000000000..25f50cde1e --- /dev/null +++ b/docs/locales/pt_BR/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 "Comandos" + +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 "Parâmetros" + +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 "Posicional" + +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 "Contexto da Chamada" + +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 "Conversores" + +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 "Conversores Básicos" + +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_BR/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/extensions.po new file mode 100644 index 0000000000..aefcfd5e04 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/ext/commands/index.po b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/index.po new file mode 100644 index 0000000000..201036b377 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/ext/pages/index.po b/docs/locales/pt_BR/LC_MESSAGES/ext/pages/index.po new file mode 100644 index 0000000000..30b0c29ee7 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/ext/tasks/index.po b/docs/locales/pt_BR/LC_MESSAGES/ext/tasks/index.po new file mode 100644 index 0000000000..beb1ad9f67 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/faq.po b/docs/locales/pt_BR/LC_MESSAGES/faq.po new file mode 100644 index 0000000000..5326557f7a --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/index.po b/docs/locales/pt_BR/LC_MESSAGES/index.po new file mode 100644 index 0000000000..1474b8c961 --- /dev/null +++ b/docs/locales/pt_BR/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 "Extensões" + +msgid "Meta" +msgstr "Meta" + +msgid "Welcome to Pycord" +msgstr "Bem-vindo ao Pycord" + +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "Pycord é um wrapper moderno, fácil de usar, rico em recursos e assíncrono para a API do Discord." + +msgid "**Features:**" +msgstr "**Recursos:**" + +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 "Extensão de comando para ajudar com a criação do bot" + +msgid "Easy to use with an object oriented design" +msgstr "Fácil de usar com um design orientado a objetos" + +msgid "Optimised for both speed and memory" +msgstr "Otimizado para velocidade e memória" + +msgid "Getting started" +msgstr "Primeiros passos" + +msgid "Is this your first time using the library? This is the place to get started!" +msgstr "Esta é a sua primeira vez usando a biblioteca? Este é o lugar para começar!" + +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 "Obtendo ajuda" + +msgid "If you're having trouble with something, these resources might help." +msgstr "Se você estiver tendo problemas com algo, esses recursos podem ajudar." + +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 "Reporte bugs em :resource:`issue tracker `." + +msgid "Manuals" +msgstr "Manuais" + +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_BR/LC_MESSAGES/installing.po b/docs/locales/pt_BR/LC_MESSAGES/installing.po new file mode 100644 index 0000000000..aca21f7bfc --- /dev/null +++ b/docs/locales/pt_BR/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 "Instalando o Pycord" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "Esta é a documentação do Pycord, uma biblioteca para Python auxiliar na criação de aplicativos que utilizam a API do Discord." + +msgid "Prerequisites" +msgstr "Pré-requisitos" + +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 funciona com Python 3.8 ou superior. Suporte para versões anteriores do Python não é fornecido. Python 2.7 ou inferior não é suportado. Python 3.7 ou inferior não é suportado." + +msgid "Installing" +msgstr "Instalando" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "Para novos recursos em versões futuras, você precisará instalar a versão pré-lançamento até que uma versão estável seja liberada. ::" + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "Para usuários do Windows, este comando deve ser usado para instalar a pre-release: ::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "Você pode obter a biblioteca diretamente do PyPI: ::" + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "Se você estiver usando Windows, então o seguinte deve ser utilizado: ::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "Para instalar pacotes adicionais para otimização, você deve usar \"py-cord[speed]\" em vez de \"py-cord\", por exemplo:" + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "Para obter suporte a voice, você deve usar \"py-cord[voice]\" em vez de \"py-cord\", por exemplo: ::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "Em ambientes Linux, a instalação de voice requer a obtenção das seguintes dependências:" + +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 "Em um sistema baseado em Debian, o seguinte comando irá obter essas dependências:" + +msgid "Remember to check your permissions!" +msgstr "Lembre-se de verificar suas permissões!" + +msgid "Virtual Environments" +msgstr "Ambientes Virtuais" + +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 "Às vezes, você deseja evitar que as bibliotecas interfiram nas instalações do sistema ou usar uma versão diferente das bibliotecas instaladas no sistema. Você também pode não ter permissões para instalar bibliotecas em todo o sistema. Para esse propósito, a biblioteca padrão a partir do Python 3.3 inclui um conceito chamado \"Ambientes Virtuais\" para ajudar a manter essas versões separadas." + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "Um tutorial mais detalhado pode ser encontrado em :doc:`py:tutorial/venv`." + +msgid "However, for the quick and dirty:" +msgstr "No entanto, para algo rápido e simples:" + +msgid "Go to your project's working directory:" +msgstr "Vá para o diretório de trabalho do seu projeto:" + +msgid "Activate the virtual environment:" +msgstr "Ative o ambiente virtual:" + +msgid "On Windows you activate it with:" +msgstr "No Windows, você o ativará com:" + +msgid "Use pip like usual:" +msgstr "Use pip como de costume:" + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "Parabéns. Agora você tem um ambiente virtual configurado." + +msgid "Basic Concepts" +msgstr "Conceitos Básicos" + +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 "O Pycord gira em torno do conceito de :ref:`events `. Um evento é algo ao qual você ouve e então responde. Por exemplo, quando uma mensagem é enviada, você receberá um evento relacionado a isso, ao qual poderá responder." + +msgid "A quick example to showcase how events work:" +msgstr "Um exemplo rápido para mostrar como os eventos funcionam:" + diff --git a/docs/locales/pt_BR/LC_MESSAGES/intents.po b/docs/locales/pt_BR/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..036ca6dbac --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/logging.po b/docs/locales/pt_BR/LC_MESSAGES/logging.po new file mode 100644 index 0000000000..9b9b2f2707 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/migrating_to_v1.po b/docs/locales/pt_BR/LC_MESSAGES/migrating_to_v1.po new file mode 100644 index 0000000000..ba2c21442b --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/migrating_to_v2.po b/docs/locales/pt_BR/LC_MESSAGES/migrating_to_v2.po new file mode 100644 index 0000000000..41ef72997c --- /dev/null +++ b/docs/locales/pt_BR/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/pt_BR/LC_MESSAGES/old_changelog.po b/docs/locales/pt_BR/LC_MESSAGES/old_changelog.po new file mode 100644 index 0000000000..21e169d5d4 --- /dev/null +++ b/docs/locales/pt_BR/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_BR/LC_MESSAGES/quickstart.po b/docs/locales/pt_BR/LC_MESSAGES/quickstart.po new file mode 100644 index 0000000000..6c9f8b0d3f --- /dev/null +++ b/docs/locales/pt_BR/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 "Introdução" + +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 "Esta página faz uma breve introdução à biblioteca. Ela presume que você tem a biblioteca instalada. Se você não a tem instalada, verifique a seção :ref:`installing`." + +msgid "A Minimal Bot" +msgstr "Um Bot Simples" + +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 "É algo como isto:" + +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 "Vamos nomear este arquivo como \"example_bot.py\". Certifique-se de não o nomear como \"discord.py\" já que ele vai entrar em conflito com a biblioteca." + +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 "No Windows:" + +msgid "On other systems:" +msgstr "Em outros sistemas:" + +msgid "Now you can try playing around with your basic bot." +msgstr "Agora você pode tentar brincar com seu bot simples." + +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 "A primeira linha permanece inalterada." + +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 "Finalmente, mais uma vez, nós executamos o bot com nosso token de login." + +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_BR/LC_MESSAGES/version_guarantees.po b/docs/locales/pt_BR/LC_MESSAGES/version_guarantees.po new file mode 100644 index 0000000000..5a827907dc --- /dev/null +++ b/docs/locales/pt_BR/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/ru/LC_MESSAGES/api/abcs.po b/docs/locales/ru/LC_MESSAGES/api/abcs.po new file mode 100644 index 0000000000..48eab8770b --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Abstract Base Classes" +msgstr "Абстрактные базовые классы" + +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 ":term:`abstract base class` (также известный как ``abc``) — это класс, от которого модели могут наследовать свое поведение. **Абстрактные базовые классы не должны быть скопированы**. Они в основном предназначены для использования в :func:`isinstance` и :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 "В этой библиотеке есть модуль, связанный с абстрактными базовыми классами, в котором все ABC являются подклассами :class:`typing.Protocol`." + +msgid "An ABC that details the common operations on a Discord model." +msgstr "ABC, в котором описаны общие операции по модели Discord." + +msgid "Almost all :ref:`Discord models ` meet this abstract base class." +msgstr "Почти все :ref:`модели Discord ` соответствуют этому абстрактному базовому классу." + +msgid "If you want to create a snowflake on your own, consider using :class:`.Object`." +msgstr "Если вы хотите создать snowflake самостоятельно, рассмотрите возможность использования :class:`.Object`." + +msgid "The model's unique ID." +msgstr "Уникальный идентификатор модели." + +msgid "type" +msgstr "тип" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "An ABC that details the common operations on a Discord user." +msgstr "ABC, в котором описаны общие операции с пользователем Discord." + +msgid "The following implement this ABC:" +msgstr "Следующие реализуют этот 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 "Этот ABC также реализует :class:`~discord.abc.Snowflake`." + +msgid "The user's username." +msgstr "Имя пользователя." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The user's discriminator." +msgstr "Дискриминатор пользователя." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "Если пользователь мигрировал в новую систему имени пользователя, это всегда будет \"0\"." + +msgid "The user's global name." +msgstr "Глобальное имя пользователя." + +msgid "The avatar asset the user has." +msgstr "Аватар пользователя." + +msgid ":class:`~discord.Asset`" +msgstr ":class:`~discord.Asset`" + +msgid "If the user is a bot account." +msgstr "Если пользователь является учетной записью бота." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Returns the user's display name." +msgstr "Возвращает отображаемое имя пользователя." + +msgid "Returns a string that allows you to mention the given user." +msgstr "Возвращает строку, которая позволяет упомянуть этого пользователя." + +msgid "An ABC that details the common operations on a private Discord channel." +msgstr "ABC, в котором описаны общие операции с приватным каналом Discord." + +msgid ":class:`~discord.DMChannel`" +msgstr ":class:`~discord.DMChannel`" + +msgid ":class:`~discord.GroupChannel`" +msgstr ":class:`~discord.GroupChannel`" + +msgid "The user presenting yourself." +msgstr "Пользователь, представляющий себя." + +msgid "An ABC that details the common operations on a Discord guild channel." +msgstr "ABC, в котором описаны общие операции с каналом сервера Discord." + +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 "Название канала." + +msgid "The guild the channel belongs to." +msgstr "Сервер к которому принадлежит канал." + +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 "Позиция в списке каналов. Это число, которое начинается с 0. Например, верхний канал имеет позицию 0." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Возвращает список ролей, которые были переопределены по сравнению с их значениями по умолчанию в атрибуте :attr:`~discord.Guild.roles`." + +msgid "The string that allows you to mention the channel." +msgstr "Строка, которая позволяет упомянуть канал." + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Возвращает URL, который позволяет клиенту перейти к каналу." + +msgid "Returns the channel's creation time in UTC." +msgstr "Возвращает время создания канала в UTC." + +msgid "Returns the channel-specific overwrites for a member or a role." +msgstr "Возвращает переопределения прав канала для участника или роли." + +msgid "Parameters" +msgstr "Параметры" + +msgid "The role or user denoting whose overwrite to get." +msgstr "Роль или пользователь, обозначающий, чьи переопределения необходимо получить." + +msgid "Returns" +msgstr "Возвращает" + +msgid "The permission overwrites for this object." +msgstr "Переопределенные разрешения для этого объекта." + +msgid "Return type" +msgstr "Тип возврата" + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "Returns all of the channel's overwrites." +msgstr "Возвращает все переопределения прав канала." + +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 "Это возвращается как словарь, где ключ содержит цель, которая может быть :class:`~discord.Role` или :class:`~discord.Member`, а значением является :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "Переопределения прав канала." + +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 "Категория, к которой принадлежит канал." + +msgid "If there is no category then this is ``None``." +msgstr "Если нет категории, то это ``None``." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Будут ли права доступа этого канала синхронизированы с категорией, к которой он принадлежит." + +msgid "If there is no category then this is ``False``." +msgstr "Если нет категории, то это ``False``." + +msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." +msgstr "Обрабатывает разрешения для :class:`~discord.Member` или :class:`~discord.Role`." + +msgid "This function takes into consideration the following cases:" +msgstr "Эта функция учитывает следующие случаи:" + +msgid "Guild owner" +msgstr "Владелец сервера" + +msgid "Guild roles" +msgstr "Роли сервера" + +msgid "Channel overrides" +msgstr "Переопределения канала" + +msgid "Member overrides" +msgstr "Переопределения участника" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "Если передана :class:`~discord.Role`, то проверяются разрешения, которыми будет обладать человек с этой ролью, что, по сути, является проверкой:" + +msgid "The default role permissions" +msgstr "Права доступа роли по умолчанию" + +msgid "The permissions of the role used as a parameter" +msgstr "Права доступа роли, используемой в качестве параметра" + +msgid "The default role permission overwrites" +msgstr "Переопределения прав доступа роли по умолчанию" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "Переопределения прав доступа роли, используемой в качестве параметра" + +msgid "The object passed in can now be a role object." +msgstr "Теперь передаваемый объект может быть объектом роли." + +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 "Объект, для которого необходимо вычислить разрешения. Это может быть либо участник, либо роль. Если это роль, то переопределение прав для участников не вычисляется." + +msgid "The resolved permissions for the member or role." +msgstr "Вычисленные разрешения для участника или роли." + +msgid ":class:`~discord.Permissions`" +msgstr ":class:`~discord.Permissions`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Deletes the channel." +msgstr "Удаляет канал." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "У вас должно быть разрешение :attr:`~discord.Permissions.manage_channels`, чтобы использовать это." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "Причина удаления этого канала. Отображается в журнале аудита." + +msgid "Raises" +msgstr "Вызывает" + +msgid "You do not have proper permissions to delete the channel." +msgstr "У вас нет соответствующих прав для удаления канала." + +msgid "The channel was not found or was already deleted." +msgstr "Канал не найден или уже был удален." + +msgid "Deleting the channel failed." +msgstr "Не удалось удалить канал." + +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 "Устанавливает переопределение прав доступа для цели в канале." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "Параметр ``target`` должен быть либо :class:`~discord.Member`, либо :class:`~discord.Role`, принадлежащие этому серверу." + +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 "Параметр ``overwrite``, если указано, должен быть ``None`` или :class:`~discord.PermissionOverwrite`. Для удобства вы можете передать ключевые аргументы, означающие :class:`~discord.Permissions`. Если это сделано, вы не можете смешивать ключевые аргументы с параметром ``overwrite``." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "Если параметр ``overwrite`` это ``None``, то переопределения прав удаляются." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "У вас должно быть разрешение :attr:`~discord.Permissions.manage_roles`, чтобы использовать это." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "Этот метод *заменяет* старые переопределения с указанными." + +msgid "Examples" +msgstr "Примеры" + +msgid "Setting allow and deny: ::" +msgstr "Настройка разрешений и запретов: ::" + +msgid "Deleting overwrites ::" +msgstr "Удаление переопределений: ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Использование :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "Участник или роль для переопределения прав доступа." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "Разрешения, которые следует разрешить и запретить для цели, или ``None`` для удаления переопределения." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "Список ключевых аргументов, которые можно установить для удобства использования. Не может быть использован вместе с ``overwrite``." + +msgid "The reason for doing this action. Shows up on the audit log." +msgstr "Причина совершения данного действия. Отображается в журнале аудита." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "У вас нет прав для редактирования разрешений канала." + +msgid "Editing channel specific permissions failed." +msgstr "Изменение переопределений прав доступа не удалось." + +msgid "The role or member being edited is not part of the guild." +msgstr "Редактируемая роль или участник не принадлежит серверу этого канала." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "Параметр overwrite невалидный или целевой тип не является :class:`~discord.Role` или :class:`~discord.Member`." + +msgid "Clones this channel. This creates a channel with the same properties as this channel." +msgstr "Клонирует данный канал. Создает канал с такими же свойствами, что и этот канал." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "Для этого у вас должно быть разрешение :attr:`~discord.Permissions.manage_channels`." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "Имя нового канала. Если не указано, по умолчанию используется имя этого канала." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "Причина клонирования этого канала. Отображается в журнале аудита." + +msgid "The channel that was created." +msgstr "Канал, который был создан." + +msgid ":class:`.abc.GuildChannel`" +msgstr ":class:`.abc.GuildChannel`" + +msgid "You do not have the proper permissions to create this channel." +msgstr "У вас нет соответствующих прав для создания этого канала." + +msgid "Creating the channel failed." +msgstr "Не удалось создать канал." + +msgid "A rich interface to help move a channel relative to other channels." +msgstr "Богатый интерфейс, позволяющий перемещать канал относительно других каналов." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "Если требуется точное перемещение позиции, вместо этого следует использовать ``edit``." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Голосовые каналы всегда будут отсортированы ниже текстовых." + +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 "Перемещать ли канал в начало списка каналов (или в категорию, если она задана). Этот параметр является взаимоисключающим для ``end``, ``before`` и ``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 "Перемещать ли канал в конец списка каналов (или категории, если она задана). Этот параметр является взаимоисключающим для ```beginning``, ``before`` и ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "Канал, который должен быть перед нашим текущим каналом. Это взаимоисключающее значение с ``beginning``, ``end`` и ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "Канал, который должен быть после нашего текущего канала. Это взаимоисключающее значение с ``beginning``, ``end`` и ``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 "Количество каналов, на которое нужно сместить канал. Например, смещение ``2`` с ``beginning=True`` переместит его на 2 после начала списка каналов. Положительное число перемещает его ниже, а отрицательное - выше. Обратите внимание, что это число является относительным и вычисляется после параметров ``beginning``, ``end``, ``before`` и ``after``." + +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 "Категория, в которую нужно переместить этот канал. Если задано ``None``, то он будет перемещен из категории. Этот параметр игнорируется при перемещении категории." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Нужно ли синхронизировать разрешения с категорией (если указана)." + +msgid "The reason for the move." +msgstr "Причина перемещения." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "Была указана невалидная позиция или передано неверное сочетание аргументов." + +msgid "You do not have permissions to move the channel." +msgstr "У вас нет прав для перемещения канала." + +msgid "Moving the channel failed." +msgstr "Не удалось переместить канал." + +msgid "Creates an instant invite from a text or voice channel." +msgstr "Создает мгновенное приглашение из текстового или голосового канала." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "Для этого у вас должно быть разрешение :attr:`~discord.Permissions.create_instant_invite`." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "Сколько времени должно длиться действие приглашения в секундах. Если значение равно 0, то срок действия приглашения не истекает. По умолчанию ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "Сколько раз приглашение может быть использовано. Если значение равно 0, то количество использований не ограничено. По умолчанию ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Обозначает, что приглашение предоставляет временное членство (т.е. если участнику не была назначена роль, то он автоматически выгоняется после отключения). По умолчанию имеет значение ``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 "Указывает, следует ли создавать уникальный URL-адрес приглашения. По умолчанию имеет значение True. Если установить значение ``False``, то будет возвращено ранее созданное приглашение." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "Причина создания этого приглашения. Отображается в журнале аудита." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "Тип цели для приглашения в голосовой канал, если таковой имеется. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "Тип цели для приглашения в голосовой канал, если таковой имеется." + +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 "Пользователь, чей стрим должен отображаться в этом приглашении; требуется, если `target_type` - `TargetType.stream`. Пользователь должен стримить в этом канале. .. 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 "Пользователь, чей стрим должен отображаться в этом приглашении; требуется, если `target_type` - `TargetType.stream`. Пользователь должен стримить в этом канале." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "Идентификатор встроенного приложения для приглашения, требуется, если `target_type` имеет значение `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 "Идентификатор встроенного приложения для приглашения, требуется, если `target_type` имеет значение `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 "Объект запланированного события для привязки к событию. Сокращение от :meth:`.Invite.set_scheduled_event` См. дополнительные сведения о привязке приглашений к событиям в :meth:`.Invite.set_scheduled_event`. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "Объект запланированного события для привязки к событию. Сокращение от :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "Дополнительную информацию о привязке приглашений к событиям см. в разделе :meth:`.Invite.set_scheduled_event`." + +msgid "The invite that was created." +msgstr "Приглашение, которое было создано." + +msgid ":class:`~discord.Invite`" +msgstr ":class:`~discord.Invite`" + +msgid "Invite creation failed." +msgstr "Не удалось создать приглашение." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "Переданный канал является категорией или невалидным каналом." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Возвращает список всех активных мгновенных приглашений с этого канала." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "Вы должны иметь :attr:`~discord.Permissions.manage_channels`, чтобы получить эту информацию." + +msgid "The list of invites that are currently active." +msgstr "Список приглашений, которые в данный момент активны." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "You do not have proper permissions to get the information." +msgstr "У вас нет соответствующих прав для получения этой информации." + +msgid "An error occurred while fetching the information." +msgstr "Произошла ошибка при получении информации." + +msgid "An ABC that details the common operations on a model that can send messages." +msgstr "ABC, в котором описаны общие операции над моделью, в которую можно отправлять сообщения." + +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 "Возвращает :class:`~discord.AsyncIterator`, который позволяет получать историю сообщений." + +msgid "You must have :attr:`~discord.Permissions.read_message_history` permissions to use this." +msgstr "У вас должно быть разрешение :attr:`~discord.Permissions.read_message_history`, чтобы использовать это." + +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 "Количество сообщений, которые необходимо получить. Если ``None``, то будет получено каждое сообщение в канале. Заметьте, что это делает операцию медленной." + +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 "Получение сообщений до указанной даты или сообщения. Если указана дата, то рекомендуется использовать время, соответствующее UTC. Если datetime не указан, предполагается, что это местное время." + +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 "Получение сообщений после указанной даты или сообщения. Если указана дата, то рекомендуется использовать время, соответствующее UTC. Если datetime не указан, предполагается, что это местное время." + +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 "Получение сообщений, относящихся к указанной дате или сообщению. Если указано дата, то рекомендуется использовать время, соответствующее UTC. Если datetime не указан, предполагается, что это местное время. При использовании этого аргумента максимальное ограничение равно 101. Обратите внимание, что если лимит - четное число, то будет возвращено не более лимита + 1 сообщений." + +msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." +msgstr "Если установлено значение ``True``, сообщения будут возвращаться в порядке старый -> новый. По умолчанию имеет значение ``True``, если указано ``after``, иначе ``False``." + +msgid "Yields" +msgstr "Выход" + +msgid ":class:`~discord.Message` -- The message with the message data parsed." +msgstr ":class:`~discord.Message` -- Сообщение с разобранными данными сообщения." + +msgid "You do not have permissions to get channel message history." +msgstr "У вас нет прав на получение истории сообщений канала." + +msgid "The request to get message history failed." +msgstr "Не удалось получить историю сообщений." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" + +msgid "Usage ::" +msgstr "Использование ::" + +msgid "Flattening into a list: ::" +msgstr "Сжатие в список: ::" + +msgid "All parameters are optional." +msgstr "Все параметры являются опциональными." + +msgid "Returns a context manager that allows you to type for an indefinite period of time." +msgstr "Возвращает контекстный менеджер, позволяющий печатать текст в течение неопределенного времени." + +msgid "This is useful for denoting long computations in your bot. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.context\\_managers.Typing\\``" +msgstr "Это удобно для обозначения длинных вычислений в вашем боте. :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 "Это одновременно и обычный, и асинхронный контекстный менеджер. Это означает, что с ним работают как ``with``, так и ``async with``." + +msgid "Example Usage: ::" +msgstr "Пример использования: ::" + +msgid "Sends a message to the destination with the content given." +msgstr "Отправляет сообщение с заданным содержимым." + +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 "Содержимое должно быть типом, который может быть преобразован в строку через ``str(content)``. Если для content задано значение ``None`` (по умолчанию), то необходимо указать параметр ``embed``." + +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 "Для загрузки одного файла параметр ``file`` должен использоваться с одним объектом :class:`~discord.File`. Для загрузки нескольких файлов параметр ``files`` следует использовать с :class:`list` включающим в себя :class:`~discord.File`. **Указание обоих параметров приведет к исключению**." + +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 "Для загрузки одного вложения параметр ``embed`` должен использоваться с одним объектом :class:`~discord.Embed`. Чтобы загрузить несколько вложений, параметр ``embeds`` следует использовать с :class:`list` включающим в себя :class:`~discord.Embed`. **Указание обоих параметров приведет к исключению**." + +msgid "The content of the message to send." +msgstr "Содержимое сообщения для отправки." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Указывает, следует ли отправлять сообщение с использованием технологии преобразования текста в речь." + +msgid "The rich embed for the content." +msgstr "Вложение для содержимого." + +msgid "The file to upload." +msgstr "Файл для загрузки." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "Список файлов для загрузки. Должно быть не более 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 "Nonce, используемый для отправки этого сообщения. Если сообщение было успешно отправлено, то оно будет иметь nonce с этим значением." + +msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" +msgstr "Нужно ли принудительно проверять :attr:`nonce`. .. versionadded:: 2.5" + +msgid "Whether :attr:`nonce` is enforced to be validated." +msgstr "Нужно ли принудительно проверять :attr:`nonce`." + +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 "Если указано, то количество секунд, которое нужно подождать в фоновом режиме перед удалением только что отправленного сообщения. Если удаление не удается, то оно молча игнорируется." + +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 "Управляет упоминаниями, обрабатываемыми в этом сообщении. Если это передано, то объект сливается с :attr:`~discord.Client.allowed_mentions`. Поведение слияния переопределяет только атрибуты, которые были явно переданы объекту, в противном случае используется атрибуты, установленные в :attr:`~discord.Client.allowed_mentions`. Если объект вообще не передается, то используются значения по умолчанию, указанные :attr:`~discord.Client.allowed_mentions`. .. 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 "Управляет упоминаниями, обрабатываемыми в этом сообщении. Если это передано, то объект сливается с :attr:`~discord.Client.allowed_mentions`. Поведение слияния переопределяет только атрибуты, которые были явно переданы объекту, в противном случае используется атрибуты, установленные в :attr:`~discord.Client.allowed_mentions`. Если объект вообще не передается, то используются значения по умолчанию, указанные :attr:`~discord.Client.allowed_mentions`." + +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 "Ссылка на :class:`~discord.Message`, на которое вы отвечаете; она может быть создана с помощью :meth:`~discord.Message.to_reference` или передана непосредственно как :class:`~discord.Message`. Вы можете контролировать, упоминается ли при этом автор ссылающегося сообщения, используя :attr:`~discord.AllowedMentions.replied_user` атрибут ``allowed_mentions`` или установив ``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 "Ссылка на :class:`~discord.Message`, на которое вы отвечаете; она может быть создана с помощью :meth:`~discord.Message.to_reference` или передана непосредственно как :class:`~discord.Message`. Вы можете контролировать, упоминается ли при этом автор ссылающегося сообщения, используя :attr:`~discord.AllowedMentions.replied_user` атрибут ``allowed_mentions`` или установив ``mention_author``." + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" +msgstr "Если установлено, переопределяет :attr:`~discord.AllowedMentions.replied_user` атрибут ``allowed_mentions``. .. versionadded:: 1.6" + +msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." +msgstr "Если установлено, переопределяет :attr:`~discord.AllowedMentions.replied_user` атрибут ``allowed_mentions``." + +msgid "A Discord UI View to add to the message." +msgstr "Discord UI View для добавления в сообщение." + +msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" +msgstr "Список вложений для загрузки. Должно быть не более 10. .. versionadded:: 2.0" + +msgid "A list of embeds to upload. Must be a maximum of 10." +msgstr "Список вложений для загрузки. Должно быть не более 10." + +msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" +msgstr "Список стикеров для загрузки. Должно быть не более 3. .. versionadded:: 2.0" + +msgid "A list of stickers to upload. Must be a maximum of 3." +msgstr "Список стикеров для загрузки. Должно быть не более 3." + +msgid "Whether to suppress embeds for the message." +msgstr "Нужно ли удалять вложения в сообщении." + +msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" +msgstr "Подавлять ли push- и настольные уведомления о сообщении. .. versionadded:: 2.4" + +msgid "Whether to suppress push and desktop notifications for the message." +msgstr "Подавлять ли push- и настольные уведомления о сообщении." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "Опрос для отправки. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "Опрос для отправки." + +msgid "The message that was sent." +msgstr "Сообщение, которое было отправлено." + +msgid ":class:`~discord.Message`" +msgstr ":class:`~discord.Message`" + +msgid "Sending the message failed." +msgstr "Не удалось отправить сообщение." + +msgid "You do not have the proper permissions to send the message." +msgstr "У вас нет соответствующих прав для отправки этого сообщения." + +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 "Список ``files`` не имеет подходящего размера, вы указали одновременно ``file`` и ``files``, или указали одновременно ``embed`` и ``embeds``, или объект ``reference`` не является объектом :class:`~discord.Message`, :class:`~discord.MessageReference` или :class:`~discord.PartialMessage`." + +msgid "Triggers a *typing* indicator to the destination." +msgstr "Запускает индикатор *печатает* к месту назначения." + +msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." +msgstr "Индикатор *печатает* погаснет через 10 секунд или после отправки сообщения." + +msgid "Retrieves a single :class:`~discord.Message` from the destination." +msgstr "Получает одно :class:`~discord.Message` из места назначения." + +msgid "The message ID to look for." +msgstr "Идентификатор сообщения для поиска." + +msgid "The message asked for." +msgstr "Запрашиваемое сообщение." + +msgid "The specified message was not found." +msgstr "Указанное сообщение не найдено." + +msgid "You do not have the permissions required to get a message." +msgstr "У вас нет прав, необходимых для получения сообщения." + +msgid "Retrieving the message failed." +msgstr "Получение сообщения не удалось." + +msgid "Retrieves all messages that are currently pinned in the channel." +msgstr "Получает все сообщения, которые в данный момент закреплены в канале." + +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 API, объекты :class:`.Message`, возвращаемые этим методом, не содержат полных данных :attr:`.Message.reactions`." + +msgid "The messages that are currently pinned." +msgstr "Сообщения, которые в данный момент закреплены." + +msgid "List[:class:`~discord.Message`]" +msgstr "List[:class:`~discord.Message`]" + +msgid "Retrieving the pinned messages failed." +msgstr "Не удалось получить закрепленные сообщения." + +msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." +msgstr "Возвращает значение :class:`bool`, указывающее, есть ли у вас разрешения на отправку объекта(ов)." + +msgid "Indicates whether you have the permissions to send the object(s)." +msgstr "Указывает, есть ли у вас разрешения на отправку объекта(ов)." + +msgid "An invalid type has been passed." +msgstr "Передан недопустимый тип." + +msgid "An ABC that details the common operations on a channel that can connect to a voice server." +msgstr "ABC, в котором описаны общие операции с каналом, в котором можно подключиться к голосовому серверу." + +msgid "This ABC is not decorated with :func:`typing.runtime_checkable`, so will fail :func:`isinstance`/:func:`issubclass` checks." +msgstr "У этого ABC нет декоратора :func:`typing.runtime_checkable`, поэтому он не пройдет проверку :func:`isinstance`/:func:`issubclass`." + diff --git a/docs/locales/ru/LC_MESSAGES/api/application_commands.po b/docs/locales/ru/LC_MESSAGES/api/application_commands.po new file mode 100644 index 0000000000..f70ca0be89 --- /dev/null +++ b/docs/locales/ru/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,877 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Commands" +msgstr "Команды приложения" + +msgid "Command Permission Decorators" +msgstr "Декораторы разрешений команд" + +msgid "A decorator that limits the usage of an application command to members with certain permissions." +msgstr "Декоратор, который ограничивает использование команды приложения для участников с определенными правами." + +msgid "The permissions passed in must be exactly like the properties shown under :class:`.discord.Permissions`." +msgstr "Передаваемые разрешения должны совпадать со свойствами :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 "Эти разрешения могут быть изменены администраторами сервера для каждой гильдии. Как таковые, они являются лишь \"значениями по умолчанию\", как следует из названия. Если вы хотите убедиться, что пользователь **всегда** имеет указанные права независимо от этого, вам следует использовать внутреннюю проверку, такую как :func:`~.ext.commands.has_permissions`." + +msgid "Parameters" +msgstr "Параметры" + +msgid "An argument list of permissions to check for." +msgstr "Список аргументов для проверки разрешений." + +msgid "Return type" +msgstr "Тип возврата" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\``" + +msgid "Example" +msgstr "Пример" + +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 "Декоратор, ограничивающий использование команды приложения контекстом гильдии. Команда не может быть использована в каналах личных сообщений." + +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 "Декоратор, ограничивающий использование команды приложения каналами и пользователями 18+. В гильдиях команда может быть использована только в каналах, помеченных как NSFW. В личных сообщениях пользователи должны разрешить использование команд с возрастными ограничениями через настройки приватности." + +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 "Команды" + +msgid "Shortcut Decorators" +msgstr "Короткие декораторы" + +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 "Возвращает" + +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 "Вызывает" + +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 "Объекты" + +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 "тип" + +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 "Выход" + +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 "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 "Опции" + +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 "Примеры" + +msgid "Basic usage: ::" +msgstr "Базовое использование: ::" + +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/ru/LC_MESSAGES/api/application_info.po b/docs/locales/ru/LC_MESSAGES/api/application_info.po new file mode 100644 index 0000000000..cae6b52bd0 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Application Info" +msgstr "Информация о приложении" + +msgid "Represents the application info for the bot provided by Discord." +msgstr "Представляет информацию о приложении для бота, предоставленную Discord." + +msgid "The application ID." +msgstr "ID приложения." + +msgid "type" +msgstr "тип" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The application name." +msgstr "Название приложения." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The application owner." +msgstr "Владелец приложения." + +msgid ":class:`User`" +msgstr ":class:`User`" + +msgid "The application's team." +msgstr "Команда приложения." + +msgid "Optional[:class:`Team`]" +msgstr "Optional[:class:`Team`]" + +msgid "The application description." +msgstr "Описание приложения." + +msgid "Whether the bot can be invited by anyone or if it is locked to the application owner." +msgstr "Может ли бот быть приглашен кем угодно, или он закрыт только для владельца приложения." + +msgid ":class:`bool`" +msgstr ":class:`bool`" + +msgid "Whether the bot requires the completion of the full OAuth2 code grant flow to join." +msgstr "Требуется ли боту завершить полный поток предоставления кода OAuth2, чтобы присоединиться." + +msgid "A list of RPC origin URLs, if RPC is enabled." +msgstr "Список URL-адресов RPC, если RPC включен." + +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 "Если это приложение является игрой, продаваемой в Discord, это поле будет сводкой страницы магазина его основной SKU." + +msgid "The hex encoded key for verification in interactions and the GameSDK's `GetTicket `_." +msgstr "Ключ в шестнадцатеричной кодировке для проверки во взаимодействиях и GameSDK `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 "Если это приложение является игрой, продаваемой в Discord, это поле будет сервером, к которому она была привязана." + +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 "Если это приложение является игрой, продаваемой в Discord, это поле будет идентификатором \"Game SKU\", который создается, если он существует." + +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, это поле будет URL-адресом, который ссылается на страницу в магазине." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The application's terms of service URL, if set." +msgstr "URL-адрес условий использования приложения, если установлено." + +msgid "The application's privacy policy URL, if set." +msgstr "URL-адрес политики конфиденциальности приложения, если установлено." + +msgid "Parameters" +msgstr "Параметры" + +msgid "Retrieves the application's icon asset, if any." +msgstr "Возвращает иконку приложения, если имеется." + +msgid "Retrieves the cover image on a store embed, if any." +msgstr "Возвращает обложку из магазина, если имеется." + +msgid "This is only available if the application is a game sold on Discord." +msgstr "Это доступно только в том случае, если приложение продается в Discord." + +msgid "If this application is a game sold on Discord, this field will be the guild to which it has been linked." +msgstr "Если это приложение является игрой, продаваемой в Discord, это поле будет сервером, к которому она была привязана." + +msgid "Represents a partial AppInfo given by :func:`~discord.abc.GuildChannel.create_invite`" +msgstr "Представляет частичную AppInfo, предоставленную :func:`~discord.abc.GuildChannel.create_invite`" + +msgid "Represents an application team for a bot provided by Discord." +msgstr "Представляет собой команду разработчиков бота, предоставляемого Discord." + +msgid "The team ID." +msgstr "Идентификатор команды." + +msgid "The team name." +msgstr "Название команды." + +msgid "The team's owner ID." +msgstr "Идентификатор владельца команды." + +msgid "A list of the members in the team." +msgstr "Список участников команды." + +msgid "List[:class:`TeamMember`]" +msgstr "List[:class:`TeamMember`]" + +msgid "Retrieves the team's icon asset, if any." +msgstr "Возвращает иконку команды, если имеется." + +msgid "The team's owner." +msgstr "Владелец команды." + +msgid "Represents a team member in a team." +msgstr "Представляет собой участника команды." + +msgid "Checks if two team members are equal." +msgstr "Проверяет, равны ли два участника команды." + +msgid "Checks if two team members are not equal." +msgstr "Проверяет, не равны ли два участника команды." + +msgid "Return the team member's hash." +msgstr "Возвращает хеш участника команды." + +msgid "Returns the team member's name with discriminator or global_name." +msgstr "Возвращает имя участника команды с дискриминатором или глобальным именем." + +msgid "The team member's username." +msgstr "Имя участника команды." + +msgid "The team member's unique ID." +msgstr "Уникальный идентификатор участника команды." + +msgid "The team member's discriminator. This is given when the username has conflicts." +msgstr "Дискриминатор участника команды. Дается когда имена пользователей конфликтуют." + +msgid "If the user has migrated to the new username system, this will always be \"0\"." +msgstr "Если пользователь мигрировал в новую систему имени пользователя, это всегда будет \"0\"." + +msgid "The team member's global name." +msgstr "Глобальное имя участника команды." + +msgid "The avatar hash the team member has. Could be ``None``." +msgstr "Хеш аватара участника команды. Может быть ``None``." + +msgid "Specifies if the user is a bot account." +msgstr "Определяет, является ли пользователь учетной записью бота." + +msgid "The team that the member is from." +msgstr "Команда, в которой состоит участник." + +msgid ":class:`Team`" +msgstr ":class:`Team`" + +msgid "The membership state of the member (e.g. invited or accepted)" +msgstr "Статус членства участника (например, приглашенный или принятый)" + +msgid ":class:`TeamMembershipState`" +msgstr ":class:`TeamMembershipState`" + diff --git a/docs/locales/ru/LC_MESSAGES/api/async_iter.po b/docs/locales/ru/LC_MESSAGES/api/async_iter.po new file mode 100644 index 0000000000..a5fa49d603 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Async Iterator" +msgstr "Асинхронный Итератор" + +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 возвращают \"асинхронный итератор\". Асинхронный итератор - это то, что может быть использовано в операторе :ref:`async for `." + +msgid "These async iterators can be used as follows: ::" +msgstr "Эти асинхронные итераторы можно использовать следующим образом: ::" + +msgid "Certain utilities make working with async iterators easier, detailed below." +msgstr "Некоторые утилиты облегчают работу с асинхронными итераторами, о них мы расскажем ниже." + +msgid "Represents the \"AsyncIterator\" concept. Note that no such class exists, it is purely abstract." +msgstr "Представляет концепцию \"AsyncIterator\". Обратите внимание, что такого класса не существует, он является чисто абстрактным." + +msgid "Iterates over the contents of the async iterator." +msgstr "Выполняет итерацию над содержимым асинхронного итератора." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Advances the iterator by one, if possible. If no more items are found then this raises :exc:`NoMoreItems`." +msgstr "Продвигает итератор на один элемент, если это возможно. Если больше не найдено ни одного элемента, то возникает исключение :exc:`NoMoreItems`." + +msgid "Similar to :func:`utils.get` except run over the async iterator." +msgstr "Аналогично :func:`utils.get`, только выполняется через асинхронный итератор." + +msgid "Getting the last message by a user named 'Dave' or ``None``: ::" +msgstr "Получение последнего сообщения от пользователя с именем 'Dave' или ``None``: ::" + +msgid "Similar to :func:`utils.find` except run over the async iterator." +msgstr "Аналогично :func:`utils.find`, только выполняется через асинхронный итератор." + +msgid "Unlike :func:`utils.find`\\, the predicate provided can be a |coroutine_link|_." +msgstr "В отличие от :func:`utils.find`\\, предоставленный предикат может быть |coroutine_link|_." + +msgid "Getting the last audit log with a reason or ``None``: ::" +msgstr "Получение последнего журнала аудита с указанием причины или ``None``: ::" + +msgid "Parameters" +msgstr "Параметры" + +msgid "The predicate to use. Could be a |coroutine_link|_." +msgstr "Предикат для использования. Может быть |coroutine_link|_." + +msgid "Returns" +msgstr "Возвращает" + +msgid "The first element that returns ``True`` for the predicate or ``None``." +msgstr "Первый элемент, который возвращает ``True`` для предиката или ``None``." + +msgid "Flattens the async iterator into a :class:`list` with all the elements." +msgstr "Переводит асинхронный итератор в :class:`list` со всеми элементами." + +msgid "A list of every element in the async iterator." +msgstr "Список каждого элемента в асинхронном итераторе." + +msgid "Return type" +msgstr "Возвращаемый тип" + +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 "Собирает элементы в чанки до заданного максимального размера. Возвращается другой :class:`AsyncIterator`, который собирает элементы в :class:`list`\\ы заданного размера. Максимальный размер чанка должен быть целым положительным числом." + +msgid "Collecting groups of users: ::" +msgstr "Сбор групп пользователей: ::" + +msgid "The last chunk collected may not be as large as ``max_size``." +msgstr "Последний собранный чанк может быть не таким большим, как ``max_size``." + +msgid "The size of individual chunks." +msgstr "Размер отдельных чанков." + +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 "Это похоже на встроенную функцию :func:`map `. Возвращается другой :class:`AsyncIterator`, который выполняет функцию на каждом итерируемым элементе. Эта функция может быть либо обычной функцией, либо |coroutine_link|_." + +msgid "Creating a content iterator: ::" +msgstr "Создание итератора содержимого: ::" + +msgid "The function to call on every element. Could be a |coroutine_link|_." +msgstr "Функция для вызова на каждом элементе. Может быть |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 "Это похоже на встроенную функцию :func:`filter `. Возвращается другой :class:`AsyncIterator`, который фильтрует исходный асинхронный итератор. Этот предикат может быть обычной функцией или |coroutine_link|_." + +msgid "Getting messages by non-bot accounts: ::" +msgstr "Получение сообщений от учетных записей, не являющихся ботами: ::" + +msgid "The predicate to call on every element. Could be a |coroutine_link|_." +msgstr "Предикат для вызова на каждом элементе. Может быть |coroutine_link|_." + diff --git a/docs/locales/ru/LC_MESSAGES/api/audit_logs.po b/docs/locales/ru/LC_MESSAGES/api/audit_logs.po new file mode 100644 index 0000000000..845a229ae8 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Audit Log Data" +msgstr "Данные журнала аудита" + +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 "Представляет собой запись в журнале аудита." + +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 "Проверяет, совпадают ли две записи." + +msgid "Checks if two entries are not equal." +msgstr "Проверяет две записи на неравенство." + +msgid "Returns the entry's hash." +msgstr "Возвращает хеш записи." + +msgid "Audit log entries are now comparable and hashable." +msgstr "Записи журнала аудита теперь хэшируемы и сравнимы." + +msgid "The action that was done." +msgstr "Совершенное действие." + +msgid "type" +msgstr "тип" + +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 "Пользователь, инициировавший это действие. Обычно :class:`Member`\\, в случае отсутствия :class:`User`." + +msgid "Optional[:class:`abc.User`]" +msgstr "Optional[:class:`abc.User`]" + +msgid "The entry ID." +msgstr "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 "Причина совершения данного действия." + +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 "Параметры" + +msgid "Returns the entry's creation time in UTC." +msgstr "Возвращает время создания записи в UTC." + +msgid "The category of the action, if applicable." +msgstr "Категория действия, если применимо." + +msgid "The list of changes this entry has." +msgstr "Список изменений в данной записи." + +msgid "The target's prior state." +msgstr "Предыдущее состояние цели." + +msgid "The target's subsequent state." +msgstr "Последующее состояние цели." + +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 "Категория" + +msgid "Description" +msgstr "Описание" + +msgid ":attr:`~AuditLogActionCategory.create`" +msgstr ":attr:`~AuditLogActionCategory.create`" + +msgid "All attributes are set to ``None``." +msgstr "Все атрибуты имеют значение ``None``." + +msgid ":attr:`~AuditLogActionCategory.delete`" +msgstr ":attr:`~AuditLogActionCategory.delete`" + +msgid "All attributes are set the value before deletion." +msgstr "Атрибутам задаются значения до удаления." + +msgid ":attr:`~AuditLogActionCategory.update`" +msgstr ":attr:`~AuditLogActionCategory.update`" + +msgid "All attributes are set the value before updating." +msgstr "Атрибутам задаются значения до обновления." + +msgid "``None``" +msgstr "``None``" + +msgid "No attributes are set." +msgstr "Атрибуты не задаются." + +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 "Имя чего-либо." + +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/ru/LC_MESSAGES/api/clients.po b/docs/locales/ru/LC_MESSAGES/api/clients.po new file mode 100644 index 0000000000..85ec152eb4 --- /dev/null +++ b/docs/locales/ru/LC_MESSAGES/api/clients.po @@ -0,0 +1,1567 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Client Objects" +msgstr "Объекты клиента" + +msgid "Bots" +msgstr "Боты" + +msgid "Represents a discord bot." +msgstr "Представляет собой дискорд-бота." + +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 "тип" + +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 "Возвращает" + +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 "Тип возврата" + +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 "Вызывает" + +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 "Параметры" + +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 "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 "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 "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 "Пример: ::" + +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/ru/LC_MESSAGES/api/cogs.po b/docs/locales/ru/LC_MESSAGES/api/cogs.po new file mode 100644 index 0000000000..fb9b432a15 --- /dev/null +++ b/docs/locales/ru/LC_MESSAGES/api/cogs.po @@ -0,0 +1,187 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Коги" + +msgid "The base class that all cogs must inherit from." +msgstr "Базовый класс, от которого должны наследоваться все коги." + +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 "Ког - это набор команд, слушателей и необязательных состояний, которые помогают сгруппировать команды. Более подробную информацию о них можно найти на странице :ref:`ext_commands_cogs`." + +msgid "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." +msgstr "При наследовании от этого класса опции, указанные в :class:`CogMeta`, одинаково актуальны и здесь." + +msgid "Returns" +msgstr "Возвращает" + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." +msgstr ":class:`list` включающий в себя :class:`.ApplicationCommand`\\ы которые определены внутри этого кога. .. note:: Сюда не входят подкоманды." + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." +msgstr ":class:`list` включающий в себя :class:`.ApplicationCommand`\\ы которые определены внутри этого кога." + +msgid "This does not include subcommands." +msgstr "Сюда не входят подкоманды." + +msgid "Return type" +msgstr "Тип возврата" + +msgid "List[:class:`.ApplicationCommand`]" +msgstr "List[:class:`.ApplicationCommand`]" + +msgid "Returns the cog's specified name, not the class name." +msgstr "Возвращает указанное имя кога, а не имя класса." + +msgid "Returns the cog's description, typically the cleaned docstring." +msgstr "Возвращает описание когда, обычно очищенный docstring." + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "Итератор, который рекурсивно перебирает команды и подкоманды этого кога." + +msgid "Yields" +msgstr "Выход" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- Команда или группа из кога." + +msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." +msgstr "Возвращает :class:`list` (имя, функция) слушателей, которые определены в этом коге." + +msgid "The listeners defined in this cog." +msgstr "Слушатели, определенные в этом коге." + +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 "Декоратор, который помечает функцию как слушателя." + +msgid "This is the cog equivalent of :meth:`.Bot.listen`." +msgstr "Это эквивалентно :meth:`.Bot.listen`." + +msgid "Parameters" +msgstr "Параметры" + +msgid "The name of the event being listened to. If not provided, it defaults to the function's name." +msgstr "Имя прослушиваемого события. Если оно не указано, то по умолчанию используется имя функции." + +msgid "If this listener should only be called once after each cog load. Defaults to false." +msgstr "Если этот слушатель должен вызываться только один раз после каждой загрузки кога." + +msgid "Raises" +msgstr "Вызывает" + +msgid "The function is not a coroutine function or a string was not passed as the name." +msgstr "Функция не является короутинной функцией или в качестве имени не была передана строка." + +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 "Проверяет, есть ли у кога обработчик ошибок. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that is called when the cog gets removed." +msgstr "Специальный метод, который вызывается, когда ког удаляется." + +msgid "This function **cannot** be a coroutine. It must be a regular function." +msgstr "Эта функция **не может** быть короутиной. Она должна быть обычной функцией." + +msgid "Subclasses must replace this if they want special unloading behaviour." +msgstr "Подклассы должны заменить ее, если им нужно особое поведение при выгрузке кога." + +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 "Специальный метод, который регистрируется как проверка :meth:`.Bot.check_once`." + +msgid "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." +msgstr "Эта функция **может** быть короутиной и должна принимать единственный параметр, ``ctx``, представляющий собой :class:`.Context` или :class:`.ApplicationContext`." + +msgid "The invocation context." +msgstr "Контекст вызова." + +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 "Специальный метод, который регистрируется как проверка:meth:`.Bot.check`." + +msgid "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." +msgstr "Специальный метод, который регистрируется как :func:`~discord.ext.commands.check` для каждой команды и подкоманды в этом коге." + +msgid "A special method that is called whenever an error is dispatched inside this cog." +msgstr "Специальный метод, который вызывается всякий раз, когда внутри этого кога происходит ошибка." + +msgid "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." +msgstr "Это похоже на :func:`.on_command_error`, только применяется к командам внутри этого кога." + +msgid "This **must** be a coroutine." +msgstr "Это **должно** быть короутиной." + +msgid "The invocation context where the error happened." +msgstr "Контекст вызова, в котором произошла ошибка." + +msgid "The error that happened." +msgstr "Ошибка, которая произошла." + +msgid "A special method that acts as a cog local pre-invoke hook." +msgstr "Специальный метод, который действует как локальный хук кога предварительного вызова." + +msgid "This is similar to :meth:`.ApplicationCommand.before_invoke`." +msgstr "Это похоже на :meth:`.ApplicationCommand.before_invoke`." + +msgid "A special method that acts as a cog local post-invoke hook." +msgstr "Специальный метод, который действует как локальный хук кога после вызова." + +msgid "This is similar to :meth:`.ApplicationCommand.after_invoke`." +msgstr "Это похоже на :meth:`.ApplicationCommand.after_invoke`." + +msgid "A metaclass for defining a cog." +msgstr "Метакласс для определения кога." + +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 "Обратите внимание, что вам, вероятно, не следует использовать его напрямую. Он используется исключительно в целях документации, а также для создания пользовательских метаклассов для смешивания с другими метаклассами, такими как метакласс :class:`abc.ABCMeta`." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "Например, чтобы создать абстрактный класс cog mixin, нужно сделать следующее." + +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 "При передаче атрибута метакласса, который документирован ниже, обратите внимание, что вы должны передавать его как аргумент создания класса, содержащий только ключевое слово, как показано в следующем примере:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "Имя кога. По умолчанию это имя класса без изменений." + +msgid "type" +msgstr "тип" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "Описание кога. По умолчанию это очищенный docstring класса." + +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 "Список атрибутов, применяемых к каждой команде внутри этого кога. Словарь передается в опции :class:`Command`` при ``__init__``. Если вы укажете атрибуты внутри атрибута command в классе, то он будет переопределять тот, который указан внутри этого атрибута. Например:" + +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 "Сокращение для :attr:`.command_attrs`, какие ``guild_ids`` должны быть у всех команд приложения в cog. Вы можете переопределить это, установив ``guild_ids`` для каждой команды." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + diff --git a/docs/locales/ru/LC_MESSAGES/api/data_classes.po b/docs/locales/ru/LC_MESSAGES/api/data_classes.po new file mode 100644 index 0000000000..4d1ccf3b2b --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\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 "тип" + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Parameters" +msgstr "Параметры" + +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 "Возвращает хеш флага." + +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 "Тип возврата" + +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 "Возвращает" + +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 "Вызывает" + +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/ru/LC_MESSAGES/api/enums.po b/docs/locales/ru/LC_MESSAGES/api/enums.po new file mode 100644 index 0000000000..a41d1de43a --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\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/ru/LC_MESSAGES/api/events.po b/docs/locales/ru/LC_MESSAGES/api/events.po new file mode 100644 index 0000000000..c658367149 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\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 "Параметры" + +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/ru/LC_MESSAGES/api/exceptions.po b/docs/locales/ru/LC_MESSAGES/api/exceptions.po new file mode 100644 index 0000000000..9cf43b1e5e --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Exceptions" +msgstr "Исключения" + +msgid "Exception Hierarchy" +msgstr "Иерархия исключений" + +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 "Объекты" + +msgid "The following exceptions are thrown by the library." +msgstr "Библиотека вызывает следующие исключения." + +msgid "Base exception class for pycord" +msgstr "Базовый класс исключения pycord" + +msgid "Ideally speaking, this could be caught to handle any exceptions raised from this library." +msgstr "В идеале, это может быть сделано для обработки любых исключений, возникающих при работе с этой библиотекой." + +msgid "Exception that's raised when an operation in the :class:`Client` fails." +msgstr "Исключение, возникающее при неудачном выполнении операции в :class:`Client`." + +msgid "These are usually for exceptions that happened due to user input." +msgstr "Обычно они предназначены для исключений, возникших из-за ввода данных пользователем." + +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 "Исключение, возникающее, когда функция :meth:`Client.login` не смогла войти в систему из-за неправильных учетных данных или других ошибок." + +msgid "Exception that is raised when an async iteration operation has no more items." +msgstr "Исключение, возникающее, когда в асинхронной итерационной операции больше нет элементов." + +msgid "Exception that's raised when an HTTP request operation fails." +msgstr "Исключение, возникающее при неудачном HTTP-запросе." + +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 "Ответ на неудачный HTTP-запрос. Это экземпляр :class:`aiohttp.ClientResponse`. В некоторых случаях это также может быть экземпляр :class:`requests.Response`." + +msgid "type" +msgstr "тип" + +msgid ":class:`aiohttp.ClientResponse`" +msgstr ":class:`aiohttp.ClientResponse`" + +msgid "The text of the error. Could be an empty string." +msgstr "Текст ошибки. Может быть пустой строкой." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The status code of the HTTP request." +msgstr "Код статуса HTTP-запроса." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "The Discord specific error code for the failure." +msgstr "Код ошибки, связанный со сбоем в Discord." + +msgid "Parameters" +msgstr "Параметры" + +msgid "Exception that's raised for when status code 403 occurs." +msgstr "Исключение, возникающее при появлении кода состояния 403." + +msgid "Subclass of :exc:`HTTPException`" +msgstr "Подкласс :exc:`HTTPException`" + +msgid "Exception that's raised for when status code 404 occurs." +msgstr "Исключение, возникающее при появлении кода состояния 404." + +msgid "Exception that's raised for when a 500 range status code occurs." +msgstr "Исключение, возникающее при появлении кода состояния в диапазоне 500." + +msgid "Subclass of :exc:`HTTPException`." +msgstr "Подкласс :exc:`HTTPException`." + +msgid "Exception that's raised when the library encounters unknown or invalid data from Discord." +msgstr "Исключение, возникающее, когда библиотека получает неизвестные или недействительные данные из Discord." + +msgid "Exception that's raised when an argument to a function is invalid some way (e.g. wrong value or wrong type)." +msgstr "Исключение, возникающее, когда аргумент функции каким-либо образом недействителен (например, имеет неправильное значение или неправильный тип)." + +msgid "This could be considered the parallel of ``ValueError`` and ``TypeError`` except inherited from :exc:`ClientException` and thus :exc:`DiscordException`." +msgstr "Это можно считать параллелью ``ValueError`` и ``TypeError``, только унаследованной от :exc:`ClientException`` и, соответственно, :exc:`DiscordException``." + +msgid "An exception that is raised when the gateway for Discord could not be found" +msgstr "Исключение, которое возникает, когда шлюз для Discord не может быть найден" + +msgid "Exception that's raised when the gateway connection is closed for reasons that could not be handled internally." +msgstr "Исключение, возникающее, когда соединение со шлюзом закрывается по причинам, которые не могут быть обработаны." + +msgid "The close code of the websocket." +msgstr "Код закрытия веб-сокета." + +msgid "The reason provided for the closure." +msgstr "Причина закрытия." + +msgid "The shard ID that got closed if applicable." +msgstr "Идентификатор шарда, который был закрыт, если применимо." + +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 "Исключение, возникающее, когда шлюз запрашивает привилегированные намерения, но они еще не включены на странице разработчика." + +msgid "Go to https://discord.com/developers/applications/ and enable the intents that are required. Currently, these are as follows:" +msgstr "Перейдите на страницу https://discord.com/developers/applications/ и включите необходимые намерения. В настоящее время они следующие:" + +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 "Исключение, возникающее при отправке еще одного ответа на интеракцию с помощью :class:`InteractionResponse`, когда один уже был сделан ранее." + +msgid "An interaction can only respond once." +msgstr "На интеракцию можно ответить только один раз." + +msgid "The interaction that's already been responded to." +msgstr "Интеракция, на которое уже был дан ответ." + +msgid ":class:`Interaction`" +msgstr ":class:`Interaction`" + +msgid "An exception that is thrown for libopus related errors." +msgstr "Исключение, которое выбрасывается при ошибках, связанных с libopus." + +msgid "The error code returned." +msgstr "Возвращенный код ошибки." + +msgid "An exception that is thrown for when libopus is not loaded." +msgstr "Исключение, возникающее, когда libopus не загружен." + +msgid "The base exception type for all application command related errors." +msgstr "Базовый тип исключения для всех ошибок, связанных с командами приложения." + +msgid "This inherits from :exc:`DiscordException`." +msgstr "Наследуется от :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 "Это исключение и унаследованные от него исключения обрабатываются особым образом, поскольку они перехватываются и передаются в специальное событие из :class:`.Bot`\\, :func:`.on_command_error`." + +msgid "Exception raised when the predicates in :attr:`.Command.checks` have failed." +msgstr "Исключение поднимается, если предикаты в :attr:`.Command.checks` не сработали." + +msgid "This inherits from :exc:`ApplicationCommandError`" +msgstr "Наследуется от :exc:`ApplicationCommandError`" + +msgid "Exception raised when the command being invoked raised an exception." +msgstr "Исключение, возникающее, когда вызываемая команда вызывает исключение." + +msgid "The original exception that was raised. You can also get this via the ``__cause__`` attribute." +msgstr "Первоначальное исключение, которое было поднято. Вы также можете получить его через атрибут ``__cause__``." + +msgid "Base exception for extension related errors." +msgstr "Базовое исключение для ошибок, связанных с расширением." + +msgid "This inherits from :exc:`~discord.DiscordException`." +msgstr "Оно наследуется от :exc:`~discord.DiscordException`." + +msgid "The extension that had an error." +msgstr "Расширение, в котором произошла ошибка." + +msgid "An exception raised when an extension has already been loaded." +msgstr "Исключение, возникающее, когда расширение уже было загружено." + +msgid "This inherits from :exc:`ExtensionError`" +msgstr "Наследуется от :exc:`ExtensionError`" + +msgid "An exception raised when an extension was not loaded." +msgstr "Исключение, возникающее, когда расширение не было загружено." + +msgid "An exception raised when an extension does not have a ``setup`` entry point function." +msgstr "Исключение, возникающее, когда расширение не имеет функции точки входа ``setup``." + +msgid "An exception raised when an extension failed to load during execution of the module or ``setup`` entry point." +msgstr "Исключение, возникающее, когда расширение не удалось загрузить во время выполнения модуля или точки входа ``setup``." + +msgid "The extension that had the error." +msgstr "Расширение, в котором возникла ошибка." + +msgid "An exception raised when an extension is not found." +msgstr "Исключение, возникающее, когда расширение не найдено." + +msgid "Made the ``original`` attribute always None." +msgstr "Атрибут ``original`` теперь всегда None." + +msgid "Raised when a Sink error occurs." +msgstr "Возбуждается при возникновении ошибки Sink." + +msgid "Exception that's thrown when there is an error while trying to record audio from a voice channel." +msgstr "Исключение, которое выбрасывается при ошибке во время попытки записи звука с голосового канала." + +msgid "Exception thrown when an exception occurs with :class:`WaveSink`" +msgstr "Исключение, возникающее при возникновении исключения в :class:`WaveSink`" + +msgid "Exception thrown when an exception occurs with :class:`MP3Sink`" +msgstr "Исключение, возникающее при возникновении исключения в :class:`MP3Sink`" + +msgid "Exception thrown when an exception occurs with :class:`MP4Sink`" +msgstr "Исключение, возникающее при возникновении исключения в :class:`MP4Sink`" + +msgid "Exception thrown when an exception occurs with :class:`M4ASink`" +msgstr "Исключение, возникающее при возникновении исключения в :class:`M4ASink`" + +msgid "Exception thrown when an exception occurs with :class:`MKVSink`" +msgstr "Исключение, возникающее при возникновении исключения в :class:`MKVSink`" + +msgid "Exception thrown when an exception occurs with :class:`MKASink`" +msgstr "Исключение, возникающее при возникновении исключения в :class:`MKASink`" + +msgid "Exception thrown when an exception occurs with :class:`OGGSink`" +msgstr "Исключение, возникающее при возникновении исключения в :class:`OGGSink`" + diff --git a/docs/locales/ru/LC_MESSAGES/api/index.po b/docs/locales/ru/LC_MESSAGES/api/index.po new file mode 100644 index 0000000000..cf7fdd3a9a --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Table of Contents" +msgstr "Содержания" + +msgid "API Reference" +msgstr "Справочник по API" + +msgid "The following section outlines the API of Pycord." +msgstr "Следующий раздел описывает API 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 "Этот модуль использует модуль logging для регистрации диагностических данных и ошибок независимым от вывода способом. Если модуль протоколирования не настроен, эти журналы не будут выводиться никуда. Смотрите :ref:`logging_setup` для получения дополнительной информации о том, как настроить и использовать модуль logging в Pycord." + diff --git a/docs/locales/ru/LC_MESSAGES/api/models.po b/docs/locales/ru/LC_MESSAGES/api/models.po new file mode 100644 index 0000000000..19d6412c71 --- /dev/null +++ b/docs/locales/ru/LC_MESSAGES/api/models.po @@ -0,0 +1,7804 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\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 "Параметры" + +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 "Тип возврата" + +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 "Возвращает" + +msgid "The newly updated asset." +msgstr "The newly updated asset." + +msgid ":class:`Asset`" +msgstr ":class:`Asset`" + +msgid "Raises" +msgstr "Вызывает" + +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 "тип" + +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 "Возвращает хеш пользователя." + +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 "Имя пользователя." + +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 "Глобальное имя пользователя." + +msgid "Specifies if the user is a bot account." +msgstr "Определяет, является ли пользователь учетной записью бота." + +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 "Возвращает строку, которая позволяет упомянуть этого пользователя." + +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 "Если пользователь мигрировал в новую систему имени пользователя, это всегда будет \"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 "Позиция в списке каналов. Это число, которое начинается с 0. Например, верхний канал имеет позицию 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 "У вас нет соответствующих прав для создания этого канала." + +msgid "Creating the channel failed." +msgstr "Не удалось создать канал." + +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 "У вас нет соответствующих прав для получения этой информации." + +msgid "This user is not banned." +msgstr "This user is not banned." + +msgid "An error occurred while fetching the information." +msgstr "Произошла ошибка при получении информации." + +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 "Причина совершения данного действия. Отображается в журнале аудита." + +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 "Список приглашений, которые в данный момент активны." + +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 "Retrieves a :class:`Role` that the guild has." +msgstr "Retrieves a :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider using :attr:`get_role` instead." +msgstr "This method is an API call. For general usage, consider using :attr:`get_role` instead." + +msgid "The role in the guild with the specified ID." +msgstr "The role in the guild with the specified ID." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "Retrieving the role failed." +msgstr "Retrieving the role 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 "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 "Строка, которая позволяет упомянуть канал." + +msgid "Returns the channel's creation time in UTC." +msgstr "Возвращает время создания канала в 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 "Возвращает 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 "Возвращает хеш роли." + +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 "Обрабатывает разрешения для :class:`~discord.Member` или :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 "Объект, для которого необходимо вычислить разрешения. Это может быть либо участник, либо роль. Если это роль, то переопределение прав для участников не вычисляется." + +msgid "The resolved permissions for the member or role." +msgstr "Вычисленные разрешения для участника или роли." + +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 "Название канала." + +msgid "The guild the channel belongs to." +msgstr "Сервер к которому принадлежит канал." + +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 "Клонирует данный канал. Создает канал с такими же свойствами, что и этот канал." + +msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." +msgstr "Для этого у вас должно быть разрешение :attr:`~discord.Permissions.manage_channels`." + +msgid "The name of the new channel. If not provided, defaults to this channel name." +msgstr "Имя нового канала. Если не указано, по умолчанию используется имя этого канала." + +msgid "The reason for cloning this channel. Shows up on the audit log." +msgstr "Причина клонирования этого канала. Отображается в журнале аудита." + +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 "Категория, к которой принадлежит канал." + +msgid "If there is no category then this is ``None``." +msgstr "Если нет категории, то это ``None``." + +msgid "Returns a list of roles that have been overridden from their default values in the :attr:`~discord.Guild.roles` attribute." +msgstr "Возвращает список ролей, которые были переопределены по сравнению с их значениями по умолчанию в атрибуте :attr:`~discord.Guild.roles`." + +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 "Создает мгновенное приглашение из текстового или голосового канала." + +msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." +msgstr "Для этого у вас должно быть разрешение :attr:`~discord.Permissions.create_instant_invite`." + +msgid "How long the invite should last in seconds. If it's 0 then the invite doesn't expire. Defaults to ``0``." +msgstr "Сколько времени должно длиться действие приглашения в секундах. Если значение равно 0, то срок действия приглашения не истекает. По умолчанию ``0``." + +msgid "How many uses the invite could be used for. If it's 0 then there are unlimited uses. Defaults to ``0``." +msgstr "Сколько раз приглашение может быть использовано. Если значение равно 0, то количество использований не ограничено. По умолчанию ``0``." + +msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." +msgstr "Обозначает, что приглашение предоставляет временное членство (т.е. если участнику не была назначена роль, то он автоматически выгоняется после отключения). По умолчанию имеет значение ``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 "Указывает, следует ли создавать уникальный URL-адрес приглашения. По умолчанию имеет значение True. Если установить значение ``False``, то будет возвращено ранее созданное приглашение." + +msgid "The reason for creating this invite. Shows up on the audit log." +msgstr "Причина создания этого приглашения. Отображается в журнале аудита." + +msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" +msgstr "Тип цели для приглашения в голосовой канал, если таковой имеется. .. versionadded:: 2.0" + +msgid "The type of target for the voice channel invite, if any." +msgstr "Тип цели для приглашения в голосовой канал, если таковой имеется." + +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 "Пользователь, чей стрим должен отображаться в этом приглашении; требуется, если `target_type` - `TargetType.stream`. Пользователь должен стримить в этом канале. .. 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 "Пользователь, чей стрим должен отображаться в этом приглашении; требуется, если `target_type` - `TargetType.stream`. Пользователь должен стримить в этом канале." + +msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`. .. versionadded:: 2.0" +msgstr "Идентификатор встроенного приложения для приглашения, требуется, если `target_type` имеет значение `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 "Идентификатор встроенного приложения для приглашения, требуется, если `target_type` имеет значение `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 "Объект запланированного события для привязки к событию. Сокращение от :meth:`.Invite.set_scheduled_event` См. дополнительные сведения о привязке приглашений к событиям в :meth:`.Invite.set_scheduled_event`. .. versionadded:: 2.0" + +msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" +msgstr "Объект запланированного события для привязки к событию. Сокращение от :meth:`.Invite.set_scheduled_event`" + +msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." +msgstr "Дополнительную информацию о привязке приглашений к событиям см. в разделе :meth:`.Invite.set_scheduled_event`." + +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 "Не удалось создать приглашение." + +msgid "The channel that was passed is a category or an invalid channel." +msgstr "Переданный канал является категорией или невалидным каналом." + +msgid "Deletes the channel." +msgstr "Удаляет канал." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." +msgstr "У вас должно быть разрешение :attr:`~discord.Permissions.manage_channels`, чтобы использовать это." + +msgid "The reason for deleting this channel. Shows up on the audit log." +msgstr "Причина удаления этого канала. Отображается в журнале аудита." + +msgid "You do not have proper permissions to delete the channel." +msgstr "У вас нет соответствующих прав для удаления канала." + +msgid "The channel was not found or was already deleted." +msgstr "Канал не найден или уже был удален." + +msgid "Deleting the channel failed." +msgstr "Не удалось удалить канал." + +msgid "Returns a list of all active instant invites from this channel." +msgstr "Возвращает список всех активных мгновенных приглашений с этого канала." + +msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." +msgstr "Вы должны иметь :attr:`~discord.Permissions.manage_channels`, чтобы получить эту информацию." + +msgid "List[:class:`~discord.Invite`]" +msgstr "List[:class:`~discord.Invite`]" + +msgid "Returns a URL that allows the client to jump to the channel." +msgstr "Возвращает URL, который позволяет клиенту перейти к каналу." + +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 "Богатый интерфейс, позволяющий перемещать канал относительно других каналов." + +msgid "If exact position movement is required, ``edit`` should be used instead." +msgstr "Если требуется точное перемещение позиции, вместо этого следует использовать ``edit``." + +msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." +msgstr "Голосовые каналы всегда будут отсортированы ниже текстовых." + +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 "Перемещать ли канал в начало списка каналов (или в категорию, если она задана). Этот параметр является взаимоисключающим для ``end``, ``before`` и ``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 "Перемещать ли канал в конец списка каналов (или категории, если она задана). Этот параметр является взаимоисключающим для ```beginning``, ``before`` и ``after``." + +msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." +msgstr "Канал, который должен быть перед нашим текущим каналом. Это взаимоисключающее значение с ``beginning``, ``end`` и ``after``." + +msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." +msgstr "Канал, который должен быть после нашего текущего канала. Это взаимоисключающее значение с ``beginning``, ``end`` и ``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 "Количество каналов, на которое нужно сместить канал. Например, смещение ``2`` с ``beginning=True`` переместит его на 2 после начала списка каналов. Положительное число перемещает его ниже, а отрицательное - выше. Обратите внимание, что это число является относительным и вычисляется после параметров ``beginning``, ``end``, ``before`` и ``after``." + +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 "Категория, в которую нужно переместить этот канал. Если задано ``None``, то он будет перемещен из категории. Этот параметр игнорируется при перемещении категории." + +msgid "Whether to sync the permissions with the category (if given)." +msgstr "Нужно ли синхронизировать разрешения с категорией (если указана)." + +msgid "The reason for the move." +msgstr "Причина перемещения." + +msgid "An invalid position was given or a bad mix of arguments was passed." +msgstr "Была указана невалидная позиция или передано неверное сочетание аргументов." + +msgid "You do not have permissions to move the channel." +msgstr "У вас нет прав для перемещения канала." + +msgid "Moving the channel failed." +msgstr "Не удалось переместить канал." + +msgid "Returns all of the channel's overwrites." +msgstr "Возвращает все переопределения прав канала." + +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 "Это возвращается как словарь, где ключ содержит цель, которая может быть :class:`~discord.Role` или :class:`~discord.Member`, а значением является :class:`~discord.PermissionOverwrite`." + +msgid "The channel's permission overwrites." +msgstr "Переопределения прав канала." + +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 "Возвращает переопределения прав канала для участника или роли." + +msgid "The role or user denoting whose overwrite to get." +msgstr "Роль или пользователь, обозначающий, чьи переопределения необходимо получить." + +msgid "The permission overwrites for this object." +msgstr "Переопределенные разрешения для этого объекта." + +msgid ":class:`~discord.PermissionOverwrite`" +msgstr ":class:`~discord.PermissionOverwrite`" + +msgid "This function takes into consideration the following cases:" +msgstr "Эта функция учитывает следующие случаи:" + +msgid "Guild owner" +msgstr "Владелец сервера" + +msgid "Guild roles" +msgstr "Роли сервера" + +msgid "Channel overrides" +msgstr "Переопределения канала" + +msgid "Member overrides" +msgstr "Переопределения участника" + +msgid "If a :class:`~discord.Role` is passed, then it checks the permissions someone with that role would have, which is essentially:" +msgstr "Если передана :class:`~discord.Role`, то проверяются разрешения, которыми будет обладать человек с этой ролью, что, по сути, является проверкой:" + +msgid "The default role permissions" +msgstr "Права доступа роли по умолчанию" + +msgid "The permissions of the role used as a parameter" +msgstr "Права доступа роли, используемой в качестве параметра" + +msgid "The default role permission overwrites" +msgstr "Переопределения прав доступа роли по умолчанию" + +msgid "The permission overwrites of the role used as a parameter" +msgstr "Переопределения прав доступа роли, используемой в качестве параметра" + +msgid "The object passed in can now be a role object." +msgstr "Теперь передаваемый объект может быть объектом роли." + +msgid "Whether the permissions for this channel are synced with the category it belongs to." +msgstr "Будут ли права доступа этого канала синхронизированы с категорией, к которой он принадлежит." + +msgid "If there is no category then this is ``False``." +msgstr "Если нет категории, то это ``False``." + +msgid "Sets the channel specific permission overwrites for a target in the channel." +msgstr "Устанавливает переопределение прав доступа для цели в канале." + +msgid "The ``target`` parameter should either be a :class:`~discord.Member` or a :class:`~discord.Role` that belongs to guild." +msgstr "Параметр ``target`` должен быть либо :class:`~discord.Member`, либо :class:`~discord.Role`, принадлежащие этому серверу." + +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 "Параметр ``overwrite``, если указано, должен быть ``None`` или :class:`~discord.PermissionOverwrite`. Для удобства вы можете передать ключевые аргументы, означающие :class:`~discord.Permissions`. Если это сделано, вы не можете смешивать ключевые аргументы с параметром ``overwrite``." + +msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." +msgstr "Если параметр ``overwrite`` это ``None``, то переопределения прав удаляются." + +msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." +msgstr "У вас должно быть разрешение :attr:`~discord.Permissions.manage_roles`, чтобы использовать это." + +msgid "This method *replaces* the old overwrites with the ones given." +msgstr "Этот метод *заменяет* старые переопределения с указанными." + +msgid "Setting allow and deny: ::" +msgstr "Настройка разрешений и запретов: ::" + +msgid "Deleting overwrites ::" +msgstr "Удаление переопределений: ::" + +msgid "Using :class:`~discord.PermissionOverwrite` ::" +msgstr "Использование :class:`~discord.PermissionOverwrite` ::" + +msgid "The member or role to overwrite permissions for." +msgstr "Участник или роль для переопределения прав доступа." + +msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." +msgstr "Разрешения, которые следует разрешить и запретить для цели, или ``None`` для удаления переопределения." + +msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." +msgstr "Список ключевых аргументов, которые можно установить для удобства использования. Не может быть использован вместе с ``overwrite``." + +msgid "You do not have permissions to edit channel specific permissions." +msgstr "У вас нет прав для редактирования разрешений канала." + +msgid "Editing channel specific permissions failed." +msgstr "Изменение переопределений прав доступа не удалось." + +msgid "The role or member being edited is not part of the guild." +msgstr "Редактируемая роль или участник не принадлежит серверу этого канала." + +msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." +msgstr "Параметр overwrite невалидный или целевой тип не является :class:`~discord.Role` или :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 "Пользователь, представляющий себя." + +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 "Совершенное действие." + +msgid ":class:`AuditLogAction`" +msgstr ":class:`AuditLogAction`" + +msgid "The entry ID." +msgstr "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 "Причина совершения данного действия." + +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/ru/LC_MESSAGES/api/sinks.po b/docs/locales/ru/LC_MESSAGES/api/sinks.po new file mode 100644 index 0000000000..ec4bf51600 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Sinks" +msgstr "Sinks" + +msgid "Core" +msgstr "Ядро" + +msgid "Filters for :class:`~.Sink`" +msgstr "Фильтры для :class:`~.Sink`" + +msgid "Parameters" +msgstr "Параметры" + +msgid "Container of all Filters." +msgstr "Контейнер всех Фильтров." + +msgid "A sink \"stores\" recorded audio data." +msgstr "Sink \"хранит\" записанные аудиоданные." + +msgid "Can be subclassed for extra customizablilty." +msgstr "Может быть подклассом для дополнительной настройки." + +msgid "It is recommended you use the officially provided sink classes, such as :class:`~discord.sinks.WaveSink`." +msgstr "Рекомендуется использовать официально предоставленные классы Sink, такие как :class:`~discord.sinks.WaveSink`." + +msgid "just replace the following like so: ::" +msgstr "просто замените это следующим образом: ::" + +msgid "Raises" +msgstr "Вызывает" + +msgid "An invalid encoding type was specified." +msgstr "Был указан неверный тип кодировки." + +msgid "Audio may only be formatted after recording is finished." +msgstr "Форматировать аудио можно только после завершения записи." + +msgid "Gets all audio files." +msgstr "Получает все аудиофайлы." + +msgid "Gets the audio file(s) of one specific user." +msgstr "Получает аудиофайл(ы) одного конкретного пользователя." + +msgid "Handles data that's been completely decrypted and decoded and is ready to be saved to file." +msgstr "Работает с данными, которые были полностью расшифрованы и декодированы и готовы к сохранению в файл." + +msgid "Writes audio data." +msgstr "Запись аудиоданных." + +msgid "The AudioData is already finished writing." +msgstr "Запись AudioData уже завершена." + +msgid "Finishes and cleans up the audio data." +msgstr "Завершает и очищает аудиоданные." + +msgid "Called when audio data is formatted." +msgstr "Вызывается при форматировании аудиоданных." + +msgid "The AudioData is still writing." +msgstr "AudioData продолжает писать." + +msgid "Handles raw data from Discord so that it can be decrypted and decoded to be used." +msgstr "Обрабатывает необработанные данные из Discord, чтобы их можно было расшифровать и использовать." + +msgid "Sink Classes" +msgstr "Классы Sink" + +msgid "A special sink for .wav(wave) files." +msgstr "Специальный Sink для файлов .wav (wave)." + +msgid "Formats the recorded audio." +msgstr "Форматирует записанный звук." + +msgid "Formatting the audio failed." +msgstr "Форматирование звука не удалось." + +msgid "A special sink for .mp3 files." +msgstr "Специальный Sink для файлов .mp3." + +msgid "A special sink for .mp4 files." +msgstr "Специальный Sink для файлов .mp4." + +msgid "A special sink for .m4a files." +msgstr "Специальный Sink для файлов .m4a." + +msgid "A special sink for .mkv files." +msgstr "Специальный Sink для файлов .mkv." + +msgid "A special sink for .mka files." +msgstr "Специальный Sink для файлов .mka." + +msgid "A special sink for .ogg files." +msgstr "Специальный Sink для файлов .ogg." + diff --git a/docs/locales/ru/LC_MESSAGES/api/ui_kit.po b/docs/locales/ru/LC_MESSAGES/api/ui_kit.po new file mode 100644 index 0000000000..eb112c5e37 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\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 "Параметры" + +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 "Тип возврата" + +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 "Объекты" + +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 "тип" + +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 "Возвращает" + +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 "Вызывает" + +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/ru/LC_MESSAGES/api/utils.po b/docs/locales/ru/LC_MESSAGES/api/utils.po new file mode 100644 index 0000000000..085f1b7189 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Utility Functions" +msgstr "Полезные функции" + +msgid "A helper to return the first element found in the sequence that meets the predicate. For example: ::" +msgstr "Помощник, возвращающий первый найденный элемент в последовательности, удовлетворяющий предикату. Например: ::" + +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 "найдет первый :class:`~discord.Member`, имя которого равно 'Mighty', и вернет его. Если запись не найдена, то возвращается ``None``." + +msgid "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." +msgstr "Он отличается от :func:`py:filter` тем, что останавливается в тот момент, когда находит правильную запись." + +msgid "Parameters" +msgstr "Параметры" + +msgid "A function that returns a boolean-like result." +msgstr "Функция, возвращающая результат в виде булевых значений." + +msgid "The iterable to search through." +msgstr "The iterable to search through." + +msgid "Return type" +msgstr "Тип возврата" + +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 "Примеры" + +msgid "Basic usage:" +msgstr "Базовое использование:" + +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 "Возвращает" + +msgid "The object found or the default value." +msgstr "The object found or the default value." + +msgid "Raises" +msgstr "Вызывает" + +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 "Стиль" + +msgid "Example Output" +msgstr "Пример вывода" + +msgid "Description" +msgstr "Описание" + +msgid "t" +msgstr "t" + +msgid "22:57" +msgstr "22:57" + +msgid "Short Time" +msgstr "Короткое Время" + +msgid "T" +msgstr "T" + +msgid "22:57:58" +msgstr "22:57:58" + +msgid "Long Time" +msgstr "Длинное Время" + +msgid "d" +msgstr "d" + +msgid "17/05/2016" +msgstr "17.05.2016" + +msgid "Short Date" +msgstr "Короткая Дата" + +msgid "D" +msgstr "D" + +msgid "17 May 2016" +msgstr "17 мая 2016 г." + +msgid "Long Date" +msgstr "Длинная Дата" + +msgid "f (default)" +msgstr "f (по умолчанию)" + +msgid "17 May 2016 22:57" +msgstr "17 мая 2016 г., 22:57" + +msgid "Short Date Time" +msgstr "Краткая Дата и Время" + +msgid "F" +msgstr "F" + +msgid "Tuesday, 17 May 2016 22:57" +msgstr "Вторник, 17 мая 2016 г., 22:57" + +msgid "Long Date Time" +msgstr "Длинная Дата и Время" + +msgid "R" +msgstr "R" + +msgid "5 years ago" +msgstr "5 лет назад" + +msgid "Relative Time" +msgstr "Относительное время" + +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 "Пример" + +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 "Последний собранный чанк может быть не таким большим, как ``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/ru/LC_MESSAGES/api/version_info.po b/docs/locales/ru/LC_MESSAGES/api/version_info.po new file mode 100644 index 0000000000..291de43265 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Version Related Info" +msgstr "Информация о версии" + +msgid "There are two main ways to query version information about the library. For guarantees, check :ref:`version_guarantees`." +msgstr "Есть два основных способа получить информацию о версии библиотеки. Для получения гарантий обратитесь к :ref:`version_guarantees`." + +msgid "A named tuple that is similar to :obj:`py:sys.version_info`." +msgstr "Именованный кортеж, аналогичный :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 "Как и в случае с :obj:`py:sys.version_info`, допустимыми значениями для ``releaselevel`` являются 'alpha', 'beta', 'candidate' и 'final'." + +msgid "A string representation of the version. e.g. ``'1.0.0rc1'``. This is based off of :pep:`440`." +msgstr "Строковое представление версии. Например, ``1.0.0rc1``. Это основано на :pep:`440`." + diff --git a/docs/locales/ru/LC_MESSAGES/api/voice.po b/docs/locales/ru/LC_MESSAGES/api/voice.po new file mode 100644 index 0000000000..cc571c1fb6 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Voice Related" +msgstr "Связанные с голосом" + +msgid "Objects" +msgstr "Объекты" + +msgid "Represents a Discord voice connection." +msgstr "Представляет собой голосовое соединение Discord." + +msgid "You do not create these, you typically get them from e.g. :meth:`VoiceChannel.connect`." +msgstr "Вы не создаете их, вы обычно получаете их, например, из :meth:`VoiceChannel.connect`." + +msgid "The voice connection session ID." +msgstr "Идентификатор сеанса голосового соединения." + +msgid "type" +msgstr "тип" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The voice connection token." +msgstr "Токен голосового соединения." + +msgid "The endpoint we are connecting to." +msgstr "Конечная точка, к которой мы подключаемся." + +msgid "The voice channel connected to." +msgstr "Голосовой канал, с которым установлено соединение." + +msgid ":class:`abc.Connectable`" +msgstr ":class:`abc.Connectable`" + +msgid "The event loop that the voice client is running on." +msgstr "Цикл событий, в котором работает голосовой клиент." + +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 "Для использования аудиоисточников, основанных на PCM, в вашей системе должна быть установлена библиотека opus и загружена через :func:`opus.load_opus`. В противном случае ваши аудиоисточники должны быть закодированы в opus (например, с помощью :class:`FFmpegOpusAudio`), иначе библиотека не сможет передавать звук." + +msgid "Parameters" +msgstr "Параметры" + +msgid "The guild we're connected to, if applicable." +msgstr "Сервер, с которым мы связаны, если это применимо." + +msgid "The user connected to voice (i.e. ourselves)." +msgstr "Пользователь, подключившийся к голосовой связи (т.е. мы сами)." + +msgid "Latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "Задержка между HEARTBEAT и HEARTBEAT_ACK в секундах." + +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 WebSocket и является аналогом задержки голоса пользователя в клиенте Discord." + +msgid "Average of most recent 20 HEARTBEAT latencies in seconds." +msgstr "Среднее значение последних 20 задержек HEARTBEAT в секундах." + +msgid "|coro|" +msgstr "|coro|" + +msgid "Disconnects this voice client from voice." +msgstr "Отключение данного голосового клиента от голосовой связи." + +msgid "Return type" +msgstr "Тип возврата" + +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 "Перемещает вас на другой голосовой канал." + +msgid "The channel to move to. Must be a voice channel." +msgstr "Канал, в который нужно перейти. Должен быть голосовым каналом." + +msgid "Indicates if the voice client is connected to voice." +msgstr "Указывает, подключен ли голосовой клиент к голосовой связи." + +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 "Вызывает" + +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 "Возвращает" + +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/ru/LC_MESSAGES/api/webhooks.po b/docs/locales/ru/LC_MESSAGES/api/webhooks.po new file mode 100644 index 0000000000..c9b313f329 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Webhook Support" +msgstr "Поддержка вебхуков" + +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 "тип" + +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 "Параметры" + +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 "Возвращает" + +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 "Тип возврата" + +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 "Вызывает" + +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/ru/LC_MESSAGES/changelog.po b/docs/locales/ru/LC_MESSAGES/changelog.po new file mode 100644 index 0000000000..9b99818d9e --- /dev/null +++ b/docs/locales/ru/LC_MESSAGES/changelog.po @@ -0,0 +1,1111 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Changelog" +msgstr "Список изменений" + +msgid "All notable changes to this project will be documented in this file." +msgstr "Все заметные изменения этого проекта будут задокументированы в этом файле." + +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 "Формат основан на [Keep the Changelog](https://keepachangelog.com/en/1.0.0/), и этот проект придерживается [Semantic Versioning](https://semver.org/spec/v2.0.0.html) по возможности (подробнее см. в [Version Guarantees])." + +msgid "[Unreleased]" +msgstr "[Unreleased]" + +msgid "These changes are available on the `master` branch, but have not yet been released." +msgstr "Эти изменения доступны в ветке `master`, но еще не были выпущены." + +msgid "⚠️ **This Version Removes Support For Python 3.8** ⚠️" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️" + +msgid "Changed" +msgstr "Изменено" + +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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" + +msgid "Added" +msgstr "Добавлено" + +msgid "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" +msgstr "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +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 "Исправлено" + +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 "Удалено" + +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 "Старые версии" + +msgid "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." +msgstr "Список изменений до версии v2.0 находится [здесь](old_changelog.rst)." + diff --git a/docs/locales/ru/LC_MESSAGES/cogs.po b/docs/locales/ru/LC_MESSAGES/cogs.po new file mode 100644 index 0000000000..b5525ac6be --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\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 "В процессе разработки бота наступает момент, когда вы хотите организовать набор команд, слушателей и некоторых состояний в один класс. Cogs позволяют вам сделать именно это." + +msgid "The gist:" +msgstr "Суть:" + +msgid "Each cog is a Python class that subclasses :class:`.Cog`." +msgstr "Каждый cog - это класс Python, который является подклассом :class:`.Cog`." + +msgid "Every command is marked with the :func:`discord.command` decorator or the corresponding shortcut command decorator." +msgstr "Каждая команда помечается декоратором :func:`discord.command` или соответствующим декоратором команды ярлыка." + +msgid "Every listener is marked with the :meth:`.Cog.listener` decorator." +msgstr "Каждый слушатель помечается декоратором :meth:`.Cog.listener`." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Затем Cogs регистрируются с помощью вызова :meth:`.Bot.add_cog`." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Впоследствии Cogs удаляются с помощью вызова :meth:`.Bot.remove_cog`." + +msgid "Quick Example" +msgstr "Быстрый пример" + +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 "Этот пример cog определяет категорию ``Приветствия'' для ваших команд, с командой с одним слешем под названием ``hello'', а также слушатель для прослушивания :ref:`Event `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "Несколько технических замечаний, которые следует принять во внимание:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.Cog.listener`." +msgstr "Все слушатели должны быть явно отмечены с помощью декоратора, :meth:`~.Cog.listener`." + +msgid "The name of the cog is automatically derived from the class name but can be overridden." +msgstr "Имя Cog автоматически выводится из имени класса, но может быть переопределено." + +msgid "All commands must now take a ``self`` parameter to allow usage of instance attributes that can be used to maintain state." +msgstr "Все команды теперь должны принимать параметр ``self'', чтобы позволить использовать атрибуты экземпляра, которые могут быть использованы для поддержания состояния." + +msgid "Cog Registration" +msgstr "Регистрация Cog" + +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, вам нужно сообщить боту, чтобы он зарегистрировал Cogs для использования. Мы делаем это с помощью метода :meth:`~.Bot.add_cog`." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "Это связывает Cog с ботом, автоматически добавляя к нему все команды и слушателей." + +msgid "Using Cogs" +msgstr "Использование 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 "Как мы удаляем Cogs по его имени, так же мы можем и получить его по его имени. Это позволяет нам использовать Cogs в качестве протокола межкомандной связи для обмена данными. Например:" + diff --git a/docs/locales/ru/LC_MESSAGES/discord.po b/docs/locales/ru/LC_MESSAGES/discord.po new file mode 100644 index 0000000000..2a4bd23bec --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Creating a Bot Account" +msgstr "Создание учётной записи бота" + +msgid "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." +msgstr "Для того чтобы работать с библиотекой и Discord API в целом, мы должны сначала создать учетную запись бота Discord." + +msgid "Creating a Bot account is a pretty straightforward process." +msgstr "Создание учетной записи бота — это довольно простой процесс." + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Убедитесь, что вы вошли на сайте `Discord `_." + +msgid "Navigate to the `application page `_" +msgstr "Перейдите на `страницу приложений `_" + +msgid "Click on the \"New Application\" button." +msgstr "Нажмите на кнопку \"New Application\"." + +msgid "The new application button." +msgstr "Кнопка нового приложения." + +msgid "Give the application a name and click \"Create\"." +msgstr "Дайте приложению имя и нажмите \"Создать\"." + +msgid "The new application form filled in." +msgstr "Заполненная форма по созданию нового приложения." + +msgid "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." +msgstr "Создайте бот пользователя, перейдя на вкладку \"Bot\" и нажав \"Add Bot\"." + +msgid "Click \"Yes, do it!\" to continue." +msgstr "Нажмите \"Yes, do it!\", чтобы продолжить." + +msgid "The Add Bot button." +msgstr "Кнопка Добавить бота." + +msgid "Make sure that **Public Bot** is ticked if you want others to invite your bot." +msgstr "Убедитесь, что флажок **Public 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 "Вам также следует убедиться, что флажок **Require OAuth2 Code Grant** снят, если только вы не разрабатываете сервис, которому это необходимо. Если вы не уверены, то **оставьте этот флажок снятым**." + +msgid "How the Bot User options should look like for most people." +msgstr "Как должны выглядеть опции бот пользователя для большинства людей." + +msgid "Copy the token using the \"Copy\" button." +msgstr "Скопируйте токен с помощью кнопки \"Copy\"." + +msgid "**This is not the Client Secret at the General Information page.**" +msgstr "**Это не Client Secret на странице Общей Информации.**" + +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 "Стоит отметить, что этот токен - фактически пароль вашего бота. Вы **никогда** не должны передавать его кому-либо еще. Это может привести к тому, что кто-то сможет войти в вашего бота и совершить вредоносные действия, например, покинуть серверы, забанить всех участников на сервере или злонамеренно пинговать всех подряд." + +msgid "The possibilities are endless, so **do not share this token.**" +msgstr "Варианты развития событий безграничны, поэтому **не делитесь этим токеном.**" + +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 "В случае случайной утечки токена как можно скорее нажмите кнопку \"Regenerate\". Это отменит ваш старый токен и сгенерирует новый. Теперь вам нужно использовать новый токен для входа в систему." + +msgid "And that's it. You now have a bot account and you can login with that token." +msgstr "Вот и все. Теперь у вас есть учетная запись бота, и вы можете войти в систему с помощью этого токена." + +msgid "Inviting Your Bot" +msgstr "Приглашение Вашего Бота" + +msgid "So you've made a Bot User but it's not actually in any server." +msgstr "Итак, вы создали бот пользователя, но на самом деле его нет ни на одном сервере." + +msgid "If you want to invite your bot you must create an invite URL for it." +msgstr "Если вы хотите пригласить вашего бота, вы должны создать ссылку-приглашение для него." + +msgid "Click on your bot's page." +msgstr "Нажмите на страницу вашего бота." + +msgid "Expand the \"OAuth2\" tab and click on \"URL Generator\"." +msgstr "Раскройте вкладку \"OAuth2\" и нажмите на \"URL Generator\"." + +msgid "How the OAuth2 tab should look like." +msgstr "Как должна выглядеть вкладка OAuth2." + +msgid "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." +msgstr "Установите флажки \"bot\" и \"applications.commands\" в разделе \"scopes\"." + +msgid "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." +msgstr "Раздел scopes с установленными флажками \"bot\" и \"applications.commands\"." + +msgid "Tick the permissions required for your bot to function under \"Bot Permissions\"." +msgstr "Установите разрешения, необходимые для работы вашего бота, в разделе \"Bot Permissions\"." + +msgid "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." +msgstr "Учтите последствия, если вы потребуете для вашего бота разрешение \"Администратор\"." + +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 "Владельцы ботов должны иметь включенную 2FA для определенных действий и разрешений при добавлении на серверы, где включена серверная 2FA. Более подробную информацию можно найти на `странице поддержки 2FA `_." + +msgid "The permission checkboxes with some permissions checked." +msgstr "Флажки разрешений, в которых установлены некоторые разрешения." + +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 "Теперь полученный URL можно использовать для добавления бота на сервер. Скопируйте и вставьте URL в браузер, выберите сервер, на который хотите пригласить бота, и нажмите \"Authorize\"." + +msgid "The person adding the bot needs \"Manage Server\" permissions to do so." +msgstr "Человеку, добавляющему бота, нужны права \"Управление сервером\"." + +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 "Если вы хотите генерировать этот URL динамически во время выполнения внутри вашего бота и используя интерфейс :class:`discord.Permissions`, вы можете использовать :func:`discord.utils.oauth_url`." + diff --git a/docs/locales/ru/LC_MESSAGES/ext/bridge/api.po b/docs/locales/ru/LC_MESSAGES/ext/bridge/api.po new file mode 100644 index 0000000000..3cfb018aae --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\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 "Боты" + +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 "Параметры" + +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 "Возвращает" + +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 "Тип возврата" + +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 "тип" + +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 "Вызывает" + +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/ru/LC_MESSAGES/ext/bridge/index.po b/docs/locales/ru/LC_MESSAGES/ext/bridge/index.po new file mode 100644 index 0000000000..15bd785e5f --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\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 "Этот модуль позволяет использовать один обратный вызов команды для создания как префиксной, так и слэш-команды. Эта страница включает в себя справку/документацию по API для модуля, но содержит только короткий пример. Более подробное руководство по использованию этого модуля можно найти в нашем руководстве по `discord.ext.bridge `_." + +msgid "Example usage:" +msgstr "Пример использования:" + diff --git a/docs/locales/ru/LC_MESSAGES/ext/commands/api.po b/docs/locales/ru/LC_MESSAGES/ext/commands/api.po new file mode 100644 index 0000000000..70bcc8a2b1 --- /dev/null +++ b/docs/locales/ru/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4105 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-Team: none\\n" +"MIME-Version: 1.0\\n" +"Content-Type: text/plain; charset=UTF-8\\n" +"Content-Transfer-Encoding: 8bit\\n" +"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "API Reference" +msgstr "Справочник по API" + +msgid "The following section outlines the API of Pycord's prefixed command extension module." +msgstr "В следующем разделе описывается API модуля расширения префиксных команд Pycord." + +msgid "Using prefixed commands in guilds requires :attr:`Intents.message_content` to be enabled." +msgstr "Использование префиксных команд в серверах требует включения :attr:`Intents.message_content." + +msgid "Bots" +msgstr "Боты" + +msgid "Bot" +msgstr "Бот" + +msgid "Represents a discord bot." +msgstr "Представляет собой дискорд-бота." + +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 "тип" + +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 "Параметры" + +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 "Вызывает" + +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 "Пример" + +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 "Возвращает" + +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 "Тип возврата" + +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 "Примеры" + +msgid "Usage ::" +msgstr "Использование ::" + +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 "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 "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 "An iterator that recursively walks through all commands and subcommands." +msgstr "An iterator that recursively walks through all commands and subcommands." + +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 "Коги" + +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 "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 "Исключения" + +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 "Это исключение и унаследованные от него исключения обрабатываются особым образом, поскольку они перехватываются и передаются в специальное событие из :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 "Первоначальное исключение, которое было поднято. Вы также можете получить его через атрибут ``__cause__``." + +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 "Исключение поднимается, если предикаты в :attr:`.Command.checks` не сработали." + +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 "Исключение, возникающее, когда вызываемая команда вызывает исключение." + +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 "Иерархия исключений" + +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/ru/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/ru/LC_MESSAGES/ext/commands/cogs.po new file mode 100644 index 0000000000..b527c33280 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Cogs" +msgstr "Коги" + +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 "В процессе разработки бота наступает момент, когда вы хотите организовать набор команд, слушателей и некоторых состояний в один класс. Коги позволяют вам сделать именно это." + +msgid "The gist:" +msgstr "Основная суть:" + +msgid "Each cog is a Python class that subclasses :class:`.commands.Cog`." +msgstr "Каждый ког - это класс Python, который является подклассом :class:`.commands.Cog`." + +msgid "Every command is marked with the :func:`.commands.command` decorator." +msgstr "Каждая команда помечается декоратором :func:`.commands.command`." + +msgid "Every listener is marked with the :meth:`.commands.Cog.listener` decorator." +msgstr "Каждый слушатель помечается декоратором :meth:`.commands.Cog.listener`." + +msgid "Cogs are then registered with the :meth:`.Bot.add_cog` call." +msgstr "Затем коги регистрируются с помощью вызова :meth:`.Bot.add_cog`." + +msgid "Cogs are subsequently removed with the :meth:`.Bot.remove_cog` call." +msgstr "Впоследствии коги удаляются с помощью вызова :meth:`.Bot.remove_cog`." + +msgid "It should be noted that cogs are typically used alongside with :ref:`ext_commands_extensions`." +msgstr "Следует отметить, что коги обычно используются вместе с :ref:`ext_commands_extensions`." + +msgid "Quick Example" +msgstr "Быстрый пример" + +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 "Этот пример кога определяет категорию ``Greetings`` для ваших команд, с одной :ref:`командой ` под названием ``hello``, а также слушателем для прослушивания :ref:`События `." + +msgid "A couple of technical notes to take into consideration:" +msgstr "Несколько технических замечаний, которые следует принять во внимание:" + +msgid "All listeners must be explicitly marked via decorator, :meth:`~.commands.Cog.listener`." +msgstr "Все слушатели должны быть явно помечены с помощью декоратора, :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 "Имя кога автоматически происходит от имени класса, но может быть переопределено. См. :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 "Все команды теперь должны принимать параметр ``self``, чтобы позволить использовать атрибуты экземпляра, которые могут быть использованы для поддержания состояния." + +msgid "Cog Registration" +msgstr "Регистрация Когов" + +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 "После того как вы определили коги, вам нужно сообщить боту, чтобы он зарегистрировал коги для использования. Мы делаем это с помощью метода :meth:`~.commands.Bot.add_cog`." + +msgid "This binds the cog to the bot, adding all commands and listeners to the bot automatically." +msgstr "Это связывает ког с ботом, автоматически добавляя к нему все команды и слушателей." + +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 "Обратите внимание, что мы ссылаемся на ког по имени, которое мы можем переопределить через :ref:`ext_commands_cogs_meta_options`. Поэтому, если мы захотим в конечном итоге удалить ког, нам нужно будет сделать следующее." + +msgid "Using Cogs" +msgstr "Использование Когов" + +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 "Точно так же, как мы удаляем ког по его имени, мы можем и получить его по имени. Это позволяет нам использовать ког в качестве протокола межкомандной связи для обмена данными. Например:" + +msgid "Special Methods" +msgstr "Специальные Методы" + +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 "По мере того как коги становятся все сложнее и имеют больше команд, наступает момент, когда мы хотим кастомизировать поведение всего кога или бота." + +msgid "They are as follows:" +msgstr "К их числу относятся:" + +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 "Вы можете посмотреть справочник, чтобы получить более подробную информацию." + +msgid "Meta Options" +msgstr "Мета-опции" + +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 "В основе кога лежит метакласс, :class:`.commands.CogMeta`, который может принимать различные опции для кастомизации поведения. Для этого в строке определения класса мы передаем аргументы с ключевыми словами. Например, чтобы изменить имя кога, мы можем передать именованный аргумент ``name`` следующим образом:" + +msgid "To see more options that you can set, see the documentation of :class:`.commands.CogMeta`." +msgstr "Чтобы узнать больше опций, которые вы можете задать, смотрите документацию по :class:`.commands.CogMeta`." + +msgid "Inspection" +msgstr "Инспекция" + +msgid "Since cogs ultimately are classes, we have some tools to help us inspect certain properties of the cog." +msgstr "Поскольку коги в конечном счете являются классами, у нас есть некоторые инструменты, которые помогут нам проверить определенные свойства кога." + +msgid "To get a :class:`list` of commands, we can use :meth:`.Cog.get_commands`. ::" +msgstr "Чтобы получить :class:`list`, состоящий из команд, мы можем использовать :meth:`.Cog.get_commands`. ::" + +msgid "If we want to get the subcommands as well, we can use the :meth:`.Cog.walk_commands` generator. ::" +msgstr "Если мы хотим получить также и подкоманды, мы можем использовать генератор :meth:`.Cog.walk_commands`. ::" + +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 "Чтобы сделать то же самое со слушателями, мы можем запросить их с помощью :meth:`.Cog.get_listeners`. Это возвращает список кортежей - первый элемент - имя слушателя, второй - сама функция. ::" + diff --git a/docs/locales/ru/LC_MESSAGES/ext/commands/commands.po b/docs/locales/ru/LC_MESSAGES/ext/commands/commands.po new file mode 100644 index 0000000000..ee8e501e21 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\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 "Параметры" + +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/ru/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/ru/LC_MESSAGES/ext/commands/extensions.po new file mode 100644 index 0000000000..b513a9708b --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Расширения" + +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 "В процессе разработки бота наступает момент, когда вы хотите расширить его функциональность во время выполнения и быстро выгрузить и перезагрузить код (также называемый горячей загрузкой). В командный фреймворк встроена такая возможность, концепция называется **расширения**." + +msgid "Primer" +msgstr "Краткая информация" + +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 "По своей сути расширение представляет собой файл python с точкой входа под названием ``setup``. Эта установка должна быть обычной функцией Python (не короутиной). Она принимает единственный параметр - :class:`~.commands.Bot`, который загружает расширение." + +msgid "An example extension looks like this:" +msgstr "Пример расширения выглядит следующим образом:" + +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 "В этом примере мы определяем простую команду, и когда расширение загружается, эта команда добавляется в бота. Теперь последний шаг - загрузка расширения, которую мы выполняем с помощью вызова :meth:`.Bot.load_extension`. Чтобы загрузить это расширение, мы вызываем ``bot.load_extension('hello')``." + +msgid "Cogs" +msgstr "Коги" + +msgid "Extensions are usually used in conjunction with cogs. To read more about them, check out the documentation, :ref:`ext_commands_cogs`." +msgstr "Расширения обычно используются в сочетании с когами. Чтобы узнать о них больше, ознакомьтесь с документацией, :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 "Пути расширения в конечном итоге аналогичны механизму импорта. Это означает, что если есть папка, то она должна быть точечно-квалификационной. Например, чтобы загрузить расширение в ``plugins/hello.py``, мы используем строку ``plugins.hello``." + +msgid "Reloading" +msgstr "Перезагрузка" + +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 "Когда вы вносите изменения в расширение и хотите перезагрузить ссылки, библиотека поставляется с функцией, которая делает это за вас, :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 "Когда расширение перезагрузится, все сделанные нами изменения будут применены. Это полезно, если мы хотим добавить или удалить функциональность, не перезапуская нашего бота. Если в процессе перезагрузки произошла ошибка, бот сделает вид, будто перезагрузки не было." + +msgid "Cleaning Up" +msgstr "Очистка" + +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 "Хотя и редко, но иногда расширению нужно очиститься или узнать, когда его выгружают. Для таких случаев существует другая точка входа под названием ``teardown``, которая аналогична ``setup``, но вызывается, когда расширение выгружается." + +msgid "basic_ext.py" +msgstr "basic_ext.py" + diff --git a/docs/locales/ru/LC_MESSAGES/ext/commands/index.po b/docs/locales/ru/LC_MESSAGES/ext/commands/index.po new file mode 100644 index 0000000000..990716ab46 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\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`` предлагает более низкий уровень взаимодействия с Discord. Часто библиотека используется для создания ботов. Однако с первого раза эта задача может оказаться сложной и запутанной. Много раз приходится повторяться в создании расширяемого, гибкого и мощного фреймворка для команд бота. По этой причине ``Pycord`` поставляется с библиотекой расширений, которая делает это за вас." + diff --git a/docs/locales/ru/LC_MESSAGES/ext/pages/index.po b/docs/locales/ru/LC_MESSAGES/ext/pages/index.po new file mode 100644 index 0000000000..877a0e1f10 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\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 "Параметры" + +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 "Тип возврата" + +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 "тип" + +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 "Возвращает" + +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 "Вызывает" + +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/ru/LC_MESSAGES/ext/tasks/index.po b/docs/locales/ru/LC_MESSAGES/ext/tasks/index.po new file mode 100644 index 0000000000..b60b8f01ed --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\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 "Параметры" + +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 "Вызывает" + +msgid "The function was not a coroutine." +msgstr "The function was not a coroutine." + +msgid "Return type" +msgstr "Тип возврата" + +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 "Возвращает" + +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/ru/LC_MESSAGES/faq.po b/docs/locales/ru/LC_MESSAGES/faq.po new file mode 100644 index 0000000000..71849e992b --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Frequently Asked Questions" +msgstr "Часто Задаваемые Вопросы" + +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 "Это список Часто Задаваемых Вопросов относительно использования ``Pycord`` и его модулей расширений. Не стесняйтесь предложить новый вопрос или отправить пулл-реквесты." + +msgid "Coroutines" +msgstr "Короутины" + +msgid "Questions regarding coroutines and asyncio belong here." +msgstr "Здесь находятся вопросы, касающиеся короутинов и asyncio." + +msgid "What is a coroutine?" +msgstr "Что такое короутина?" + +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 "|coroutine_link|_ это функция, которая должна быть вызвана с ``await`` или ``yield from``. Когда Python сталкивается с ``await``, он останавливает выполнение функции в этой точке и работает над другими вещами, пока не вернется к этой точке и не завершит свою работу. Это позволяет вашей программе выполнять несколько действий одновременно без использования потоков или сложной многопроцессорной обработки." + +msgid "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" +msgstr "**Если вы забудете написать await перед короутином, то короутин не выполнится. Никогда не забывайте await.**" + +msgid "Where can I use ``await``\\?" +msgstr "Где можно использовать ``await``\\?" + +msgid "You can only use ``await`` inside ``async def`` functions and nowhere else." +msgstr "Вы можете использовать ``await`` только внутри ``async def`` функций и нигде еще." + +msgid "What does \"blocking\" mean?" +msgstr "Что означает \"блокирование\"?" + +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 "В асинхронном программировании блокирующий вызов - это, по сути, все части функции, которые не являются ``await``. Однако не стоит отчаиваться, потому что не все формы блокировки плохи! Использование блокирующих вызовов неизбежно, но вы должны работать над тем, чтобы не блокировать функции чрезмерно. Помните, что если вы блокируете функцию слишком долго, то ваш бот зависнет, поскольку он не остановил выполнение функции в этот момент, чтобы заняться другими делами." + +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 "Если логирование включено, библиотека попытается предупредить вас о блокирующем вызове с сообщением: ``Сердцебиение заблокировано более чем на N секунд.`` Подробности о включении логирования см. в :ref:`logging_setup``." + +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 "Частым источником слишком долгой блокировки является что-то вроде :func:`time.sleep`. Не делайте этого. Вместо этого используйте :func:`asyncio.sleep`. Аналогично этому примеру: ::" + +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 "Другим распространенным источником слишком долгой блокировки является использование HTTP-запросов с известным модулем :doc:`requests `. Хотя :doc:`requests ` - это замечательный модуль для неасинхронного программирования, он не является хорошим выбором для :mod:`asyncio`, поскольку некоторые запросы могут слишком долго блокировать цикл событий. Вместо него используйте библиотеку :doc:`aiohttp `, которая устанавливается на ряду с этой библиотекой." + +msgid "Consider the following example: ::" +msgstr "Изучите следующий пример: ::" + +msgid "General" +msgstr "Общее" + +msgid "General questions regarding library usage belong here." +msgstr "Общие вопросы, касающиеся использования библиотеки, находятся здесь." + +msgid "Where can I find usage examples?" +msgstr "Где можно найти примеры использования?" + +msgid "Example code can be found in the `examples folder `_ in the repository." +msgstr "Пример кода можно найти в папке `examples `_ в репозитории." + +msgid "How do I set the \"Playing\" status?" +msgstr "Как установить статус \"Играет в\"?" + +msgid "The ``activity`` keyword argument may be passed in the :class:`Client` constructor or :meth:`Client.change_presence`, given an :class:`Activity` object." +msgstr "Ключевой аргумент ``activity`` может быть передан в конструктор :class:`Client` или :meth:`Client.change_presence`, передавая объект :class:`Activity`." + +msgid "The constructor may be used for static activities, while :meth:`Client.change_presence` may be used to update the activity at runtime." +msgstr "Конструктор можно использовать для статичных активностей, а :meth:`Client.change_presence` можно использовать для обновления активности во время выполнения кода." + +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 "Крайне не рекомендуется использовать :meth:`Client.change_presence` или вызовы API в :func:`on_ready`, так как это событие может быть вызвано много раз во время работы, а не только один раз." + +msgid "There is a high chance of disconnecting if presences are changed right after connecting." +msgstr "Высока вероятность отключения, если сменить статус активности сразу после подключения." + +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 "Тип статуса (играет в, слушает, стримит, смотрит) можно задать с помощью перечисления :class:`ActivityType`. Для оптимизации памяти некоторые действия предлагаются в урезанных версиях:" + +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 "Если объединить два этих раздела информации, то получится следующее: ::" + +msgid "How do I send a message to a specific channel?" +msgstr "Как отправить сообщение в определенный канал?" + +msgid "You must fetch the channel directly and then call the appropriate method. Example: ::" +msgstr "Вы должны получить канал напрямую и затем вызвать соответствующий метод. Пример: ::" + +msgid "How do I send a DM?" +msgstr "Как отправить ЛС?" + +msgid "Get the :class:`User` or :class:`Member` object and call :meth:`abc.Messageable.send`. For example: ::" +msgstr "Получите объект :class:`User` или :class:`Member` и вызовите :meth:`abc.Messageable.send`. Например: ::" + +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 "Если вы отвечаете на событие, например :func:`on_message`, у вас уже есть объект `User` :class: через :attr:`Message.author`: ::" + +msgid "How do I get the ID of a sent message?" +msgstr "Как получить ID отправленного сообщения?" + +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` возвращает отправленное сообщение :class:`Message`. ID сообщения можно получить через :attr:`Message.id`: ::" + +msgid "How do I upload an image?" +msgstr "Как загрузить изображение?" + +msgid "To upload something to Discord you have to use the :class:`File` object." +msgstr "Чтобы загрузить что-то в Discord, вы должны использовать объект :class:`File`." + +msgid "A :class:`File` accepts two parameters, the file-like object (or file path) and the filename to pass to Discord when uploading." +msgstr ":class:`File` принимает два параметра: файловый объект (или путь к файлу) и имя файла, передаваемого в Discord при загрузке." + +msgid "If you want to upload an image it's as simple as: ::" +msgstr "Если вы хотите загрузить изображение, это просто: ::" + +msgid "If you have a file-like object you can do as follows: ::" +msgstr "Если у вас есть файловый объект, вы можете сделать следующее: ::" + +msgid "To upload multiple files, you can use the ``files`` keyword argument instead of ``file``\\: ::" +msgstr "Чтобы загрузить несколько файлов, вы можете использовать именованный аргумент ``files`` вместо ``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 "Если вы хотите загрузить что-то с URL, вам необходимо использовать HTTP-запрос с помощью :doc:`aiohttp `, а затем передать экземпляр :class:`io.BytesIO` в :class:`File`, как показано ниже:" + +msgid "How can I add a reaction to a message?" +msgstr "Как добавить реакцию на сообщение?" + +msgid "You use the :meth:`Message.add_reaction` method." +msgstr "Используйте метод :meth:`Message.add_reaction`." + +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 "Если вы хотите использовать эмодзи unicode, вы должны передать в строке действительный код unicode эмодзи. В коде это можно записать несколькими разными способами:" + +msgid "``'👍'``" +msgstr "``'👍'``" + +msgid "``'\\U0001F44D'``" +msgstr "``'\\U0001F44D'``" + +msgid "``'\\N{THUMBS UP SIGN}'``" +msgstr "``'\\N{THUMBS UP SIGN}'``" + +msgid "Quick example: ::" +msgstr "Быстрый пример: ::" + +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 "Если вы хотите использовать эмодзи, полученные из сообщения, вы уже получите их код в содержимом без необходимости что-то делать. Вы **не можете** отправлять сокращения в стиле ``':thumbsup:'``." + +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 "Для пользовательских эмодзи вы должны передать экземпляр :class:`Emoji`. Вы также можете передать строку ``'<:name:id>'``, а если вы можете использовать указанные эмодзи, вы можете использовать :meth:`Client.get_emoji` для получения эмодзи по ID или использовать :func:`utils.find`/ :func:`utils.get` на коллекциях :attr:`Client.emojis` или :attr:`Guild.emojis`." + +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 "Имя и ID пользовательского эмодзи можно узнать в клиенте, добавив к ``:custom_emoji:`` обратный слэш. Например, отправив сообщение ``\\:python3:`` через клиент, вы получите ``<:python3:232720527448342530>``." + +msgid "How do I pass a coroutine to the player's \"after\" function?" +msgstr "Как передать короутин в функцию \"after\" плеера?" + +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 "Музыкальный плеер библиотеки запускается в отдельном потоке, поэтому он не выполняется внутри короутина. Это не означает, что нельзя вызвать короутин в параметре ``after``. Для этого необходимо передать доступный для вызова объект, который включает в себя несколько моментов." + +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 "Первый момент, о котором вы должны знать, заключается в том, что вызов короутина не является потокобезопасной операцией. Поскольку технически мы находимся в другом потоке, мы должны быть осторожны в вызове потокобезопасных операций, чтобы не допустить ошибок. К счастью для нас, :mod:`asyncio` имеет функцию :func:`asyncio.run_coroutine_threadsafe`, которая позволяет нам вызывать короутин из другого потока." + +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 "Однако эта функция возвращает :class:`~concurrent.futures.Future`, и чтобы вызвать его, мы должны получить ее результат. Сложив все это вместе, мы можем сделать следующее: ::" + +msgid "How do I run something in the background?" +msgstr "Как выполнять что-то в фоновом режиме?" + +msgid "`Check the background_task.py example. `_" +msgstr "`Посмотрите пример background_task.py. `_" + +msgid "How do I get a specific model?" +msgstr "Как получить конкретную модель?" + +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 "Есть несколько способов сделать это. Если у вас есть ID конкретной модели, вы можете использовать одну из следующих функций:" + +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 "Следующие функции используют HTTP-запрос:" + +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 "Если приведенные выше функции вам не помогли, то использование :func:`utils.find` или :func:`utils.get` будет полезно для поиска конкретных моделей." + +msgid "How do I make a web request?" +msgstr "Как сделать веб-запрос?" + +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 "Для выполнения запроса необходимо использовать неблокирующую библиотеку. Эта библиотека уже использует и требует стороннюю библиотеку для выполнения запросов, :doc:`aiohttp `." + +msgid "See `aiohttp's full documentation `_ for more information." +msgstr "Более подробную информацию можно найти в полной документации по `aiohttp `_." + +msgid "How do I use a local image file for an embed image?" +msgstr "Как использовать локальный файл изображения в качестве изображения для эмбеда?" + +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 специально обрабатывает загрузку вложения изображения и его использование внутри эмбеда, чтобы оно отображалось не отдельно, а в миниатюре, изображении, нижнем колонтитуле или иконке автора эмбеда." + +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 "Для этого загрузите изображение обычным способом с помощью :meth:`abc.Messageable.send` и установите URL-адрес изображения эмбеда как ``attachment://image.png``, где ``image.png`` - это имя файла изображения, которое вы будете отправлять." + +msgid "Is there an event for audit log entries being created?" +msgstr "Есть ли событие для создания записей журнала аудита?" + +msgid "As of version 2.5, you can receive audit log entries with the :func:`on_audit_log_entry` event." +msgstr "Начиная с версии 2.5, вы можете получать записи журнала аудита с помощью события :func:`on_audit_log_entry`." + +msgid "Commands Extension" +msgstr "Расширение команд" + +msgid "Questions regarding ``discord.ext.commands`` belong here." +msgstr "Здесь находятся вопросы, касающиеся ``discord.ext.commands``." + +msgid "Why does ``on_message`` make my commands stop working?" +msgstr "Почему ``on_message`` прекращает работу моих команд?" + +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 "Переопределение предоставленного по умолчанию ``on_message`` запрещает выполнение любых других команд. Чтобы исправить это, добавьте строку ``bot.process_commands(message)`` в конец вашего ``on_message``. Например: ::" + +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 "В качестве альтернативы вы можете поместить логику ``on_message`` в **listener**. При такой настройке не нужно вручную вызывать ``bot.process_commands()``. Это также позволяет выполнять несколько действий асинхронно в ответ на сообщение. Пример::" + +msgid "Why do my arguments require quotes?" +msgstr "Почему мои аргументы требуют кавычки?" + +msgid "In a simple command defined as: ::" +msgstr "В простой команде, определенной как: ::" + +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 "При вызове через ``?echo a b c``, будет получен только первый аргумент, а остальные будут проигнорированы. Чтобы исправить это, нужно либо вызвать его через ``?echo \"a b c\"``, либо изменить синтаксис так, чтобы она вела себя по принципу \"потреблять остальное\". Пример: ::" + +msgid "This will allow you to use ``?echo a b c`` without needing the quotes." +msgstr "Это позволит вам использовать `` echo a b c`` без кавычек." + +msgid "How do I get the original ``message``\\?" +msgstr "Как получить исходное ``message``\\?" + +msgid "The :class:`~ext.commands.Context` contains an attribute, :attr:`~.Context.message` to get the original message." +msgstr "Класс :class:`~ext.commands.Context` содержит атрибут :attr:`~.Context.message` для получения исходного сообщения." + +msgid "Example: ::" +msgstr "Пример: ::" + +msgid "How do I make a subcommand?" +msgstr "Как сделать подкоманду?" + +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 "Используйте декоратор :func:`~ext.commands.group`. Это преобразует обратный вызов в :class:`~ext.commands.Group`, что позволит вам добавлять команды в группу, работающую как \"подкоманды\". Эти группы также могут быть произвольно вложенными." + +msgid "This could then be used as ``?git push origin master``." +msgstr "Затем это может быть использовано как ``?git push origin master``." + diff --git a/docs/locales/ru/LC_MESSAGES/index.po b/docs/locales/ru/LC_MESSAGES/index.po new file mode 100644 index 0000000000..676d616739 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Extensions" +msgstr "Расширения" + +msgid "Meta" +msgstr "Мета" + +msgid "Welcome to Pycord" +msgstr "Добро пожаловать в Pycord" + +msgid "Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for Discord." +msgstr "Pycord - современный, легкий в использовании, многофункциональный и асинхронный API-враппер для Discord." + +msgid "**Features:**" +msgstr "**Возможности:**" + +msgid "Modern Pythonic API using ``async``\\/``await`` syntax" +msgstr "Современный Pythonic API, использующий синтаксис ``async``\\/``await``" + +msgid "Sane rate limit handling that prevents 429s" +msgstr "Разумная обработка ограничений скорости, предотвращающая 429s" + +msgid "Command extension to aid with bot creation" +msgstr "Расширения с командами для помощи в создании ботов" + +msgid "Easy to use with an object oriented design" +msgstr "Легкий в использовании с объектно-ориентированным дизайном" + +msgid "Optimised for both speed and memory" +msgstr "Оптимизирован как для скорости, так и для памяти" + +msgid "Getting started" +msgstr "Начало работы" + +msgid "Is this your first time using the library? This is the place to get started!" +msgstr "Первый раз пользуетесь библиотекой? Это место, чтобы начать!" + +msgid "**First steps:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" +msgstr "**Первые шаги:** :doc:`installing` | :doc:`quickstart` | :doc:`logging` | :resource:`Guide `" + +msgid "**Working with Discord:** :doc:`discord` | :doc:`intents`" +msgstr "**Работа с Discord:** :doc:`discord` | :doc:`intents`" + +msgid "**Examples:** Many examples are available in the :resource:`repository `." +msgstr "**Примеры:** Множество примеров доступно в :resource:`repository `." + +msgid "Getting help" +msgstr "Получение помощи" + +msgid "If you're having trouble with something, these resources might help." +msgstr "Если у вас что-то не получается, эти ресурсы могут вам помочь." + +msgid "Try the :doc:`faq` first, it's got answers to all common questions." +msgstr "Попробуйте сначала :doc:`faq`, там есть ответы на все распространенные вопросы." + +msgid "Ask us and hang out with us in our :resource:`Discord ` server." +msgstr "Спрашивайте и общайтесь с нами на нашем сервере :resource:`Discord `." + +msgid "If you're looking for something specific, try the :ref:`index ` or :ref:`searching `." +msgstr "Если вы ищете что-то конкретное, попробуйте использовать :ref:`index ` или :ref:`searching `." + +msgid "Report bugs in the :resource:`issue tracker `." +msgstr "Сообщайте об ошибках в :resource:`issue tracker `." + +msgid "Manuals" +msgstr "Руководства" + +msgid "These pages go into great detail about everything the API can do." +msgstr "На этих страницах подробно описаны все возможности API." + +msgid "Core API" +msgstr "Основное API" + +msgid "These extensions help you during development when it comes to common tasks." +msgstr "Эти расширения помогут вам в процессе разработки, когда речь идет об обычных задачах." + +msgid ":doc:`ext/commands/index` - Bot commands framework" +msgstr ":doc:`ext/commands/index` - Система команд для ботов" + +msgid ":doc:`ext/tasks/index` - asyncio.Task helpers" +msgstr ":doc:`ext/tasks/index` - Помощники asyncio.Task" + +msgid ":doc:`ext/pages/index` - A pagination extension module" +msgstr ":doc:`ext/pages/index` - Модуль пагинации" + +msgid ":doc:`ext/bridge/index` - A module that bridges slash commands to prefixed commands" +msgstr ":doc:`ext/bridge/index` - Модуль, соединяющий слеш-команды и команды с префиксом" + +msgid "If you're looking for something related to the project itself, it's here." +msgstr "Если вы ищете что-то, связанное с самим проектом, то это здесь." + +msgid ":doc:`changelog` - The changelog for the library." +msgstr ":doc:`changelog` - Журнал изменений библиотеки." + +msgid ":doc:`version_guarantees` - The version guarantees for the library." +msgstr ":doc:`version_guarantees`- Гарантии версии библиотеки." + +msgid ":doc:`migrating_to_v1` - How to migrate from v0.x to v1.x." +msgstr ":doc:`migrating_to_v1` - Как мигрировать с версии 0.x на версию 1.x." + +msgid ":doc:`migrating_to_v2` - How to migrate from v1.x to v2.x." +msgstr ":doc:`migrating_to_v2` - Как мигрировать с версии 1.x на версию 2.x." + diff --git a/docs/locales/ru/LC_MESSAGES/installing.po b/docs/locales/ru/LC_MESSAGES/installing.po new file mode 100644 index 0000000000..5f73fc989a --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Installing Pycord" +msgstr "Установка Pycord" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "Это документация по Pycord, библиотеке для Python, помогающей создавать приложения, использующие API Discord." + +msgid "Prerequisites" +msgstr "Требования" + +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 работает с Python 3.8 или выше. Поддержка более ранних версий Python не предоставляется. Python 2.7 или ниже не поддерживается. Python 3.7 или ниже не поддерживается." + +msgid "Installing" +msgstr "Установка" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "Чтобы получить новые функции будущих версий, вам придется установить предрелизную версию до выхода стабильной версии. ::" + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "Для пользователей Windows, эта команда должна использоваться для установки пререлиза: ::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "Библиотеку можно получить непосредственно из PyPI: ::" + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "Если вы используете Windows, вместо этого следует использовать следующее: ::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "Для установки дополнительных пакетов для ускорения используйте ``py-cord[speed]`` вместо ``py-cord``, например:" + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "Чтобы получить голосовую поддержку, следует использовать ``py-cord[voice]`` вместо ``py-cord``, например ::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "В среде Linux для установки голоса требуется наличие следующих зависимостей:" + +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 "Для основанной на Debian системы следующая команда получит требуемые зависимости:" + +msgid "Remember to check your permissions!" +msgstr "Не забудьте проверить ваши права!" + +msgid "Virtual Environments" +msgstr "Виртуальные окружения" + +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 "Иногда вы хотите, чтобы библиотеки не загрязняли системные установки или использовали версии библиотек, отличные от тех, что установлены в системе. Вы также можете не иметь прав на установку библиотек по всей системе. Для этой цели стандартная библиотека как Python 3.3 поставляется с концепцией \"Виртуальное окружение\", помогающей поддерживать эти отдельные версии." + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "Более подробное руководство находится в :doc:`py:tutorial/venv`." + +msgid "However, for the quick and dirty:" +msgstr "Однако, если кратко:" + +msgid "Go to your project's working directory:" +msgstr "Перейдите в рабочую папку вашего проекта:" + +msgid "Activate the virtual environment:" +msgstr "Активируйте виртуальное окружение:" + +msgid "On Windows you activate it with:" +msgstr "На Windows вы активируете её с помощью:" + +msgid "Use pip like usual:" +msgstr "Используйте pip, как обычно:" + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "Поздравляем. Теперь у вас есть настроенное виртуальное окружение." + +msgid "Basic Concepts" +msgstr "Основные концепции" + +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 работает на основе концепции :ref:`событий `. Событие - это то, что вы ожидаете и на что потом отвечаете. Например, когда происходит сообщение, вы получаете об этом событие, на которое можете ответить." + +msgid "A quick example to showcase how events work:" +msgstr "Быстрый пример того, как работают события:" + diff --git a/docs/locales/ru/LC_MESSAGES/intents.po b/docs/locales/ru/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..2bb8240544 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "A Primer to Gateway Intents" +msgstr "Введение в Шлюзовые Интенты" + +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 "В версии 1.5 появился класс :class:`Intents`. Это радикальное изменение в том, как пишутся боты. Интент в основном позволяет боту подписываться на определенные группы событий. События, соответствующие каждому интенту, описываются в индивидуальном атрибуте документации :class:`Intents`." + +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 "Эти интенты передаются в конструктор :class:`Client` или его подклассов (:class:`AutoShardedClient`, :class:`~.AutoShardedBot`, :class:`~.Bot`) с аргументом ``intents``." + +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 "Если интенты не переданы, то библиотека по умолчанию включает все интенты, кроме привилегированных, а именно :attr:`Intents.members`, :attr:`Intents.presences` и :attr:`Intents.message_content`." + +msgid "What intents are needed?" +msgstr "Какие интенты нужны?" + +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 "Интенты, необходимые вашему боту, вы можете определить только сами. Каждый атрибут в классе :class:`Intents` документирует, какому :ref:`событию ` он соответствует и какой вид кэша он включает." + +msgid "For example, if you want a bot that functions without spammy events like presences or typing then we could do the following:" +msgstr "Например, если вам нужен бот, работающий без спамерских событий вроде статуса или набора текста, мы можем сделать следующее:" + +msgid "Note that this doesn't enable :attr:`Intents.members` or :attr:`Intents.message_content` since they are privileged intents." +msgstr "Обратите внимание, что это не включает :attr:`Intents.members` и :attr:`Intents.message_content`, поскольку они являются привилегированными интентами." + +msgid "Another example showing a bot that only deals with messages and guild information:" +msgstr "Еще один пример бота, который работает только с сообщениями и информацией о гильдиях:" + +msgid "Privileged Intents" +msgstr "Привилегированные Интенты" + +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 "С изменением API, требующим от владельцев ботов указывать интенты, некоторые из них были дополнительно ограничены и требуют больше ручных действий. Такие интенты называются **привилегированными интентами**." + +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 "Привилегированный intent - это интент, который требует перехода на портал разработчика и ручного включения. Чтобы включить привилегированные интенты, выполните следующие действия:" + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "Убедитесь, что вы вошли на сайте `Discord `_." + +msgid "Navigate to the `application page `_." +msgstr "Перейдите на `страницу приложения `_." + +msgid "Click on the bot you want to enable privileged intents for." +msgstr "Нажмите на бота, для которого вы хотите включить привилегированные интенты." + +msgid "Navigate to the bot tab on the left side of the screen." +msgstr "Перейдите на вкладку \"Bot\" в левой части экрана." + +msgid "The bot tab in the application page." +msgstr "Вкладка \"Bot\" на странице приложения." + +msgid "Scroll down to the \"Privileged Gateway Intents\" section and enable the ones you want." +msgstr "Прокрутите вниз до раздела \"Privileged Gateway Intents\" и включите нужные вам интенты." + +msgid "The privileged gateway intents selector." +msgstr "Селектор интентов привилегированного шлюза." + +msgid "Enabling privileged intents when your bot is in over 100 guilds requires going through `bot verification `_." +msgstr "Включение привилегированных интентов, если ваш бот состоит в более чем 100 гильдиях, требует прохождения `верификации бота `_." + +msgid "Even if you enable intents through the developer portal, you still have to enable the intents through code as well." +msgstr "Даже если вы включите интенты через портал разработчика, вам все равно придется включить их и через код." + +msgid "Do I need privileged intents?" +msgstr "Нужны ли мне привилегированные интенты?" + +msgid "This is a quick checklist to see if you need specific privileged intents." +msgstr "Это краткий чек-лист, чтобы понять, нужны ли вам особые привилегированные интенты." + +msgid "Presence Intent" +msgstr "Интент статуса" + +msgid "Whether you use :attr:`Member.status` at all to track member statuses." +msgstr "Если вы используете :attr:`Member.status` для отслеживания статусов участников." + +msgid "Whether you use :attr:`Member.activity` or :attr:`Member.activities` to check member's activities." +msgstr "Если вы используете :attr:`Member.activity` или :attr:`Member.activities` для проверки активностей участника." + +msgid "Member Intent" +msgstr "Интент участника" + +msgid "Whether you track member joins or member leaves, corresponds to :func:`on_member_join` and :func:`on_member_remove` events." +msgstr "Если вы отслеживаете присоединение или уход участников, соответствующими событиями :func:`on_member_join` и :func:`on_member_remove`." + +msgid "Whether you want to track member updates such as nickname or role changes." +msgstr "Если вы хотите отслеживать обновления участников, такие как изменение никнейма или ролей." + +msgid "Whether you want to track user updates such as usernames, avatars, discriminators, etc." +msgstr "Если вы хотите отслеживать обновления пользователей, такие как имена пользователей, аватары, дискриминаторы и т. д." + +msgid "Whether you want to request the guild member list through :meth:`Guild.chunk` or :meth:`Guild.fetch_members`." +msgstr "Если вы хотите запрашивать список участников гильдии через :meth:`Guild.chunk` или :meth:`Guild.fetch_members`." + +msgid "Whether you want high accuracy member cache under :attr:`Guild.members`." +msgstr "Если вам нужен высокоточный кэш участников под :attr:`Guild.members`." + +msgid "Message Content Intent" +msgstr "Интент содержимого сообщения" + +msgid "Whether you have a message based command system using ext.commands" +msgstr "Если у вас есть система команд на основе сообщений, использующая ext.commands" + +msgid "Whether you use the :func:`on_message` event for anything using message content, such as auto-moderation." +msgstr "Если вы используете :func:`on_message` для всего, что использует содержимое сообщений, например, для автомодерации." + +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 "Если вы используете содержимое сообщения в :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 "Бот по-прежнему может получать содержимое сообщений в ЛС, при упоминании в сообщениях гильдии и для своих собственных сообщений гильдии." + +msgid "Member Cache" +msgstr "Кэш участника" + +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 "Наряду с интентами, Discord теперь еще больше ограничивает возможность кэширования участников и ожидает, что авторы ботов будут кэшировать столько, сколько необходимо. Однако для правильного сохранения кэша требуется интент :attr:`Intents.members`, чтобы отслеживать ушедших пользователей и правильно их удалять." + +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 "Чтобы помочь кэшу участников, когда нам не нужно, чтобы участники кэшировались, в библиотеке теперь есть флаг :class:`MemberCacheFlags` для управления кэшированием участников. На странице документации по этому классу описаны возможные политики." + +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 "Следует отметить, что некоторые вещи не нуждаются в кэше участника, так как Discord будет предоставлять полную информацию о пользователе, если это возможно. Например:" + +msgid ":func:`on_message` will have :attr:`Message.author` be a member even if cache is disabled." +msgstr "В :func:`on_message` будет входить :attr:`Message.author`, даже если кэш отключен." + +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` будет входить параметр ``member`` в виде участника, даже если кэш отключен." + +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` будет иметь параметр ``user`` в виде участника, даже если кэш отключен." + +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` будет иметь :attr:`RawReactionActionEvent.member` в виде участника, даже если кэш отключен." + +msgid "The reaction add events do not contain additional information when in direct messages. This is a Discord limitation." +msgstr "События добавления реакции не содержат дополнительной информации в личных сообщениях. Это ограничение Discord." + +msgid "The reaction removal events do not have member information. This is a Discord limitation." +msgstr "События удаления реакции не имеют информации об участнике. Это ограничение Discord." + +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 "Другие события, которые принимают :class:`Member`, потребуют использования кэша участников. Если желательна абсолютная точность кэша участников, то рекомендуется включить интент :attr:`Intents.members`." + +msgid "Retrieving Members" +msgstr "Получение участников" + +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 "Если кэш отключен или вы отключили чанкинг гильдий при запуске, нам все равно понадобится способ загрузки участников. Библиотека предлагает несколько способов сделать это:" + +msgid ":meth:`Guild.query_members`" +msgstr ":meth:`Guild.query_members`" + +msgid "Used to query members by a prefix matching nickname or username." +msgstr "Используется для запроса пользователей по префиксу, совпадающему с никнеймом или именем пользователя." + +msgid "This can also be used to query members by their user ID." +msgstr "Это также можно использовать для запроса пользователей по их ID пользователя." + +msgid "This uses the gateway and not the HTTP." +msgstr "Это использует шлюз, а не HTTP." + +msgid ":meth:`Guild.chunk`" +msgstr ":meth:`Guild.chunk`" + +msgid "This can be used to fetch the entire member list through the gateway." +msgstr "Это можно использовать для получения всего списка участников через шлюз." + +msgid ":meth:`Guild.fetch_member`" +msgstr ":meth:`Guild.fetch_member`" + +msgid "Used to fetch a member by ID through the HTTP API." +msgstr "Используется для получения участника по ID через 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 "Используется для получения большого количества участников через HTTP API." + +msgid "It should be noted that the gateway has a strict rate limit of 120 requests per 60 seconds." +msgstr "Следует отметить, что шлюз имеет строгое ограничение по скорости - 120 запросов за 60 секунд." + +msgid "Troubleshooting" +msgstr "Устранение неполадок" + +msgid "Some common issues relating to the mandatory intent change." +msgstr "Некоторые распространенные проблемы, связанные с обязательным изменением интентов." + +msgid "Where'd my members go?" +msgstr "Куда пропали мои участники?" + +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 "В связи с :ref:`изменением в API ` Discord теперь заставляет разработчиков, желающих использовать кэширование участников, явным образом отказаться от него. Это обязательное изменение Discord, и обойти его невозможно. Чтобы вернуть участников, вам нужно явно включить :ref:`привилегированный интент участников ` и изменить :attr:`Intents.members` на true." + +msgid "For example:" +msgstr "Например:" + +msgid "Why does ``on_ready`` take so long to fire?" +msgstr "Почему вызов ``on_ready`` занимает так много времени?" + +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 "В рамках изменения API, касающегося интентов, Discord также изменил способ загрузки участников в начале. Изначально библиотека могла запрашивать 75 гильдий одновременно и запрашивать участников только из тех гильдий, у которых атрибут :attr:`Guild.large` установлен на ``True``. С новыми изменениями намерений Discord требует, чтобы мы могли отправлять только 1 гильдию за запрос. Это приводит к 75-кратному замедлению, которое усугубляется тем фактом, что запрашиваются *все* гильдии, а не только большие гильдии." + +msgid "There are a few solutions to fix this." +msgstr "Есть несколько решений, как это исправить." + +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 "Первое решение - запрашивать привилегированный интент статусов вместе с привилегированным интентом участников и включить их оба. Это позволит первоначальному списку участников содержать онлайн-участников, как и в старом шлюзе. Обратите внимание, что мы по-прежнему ограничены 1 гильдией на запрос, но количество гильдий, которые мы запрашиваем, значительно уменьшилось." + +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 "Второе решение - отключить чанкинг участников, установив ``chunk_guilds_at_startup`` на ``False`` при построении клиента. Затем, когда чанкинг для гильдии будет необходим, вы можете использовать различные техники для :ref:`получения участников `." + +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 "Чтобы проиллюстрировать замедление, вызванное изменением API, возьмем бота, который состоит в 840 гильдиях, и 95 из этих гильдий являются \"большими\" (более 250 участников)." + +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 "При первоначальной системе это привело бы к тому, что 2 запроса на получение списка участников (75 гильдий, 20 гильдий) заняли бы примерно 60 секунд. При использовании :attr:`Intents.members`, но не :attr:`Intents.presences` это требует 840 запросов, при ограничении скорости 120 запросов в 60 секунд, что из-за ожидания ограничения скорости составляет около 7 минут ожидания, чтобы получить всех участников. При использовании :attr:`Intents.members` и :attr:`Intents.presences` мы в основном получаем старое поведение, так что нам нужно запросить только 95 гильдий, которые являются большими, это немного меньше, чем наш лимит скорости, так что это близко к оригинальному времени получения списка участников." + +msgid "Unfortunately due to this change being required from Discord there is nothing that the library can do to mitigate this." +msgstr "К сожалению, из-за того, что это изменение требуется от Discord, библиотека ничего не может сделать, чтобы облегчить эту ситуацию." + +msgid "If you truly dislike the direction Discord is going with their API, you can contact them via `support `_." +msgstr "Если вам действительно не нравится направление, в котором Discord движется со своим API, вы можете связаться с ними через `поддержку `_." + diff --git a/docs/locales/ru/LC_MESSAGES/logging.po b/docs/locales/ru/LC_MESSAGES/logging.po new file mode 100644 index 0000000000..a0e358dd9d --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Setting Up Logging" +msgstr "Настройка логирования" + +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* регистрирует ошибки и отладочную информацию через python-модуль :mod:`logging`. Настоятельно рекомендуется настроить модуль логирования, так как если он не настроен, ошибки и предупреждения выводиться не будут. Конфигурация модуля ``logging`` может быть простой::" + +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 "Размещается в начале приложения. Это выведет логи из discord, а также других библиотек, использующих модуль ``logging``, непосредственно в консоль." + +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 "Необязательный аргумент ``level`` указывает, на каком уровне будут регистрироваться события, и может быть любым из ``CRITICAL``, ``ERROR``, ``WARNING``, ``INFO`` и ``DEBUG``, а если не указан, то по умолчанию принимает значение ``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 "Более сложные настройки возможны с помощью модуля :mod:`logging`. Например, для записи логов в файл с именем ``discord.log`` вместо вывода их в консоль можно использовать следующий фрагмент::" + +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 "Это рекомендуется делать, особенно на таких уровнях, как ``INFO`` и ``DEBUG``, так как в журнал записывается много событий, и это может засорить stdout вашей программы." + +msgid "For more information, check the documentation and tutorial of the :mod:`logging` module." +msgstr "Для получения дополнительной информации ознакомьтесь с документацией и руководством по модулю :mod:`logging`." + diff --git a/docs/locales/ru/LC_MESSAGES/migrating_to_v1.po b/docs/locales/ru/LC_MESSAGES/migrating_to_v1.po new file mode 100644 index 0000000000..f56f3e3d44 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Migrating to v1.0" +msgstr "Миграция на 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" + +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 "Большие изменения в моделях" + +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 "Быстрый пример: ::" + +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 "До" + +msgid "After" +msgstr "После" + +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/ru/LC_MESSAGES/migrating_to_v2.po b/docs/locales/ru/LC_MESSAGES/migrating_to_v2.po new file mode 100644 index 0000000000..107f1a9606 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\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 "В версии 2.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 "Часть редизайна включает в себя изменение команд и компонентов приложения. Эти изменения включают в себя новый класс :class:`Bot`, :class:`ui.View` и новый класс :class:`ApplicationContext`. Если вы заинтересованы в их создании, ознакомьтесь с нашим :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.8 и выше, библиотеке пришлось убрать поддержку версий Python ниже 3.7, что по сути означает, что **поддержка Python 3.7 и ниже была прекращена**." + +msgid "Major Model Changes" +msgstr "Большие изменения в моделях" + +msgid "Below are major changes that have happened in v2.0:" +msgstr "Ниже приведены основные изменения, произошедшие в 2.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`` и ``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 "До" + +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 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/ru/LC_MESSAGES/old_changelog.po b/docs/locales/ru/LC_MESSAGES/old_changelog.po new file mode 100644 index 0000000000..af8302c786 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\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/ru/LC_MESSAGES/quickstart.po b/docs/locales/ru/LC_MESSAGES/quickstart.po new file mode 100644 index 0000000000..db56bffb4e --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\n" +"X-Generator: Crowdin\\n" + +msgid "Quickstart" +msgstr "Быстрый старт" + +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 "Эта страница дает краткое введение в библиотеку. Предполагается, что Вы уже установили библиотеку. Если нет, следуйте инструкции :ref:`installing`." + +msgid "A Minimal Bot" +msgstr "Минимальный бот" + +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "Давайте создадим бота, который отвечает на конкретное сообщение и рассмотрим его на примере." + +msgid "It looks something like this:" +msgstr "Это выглядит примерно так:" + +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "Поскольку в этом примере используется содержимое сообщения, для него требуется привилегированный интент :attr:`Intents.message_content`." + +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 "Давайте назовем этот файл ``example_bot.py``. Убедитесь, что Вы не назвали его ``discord.py``, так как это будет конфликтовать с библиотекой." + +msgid "There's a lot going on here, so let's walk you through it step by step:" +msgstr "Здесь много тем для обсуждения, поэтому давайте разберемся с этим шаг за шагом:" + +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 "Первая строка просто импортирует библиотеку, если в этом случае возникает `ModuleNotFoundError` или `ImportError`, тогда перейдите в :ref:`installing` для правильной установки." + +msgid "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." +msgstr "Далее мы создаем экземпляр :class:`Client`. Этот клиент является нашим соединением с 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 "Затем мы используем декоратор :meth:`Client.event` для регистрации события. Эта библиотека имеет много событий. Поскольку эта библиотека асинхронна, мы делаем все в стиле \"обратного вызова\"." + +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 "Обратный вызов - это, функция, которая вызывается, когда что-то происходит. В нашем случае событие :func:`on_ready` вызывается, когда бот завершает авторизацию и настройку, а событие :func:`on_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 "Поскольку :func:`on_message` событие вызывается для *каждого* полученного сообщения, мы должны убедиться что мы игнорируем сообщения от нас же самих. Для этого мы проверяем, совпадает ли :attr:`Message.author` с :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 "После этого мы проверяем начинается ли :class:`Message.content` с ``'$hello'``. Если это так, то мы отправим сообщение в канале, в котором было отправлено сообщение ``'Hello!'``. Это простой способ обработки команд, который впоследствии может быть автоматизирован с помощью фреймворка :doc:`./ext/commands/index`." + +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 "Наконец, мы запускаем бота с нашим токеном авторизации. Если Вам нужна помощь в получении токена авторизации или создании бота, посмотрите :ref:`discord-intro`." + +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 "Теперь, когда мы создали бота, мы должны *запустить* бота. К счастью, это просто, так как это всего лишь скрипт на Python, мы можем запустить его напрямую." + +msgid "On Windows:" +msgstr "На Windows:" + +msgid "On other systems:" +msgstr "На других системах:" + +msgid "Now you can try playing around with your basic bot." +msgstr "Теперь Вы можете поэкспериментировать с простым ботом." + +msgid "A Minimal Bot with Slash Commands" +msgstr "Минимальный бот с слэш-командами" + +msgid "As a continuation, let's create a bot that registers a simple slash command!" +msgstr "В качестве продолжения, давайте создадим бота, который регистрирует простую слэш-команду!" + +msgid "Let's look at the differences compared to the previous example, step-by-step:" +msgstr "Давайте посмотрим на различия по сравнению с предыдущим примером, шаг за шагом:" + +msgid "The first line remains unchanged." +msgstr "Первая строка остается неизменной." + +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 "Далее мы создаем экземпляр :class:`.Bot`. Это отличается от :class:`.Client`, так как поддерживает создание слэш-команд и другие возможности, наследуя все возможности :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 "Затем мы используем :meth:`.Bot.slash_command` декоратор для регистрации новой слэш-команды. Атрибут ``guild_ids`` содержит список гильдий, в которых эта команда будет активна. Если вы его не укажите, команда будет доступна глобально и может занять до часа для регистрации." + +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 "После этого мы отвечаем на слэш-команду в текстовом виде. Пожалуйста, обратите внимание, что все слэш-команды должны иметь хоть какой-то ответ, в противном случае они не сработают." + +msgid "Finally, we, once again, run the bot with our login token." +msgstr "Наконец, мы снова запустим бота с токеном авторизации." + +msgid "Congratulations! Now you have created your first slash command!" +msgstr "Поздравляем! Вы создали свою первую слэш-команду!" + diff --git a/docs/locales/ru/LC_MESSAGES/version_guarantees.po b/docs/locales/ru/LC_MESSAGES/version_guarantees.po new file mode 100644 index 0000000000..6e5b6f4142 --- /dev/null +++ b/docs/locales/ru/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=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\\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. Однако из-за отсутвия гарантий на стороне Дискорда, когда речь идёт о больших изменений наряду с довольно-таки динамической натурой 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 "Переименование функции без alias, на старое название." + +msgid "Adding or removing parameters to an event." +msgstr "Добавлен и или удаление параметров event-а." + +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/zh_CN/LC_MESSAGES/api/abcs.po b/docs/locales/zh_CN/LC_MESSAGES/api/abcs.po new file mode 100644 index 0000000000..0657b37252 --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/api/application_commands.po b/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po new file mode 100644 index 0000000000..2d724e4d54 --- /dev/null +++ b/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,877 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "示例" + +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 "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_CN/LC_MESSAGES/api/application_info.po b/docs/locales/zh_CN/LC_MESSAGES/api/application_info.po new file mode 100644 index 0000000000..86c5570471 --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/api/async_iter.po b/docs/locales/zh_CN/LC_MESSAGES/api/async_iter.po new file mode 100644 index 0000000000..c7934bda21 --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/api/audit_logs.po b/docs/locales/zh_CN/LC_MESSAGES/api/audit_logs.po new file mode 100644 index 0000000000..0f409b5f5a --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/api/clients.po b/docs/locales/zh_CN/LC_MESSAGES/api/clients.po new file mode 100644 index 0000000000..08b135427f --- /dev/null +++ b/docs/locales/zh_CN/LC_MESSAGES/api/clients.po @@ -0,0 +1,1567 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "机器人" + +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 "示例" + +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 "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 "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 "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_CN/LC_MESSAGES/api/cogs.po b/docs/locales/zh_CN/LC_MESSAGES/api/cogs.po new file mode 100644 index 0000000000..e0a5531320 --- /dev/null +++ b/docs/locales/zh_CN/LC_MESSAGES/api/cogs.po @@ -0,0 +1,187 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "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_CN/LC_MESSAGES/api/data_classes.po b/docs/locales/zh_CN/LC_MESSAGES/api/data_classes.po new file mode 100644 index 0000000000..fcb1ec47b6 --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/api/enums.po b/docs/locales/zh_CN/LC_MESSAGES/api/enums.po new file mode 100644 index 0000000000..57ebe11bb2 --- /dev/null +++ b/docs/locales/zh_CN/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 "阿姆斯特丹地区。" + +msgid "The Brazil region." +msgstr "巴西地区。" + +msgid "The Dubai region." +msgstr "迪拜地区。" + +msgid "The EU Central region." +msgstr "欧洲中部地区。" + +msgid "The EU West region." +msgstr "欧洲中部地区。" + +msgid "The Europe region." +msgstr "欧洲地区。" + +msgid "The Frankfurt region." +msgstr "法兰克福地区。" + +msgid "The Hong Kong region." +msgstr "香港地区。" + +msgid "The India region." +msgstr "印度地区。" + +msgid "The Japan region." +msgstr "日本地区。" + +msgid "The London region." +msgstr "伦敦地区。" + +msgid "The Russia region." +msgstr "俄罗斯地区。" + +msgid "The Singapore region." +msgstr "新加坡地区。" + +msgid "The South Africa region." +msgstr "南非地区。" + +msgid "The South Korea region." +msgstr "韩国地区。" + +msgid "The Sydney region." +msgstr "悉尼地区。" + +msgid "The US Central region." +msgstr "美国中部地区。" + +msgid "The US East region." +msgstr "美国东部地区。" + +msgid "The US South region." +msgstr "美国南部地区。" + +msgid "The US West region." +msgstr "美国西部地区。" + +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 "表示正常反应。" + +msgid "Represents a super reaction." +msgstr "表示超级反应。" + +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_CN/LC_MESSAGES/api/events.po b/docs/locales/zh_CN/LC_MESSAGES/api/events.po new file mode 100644 index 0000000000..2818f53e03 --- /dev/null +++ b/docs/locales/zh_CN/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 "封锁" + +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 "频道" + +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 "邀请" + +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 "昵称" + +msgid "roles" +msgstr "身份组" + +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 "状态" + +msgid "activity" +msgstr "活动" + +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 "头像" + +msgid "username" +msgstr "用户名" + +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 "消息" + +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 "投票" + +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 "反应" + +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 "帖子" + +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_CN/LC_MESSAGES/api/exceptions.po b/docs/locales/zh_CN/LC_MESSAGES/api/exceptions.po new file mode 100644 index 0000000000..e4cd130b21 --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/api/index.po b/docs/locales/zh_CN/LC_MESSAGES/api/index.po new file mode 100644 index 0000000000..7fb40a67d3 --- /dev/null +++ b/docs/locales/zh_CN/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 "目录" + +msgid "API Reference" +msgstr "API 参考" + +msgid "The following section outlines the API of Pycord." +msgstr "下面的部分概述Pycord的 API" + +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 "这个模组使用Python的logging模组以独立的输出方式记录分析以及错误。如果logging模组没有被设定,则这些记录将不会输出到任何地方。查看:ref:`logging_setup`以了解如何设定logging模组并使用logging与Pycord共同工。。" + diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/models.po b/docs/locales/zh_CN/LC_MESSAGES/api/models.po new file mode 100644 index 0000000000..41e92d1760 --- /dev/null +++ b/docs/locales/zh_CN/LC_MESSAGES/api/models.po @@ -0,0 +1,7804 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "消息" + +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 "Retrieves a :class:`Role` that the guild has." +msgstr "Retrieves a :class:`Role` that the guild has." + +msgid "This method is an API call. For general usage, consider using :attr:`get_role` instead." +msgstr "This method is an API call. For general usage, consider using :attr:`get_role` instead." + +msgid "The role in the guild with the specified ID." +msgstr "The role in the guild with the specified ID." + +msgid ":class:`Role`" +msgstr ":class:`Role`" + +msgid "Retrieving the role failed." +msgstr "Retrieving the role 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 "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 "身份组" + +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 "邀请" + +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 "示例" + +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 "帖子" + +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 "频道" + +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_CN/LC_MESSAGES/api/sinks.po b/docs/locales/zh_CN/LC_MESSAGES/api/sinks.po new file mode 100644 index 0000000000..82436a6b02 --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/api/ui_kit.po b/docs/locales/zh_CN/LC_MESSAGES/api/ui_kit.po new file mode 100644 index 0000000000..bcbfa362d8 --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/api/utils.po b/docs/locales/zh_CN/LC_MESSAGES/api/utils.po new file mode 100644 index 0000000000..b1ee992cf8 --- /dev/null +++ b/docs/locales/zh_CN/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 "工具函数" + +msgid "A helper to return the first element found in the sequence that meets the predicate. For example: ::" +msgstr "返回在满足条件的序列中找到的第一个元素的助手。例如:" + +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 "将会寻找第一个 :class:`~discord.Member` 名字为 'Mighty'并回传。如果找不到相关条目,则会回传``None``。" + +msgid "This is different from :func:`py:filter` due to the fact it stops the moment it finds a valid entry." +msgstr "这个跟 :func:`py:filter` 不一样,因为他一找到有效的条目后就会停止了。" + +msgid "Parameters" +msgstr "参数" + +msgid "A function that returns a boolean-like result." +msgstr "一个返回结果为布尔型态的函式。" + +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 "示例" + +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_CN/LC_MESSAGES/api/version_info.po b/docs/locales/zh_CN/LC_MESSAGES/api/version_info.po new file mode 100644 index 0000000000..3e7ff6039a --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/api/voice.po b/docs/locales/zh_CN/LC_MESSAGES/api/voice.po new file mode 100644 index 0000000000..6458abab9e --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/api/webhooks.po b/docs/locales/zh_CN/LC_MESSAGES/api/webhooks.po new file mode 100644 index 0000000000..37d7e63745 --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/changelog.po b/docs/locales/zh_CN/LC_MESSAGES/changelog.po new file mode 100644 index 0000000000..6394b6c1a0 --- /dev/null +++ b/docs/locales/zh_CN/LC_MESSAGES/changelog.po @@ -0,0 +1,1111 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️" + +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 "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **This Version Removes Support For Python 3.8** ⚠️ ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" + +msgid "Added" +msgstr "Added" + +msgid "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" +msgstr "Added `Guild.fetch_role` method. ([#2528](https://github.com/Pycord-Development/pycord/pull/2528))" + +msgid "[2.6.0] - 2024-07-09" +msgstr "[2.6.0] - 2024-07-09" + +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_CN/LC_MESSAGES/cogs.po b/docs/locales/zh_CN/LC_MESSAGES/cogs.po new file mode 100644 index 0000000000..713392b91f --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/discord.po b/docs/locales/zh_CN/LC_MESSAGES/discord.po new file mode 100644 index 0000000000..b68b1255f8 --- /dev/null +++ b/docs/locales/zh_CN/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 "创建一个Bot帐户" + +msgid "In order to work with the library and the Discord API in general, we must first create a Discord Bot account." +msgstr "为了与库和Discord API进行合作,我们必须先创建一个 Discord Bot 帐户。" + +msgid "Creating a Bot account is a pretty straightforward process." +msgstr "创建一个Bot帐户是一个非常简单且直观的操作。" + +msgid "Make sure you're logged on to the `Discord website `_." +msgstr "请确保你已经登入了 `Discord网站`_。" + +msgid "Navigate to the `application page `_" +msgstr "前往`应用程序页面 `_" + +msgid "Click on the \"New Application\" button." +msgstr "点击 \"New Application\" 按钮。" + +msgid "The new application button." +msgstr "新的应用程序按钮。" + +msgid "Give the application a name and click \"Create\"." +msgstr "给予应用程序一个名字然后点击\"Create\"。" + +msgid "The new application form filled in." +msgstr "填写新的应用程序表格。" + +msgid "Create a Bot User by navigating to the \"Bot\" tab and clicking \"Add Bot\"." +msgstr "通过导航到“Bot”选项卡点击“Add Bot” 以创建机器人用户。" + +msgid "Click \"Yes, do it!\" to continue." +msgstr "点击\"Yes, do it!\"继续" + +msgid "The Add Bot button." +msgstr "添加机器人按钮。" + +msgid "Make sure that **Public Bot** is ticked if you want others to invite your bot." +msgstr "如果你想让其他人可以邀请你的机器人,请确保**Public 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 "你还需要确保 **Require OAuth2 Code Grant** 是不启用的,除非你正在开发一个需要它的服务。如果你不确定是否要启用,则**让他处于不启用的状态**。" + +msgid "How the Bot User options should look like for most people." +msgstr "对于大多数人来说,Bot 用户选项应该是什么样子。" + +msgid "Copy the token using the \"Copy\" button." +msgstr "透过使用\"Copy\"按钮复制令牌。" + +msgid "**This is not the Client Secret at the General Information page.**" +msgstr "**这个并不是在General页面内的Client Secret**" + +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 "需要注意的是,令牌就跟机器人的密码一样重要。你应该**永远不要**分享令牌给任何人。如果你分享了,则其他人可以登入你的机器人并且做一些怀有恶意的事情,例如说离开伺服器、停权在一个伺服器的所有使用者、或者是恶意艾特所有人。" + +msgid "The possibilities are endless, so **do not share this token.**" +msgstr "可能性是无限的,所以**请勿分享这个令牌**。" + +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 "如果你不小心泄漏了你的令牌,请立刻点击\"Regenerate\"按钮。这将会撤销你旧有的令牌并且重新生成一个新的令牌。现在,你需要使用新的令牌进行登入。" + +msgid "And that's it. You now have a bot account and you can login with that token." +msgstr "这样就结束了。你现在就拥有了一个机器人帐号而且可以透过令牌登入。" + +msgid "Inviting Your Bot" +msgstr "邀请你的机器人" + +msgid "So you've made a Bot User but it's not actually in any server." +msgstr "你創建了一個機器人用戶,但是他並不存在於任何一個伺服器。" + +msgid "If you want to invite your bot you must create an invite URL for it." +msgstr "如果你想邀请你的机器人,你需要创建一个邀请连结来邀请它。" + +msgid "Click on your bot's page." +msgstr "点击你的机器人的页面。" + +msgid "Expand the \"OAuth2\" tab and click on \"URL Generator\"." +msgstr "展开\"OAuth2\"的分页并且点击\"URL Generator\"。" + +msgid "How the OAuth2 tab should look like." +msgstr "OAuth2 选项卡应该是什么样子。" + +msgid "Tick the \"bot\" and \"applications.commands\" checkboxes under \"scopes\"." +msgstr "在\"scopes\"分类底下勾选\"bot\"跟\"applications.commands\"两个选项。" + +msgid "The scopes checkbox with \"bot\" and \"applications.commands\" ticked." +msgstr "勾选scopes区块内的\"bot\"跟\"applications.commands\"的勾选框。" + +msgid "Tick the permissions required for your bot to function under \"Bot Permissions\"." +msgstr "在\"Bot Permissions\"区块勾选你的机器人需要的权限。" + +msgid "Please be aware of the consequences of requiring your bot to have the \"Administrator\" permission." +msgstr "请注意,您需要考虑要求您的机器人具备“管理员”权限的后果。" + +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 "当机器人被邀请到有开启2FA伺服器的时候,机器人拥有者也必须开启2FA,机器人才可以进行一些特殊操作。\\n查看`2FA支援页面`_了解更多资讯。" + +msgid "The permission checkboxes with some permissions checked." +msgstr "被勾选部分权限的权限部分。" + +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 "现在生成的 URL 可以用于将你的机器人添加到服务器。 复制并粘贴URL到您的浏览器,选择一个服务器邀请机器人并点击“授权”。" + +msgid "The person adding the bot needs \"Manage Server\" permissions to do so." +msgstr "添加机器人的人需要具有“管理服务器”的权限才能进行此操作。" + +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 "如果你想在运行时动态生成此 URL 并使用 :class: `discord.Permissions` 接口,你可以使用:func:`discord.utils.oauth_url`。" + diff --git a/docs/locales/zh_CN/LC_MESSAGES/ext/bridge/api.po b/docs/locales/zh_CN/LC_MESSAGES/ext/bridge/api.po new file mode 100644 index 0000000000..ed3b33dddf --- /dev/null +++ b/docs/locales/zh_CN/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 "机器人" + +msgid "Bot" +msgstr "机器人" + +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 "示例" + +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_CN/LC_MESSAGES/ext/bridge/index.po b/docs/locales/zh_CN/LC_MESSAGES/ext/bridge/index.po new file mode 100644 index 0000000000..5d04d47e3a --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/ext/commands/api.po b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/api.po new file mode 100644 index 0000000000..6b77c47571 --- /dev/null +++ b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4105 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\\n" +"POT-Creation-Date: 2024-05-23 07:30-0000\\n" +"PO-Revision-Date: 2024-05-23 07:30-0000\\n" +"Last-Translator: \\n" +"Language-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 "机器人" + +msgid "Bot" +msgstr "机器人" + +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 "示例" + +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 "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 "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 "An iterator that recursively walks through all commands and subcommands." +msgstr "An iterator that recursively walks through all commands and subcommands." + +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 "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_CN/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/cogs.po new file mode 100644 index 0000000000..324861b347 --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/ext/commands/commands.po b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/commands.po new file mode 100644 index 0000000000..85b41501d1 --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/extensions.po new file mode 100644 index 0000000000..4f3fd6efcd --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/ext/commands/index.po b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/index.po new file mode 100644 index 0000000000..d05921587d --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/ext/pages/index.po b/docs/locales/zh_CN/LC_MESSAGES/ext/pages/index.po new file mode 100644 index 0000000000..19c1622bfa --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/ext/tasks/index.po b/docs/locales/zh_CN/LC_MESSAGES/ext/tasks/index.po new file mode 100644 index 0000000000..5741f06c2b --- /dev/null +++ b/docs/locales/zh_CN/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 "引发" + +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_CN/LC_MESSAGES/faq.po b/docs/locales/zh_CN/LC_MESSAGES/faq.po new file mode 100644 index 0000000000..6af17f18e1 --- /dev/null +++ b/docs/locales/zh_CN/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 "常问的问题" + +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 "这是一个关于使用 ``Pycord`` 及其扩展模块的常见问题列表。 随时可以提出一个新问题或通过拉取请求提交一个问题。" + +msgid "Coroutines" +msgstr "协程" + +msgid "Questions regarding coroutines and asyncio belong here." +msgstr "关于协程与asyncio的问题都在这里。" + +msgid "What is a coroutine?" +msgstr "什么是协程?" + +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 "一个 |cortine_link|_ 是一个必须使用 ``await`` 或 ``yield from`` 来调用的函数。 当Python 遇到一个 ``await`` 时,它会在那个时候停止函数的执行,并且在其他事情上工作,直到它回到那个时候并完成它的工作。 这允许您的程序同时执行多个事项,而不使用线程或复杂的多处理程序。" + +msgid "**If you forget to await a coroutine then the coroutine will not run. Never forget to await a coroutine.**" +msgstr "**如果你忘记await一个协程,则协程将不会执行。所以永远不要忘记await一个协程。**" + +msgid "Where can I use ``await``\\?" +msgstr "我可以在哪里使用``await``\\?" + +msgid "You can only use ``await`` inside ``async def`` functions and nowhere else." +msgstr "你仅可以在``async def``函式内使用``await``,其他地方都不能使用。" + +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 "如何发送私信?" + +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_CN/LC_MESSAGES/index.po b/docs/locales/zh_CN/LC_MESSAGES/index.po new file mode 100644 index 0000000000..f6843e1e93 --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/installing.po b/docs/locales/zh_CN/LC_MESSAGES/installing.po new file mode 100644 index 0000000000..0696aa5e30 --- /dev/null +++ b/docs/locales/zh_CN/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 "安装Pycord" + +msgid "This is the documentation for Pycord, a library for Python to aid in creating applications that utilise the Discord API." +msgstr "这是Pycord的文挡,一个Python库,用于帮助创建、利用Discord API的库。" + +msgid "Prerequisites" +msgstr "前置条件" + +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可以使用Python3.8或以上的版本。不支持较早的Python版本。并不支持Python2.7或更低的Python。并不支持Python3.7或更低的版本。" + +msgid "Installing" +msgstr "安装" + +msgid "For new features in upcoming versions, you will need to install the pre-release until a stable version is released. ::" +msgstr "对于即将到来的版本的新功能,你将需要安装一个预发布版本直到一个稳定版本的发布。::" + +msgid "For Windows users, this command should be used to install the pre-release: ::" +msgstr "对于Windows用户,使用这个命令安装预发布版本:::" + +msgid "You can get the library directly from PyPI: ::" +msgstr "你可以透过PyPI获取本库:::" + +msgid "If you are using Windows, then the following should be used instead: ::" +msgstr "如果你正在使用Windows,则应该遵照下方的指示进行操作:::" + +msgid "To install additional packages for speedup, you should use ``py-cord[speed]`` instead of ``py-cord``, e.g." +msgstr "如果要安装额外的加速包体,你应该使用``py-cord[speed]``而不是``py-cord``,例如:" + +msgid "To get voice support, you should use ``py-cord[voice]`` instead of ``py-cord``, e.g. ::" +msgstr "如果要获取语音支援,你应该使用``py-cord[voice]``而不是``py-cord``,例如:::" + +msgid "On Linux environments, installing voice requires getting the following dependencies:" +msgstr "在Linux环境下,安装语音支援包体需要以下依赖:" + +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 "对于基于Debian的系统,以下指令将获取获得这些依赖:" + +msgid "Remember to check your permissions!" +msgstr "请记住检查您的权限!" + +msgid "Virtual Environments" +msgstr "虚拟环境" + +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 "有时你想让库不要安装污染系统或使用不同于安装在系统上的库的版本。 您可能也没有权限在全系统安装库。 为此目的,截至Python 3.3的标准库含有一个称为“虚拟环境”的概念,以帮助维持这些单独的版本。" + +msgid "A more in-depth tutorial is found on :doc:`py:tutorial/venv`." +msgstr "更多更深的交学可以在 :doc:`py:tutorual/venv` 内找到。" + +msgid "However, for the quick and dirty:" +msgstr "然而,就快速和简短而言:" + +msgid "Go to your project's working directory:" +msgstr "前往您项目的工作目录:" + +msgid "Activate the virtual environment:" +msgstr "激活虚拟环境:" + +msgid "On Windows you activate it with:" +msgstr "在Windows系统上激活它:" + +msgid "Use pip like usual:" +msgstr "跟往常一样的使用pip:" + +msgid "Congratulations. You now have a virtual environment all set up." +msgstr "恭喜您。你现在已经设置完成了一个虚拟环境。" + +msgid "Basic Concepts" +msgstr "基础概念" + +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围绕着 :ref:`event `的概念。event是一个让你可以去监听并且回应的东西。举个例子来说,当一个讯息创建,你将会收到一个event是关于这个讯息的并且可以用于回应。" + +msgid "A quick example to showcase how events work:" +msgstr "一个显示event如何工作的简单示例:" + diff --git a/docs/locales/zh_CN/LC_MESSAGES/intents.po b/docs/locales/zh_CN/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..92a973fb2f --- /dev/null +++ b/docs/locales/zh_CN/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 "网关意图入门" + +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 "在版本号1.5中,引入了 :class:`Intents`。这对于在编写机器人程式码时有很大的改变。网关意图允许机器人去获取一些特定的事件。每个事件都被纪录在 :class:`Intents`文档的各个属性中。" + +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 "请确保你已经登入了 `Discord网站`_。" + +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_CN/LC_MESSAGES/logging.po b/docs/locales/zh_CN/LC_MESSAGES/logging.po new file mode 100644 index 0000000000..8130d84e9f --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/migrating_to_v1.po b/docs/locales/zh_CN/LC_MESSAGES/migrating_to_v1.po new file mode 100644 index 0000000000..d894800903 --- /dev/null +++ b/docs/locales/zh_CN/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 "事件更改" + +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_CN/LC_MESSAGES/migrating_to_v2.po b/docs/locales/zh_CN/LC_MESSAGES/migrating_to_v2.po new file mode 100644 index 0000000000..8fcd2c522f --- /dev/null +++ b/docs/locales/zh_CN/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 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 "事件更改" + +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 "其它更改" + +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/zh_CN/LC_MESSAGES/old_changelog.po b/docs/locales/zh_CN/LC_MESSAGES/old_changelog.po new file mode 100644 index 0000000000..a1f5831ab1 --- /dev/null +++ b/docs/locales/zh_CN/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_CN/LC_MESSAGES/quickstart.po b/docs/locales/zh_CN/LC_MESSAGES/quickstart.po new file mode 100644 index 0000000000..79f6092a8e --- /dev/null +++ b/docs/locales/zh_CN/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 "快速入门" + +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 "这是一个简短介绍库的页面。假设您已经安装了库。如果你尚未安装,请查看 :ref:`installing`部份。" + +msgid "A Minimal Bot" +msgstr "一个精简版的机器人" + +msgid "Let's make a bot that responds to a specific message and walk you through it." +msgstr "让我们制作一个机器人来回应特定讯息,并且引导您完成它。" + +msgid "It looks something like this:" +msgstr "它看起来像这样:" + +msgid "Because this example utilizes message content, it requires the :attr:`Intents.message_content` privileged intent." +msgstr "因为这个示例使用到了讯息内容,因此它需要 :attr:`Intents.message_content`网关意图。" + +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 "让我们将这个档案命名成``example_bot.py``。确保不要将它命名成像是``discord.py``这样会跟库引发冲突的命名。" + +msgid "There's a lot going on here, so let's walk you through it step by step:" +msgstr "这里有很多事要做,所以让我们带你一步一步来:" + +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 "在第一行的部份,导入库,如果发生了`ModuleNotFoundError`或者`ImportError`错误,则前往 :ref:`installing` 部份确认安装是否正确。" + +msgid "Next, we create an instance of a :class:`Client`. This client is our connection to Discord." +msgstr "接下来,我们创建一个基于 :class:`Client`的实体。这个实体是我们用于跟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 "接着我们使用 :meth:`Client.event` 装饰器去注册一个event。这个库拥有许多event。因为这个库是异步的,所以我们以\"callback\"的风格来做事。" + +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_CN/LC_MESSAGES/version_guarantees.po b/docs/locales/zh_CN/LC_MESSAGES/version_guarantees.po new file mode 100644 index 0000000000..130ae3229a --- /dev/null +++ b/docs/locales/zh_CN/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 什么时候会大幅改动他们的 API,以及考量到 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 "**大型更动**只适用于**文档上标註的函式与类别**。对于没有在文档上标注的内容(如以 `_` 命名的变数或函式)的改动,并不能算是一种**大型更动**," + +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 "将新的元素加入 data class 的 ``__slots__``" + +msgid "Changing the behaviour of a function to fix a bug." +msgstr "改变函式的行为来解决一些 Bug" + +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/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/pyproject.toml b/pyproject.toml index 0f3af97474..b4662813e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [build-system] requires = [ - "setuptools>=62.6,<70", - "setuptools-scm>=6.2,<8", + "setuptools>=62.6,<=72.1.0", + "setuptools-scm>=6.2,<=8.1.0", ] build-backend = "setuptools.build_meta" @@ -12,7 +12,7 @@ authors = [ ] description = "A Python wrapper for the Discord API" readme = "README.rst" -requires-python = ">=3.8" +requires-python = ">=3.9" license = {text = "MIT"} classifiers = [ "Development Status :: 5 - Production/Stable", @@ -20,7 +20,6 @@ classifiers = [ "Intended Audience :: Developers", "Natural Language :: English", "Operating System :: OS Independent", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -66,7 +65,7 @@ voice = {file = "requirements/voice.txt"} [tool.setuptools_scm] [tool.black] -target-version = ['py38', 'py39', 'py310', 'py311', 'py312'] +target-version = ['py39', 'py310', 'py311', 'py312'] [tool.isort] profile = "black" @@ -85,7 +84,7 @@ extension-pkg-whitelist = [ "pydantic", "ujson" ] -py-version = 3.8 +py-version = 3.9 [tool.pylint.messages_control] enable = [ 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/dev.txt b/requirements/dev.txt index 5c39338500..aa7fb8afc1 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -1,11 +1,11 @@ -r _.txt pylint~=3.2.6 -pytest~=8.3.1 +pytest~=8.3.2 pytest-asyncio~=0.23.3 # pytest-order~=1.0.1 -mypy~=1.11.0 +mypy~=1.11.1 coverage~=7.6 -pre-commit==3.5.0 +pre-commit==3.8.0 codespell==2.3.0 bandit==1.7.9 -flake8==7.1.0 +flake8==7.1.1 diff --git a/requirements/docs.txt b/requirements/docs.txt index d309bbdf31..1d9f4ba43d 100644 --- a/requirements/docs.txt +++ b/requirements/docs.txt @@ -1,8 +1,11 @@ -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 +levenshtein==0.25.1