diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 11a4b0d8d8..1ba03787e8 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,9 +1,11 @@ -* @Pycord-Development/maintainers +* @Pycord-Development/library-maintainers @Pycord-Development/library-contributors -/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 +/discord/ @Pycord-Development/maintain-discord-api + +/tests/ @Pycord-Development/maintain-tests +/discord/ext/testing/ @Pycord-Development/maintain-tests +/discord/ext/bridge/ @Pycord-Development/maintain-ext-bridge +/.github/ @Lulalaby /docs/locales/ @Pycord-Development/maintain-translations /docs/build/locales/ @Pycord-Development/maintain-translations /.github/workflows/docs-localization-download.yml @Pycord-Development/maintain-translations diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index fed099f541..795e5ad0b0 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,4 +1,4 @@ -blank_issues_enabled: false +blank_issues_enabled: true contact_links: - name: Ask a question about: Ask questions and discuss with other users of the library. diff --git a/.github/SECURITY.md b/.github/SECURITY.md index 8cf63b4949..d01f9919ed 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -5,7 +5,7 @@ | Version | Supported | | ------- | ------------------ | | 2.x | :white_check_mark: | -| <2.0.0 | :x: | +| <2.6.1 | :x: | ## Reporting a Vulnerability diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index a36074330e..0000000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,31 +0,0 @@ -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" - 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" - commit-message: - prefix: "ci" - include: "scope" diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index ef7d88e37e..6084fca3de 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -26,7 +26,7 @@ jobs: language: ["python"] steps: - name: "Checkout repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: "Initialize CodeQL" uses: github/codeql-action/init@v3 with: diff --git a/.github/workflows/docs-checks.yml b/.github/workflows/docs-checks.yml index 0837c60f84..fa224a9525 100644 --- a/.github/workflows/docs-checks.yml +++ b/.github/workflows/docs-checks.yml @@ -36,11 +36,11 @@ jobs: runs-on: ubuntu-latest steps: - name: "Checkout Repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: "Setup Python" - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: - python-version: "3.12" + python-version: "3.13" cache: "pip" cache-dependency-path: "requirements/docs.txt" check-latest: true diff --git a/.github/workflows/docs-json-export.yml b/.github/workflows/docs-json-export.yml new file mode 100644 index 0000000000..eb46d1b1b3 --- /dev/null +++ b/.github/workflows/docs-json-export.yml @@ -0,0 +1,51 @@ +name: Docs JSON Export + +on: + push: + branches: + - master + workflow_dispatch: + +jobs: + export-docs-json: + name: Export docs.json + runs-on: ubuntu-latest + steps: + - name: Checkout repository + id: checkout + uses: actions/checkout@v5 + - name: Set up Python + uses: actions/setup-python@v6 + id: setup-python + with: + python-version: "3.13" + cache: "pip" + cache-dependency-path: "requirements/docs.txt" + check-latest: true + - name: Install dependencies + id: install-deps + run: | + python -m pip install -U pip + pip install ".[docs]" + pip install beautifulsoup4 + - name: Build Sphinx HTML docs + id: build-sphinx + run: sphinx-build -b html docs docs/_build/html + - name: Export docs.json + id: generate-json + run: python scripts/docs_json_exporter.py + - name: Upload docs.json as artifact + uses: actions/upload-artifact@v4.6.2 + id: artifact-upload + with: + name: Pycord Docs JSON + path: docs.json + retention-days: 1 + - name: Show docs.json summary + run: | + head -n 40 docs.json || tail -n 40 docs.json + - name: Output artifact ID + run: | + echo "artifact-id=${{ steps.artifact-upload.outputs.artifact-id }}" >> $GITHUB_OUTPUT + echo "artifact-url=${{ steps.artifact-upload.outputs.artifact-url }}" >> $GITHUB_OUTPUT + echo "::notice::Artifact uploaded: ${{ steps.artifact-upload.outputs.artifact-url }}" diff --git a/.github/workflows/docs-localization-download.yml b/.github/workflows/docs-localization-download.yml index 34e75a4dc7..1d014c5c32 100644 --- a/.github/workflows/docs-localization-download.yml +++ b/.github/workflows/docs-localization-download.yml @@ -15,13 +15,13 @@ jobs: pr_id: ${{ steps.convert_outputs.outputs.pr_id }} steps: - name: "Checkout Repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-tags: true - name: "Install Python" - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: - python-version: "3.12" + python-version: "3.13" cache: "pip" cache-dependency-path: "requirements/_locale.txt" - name: "Install Dependencies" @@ -40,7 +40,7 @@ jobs: working-directory: ./docs - name: "Crowdin" id: crowdin - uses: crowdin/github-action@v2 + uses: crowdin/github-action@v2.11.0 with: upload_sources: false upload_translations: false @@ -74,7 +74,7 @@ jobs: environment: translations steps: - name: "Checkout Repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: "Refresh Pull" run: | git fetch --all diff --git a/.github/workflows/docs-localization-upload.yml b/.github/workflows/docs-localization-upload.yml index 521dc80ee3..0b20e711ae 100644 --- a/.github/workflows/docs-localization-upload.yml +++ b/.github/workflows/docs-localization-upload.yml @@ -20,13 +20,13 @@ jobs: environment: translations steps: - name: "Checkout Repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-tags: true - name: "Install Python" - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: - python-version: "3.12" + python-version: "3.13" cache: "pip" cache-dependency-path: "requirements/_locale.txt" - name: "Install Dependencies" @@ -44,7 +44,7 @@ jobs: sphinx-intl update -p ./build/locales ${{ vars.SPHINX_LANGUAGES }} working-directory: ./docs - name: "Crowdin" - uses: crowdin/github-action@v2 + uses: crowdin/github-action@v2.11.0 with: upload_sources: true upload_translations: false diff --git a/.github/workflows/lib-checks.yml b/.github/workflows/lib-checks.yml index 6c4a4941bb..47b24d283a 100644 --- a/.github/workflows/lib-checks.yml +++ b/.github/workflows/lib-checks.yml @@ -32,11 +32,11 @@ jobs: runs-on: ubuntu-latest steps: - name: "Checkout Repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: "Setup Python" - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: - python-version: "3.12" + python-version: "3.13" cache: "pip" cache-dependency-path: "requirements/dev.txt" - name: "Install dependencies" @@ -52,11 +52,11 @@ jobs: runs-on: ubuntu-latest steps: - name: "Checkout Repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: "Setup Python" - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: - python-version: "3.12" + python-version: "3.13" cache: "pip" cache-dependency-path: "requirements/dev.txt" - name: "Install dependencies" @@ -70,11 +70,11 @@ jobs: runs-on: ubuntu-latest steps: - name: "Checkout Repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: "Setup Python" - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: - python-version: "3.12" + python-version: "3.13" cache: "pip" cache-dependency-path: "requirements/dev.txt" - name: "Install dependencies" @@ -94,11 +94,11 @@ jobs: runs-on: ubuntu-latest steps: - name: "Checkout Repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: "Setup Python" - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: - python-version: "3.12" + python-version: "3.13" cache: "pip" cache-dependency-path: "requirements/dev.txt" - name: "Install dependencies" @@ -120,7 +120,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] exclude: - { python-version: "3.9", os: "macos-latest" } include: @@ -131,9 +131,9 @@ jobs: PYTHON: ${{ matrix.python-version }} steps: - name: "Checkout Repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: "Setup Python" - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} cache: "pip" diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 8448acc094..683b3f3f70 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -25,6 +25,6 @@ jobs: runs-on: ubuntu-latest steps: - name: "Check Semantic Pull Request" - uses: amannn/action-semantic-pull-request@v5.5.3 + uses: amannn/action-semantic-pull-request@v6.1.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/readthedocs.yml b/.github/workflows/readthedocs.yml index e5b039625c..a830a034d4 100644 --- a/.github/workflows/readthedocs.yml +++ b/.github/workflows/readthedocs.yml @@ -18,22 +18,11 @@ jobs: environment: documentation strategy: matrix: - rdt_projects: [ - "pycord-spanish", - "pycord-japanese", - "pycord-brazilian", - "pycord-russian", - "pycord-german", - "pycord-hindi", - "pycord-korean", - "pycord-italian", - "pycord-chinese", - "pycord-french" - ] + rdt_projects: ["pycord-spanish", "pycord-japanese", "pycord-brazilian", "pycord-russian", "pycord-german", "pycord-hindi", "pycord-korean", "pycord-italian", "pycord-chinese", "pycord-french", "pyord-turkish"] steps: - name: "Trigger RDT ${{ matrix.rdt_projects }}" run: | PROJECT=${{ matrix.rdt_projects }} curl --location --request POST "https://readthedocs.org/api/v3/projects/$PROJECT/versions/master/builds/" \ --header 'Content-Type: application/json' \ - --header "Authorization: Token ${{ secrets.READTHEDOCS_TOKEN }}" \ No newline at end of file + --header "Authorization: Token ${{ secrets.READTHEDOCS_TOKEN }}" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1756ab300d..7b28d02100 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,7 @@ on: inputs: version: type: string - description: "Version number to release (e.g., 1.2.3, 1.2.3-rc1, 1.2.0)" + description: "Version number to release (e.g., 1.2.3, 1.2.3rc1, 1.2.0)" required: true permissions: write-all @@ -16,7 +16,7 @@ jobs: environment: release steps: - name: "Security Check" - uses: Aiko-IT-Systems/execute-whitelist-action@v1.0.0 + uses: Pycord-Development/execute-whitelist-action@v2.0.0 with: whitelisted-github-ids: ${{ vars.ALLOWED_USER_IDS }} token: ${{ secrets.GITHUB_TOKEN }} @@ -31,7 +31,7 @@ jobs: runs-on: ubuntu-latest steps: - name: "Checkout Repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 fetch-tags: true @@ -41,58 +41,199 @@ jobs: env: VERSION: ${{ github.event.inputs.version }} run: | + VALID_VERSION_REGEX='^([0-9]+\.[0-9]+\.[0-9]+((a|b|rc|\.dev|\.post)[0-9]+)?)$' + if ! [[ $VERSION =~ $VALID_VERSION_REGEX ]]; then + echo "::error::Invalid version string '$VERSION'. Must match PEP 440 (e.g. 1.2.0, 1.2.0rc1, 1.2.0.dev1, 1.2.0a1, 1.2.0b1, 1.2.0.post1)" + exit 1 + fi + if ! [[ $VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && ! [[ $VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+rc[0-9]+$ ]]; then + echo "::error::Unsupported version string '$VERSION'. Only normal releases (e.g. 1.2.3) and rc (e.g. 1.2.3rc1) are supported at this time." + exit 1 + fi echo "version=$VERSION" >> $GITHUB_OUTPUT PREVIOUS_TAG=$(git describe --tags --abbrev=0 HEAD^) echo "previous_tag=${PREVIOUS_TAG}" >> $GITHUB_OUTPUT - if [[ $VERSION =~ -rc ]]; then - MAJOR_MINOR_VERSION=$(echo $VERSION | grep -oE '^[0-9]+\.[0-9]+') - echo "branch_name=v${MAJOR_MINOR_VERSION}.x" >> $GITHUB_OUTPUT + MAJOR_MINOR_VERSION=$(echo $VERSION | grep -oE '^[0-9]+\.[0-9]+') + echo "branch_name=v${MAJOR_MINOR_VERSION}.x" >> $GITHUB_OUTPUT + if [[ $VERSION == *rc* ]]; then echo "is_rc=true" >> $GITHUB_OUTPUT - elif [[ $VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then - MAJOR_MINOR_VERSION=$(echo $VERSION | grep -oE '^[0-9]+\.[0-9]+') - echo "branch_name=v${MAJOR_MINOR_VERSION}.x" >> $GITHUB_OUTPUT - echo "is_rc=false" >> $GITHUB_OUTPUT else - MAJOR_MINOR_VERSION=$(echo $VERSION | grep -oE '^[0-9]+\.[0-9]+') - echo "branch_name=v${MAJOR_MINOR_VERSION}.x" >> $GITHUB_OUTPUT echo "is_rc=false" >> $GITHUB_OUTPUT fi + branch_protection_rename: + needs: [safety_check] + runs-on: ubuntu-latest + environment: release + env: + GH_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }} + outputs: + master_rule_id: ${{ steps.get_rule_ids.outputs.master_rule_id }} + master_pattern: ${{ steps.get_rule_ids.outputs.master_pattern }} + v_rule_id: ${{ steps.get_rule_ids.outputs.v_rule_id }} + v_pattern: ${{ steps.get_rule_ids.outputs.v_pattern }} + steps: + - name: Get branch protection rule IDs + id: get_rule_ids + run: | + gh api repos/${{ github.repository }}/branch-protection-rules > rules.json + MASTER_ID=$(jq -r '.[] | select(.pattern == "master") | .id' rules.json) + MASTER_PATTERN=$(jq -r '.[] | select(.pattern == "master") | .pattern' rules.json) + V_ID=$(jq -r '.[] | select(.pattern | test("^v[0-9]+\\.[0-9]+\\.x$")) | .id' rules.json) + V_PATTERN=$(jq -r '.[] | select(.pattern | test("^v[0-9]+\\.[0-9]+\\.x$")) | .pattern' rules.json) + echo "master_rule_id=$MASTER_ID" >> $GITHUB_OUTPUT + echo "master_pattern=$MASTER_PATTERN" >> $GITHUB_OUTPUT + echo "v_rule_id=$V_ID" >> $GITHUB_OUTPUT + echo "v_pattern=$V_PATTERN" >> $GITHUB_OUTPUT + - name: Rename master protection to temp-master + if: ${{ steps.get_rule_ids.outputs.master_rule_id != '' }} + run: | + gh api repos/${{ github.repository }}/branch-protection-rules/${{ steps.get_rule_ids.outputs.master_rule_id }} \ + -X PATCH -F pattern="temp-master" + - name: Rename v*.* protection to temp-v + if: ${{ steps.get_rule_ids.outputs.v_rule_id != '' }} + run: | + gh api repos/${{ github.repository }}/branch-protection-rules/${{ steps.get_rule_ids.outputs.v_rule_id }} \ + -X PATCH -F pattern="temp-v" + lib_release: - needs: [safety_check,pre_config] + needs: [pre_config, branch_protection_rename] runs-on: ubuntu-latest environment: release env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }} steps: - name: "Checkout Repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 fetch-tags: true - - - name: "Release Pycord" - id: pycord-release - uses: Aiko-IT-Systems/pycord-lib-release-action@v1.0.0 + - name: "Create version branch if missing" + id: conditional-create-version-branch + shell: bash + env: + VERSION_BRANCH: ${{ needs.pre_config.outputs.branch_name }} + GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }} + run: | + git fetch origin + if ! git show-ref --verify --quiet refs/heads/$VERSION_BRANCH; then + git checkout -b $VERSION_BRANCH + git push origin $VERSION_BRANCH + fi + git checkout $VERSION_BRANCH + - name: "Setup Python" + id: python-setup + uses: actions/setup-python@v6 + with: + python-version: "3.13" + cache: "pip" + cache-dependency-path: "requirements/_release.txt" + - name: "Install Release Dependencies" + id: python-install + env: + REQ_FILE: "requirements/_release.txt" + shell: bash + run: | + python -m pip install --upgrade pip + pip install setuptools setuptools_scm twine build + pip install -r $REQ_FILE + - name: "Prepare and Update CHANGELOG.md" + id: changelog-update + shell: bash + env: + VERSION: ${{ inputs.version }} + REPOSITORY: ${{ github.repository }} + GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }} + BRANCH: ${{ github.ref_name }} + run: | + git config user.name "NyuwBot" + git config user.email "nyuw@aitsys.dev" + DATE=$(date +'%Y-%m-%d') + sed -i "/These changes are available on the \`.*\` branch, but have not yet been released\./{N;d;}" CHANGELOG.md + sed -i "s/## \[Unreleased\]/## [$VERSION] - $DATE/" CHANGELOG.md + sed -i "0,/## \[$VERSION\]/ s|## \[$VERSION\]|## [Unreleased]\n\nThese changes are available on the \`$BRANCH\` branch, but have not yet been released.\n\n### Added\n\n### Changed\n\n### Fixed\n\n### Deprecated\n\n### Removed\n\n&|" CHANGELOG.md + sed -i "s|\[unreleased\]:.*|[unreleased]: https://github.com/$REPOSITORY/compare/v$VERSION...HEAD\n[$VERSION]: https://github.com/$REPOSITORY/compare/$(git describe --tags --abbrev=0 @^)...v$VERSION|" CHANGELOG.md + git add CHANGELOG.md + git commit -m "chore(release): update CHANGELOG.md for version $VERSION" + - name: "Commit and Push Changelog to ${{ github.ref_name }}" + id: commit-main-branch + shell: bash + env: + VERSION: ${{ inputs.version }} + GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }} + BRANCH: ${{ github.ref_name }} + run: | + git config user.name "NyuwBot" + git config user.email "nyuw@aitsys.dev" + git push origin HEAD:$BRANCH -f + - name: "Push Changelog to Version Branch" + id: commit-version-branch + shell: bash + env: + GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }} + VERSION_BRANCH: ${{ needs.pre_config.outputs.branch_name }} + run: | + git config user.name "NyuwBot" + git config user.email "nyuw@aitsys.dev" + git push origin HEAD:$VERSION_BRANCH -f + - name: "Create Git Tag" + id: create-git-tag + shell: bash + env: + VERSION: ${{ inputs.version }} + GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }} + run: | + git config user.name "NyuwBot" + git config user.email "nyuw@aitsys.dev" + git tag v$VERSION -m "Release version $VERSION" + git push origin v$VERSION -f + - name: "Verify Version" + id: python-version-verify + shell: bash + run: python -m setuptools_scm + - name: "Build Package" + id: python-version-build + shell: bash + run: | + python3 -m build --sdist + python3 -m build --wheel + - name: "Create GitHub Release" + uses: softprops/action-gh-release@v2.3.3 + id: gh-release with: - github-token: ${{ secrets.GITHUB_TOKEN }} - pypi-token: ${{ secrets.PYPI_TOKEN }} - version-branch-name: ${{ needs.pre_config.outputs.branch_name }} - ref: ${{ github.ref_name }} + tag_name: "v${{ inputs.version }}" + name: "v${{ inputs.version }}" + generate_release_notes: true + draft: false + prerelease: ${{ needs.pre_config.outputs.is_rc }} + files: | + dist/*.whl + dist/*.tar.gz + token: ${{ secrets.ADMIN_GITHUB_TOKEN }} + make_latest: true repository: ${{ github.repository }} - python-version: "3.12" - release-requirements: "requirements/_release.txt" - version: ${{ needs.pre_config.outputs.version }} - is-rc: ${{ needs.pre_config.outputs.is_rc }} - pypi-package: "py-cord" + target_commitish: ${{ github.ref_name }} + + - name: "Publish package distributions to PyPI" + uses: pypa/gh-action-pypi-publish@v1.13.0 + env: + name: "pypi" + url: "https://pypi.org/p/py-cord" + with: + password: ${{ secrets.PYPI_TOKEN }} + user: __token__ + attestations: false + verify-metadata: false - name: "Echo release url" - run: echo "${{ steps.pycord-release.outputs.gh-release }}" + run: echo "${{ steps.gh-release.outputs.url }}" docs_release: runs-on: ubuntu-latest - needs: [lib_release,pre_config] - if: needs.pre_config.outputs.is_rc == 'false' || (needs.pre_config.outputs.is_rc == 'true' && endsWith(needs.pre_config.outputs.version, '.0-rc1')) + needs: [lib_release, pre_config] + if: + ${{ needs.pre_config.outputs.is_rc == 'false' || (needs.pre_config.outputs.is_rc + == 'true' && endsWith(needs.pre_config.outputs.version, '0rc1')) }} environment: release steps: - name: "Sync Versions on Read the Docs" @@ -105,23 +246,23 @@ jobs: run: | VERSION=${{ needs.pre_config.outputs.version }} MAJOR_MINOR_VERSION=$(echo $VERSION | grep -oE '^[0-9]+\.[0-9]+') - PATCH_VERSION=${VERSION##*.} - if [[ $PATCH_VERSION =~ ^[0-9]+$ ]]; then - DOCS_VERSION="v$VERSION" + HIDDEN=$([[ $VERSION == *rc* ]] && echo true || echo false) + if [[ $VERSION == *rc* ]]; then + DOCS_VERSION="v${MAJOR_MINOR_VERSION}.x" else - DOCS_VERSION="v$MAJOR_MINOR_VERSION.x" + DOCS_VERSION="v$VERSION" fi curl --location --request PATCH "https://readthedocs.org/api/v3/projects/pycord/versions/$DOCS_VERSION/" \ --header 'Content-Type: application/json' \ --header "Authorization: Token ${{ secrets.READTHEDOCS_TOKEN }}" \ --data '{ "active": true, - "hidden": false + "hidden": $HIDDEN }' inform_discord: runs-on: ubuntu-latest - needs: [lib_release,docs_release,close_milestone,pre_config] + needs: [docs_release, lib_release, pre_config] environment: release steps: - name: "Notify Discord" @@ -132,20 +273,30 @@ jobs: GITHUB_COMPARE_URL="" GITHUB_RELEASE_URL="" PYPI_RELEASE_URL="" - ANNOUNCEMENT="## <:pycord:1063211537008955495> Pycord v${MAJOR_MINOR_VERSION} is out!\n\n" - ANNOUNCEMENT="${ANNOUNCEMENT}[@everyone]\n\n" - ANNOUNCEMENT="${ANNOUNCEMENT}You can view the changelog here: <$DOCS_URL>\n\n" - ANNOUNCEMENT="${ANNOUNCEMENT}Feel free to take a look at the [GitHub changelog]($GITHUB_COMPARE_URL), [GitHub release page]($GITHUB_RELEASE_URL) and the [PyPI release page]($PYPI_RELEASE_URL).\n\n" - ANNOUNCEMENT="${ANNOUNCEMENT}You can install this version by running the following command:\n\`\`\`sh\npip install -U py-cord==$VERSION\n\`\`\`\n\n" + if [[ $VERSION == *rc* ]]; then + ANNOUNCEMENT="## <:pycord:1063211537008955495> Pycord v$VERSION Release Candidate ($MAJOR_MINOR_VERSION) is available!\n\n" + ANNOUNCEMENT="${ANNOUNCEMENT}@here\n\n" + ANNOUNCEMENT="${ANNOUNCEMENT}This is a pre-release (release candidate) for testing and feedback.\n\n" + ANNOUNCEMENT="${ANNOUNCEMENT}You can view the changelog here: <$DOCS_URL>\n\n" + ANNOUNCEMENT="${ANNOUNCEMENT}Check out the [GitHub changelog]($GITHUB_COMPARE_URL), [GitHub release page]($GITHUB_RELEASE_URL), and [PyPI release page]($PYPI_RELEASE_URL).\n\n" + ANNOUNCEMENT="${ANNOUNCEMENT}You can install this version by running the following command:\n\`\`\`sh\npip install -U py-cord==$VERSION\n\`\`\`\n\n" + ANNOUNCEMENT="${ANNOUNCEMENT}Please try it out and let us know your feedback or any issues!" + else + ANNOUNCEMENT="## <:pycord:1063211537008955495> Pycord v${VERSION} is out!\n\n" + ANNOUNCEMENT="${ANNOUNCEMENT}@everyone\n\n" + ANNOUNCEMENT="${ANNOUNCEMENT}You can view the changelog here: <$DOCS_URL>\n\n" + ANNOUNCEMENT="${ANNOUNCEMENT}Feel free to take a look at the [GitHub changelog]($GITHUB_COMPARE_URL), [GitHub release page]($GITHUB_RELEASE_URL) and the [PyPI release page]($PYPI_RELEASE_URL).\n\n" + ANNOUNCEMENT="${ANNOUNCEMENT}You can install this version by running the following command:\n\`\`\`sh\npip install -U py-cord==$VERSION\n\`\`\`" + fi curl -H "Content-Type: application/json" \ -X POST \ - -d "{\"content\":\"$ANNOUNCEMENT\"}" \ + -d "{\"content\":\"$ANNOUNCEMENT\",\"allowed_mentions\":{\"parse\":[\"everyone\",\"roles\"]}}" \ ${{ secrets.DISCORD_WEBHOOK_URL }} determine_milestone_id: runs-on: ubuntu-latest - needs: [lib_release,pre_config] - if: ${{ !contains(needs.pre_config.outputs.version, '-') && endsWith(needs.pre_config.outputs.version, '.0') }} + needs: [lib_release, pre_config] + if: ${{ !contains(needs.pre_config.outputs.version, '-') }} outputs: old_milestone_version: ${{ steps.extract_version.outputs.old_milestone_version }} new_milestone_version: ${{ steps.extract_version.outputs.new_milestone_version }} @@ -158,21 +309,24 @@ jobs: run: | gh extension install valeriobelli/gh-milestone VERSION=${{ needs.pre_config.outputs.version }} - OLD_MILESTONE_VERSION=$(gh milestone list --query "v2.7" | grep "#" | awk '{print $2}') + PREV_MAJOR_MINOR=$(echo $VERSION | awk -F. '{printf "v%d.%d", $1, $2-1}') + OLD_MILESTONE_VERSION=$(gh milestone list --query "$PREV_MAJOR_MINOR" | grep "#" | awk '{print $2}') NEW_MILESTONE_VERSION="v$(echo $VERSION | grep -oE '^[0-9]+\.[0-9]+')" echo "old_milestone_version=$OLD_MILESTONE_VERSION" >> $GITHUB_OUTPUT echo "new_milestone_version=$NEW_MILESTONE_VERSION" >> $GITHUB_OUTPUT close_milestone: runs-on: ubuntu-latest - needs: [determine_milestone_id,pre_config] - if: ${{ !contains(needs.pre_config.outputs.version, '-') && endsWith(needs.pre_config.outputs.version, '.0') }} + needs: [determine_milestone_id, pre_config] + if: + ${{ !contains(needs.pre_config.outputs.version, 'rc') && + endsWith(needs.pre_config.outputs.version, '.0') }} environment: release env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - name: "Checkout Repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 fetch-tags: true @@ -187,3 +341,22 @@ jobs: run: | gh extension install valeriobelli/gh-milestone gh milestone create "${{ needs.determine_milestone_id.outputs.new_milestone_version }}" + + branch_protection_restore: + runs-on: ubuntu-latest + needs: [branch_protection_rename, lib_release, docs_release, inform_discord, determine_milestone_id, close_milestone] + environment: release + if: always() + env: + GH_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }} + steps: + - name: Restore master protection pattern + if: ${{ needs.branch_protection_rename.outputs.master_rule_id != '' }} + run: | + gh api repos/${{ github.repository }}/branch-protection-rules/${{ needs.branch_protection_rename.outputs.master_rule_id }} \ + -X PATCH -F pattern="${{ needs.branch_protection_rename.outputs.master_pattern }}" + - name: Restore v*.* protection pattern + if: ${{ needs.branch_protection_rename.outputs.v_rule_id != '' }} + run: | + gh api repos/${{ github.repository }}/branch-protection-rules/${{ needs.branch_protection_rename.outputs.v_rule_id }} \ + -X PATCH -F pattern="${{ needs.branch_protection_rename.outputs.v_pattern }}" diff --git a/.github/workflows/todo-checks.yml b/.github/workflows/todo-checks.yml index 99cc705b20..dbba5f59cb 100644 --- a/.github/workflows/todo-checks.yml +++ b/.github/workflows/todo-checks.yml @@ -21,9 +21,9 @@ jobs: runs-on: ubuntu-latest steps: - name: "Checkout Repository" - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: "Track TODO Action" - uses: ribtoks/tdg-github-action@v0.4.13-beta + uses: ribtoks/tdg-github-action@v0.4.15-beta with: TOKEN: ${{ secrets.GITHUB_TOKEN }} REPO: ${{ github.repository }} diff --git a/.gitignore b/.gitignore index 96be4f61db..2eefa244cd 100644 --- a/.gitignore +++ b/.gitignore @@ -159,6 +159,7 @@ cython_debug/ # Custom *.json +!renovate.json *.egg-info .venv/ docs/_build @@ -192,3 +193,4 @@ docs/build/linkcheck !docs/locales/* /build/ /vscode/ +remote-release.yml diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 65265129c2..c7e38e9c40 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,7 +4,7 @@ ci: repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v5.0.0 + rev: v6.0.0 hooks: - id: trailing-whitespace exclude: \.(po|pot|yml|yaml)$ @@ -21,17 +21,17 @@ repos: # - --remove-duplicate-keys # - --remove-unused-variables - repo: https://github.com/asottile/pyupgrade - rev: v3.19.0 + rev: v3.20.0 hooks: - id: pyupgrade exclude: \.(po|pot|yml|yaml)$ - repo: https://github.com/PyCQA/isort - rev: 5.13.2 + rev: 6.0.1 hooks: - id: isort exclude: \.(po|pot|yml|yaml)$ - repo: https://github.com/psf/black - rev: 24.10.0 + rev: 25.1.0 hooks: - id: black args: [--safe, --quiet] @@ -87,7 +87,7 @@ repos: args: [--prose-wrap=always, --print-width=88] exclude: \.(po|pot|yml|yaml)$ - repo: https://github.com/DanielNoord/pydocstringformatter - rev: v0.7.3 + rev: v0.7.5 hooks: - id: pydocstringformatter exclude: \.(po|pot|yml|yaml)$ diff --git a/.readthedocs.yml b/.readthedocs.yml index 7113eb48e6..1b4720a322 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -4,7 +4,7 @@ formats: [] build: os: ubuntu-22.04 tools: - python: "3.12" + python: "3.13" sphinx: configuration: docs/conf.py diff --git a/CHANGELOG.md b/CHANGELOG.md index 861f66ec0f..3098be39c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,46 @@ possible (see our [Version Guarantees] for more info). These changes are available on the `master` branch, but have not yet been released. +### Added + +- Implemented `with_response` for interaction callbacks, adding + `Interaction.callback.is_loading()` and `Interaction.callback.is_ephemeral()`. + ([#2711](https://github.com/Pycord-Development/pycord/pull/2711)) +- Added `RawMessageUpdateEvent.new_message` - message update events now contain full + message objects ([#2780](https://github.com/Pycord-Development/pycord/pull/2780)) +- Added support for setting guild-specific `avatar`, `banner`, and `bio` for the bot + user through `Member.edit`. + ([#2908](https://github.com/Pycord-Development/pycord/pull/2908)) +- Added support for select default values. + ([#2899](https://github.com/Pycord-Development/pycord/pull/2899)) + - Adds a new generic parameter to selects to type `ui.Select.values` return type. + - Adds `SelectDefaultValue` object to create select default values. + - Adds `SelectDefaultValueType` enum. + - Adds pre-typed and pre-constructed with select_type `ui.Select` aliases for the + different select types: `ui.StringSelect`, `ui.UserSelect`, `ui.RoleSelect`, + `ui.MentionableSelect`, and `ui.ChannelSelect`. + +### Changed + +### Fixed + +- Manage silence for new SSRC with existing user_id. + ([#2808](https://github.com/Pycord-Development/pycord/pull/2808)) +- Unbound `raw` reference in `parse_message_update` causing errors on message updates. + ([#2905](https://github.com/Pycord-Development/pycord/pull/2905)) +- `view=None` in various methods causing an AttributeError. + ([#2915](https://github.com/Pycord-Development/pycord/pull/2915)) +- `View.message` being `None` when it had not been interacted with yet. + ([#2916](https://github.com/Pycord-Development/pycord/pull/2916)) +- Fixed a crash when processing message edit events while message cache was disabled. + ([#2924](https://github.com/Pycord-Development/pycord/pull/2924)) +- Fixed OPUS Decode Error when recording audio. + ([#2925](https://github.com/Pycord-Development/pycord/pull/2925)) + +### Removed + +## [2.7.0rc1] - 2025-08-30 + ⚠️ **This version removes support for Python 3.8.** ⚠️ ### Added @@ -30,12 +70,66 @@ These changes are available on the `master` branch, but have not yet been releas ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/)) - Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590)) +- Added role tags: `subscription_listing_id`, `guild_connections`, and + `available_for_purchase`. + ([#2606](https://github.com/Pycord-Development/pycord/pull/2606)) - Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615)) - Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620)) +- Added `MediaChannel` channel type. + ([#2641](https://github.com/Pycord-Development/pycord/pull/2641)) +- Added `Message._raw_data` attribute. + ([#2670](https://github.com/Pycord-Development/pycord/pull/2670)) +- Added helper methods to determine the authorizing party of an `Interaction`. + ([#2659](https://github.com/Pycord-Development/pycord/pull/2659)) +- Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. + ([#2579](https://github.com/Pycord-Development/pycord/pull/2579)) +- Added the following soundboard-related features: + - Manage guild soundboard sounds with `Guild.fetch_sounds()`, `Guild.create_sound()`, + `SoundboardSound.edit()`, and `SoundboardSound.delete()`. + - Access Discord default sounds with `Client.fetch_default_sounds()`. + - Play sounds in voice channels with `VoiceChannel.send_soundboard_sound()`. + - New `on_voice_channel_effect_send` event for sound and emoji effects. + - Soundboard limits based on guild premium tier (8-48 slots) in + `Guild.soundboard_limit`. + ([#2623](https://github.com/Pycord-Development/pycord/pull/2623)) +- Added new `Subscription` object and related methods/events. + ([#2564](https://github.com/Pycord-Development/pycord/pull/2564)) +- Added `Message.forward_to`, `Message.snapshots`, and other related attributes. + ([#2598](https://github.com/Pycord-Development/pycord/pull/2598)) +- Add missing `Guild` feature flags and `Guild.edit` parameters. + ([#2672](https://github.com/Pycord-Development/pycord/pull/2672)) +- Added the ability to change the API's base URL with `Route.API_BASE_URL`. + ([#2714](https://github.com/Pycord-Development/pycord/pull/2714)) +- Added the ability to pass a `datetime.time` object to `format_dt`. + ([#2747](https://github.com/Pycord-Development/pycord/pull/2747)) +- Added various missing channel parameters and allow `default_reaction_emoji` to be + `None`. ([#2772](https://github.com/Pycord-Development/pycord/pull/2772)) +- Added support for type hinting slash command options with `typing.Annotated`. + ([#2782](https://github.com/Pycord-Development/pycord/pull/2782)) +- Added conversion to `Member` in `MentionableConverter`. + ([#2775](https://github.com/Pycord-Development/pycord/pull/2775)) +- Added `discord.Interaction.created_at`. + ([#2801](https://github.com/Pycord-Development/pycord/pull/2801)) +- Added `User.nameplate` property. + ([#2817](https://github.com/Pycord-Development/pycord/pull/2817)) +- Added role gradients support with `Role.colours` and the `RoleColours` class. + ([#2818](https://github.com/Pycord-Development/pycord/pull/2818)) +- Added `ThreadArchiveDuration` enum to improve clarity of thread archive durations. + ([#2826](https://github.com/Pycord-Development/pycord/pull/2826)) +- Added `Interaction.attachment_size_limit`. + ([#2854](https://github.com/Pycord-Development/pycord/pull/2854)) +- Added support for selects and text displays in modals. + ([#2858](https://github.com/Pycord-Development/pycord/pull/2858)) +- Added `AuditLogDiff.communication_disabled_until`. + ([#2883](https://github.com/Pycord-Development/pycord/pull/2883)) +- Added `discord.User.primary_guild` and the `PrimaryGuild` class. + ([#2876](https://github.com/Pycord-Development/pycord/pull/2876)) +- Added `get_component` to `Message`, `Section`, `Container` and `ActionRow`. + ([#2849](https://github.com/Pycord-Development/pycord/pull/2849)) ### Fixed @@ -60,10 +154,62 @@ These changes are available on the `master` branch, but have not yet been releas ([#2627](https://github.com/Pycord-Development/pycord/issues/2627)) - Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624)) +- Fixed editing `ForumChannel` flags not working. + ([#2641](https://github.com/Pycord-Development/pycord/pull/2641)) - Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650)) - Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635)) +- Fixed malformed properties in `Interaction.channel`. + ([#2658](https://github.com/Pycord-Development/pycord/pull/2658)) +- Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally + deferred interaction. + ([#2661](https://github.com/Pycord-Development/pycord/pull/2661)) +- Fixed attachment metadata being set incorrectly in interaction responses causing the + metadata to be ignored by Discord. + ([#2679](https://github.com/Pycord-Development/pycord/pull/2679)) +- Fixed unexpected backoff behavior in the handling of task failures + ([#2700](https://github.com/Pycord-Development/pycord/pull/2700)). +- Fixed `BridgeCommand` duplicate in default help command. + ([#2656](https://github.com/Pycord-Development/pycord/pull/2656)) +- Fixed `AttributeError` when trying to consume a consumable entitlement. + ([#2564](https://github.com/Pycord-Development/pycord/pull/2564)) +- Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. + ([#2709](https://github.com/Pycord-Development/pycord/pull/2709)) +- Fixed `ForumChannel.edit` allowing `default_reaction_emoji` to be `None`. + ([#2739](https://github.com/Pycord-Development/pycord/pull/2739)) +- Fixed missing `None` type hints in `Select.__init__`. + ([#2746](https://github.com/Pycord-Development/pycord/pull/2746)) +- Fixed `TypeError` when using `Flag` with Python 3.11+. + ([#2759](https://github.com/Pycord-Development/pycord/pull/2759)) +- Fixed `TypeError` when specifying `thread_name` in `Webhook.send`. + ([#2761](https://github.com/Pycord-Development/pycord/pull/2761)) +- Updated `valid_locales` to support `in` and `es-419`. + ([#2767](https://github.com/Pycord-Development/pycord/pull/2767)) +- Added support for emoji aliases like `:smile:` in PartialEmoji.from_str. Also applied + the same logic in PartialEmojiConverter. + ([#2815](https://github.com/Pycord-Development/pycord/pull/2815)) +- Fixed `Webhook.edit` not working with `attachments=[]`. + ([#2779](https://github.com/Pycord-Development/pycord/pull/2779)) +- Fixed GIF-based `Sticker` returning the wrong `url`. + ([#2781](https://github.com/Pycord-Development/pycord/pull/2781)) +- Fixed `VoiceClient` crashing randomly while receiving audio + ([#2800](https://github.com/Pycord-Development/pycord/pull/2800)) +- Fixed `VoiceClient.connect` failing to do initial connection. + ([#2812](https://github.com/Pycord-Development/pycord/pull/2812)) +- Fixed `AttributeError` when printing a File component's `__repr__`. + ([#2843](https://github.com/Pycord-Development/pycord/pull/2843)) +- Fixed `TypeError` when using `@option` with certain annotations and along with + `channel_types`. ([#2835](https://github.com/Pycord-Development/pycord/pull/2835)) +- Fixed `TypeError` when using `Optional[...]` or `... | None` in command option type. + ([#2852](https://github.com/Pycord-Development/pycord/pull/2852)) +- Fixed type-hinting for `PermissionOverwrite.update`. + ([#2878](https://github.com/Pycord-Development/pycord/pull/2878)) +- Fixed `AttributeError` when accessing `AuditLogEntry.changes` more than once. + ([#2882])(https://github.com/Pycord-Development/pycord/pull/2882)) +- Fixed type hint for argument `start_time` and `end_time` of + `Guild.create_scheduled_event` + ([#2879](https://github.com/Pycord-Development/pycord/pull/2879)) ### Changed @@ -77,6 +223,16 @@ These changes are available on the `master` branch, but have not yet been releas - Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176)) +- Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API + changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671)) +- `Entitlement.ends_at` can now be `None`. + ([#2564](https://github.com/Pycord-Development/pycord/pull/2564)) +- Changed the default value of `ApplicationCommand.nsfw` to `False`. + ([#2797](https://github.com/Pycord-Development/pycord/pull/2797)) +- Upgraded voice websocket version to v8. + ([#2812](https://github.com/Pycord-Development/pycord/pull/2812)) +- `Messageable.pins()` now returns a `MessagePinIterator` and has new arguments. + ([#2872](https://github.com/Pycord-Development/pycord/pull/2872)) ### Deprecated @@ -84,6 +240,18 @@ These changes are available on the `master` branch, but have not yet been releas ([#2520](https://github.com/Pycord-Development/pycord/pull/2520)) - Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501)) +- Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. + ([#2658](https://github.com/Pycord-Development/pycord/pull/2658)) +- Deprecated `is_nsfw` for categories since it was never supported by the API. + ([#2772](https://github.com/Pycord-Development/pycord/pull/2772)) +- Deprecated `Messageable.pins()` returning a list of `Message`; it should be used as an + iterator of `MessagePin` instead. + ([#2872](https://github.com/Pycord-Development/pycord/pull/2872)) + +### Removed + +- Removed deprecated support for `Option` in `BridgeCommand`, use `BridgeOption` + instead. ([#2731](https://github.com/Pycord-Development/pycord/pull/2731)) ## [2.6.1] - 2024-09-15 @@ -988,7 +1156,9 @@ These changes are available on the `master` branch, but have not yet been releas - Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240)) -[unreleased]: https://github.com/Pycord-Development/pycord/compare/v2.6.0...HEAD +[unreleased]: https://github.com/Pycord-Development/pycord/compare/v2.7.0rc1...HEAD +[2.7.0rc1]: https://github.com/Pycord-Development/pycord/compare/v2.6.0...v2.7.0rc1 +[2.6.1]: https://github.com/Pycord-Development/pycord/compare/v2.6.0...v2.6.1 [2.6.0]: https://github.com/Pycord-Development/pycord/compare/v2.5.0...v2.6.0 [2.5.0]: https://github.com/Pycord-Development/pycord/compare/v2.4.1...v2.5.0 [2.4.1]: https://github.com/Pycord-Development/pycord/compare/v2.4.0...v2.4.1 diff --git a/MANIFEST.in b/MANIFEST.in index 747a5007bf..7073c80050 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,6 +3,7 @@ include LICENSE include requirements.txt include discord/bin/*.dll include discord/py.typed +include discord/emojis.json prune .github prune docs diff --git a/README.rst b/README.rst index 4867eb3c74..f842312376 100644 --- a/README.rst +++ b/README.rst @@ -17,11 +17,12 @@ Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for D .. 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://img.shields.io/discord/881207955029110855?label=discord&style=for-the-badge&logo=discord&color=5865F2&logoColor=white :target: https://pycord.dev/discord :alt: Discord server invite - +.. image:: https://img.shields.io/github/sponsors/Pycord-Development?style=for-the-badge + :target: https://github.com/sponsors/Pycord-Development + :alt: GitHub Sponsors .. 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 @@ -31,7 +32,7 @@ Pycord is a modern, easy to use, feature-rich, and async ready API wrapper for D Note ---- -Pycord supports Python ``3.9`` - ``3.12`` +Pycord supports Python ``3.9`` - ``3.13`` Key Features ------------ diff --git a/crowdin.yml b/crowdin.yml index d9142bc3db..4726c7c6af 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -5,7 +5,7 @@ preserve_hierarchy: true commit_message: "docs: Update translations" -export_languages: ["de", "ja", "fr", "it", "hi", "ko", "pt-BR", "es-ES", "zh-CN"] +export_languages: ["de", "ja", "fr", "it", "hi", "ko", "pt-BR", "es-ES", "zh-CN", "tr"] bundles: - 1 diff --git a/discord/__init__.py b/discord/__init__.py index d6031ce3ac..dbd87452b2 100644 --- a/discord/__init__.py +++ b/discord/__init__.py @@ -35,6 +35,7 @@ from .channel import * from .client import * from .cog import * +from .collectibles import * from .colour import * from .commands import * from .components import * @@ -64,6 +65,7 @@ from .role import * from .scheduled_events import * from .shard import * +from .soundboard import * from .stage_instance import * from .sticker import * from .team import * diff --git a/discord/_version.py b/discord/_version.py index c1bc153507..ba68799dfe 100644 --- a/discord/_version.py +++ b/discord/_version.py @@ -30,7 +30,7 @@ import warnings from importlib.metadata import PackageNotFoundError, version -from ._typed_dict import TypedDict +from typing_extensions import TypedDict __all__ = ("__version__", "VersionInfo", "version_info") diff --git a/discord/abc.py b/discord/abc.py index 7e9d462b89..da3d6ddd18 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -45,10 +45,10 @@ from .context_managers import Typing from .enums import ChannelType from .errors import ClientException, InvalidArgument -from .file import File -from .flags import MessageFlags +from .file import File, VoiceMessage +from .flags import ChannelFlags, MessageFlags from .invite import Invite -from .iterators import HistoryIterator +from .iterators import HistoryIterator, MessagePinIterator from .mentions import AllowedMentions from .partial_emoji import PartialEmoji, _EmojiTag from .permissions import PermissionOverwrite, Permissions @@ -85,7 +85,6 @@ from .client import Client from .embeds import Embed from .enums import InviteTarget - from .flags import ChannelFlags from .guild import Guild from .member import Member from .message import Message, MessageReference, PartialMessage @@ -236,7 +235,7 @@ class User(Snowflake, Protocol): name: str discriminator: str global_name: str | None - avatar: Asset + avatar: Asset | None bot: bool @property @@ -419,8 +418,7 @@ async def _edit( pass try: - if options.pop("require_tag"): - options["flags"] = ChannelFlags.require_tag.flag + options["flags"] = options.pop("flags").value except KeyError: pass @@ -523,13 +521,17 @@ async def _edit( ) elif isinstance(default_reaction_emoji, str): default_reaction_emoji = PartialEmoji.from_str(default_reaction_emoji) + elif default_reaction_emoji is None: + pass else: raise InvalidArgument( - "default_reaction_emoji must be of type: GuildEmoji | int | str" + "default_reaction_emoji must be of type: GuildEmoji | int | str | None" ) options["default_reaction_emoji"] = ( default_reaction_emoji._to_forum_reaction_payload() + if default_reaction_emoji + else None ) if options: @@ -1495,9 +1497,9 @@ async def send( .. versionadded:: 1.4 reference: Union[:class:`~discord.Message`, :class:`~discord.MessageReference`, :class:`~discord.PartialMessage`] - A reference to the :class:`~discord.Message` to which you are replying, this can be created using - :meth:`~discord.Message.to_reference` or passed directly as a :class:`~discord.Message`. You can control - whether this mentions the author of the referenced message using the + A reference to the :class:`~discord.Message` being replied to or forwarded. This can be created using + :meth:`~discord.Message.to_reference`. + When replying, you can control whether this mentions the author of the referenced message using the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions`` or by setting ``mention_author``. @@ -1569,7 +1571,7 @@ async def send( flags = MessageFlags( suppress_embeds=bool(suppress), suppress_notifications=bool(silent), - ).value + ) if stickers is not None: stickers = [sticker.id for sticker in stickers] @@ -1587,9 +1589,19 @@ async def send( allowed_mentions = allowed_mentions or AllowedMentions().to_dict() allowed_mentions["replied_user"] = bool(mention_author) + _reference = None if reference is not None: try: - reference = reference.to_message_reference_dict() + _reference = reference.to_message_reference_dict() + from .message import MessageReference + + if not isinstance(reference, MessageReference): + utils.warn_deprecated( + f"Passing {type(reference).__name__} to reference", + "MessageReference", + "2.7", + "3.0", + ) except AttributeError: raise InvalidArgument( "reference parameter must be Message, MessageReference, or" @@ -1603,6 +1615,12 @@ async def send( ) components = view.to_components() + if view.is_components_v2(): + if embeds or content: + raise TypeError( + "cannot send embeds or content with a view using v2 component logic" + ) + flags.is_components_v2 = True else: components = None @@ -1615,27 +1633,7 @@ async def send( if file is not None: if not isinstance(file, File): raise InvalidArgument("file parameter must be File") - - try: - data = await state.http.send_files( - channel.id, - files=[file], - allowed_mentions=allowed_mentions, - content=content, - tts=tts, - embed=embed, - embeds=embeds, - nonce=nonce, - enforce_nonce=enforce_nonce, - message_reference=reference, - stickers=stickers, - components=components, - flags=flags, - poll=poll, - ) - finally: - file.close() - + files = [file] elif files is not None: if len(files) > 10: raise InvalidArgument( @@ -1644,6 +1642,10 @@ async def send( elif not all(isinstance(file, File) for file in files): raise InvalidArgument("files parameter must be a list of File") + if files is not None: + flags = flags + MessageFlags( + is_voice_message=any(isinstance(f, VoiceMessage) for f in files) + ) try: data = await state.http.send_files( channel.id, @@ -1655,10 +1657,10 @@ async def send( nonce=nonce, enforce_nonce=enforce_nonce, allowed_mentions=allowed_mentions, - message_reference=reference, + message_reference=_reference, stickers=stickers, components=components, - flags=flags, + flags=flags.value, poll=poll, ) finally: @@ -1674,17 +1676,19 @@ async def send( nonce=nonce, enforce_nonce=enforce_nonce, allowed_mentions=allowed_mentions, - message_reference=reference, + message_reference=_reference, stickers=stickers, components=components, - flags=flags, + flags=flags.value, poll=poll, ) ret = state.create_message(channel=channel, data=data) if view: - state.store_view(view, ret.id) + if view.is_dispatchable(): + state.store_view(view, ret.id) view.message = ret + view.refresh(ret.components) if delete_after is not None: await ret.delete(delay=delete_after) @@ -1750,32 +1754,64 @@ async def fetch_message(self, id: int, /) -> Message: data = await self._state.http.get_message(channel.id, id) return self._state.create_message(channel=channel, data=data) - async def pins(self) -> list[Message]: - """|coro| + def pins( + self, + *, + limit: int | None = 50, + before: SnowflakeTime | None = None, + ) -> MessagePinIterator: + """Returns a :class:`~discord.MessagePinIterator` that enables receiving the destination's pinned messages. - Retrieves all messages that are currently pinned in the channel. + You must have :attr:`~discord.Permissions.read_message_history` permissions to use this. - .. note:: + .. warning:: - Due to a limitation with the Discord API, the :class:`.Message` - objects returned by this method do not contain complete - :attr:`.Message.reactions` data. + Starting from version 3.0, `await channel.pins()` will no longer return a list of :class:`Message`. See examples below for new usage instead. - Returns - ------- - List[:class:`~discord.Message`] - The messages that are currently pinned. + Parameters + ---------- + limit: Optional[:class:`int`] + The number of pinned messages to retrieve. + If ``None``, retrieves every pinned message in the channel. + before: Optional[Union[:class:`~discord.abc.Snowflake`, :class:`datetime.datetime`]] + Retrieve messages pinned before this datetime. + If a datetime is provided, it is recommended to use a UTC aware datetime. + If the datetime is naive, it is assumed to be local time. + + Yields + ------ + :class:`~discord.MessagePin` + The pinned message. Raises ------ + ~discord.Forbidden + You do not have permissions to get pinned messages. ~discord.HTTPException - Retrieving the pinned messages failed. - """ + The request to get pinned messages failed. - channel = await self._get_channel() - state = self._state - data = await state.http.pins_from(channel.id) - return [state.create_message(channel=channel, data=m) for m in data] + Examples + -------- + + Usage :: + + counter = 0 + async for pin in channel.pins(limit=250): + if pin.message.author == client.user: + counter += 1 + + Flattening into a list: :: + + pins = await channel.pins(limit=None).flatten() + # pins is now a list of MessagePin... + + All parameters are optional. + """ + return MessagePinIterator( + self, + limit=limit, + before=before, + ) def can_send(self, *objects) -> bool: """Returns a :class:`bool` indicating whether you have the permissions to send the object(s). diff --git a/discord/asset.py b/discord/asset.py index 07c7ca8e7b..659d6dd5eb 100644 --- a/discord/asset.py +++ b/discord/asset.py @@ -39,6 +39,8 @@ if TYPE_CHECKING: ValidStaticFormatTypes = Literal["webp", "jpeg", "jpg", "png"] ValidAssetFormatTypes = Literal["webp", "jpeg", "jpg", "png", "gif"] + from .state import ConnectionState + VALID_STATIC_FORMATS = frozenset({"jpeg", "jpg", "webp", "png"}) VALID_ASSET_FORMATS = VALID_STATIC_FORMATS | {"gif"} @@ -144,7 +146,9 @@ class Asset(AssetMixin): .. describe:: hash(x) - Returns the hash of the asset. + Returns the asset's url's hash. + + This is equivalent to hash(:attr:`url`). """ __slots__: tuple[str, ...] = ( @@ -199,6 +203,33 @@ def _from_avatar_decoration( animated=animated, ) + @classmethod + def _from_user_primary_guild_tag( + cls, state: ConnectionState, identity_guild_id: int, badge_id: str + ) -> Asset: + """Creates an Asset for a user's primary guild (tag) badge. + + Parameters + ---------- + state: ConnectionState + The connection state. + identity_guild_id: int + The ID of the guild. + badge_id: str + The badge hash/id. + + Returns + ------- + :class:`Asset` + The primary guild badge asset. + """ + return cls( + state, + url=f"{Asset.BASE}/guild-tag-badges/{identity_guild_id}/{badge_id}.png?size=256", + key=badge_id, + animated=False, + ) + @classmethod def _from_guild_avatar( cls, state, guild_id: int, member_id: int, avatar: str @@ -243,6 +274,18 @@ def _from_cover_image(cls, state, object_id: int, cover_image_hash: str) -> Asse animated=False, ) + @classmethod + def _from_collectible( + cls, state: ConnectionState, asset: str, animated: bool = False + ) -> Asset: + name = "static.png" if not animated else "asset.webm" + return cls( + state, + url=f"{cls.BASE}/assets/collectibles/{asset}{name}", + key=asset, + animated=animated, + ) + @classmethod def _from_guild_image(cls, state, guild_id: int, image: str, path: str) -> Asset: animated = False @@ -300,6 +343,14 @@ def _from_scheduled_event_image( animated=False, ) + @classmethod + def _from_soundboard_sound(cls, state, sound_id: int) -> Asset: + return cls( + state, + url=f"{cls.BASE}/soundboard-sounds/{sound_id}", + key=str(sound_id), + ) + def __str__(self) -> str: return self._url diff --git a/discord/audit_logs.py b/discord/audit_logs.py index e2ff277dfe..b2f6a72393 100644 --- a/discord/audit_logs.py +++ b/discord/audit_logs.py @@ -25,6 +25,8 @@ from __future__ import annotations +import datetime +from functools import cached_property from typing import TYPE_CHECKING, Any, Callable, ClassVar, Generator, TypeVar from . import enums, utils @@ -44,8 +46,6 @@ if TYPE_CHECKING: - import datetime - from . import abc from .emoji import GuildEmoji from .guild import Guild @@ -209,6 +209,14 @@ def _transform_trigger_metadata( return AutoModTriggerMetadata.from_dict(data) +def _transform_communication_disabled_until( + entry: AuditLogEntry, data: str +) -> datetime.datetime | None: + if data: + return datetime.datetime.fromisoformat(data) + return None + + class AuditLogDiff: def __len__(self) -> int: return len(self.__dict__) @@ -281,6 +289,7 @@ class AuditLogChanges: "trigger_metadata": (None, _transform_trigger_metadata), "exempt_roles": (None, _transform_roles), "exempt_channels": (None, _transform_channels), + "communication_disabled_until": (None, _transform_communication_disabled_until), } def __init__( @@ -602,12 +611,12 @@ def _get_member(self, user_id: int) -> Member | User | None: def __repr__(self) -> str: return f"" - @utils.cached_property + @property def created_at(self) -> datetime.datetime: """Returns the entry's creation time in UTC.""" return utils.snowflake_time(self.id) - @utils.cached_property + @property def target( self, ) -> ( @@ -631,24 +640,24 @@ def target( else: return converter(self._target_id) - @utils.cached_property + @property def category(self) -> enums.AuditLogActionCategory: """The category of the action, if applicable.""" return self.action.category - @utils.cached_property + @cached_property def changes(self) -> AuditLogChanges: """The list of changes this entry has.""" obj = AuditLogChanges(self, self._changes, state=self._state) del self._changes return obj - @utils.cached_property + @property def before(self) -> AuditLogDiff: """The target's prior state.""" return self.changes.before - @utils.cached_property + @property def after(self) -> AuditLogDiff: """The target's subsequent state.""" return self.changes.after diff --git a/discord/automod.py b/discord/automod.py index c4b1e23c0e..b7bbfb3360 100644 --- a/discord/automod.py +++ b/discord/automod.py @@ -416,12 +416,12 @@ def __repr__(self) -> str: def __str__(self) -> str: return self.name - @cached_property + @property def guild(self) -> Guild | None: """The guild this rule belongs to.""" return self._state._get_guild(self.guild_id) - @cached_property + @property def creator(self) -> Member | None: """The member who created this rule.""" if self.guild is None: diff --git a/discord/bot.py b/discord/bot.py index 0f9b30480c..7dd246afe3 100644 --- a/discord/bot.py +++ b/discord/bot.py @@ -328,12 +328,17 @@ def _check_command(cmd: ApplicationCommand, match: Mapping[str, Any]) -> bool: ]: # We have a difference return True - elif getattr(cmd, check, None) != match.get(check): - # We have a difference - if ( + elif (attr := getattr(cmd, check, None)) != ( + found := match.get(check) + ): + # We might have a difference + if "localizations" in check and bool(attr) == bool(found): + # unlike other attrs, localizations are MISSING by default + continue + elif ( check == "default_permission" - and getattr(cmd, check) is True - and match.get(check) is None + and attr is True + and found is None ): # This is a special case # TODO: Remove for perms v2 @@ -879,7 +884,7 @@ async def process_application_commands( ctx = await self.get_application_context(interaction) if command: - ctx.command = command + interaction.command = command await self.invoke_application_command(ctx) async def on_application_command_auto_complete( @@ -887,7 +892,7 @@ async def on_application_command_auto_complete( ) -> None: async def callback() -> None: ctx = await self.get_autocomplete_context(interaction) - ctx.command = command + interaction.command = command return await command.invoke_autocomplete_callback(ctx) autocomplete_task = self._bot.loop.create_task(callback()) diff --git a/discord/channel.py b/discord/channel.py index d70083d9f7..e5e55f360c 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -26,7 +26,17 @@ from __future__ import annotations import datetime -from typing import TYPE_CHECKING, Any, Callable, Iterable, Mapping, TypeVar, overload +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Iterable, + Mapping, + NamedTuple, + Sequence, + TypeVar, + overload, +) import discord.abc @@ -39,19 +49,24 @@ InviteTarget, SortOrder, StagePrivacyLevel, +) +from .enums import ThreadArchiveDuration as ThreadArchiveDurationEnum +from .enums import ( VideoQualityMode, + VoiceChannelEffectAnimationType, VoiceRegion, try_enum, ) from .errors import ClientException, InvalidArgument from .file import File -from .flags import ChannelFlags +from .flags import ChannelFlags, MessageFlags from .invite import Invite from .iterators import ArchivedThreadIterator from .mixins import Hashable from .object import Object from .partial_emoji import PartialEmoji, _EmojiTag from .permissions import PermissionOverwrite, Permissions +from .soundboard import PartialSoundboardSound, SoundboardSound from .stage_instance import StageInstance from .threads import Thread from .utils import MISSING @@ -65,17 +80,22 @@ "GroupChannel", "PartialMessageable", "ForumChannel", + "MediaChannel", "ForumTag", + "VoiceChannelEffectSendEvent", ) if TYPE_CHECKING: from .abc import Snowflake, SnowflakeTime + from .embeds import Embed from .guild import Guild from .guild import GuildChannel as GuildChannelType from .member import Member, VoiceState + from .mentions import AllowedMentions from .message import EmojiInputType, Message, PartialMessage from .role import Role from .state import ConnectionState + from .sticker import GuildSticker, StickerItem from .types.channel import CategoryChannel as CategoryChannelPayload from .types.channel import DMChannel as DMChannelPayload from .types.channel import ForumChannel as ForumChannelPayload @@ -84,8 +104,10 @@ from .types.channel import StageChannel as StageChannelPayload from .types.channel import TextChannel as TextChannelPayload from .types.channel import VoiceChannel as VoiceChannelPayload + from .types.channel import VoiceChannelEffectSendEvent as VoiceChannelEffectSend from .types.snowflake import SnowflakeList from .types.threads import ThreadArchiveDuration + from .ui.view import View from .user import BaseUser, ClientUser, User from .webhook import Webhook @@ -215,7 +237,7 @@ def __init__( @property def _repr_attrs(self) -> tuple[str, ...]: - return "id", "name", "position", "nsfw", "category_id" + return "id", "name", "position", "category_id" def __repr__(self) -> str: attrs = [(val, getattr(self, val)) for val in self._repr_attrs] @@ -811,7 +833,7 @@ async def edit(self, *, reason=None, **options): position: :class:`int` The new channel's position. nsfw: :class:`bool` - To mark the channel as NSFW or not. + Whether the channel is marked as NSFW. sync_permissions: :class:`bool` Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``. @@ -853,7 +875,6 @@ async def edit(self, *, reason=None, **options): HTTPException Editing the channel failed. """ - payload = await self._edit(options, reason=reason) if payload is not None: # the payload will always be the proper channel payload @@ -1039,6 +1060,8 @@ def _update(self, guild: Guild, data: ForumChannelPayload) -> None: if self.default_sort_order is not None: self.default_sort_order = try_enum(SortOrder, self.default_sort_order) + self.default_reaction_emoji = None + reaction_emoji_ctx: dict = data.get("default_reaction_emoji") if reaction_emoji_ctx is not None: emoji_name = reaction_emoji_ctx.get("emoji_name") @@ -1056,7 +1079,7 @@ def guidelines(self) -> str | None: @property def requires_tag(self) -> bool: - """Whether a tag is required to be specified when creating a thread in this forum channel. + """Whether a tag is required to be specified when creating a thread in this forum or media channel. Tags are specified in :attr:`applied_tags`. @@ -1084,7 +1107,9 @@ async def edit( sync_permissions: bool = ..., category: CategoryChannel | None = ..., slowmode_delay: int = ..., - default_auto_archive_duration: ThreadArchiveDuration = ..., + default_auto_archive_duration: ( + ThreadArchiveDuration | ThreadArchiveDurationEnum + ) = ..., default_thread_slowmode_delay: int = ..., default_sort_order: SortOrder = ..., default_reaction_emoji: GuildEmoji | int | str | None = ..., @@ -1113,7 +1138,7 @@ async def edit(self, *, reason=None, **options): position: :class:`int` The new channel's position. nsfw: :class:`bool` - To mark the channel as NSFW or not. + Whether the channel is marked as NSFW. sync_permissions: :class:`bool` Whether to sync permissions with the channel's new or pre-existing category. Defaults to ``False``. @@ -1130,6 +1155,7 @@ async def edit(self, *, reason=None, **options): default_auto_archive_duration: :class:`int` The new default auto archive duration in minutes for threads created in this channel. Must be one of ``60``, ``1440``, ``4320``, or ``10080``. + :class:`ThreadArchiveDuration` can be used alternatively. default_thread_slowmode_delay: :class:`int` The new default slowmode delay in seconds for threads created in this channel. @@ -1169,6 +1195,9 @@ async def edit(self, *, reason=None, **options): HTTPException Editing the channel failed. """ + if "require_tag" in options: + options["flags"] = ChannelFlags._from_value(self.flags.value) + options["flags"].require_tag = options.pop("require_tag") payload = await self._edit(options, reason=reason) if payload is not None: @@ -1178,18 +1207,20 @@ async def edit(self, *, reason=None, **options): async def create_thread( self, name: str, - content=None, + content: str | None = None, *, - embed=None, - embeds=None, - file=None, - files=None, - stickers=None, - delete_message_after=None, - nonce=None, - allowed_mentions=None, - view=None, - applied_tags=None, + embed: Embed | None = None, + embeds: list[Embed] | None = None, + file: File | None = None, + files: list[File] | None = None, + stickers: Sequence[GuildSticker | StickerItem] | None = None, + delete_message_after: float | None = None, + nonce: int | str | None = None, + allowed_mentions: AllowedMentions | None = None, + view: View | None = None, + applied_tags: list[ForumTag] | None = None, + suppress: bool = False, + silent: bool = False, auto_archive_duration: ThreadArchiveDuration = MISSING, slowmode_delay: int = MISSING, reason: str | None = None, @@ -1289,6 +1320,11 @@ async def create_thread( else: allowed_mentions = allowed_mentions.to_dict() + flags = MessageFlags( + suppress_embeds=bool(suppress), + suppress_notifications=bool(silent), + ) + if view: if not hasattr(view, "__discord_ui_view__"): raise InvalidArgument( @@ -1296,6 +1332,12 @@ async def create_thread( ) components = view.to_components() + if view.is_components_v2(): + if embeds or content: + raise TypeError( + "cannot send embeds or content with a view using v2 component logic" + ) + flags.is_components_v2 = True else: components = None @@ -1334,6 +1376,7 @@ async def create_thread( or self.default_auto_archive_duration, rate_limit_per_user=slowmode_delay or self.slowmode_delay, applied_tags=applied_tags, + flags=flags.value, reason=reason, ) finally: @@ -1343,7 +1386,7 @@ async def create_thread( ret = Thread(guild=self.guild, state=self._state, data=data) msg = ret.get_partial_message(int(data["last_message_id"])) - if view: + if view and view.is_dispatchable(): state.store_view(view, msg.id) if delete_message_after is not None: @@ -1351,6 +1394,196 @@ async def create_thread( return ret +class MediaChannel(ForumChannel): + """Represents a Discord media channel. Subclass of :class:`ForumChannel`. + + .. container:: operations + + .. describe:: x == y + + Checks if two channels are equal. + + .. describe:: x != y + + Checks if two channels are not equal. + + .. describe:: hash(x) + + Returns the channel's hash. + + .. describe:: str(x) + + Returns the channel's name. + + .. versionadded:: 2.7 + + Attributes + ---------- + name: :class:`str` + The channel name. + guild: :class:`Guild` + The guild the channel belongs to. + id: :class:`int` + The channel ID. + category_id: Optional[:class:`int`] + The category channel ID this channel belongs to, if applicable. + topic: Optional[:class:`str`] + The channel's topic. ``None`` if it doesn't exist. + + .. note:: + + :attr:`guidelines` exists as an alternative to this attribute. + position: Optional[:class:`int`] + 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. + last_message_id: Optional[:class:`int`] + The last message ID of the message sent to this channel. It may + *not* point to an existing or valid message. + slowmode_delay: :class:`int` + 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. + nsfw: :class:`bool` + If the channel is marked as "not safe for work". + + .. note:: + + To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead. + default_auto_archive_duration: :class:`int` + The default auto archive duration in minutes for threads created in this channel. + + flags: :class:`ChannelFlags` + Extra features of the channel. + + available_tags: List[:class:`ForumTag`] + The set of tags that can be used in a forum channel. + + default_sort_order: Optional[:class:`SortOrder`] + The default sort order type used to order posts in this channel. + + default_thread_slowmode_delay: Optional[:class:`int`] + The initial slowmode delay to set on newly created threads in this channel. + + default_reaction_emoji: Optional[:class:`str` | :class:`discord.GuildEmoji`] + The default forum reaction emoji. + """ + + @property + def media_download_options_hidden(self) -> bool: + """Whether media download options are hidden in this media channel. + + .. versionadded:: 2.7 + """ + return self.flags.hide_media_download_options + + @overload + async def edit( + self, + *, + reason: str | None = ..., + name: str = ..., + topic: str = ..., + position: int = ..., + nsfw: bool = ..., + sync_permissions: bool = ..., + category: CategoryChannel | None = ..., + slowmode_delay: int = ..., + default_auto_archive_duration: ThreadArchiveDuration = ..., + default_thread_slowmode_delay: int = ..., + default_sort_order: SortOrder = ..., + default_reaction_emoji: GuildEmoji | int | str | None = ..., + available_tags: list[ForumTag] = ..., + require_tag: bool = ..., + hide_media_download_options: bool = ..., + overwrites: Mapping[Role | Member | Snowflake, PermissionOverwrite] = ..., + ) -> ForumChannel | None: ... + + async def edit(self, *, reason=None, **options): + """|coro| + + Edits the channel. + + You must have the :attr:`~Permissions.manage_channels` permission to + use this. + + Parameters + ---------- + name: :class:`str` + The new channel name. + topic: :class:`str` + The new channel's topic. + position: :class:`int` + The new channel's position. + nsfw: :class:`bool` + Whether the channel is marked as NSFW. + sync_permissions: :class:`bool` + Whether to sync permissions with the channel's new or pre-existing + category. Defaults to ``False``. + category: Optional[:class:`CategoryChannel`] + The new category for this channel. Can be ``None`` to remove the + category. + slowmode_delay: :class:`int` + Specifies the slowmode rate limit for user in this channel, in seconds. + A value of `0` disables slowmode. The maximum value possible is `21600`. + reason: Optional[:class:`str`] + The reason for editing this channel. Shows up on the audit log. + overwrites: Dict[Union[:class:`Role`, :class:`Member`, :class:`~discord.abc.Snowflake`], :class:`PermissionOverwrite`] + The overwrites to apply to channel permissions. Useful for creating secret channels. + default_auto_archive_duration: :class:`int` + The new default auto archive duration in minutes for threads created in this channel. + Must be one of ``60``, ``1440``, ``4320``, or ``10080``. + default_thread_slowmode_delay: :class:`int` + The new default slowmode delay in seconds for threads created in this channel. + + default_sort_order: Optional[:class:`SortOrder`] + The default sort order type to use to order posts in this channel. + + default_reaction_emoji: Optional[:class:`discord.GuildEmoji` | :class:`int` | :class:`str`] + The default reaction emoji. + Can be a unicode emoji or a custom emoji in the forms: + :class:`GuildEmoji`, snowflake ID, string representation (e.g., ''). + + available_tags: List[:class:`ForumTag`] + The set of tags that can be used in this channel. Must be less than `20`. + + require_tag: :class:`bool` + Whether a tag should be required to be specified when creating a thread in this channel. + + hide_media_download_options: :class:`bool` + Whether media download options should be hidden in this media channel. + + Returns + ------- + Optional[:class:`.MediaChannel`] + The newly edited media channel. If the edit was only positional + then ``None`` is returned instead. + + Raises + ------ + InvalidArgument + If position is less than 0 or greater than the number of channels, or if + the permission overwrite information is not in proper form. + Forbidden + You do not have permissions to edit the channel. + HTTPException + Editing the channel failed. + """ + + if "require_tag" in options or "hide_media_download_options" in options: + flags = ChannelFlags._from_value(self.flags.value) + flags.require_tag = options.pop("require_tag", flags.require_tag) + flags.hide_media_download_options = options.pop( + "hide_media_download_options", flags.hide_media_download_options + ) + options["flags"] = flags + + payload = await self._edit(options, reason=reason) + if payload is not None: + # the payload will always be the proper channel payload + return self.__class__(state=self._state, guild=self.guild, data=payload) # type: ignore + + class VocalGuildChannel(discord.abc.Connectable, discord.abc.GuildChannel, Hashable): __slots__ = ( "name", @@ -1531,6 +1764,11 @@ class VoiceChannel(discord.abc.Messageable, VocalGuildChannel): Extra features of the channel. .. versionadded:: 2.0 + + nsfw: :class:`bool` + Whether the channel is marked as NSFW. + + .. versionadded:: 2.7 """ def __init__( @@ -1849,6 +2087,7 @@ async def edit( rtc_region: VoiceRegion | None = ..., video_quality_mode: VideoQualityMode = ..., slowmode_delay: int = ..., + nsfw: bool = ..., reason: str | None = ..., ) -> VoiceChannel | None: ... @@ -1899,6 +2138,15 @@ async def edit(self, *, reason=None, **options): .. versionadded:: 2.0 + slowmode_delay: :class:`int` + Specifies the slowmode rate limit for user in this channel, in seconds. + A value of `0` disables slowmode. The maximum value possible is `21600`. + + nsfw: :class:`bool` + Whether the channel is marked as NSFW. + + .. versionadded:: 2.7 + Returns ------- Optional[:class:`.VoiceChannel`] @@ -2000,6 +2248,25 @@ async def set_status( """ await self._state.http.set_voice_channel_status(self.id, status, reason=reason) + async def send_soundboard_sound(self, sound: PartialSoundboardSound) -> None: + """|coro| + + Sends a soundboard sound to the voice channel. + + Parameters + ---------- + sound: :class:`PartialSoundboardSound` + The soundboard sound to send. + + Raises + ------ + Forbidden + You do not have proper permissions to send the soundboard sound. + HTTPException + Sending the soundboard sound failed. + """ + await self._state.http.send_soundboard_sound(self.id, sound) + class StageChannel(discord.abc.Messageable, VocalGuildChannel): """Represents a Discord guild stage channel. @@ -2057,6 +2324,15 @@ class StageChannel(discord.abc.Messageable, VocalGuildChannel): last_message_id: Optional[:class:`int`] The ID of the last message sent to this channel. It may not always point to an existing or valid message. .. versionadded:: 2.5 + + slowmode_delay: :class:`int` + Specifies the slowmode rate limit for user in this channel, in seconds. + The maximum value possible is `21600`. + + nsfw: :class:`bool` + Whether the channel is marked as NSFW. + + .. versionadded:: 2.7 """ __slots__ = ("topic",) @@ -2541,6 +2817,16 @@ async def edit(self, *, reason=None, **options): .. versionadded:: 2.0 + bitrate: :class:`int` + The channel's preferred audio bitrate in bits per second. + + user_limit: :class:`int` + The channel's limit for number of members that can be in a voice channel. + + slowmode_delay: :class:`int` + Specifies the slowmode rate limit for user in this channel, in seconds. + A value of `0` disables slowmode. The maximum value possible is `21600`. + Returns ------- Optional[:class:`.StageChannel`] @@ -2597,12 +2883,7 @@ class CategoryChannel(discord.abc.GuildChannel, Hashable): position: Optional[:class:`int`] 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. - nsfw: :class:`bool` - If the channel is marked as "not safe for work". - .. note:: - - To check if the channel or the guild of that channel are marked as NSFW, consider :meth:`is_nsfw` instead. flags: :class:`ChannelFlags` Extra features of the channel. @@ -2613,7 +2894,6 @@ class CategoryChannel(discord.abc.GuildChannel, Hashable): "name", "id", "guild", - "nsfw", "_state", "position", "_overwrites", @@ -2630,8 +2910,7 @@ def __init__( def __repr__(self) -> str: return ( - "" + f" None: @@ -2642,7 +2921,6 @@ def _update(self, guild: Guild, data: CategoryChannelPayload) -> None: # This data may be missing depending on how this object is being created/updated if not data.pop("_invoke_flag", False): - self.nsfw: bool = data.get("nsfw", False) self.position: int = data.get("position") self.flags: ChannelFlags = ChannelFlags._from_value(data.get("flags", 0)) self._fill_overwrites(data) @@ -2656,15 +2934,11 @@ def type(self) -> ChannelType: """The channel's Discord type.""" return ChannelType.category - def is_nsfw(self) -> bool: - """Checks if the category is NSFW.""" - return self.nsfw - @utils.copy_doc(discord.abc.GuildChannel.clone) async def clone( self, *, name: str | None = None, reason: str | None = None ) -> CategoryChannel: - return await self._clone_impl({"nsfw": self.nsfw}, name=name, reason=reason) + return await self._clone_impl({}, name=name, reason=reason) @overload async def edit( @@ -2672,7 +2946,6 @@ async def edit( *, name: str = ..., position: int = ..., - nsfw: bool = ..., overwrites: Mapping[Role | Member, PermissionOverwrite] = ..., reason: str | None = ..., ) -> CategoryChannel | None: ... @@ -2700,8 +2973,6 @@ async def edit(self, *, reason=None, **options): The new category's name. position: :class:`int` The new category's position. - nsfw: :class:`bool` - To mark the category as NSFW or not. reason: Optional[:class:`str`] The reason for editing this category. Shows up on the audit log. overwrites: Dict[Union[:class:`Role`, :class:`Member`, :class:`~discord.abc.Snowflake`], :class:`PermissionOverwrite`] @@ -2849,6 +3120,25 @@ async def create_forum_channel(self, name: str, **options: Any) -> ForumChannel: """ return await self.guild.create_forum_channel(name, category=self, **options) + @utils.deprecated( + since="2.7", + removed="3.0", + reference="NSFW categories are not available in the Discord API.", + ) + def is_nsfw(self) -> bool: + return False + + # TODO: Remove in 3.0 + + @property + @utils.deprecated( + since="2.7", + removed="3.0", + reference="NSFW categories are not available in the Discord API.", + ) + def nsfw(self) -> bool: + return False + DMC = TypeVar("DMC", bound="DMChannel") @@ -3219,6 +3509,87 @@ def get_partial_message(self, message_id: int, /) -> PartialMessage: return PartialMessage(channel=self, id=message_id) + def __repr__(self) -> str: + return f"" + + +class VoiceChannelEffectAnimation(NamedTuple): + """Represents an animation that can be sent to a voice channel. + + .. versionadded:: 2.7 + """ + + id: int + type: VoiceChannelEffectAnimationType + + +class VoiceChannelSoundEffect(PartialSoundboardSound): ... + + +class VoiceChannelEffectSendEvent: + """Represents the payload for an :func:`on_voice_channel_effect_send`. + + .. versionadded:: 2.7 + + Attributes + ---------- + animation_type: :class:`int` + The type of animation that is being sent. + animation_id: :class:`int` + The ID of the animation that is being sent. + sound: Optional[:class:`SoundboardSound`] + The sound that is being sent, could be ``None`` if the effect is not a sound effect. + guild: :class:`Guild` + The guild in which the sound is being sent. + user: :class:`Member` + The member that sent the sound. + channel: :class:`VoiceChannel` + The voice channel in which the sound is being sent. + data: :class:`dict` + The raw data sent by the gateway. + """ + + __slots__ = ( + "_state", + "animation_type", + "animation_id", + "sound", + "guild", + "user", + "channel", + "data", + "emoji", + ) + + def __init__( + self, + data: VoiceChannelEffectSend, + state: ConnectionState, + sound: SoundboardSound | PartialSoundboardSound | None = None, + ) -> None: + self._state = state + channel_id = int(data["channel_id"]) + user_id = int(data["user_id"]) + guild_id = int(data["guild_id"]) + self.animation_type: VoiceChannelEffectAnimationType = try_enum( + VoiceChannelEffectAnimationType, data["animation_type"] + ) + self.animation_id = int(data["animation_id"]) + self.sound = sound + self.guild = state._get_guild(guild_id) + self.user = self.guild.get_member(user_id) + self.channel = self.guild.get_channel(channel_id) + self.emoji = ( + PartialEmoji( + name=data["emoji"]["name"], + animated=data["emoji"]["animated"], + id=data["emoji"]["id"], + ) + if data.get("emoji", None) + else None + ) + self.data = data + def _guild_channel_factory(channel_type: int): value = try_enum(ChannelType, channel_type) @@ -3232,8 +3603,12 @@ def _guild_channel_factory(channel_type: int): return TextChannel, value elif value is ChannelType.stage_voice: return StageChannel, value + elif value is ChannelType.directory: + return None, value # todo: Add DirectoryChannel when applicable elif value is ChannelType.forum: return ForumChannel, value + elif value is ChannelType.media: + return MediaChannel, value else: return None, value diff --git a/discord/client.py b/discord/client.py index 4db53e33e3..ed6cdb8991 100644 --- a/discord/client.py +++ b/discord/client.py @@ -53,6 +53,7 @@ from .mentions import AllowedMentions from .monetization import SKU, Entitlement from .object import Object +from .soundboard import SoundboardSound from .stage_instance import StageInstance from .state import ConnectionState from .sticker import GuildSticker, StandardSticker, StickerPack, _sticker_factory @@ -68,9 +69,12 @@ if TYPE_CHECKING: from .abc import GuildChannel, PrivateChannel, Snowflake, SnowflakeTime from .channel import DMChannel + from .interactions import Interaction from .member import Member from .message import Message from .poll import Poll + from .soundboard import SoundboardSound + from .ui.item import Item from .voice_client import VoiceProtocol __all__ = ("Client",) @@ -541,6 +545,54 @@ async def on_error(self, event_method: str, *args: Any, **kwargs: Any) -> None: print(f"Ignoring exception in {event_method}", file=sys.stderr) traceback.print_exc() + async def on_view_error( + self, error: Exception, item: Item, interaction: Interaction + ) -> None: + """|coro| + + The default view error handler provided by the client. + + This only fires for a view if you did not define its :func:`~discord.ui.View.on_error`. + + Parameters + ---------- + error: :class:`Exception` + The exception that was raised. + item: :class:`Item` + The item that the user interacted with. + interaction: :class:`Interaction` + The interaction that was received. + """ + + print( + f"Ignoring exception in view {interaction.view} for item {item}:", + file=sys.stderr, + ) + traceback.print_exception( + error.__class__, error, error.__traceback__, file=sys.stderr + ) + + async def on_modal_error(self, error: Exception, interaction: Interaction) -> None: + """|coro| + + The default modal error handler provided by the client. + The default implementation prints the traceback to stderr. + + This only fires for a modal if you did not define its :func:`~discord.ui.Modal.on_error`. + + Parameters + ---------- + error: :class:`Exception` + The exception that was raised. + interaction: :class:`Interaction` + The interaction that was received. + """ + + print(f"Ignoring exception in modal {interaction.modal}:", file=sys.stderr) + traceback.print_exception( + error.__class__, error, error.__traceback__, file=sys.stderr + ) + # hooks async def _call_before_identify_hook( @@ -1261,7 +1313,7 @@ def add_listener(self, func: Coro, name: str = MISSING) -> None: TypeError The ``func`` parameter is not a coroutine function. ValueError - The ``name`` (event name) does not start with 'on_' + The ``name`` (event name) does not start with ``on_``. Example ------- @@ -1325,7 +1377,7 @@ def listen(self, name: str = MISSING, once: bool = False) -> Callable[[Coro], Co TypeError The function being listened to is not a coroutine. ValueError - The ``name`` (event name) does not start with 'on_' + The ``name`` (event name) does not start with ``on_``. Example ------- @@ -2087,7 +2139,7 @@ async def fetch_skus(self) -> list[SKU]: The bot's SKUs. """ data = await self._connection.http.list_skus(self.application_id) - return [SKU(data=s) for s in data] + return [SKU(state=self._connection, data=s) for s in data] def entitlements( self, @@ -2278,3 +2330,46 @@ async def delete_emoji(self, emoji: Snowflake) -> None: ) if self._connection.cache_app_emojis and self._connection.get_emoji(emoji.id): self._connection.remove_emoji(emoji) + + def get_sound(self, sound_id: int) -> SoundboardSound | None: + """Gets a :class:`.Sound` from the bot's sound cache. + + .. versionadded:: 2.7 + + Parameters + ---------- + sound_id: :class:`int` + The ID of the sound to get. + + Returns + ------- + Optional[:class:`.SoundboardSound`] + The sound with the given ID. + """ + return self._connection._get_sound(sound_id) + + @property + def sounds(self) -> list[SoundboardSound]: + """A list of all the sounds the bot can see. + + .. versionadded:: 2.7 + """ + return self._connection.sounds + + async def fetch_default_sounds(self) -> list[SoundboardSound]: + """|coro| + + Fetches the bot's default sounds. + + .. versionadded:: 2.7 + + Returns + ------- + List[:class:`.SoundboardSound`] + The bot's default sounds. + """ + data = await self._connection.http.get_default_sounds() + return [ + SoundboardSound(http=self.http, state=self._connection, data=s) + for s in data + ] diff --git a/discord/cog.py b/discord/cog.py index e23def38e2..bf898d77da 100644 --- a/discord/cog.py +++ b/discord/cog.py @@ -151,17 +151,6 @@ def __new__(cls: type[CogMeta], *args: Any, **kwargs: Any) -> CogMeta: new_cls = super().__new__(cls, name, bases, attrs, **kwargs) - valid_commands = [ - (c for i, c in j.__dict__.items() if isinstance(c, _BaseCommand)) - for j in reversed(new_cls.__mro__) - ] - if any(isinstance(i, ApplicationCommand) for i in valid_commands) and any( - not isinstance(i, _BaseCommand) for i in valid_commands - ): - _filter = ApplicationCommand - else: - _filter = _BaseCommand - for base in reversed(new_cls.__mro__): for elem, value in base.__dict__.items(): if elem in commands: @@ -178,7 +167,7 @@ def __new__(cls: type[CogMeta], *args: Any, **kwargs: Any) -> CogMeta: is_static_method = isinstance(value, staticmethod) if is_static_method: value = value.__func__ - if isinstance(value, _filter): + if isinstance(value, _BaseCommand): if is_static_method: raise TypeError( f"Command in method {base}.{elem!r} must not be" diff --git a/discord/collectibles.py b/discord/collectibles.py new file mode 100644 index 0000000000..dd7a92f940 --- /dev/null +++ b/discord/collectibles.py @@ -0,0 +1,78 @@ +""" +The MIT License (MIT) + +Copyright (c) 2021-present Pycord Development + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. +""" + +from functools import cached_property +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from .state import ConnectionState + +from .asset import Asset +from .types.collectibles import Nameplate as NameplatePayload + + +class Nameplate: + """ + Represents a Discord Nameplate. + + .. versionadded:: 2.7 + + Attributes + ---------- + sku_id: :class:`int` + The SKU ID of the nameplate. + palette: :class:`str` + The color palette of the nameplate. + """ + + def __init__(self, data: NameplatePayload, state: "ConnectionState") -> None: + self.sku_id: int = data["sku_id"] + self.palette: str = data["palette"] + self._label: str = data["label"] + self._asset: str = data["asset"] + self._state: "ConnectionState" = state + + def __repr__(self) -> str: + return f"" + + @cached_property + def static_asset(self) -> Asset: + """ + The static :class:`Asset` of this nameplate. + + .. versionadded:: 2.7 + """ + return Asset._from_collectible(self._state, self._asset) + + @cached_property + def animated_asset(self) -> Asset: + """ + The animated :class:`Asset` of this nameplate. + + .. versionadded:: 2.7 + """ + return Asset._from_collectible(self._state, self._asset, animated=True) + + +__all__ = ("Nameplate",) diff --git a/discord/commands/context.py b/discord/commands/context.py index 27c3b0acba..73a6b39a45 100644 --- a/discord/commands/context.py +++ b/discord/commands/context.py @@ -32,28 +32,25 @@ from discord.webhook.async_ import Webhook if TYPE_CHECKING: + from typing import Awaitable, Callable + from typing_extensions import ParamSpec import discord - from .. import Bot - from ..state import ConnectionState - from ..voice_client import VoiceClient - from .core import ApplicationCommand, Option - from ..interactions import InteractionChannel + from .. import Bot + from ..client import ClientUser + from ..cog import Cog from ..guild import Guild + from ..interactions import InteractionChannel from ..member import Member from ..message import Message - from ..user import User from ..permissions import Permissions - from ..client import ClientUser - - from ..cog import Cog + from ..state import ConnectionState + from ..user import User + from ..voice_client import VoiceClient from ..webhook import WebhookMessage - - from typing import Callable, Awaitable - -from ..utils import cached_property + from .core import ApplicationCommand, Option T = TypeVar("T") CogT = TypeVar("CogT", bound="Cog") @@ -80,8 +77,6 @@ class ApplicationContext(discord.abc.Messageable): The bot that the command belongs to. interaction: :class:`.Interaction` The interaction object that invoked the command. - command: :class:`.ApplicationCommand` - The command that this context belongs to. """ def __init__(self, bot: Bot, interaction: Interaction): @@ -89,7 +84,6 @@ def __init__(self, bot: Bot, interaction: Interaction): self.interaction = interaction # below attributes will be set after initialization - self.command: ApplicationCommand = None # type: ignore self.focused: Option = None # type: ignore self.value: str = None # type: ignore self.options: dict = None # type: ignore @@ -136,53 +130,62 @@ async def invoke( """ return await command(self, *args, **kwargs) - @cached_property + @property + def command(self) -> ApplicationCommand | None: + """The command that this context belongs to.""" + return self.interaction.command + + @command.setter + def command(self, value: ApplicationCommand | None) -> None: + self.interaction.command = value + + @property def channel(self) -> InteractionChannel | None: """Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`. """ return self.interaction.channel - @cached_property + @property def channel_id(self) -> int | None: """Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`. """ return self.interaction.channel_id - @cached_property + @property def guild(self) -> Guild | None: """Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`. """ return self.interaction.guild - @cached_property + @property def guild_id(self) -> int | None: """Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`. """ return self.interaction.guild_id - @cached_property + @property def locale(self) -> str | None: """Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`. """ return self.interaction.locale - @cached_property + @property def guild_locale(self) -> str | None: """Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`. """ return self.interaction.guild_locale - @cached_property + @property def app_permissions(self) -> Permissions: return self.interaction.app_permissions - @cached_property + @property def me(self) -> Member | ClientUser | None: """Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message @@ -194,14 +197,14 @@ def me(self) -> Member | ClientUser | None: else self.bot.user ) - @cached_property + @property def message(self) -> Message | None: """Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable. """ return self.interaction.message - @cached_property + @property def user(self) -> Member | User: """Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`. @@ -220,7 +223,7 @@ def voice_client(self) -> VoiceClient | None: return self.interaction.guild.voice_client - @cached_property + @property def response(self) -> InteractionResponse: """Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`. @@ -262,6 +265,13 @@ def unselected_options(self) -> list[Option] | None: return self.command.options # type: ignore return None + @property + def attachment_size_limit(self) -> int: + """Returns the attachment size limit associated with this context's interaction. + Shorthand for :attr:`.Interaction.attachment_size_limit`. + """ + return self.interaction.attachment_size_limit + @property @discord.utils.copy_doc(InteractionResponse.send_modal) def send_modal(self) -> Callable[..., Awaitable[Interaction]]: @@ -345,6 +355,40 @@ def cog(self) -> Cog | None: return self.command.cog + def is_guild_authorised(self) -> bool: + """:class:`bool`: Checks if the invoked command is guild-installed. + This is a shortcut for :meth:`Interaction.is_guild_authorised`. + + There is an alias for this called :meth:`.is_guild_authorized`. + + .. versionadded:: 2.7 + """ + return self.interaction.is_guild_authorised() + + def is_user_authorised(self) -> bool: + """:class:`bool`: Checks if the invoked command is user-installed. + This is a shortcut for :meth:`Interaction.is_user_authorised`. + + There is an alias for this called :meth:`.is_user_authorized`. + + .. versionadded:: 2.7 + """ + return self.interaction.is_user_authorised() + + def is_guild_authorized(self) -> bool: + """:class:`bool`: An alias for :meth:`.is_guild_authorised`. + + .. versionadded:: 2.7 + """ + return self.is_guild_authorised() + + def is_user_authorized(self) -> bool: + """:class:`bool`: An alias for :meth:`.is_user_authorised`. + + .. versionadded:: 2.7 + """ + return self.is_user_authorised() + class AutocompleteContext: """Represents context for a slash command's option autocomplete. @@ -359,8 +403,6 @@ class AutocompleteContext: The bot that the command belongs to. interaction: :class:`.Interaction` The interaction object that invoked the autocomplete. - command: :class:`.ApplicationCommand` - The command that this context belongs to. focused: :class:`.Option` The option the user is currently typing. value: :class:`.str` @@ -369,13 +411,12 @@ class AutocompleteContext: A name to value mapping of the options that the user has selected before this option. """ - __slots__ = ("bot", "interaction", "command", "focused", "value", "options") + __slots__ = ("bot", "interaction", "focused", "value", "options") def __init__(self, bot: Bot, interaction: Interaction): self.bot = bot self.interaction = interaction - self.command: ApplicationCommand = None # type: ignore self.focused: Option = None # type: ignore self.value: str = None # type: ignore self.options: dict = None # type: ignore @@ -389,3 +430,12 @@ def cog(self) -> Cog | None: return None return self.command.cog + + @property + def command(self) -> ApplicationCommand | None: + """The command that this context belongs to.""" + return self.interaction.command + + @command.setter + def command(self, value: ApplicationCommand | None) -> None: + self.interaction.command = value diff --git a/discord/commands/core.py b/discord/commands/core.py index 6dd1b0d636..90e7c5aa60 100644 --- a/discord/commands/core.py +++ b/discord/commands/core.py @@ -73,9 +73,9 @@ from .options import Option, OptionChoice if sys.version_info >= (3, 11): - from typing import Annotated, get_args, get_origin + from typing import Annotated, Literal, get_args, get_origin else: - from typing_extensions import Annotated, get_args, get_origin + from typing_extensions import Annotated, Literal, get_args, get_origin __all__ = ( "_BaseCommand", @@ -233,7 +233,7 @@ def __init__(self, func: Callable, **kwargs) -> None: "__default_member_permissions__", kwargs.get("default_member_permissions", None), ) - self.nsfw: bool | None = getattr(func, "__nsfw__", kwargs.get("nsfw", None)) + self.nsfw: bool | None = getattr(func, "__nsfw__", kwargs.get("nsfw", False)) integration_types = getattr( func, "__integration_types__", kwargs.get("integration_types", None) @@ -806,6 +806,27 @@ def _parse_options(self, params, *, check_params: bool = True) -> list[Option]: if option == inspect.Parameter.empty: option = str + option = Option._strip_none_type(option) + if self._is_typing_literal(option): + literal_values = get_args(option) + if not all(isinstance(v, (str, int, float)) for v in literal_values): + raise TypeError( + "Literal values for choices must be str, int, or float." + ) + + value_type = type(literal_values[0]) + if not all(isinstance(v, value_type) for v in literal_values): + raise TypeError( + "All Literal values for choices must be of the same type." + ) + + option = Option( + value_type, + choices=[ + OptionChoice(name=str(v), value=v) for v in literal_values + ], + ) + if self._is_typing_annotated(option): type_hint = get_args(option)[0] metadata = option.__metadata__ @@ -908,6 +929,9 @@ def _is_typing_union(self, annotation): def _is_typing_optional(self, annotation): return self._is_typing_union(annotation) and type(None) in annotation.__args__ # type: ignore + def _is_typing_literal(self, annotation): + return get_origin(annotation) is Literal + def _is_typing_annotated(self, annotation): return get_origin(annotation) is Annotated @@ -1255,7 +1279,7 @@ def __init__( self.default_member_permissions: Permissions | None = kwargs.get( "default_member_permissions", None ) - self.nsfw: bool | None = kwargs.get("nsfw", None) + self.nsfw: bool | None = kwargs.get("nsfw", False) integration_types = kwargs.get("integration_types", None) contexts = kwargs.get("contexts", None) @@ -2042,11 +2066,13 @@ def command(**kwargs): docs = "https://discord.com/developers/docs" valid_locales = [ + "id", "da", "de", "en-GB", "en-US", "es-ES", + "es-419", "fr", "hr", "it", diff --git a/discord/commands/options.py b/discord/commands/options.py index 4b35a080d9..c3bfafe888 100644 --- a/discord/commands/options.py +++ b/discord/commands/options.py @@ -26,14 +26,16 @@ import inspect import logging +import types from enum import Enum -from typing import TYPE_CHECKING, Literal, Optional, Type, Union +from typing import TYPE_CHECKING, Literal, Optional, Type, Union, get_args from ..abc import GuildChannel, Mentionable from ..channel import ( CategoryChannel, DMChannel, ForumChannel, + MediaChannel, StageChannel, TextChannel, Thread, @@ -85,6 +87,7 @@ CategoryChannel: ChannelType.category, Thread: ChannelType.public_thread, ForumChannel: ChannelType.forum, + MediaChannel: ChannelType.media, DMChannel: ChannelType.private, } @@ -194,6 +197,7 @@ def __init__( if self.name is not None: self.name = str(self.name) self._parameter_name = self.name # default + input_type = self._strip_none_type(input_type) self._raw_type: InputType | tuple = input_type enum_choices = [] @@ -223,7 +227,9 @@ def __init__( self.description = description or "No description provided" self.channel_types: list[ChannelType] = kwargs.pop("channel_types", []) - if isinstance(input_type, SlashCommandOptionType): + if self.channel_types: + self.input_type = SlashCommandOptionType.channel + elif isinstance(input_type, SlashCommandOptionType): self.input_type = input_type else: from ..ext.commands import Converter @@ -361,6 +367,33 @@ def __init__( if input_type is None: raise TypeError("input_type cannot be NoneType.") + @staticmethod + def _strip_none_type(input_type): + if isinstance(input_type, SlashCommandOptionType): + return input_type + + if input_type is type(None): + raise TypeError("Option type cannot be only NoneType") + + args = () + if isinstance(input_type, types.UnionType): + args = get_args(input_type) + elif getattr(input_type, "__origin__", None) is Union: + args = get_args(input_type) + elif isinstance(input_type, tuple): + args = input_type + + if args: + filtered = tuple(t for t in args if t is not type(None)) + if not filtered: + raise TypeError("Option type cannot be only NoneType") + if len(filtered) == 1: + return filtered[0] + + return filtered + + return input_type + def to_dict(self) -> dict: as_dict = { "name": self.name, diff --git a/discord/components.py b/discord/components.py index c80eb5a57c..9f9e76aa8e 100644 --- a/discord/components.py +++ b/discord/components.py @@ -25,20 +25,43 @@ from __future__ import annotations -from typing import TYPE_CHECKING, Any, ClassVar, TypeVar - -from .enums import ButtonStyle, ChannelType, ComponentType, InputTextStyle, try_enum +from typing import TYPE_CHECKING, Any, ClassVar, Iterator, TypeVar, overload + +from .asset import AssetMixin +from .colour import Colour +from .enums import ( + ButtonStyle, + ChannelType, + ComponentType, + InputTextStyle, + SelectDefaultValueType, + SeparatorSpacingSize, + try_enum, +) +from .flags import AttachmentFlags from .partial_emoji import PartialEmoji, _EmojiTag -from .utils import MISSING, get_slots +from .utils import MISSING, find, get_slots if TYPE_CHECKING: + from . import abc from .emoji import AppEmoji, GuildEmoji from .types.components import ActionRow as ActionRowPayload from .types.components import ButtonComponent as ButtonComponentPayload from .types.components import Component as ComponentPayload + from .types.components import ContainerComponent as ContainerComponentPayload + from .types.components import FileComponent as FileComponentPayload from .types.components import InputText as InputTextComponentPayload + from .types.components import LabelComponent as LabelComponentPayload + from .types.components import MediaGalleryComponent as MediaGalleryComponentPayload + from .types.components import MediaGalleryItem as MediaGalleryItemPayload + from .types.components import SectionComponent as SectionComponentPayload + from .types.components import SelectDefaultValue as SelectDefaultValuePayload from .types.components import SelectMenu as SelectMenuPayload from .types.components import SelectOption as SelectOptionPayload + from .types.components import SeparatorComponent as SeparatorComponentPayload + from .types.components import TextDisplayComponent as TextDisplayComponentPayload + from .types.components import ThumbnailComponent as ThumbnailComponentPayload + from .types.components import UnfurledMediaItem as UnfurledMediaItemPayload __all__ = ( "Component", @@ -47,6 +70,17 @@ "SelectMenu", "SelectOption", "InputText", + "Section", + "TextDisplay", + "Thumbnail", + "MediaGallery", + "MediaGalleryItem", + "UnfurledMediaItem", + "FileComponent", + "Separator", + "Container", + "Label", + "SelectDefaultValue", ) C = TypeVar("C", bound="Component") @@ -55,11 +89,18 @@ class Component: """Represents a Discord Bot UI Kit Component. - Currently, the only components supported by Discord are: + The components supported by Discord in messages are as follows: - :class:`ActionRow` - :class:`Button` - :class:`SelectMenu` + - :class:`Section` + - :class:`TextDisplay` + - :class:`Thumbnail` + - :class:`MediaGallery` + - :class:`FileComponent` + - :class:`Separator` + - :class:`Container` This class is abstract and cannot be instantiated. @@ -69,12 +110,16 @@ class Component: ---------- type: :class:`ComponentType` The type of component. + id: :class:`int` + The component's ID. If not provided by the user, it is set sequentially by Discord. + The ID `0` is treated as if no ID was provided. """ - __slots__: tuple[str, ...] = ("type",) + __slots__: tuple[str, ...] = ("type", "id") __repr_info__: ClassVar[tuple[str, ...]] type: ComponentType + versions: tuple[int, ...] def __repr__(self) -> str: attrs = " ".join(f"{key}={getattr(self, key)!r}" for key in self.__repr_info__) @@ -95,6 +140,10 @@ def _raw_construct(cls: type[C], **kwargs) -> C: def to_dict(self) -> dict[str, Any]: raise NotImplementedError + def is_v2(self) -> bool: + """Whether this component was introduced in Components V2.""" + return self.versions and 1 not in self.versions + class ActionRow(Component): """Represents a Discord Bot UI Kit Action Row. @@ -116,19 +165,58 @@ class ActionRow(Component): __slots__: tuple[str, ...] = ("children",) __repr_info__: ClassVar[tuple[str, ...]] = __slots__ + versions: tuple[int, ...] = (1, 2) def __init__(self, data: ComponentPayload): self.type: ComponentType = try_enum(ComponentType, data["type"]) + self.id: int = data.get("id") self.children: list[Component] = [ _component_factory(d) for d in data.get("components", []) ] + @property + def width(self): + """Return the sum of the children's widths.""" + t = 0 + for item in self.children: + t += 1 if item.type is ComponentType.button else 5 + return t + def to_dict(self) -> ActionRowPayload: return { "type": int(self.type), + "id": self.id, "components": [child.to_dict() for child in self.children], } # type: ignore + def walk_components(self) -> Iterator[Component]: + yield from self.children + + def get_component(self, id: str | int) -> Component | None: + """Get a component from this action row. Roughly equivalent to `utils.get(row.children, ...)`. + If an ``int`` is provided, the component will be retrieved by ``id``, otherwise by ``custom_id``. + + Parameters + ---------- + id: Union[:class:`str`, :class:`int`] + The custom_id or id of the component to get. + + Returns + ------- + Optional[:class:`Component`] + The component with the matching ``id`` or ``custom_id`` if it exists. + """ + if not id: + return None + attr = "id" if isinstance(id, int) else "custom_id" + return find(lambda i: getattr(i, attr, None) == id, self.children) + + @classmethod + def with_components(cls, *components, id=None): + return cls._raw_construct( + type=ComponentType.action_row, id=id, children=[c for c in components] + ) + class InputText(Component): """Represents an Input Text field from the Discord Bot UI Kit. @@ -139,7 +227,7 @@ class InputText(Component): style: :class:`.InputTextStyle` The style of the input text field. custom_id: Optional[:class:`str`] - The ID of the input text field that gets received during an interaction. + The custom ID of the input text field that gets received during an interaction. label: :class:`str` The label for the input text field. placeholder: Optional[:class:`str`] @@ -153,6 +241,8 @@ class InputText(Component): Whether the input text field is required or not. Defaults to `True`. value: Optional[:class:`str`] The value that has been entered in the input text field. + id: Optional[:class:`int`] + The input text's ID. """ __slots__: tuple[str, ...] = ( @@ -165,12 +255,15 @@ class InputText(Component): "max_length", "required", "value", + "id", ) __repr_info__: ClassVar[tuple[str, ...]] = __slots__ + versions: tuple[int, ...] = (1, 2) def __init__(self, data: InputTextComponentPayload): self.type = ComponentType.input_text + self.id: int | None = data.get("id") self.style: InputTextStyle = try_enum(InputTextStyle, data["style"]) self.custom_id = data["custom_id"] self.label: str = data.get("label", None) @@ -183,6 +276,7 @@ def __init__(self, data: InputTextComponentPayload): def to_dict(self) -> InputTextComponentPayload: payload = { "type": 4, + "id": self.id, "style": self.style.value, "label": self.label, } @@ -214,8 +308,7 @@ class Button(Component): .. note:: - The user constructible and usable type to create a button is :class:`discord.ui.Button` - not this one. + This class is not useable by end-users; see :class:`discord.ui.Button` instead. .. versionadded:: 2.0 @@ -249,24 +342,27 @@ class Button(Component): ) __repr_info__: ClassVar[tuple[str, ...]] = __slots__ + versions: tuple[int, ...] = (1, 2) def __init__(self, data: ButtonComponentPayload): self.type: ComponentType = try_enum(ComponentType, data["type"]) + self.id: int = data.get("id") self.style: ButtonStyle = try_enum(ButtonStyle, data["style"]) self.custom_id: str | None = data.get("custom_id") self.url: str | None = data.get("url") self.disabled: bool = data.get("disabled", False) self.label: str | None = data.get("label") self.emoji: PartialEmoji | None - try: - self.emoji = PartialEmoji.from_dict(data["emoji"]) - except KeyError: + if e := data.get("emoji"): + self.emoji = PartialEmoji.from_dict(e) + else: self.emoji = None self.sku_id: str | None = data.get("sku_id") def to_dict(self) -> ButtonComponentPayload: payload = { "type": 2, + "id": self.id, "style": int(self.style), "label": self.label, "disabled": self.disabled, @@ -294,8 +390,7 @@ class SelectMenu(Component): .. note:: - The user constructible and usable type to create a select menu is - :class:`discord.ui.Select` not this one. + This class is not useable by end-users; see :class:`discord.ui.Select` instead. .. versionadded:: 2.0 @@ -304,6 +399,10 @@ class SelectMenu(Component): Added support for :attr:`ComponentType.user_select`, :attr:`ComponentType.role_select`, :attr:`ComponentType.mentionable_select`, and :attr:`ComponentType.channel_select`. + .. versionchanged:: 2.7 + + Added the :attr:`required` attribute for use in modals. + Attributes ---------- type: :class:`ComponentType` @@ -327,7 +426,9 @@ class SelectMenu(Component): Will be an empty list for all component types except for :attr:`ComponentType.channel_select`. disabled: :class:`bool` - Whether the select is disabled or not. + Whether the select is disabled or not. Not usable in modals. Defaults to ``False``. + required: Optional[:class:`bool`] + Whether the select is required or not. Only useable in modals. Defaults to ``True``. """ __slots__: tuple[str, ...] = ( @@ -338,12 +439,16 @@ class SelectMenu(Component): "options", "channel_types", "disabled", + "required", + "default_values", ) __repr_info__: ClassVar[tuple[str, ...]] = __slots__ + versions: tuple[int, ...] = (1, 2) def __init__(self, data: SelectMenuPayload): self.type = try_enum(ComponentType, data["type"]) + self.id: int = data.get("id") self.custom_id: str = data["custom_id"] self.placeholder: str | None = data.get("placeholder") self.min_values: int = data.get("min_values", 1) @@ -355,10 +460,15 @@ def __init__(self, data: SelectMenuPayload): self.channel_types: list[ChannelType] = [ try_enum(ChannelType, ct) for ct in data.get("channel_types", []) ] + self.required: bool | None = data.get("required") + self.default_values: list[SelectDefaultValue] = SelectDefaultValue._from_data( + data.get("default_values") + ) def to_dict(self) -> SelectMenuPayload: payload: SelectMenuPayload = { "type": self.type.value, + "id": self.id, "custom_id": self.custom_id, "min_values": self.min_values, "max_values": self.max_values, @@ -371,10 +481,189 @@ def to_dict(self) -> SelectMenuPayload: payload["channel_types"] = [ct.value for ct in self.channel_types] if self.placeholder: payload["placeholder"] = self.placeholder + if self.required is not None: + payload["required"] = self.required + if self.type is not ComponentType.string_select: + payload["default_values"] = [dv.to_dict() for dv in self.default_values] return payload +class SelectDefaultValue: + r"""Represents a :class:`discord.SelectMenu`\s default value. + + This is only applicable to selects of type other than :attr:`ComponentType.string_select`. + + .. versionadded:: 2.7 + + Parameters + ---------- + object: :class:`abc.Snowflake` + The model type this select default value is based of. + + Below, is a table defining the model instance type and the default value type it will be mapped: + + +-----------------------------------+--------------------------------------------------------------------------+ + | Model Type | Default Value Type | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.User` | :attr:`discord.SelectDefaultValueType.user` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.Member` | :attr:`discord.SelectDefaultValueType.user` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.Role` | :attr:`discord.SelectDefaultValueType.role` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.abc.GuildChannel` | :attr:`discord.SelectDefaultValueType.channel` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.Object` | depending on :attr:`discord.Object.type`, it will be mapped to any above | + +-----------------------------------+--------------------------------------------------------------------------+ + + If you pass a model that is not defined in the table, ``TypeError`` will be raised. + + .. note:: + + The :class:`discord.abc.GuildChannel` protocol includes :class:`discord.TextChannel`, :class:`discord.VoiceChannel`, :class:`discord.StageChannel`, + :class:`discord.ForumChannel`, :class:`discord.Thread`, :class:`discord.MediaChannel`. This list is not exhaustive, and is bound to change + based of the new channel types Discord adds. + + id: :class:`int` + The ID of the default value. This cannot be used with ``object``. + type: :class:`SelectDefaultValueType` + The default value type. This cannot be used with ``object``. + + Raises + ------ + TypeError + You did not provide any parameter, you provided all parameters, or you provided ``id`` but not ``type``. + """ + + __slots__ = ("id", "type") + + @overload + def __init__( + self, + object: abc.Snowflake, + /, + ) -> None: ... + + @overload + def __init__( + self, + /, + *, + id: int, + type: SelectDefaultValueType, + ) -> None: ... + + def __init__( + self, + object: abc.Snowflake = MISSING, + /, + *, + id: int = MISSING, + type: SelectDefaultValueType = MISSING, + ) -> None: + self.id: int = id + self.type: SelectDefaultValueType = type + if object is not MISSING: + if any(p is not MISSING for p in (id, type)): + raise TypeError("you cannot pass id or type when passing object") + self._handle_model(object, inst=self) + elif id is not MISSING and type is not MISSING: + self.id = id + self.type = type + else: + raise TypeError("you must provide an object model, or an id and type") + + def __repr__(self) -> str: + return f"" + + @classmethod + def _from_data( + cls, default_values: list[SelectDefaultValuePayload] | None + ) -> list[SelectDefaultValue]: + if not default_values: + return [] + return [ + cls(id=int(d["id"]), type=try_enum(SelectDefaultValueType, d["type"])) + for d in default_values + ] + + @classmethod + def _handle_model( + cls, + model: abc.Snowflake, + select_type: ComponentType | None = None, + inst: SelectDefaultValue | None = None, + ) -> SelectDefaultValue: + # preventing >circular imports< + from discord import Member, Object, Role, User, abc + from discord.user import _UserTag + + instances_mapping: dict[ + type, tuple[tuple[ComponentType, ...], SelectDefaultValueType] + ] = { + Role: ( + (ComponentType.role_select, ComponentType.mentionable_select), + SelectDefaultValueType.role, + ), + User: ( + (ComponentType.user_select, ComponentType.mentionable_select), + SelectDefaultValueType.user, + ), + Member: ( + (ComponentType.user_select, ComponentType.mentionable_select), + SelectDefaultValueType.user, + ), + _UserTag: ( + (ComponentType.user_select, ComponentType.mentionable_select), + SelectDefaultValueType.user, + ), + abc.GuildChannel: ( + (ComponentType.channel_select,), + SelectDefaultValueType.channel, + ), + } + + obj_id = model.id + obj_type = model.__class__ + + if isinstance(model, Object): + obj_type = model.type + + sel_types = None + def_type = None + + for typ, (st, dt) in instances_mapping.items(): + if issubclass(obj_type, typ): + sel_types = st + def_type = dt + break + + if sel_types is None or def_type is None: + raise TypeError( + f"{obj_type.__name__} is not a valid instance for a select default value" + ) + + # we can't actually check select types when not in a select context + if select_type is not None and select_type not in sel_types: + raise TypeError( + f"{model.__class__.__name__} objects can not be set as a default value for {select_type.value} selects", + ) + + if inst is None: + return cls(id=obj_id, type=def_type) + else: + inst.id = obj_id + inst.type = def_type + return inst + + def to_dict(self) -> SelectDefaultValuePayload: + return { + "id": self.id, + "type": self.type.value, + } + + class SelectOption: """Represents a :class:`discord.SelectMenu`'s option. @@ -465,9 +754,9 @@ def emoji(self, value) -> None: @classmethod def from_dict(cls, data: SelectOptionPayload) -> SelectOption: - try: - emoji = PartialEmoji.from_dict(data["emoji"]) - except KeyError: + if e := data.get("emoji"): + emoji = PartialEmoji.from_dict(e) + else: emoji = None return cls( @@ -494,16 +783,599 @@ def to_dict(self) -> SelectOptionPayload: return payload -def _component_factory(data: ComponentPayload) -> Component: +class Section(Component): + """Represents a Section from Components V2. + + This is a component that groups other components together with an additional component to the right as the accessory. + + This inherits from :class:`Component`. + + .. note:: + + This class is not useable by end-users; see :class:`discord.ui.Section` instead. + + .. versionadded:: 2.7 + + Attributes + ---------- + components: List[:class:`Component`] + The components contained in this section. Currently supports :class:`TextDisplay`. + accessory: Optional[:class:`Component`] + The accessory attached to this Section. Currently supports :class:`Button` and :class:`Thumbnail`. + """ + + __slots__: tuple[str, ...] = ("components", "accessory") + + __repr_info__: ClassVar[tuple[str, ...]] = __slots__ + versions: tuple[int, ...] = (2,) + + def __init__(self, data: SectionComponentPayload, state=None): + self.type: ComponentType = try_enum(ComponentType, data["type"]) + self.id: int = data.get("id") + self.components: list[Component] = [ + _component_factory(d, state=state) for d in data.get("components", []) + ] + self.accessory: Component | None = None + if _accessory := data.get("accessory"): + self.accessory = _component_factory(_accessory, state=state) + + def to_dict(self) -> SectionComponentPayload: + payload = { + "type": int(self.type), + "id": self.id, + "components": [c.to_dict() for c in self.components], + } + if self.accessory: + payload["accessory"] = self.accessory.to_dict() + return payload + + def walk_components(self) -> Iterator[Component]: + r = self.components + if self.accessory: + yield from r + [self.accessory] + yield from r + + def get_component(self, id: str | int) -> Component | None: + """Get a component from this section. Roughly equivalent to `utils.get(section.walk_components(), ...)`. + If an ``int`` is provided, the component will be retrieved by ``id``, otherwise by ``custom_id``. + + Parameters + ---------- + id: Union[:class:`str`, :class:`int`] + The custom_id or id of the component to get. + + Returns + ------- + Optional[:class:`Component`] + The component with the matching ``id`` or ``custom_id`` if it exists. + """ + if not id: + return None + attr = "id" if isinstance(id, int) else "custom_id" + if self.accessory and id == getattr(self.accessory, attr, None): + return self.accessory + component = find(lambda i: getattr(i, attr, None) == id, self.components) + return component + + +class TextDisplay(Component): + """Represents a Text Display from Components V2. + + This is a component that displays text. + + This inherits from :class:`Component`. + + .. note:: + + This class is not useable by end-users; see :class:`discord.ui.TextDisplay` instead. + + .. versionadded:: 2.7 + + Attributes + ---------- + content: :class:`str` + The component's text content. + """ + + __slots__: tuple[str, ...] = ("content",) + + __repr_info__: ClassVar[tuple[str, ...]] = __slots__ + versions: tuple[int, ...] = (2,) + + def __init__(self, data: TextDisplayComponentPayload): + self.type: ComponentType = try_enum(ComponentType, data["type"]) + self.id: int = data.get("id") + self.content: str = data.get("content") + + def to_dict(self) -> TextDisplayComponentPayload: + return {"type": int(self.type), "id": self.id, "content": self.content} + + +class UnfurledMediaItem(AssetMixin): + """Represents an Unfurled Media Item used in Components V2. + + This is used as an underlying component for other media-based components such as :class:`Thumbnail`, :class:`FileComponent`, and :class:`MediaGalleryItem`. + + .. versionadded:: 2.7 + + Attributes + ---------- + url: :class:`str` + The URL of this media item. This can either be an arbitrary URL or an ``attachment://`` URL to work with local files. + """ + + def __init__(self, url: str): + self._state = None + self._url: str = url + self._static_url: str | None = ( + url if url and url.startswith("attachment://") else None + ) + self.proxy_url: str | None = None + self.height: int | None = None + self.width: int | None = None + self.content_type: str | None = None + self.flags: AttachmentFlags | None = None + self.attachment_id: int | None = None + + def __repr__(self) -> str: + return ( + f"" + ) + + def __str__(self) -> str: + return self.url or self.__repr__() + + @property + def url(self) -> str: + return self._url + + @url.setter + def url(self, value: str) -> None: + self._url = value + self._static_url = ( + value if value and value.startswith("attachment://") else None + ) + + @classmethod + def from_dict(cls, data: UnfurledMediaItemPayload, state=None) -> UnfurledMediaItem: + + r = cls(data.get("url")) + r.proxy_url = data.get("proxy_url") + r.height = data.get("height") + r.width = data.get("width") + r.content_type = data.get("content_type") + r.flags = AttachmentFlags._from_value(data.get("flags", 0)) + r.attachment_id = data.get("attachment_id") + r._state = state + return r + + def to_dict(self) -> dict[str, str]: + return {"url": self._static_url or self.url} + + +class Thumbnail(Component): + """Represents a Thumbnail from Components V2. + + This is a component that displays media, such as images and videos. + + This inherits from :class:`Component`. + + .. note:: + + This class is not useable by end-users; see :class:`discord.ui.Thumbnail` instead. + + .. versionadded:: 2.7 + + Attributes + ---------- + media: :class:`UnfurledMediaItem` + The component's underlying media object. + description: Optional[:class:`str`] + The thumbnail's description, up to 1024 characters. + spoiler: Optional[:class:`bool`] + Whether the thumbnail has the spoiler overlay. + """ + + __slots__: tuple[str, ...] = ( + "media", + "description", + "spoiler", + ) + + __repr_info__: ClassVar[tuple[str, ...]] = __slots__ + versions: tuple[int, ...] = (2,) + + def __init__(self, data: ThumbnailComponentPayload, state=None): + self.type: ComponentType = try_enum(ComponentType, data["type"]) + self.id: int = data.get("id") + self.media: UnfurledMediaItem = ( + umi := data.get("media") + ) and UnfurledMediaItem.from_dict(umi, state=state) + self.description: str | None = data.get("description") + self.spoiler: bool | None = data.get("spoiler") + + @property + def url(self) -> str: + """Returns the URL of this thumbnail's underlying media item.""" + return self.media.url + + def to_dict(self) -> ThumbnailComponentPayload: + payload = {"type": int(self.type), "id": self.id, "media": self.media.to_dict()} + if self.description: + payload["description"] = self.description + if self.spoiler is not None: + payload["spoiler"] = self.spoiler + return payload + + +class MediaGalleryItem: + """Represents an item used in the :class:`MediaGallery` component. + + This is used as an underlying component for other media-based components such as :class:`Thumbnail`, :class:`FileComponent`, and :class:`MediaGalleryItem`. + + .. versionadded:: 2.7 + + Attributes + ---------- + url: :class:`str` + The URL of this gallery item. This can either be an arbitrary URL or an ``attachment://`` URL to work with local files. + description: Optional[:class:`str`] + The gallery item's description, up to 1024 characters. + spoiler: Optional[:class:`bool`] + Whether the gallery item is a spoiler. + """ + + def __init__(self, url, *, description=None, spoiler=False): + self._state = None + self.media: UnfurledMediaItem = UnfurledMediaItem(url) + self.description: str | None = description + self.spoiler: bool = spoiler + + @property + def url(self) -> str: + return self.media.url + + def is_dispatchable(self) -> bool: + return False + + @classmethod + def from_dict(cls, data: MediaGalleryItemPayload, state=None) -> MediaGalleryItem: + media = (umi := data.get("media")) and UnfurledMediaItem.from_dict( + umi, state=state + ) + description = data.get("description") + spoiler = data.get("spoiler", False) + + r = cls( + url=media.url, + description=description, + spoiler=spoiler, + ) + r._state = state + r.media = media + return r + + def to_dict(self) -> dict[str, Any]: + payload = {"media": self.media.to_dict()} + if self.description: + payload["description"] = self.description + if self.spoiler is not None: + payload["spoiler"] = self.spoiler + return payload + + +class MediaGallery(Component): + """Represents a Media Gallery from Components V2. + + This is a component that displays up to 10 different :class:`MediaGalleryItem` objects. + + This inherits from :class:`Component`. + + .. note:: + + This class is not useable by end-users; see :class:`discord.ui.MediaGallery` instead. + + .. versionadded:: 2.7 + + Attributes + ---------- + items: List[:class:`MediaGalleryItem`] + The media this gallery contains. + """ + + __slots__: tuple[str, ...] = ("items",) + + __repr_info__: ClassVar[tuple[str, ...]] = __slots__ + versions: tuple[int, ...] = (2,) + + def __init__(self, data: MediaGalleryComponentPayload, state=None): + self.type: ComponentType = try_enum(ComponentType, data["type"]) + self.id: int = data.get("id") + self.items: list[MediaGalleryItem] = [ + MediaGalleryItem.from_dict(d, state=state) for d in data.get("items", []) + ] + + def to_dict(self) -> MediaGalleryComponentPayload: + return { + "type": int(self.type), + "id": self.id, + "items": [i.to_dict() for i in self.items], + } + + +class FileComponent(Component): + """Represents a File from Components V2. + + This component displays a downloadable file in a message. + + This inherits from :class:`Component`. + + .. note:: + + This class is not useable by end-users; see :class:`discord.ui.File` instead. + + .. versionadded:: 2.7 + + Attributes + ---------- + file: :class:`UnfurledMediaItem` + The file's media item. + name: :class:`str` + The file's name. + size: :class:`int` + The file's size in bytes. + spoiler: Optional[:class:`bool`] + Whether the file has the spoiler overlay. + """ + + __slots__: tuple[str, ...] = ( + "file", + "spoiler", + "name", + "size", + ) + + __repr_info__: ClassVar[tuple[str, ...]] = __slots__ + versions: tuple[int, ...] = (2,) + + def __init__(self, data: FileComponentPayload, state=None): + self.type: ComponentType = try_enum(ComponentType, data["type"]) + self.id: int = data.get("id") + self.name: str = data.get("name") + self.size: int = data.get("size") + self.file: UnfurledMediaItem = UnfurledMediaItem.from_dict( + data.get("file", {}), state=state + ) + self.spoiler: bool | None = data.get("spoiler") + + def to_dict(self) -> FileComponentPayload: + payload = {"type": int(self.type), "id": self.id, "file": self.file.to_dict()} + if self.spoiler is not None: + payload["spoiler"] = self.spoiler + return payload + + +class Separator(Component): + """Represents a Separator from Components V2. + + This is a component that visually separates components. + + This inherits from :class:`Component`. + + .. note:: + + This class is not useable by end-users; see :class:`discord.ui.Separator` instead. + + .. versionadded:: 2.7 + + Attributes + ---------- + divider: :class:`bool` + Whether the separator will show a horizontal line in addition to vertical spacing. + spacing: Optional[:class:`SeparatorSpacingSize`] + The separator's spacing size. + """ + + __slots__: tuple[str, ...] = ( + "divider", + "spacing", + ) + + __repr_info__: ClassVar[tuple[str, ...]] = __slots__ + versions: tuple[int, ...] = (2,) + + def __init__(self, data: SeparatorComponentPayload): + self.type: ComponentType = try_enum(ComponentType, data["type"]) + self.id: int = data.get("id") + self.divider: bool = data.get("divider") + self.spacing: SeparatorSpacingSize = try_enum( + SeparatorSpacingSize, data.get("spacing", 1) + ) + + def to_dict(self) -> SeparatorComponentPayload: + return { + "type": int(self.type), + "id": self.id, + "divider": self.divider, + "spacing": int(self.spacing), + } + + +class Container(Component): + """Represents a Container from Components V2. + + This is a component that contains different :class:`Component` objects. + It may only contain: + + - :class:`ActionRow` + - :class:`TextDisplay` + - :class:`Section` + - :class:`MediaGallery` + - :class:`Separator` + - :class:`FileComponent` + + This inherits from :class:`Component`. + + .. note:: + + This class is not useable by end-users; see :class:`discord.ui.Container` instead. + + .. versionadded:: 2.7 + + Attributes + ---------- + components: List[:class:`Component`] + The components contained in this container. + accent_color: Optional[:class:`Colour`] + The accent color of the container. + spoiler: Optional[:class:`bool`] + Whether the entire container has the spoiler overlay. + """ + + __slots__: tuple[str, ...] = ( + "accent_color", + "spoiler", + "components", + ) + + __repr_info__: ClassVar[tuple[str, ...]] = __slots__ + versions: tuple[int, ...] = (2,) + + def __init__(self, data: ContainerComponentPayload, state=None): + self.type: ComponentType = try_enum(ComponentType, data["type"]) + self.id: int = data.get("id") + self.accent_color: Colour | None = (c := data.get("accent_color")) and Colour( + c + ) # at this point, not adding alternative spelling + self.spoiler: bool | None = data.get("spoiler") + self.components: list[Component] = [ + _component_factory(d, state=state) for d in data.get("components", []) + ] + + def to_dict(self) -> ContainerComponentPayload: + payload = { + "type": int(self.type), + "id": self.id, + "components": [c.to_dict() for c in self.components], + } + if self.accent_color: + payload["accent_color"] = self.accent_color.value + if self.spoiler is not None: + payload["spoiler"] = self.spoiler + return payload + + def walk_components(self) -> Iterator[Component]: + for c in self.components: + if hasattr(c, "walk_components"): + yield from c.walk_components() + else: + yield c + + def get_component(self, id: str | int) -> Component | None: + """Get a component from this container. Roughly equivalent to `utils.get(container.components, ...)`. + If an ``int`` is provided, the component will be retrieved by ``id``, otherwise by ``custom_id``. + This method will also search for nested components. + + Parameters + ---------- + id: Union[:class:`str`, :class:`int`] + The custom_id or id of the component to get. + + Returns + ------- + Optional[:class:`Component`] + The component with the matching ``id`` or ``custom_id`` if it exists. + """ + if not id: + return None + attr = "id" if isinstance(id, int) else "custom_id" + for i in self.components: + if getattr(i, attr, None) == id: + return i + elif hasattr(i, "get_component"): + if component := i.get_component(id): + return component + return None + + +class Label(Component): + """Represents a Label used in modals as the top-level component. + + This is a component that allows you to add additional text to another component. + ``component`` may only be: + + - :class:`InputText` + - :class:`SelectMenu` (string) + + This inherits from :class:`Component`. + + .. versionadded:: 2.7 + + Attributes + ---------- + component: :class:`Component` + The component contained in this label. Currently supports :class:`InputText` and :class:`SelectMenu`. + label: :class:`str` + The main text associated with this label's ``component``, up to 45 characters. + description: Optional[:class:`str`] + The description associated with this label's ``component``, up to 100 characters. + """ + + __slots__: tuple[str, ...] = ("component", "label", "description") + + __repr_info__: ClassVar[tuple[str, ...]] = __slots__ + versions: tuple[int, ...] = () + + def __init__(self, data: LabelComponentPayload): + self.type: ComponentType = try_enum(ComponentType, data["type"]) + self.id: int = data["id"] + self.component: Component = _component_factory(data["component"]) + self.label: str = data["label"] + self.description: str | None = data.get("description") + + def to_dict(self) -> LabelComponentPayload: + payload = { + "type": int(self.type), + "id": self.id, + "component": self.component.to_dict(), + "label": self.label, + "description": self.description, + } + return payload + + def walk_components(self) -> Iterator[Component]: + yield from [self.component] + + +COMPONENT_MAPPINGS = { + 1: ActionRow, + 2: Button, + 3: SelectMenu, + 4: InputText, + 5: SelectMenu, + 6: SelectMenu, + 7: SelectMenu, + 8: SelectMenu, + 9: Section, + 10: TextDisplay, + 11: Thumbnail, + 12: MediaGallery, + 13: FileComponent, + 14: Separator, + 17: Container, + 18: Label, +} + +STATE_COMPONENTS = (Section, Container, Thumbnail, MediaGallery, FileComponent) + + +def _component_factory(data: ComponentPayload, state=None) -> Component: component_type = data["type"] - if component_type == 1: - return ActionRow(data) - elif component_type == 2: - return Button(data) # type: ignore - elif component_type == 4: - return InputText(data) # type: ignore - elif component_type in (3, 5, 6, 7, 8): - return SelectMenu(data) # type: ignore + if cls := COMPONENT_MAPPINGS.get(component_type): + if issubclass(cls, STATE_COMPONENTS): + return cls(data, state=state) + else: + return cls(data) else: as_enum = try_enum(ComponentType, component_type) return Component._raw_construct(type=as_enum) diff --git a/discord/emojis.json b/discord/emojis.json new file mode 100644 index 0000000000..2cc7c8d855 --- /dev/null +++ b/discord/emojis.json @@ -0,0 +1 @@ +{"grinning": "😀", "grinning_face": "😀", "smiley": "😃", "smile": "😄", "grin": "😁", "laughing": "😆", "satisfied": "😆", "face_holding_back_tears": "🥹", "sweat_smile": "😅", "joy": "😂", "rofl": "🤣", "rolling_on_the_floor_laughing": "🤣", "smiling_face_with_tear": "🥲", "relaxed": "☺️", "smiling_face": "☺️", "blush": "😊", "innocent": "😇", "slight_smile": "🙂", "slightly_smiling_face": "🙂", "upside_down": "🙃", "upside_down_face": "🙃", "wink": "😉", "winking_face": "😉", "relieved": "😌", "relieved_face": "😌", "heart_eyes": "😍", "smiling_face_with_3_hearts": "🥰", "kissing_heart": "😘", "kissing": "😗", "kissing_face": "😗", "kissing_smiling_eyes": "😙", "kissing_closed_eyes": "😚", "yum": "😋", "stuck_out_tongue": "😛", "stuck_out_tongue_closed_eyes": "😝", "stuck_out_tongue_winking_eye": "😜", "zany_face": "🤪", "face_with_raised_eyebrow": "🤨", "face_with_monocle": "🧐", "nerd": "🤓", "nerd_face": "🤓", "sunglasses": "😎", "disguised_face": "🥸", "star_struck": "🤩", "partying_face": "🥳", "smirk": "😏", "smirking_face": "😏", "unamused": "😒", "unamused_face": "😒", "disappointed": "😞", "pensive": "😔", "pensive_face": "😔", "worried": "😟", "worried_face": "😟", "confused": "😕", "confused_face": "😕", "slight_frown": "🙁", "slightly_frowning_face": "🙁", "frowning2": "☹️", "white_frowning_face": "☹️", "frowning_face": "☹️", "persevere": "😣", "confounded": "😖", "tired_face": "😫", "weary": "😩", "weary_face": "😩", "pleading_face": "🥺", "cry": "😢", "crying_face": "😢", "sob": "😭", "triumph": "😤", "angry": "😠", "angry_face": "😠", "rage": "😡", "pouting_face": "😡", "face_with_symbols_over_mouth": "🤬", "exploding_head": "🤯", "flushed": "😳", "flushed_face": "😳", "hot_face": "🥵", "cold_face": "🥶", "face_in_clouds": "😶‍🌫️", "scream": "😱", "fearful": "😨", "fearful_face": "😨", "cold_sweat": "😰", "disappointed_relieved": "😥", "sweat": "😓", "hugging": "🤗", "hugging_face": "🤗", "thinking": "🤔", "thinking_face": "🤔", "face_with_peeking_eye": "🫣", "face_with_hand_over_mouth": "🤭", "face_with_open_eyes_and_hand_over_mouth": "🫢", "saluting_face": "🫡", "shushing_face": "🤫", "melting_face": "🫠", "lying_face": "🤥", "liar": "🤥", "no_mouth": "😶", "dotted_line_face": "🫥", "neutral_face": "😐", "face_with_diagonal_mouth": "🫤", "expressionless": "😑", "shaking_face": "🫨", "head_shaking_horizontally": "🙂‍↔️", "head_shaking_vertically": "🙂‍↕️", "grimacing": "😬", "rolling_eyes": "🙄", "face_with_rolling_eyes": "🙄", "hushed": "😯", "hushed_face": "😯", "frowning": "😦", "anguished": "😧", "open_mouth": "😮", "astonished": "😲", "yawning_face": "🥱", "sleeping": "😴", "sleeping_face": "😴", "drooling_face": "🤤", "drool": "🤤", "sleepy": "😪", "sleepy_face": "😪", "face_exhaling": "😮‍💨", "dizzy_face": "😵", "face_with_spiral_eyes": "😵‍💫", "zipper_mouth": "🤐", "zipper_mouth_face": "🤐", "woozy_face": "🥴", "nauseated_face": "🤢", "sick": "🤢", "face_vomiting": "🤮", "sneezing_face": "🤧", "sneeze": "🤧", "mask": "😷", "thermometer_face": "🤒", "face_with_thermometer": "🤒", "head_bandage": "🤕", "face_with_head_bandage": "🤕", "money_mouth": "🤑", "money_mouth_face": "🤑", "cowboy": "🤠", "face_with_cowboy_hat": "🤠", "smiling_imp": "😈", "imp": "👿", "japanese_ogre": "👹", "ogre": "👹", "japanese_goblin": "👺", "goblin": "👺", "clown": "🤡", "clown_face": "🤡", "poop": "💩", "shit": "💩", "hankey": "💩", "poo": "💩", "pile_of_poo": "💩", "ghost": "👻", "skull": "💀", "skeleton": "💀", "skull_crossbones": "☠️", "skull_and_crossbones": "☠️", "alien": "👽", "space_invader": "👾", "alien_monster": "👾", "robot": "🤖", "robot_face": "🤖", "jack_o_lantern": "🎃", "smiley_cat": "😺", "grinning_cat": "😺", "smile_cat": "😸", "joy_cat": "😹", "heart_eyes_cat": "😻", "smirk_cat": "😼", "kissing_cat": "😽", "scream_cat": "🙀", "weary_cat": "🙀", "crying_cat_face": "😿", "crying_cat": "😿", "pouting_cat": "😾", "handshake": "🤝", "shaking_hands": "🤝", "heart_hands": "🫶", "palms_up_together": "🤲", "open_hands": "👐", "raised_hands": "🙌", "raising_hands": "🙌", "clap": "👏", "thumbsup": "👍", "+1": "👍", "thumbup": "👍", "thumbs_up": "👍", "thumbsdown": "👎", "-1": "👎", "thumbdown": "👎", "thumbs_down": "👎", "punch": "👊", "oncoming_fist": "👊", "fist": "✊", "raised_fist": "✊", "left_facing_fist": "🤛", "left_fist": "🤛", "right_facing_fist": "🤜", "right_fist": "🤜", "leftwards_pushing_hand": "🫷", "rightwards_pushing_hand": "🫸", "fingers_crossed": "🤞", "hand_with_index_and_middle_finger_crossed": "🤞", "v": "✌️", "victory_hand": "✌️", "hand_with_index_finger_and_thumb_crossed": "🫰", "love_you_gesture": "🤟", "metal": "🤘", "sign_of_the_horns": "🤘", "ok_hand": "👌", "pinched_fingers": "🤌", "pinching_hand": "🤏", "palm_down_hand": "🫳", "palm_up_hand": "🫴", "point_left": "👈", "point_right": "👉", "point_up_2": "👆", "point_down": "👇", "point_up": "☝️", "raised_hand": "✋", "raised_back_of_hand": "🤚", "back_of_hand": "🤚", "hand_splayed": "🖐️", "raised_hand_with_fingers_splayed": "🖐️", "vulcan": "🖖", "raised_hand_with_part_between_middle_and_ring_fingers": "🖖", "vulcan_salute": "🖖", "wave": "👋", "waving_hand": "👋", "call_me": "🤙", "call_me_hand": "🤙", "leftwards_hand": "🫲", "rightwards_hand": "🫱", "muscle": "💪", "flexed_biceps": "💪", "mechanical_arm": "🦾", "middle_finger": "🖕", "reversed_hand_with_middle_finger_extended": "🖕", "writing_hand": "✍️", "pray": "🙏", "folded_hands": "🙏", "index_pointing_at_the_viewer": "🫵", "foot": "🦶", "leg": "🦵", "mechanical_leg": "🦿", "lipstick": "💄", "kiss": "💋", "kiss_mark": "💋", "lips": "👄", "mouth": "👄", "biting_lip": "🫦", "tooth": "🦷", "tongue": "👅", "ear": "👂", "ear_with_hearing_aid": "🦻", "nose": "👃", "footprints": "👣", "eye": "👁️", "eyes": "👀", "anatomical_heart": "🫀", "lungs": "🫁", "brain": "🧠", "speaking_head": "🗣️", "speaking_head_in_silhouette": "🗣️", "bust_in_silhouette": "👤", "busts_in_silhouette": "👥", "people_hugging": "🫂", "baby": "👶", "child": "🧒", "girl": "👧", "boy": "👦", "adult": "🧑", "person": "🧑", "woman": "👩", "man": "👨", "person_curly_hair": "🧑‍🦱", "woman_curly_haired": "👩‍🦱", "man_curly_haired": "👨‍🦱", "person_red_hair": "🧑‍🦰", "woman_red_haired": "👩‍🦰", "man_red_haired": "👨‍🦰", "man_red_hair": "👨‍🦰", "blond_haired_person": "👱", "person_with_blond_hair": "👱", "blond_haired_woman": "👱‍♀️", "blond_haired_man": "👱‍♂️", "person_white_hair": "🧑‍🦳", "woman_white_haired": "👩‍🦳", "man_white_haired": "👨‍🦳", "person_bald": "🧑‍🦲", "woman_bald": "👩‍🦲", "man_bald": "👨‍🦲", "bearded_person": "🧔", "person_beard": "🧔", "woman_beard": "🧔‍♀️", "man_beard": "🧔‍♂️", "older_adult": "🧓", "older_person": "🧓", "older_woman": "👵", "grandma": "👵", "old_woman": "👵", "older_man": "👴", "old_man": "👴", "man_with_chinese_cap": "👲", "man_with_gua_pi_mao": "👲", "person_wearing_turban": "👳", "man_with_turban": "👳", "woman_wearing_turban": "👳‍♀️", "man_wearing_turban": "👳‍♂️", "woman_with_headscarf": "🧕", "police_officer": "👮", "cop": "👮", "woman_police_officer": "👮‍♀️", "man_police_officer": "👮‍♂️", "construction_worker": "👷", "woman_construction_worker": "👷‍♀️", "man_construction_worker": "👷‍♂️", "guard": "💂", "guardsman": "💂", "woman_guard": "💂‍♀️", "man_guard": "💂‍♂️", "detective": "🕵️", "spy": "🕵️", "sleuth_or_spy": "🕵️", "woman_detective": "🕵️‍♀️", "man_detective": "🕵️‍♂️", "health_worker": "🧑‍⚕️", "woman_health_worker": "👩‍⚕️", "man_health_worker": "👨‍⚕️", "farmer": "🧑‍🌾", "woman_farmer": "👩‍🌾", "man_farmer": "👨‍🌾", "cook": "🧑‍🍳", "woman_cook": "👩‍🍳", "man_cook": "👨‍🍳", "student": "🧑‍🎓", "woman_student": "👩‍🎓", "man_student": "👨‍🎓", "singer": "🧑‍🎤", "woman_singer": "👩‍🎤", "man_singer": "👨‍🎤", "teacher": "🧑‍🏫", "woman_teacher": "👩‍🏫", "man_teacher": "👨‍🏫", "factory_worker": "🧑‍🏭", "woman_factory_worker": "👩‍🏭", "man_factory_worker": "👨‍🏭", "technologist": "🧑‍💻", "woman_technologist": "👩‍💻", "man_technologist": "👨‍💻", "office_worker": "🧑‍💼", "woman_office_worker": "👩‍💼", "man_office_worker": "👨‍💼", "mechanic": "🧑‍🔧", "woman_mechanic": "👩‍🔧", "man_mechanic": "👨‍🔧", "scientist": "🧑‍🔬", "woman_scientist": "👩‍🔬", "man_scientist": "👨‍🔬", "artist": "🧑‍🎨", "woman_artist": "👩‍🎨", "man_artist": "👨‍🎨", "firefighter": "🧑‍🚒", "woman_firefighter": "👩‍🚒", "man_firefighter": "👨‍🚒", "pilot": "🧑‍✈️", "woman_pilot": "👩‍✈️", "man_pilot": "👨‍✈️", "astronaut": "🧑‍🚀", "woman_astronaut": "👩‍🚀", "man_astronaut": "👨‍🚀", "judge": "🧑‍⚖️", "woman_judge": "👩‍⚖️", "man_judge": "👨‍⚖️", "person_with_veil": "👰", "woman_with_veil": "👰‍♀️", "bride_with_veil": "👰‍♀️", "man_with_veil": "👰‍♂️", "person_in_tuxedo": "🤵", "woman_in_tuxedo": "🤵‍♀️", "man_in_tuxedo": "🤵‍♂️", "person_with_crown": "🫅", "princess": "👸", "prince": "🤴", "superhero": "🦸", "woman_superhero": "🦸‍♀️", "man_superhero": "🦸‍♂️", "supervillain": "🦹", "woman_supervillain": "🦹‍♀️", "man_supervillain": "🦹‍♂️", "ninja": "🥷", "mx_claus": "🧑‍🎄", "mrs_claus": "🤶", "mother_christmas": "🤶", "santa": "🎅", "santa_claus": "🎅", "mage": "🧙", "woman_mage": "🧙‍♀️", "man_mage": "🧙‍♂️", "elf": "🧝", "woman_elf": "🧝‍♀️", "man_elf": "🧝‍♂️", "troll": "🧌", "vampire": "🧛", "woman_vampire": "🧛‍♀️", "man_vampire": "🧛‍♂️", "zombie": "🧟", "woman_zombie": "🧟‍♀️", "man_zombie": "🧟‍♂️", "genie": "🧞", "woman_genie": "🧞‍♀️", "man_genie": "🧞‍♂️", "merperson": "🧜", "mermaid": "🧜‍♀️", "merman": "🧜‍♂️", "fairy": "🧚", "woman_fairy": "🧚‍♀️", "man_fairy": "🧚‍♂️", "angel": "👼", "baby_angel": "👼", "pregnant_person": "🫄", "pregnant_woman": "🤰", "expecting_woman": "🤰", "pregnant_man": "🫃", "breast_feeding": "🤱", "person_feeding_baby": "🧑‍🍼", "woman_feeding_baby": "👩‍🍼", "man_feeding_baby": "👨‍🍼", "person_bowing": "🙇", "bow": "🙇", "woman_bowing": "🙇‍♀️", "man_bowing": "🙇‍♂️", "person_tipping_hand": "💁", "information_desk_person": "💁", "woman_tipping_hand": "💁‍♀️", "man_tipping_hand": "💁‍♂️", "person_gesturing_no": "🙅", "no_good": "🙅", "woman_gesturing_no": "🙅‍♀️", "man_gesturing_no": "🙅‍♂️", "person_gesturing_ok": "🙆", "woman_gesturing_ok": "🙆‍♀️", "man_gesturing_ok": "🙆‍♂️", "person_raising_hand": "🙋", "raising_hand": "🙋", "woman_raising_hand": "🙋‍♀️", "man_raising_hand": "🙋‍♂️", "deaf_person": "🧏", "deaf_woman": "🧏‍♀️", "deaf_man": "🧏‍♂️", "person_facepalming": "🤦", "face_palm": "🤦", "facepalm": "🤦", "woman_facepalming": "🤦‍♀️", "man_facepalming": "🤦‍♂️", "person_shrugging": "🤷", "shrug": "🤷", "woman_shrugging": "🤷‍♀️", "man_shrugging": "🤷‍♂️", "person_pouting": "🙎", "person_with_pouting_face": "🙎", "woman_pouting": "🙎‍♀️", "man_pouting": "🙎‍♂️", "person_frowning": "🙍", "woman_frowning": "🙍‍♀️", "man_frowning": "🙍‍♂️", "person_getting_haircut": "💇", "haircut": "💇", "woman_getting_haircut": "💇‍♀️", "man_getting_haircut": "💇‍♂️", "person_getting_massage": "💆", "massage": "💆", "woman_getting_face_massage": "💆‍♀️", "man_getting_face_massage": "💆‍♂️", "person_in_steamy_room": "🧖", "woman_in_steamy_room": "🧖‍♀️", "man_in_steamy_room": "🧖‍♂️", "nail_care": "💅", "nail_polish": "💅", "selfie": "🤳", "dancer": "💃", "woman_dancing": "💃", "man_dancing": "🕺", "male_dancer": "🕺", "people_with_bunny_ears_partying": "👯", "dancers": "👯", "women_with_bunny_ears_partying": "👯‍♀️", "men_with_bunny_ears_partying": "👯‍♂️", "levitate": "🕴️", "man_in_business_suit_levitating": "🕴️", "person_in_manual_wheelchair": "🧑‍🦽", "woman_in_manual_wheelchair": "👩‍🦽", "man_in_manual_wheelchair": "👨‍🦽", "person_in_manual_wheelchair_facing_right": "🧑‍🦽‍➡️", "man_in_manual_wheelchair_facing_right": "👨‍🦽‍➡️", "woman_in_manual_wheelchair_facing_right": "👩‍🦽‍➡️", "person_in_motorized_wheelchair": "🧑‍🦼", "woman_in_motorized_wheelchair": "👩‍🦼", "man_in_motorized_wheelchair": "👨‍🦼", "person_in_motorized_wheelchair_facing_right": "🧑‍🦼‍➡️", "man_in_motorized_wheelchair_facing_right": "👨‍🦼‍➡️", "woman_in_motorized_wheelchair_facing_right": "👩‍🦼‍➡️", "person_walking": "🚶", "walking": "🚶", "woman_walking": "🚶‍♀️", "man_walking": "🚶‍♂️", "person_walking_facing_right": "🚶‍➡️", "woman_walking_facing_right": "🚶‍♀️‍➡️", "man_walking_facing_right": "🚶‍♂️‍➡️", "person_with_probing_cane": "🧑‍🦯", "woman_with_probing_cane": "👩‍🦯", "man_with_probing_cane": "👨‍🦯", "person_with_white_cane_facing_right": "🧑‍🦯‍➡️", "man_with_white_cane_facing_right": "👨‍🦯‍➡️", "woman_with_white_cane_facing_right": "👩‍🦯‍➡️", "person_kneeling": "🧎", "woman_kneeling": "🧎‍♀️", "man_kneeling": "🧎‍♂️", "person_kneeling_facing_right": "🧎‍➡️", "woman_kneeling_facing_right": "🧎‍♀️‍➡️", "man_kneeling_facing_right": "🧎‍♂️‍➡️", "person_running": "🏃", "runner": "🏃", "woman_running": "🏃‍♀️", "man_running": "🏃‍♂️", "person_running_facing_right": "🏃‍➡️", "woman_running_facing_right": "🏃‍♀️‍➡️", "man_running_facing_right": "🏃‍♂️‍➡️", "person_standing": "🧍", "woman_standing": "🧍‍♀️", "man_standing": "🧍‍♂️", "people_holding_hands": "🧑‍🤝‍🧑", "couple": "👫", "two_women_holding_hands": "👭", "two_men_holding_hands": "👬", "couple_with_heart": "💑", "couple_with_heart_woman_man": "👩‍❤️‍👨", "couple_ww": "👩‍❤️‍👩", "couple_with_heart_ww": "👩‍❤️‍👩", "couple_mm": "👨‍❤️‍👨", "couple_with_heart_mm": "👨‍❤️‍👨", "couplekiss": "💏", "kiss_woman_man": "👩‍❤️‍💋‍👨", "kiss_ww": "👩‍❤️‍💋‍👩", "couplekiss_ww": "👩‍❤️‍💋‍👩", "kiss_mm": "👨‍❤️‍💋‍👨", "couplekiss_mm": "👨‍❤️‍💋‍👨", "kiss_man_man": "👨‍❤️‍💋‍👨", "family_adult_adult_child_child": "🧑‍🧑‍🧒‍🧒", "family_adult_adult_child": "🧑‍🧑‍🧒", "family_adult_child_child": "🧑‍🧒‍🧒", "family_adult_child": "🧑‍🧒", "family": "👪", "family_man_woman_boy": "👨‍👩‍👦", "family_mwg": "👨‍👩‍👧", "family_mwgb": "👨‍👩‍👧‍👦", "family_mwbb": "👨‍👩‍👦‍👦", "family_mwgg": "👨‍👩‍👧‍👧", "family_wwb": "👩‍👩‍👦", "family_wwg": "👩‍👩‍👧", "family_wwgb": "👩‍👩‍👧‍👦", "family_wwbb": "👩‍👩‍👦‍👦", "family_wwgg": "👩‍👩‍👧‍👧", "family_mmb": "👨‍👨‍👦", "family_mmg": "👨‍👨‍👧", "family_mmgb": "👨‍👨‍👧‍👦", "family_mmbb": "👨‍👨‍👦‍👦", "family_mmgg": "👨‍👨‍👧‍👧", "family_woman_boy": "👩‍👦", "family_woman_girl": "👩‍👧", "family_woman_girl_boy": "👩‍👧‍👦", "family_woman_boy_boy": "👩‍👦‍👦", "family_woman_girl_girl": "👩‍👧‍👧", "family_man_boy": "👨‍👦", "family_man_girl": "👨‍👧", "family_man_girl_boy": "👨‍👧‍👦", "family_man_boy_boy": "👨‍👦‍👦", "family_man_girl_girl": "👨‍👧‍👧", "knot": "🪢", "yarn": "🧶", "thread": "🧵", "sewing_needle": "🪡", "coat": "🧥", "lab_coat": "🥼", "safety_vest": "🦺", "womans_clothes": "👚", "shirt": "👕", "t_shirt": "👕", "jeans": "👖", "briefs": "🩲", "shorts": "🩳", "necktie": "👔", "dress": "👗", "bikini": "👙", "one_piece_swimsuit": "🩱", "kimono": "👘", "sari": "🥻", "thong_sandal": "🩴", "womans_flat_shoe": "🥿", "flat_shoe": "🥿", "high_heel": "👠", "sandal": "👡", "womans_sandal": "👡", "boot": "👢", "womans_boot": "👢", "mans_shoe": "👞", "athletic_shoe": "👟", "running_shoe": "👟", "hiking_boot": "🥾", "socks": "🧦", "gloves": "🧤", "scarf": "🧣", "tophat": "🎩", "top_hat": "🎩", "billed_cap": "🧢", "womans_hat": "👒", "mortar_board": "🎓", "helmet_with_cross": "⛑️", "helmet_with_white_cross": "⛑️", "military_helmet": "🪖", "crown": "👑", "ring": "💍", "pouch": "👝", "clutch_bag": "👝", "purse": "👛", "handbag": "👜", "briefcase": "💼", "school_satchel": "🎒", "backpack": "🎒", "luggage": "🧳", "eyeglasses": "👓", "glasses": "👓", "dark_sunglasses": "🕶️", "goggles": "🥽", "closed_umbrella": "🌂", "dog": "🐶", "dog_face": "🐶", "cat": "🐱", "cat_face": "🐱", "mouse": "🐭", "mouse_face": "🐭", "hamster": "🐹", "rabbit": "🐰", "rabbit_face": "🐰", "fox": "🦊", "fox_face": "🦊", "bear": "🐻", "panda_face": "🐼", "panda": "🐼", "polar_bear": "🐻‍❄️", "koala": "🐨", "tiger": "🐯", "tiger_face": "🐯", "lion_face": "🦁", "lion": "🦁", "cow": "🐮", "cow_face": "🐮", "pig": "🐷", "pig_face": "🐷", "pig_nose": "🐽", "frog": "🐸", "monkey_face": "🐵", "see_no_evil": "🙈", "hear_no_evil": "🙉", "speak_no_evil": "🙊", "monkey": "🐒", "chicken": "🐔", "penguin": "🐧", "bird": "🐦", "baby_chick": "🐤", "hatching_chick": "🐣", "hatched_chick": "🐥", "goose": "🪿", "duck": "🦆", "black_bird": "🐦‍⬛", "eagle": "🦅", "owl": "🦉", "bat": "🦇", "wolf": "🐺", "boar": "🐗", "horse": "🐴", "horse_face": "🐴", "unicorn": "🦄", "unicorn_face": "🦄", "moose": "🫎", "bee": "🐝", "honeybee": "🐝", "worm": "🪱", "bug": "🐛", "butterfly": "🦋", "snail": "🐌", "lady_beetle": "🐞", "ant": "🐜", "fly": "🪰", "beetle": "🪲", "cockroach": "🪳", "mosquito": "🦟", "cricket": "🦗", "spider": "🕷️", "spider_web": "🕸️", "scorpion": "🦂", "turtle": "🐢", "snake": "🐍", "lizard": "🦎", "t_rex": "🦖", "sauropod": "🦕", "octopus": "🐙", "squid": "🦑", "jellyfish": "🪼", "shrimp": "🦐", "lobster": "🦞", "crab": "🦀", "blowfish": "🐡", "tropical_fish": "🐠", "fish": "🐟", "dolphin": "🐬", "whale": "🐳", "whale2": "🐋", "shark": "🦈", "seal": "🦭", "crocodile": "🐊", "tiger2": "🐅", "leopard": "🐆", "zebra": "🦓", "gorilla": "🦍", "orangutan": "🦧", "mammoth": "🦣", "elephant": "🐘", "hippopotamus": "🦛", "rhino": "🦏", "rhinoceros": "🦏", "dromedary_camel": "🐪", "camel": "🐫", "giraffe": "🦒", "kangaroo": "🦘", "bison": "🦬", "water_buffalo": "🐃", "ox": "🐂", "cow2": "🐄", "donkey": "🫏", "racehorse": "🐎", "pig2": "🐖", "ram": "🐏", "sheep": "🐑", "ewe": "🐑", "llama": "🦙", "goat": "🐐", "deer": "🦌", "dog2": "🐕", "poodle": "🐩", "guide_dog": "🦮", "service_dog": "🐕‍🦺", "cat2": "🐈", "black_cat": "🐈‍⬛", "feather": "🪶", "wing": "🪽", "rooster": "🐓", "turkey": "🦃", "dodo": "🦤", "peacock": "🦚", "parrot": "🦜", "swan": "🦢", "flamingo": "🦩", "dove": "🕊️", "dove_of_peace": "🕊️", "rabbit2": "🐇", "raccoon": "🦝", "skunk": "🦨", "badger": "🦡", "beaver": "🦫", "otter": "🦦", "sloth": "🦥", "mouse2": "🐁", "rat": "🐀", "chipmunk": "🐿️", "hedgehog": "🦔", "feet": "🐾", "paw_prints": "🐾", "dragon": "🐉", "dragon_face": "🐲", "phoenix": "🐦‍🔥", "cactus": "🌵", "christmas_tree": "🎄", "evergreen_tree": "🌲", "deciduous_tree": "🌳", "palm_tree": "🌴", "wood": "🪵", "seedling": "🌱", "herb": "🌿", "shamrock": "☘️", "four_leaf_clover": "🍀", "bamboo": "🎍", "potted_plant": "🪴", "tanabata_tree": "🎋", "leaves": "🍃", "fallen_leaf": "🍂", "maple_leaf": "🍁", "nest_with_eggs": "🪺", "empty_nest": "🪹", "mushroom": "🍄", "brown_mushroom": "🍄‍🟫", "shell": "🐚", "spiral_shell": "🐚", "coral": "🪸", "rock": "🪨", "ear_of_rice": "🌾", "sheaf_of_rice": "🌾", "bouquet": "💐", "tulip": "🌷", "rose": "🌹", "wilted_rose": "🥀", "wilted_flower": "🥀", "hyacinth": "🪻", "lotus": "🪷", "hibiscus": "🌺", "cherry_blossom": "🌸", "blossom": "🌼", "sunflower": "🌻", "sun_with_face": "🌞", "full_moon_with_face": "🌝", "first_quarter_moon_with_face": "🌛", "last_quarter_moon_with_face": "🌜", "new_moon_with_face": "🌚", "new_moon_face": "🌚", "full_moon": "🌕", "waning_gibbous_moon": "🌖", "last_quarter_moon": "🌗", "waning_crescent_moon": "🌘", "new_moon": "🌑", "waxing_crescent_moon": "🌒", "first_quarter_moon": "🌓", "waxing_gibbous_moon": "🌔", "crescent_moon": "🌙", "earth_americas": "🌎", "earth_africa": "🌍", "earth_asia": "🌏", "ringed_planet": "🪐", "dizzy": "💫", "star": "⭐", "star2": "🌟", "glowing_star": "🌟", "sparkles": "✨", "zap": "⚡", "high_voltage": "⚡", "comet": "☄️", "boom": "💥", "collision": "💥", "fire": "🔥", "flame": "🔥", "cloud_tornado": "🌪️", "cloud_with_tornado": "🌪️", "tornado": "🌪️", "rainbow": "🌈", "sunny": "☀️", "sun": "☀️", "white_sun_small_cloud": "🌤️", "white_sun_with_small_cloud": "🌤️", "partly_sunny": "⛅", "white_sun_cloud": "🌥️", "white_sun_behind_cloud": "🌥️", "cloud": "☁️", "white_sun_rain_cloud": "🌦️", "white_sun_behind_cloud_with_rain": "🌦️", "cloud_rain": "🌧️", "cloud_with_rain": "🌧️", "thunder_cloud_rain": "⛈️", "thunder_cloud_and_rain": "⛈️", "cloud_lightning": "🌩️", "cloud_with_lightning": "🌩️", "cloud_snow": "🌨️", "cloud_with_snow": "🌨️", "snowflake": "❄️", "snowman2": "☃️", "snowman": "⛄", "wind_blowing_face": "🌬️", "wind_face": "🌬️", "dash": "💨", "dashing_away": "💨", "droplet": "💧", "sweat_drops": "💦", "bubbles": "🫧", "umbrella": "☔", "umbrella2": "☂️", "ocean": "🌊", "water_wave": "🌊", "fog": "🌫️", "green_apple": "🍏", "apple": "🍎", "red_apple": "🍎", "pear": "🍐", "tangerine": "🍊", "lemon": "🍋", "lime": "🍋‍🟩", "banana": "🍌", "watermelon": "🍉", "grapes": "🍇", "strawberry": "🍓", "blueberries": "🫐", "melon": "🍈", "cherries": "🍒", "peach": "🍑", "mango": "🥭", "pineapple": "🍍", "coconut": "🥥", "kiwi": "🥝", "kiwifruit": "🥝", "kiwi_fruit": "🥝", "tomato": "🍅", "eggplant": "🍆", "avocado": "🥑", "pea_pod": "🫛", "broccoli": "🥦", "leafy_green": "🥬", "cucumber": "🥒", "hot_pepper": "🌶️", "bell_pepper": "🫑", "corn": "🌽", "ear_of_corn": "🌽", "carrot": "🥕", "olive": "🫒", "garlic": "🧄", "onion": "🧅", "potato": "🥔", "sweet_potato": "🍠", "ginger_root": "🫚", "croissant": "🥐", "bagel": "🥯", "bread": "🍞", "french_bread": "🥖", "baguette_bread": "🥖", "pretzel": "🥨", "cheese": "🧀", "cheese_wedge": "🧀", "egg": "🥚", "cooking": "🍳", "butter": "🧈", "pancakes": "🥞", "waffle": "🧇", "bacon": "🥓", "cut_of_meat": "🥩", "poultry_leg": "🍗", "meat_on_bone": "🍖", "bone": "🦴", "hotdog": "🌭", "hot_dog": "🌭", "hamburger": "🍔", "fries": "🍟", "french_fries": "🍟", "pizza": "🍕", "flatbread": "🫓", "sandwich": "🥪", "stuffed_flatbread": "🥙", "stuffed_pita": "🥙", "falafel": "🧆", "taco": "🌮", "burrito": "🌯", "tamale": "🫔", "salad": "🥗", "green_salad": "🥗", "shallow_pan_of_food": "🥘", "paella": "🥘", "fondue": "🫕", "canned_food": "🥫", "jar": "🫙", "spaghetti": "🍝", "ramen": "🍜", "steaming_bowl": "🍜", "stew": "🍲", "pot_of_food": "🍲", "curry": "🍛", "curry_rice": "🍛", "sushi": "🍣", "bento": "🍱", "bento_box": "🍱", "dumpling": "🥟", "oyster": "🦪", "fried_shrimp": "🍤", "rice_ball": "🍙", "rice": "🍚", "cooked_rice": "🍚", "rice_cracker": "🍘", "fish_cake": "🍥", "fortune_cookie": "🥠", "moon_cake": "🥮", "oden": "🍢", "dango": "🍡", "shaved_ice": "🍧", "ice_cream": "🍨", "icecream": "🍦", "pie": "🥧", "cupcake": "🧁", "cake": "🍰", "shortcake": "🍰", "birthday": "🎂", "birthday_cake": "🎂", "custard": "🍮", "pudding": "🍮", "flan": "🍮", "lollipop": "🍭", "candy": "🍬", "chocolate_bar": "🍫", "popcorn": "🍿", "doughnut": "🍩", "cookie": "🍪", "chestnut": "🌰", "peanuts": "🥜", "shelled_peanut": "🥜", "beans": "🫘", "honey_pot": "🍯", "milk": "🥛", "glass_of_milk": "🥛", "pouring_liquid": "🫗", "baby_bottle": "🍼", "teapot": "🫖", "coffee": "☕", "hot_beverage": "☕", "tea": "🍵", "mate": "🧉", "beverage_box": "🧃", "cup_with_straw": "🥤", "bubble_tea": "🧋", "sake": "🍶", "beer": "🍺", "beer_mug": "🍺", "beers": "🍻", "champagne_glass": "🥂", "clinking_glass": "🥂", "wine_glass": "🍷", "tumbler_glass": "🥃", "whisky": "🥃", "cocktail": "🍸", "tropical_drink": "🍹", "champagne": "🍾", "bottle_with_popping_cork": "🍾", "ice_cube": "🧊", "spoon": "🥄", "fork_and_knife": "🍴", "fork_knife_plate": "🍽️", "fork_and_knife_with_plate": "🍽️", "bowl_with_spoon": "🥣", "takeout_box": "🥡", "chopsticks": "🥢", "salt": "🧂", "soccer": "⚽", "soccer_ball": "⚽", "basketball": "🏀", "football": "🏈", "baseball": "⚾", "softball": "🥎", "tennis": "🎾", "volleyball": "🏐", "rugby_football": "🏉", "flying_disc": "🥏", "8ball": "🎱", "yo_yo": "🪀", "ping_pong": "🏓", "table_tennis": "🏓", "badminton": "🏸", "hockey": "🏒", "ice_hockey": "🏒", "field_hockey": "🏑", "lacrosse": "🥍", "cricket_game": "🏏", "cricket_bat_ball": "🏏", "boomerang": "🪃", "goal": "🥅", "goal_net": "🥅", "golf": "⛳", "flag_in_hole": "⛳", "kite": "🪁", "playground_slide": "🛝", "bow_and_arrow": "🏹", "archery": "🏹", "fishing_pole_and_fish": "🎣", "fishing_pole": "🎣", "diving_mask": "🤿", "boxing_glove": "🥊", "boxing_gloves": "🥊", "martial_arts_uniform": "🥋", "karate_uniform": "🥋", "running_shirt_with_sash": "🎽", "running_shirt": "🎽", "skateboard": "🛹", "roller_skate": "🛼", "sled": "🛷", "ice_skate": "⛸️", "curling_stone": "🥌", "ski": "🎿", "skis": "🎿", "skier": "⛷️", "snowboarder": "🏂", "parachute": "🪂", "person_lifting_weights": "🏋️", "lifter": "🏋️", "weight_lifter": "🏋️", "woman_lifting_weights": "🏋️‍♀️", "man_lifting_weights": "🏋️‍♂️", "people_wrestling": "🤼", "wrestlers": "🤼", "wrestling": "🤼", "women_wrestling": "🤼‍♀️", "men_wrestling": "🤼‍♂️", "person_doing_cartwheel": "🤸", "cartwheel": "🤸", "woman_cartwheeling": "🤸‍♀️", "man_cartwheeling": "🤸‍♂️", "person_bouncing_ball": "⛹️", "basketball_player": "⛹️", "person_with_ball": "⛹️", "woman_bouncing_ball": "⛹️‍♀️", "man_bouncing_ball": "⛹️‍♂️", "person_fencing": "🤺", "fencer": "🤺", "fencing": "🤺", "person_playing_handball": "🤾", "handball": "🤾", "woman_playing_handball": "🤾‍♀️", "man_playing_handball": "🤾‍♂️", "person_golfing": "🏌️", "golfer": "🏌️", "woman_golfing": "🏌️‍♀️", "man_golfing": "🏌️‍♂️", "horse_racing": "🏇", "person_in_lotus_position": "🧘", "woman_in_lotus_position": "🧘‍♀️", "man_in_lotus_position": "🧘‍♂️", "person_surfing": "🏄", "surfer": "🏄", "woman_surfing": "🏄‍♀️", "man_surfing": "🏄‍♂️", "person_swimming": "🏊", "swimmer": "🏊", "woman_swimming": "🏊‍♀️", "man_swimming": "🏊‍♂️", "person_playing_water_polo": "🤽", "water_polo": "🤽", "woman_playing_water_polo": "🤽‍♀️", "man_playing_water_polo": "🤽‍♂️", "person_rowing_boat": "🚣", "rowboat": "🚣", "woman_rowing_boat": "🚣‍♀️", "man_rowing_boat": "🚣‍♂️", "person_climbing": "🧗", "woman_climbing": "🧗‍♀️", "man_climbing": "🧗‍♂️", "person_mountain_biking": "🚵", "mountain_bicyclist": "🚵", "woman_mountain_biking": "🚵‍♀️", "man_mountain_biking": "🚵‍♂️", "person_biking": "🚴", "bicyclist": "🚴", "woman_biking": "🚴‍♀️", "man_biking": "🚴‍♂️", "trophy": "🏆", "first_place": "🥇", "first_place_medal": "🥇", "second_place": "🥈", "second_place_medal": "🥈", "third_place": "🥉", "third_place_medal": "🥉", "medal": "🏅", "sports_medal": "🏅", "military_medal": "🎖️", "rosette": "🏵️", "reminder_ribbon": "🎗️", "ticket": "🎫", "tickets": "🎟️", "admission_tickets": "🎟️", "circus_tent": "🎪", "person_juggling": "🤹", "juggling": "🤹", "juggler": "🤹", "woman_juggling": "🤹‍♀️", "man_juggling": "🤹‍♂️", "performing_arts": "🎭", "ballet_shoes": "🩰", "art": "🎨", "clapper": "🎬", "clapper_board": "🎬", "microphone": "🎤", "headphones": "🎧", "headphone": "🎧", "musical_score": "🎼", "musical_keyboard": "🎹", "maracas": "🪇", "drum": "🥁", "drum_with_drumsticks": "🥁", "long_drum": "🪘", "saxophone": "🎷", "trumpet": "🎺", "accordion": "🪗", "guitar": "🎸", "banjo": "🪕", "violin": "🎻", "flute": "🪈", "game_die": "🎲", "chess_pawn": "♟️", "dart": "🎯", "direct_hit": "🎯", "bowling": "🎳", "video_game": "🎮", "slot_machine": "🎰", "jigsaw": "🧩", "puzzle_piece": "🧩", "red_car": "🚗", "automobile": "🚗", "taxi": "🚕", "blue_car": "🚙", "pickup_truck": "🛻", "minibus": "🚐", "bus": "🚌", "trolleybus": "🚎", "race_car": "🏎️", "racing_car": "🏎️", "police_car": "🚓", "ambulance": "🚑", "fire_engine": "🚒", "truck": "🚚", "articulated_lorry": "🚛", "tractor": "🚜", "probing_cane": "🦯", "manual_wheelchair": "🦽", "motorized_wheelchair": "🦼", "crutch": "🩼", "scooter": "🛴", "kick_scooter": "🛴", "bike": "🚲", "bicycle": "🚲", "motor_scooter": "🛵", "motorbike": "🛵", "motorcycle": "🏍️", "racing_motorcycle": "🏍️", "auto_rickshaw": "🛺", "wheel": "🛞", "rotating_light": "🚨", "oncoming_police_car": "🚔", "oncoming_bus": "🚍", "oncoming_automobile": "🚘", "oncoming_taxi": "🚖", "aerial_tramway": "🚡", "mountain_cableway": "🚠", "suspension_railway": "🚟", "railway_car": "🚃", "train": "🚋", "tram_car": "🚋", "mountain_railway": "🚞", "monorail": "🚝", "bullettrain_side": "🚄", "bullettrain_front": "🚅", "bullet_train": "🚅", "light_rail": "🚈", "steam_locomotive": "🚂", "locomotive": "🚂", "train2": "🚆", "metro": "🚇", "tram": "🚊", "station": "🚉", "airplane": "✈️", "airplane_departure": "🛫", "airplane_arriving": "🛬", "airplane_small": "🛩️", "small_airplane": "🛩️", "seat": "💺", "satellite_orbital": "🛰️", "rocket": "🚀", "flying_saucer": "🛸", "helicopter": "🚁", "canoe": "🛶", "kayak": "🛶", "sailboat": "⛵", "speedboat": "🚤", "motorboat": "🛥️", "motor_boat": "🛥️", "cruise_ship": "🛳️", "passenger_ship": "🛳️", "ferry": "⛴️", "ship": "🚢", "ring_buoy": "🛟", "anchor": "⚓", "hook": "🪝", "fuelpump": "⛽", "fuel_pump": "⛽", "construction": "🚧", "vertical_traffic_light": "🚦", "traffic_light": "🚥", "busstop": "🚏", "bus_stop": "🚏", "map": "🗺️", "world_map": "🗺️", "moyai": "🗿", "moai": "🗿", "statue_of_liberty": "🗽", "tokyo_tower": "🗼", "european_castle": "🏰", "castle": "🏰", "japanese_castle": "🏯", "stadium": "🏟️", "ferris_wheel": "🎡", "roller_coaster": "🎢", "carousel_horse": "🎠", "fountain": "⛲", "beach_umbrella": "⛱️", "umbrella_on_ground": "⛱️", "beach": "🏖️", "beach_with_umbrella": "🏖️", "island": "🏝️", "desert_island": "🏝️", "desert": "🏜️", "volcano": "🌋", "mountain": "⛰️", "mountain_snow": "🏔️", "snow_capped_mountain": "🏔️", "mount_fuji": "🗻", "camping": "🏕️", "tent": "⛺", "house": "🏠", "house_with_garden": "🏡", "homes": "🏘️", "house_buildings": "🏘️", "houses": "🏘️", "house_abandoned": "🏚️", "derelict_house_building": "🏚️", "hut": "🛖", "construction_site": "🏗️", "building_construction": "🏗️", "factory": "🏭", "office": "🏢", "department_store": "🏬", "post_office": "🏣", "european_post_office": "🏤", "hospital": "🏥", "bank": "🏦", "hotel": "🏨", "convenience_store": "🏪", "school": "🏫", "love_hotel": "🏩", "wedding": "💒", "classical_building": "🏛️", "church": "⛪", "mosque": "🕌", "synagogue": "🕍", "hindu_temple": "🛕", "kaaba": "🕋", "shinto_shrine": "⛩️", "railway_track": "🛤️", "railroad_track": "🛤️", "motorway": "🛣️", "japan": "🗾", "map_of_japan": "🗾", "rice_scene": "🎑", "park": "🏞️", "national_park": "🏞️", "sunrise": "🌅", "sunrise_over_mountains": "🌄", "stars": "🌠", "shooting_star": "🌠", "sparkler": "🎇", "fireworks": "🎆", "city_sunset": "🌇", "city_sunrise": "🌇", "sunset": "🌇", "city_dusk": "🌆", "cityscape": "🏙️", "night_with_stars": "🌃", "milky_way": "🌌", "bridge_at_night": "🌉", "foggy": "🌁", "watch": "⌚", "mobile_phone": "📱", "iphone": "📱", "calling": "📲", "computer": "💻", "keyboard": "⌨️", "desktop": "🖥️", "desktop_computer": "🖥️", "printer": "🖨️", "mouse_three_button": "🖱️", "three_button_mouse": "🖱️", "trackball": "🖲️", "joystick": "🕹️", "compression": "🗜️", "clamp": "🗜️", "minidisc": "💽", "computer_disk": "💽", "floppy_disk": "💾", "cd": "💿", "optical_disk": "💿", "dvd": "📀", "vhs": "📼", "videocassette": "📼", "camera": "📷", "camera_with_flash": "📸", "video_camera": "📹", "movie_camera": "🎥", "projector": "📽️", "film_projector": "📽️", "film_frames": "🎞️", "telephone_receiver": "📞", "telephone": "☎️", "pager": "📟", "fax": "📠", "fax_machine": "📠", "tv": "📺", "television": "📺", "radio": "📻", "microphone2": "🎙️", "studio_microphone": "🎙️", "level_slider": "🎚️", "control_knobs": "🎛️", "compass": "🧭", "stopwatch": "⏱️", "timer": "⏲️", "timer_clock": "⏲️", "alarm_clock": "⏰", "clock": "🕰️", "mantlepiece_clock": "🕰️", "hourglass": "⌛", "hourglass_flowing_sand": "⏳", "satellite": "📡", "battery": "🔋", "low_battery": "🪫", "electric_plug": "🔌", "bulb": "💡", "light_bulb": "💡", "flashlight": "🔦", "candle": "🕯️", "diya_lamp": "🪔", "fire_extinguisher": "🧯", "oil": "🛢️", "oil_drum": "🛢️", "money_with_wings": "💸", "dollar": "💵", "yen": "💴", "yen_banknote": "💴", "euro": "💶", "euro_banknote": "💶", "pound": "💷", "coin": "🪙", "moneybag": "💰", "money_bag": "💰", "credit_card": "💳", "identification_card": "🪪", "gem": "💎", "gem_stone": "💎", "scales": "⚖️", "balance_scale": "⚖️", "ladder": "🪜", "toolbox": "🧰", "screwdriver": "🪛", "wrench": "🔧", "hammer": "🔨", "hammer_pick": "⚒️", "hammer_and_pick": "⚒️", "tools": "🛠️", "hammer_and_wrench": "🛠️", "pick": "⛏️", "carpentry_saw": "🪚", "nut_and_bolt": "🔩", "gear": "⚙️", "mouse_trap": "🪤", "bricks": "🧱", "brick": "🧱", "chains": "⛓️", "link": "🔗", "broken_chain": "⛓️‍💥", "magnet": "🧲", "gun": "🔫", "pistol": "🔫", "bomb": "💣", "firecracker": "🧨", "axe": "🪓", "knife": "🔪", "kitchen_knife": "🔪", "dagger": "🗡️", "dagger_knife": "🗡️", "crossed_swords": "⚔️", "shield": "🛡️", "smoking": "🚬", "cigarette": "🚬", "coffin": "⚰️", "headstone": "🪦", "urn": "⚱️", "funeral_urn": "⚱️", "amphora": "🏺", "crystal_ball": "🔮", "prayer_beads": "📿", "nazar_amulet": "🧿", "hamsa": "🪬", "barber": "💈", "barber_pole": "💈", "alembic": "⚗️", "telescope": "🔭", "microscope": "🔬", "hole": "🕳️", "x_ray": "🩻", "adhesive_bandage": "🩹", "stethoscope": "🩺", "pill": "💊", "syringe": "💉", "drop_of_blood": "🩸", "dna": "🧬", "microbe": "🦠", "petri_dish": "🧫", "test_tube": "🧪", "thermometer": "🌡️", "broom": "🧹", "plunger": "🪠", "basket": "🧺", "roll_of_paper": "🧻", "toilet": "🚽", "potable_water": "🚰", "shower": "🚿", "bathtub": "🛁", "bath": "🛀", "soap": "🧼", "toothbrush": "🪥", "razor": "🪒", "hair_pick": "🪮", "sponge": "🧽", "bucket": "🪣", "squeeze_bottle": "🧴", "lotion_bottle": "🧴", "bellhop": "🛎️", "bellhop_bell": "🛎️", "key": "🔑", "key2": "🗝️", "old_key": "🗝️", "door": "🚪", "chair": "🪑", "couch": "🛋️", "couch_and_lamp": "🛋️", "bed": "🛏️", "sleeping_accommodation": "🛌", "person_in_bed": "🛌", "teddy_bear": "🧸", "nesting_dolls": "🪆", "frame_photo": "🖼️", "frame_with_picture": "🖼️", "mirror": "🪞", "window": "🪟", "shopping_bags": "🛍️", "shopping_cart": "🛒", "shopping_trolley": "🛒", "gift": "🎁", "wrapped_gift": "🎁", "balloon": "🎈", "flags": "🎏", "carp_streamer": "🎏", "ribbon": "🎀", "magic_wand": "🪄", "piñata": "🪅", "confetti_ball": "🎊", "tada": "🎉", "party_popper": "🎉", "dolls": "🎎", "folding_hand_fan": "🪭", "izakaya_lantern": "🏮", "wind_chime": "🎐", "mirror_ball": "🪩", "red_envelope": "🧧", "envelope": "✉️", "envelope_with_arrow": "📩", "incoming_envelope": "📨", "e_mail": "📧", "email": "📧", "love_letter": "💌", "inbox_tray": "📥", "outbox_tray": "📤", "package": "📦", "label": "🏷️", "placard": "🪧", "mailbox_closed": "📪", "mailbox": "📫", "mailbox_with_mail": "📬", "mailbox_with_no_mail": "📭", "postbox": "📮", "postal_horn": "📯", "scroll": "📜", "page_with_curl": "📃", "page_facing_up": "📄", "bookmark_tabs": "📑", "receipt": "🧾", "bar_chart": "📊", "chart_with_upwards_trend": "📈", "chart_with_downwards_trend": "📉", "notepad_spiral": "🗒️", "spiral_note_pad": "🗒️", "calendar_spiral": "🗓️", "spiral_calendar_pad": "🗓️", "calendar": "📆", "date": "📅", "wastebasket": "🗑️", "card_index": "📇", "card_box": "🗃️", "card_file_box": "🗃️", "ballot_box": "🗳️", "ballot_box_with_ballot": "🗳️", "file_cabinet": "🗄️", "clipboard": "📋", "file_folder": "📁", "open_file_folder": "📂", "dividers": "🗂️", "card_index_dividers": "🗂️", "newspaper2": "🗞️", "rolled_up_newspaper": "🗞️", "newspaper": "📰", "notebook": "📓", "notebook_with_decorative_cover": "📔", "ledger": "📒", "closed_book": "📕", "green_book": "📗", "blue_book": "📘", "orange_book": "📙", "books": "📚", "book": "📖", "open_book": "📖", "bookmark": "🔖", "safety_pin": "🧷", "paperclip": "📎", "paperclips": "🖇️", "linked_paperclips": "🖇️", "triangular_ruler": "📐", "straight_ruler": "📏", "abacus": "🧮", "pushpin": "📌", "round_pushpin": "📍", "scissors": "✂️", "pen_ballpoint": "🖊️", "lower_left_ballpoint_pen": "🖊️", "pen": "🖊️", "pen_fountain": "🖋️", "lower_left_fountain_pen": "🖋️", "fountain_pen": "🖋️", "black_nib": "✒️", "paintbrush": "🖌️", "lower_left_paintbrush": "🖌️", "crayon": "🖍️", "lower_left_crayon": "🖍️", "pencil": "📝", "memo": "📝", "pencil2": "✏️", "mag": "🔍", "mag_right": "🔎", "lock_with_ink_pen": "🔏", "closed_lock_with_key": "🔐", "lock": "🔒", "locked": "🔒", "unlock": "🔓", "unlocked": "🔓", "pink_heart": "🩷", "heart": "❤️", "red_heart": "❤️", "orange_heart": "🧡", "yellow_heart": "💛", "green_heart": "💚", "light_blue_heart": "🩵", "blue_heart": "💙", "purple_heart": "💜", "black_heart": "🖤", "grey_heart": "🩶", "white_heart": "🤍", "brown_heart": "🤎", "broken_heart": "💔", "heart_exclamation": "❣️", "heavy_heart_exclamation_mark_ornament": "❣️", "two_hearts": "💕", "revolving_hearts": "💞", "heartbeat": "💓", "beating_heart": "💓", "heartpulse": "💗", "growing_heart": "💗", "sparkling_heart": "💖", "cupid": "💘", "gift_heart": "💝", "mending_heart": "❤️‍🩹", "heart_on_fire": "❤️‍🔥", "heart_decoration": "💟", "peace": "☮️", "peace_symbol": "☮️", "cross": "✝️", "latin_cross": "✝️", "star_and_crescent": "☪️", "om_symbol": "🕉️", "wheel_of_dharma": "☸️", "khanda": "🪯", "star_of_david": "✡️", "six_pointed_star": "🔯", "menorah": "🕎", "yin_yang": "☯️", "orthodox_cross": "☦️", "place_of_worship": "🛐", "worship_symbol": "🛐", "ophiuchus": "⛎", "aries": "♈", "taurus": "♉", "gemini": "♊", "cancer": "♋", "leo": "♌", "virgo": "♍", "libra": "♎", "scorpius": "♏", "scorpio": "♏", "sagittarius": "♐", "capricorn": "♑", "aquarius": "♒", "pisces": "♓", "id": "🆔", "atom": "⚛️", "atom_symbol": "⚛️", "accept": "🉑", "radioactive": "☢️", "radioactive_sign": "☢️", "biohazard": "☣️", "biohazard_sign": "☣️", "mobile_phone_off": "📴", "vibration_mode": "📳", "u6709": "🈶", "u7121": "🈚", "u7533": "🈸", "u55b6": "🈺", "u6708": "🈷️", "eight_pointed_black_star": "✴️", "vs": "🆚", "white_flower": "💮", "ideograph_advantage": "🉐", "secret": "㊙️", "congratulations": "㊗️", "u5408": "🈴", "u6e80": "🈵", "u5272": "🈹", "u7981": "🈲", "a": "🅰️", "b": "🅱️", "ab": "🆎", "cl": "🆑", "o2": "🅾️", "sos": "🆘", "x": "❌", "cross_mark": "❌", "o": "⭕", "octagonal_sign": "🛑", "stop_sign": "🛑", "no_entry": "⛔", "name_badge": "📛", "no_entry_sign": "🚫", "prohibited": "🚫", "100": "💯", "anger": "💢", "hotsprings": "♨️", "hot_springs": "♨️", "no_pedestrians": "🚷", "do_not_litter": "🚯", "no_littering": "🚯", "no_bicycles": "🚳", "non_potable_water": "🚱", "underage": "🔞", "no_mobile_phones": "📵", "no_smoking": "🚭", "exclamation": "❗", "grey_exclamation": "❕", "question": "❓", "question_mark": "❓", "grey_question": "❔", "bangbang": "‼️", "interrobang": "⁉️", "low_brightness": "🔅", "high_brightness": "🔆", "part_alternation_mark": "〽️", "warning": "⚠️", "children_crossing": "🚸", "trident": "🔱", "fleur_de_lis": "⚜️", "beginner": "🔰", "recycle": "♻️", "white_check_mark": "✅", "u6307": "🈯", "chart": "💹", "sparkle": "❇️", "eight_spoked_asterisk": "✳️", "negative_squared_cross_mark": "❎", "globe_with_meridians": "🌐", "diamond_shape_with_a_dot_inside": "💠", "m": "Ⓜ️", "circled_m": "Ⓜ️", "cyclone": "🌀", "zzz": "💤", "atm": "🏧", "wc": "🚾", "water_closet": "🚾", "wheelchair": "♿", "parking": "🅿️", "elevator": "🛗", "u7a7a": "🈳", "sa": "🈂️", "passport_control": "🛂", "customs": "🛃", "baggage_claim": "🛄", "left_luggage": "🛅", "wireless": "🛜", "mens": "🚹", "mens_room": "🚹", "womens": "🚺", "womens_room": "🚺", "baby_symbol": "🚼", "restroom": "🚻", "put_litter_in_its_place": "🚮", "cinema": "🎦", "signal_strength": "📶", "antenna_bars": "📶", "koko": "🈁", "symbols": "🔣", "input_symbols": "🔣", "information_source": "ℹ️", "information": "ℹ️", "abc": "🔤", "abcd": "🔡", "capital_abcd": "🔠", "ng": "🆖", "ok": "🆗", "up": "🆙", "cool": "🆒", "new": "🆕", "free": "🆓", "zero": "0️⃣", "number_0": "0️⃣", "one": "1️⃣", "number_1": "1️⃣", "two": "2️⃣", "number_2": "2️⃣", "three": "3️⃣", "number_3": "3️⃣", "four": "4️⃣", "number_4": "4️⃣", "five": "5️⃣", "number_5": "5️⃣", "six": "6️⃣", "number_6": "6️⃣", "seven": "7️⃣", "number_7": "7️⃣", "eight": "8️⃣", "number_8": "8️⃣", "nine": "9️⃣", "number_9": "9️⃣", "keycap_ten": "🔟", "number_10": "🔟", "1234": "🔢", "input_numbers": "🔢", "hash": "#️⃣", "asterisk": "*️⃣", "keycap_asterisk": "*️⃣", "eject": "⏏️", "eject_symbol": "⏏️", "arrow_forward": "▶️", "pause_button": "⏸️", "double_vertical_bar": "⏸️", "play_pause": "⏯️", "stop_button": "⏹️", "record_button": "⏺️", "track_next": "⏭️", "next_track": "⏭️", "track_previous": "⏮️", "previous_track": "⏮️", "fast_forward": "⏩", "rewind": "⏪", "arrow_double_up": "⏫", "arrow_double_down": "⏬", "arrow_backward": "◀️", "arrow_up_small": "🔼", "arrow_down_small": "🔽", "arrow_right": "➡️", "right_arrow": "➡️", "arrow_left": "⬅️", "left_arrow": "⬅️", "arrow_up": "⬆️", "up_arrow": "⬆️", "arrow_down": "⬇️", "down_arrow": "⬇️", "arrow_upper_right": "↗️", "arrow_lower_right": "↘️", "arrow_lower_left": "↙️", "arrow_upper_left": "↖️", "up_left_arrow": "↖️", "arrow_up_down": "↕️", "up_down_arrow": "↕️", "left_right_arrow": "↔️", "arrow_right_hook": "↪️", "leftwards_arrow_with_hook": "↩️", "arrow_heading_up": "⤴️", "arrow_heading_down": "⤵️", "twisted_rightwards_arrows": "🔀", "repeat": "🔁", "repeat_one": "🔂", "arrows_counterclockwise": "🔄", "arrows_clockwise": "🔃", "musical_note": "🎵", "notes": "🎶", "musical_notes": "🎶", "heavy_plus_sign": "➕", "heavy_minus_sign": "➖", "heavy_division_sign": "➗", "heavy_multiplication_x": "✖️", "heavy_equals_sign": "🟰", "infinity": "♾️", "heavy_dollar_sign": "💲", "currency_exchange": "💱", "tm": "™", "trade_mark": "™", "copyright": "©", "c": "©", "registered": "®", "r": "®", "wavy_dash": "〰️", "curly_loop": "➰", "loop": "➿", "end": "🔚", "end_arrow": "🔚", "back": "🔙", "back_arrow": "🔙", "on": "🔛", "on_arrow": "🔛", "top": "🔝", "top_arrow": "🔝", "soon": "🔜", "soon_arrow": "🔜", "heavy_check_mark": "✔️", "check_mark": "✔️", "ballot_box_with_check": "☑️", "radio_button": "🔘", "white_circle": "⚪", "black_circle": "⚫", "red_circle": "🔴", "blue_circle": "🔵", "brown_circle": "🟤", "purple_circle": "🟣", "green_circle": "🟢", "yellow_circle": "🟡", "orange_circle": "🟠", "small_red_triangle": "🔺", "small_red_triangle_down": "🔻", "small_orange_diamond": "🔸", "small_blue_diamond": "🔹", "large_orange_diamond": "🔶", "large_blue_diamond": "🔷", "white_square_button": "🔳", "black_square_button": "🔲", "black_small_square": "▪️", "white_small_square": "▫️", "black_medium_small_square": "◾", "white_medium_small_square": "◽", "black_medium_square": "◼️", "white_medium_square": "◻️", "black_large_square": "⬛", "white_large_square": "⬜", "orange_square": "🟧", "blue_square": "🟦", "red_square": "🟥", "brown_square": "🟫", "purple_square": "🟪", "green_square": "🟩", "yellow_square": "🟨", "speaker": "🔈", "mute": "🔇", "muted_speaker": "🔇", "sound": "🔉", "loud_sound": "🔊", "bell": "🔔", "no_bell": "🔕", "mega": "📣", "megaphone": "📣", "loudspeaker": "📢", "speech_left": "🗨️", "left_speech_bubble": "🗨️", "eye_in_speech_bubble": "👁‍🗨", "speech_balloon": "💬", "thought_balloon": "💭", "anger_right": "🗯️", "right_anger_bubble": "🗯️", "spades": "♠️", "spade_suit": "♠️", "clubs": "♣️", "club_suit": "♣️", "hearts": "♥️", "heart_suit": "♥️", "diamonds": "♦️", "diamond_suit": "♦️", "black_joker": "🃏", "joker": "🃏", "flower_playing_cards": "🎴", "mahjong": "🀄", "clock1": "🕐", "one_oclock": "🕐", "clock2": "🕑", "two_oclock": "🕑", "clock3": "🕒", "three_oclock": "🕒", "clock4": "🕓", "four_oclock": "🕓", "clock5": "🕔", "five_oclock": "🕔", "clock6": "🕕", "six_oclock": "🕕", "clock7": "🕖", "seven_oclock": "🕖", "clock8": "🕗", "eight_oclock": "🕗", "clock9": "🕘", "nine_oclock": "🕘", "clock10": "🕙", "ten_oclock": "🕙", "clock11": "🕚", "eleven_oclock": "🕚", "clock12": "🕛", "twelve_oclock": "🕛", "clock130": "🕜", "one_thirty": "🕜", "clock230": "🕝", "two_thirty": "🕝", "clock330": "🕞", "three_thirty": "🕞", "clock430": "🕟", "four_thirty": "🕟", "clock530": "🕠", "five_thirty": "🕠", "clock630": "🕡", "six_thirty": "🕡", "clock730": "🕢", "seven_thirty": "🕢", "clock830": "🕣", "eight_thirty": "🕣", "clock930": "🕤", "nine_thirty": "🕤", "clock1030": "🕥", "ten_thirty": "🕥", "clock1130": "🕦", "eleven_thirty": "🕦", "clock1230": "🕧", "twelve_thirty": "🕧", "female_sign": "♀️", "male_sign": "♂️", "transgender_symbol": "⚧", "medical_symbol": "⚕️", "regional_indicator_z": "🇿", "regional_indicator_y": "🇾", "regional_indicator_x": "🇽", "regional_indicator_w": "🇼", "regional_indicator_v": "🇻", "regional_indicator_u": "🇺", "regional_indicator_t": "🇹", "regional_indicator_s": "🇸", "regional_indicator_r": "🇷", "regional_indicator_q": "🇶", "regional_indicator_p": "🇵", "regional_indicator_o": "🇴", "regional_indicator_n": "🇳", "regional_indicator_m": "🇲", "regional_indicator_l": "🇱", "regional_indicator_k": "🇰", "regional_indicator_j": "🇯", "regional_indicator_i": "🇮", "regional_indicator_h": "🇭", "regional_indicator_g": "🇬", "regional_indicator_f": "🇫", "regional_indicator_e": "🇪", "regional_indicator_d": "🇩", "regional_indicator_c": "🇨", "regional_indicator_b": "🇧", "regional_indicator_a": "🇦", "flag_white": "🏳️", "flag_black": "🏴", "pirate_flag": "🏴‍☠️", "checkered_flag": "🏁", "triangular_flag_on_post": "🚩", "rainbow_flag": "🏳️‍🌈", "gay_pride_flag": "🏳️‍🌈", "transgender_flag": "🏳️‍⚧️", "united_nations": "🇺🇳", "flag_af": "🇦🇫", "flag_ax": "🇦🇽", "flag_al": "🇦🇱", "flag_dz": "🇩🇿", "flag_as": "🇦🇸", "flag_ad": "🇦🇩", "flag_ao": "🇦🇴", "flag_ai": "🇦🇮", "flag_aq": "🇦🇶", "flag_ag": "🇦🇬", "flag_ar": "🇦🇷", "flag_am": "🇦🇲", "flag_aw": "🇦🇼", "flag_au": "🇦🇺", "flag_at": "🇦🇹", "flag_az": "🇦🇿", "flag_bs": "🇧🇸", "flag_bh": "🇧🇭", "flag_bd": "🇧🇩", "flag_bb": "🇧🇧", "flag_by": "🇧🇾", "flag_be": "🇧🇪", "flag_bz": "🇧🇿", "flag_bj": "🇧🇯", "flag_bm": "🇧🇲", "flag_bt": "🇧🇹", "flag_bo": "🇧🇴", "flag_ba": "🇧🇦", "flag_bw": "🇧🇼", "flag_br": "🇧🇷", "flag_io": "🇮🇴", "flag_vg": "🇻🇬", "flag_bn": "🇧🇳", "flag_bg": "🇧🇬", "flag_bf": "🇧🇫", "flag_bi": "🇧🇮", "flag_kh": "🇰🇭", "flag_cm": "🇨🇲", "flag_ca": "🇨🇦", "flag_ic": "🇮🇨", "flag_cv": "🇨🇻", "flag_bq": "🇧🇶", "flag_ky": "🇰🇾", "flag_cf": "🇨🇫", "flag_td": "🇹🇩", "flag_cl": "🇨🇱", "flag_cn": "🇨🇳", "flag_cx": "🇨🇽", "flag_cc": "🇨🇨", "flag_co": "🇨🇴", "flag_km": "🇰🇲", "flag_cg": "🇨🇬", "flag_cd": "🇨🇩", "flag_ck": "🇨🇰", "flag_cr": "🇨🇷", "flag_ci": "🇨🇮", "flag_hr": "🇭🇷", "flag_cu": "🇨🇺", "flag_cw": "🇨🇼", "flag_cy": "🇨🇾", "flag_cz": "🇨🇿", "flag_dk": "🇩🇰", "flag_dj": "🇩🇯", "flag_dm": "🇩🇲", "flag_do": "🇩🇴", "flag_ec": "🇪🇨", "flag_eg": "🇪🇬", "flag_sv": "🇸🇻", "flag_gq": "🇬🇶", "flag_er": "🇪🇷", "flag_ee": "🇪🇪", "flag_et": "🇪🇹", "flag_eu": "🇪🇺", "flag_fk": "🇫🇰", "flag_fo": "🇫🇴", "flag_fj": "🇫🇯", "flag_fi": "🇫🇮", "flag_fr": "🇫🇷", "flag_gf": "🇬🇫", "flag_pf": "🇵🇫", "flag_tf": "🇹🇫", "flag_ga": "🇬🇦", "flag_gm": "🇬🇲", "flag_ge": "🇬🇪", "flag_de": "🇩🇪", "flag_gh": "🇬🇭", "flag_gi": "🇬🇮", "flag_gr": "🇬🇷", "flag_gl": "🇬🇱", "flag_gd": "🇬🇩", "flag_gp": "🇬🇵", "flag_gu": "🇬🇺", "flag_gt": "🇬🇹", "flag_gg": "🇬🇬", "flag_gn": "🇬🇳", "flag_gw": "🇬🇼", "flag_gy": "🇬🇾", "flag_ht": "🇭🇹", "flag_hn": "🇭🇳", "flag_hk": "🇭🇰", "flag_hu": "🇭🇺", "flag_is": "🇮🇸", "flag_in": "🇮🇳", "flag_id": "🇮🇩", "flag_ir": "🇮🇷", "flag_iq": "🇮🇶", "flag_ie": "🇮🇪", "flag_im": "🇮🇲", "flag_il": "🇮🇱", "flag_it": "🇮🇹", "flag_jm": "🇯🇲", "flag_jp": "🇯🇵", "crossed_flags": "🎌", "flag_je": "🇯🇪", "flag_jo": "🇯🇴", "flag_kz": "🇰🇿", "flag_ke": "🇰🇪", "flag_ki": "🇰🇮", "flag_xk": "🇽🇰", "flag_kw": "🇰🇼", "flag_kg": "🇰🇬", "flag_la": "🇱🇦", "flag_lv": "🇱🇻", "flag_lb": "🇱🇧", "flag_ls": "🇱🇸", "flag_lr": "🇱🇷", "flag_ly": "🇱🇾", "flag_li": "🇱🇮", "flag_lt": "🇱🇹", "flag_lu": "🇱🇺", "flag_mo": "🇲🇴", "flag_mk": "🇲🇰", "flag_mg": "🇲🇬", "flag_mw": "🇲🇼", "flag_my": "🇲🇾", "flag_mv": "🇲🇻", "flag_ml": "🇲🇱", "flag_mt": "🇲🇹", "flag_mh": "🇲🇭", "flag_mq": "🇲🇶", "flag_mr": "🇲🇷", "flag_mu": "🇲🇺", "flag_yt": "🇾🇹", "flag_mx": "🇲🇽", "flag_fm": "🇫🇲", "flag_md": "🇲🇩", "flag_mc": "🇲🇨", "flag_mn": "🇲🇳", "flag_me": "🇲🇪", "flag_ms": "🇲🇸", "flag_ma": "🇲🇦", "flag_mz": "🇲🇿", "flag_mm": "🇲🇲", "flag_na": "🇳🇦", "flag_nr": "🇳🇷", "flag_np": "🇳🇵", "flag_nl": "🇳🇱", "flag_nc": "🇳🇨", "flag_nz": "🇳🇿", "flag_ni": "🇳🇮", "flag_ne": "🇳🇪", "flag_ng": "🇳🇬", "flag_nu": "🇳🇺", "flag_nf": "🇳🇫", "flag_kp": "🇰🇵", "flag_mp": "🇲🇵", "flag_no": "🇳🇴", "flag_om": "🇴🇲", "flag_pk": "🇵🇰", "flag_pw": "🇵🇼", "flag_ps": "🇵🇸", "flag_pa": "🇵🇦", "flag_pg": "🇵🇬", "flag_py": "🇵🇾", "flag_pe": "🇵🇪", "flag_ph": "🇵🇭", "flag_pn": "🇵🇳", "flag_pl": "🇵🇱", "flag_pt": "🇵🇹", "flag_pr": "🇵🇷", "flag_qa": "🇶🇦", "flag_re": "🇷🇪", "flag_ro": "🇷🇴", "flag_ru": "🇷🇺", "flag_rw": "🇷🇼", "flag_ws": "🇼🇸", "flag_sm": "🇸🇲", "flag_st": "🇸🇹", "flag_sa": "🇸🇦", "flag_sn": "🇸🇳", "flag_rs": "🇷🇸", "flag_sc": "🇸🇨", "flag_sl": "🇸🇱", "flag_sg": "🇸🇬", "flag_sx": "🇸🇽", "flag_sk": "🇸🇰", "flag_si": "🇸🇮", "flag_gs": "🇬🇸", "flag_sb": "🇸🇧", "flag_so": "🇸🇴", "flag_za": "🇿🇦", "flag_kr": "🇰🇷", "flag_ss": "🇸🇸", "flag_es": "🇪🇸", "flag_lk": "🇱🇰", "flag_bl": "🇧🇱", "flag_sh": "🇸🇭", "flag_kn": "🇰🇳", "flag_lc": "🇱🇨", "flag_pm": "🇵🇲", "flag_vc": "🇻🇨", "flag_sd": "🇸🇩", "flag_sr": "🇸🇷", "flag_sz": "🇸🇿", "flag_se": "🇸🇪", "flag_ch": "🇨🇭", "flag_sy": "🇸🇾", "flag_tw": "🇹🇼", "flag_tj": "🇹🇯", "flag_tz": "🇹🇿", "flag_th": "🇹🇭", "flag_tl": "🇹🇱", "flag_tg": "🇹🇬", "flag_tk": "🇹🇰", "flag_to": "🇹🇴", "flag_tt": "🇹🇹", "flag_tn": "🇹🇳", "flag_tr": "🇹🇷", "flag_tm": "🇹🇲", "flag_tc": "🇹🇨", "flag_vi": "🇻🇮", "flag_tv": "🇹🇻", "flag_ug": "🇺🇬", "flag_ua": "🇺🇦", "flag_ae": "🇦🇪", "flag_gb": "🇬🇧", "england": "🏴󠁧󠁢󠁥󠁮󠁧󠁿", "scotland": "🏴󠁧󠁢󠁳󠁣󠁴󠁿", "wales": "🏴󠁧󠁢󠁷󠁬󠁳󠁿", "flag_us": "🇺🇸", "flag_uy": "🇺🇾", "flag_uz": "🇺🇿", "flag_vu": "🇻🇺", "flag_va": "🇻🇦", "flag_ve": "🇻🇪", "flag_vn": "🇻🇳", "flag_wf": "🇼🇫", "flag_eh": "🇪🇭", "flag_ye": "🇾🇪", "flag_zm": "🇿🇲", "flag_zw": "🇿🇼", "flag_ac": "🇦🇨", "flag_bv": "🇧🇻", "flag_cp": "🇨🇵", "flag_ea": "🇪🇦", "flag_dg": "🇩🇬", "flag_hm": "🇭🇲", "flag_mf": "🇲🇫", "flag_sj": "🇸🇯", "flag_ta": "🇹🇦", "flag_um": "🇺🇲", "handshake_tone1": "🤝🏻", "handshake_light_skin_tone": "🤝🏻", "handshake_tone1_tone2": "🫱🏻‍🫲🏼", "handshake_light_skin_tone_medium_light_skin_tone": "🫱🏻‍🫲🏼", "handshake_tone1_tone3": "🫱🏻‍🫲🏽", "handshake_light_skin_tone_medium_skin_tone": "🫱🏻‍🫲🏽", "handshake_tone1_tone4": "🫱🏻‍🫲🏾", "handshake_light_skin_tone_medium_dark_skin_tone": "🫱🏻‍🫲🏾", "handshake_tone1_tone5": "🫱🏻‍🫲🏿", "handshake_light_skin_tone_dark_skin_tone": "🫱🏻‍🫲🏿", "handshake_tone2_tone1": "🫱🏼‍🫲🏻", "handshake_medium_light_skin_tone_light_skin_tone": "🫱🏼‍🫲🏻", "handshake_tone2": "🤝🏼", "handshake_medium_light_skin_tone": "🤝🏼", "handshake_tone2_tone3": "🫱🏼‍🫲🏽", "handshake_medium_light_skin_tone_medium_skin_tone": "🫱🏼‍🫲🏽", "handshake_tone2_tone4": "🫱🏼‍🫲🏾", "handshake_medium_light_skin_tone_medium_dark_skin_tone": "🫱🏼‍🫲🏾", "handshake_tone2_tone5": "🫱🏼‍🫲🏿", "handshake_medium_light_skin_tone_dark_skin_tone": "🫱🏼‍🫲🏿", "handshake_tone3_tone1": "🫱🏽‍🫲🏻", "handshake_medium_skin_tone_light_skin_tone": "🫱🏽‍🫲🏻", "handshake_tone3_tone2": "🫱🏽‍🫲🏼", "handshake_medium_skin_tone_medium_light_skin_tone": "🫱🏽‍🫲🏼", "handshake_tone3": "🤝🏽", "handshake_medium_skin_tone": "🤝🏽", "handshake_tone3_tone4": "🫱🏽‍🫲🏾", "handshake_medium_skin_tone_medium_dark_skin_tone": "🫱🏽‍🫲🏾", "handshake_tone3_tone5": "🫱🏽‍🫲🏿", "handshake_medium_skin_tone_dark_skin_tone": "🫱🏽‍🫲🏿", "handshake_tone4_tone1": "🫱🏾‍🫲🏻", "handshake_medium_dark_skin_tone_light_skin_tone": "🫱🏾‍🫲🏻", "handshake_tone4_tone2": "🫱🏾‍🫲🏼", "handshake_medium_dark_skin_tone_medium_light_skin_tone": "🫱🏾‍🫲🏼", "handshake_tone4_tone3": "🫱🏾‍🫲🏽", "handshake_medium_dark_skin_tone_medium_skin_tone": "🫱🏾‍🫲🏽", "handshake_tone4": "🤝🏾", "handshake_medium_dark_skin_tone": "🤝🏾", "handshake_tone4_tone5": "🫱🏾‍🫲🏿", "handshake_medium_dark_skin_tone_dark_skin_tone": "🫱🏾‍🫲🏿", "handshake_tone5_tone1": "🫱🏿‍🫲🏻", "handshake_dark_skin_tone_light_skin_tone": "🫱🏿‍🫲🏻", "handshake_tone5_tone2": "🫱🏿‍🫲🏼", "handshake_dark_skin_tone_medium_light_skin_tone": "🫱🏿‍🫲🏼", "handshake_tone5_tone3": "🫱🏿‍🫲🏽", "handshake_dark_skin_tone_medium_skin_tone": "🫱🏿‍🫲🏽", "handshake_tone5_tone4": "🫱🏿‍🫲🏾", "handshake_dark_skin_tone_medium_dark_skin_tone": "🫱🏿‍🫲🏾", "handshake_tone5": "🤝🏿", "handshake_dark_skin_tone": "🤝🏿", "heart_hands_tone1": "🫶🏻", "heart_hands_light_skin_tone": "🫶🏻", "heart_hands_tone2": "🫶🏼", "heart_hands_medium_light_skin_tone": "🫶🏼", "heart_hands_tone3": "🫶🏽", "heart_hands_medium_skin_tone": "🫶🏽", "heart_hands_tone4": "🫶🏾", "heart_hands_medium_dark_skin_tone": "🫶🏾", "heart_hands_tone5": "🫶🏿", "heart_hands_dark_skin_tone": "🫶🏿", "palms_up_together_tone1": "🤲🏻", "palms_up_together_light_skin_tone": "🤲🏻", "palms_up_together_tone2": "🤲🏼", "palms_up_together_medium_light_skin_tone": "🤲🏼", "palms_up_together_tone3": "🤲🏽", "palms_up_together_medium_skin_tone": "🤲🏽", "palms_up_together_tone4": "🤲🏾", "palms_up_together_medium_dark_skin_tone": "🤲🏾", "palms_up_together_tone5": "🤲🏿", "palms_up_together_dark_skin_tone": "🤲🏿", "open_hands_tone1": "👐🏻", "open_hands_tone2": "👐🏼", "open_hands_tone3": "👐🏽", "open_hands_tone4": "👐🏾", "open_hands_tone5": "👐🏿", "raised_hands_tone1": "🙌🏻", "raised_hands_tone2": "🙌🏼", "raised_hands_tone3": "🙌🏽", "raised_hands_tone4": "🙌🏾", "raised_hands_tone5": "🙌🏿", "clap_tone1": "👏🏻", "clap_tone2": "👏🏼", "clap_tone3": "👏🏽", "clap_tone4": "👏🏾", "clap_tone5": "👏🏿", "thumbsup_tone1": "👍🏻", "+1_tone1": "👍🏻", "thumbup_tone1": "👍🏻", "thumbsup_tone2": "👍🏼", "+1_tone2": "👍🏼", "thumbup_tone2": "👍🏼", "thumbsup_tone3": "👍🏽", "+1_tone3": "👍🏽", "thumbup_tone3": "👍🏽", "thumbsup_tone4": "👍🏾", "+1_tone4": "👍🏾", "thumbup_tone4": "👍🏾", "thumbsup_tone5": "👍🏿", "+1_tone5": "👍🏿", "thumbup_tone5": "👍🏿", "thumbsdown_tone1": "👎🏻", "_1_tone1": "👎🏻", "thumbdown_tone1": "👎🏻", "thumbsdown_tone2": "👎🏼", "_1_tone2": "👎🏼", "thumbdown_tone2": "👎🏼", "thumbsdown_tone3": "👎🏽", "_1_tone3": "👎🏽", "thumbdown_tone3": "👎🏽", "thumbsdown_tone4": "👎🏾", "_1_tone4": "👎🏾", "thumbdown_tone4": "👎🏾", "thumbsdown_tone5": "👎🏿", "_1_tone5": "👎🏿", "thumbdown_tone5": "👎🏿", "punch_tone1": "👊🏻", "punch_tone2": "👊🏼", "punch_tone3": "👊🏽", "punch_tone4": "👊🏾", "punch_tone5": "👊🏿", "fist_tone1": "✊🏻", "fist_tone2": "✊🏼", "fist_tone3": "✊🏽", "fist_tone4": "✊🏾", "fist_tone5": "✊🏿", "left_facing_fist_tone1": "🤛🏻", "left_fist_tone1": "🤛🏻", "left_facing_fist_tone2": "🤛🏼", "left_fist_tone2": "🤛🏼", "left_facing_fist_tone3": "🤛🏽", "left_fist_tone3": "🤛🏽", "left_facing_fist_tone4": "🤛🏾", "left_fist_tone4": "🤛🏾", "left_facing_fist_tone5": "🤛🏿", "left_fist_tone5": "🤛🏿", "right_facing_fist_tone1": "🤜🏻", "right_fist_tone1": "🤜🏻", "right_facing_fist_tone2": "🤜🏼", "right_fist_tone2": "🤜🏼", "right_facing_fist_tone3": "🤜🏽", "right_fist_tone3": "🤜🏽", "right_facing_fist_tone4": "🤜🏾", "right_fist_tone4": "🤜🏾", "right_facing_fist_tone5": "🤜🏿", "right_fist_tone5": "🤜🏿", "leftwards_pushing_hand_tone1": "🫷🏻", "leftwards_pushing_hand_light_skin_tone": "🫷🏻", "leftwards_pushing_hand_tone2": "🫷🏼", "leftwards_pushing_hand_medium_light_skin_tone": "🫷🏼", "leftwards_pushing_hand_tone3": "🫷🏽", "leftwards_pushing_hand_medium_skin_tone": "🫷🏽", "leftwards_pushing_hand_tone4": "🫷🏾", "leftwards_pushing_hand_medium_dark_skin_tone": "🫷🏾", "leftwards_pushing_hand_tone5": "🫷🏿", "leftwards_pushing_hand_dark_skin_tone": "🫷🏿", "rightwards_pushing_hand_tone1": "🫸🏻", "rightwards_pushing_hand_light_skin_tone": "🫸🏻", "rightwards_pushing_hand_tone2": "🫸🏼", "rightwards_pushing_hand_medium_light_skin_tone": "🫸🏼", "rightwards_pushing_hand_tone3": "🫸🏽", "rightwards_pushing_hand_medium_skin_tone": "🫸🏽", "rightwards_pushing_hand_tone4": "🫸🏾", "rightwards_pushing_hand_medium_dark_skin_tone": "🫸🏾", "rightwards_pushing_hand_tone5": "🫸🏿", "rightwards_pushing_hand_dark_skin_tone": "🫸🏿", "fingers_crossed_tone1": "🤞🏻", "hand_with_index_and_middle_fingers_crossed_tone1": "🤞🏻", "fingers_crossed_tone2": "🤞🏼", "hand_with_index_and_middle_fingers_crossed_tone2": "🤞🏼", "fingers_crossed_tone3": "🤞🏽", "hand_with_index_and_middle_fingers_crossed_tone3": "🤞🏽", "fingers_crossed_tone4": "🤞🏾", "hand_with_index_and_middle_fingers_crossed_tone4": "🤞🏾", "fingers_crossed_tone5": "🤞🏿", "hand_with_index_and_middle_fingers_crossed_tone5": "🤞🏿", "v_tone1": "✌🏻", "v_tone2": "✌🏼", "v_tone3": "✌🏽", "v_tone4": "✌🏾", "v_tone5": "✌🏿", "hand_with_index_finger_and_thumb_crossed_tone1": "🫰🏻", "hand_with_index_finger_and_thumb_crossed_light_skin_tone": "🫰🏻", "hand_with_index_finger_and_thumb_crossed_tone2": "🫰🏼", "hand_with_index_finger_and_thumb_crossed_medium_light_skin_tone": "🫰🏼", "hand_with_index_finger_and_thumb_crossed_tone3": "🫰🏽", "hand_with_index_finger_and_thumb_crossed_medium_skin_tone": "🫰🏽", "hand_with_index_finger_and_thumb_crossed_tone4": "🫰🏾", "hand_with_index_finger_and_thumb_crossed_medium_dark_skin_tone": "🫰🏾", "hand_with_index_finger_and_thumb_crossed_tone5": "🫰🏿", "hand_with_index_finger_and_thumb_crossed_dark_skin_tone": "🫰🏿", "love_you_gesture_tone1": "🤟🏻", "love_you_gesture_light_skin_tone": "🤟🏻", "love_you_gesture_tone2": "🤟🏼", "love_you_gesture_medium_light_skin_tone": "🤟🏼", "love_you_gesture_tone3": "🤟🏽", "love_you_gesture_medium_skin_tone": "🤟🏽", "love_you_gesture_tone4": "🤟🏾", "love_you_gesture_medium_dark_skin_tone": "🤟🏾", "love_you_gesture_tone5": "🤟🏿", "love_you_gesture_dark_skin_tone": "🤟🏿", "metal_tone1": "🤘🏻", "sign_of_the_horns_tone1": "🤘🏻", "metal_tone2": "🤘🏼", "sign_of_the_horns_tone2": "🤘🏼", "metal_tone3": "🤘🏽", "sign_of_the_horns_tone3": "🤘🏽", "metal_tone4": "🤘🏾", "sign_of_the_horns_tone4": "🤘🏾", "metal_tone5": "🤘🏿", "sign_of_the_horns_tone5": "🤘🏿", "ok_hand_tone1": "👌🏻", "ok_hand_tone2": "👌🏼", "ok_hand_tone3": "👌🏽", "ok_hand_tone4": "👌🏾", "ok_hand_tone5": "👌🏿", "pinched_fingers_tone2": "🤌🏼", "pinched_fingers_medium_light_skin_tone": "🤌🏼", "pinched_fingers_tone1": "🤌🏻", "pinched_fingers_light_skin_tone": "🤌🏻", "pinched_fingers_tone3": "🤌🏽", "pinched_fingers_medium_skin_tone": "🤌🏽", "pinched_fingers_tone4": "🤌🏾", "pinched_fingers_medium_dark_skin_tone": "🤌🏾", "pinched_fingers_tone5": "🤌🏿", "pinched_fingers_dark_skin_tone": "🤌🏿", "pinching_hand_tone1": "🤏🏻", "pinching_hand_light_skin_tone": "🤏🏻", "pinching_hand_tone2": "🤏🏼", "pinching_hand_medium_light_skin_tone": "🤏🏼", "pinching_hand_tone3": "🤏🏽", "pinching_hand_medium_skin_tone": "🤏🏽", "pinching_hand_tone4": "🤏🏾", "pinching_hand_medium_dark_skin_tone": "🤏🏾", "pinching_hand_tone5": "🤏🏿", "pinching_hand_dark_skin_tone": "🤏🏿", "palm_down_hand_tone1": "🫳🏻", "palm_down_hand_light_skin_tone": "🫳🏻", "palm_down_hand_tone2": "🫳🏼", "palm_down_hand_medium_light_skin_tone": "🫳🏼", "palm_down_hand_tone3": "🫳🏽", "palm_down_hand_medium_skin_tone": "🫳🏽", "palm_down_hand_tone4": "🫳🏾", "palm_down_hand_medium_dark_skin_tone": "🫳🏾", "palm_down_hand_tone5": "🫳🏿", "palm_down_hand_dark_skin_tone": "🫳🏿", "palm_up_hand_tone1": "🫴🏻", "palm_up_hand_light_skin_tone": "🫴🏻", "palm_up_hand_tone2": "🫴🏼", "palm_up_hand_medium_light_skin_tone": "🫴🏼", "palm_up_hand_tone3": "🫴🏽", "palm_up_hand_medium_skin_tone": "🫴🏽", "palm_up_hand_tone4": "🫴🏾", "palm_up_hand_medium_dark_skin_tone": "🫴🏾", "palm_up_hand_tone5": "🫴🏿", "palm_up_hand_dark_skin_tone": "🫴🏿", "point_left_tone1": "👈🏻", "point_left_tone2": "👈🏼", "point_left_tone3": "👈🏽", "point_left_tone4": "👈🏾", "point_left_tone5": "👈🏿", "point_right_tone1": "👉🏻", "point_right_tone2": "👉🏼", "point_right_tone3": "👉🏽", "point_right_tone4": "👉🏾", "point_right_tone5": "👉🏿", "point_up_2_tone1": "👆🏻", "point_up_2_tone2": "👆🏼", "point_up_2_tone3": "👆🏽", "point_up_2_tone4": "👆🏾", "point_up_2_tone5": "👆🏿", "point_down_tone1": "👇🏻", "point_down_tone2": "👇🏼", "point_down_tone3": "👇🏽", "point_down_tone4": "👇🏾", "point_down_tone5": "👇🏿", "point_up_tone1": "☝🏻", "point_up_tone2": "☝🏼", "point_up_tone3": "☝🏽", "point_up_tone4": "☝🏾", "point_up_tone5": "☝🏿", "raised_hand_tone1": "✋🏻", "raised_hand_tone2": "✋🏼", "raised_hand_tone3": "✋🏽", "raised_hand_tone4": "✋🏾", "raised_hand_tone5": "✋🏿", "raised_back_of_hand_tone1": "🤚🏻", "back_of_hand_tone1": "🤚🏻", "raised_back_of_hand_tone2": "🤚🏼", "back_of_hand_tone2": "🤚🏼", "raised_back_of_hand_tone3": "🤚🏽", "back_of_hand_tone3": "🤚🏽", "raised_back_of_hand_tone4": "🤚🏾", "back_of_hand_tone4": "🤚🏾", "raised_back_of_hand_tone5": "🤚🏿", "back_of_hand_tone5": "🤚🏿", "hand_splayed_tone1": "🖐🏻", "raised_hand_with_fingers_splayed_tone1": "🖐🏻", "hand_splayed_tone2": "🖐🏼", "raised_hand_with_fingers_splayed_tone2": "🖐🏼", "hand_splayed_tone3": "🖐🏽", "raised_hand_with_fingers_splayed_tone3": "🖐🏽", "hand_splayed_tone4": "🖐🏾", "raised_hand_with_fingers_splayed_tone4": "🖐🏾", "hand_splayed_tone5": "🖐🏿", "raised_hand_with_fingers_splayed_tone5": "🖐🏿", "vulcan_tone1": "🖖🏻", "raised_hand_with_part_between_middle_and_ring_fingers_tone1": "🖖🏻", "vulcan_tone2": "🖖🏼", "raised_hand_with_part_between_middle_and_ring_fingers_tone2": "🖖🏼", "vulcan_tone3": "🖖🏽", "raised_hand_with_part_between_middle_and_ring_fingers_tone3": "🖖🏽", "vulcan_tone4": "🖖🏾", "raised_hand_with_part_between_middle_and_ring_fingers_tone4": "🖖🏾", "vulcan_tone5": "🖖🏿", "raised_hand_with_part_between_middle_and_ring_fingers_tone5": "🖖🏿", "wave_tone1": "👋🏻", "wave_tone2": "👋🏼", "wave_tone3": "👋🏽", "wave_tone4": "👋🏾", "wave_tone5": "👋🏿", "call_me_tone1": "🤙🏻", "call_me_hand_tone1": "🤙🏻", "call_me_tone2": "🤙🏼", "call_me_hand_tone2": "🤙🏼", "call_me_tone3": "🤙🏽", "call_me_hand_tone3": "🤙🏽", "call_me_tone4": "🤙🏾", "call_me_hand_tone4": "🤙🏾", "call_me_tone5": "🤙🏿", "call_me_hand_tone5": "🤙🏿", "leftwards_hand_tone1": "🫲🏻", "leftwards_hand_light_skin_tone": "🫲🏻", "leftwards_hand_tone2": "🫲🏼", "leftwards_hand_medium_light_skin_tone": "🫲🏼", "leftwards_hand_tone3": "🫲🏽", "leftwards_hand_medium_skin_tone": "🫲🏽", "leftwards_hand_tone4": "🫲🏾", "leftwards_hand_medium_dark_skin_tone": "🫲🏾", "leftwards_hand_tone5": "🫲🏿", "leftwards_hand_dark_skin_tone": "🫲🏿", "rightwards_hand_tone1": "🫱🏻", "rightwards_hand_light_skin_tone": "🫱🏻", "rightwards_hand_tone2": "🫱🏼", "rightwards_hand_medium_light_skin_tone": "🫱🏼", "rightwards_hand_tone3": "🫱🏽", "rightwards_hand_medium_skin_tone": "🫱🏽", "rightwards_hand_tone4": "🫱🏾", "rightwards_hand_medium_dark_skin_tone": "🫱🏾", "rightwards_hand_tone5": "🫱🏿", "rightwards_hand_dark_skin_tone": "🫱🏿", "muscle_tone1": "💪🏻", "muscle_tone2": "💪🏼", "muscle_tone3": "💪🏽", "muscle_tone4": "💪🏾", "muscle_tone5": "💪🏿", "middle_finger_tone1": "🖕🏻", "reversed_hand_with_middle_finger_extended_tone1": "🖕🏻", "middle_finger_tone2": "🖕🏼", "reversed_hand_with_middle_finger_extended_tone2": "🖕🏼", "middle_finger_tone3": "🖕🏽", "reversed_hand_with_middle_finger_extended_tone3": "🖕🏽", "middle_finger_tone4": "🖕🏾", "reversed_hand_with_middle_finger_extended_tone4": "🖕🏾", "middle_finger_tone5": "🖕🏿", "reversed_hand_with_middle_finger_extended_tone5": "🖕🏿", "writing_hand_tone1": "✍🏻", "writing_hand_tone2": "✍🏼", "writing_hand_tone3": "✍🏽", "writing_hand_tone4": "✍🏾", "writing_hand_tone5": "✍🏿", "pray_tone1": "🙏🏻", "pray_tone2": "🙏🏼", "pray_tone3": "🙏🏽", "pray_tone4": "🙏🏾", "pray_tone5": "🙏🏿", "index_pointing_at_the_viewer_tone1": "🫵🏻", "index_pointing_at_the_viewer_light_skin_tone": "🫵🏻", "index_pointing_at_the_viewer_tone2": "🫵🏼", "index_pointing_at_the_viewer_medium_light_skin_tone": "🫵🏼", "index_pointing_at_the_viewer_tone3": "🫵🏽", "index_pointing_at_the_viewer_medium_skin_tone": "🫵🏽", "index_pointing_at_the_viewer_tone4": "🫵🏾", "index_pointing_at_the_viewer_medium_dark_skin_tone": "🫵🏾", "index_pointing_at_the_viewer_tone5": "🫵🏿", "index_pointing_at_the_viewer_dark_skin_tone": "🫵🏿", "foot_tone1": "🦶🏻", "foot_light_skin_tone": "🦶🏻", "foot_tone2": "🦶🏼", "foot_medium_light_skin_tone": "🦶🏼", "foot_tone3": "🦶🏽", "foot_medium_skin_tone": "🦶🏽", "foot_tone4": "🦶🏾", "foot_medium_dark_skin_tone": "🦶🏾", "foot_tone5": "🦶🏿", "foot_dark_skin_tone": "🦶🏿", "leg_tone1": "🦵🏻", "leg_light_skin_tone": "🦵🏻", "leg_tone2": "🦵🏼", "leg_medium_light_skin_tone": "🦵🏼", "leg_tone3": "🦵🏽", "leg_medium_skin_tone": "🦵🏽", "leg_tone4": "🦵🏾", "leg_medium_dark_skin_tone": "🦵🏾", "leg_tone5": "🦵🏿", "leg_dark_skin_tone": "🦵🏿", "ear_tone1": "👂🏻", "ear_tone2": "👂🏼", "ear_tone3": "👂🏽", "ear_tone4": "👂🏾", "ear_tone5": "👂🏿", "ear_with_hearing_aid_tone1": "🦻🏻", "ear_with_hearing_aid_light_skin_tone": "🦻🏻", "ear_with_hearing_aid_tone2": "🦻🏼", "ear_with_hearing_aid_medium_light_skin_tone": "🦻🏼", "ear_with_hearing_aid_tone3": "🦻🏽", "ear_with_hearing_aid_medium_skin_tone": "🦻🏽", "ear_with_hearing_aid_tone4": "🦻🏾", "ear_with_hearing_aid_medium_dark_skin_tone": "🦻🏾", "ear_with_hearing_aid_tone5": "🦻🏿", "ear_with_hearing_aid_dark_skin_tone": "🦻🏿", "nose_tone1": "👃🏻", "nose_tone2": "👃🏼", "nose_tone3": "👃🏽", "nose_tone4": "👃🏾", "nose_tone5": "👃🏿", "baby_tone1": "👶🏻", "baby_tone2": "👶🏼", "baby_tone3": "👶🏽", "baby_tone4": "👶🏾", "baby_tone5": "👶🏿", "child_tone1": "🧒🏻", "child_light_skin_tone": "🧒🏻", "child_tone2": "🧒🏼", "child_medium_light_skin_tone": "🧒🏼", "child_tone3": "🧒🏽", "child_medium_skin_tone": "🧒🏽", "child_tone4": "🧒🏾", "child_medium_dark_skin_tone": "🧒🏾", "child_tone5": "🧒🏿", "child_dark_skin_tone": "🧒🏿", "girl_tone1": "👧🏻", "girl_tone2": "👧🏼", "girl_tone3": "👧🏽", "girl_tone4": "👧🏾", "girl_tone5": "👧🏿", "boy_tone1": "👦🏻", "boy_tone2": "👦🏼", "boy_tone3": "👦🏽", "boy_tone4": "👦🏾", "boy_tone5": "👦🏿", "adult_tone1": "🧑🏻", "adult_light_skin_tone": "🧑🏻", "adult_tone2": "🧑🏼", "adult_medium_light_skin_tone": "🧑🏼", "adult_tone3": "🧑🏽", "adult_medium_skin_tone": "🧑🏽", "adult_tone4": "🧑🏾", "adult_medium_dark_skin_tone": "🧑🏾", "adult_tone5": "🧑🏿", "adult_dark_skin_tone": "🧑🏿", "woman_tone1": "👩🏻", "woman_tone2": "👩🏼", "woman_tone3": "👩🏽", "woman_tone4": "👩🏾", "woman_tone5": "👩🏿", "man_tone1": "👨🏻", "man_tone2": "👨🏼", "man_tone3": "👨🏽", "man_tone4": "👨🏾", "man_tone5": "👨🏿", "person_tone1_curly_hair": "🧑🏻‍🦱", "person_light_skin_tone_curly_hair": "🧑🏻‍🦱", "person_tone2_curly_hair": "🧑🏼‍🦱", "person_medium_light_skin_tone_curly_hair": "🧑🏼‍🦱", "person_tone3_curly_hair": "🧑🏽‍🦱", "person_medium_skin_tone_curly_hair": "🧑🏽‍🦱", "person_tone4_curly_hair": "🧑🏾‍🦱", "person_medium_dark_skin_tone_curly_hair": "🧑🏾‍🦱", "person_tone5_curly_hair": "🧑🏿‍🦱", "person_dark_skin_tone_curly_hair": "🧑🏿‍🦱", "woman_curly_haired_tone1": "👩🏻‍🦱", "woman_curly_haired_light_skin_tone": "👩🏻‍🦱", "woman_curly_haired_tone2": "👩🏼‍🦱", "woman_curly_haired_medium_light_skin_tone": "👩🏼‍🦱", "woman_curly_haired_tone3": "👩🏽‍🦱", "woman_curly_haired_medium_skin_tone": "👩🏽‍🦱", "woman_curly_haired_tone4": "👩🏾‍🦱", "woman_curly_haired_medium_dark_skin_tone": "👩🏾‍🦱", "woman_curly_haired_tone5": "👩🏿‍🦱", "woman_curly_haired_dark_skin_tone": "👩🏿‍🦱", "man_curly_haired_tone1": "👨🏻‍🦱", "man_curly_haired_light_skin_tone": "👨🏻‍🦱", "man_curly_haired_tone2": "👨🏼‍🦱", "man_curly_haired_medium_light_skin_tone": "👨🏼‍🦱", "man_curly_haired_tone3": "👨🏽‍🦱", "man_curly_haired_medium_skin_tone": "👨🏽‍🦱", "man_curly_haired_tone4": "👨🏾‍🦱", "man_curly_haired_medium_dark_skin_tone": "👨🏾‍🦱", "man_curly_haired_tone5": "👨🏿‍🦱", "man_curly_haired_dark_skin_tone": "👨🏿‍🦱", "person_tone1_red_hair": "🧑🏻‍🦰", "person_light_skin_tone_red_hair": "🧑🏻‍🦰", "person_tone2_red_hair": "🧑🏼‍🦰", "person_medium_light_skin_tone_red_hair": "🧑🏼‍🦰", "person_tone3_red_hair": "🧑🏽‍🦰", "person_medium_skin_tone_red_hair": "🧑🏽‍🦰", "person_tone4_red_hair": "🧑🏾‍🦰", "person_medium_dark_skin_tone_red_hair": "🧑🏾‍🦰", "person_tone5_red_hair": "🧑🏿‍🦰", "person_dark_skin_tone_red_hair": "🧑🏿‍🦰", "woman_red_haired_tone1": "👩🏻‍🦰", "woman_red_haired_light_skin_tone": "👩🏻‍🦰", "woman_red_haired_tone2": "👩🏼‍🦰", "woman_red_haired_medium_light_skin_tone": "👩🏼‍🦰", "woman_red_haired_tone3": "👩🏽‍🦰", "woman_red_haired_medium_skin_tone": "👩🏽‍🦰", "woman_red_haired_tone4": "👩🏾‍🦰", "woman_red_haired_medium_dark_skin_tone": "👩🏾‍🦰", "woman_red_haired_tone5": "👩🏿‍🦰", "woman_red_haired_dark_skin_tone": "👩🏿‍🦰", "man_red_haired_tone1": "👨🏻‍🦰", "man_red_haired_light_skin_tone": "👨🏻‍🦰", "man_red_haired_tone2": "👨🏼‍🦰", "man_red_haired_medium_light_skin_tone": "👨🏼‍🦰", "man_red_haired_tone3": "👨🏽‍🦰", "man_red_haired_medium_skin_tone": "👨🏽‍🦰", "man_red_haired_tone4": "👨🏾‍🦰", "man_red_haired_medium_dark_skin_tone": "👨🏾‍🦰", "man_red_haired_tone5": "👨🏿‍🦰", "man_red_haired_dark_skin_tone": "👨🏿‍🦰", "blond_haired_person_tone1": "👱🏻", "person_with_blond_hair_tone1": "👱🏻", "blond_haired_person_tone2": "👱🏼", "person_with_blond_hair_tone2": "👱🏼", "blond_haired_person_tone3": "👱🏽", "person_with_blond_hair_tone3": "👱🏽", "blond_haired_person_tone4": "👱🏾", "person_with_blond_hair_tone4": "👱🏾", "blond_haired_person_tone5": "👱🏿", "person_with_blond_hair_tone5": "👱🏿", "blond_haired_woman_tone1": "👱🏻‍♀️", "blond_haired_woman_light_skin_tone": "👱🏻‍♀️", "blond_haired_woman_tone2": "👱🏼‍♀️", "blond_haired_woman_medium_light_skin_tone": "👱🏼‍♀️", "blond_haired_woman_tone3": "👱🏽‍♀️", "blond_haired_woman_medium_skin_tone": "👱🏽‍♀️", "blond_haired_woman_tone4": "👱🏾‍♀️", "blond_haired_woman_medium_dark_skin_tone": "👱🏾‍♀️", "blond_haired_woman_tone5": "👱🏿‍♀️", "blond_haired_woman_dark_skin_tone": "👱🏿‍♀️", "blond_haired_man_tone1": "👱🏻‍♂️", "blond_haired_man_light_skin_tone": "👱🏻‍♂️", "blond_haired_man_tone2": "👱🏼‍♂️", "blond_haired_man_medium_light_skin_tone": "👱🏼‍♂️", "blond_haired_man_tone3": "👱🏽‍♂️", "blond_haired_man_medium_skin_tone": "👱🏽‍♂️", "blond_haired_man_tone4": "👱🏾‍♂️", "blond_haired_man_medium_dark_skin_tone": "👱🏾‍♂️", "blond_haired_man_tone5": "👱🏿‍♂️", "blond_haired_man_dark_skin_tone": "👱🏿‍♂️", "person_tone1_white_hair": "🧑🏻‍🦳", "person_light_skin_tone_white_hair": "🧑🏻‍🦳", "person_tone2_white_hair": "🧑🏼‍🦳", "person_medium_light_skin_tone_white_hair": "🧑🏼‍🦳", "person_tone3_white_hair": "🧑🏽‍🦳", "person_medium_skin_tone_white_hair": "🧑🏽‍🦳", "person_tone4_white_hair": "🧑🏾‍🦳", "person_medium_dark_skin_tone_white_hair": "🧑🏾‍🦳", "person_tone5_white_hair": "🧑🏿‍🦳", "person_dark_skin_tone_white_hair": "🧑🏿‍🦳", "woman_white_haired_tone1": "👩🏻‍🦳", "woman_white_haired_light_skin_tone": "👩🏻‍🦳", "woman_white_haired_tone2": "👩🏼‍🦳", "woman_white_haired_medium_light_skin_tone": "👩🏼‍🦳", "woman_white_haired_tone3": "👩🏽‍🦳", "woman_white_haired_medium_skin_tone": "👩🏽‍🦳", "woman_white_haired_tone4": "👩🏾‍🦳", "woman_white_haired_medium_dark_skin_tone": "👩🏾‍🦳", "woman_white_haired_tone5": "👩🏿‍🦳", "woman_white_haired_dark_skin_tone": "👩🏿‍🦳", "man_white_haired_tone1": "👨🏻‍🦳", "man_white_haired_light_skin_tone": "👨🏻‍🦳", "man_white_haired_tone2": "👨🏼‍🦳", "man_white_haired_medium_light_skin_tone": "👨🏼‍🦳", "man_white_haired_tone3": "👨🏽‍🦳", "man_white_haired_medium_skin_tone": "👨🏽‍🦳", "man_white_haired_tone4": "👨🏾‍🦳", "man_white_haired_medium_dark_skin_tone": "👨🏾‍🦳", "man_white_haired_tone5": "👨🏿‍🦳", "man_white_haired_dark_skin_tone": "👨🏿‍🦳", "person_tone1_bald": "🧑🏻‍🦲", "person_light_skin_tone_bald": "🧑🏻‍🦲", "person_tone2_bald": "🧑🏼‍🦲", "person_medium_light_skin_tone_bald": "🧑🏼‍🦲", "person_tone3_bald": "🧑🏽‍🦲", "person_medium_skin_tone_bald": "🧑🏽‍🦲", "person_tone4_bald": "🧑🏾‍🦲", "person_medium_dark_skin_tone_bald": "🧑🏾‍🦲", "person_tone5_bald": "🧑🏿‍🦲", "person_dark_skin_tone_bald": "🧑🏿‍🦲", "woman_bald_tone1": "👩🏻‍🦲", "woman_bald_light_skin_tone": "👩🏻‍🦲", "woman_bald_tone2": "👩🏼‍🦲", "woman_bald_medium_light_skin_tone": "👩🏼‍🦲", "woman_bald_tone3": "👩🏽‍🦲", "woman_bald_medium_skin_tone": "👩🏽‍🦲", "woman_bald_tone4": "👩🏾‍🦲", "woman_bald_medium_dark_skin_tone": "👩🏾‍🦲", "woman_bald_tone5": "👩🏿‍🦲", "woman_bald_dark_skin_tone": "👩🏿‍🦲", "man_bald_tone1": "👨🏻‍🦲", "man_bald_light_skin_tone": "👨🏻‍🦲", "man_bald_tone2": "👨🏼‍🦲", "man_bald_medium_light_skin_tone": "👨🏼‍🦲", "man_bald_tone3": "👨🏽‍🦲", "man_bald_medium_skin_tone": "👨🏽‍🦲", "man_bald_tone4": "👨🏾‍🦲", "man_bald_medium_dark_skin_tone": "👨🏾‍🦲", "man_bald_tone5": "👨🏿‍🦲", "man_bald_dark_skin_tone": "👨🏿‍🦲", "bearded_person_tone1": "🧔🏻", "bearded_person_light_skin_tone": "🧔🏻", "bearded_person_tone2": "🧔🏼", "bearded_person_medium_light_skin_tone": "🧔🏼", "bearded_person_tone3": "🧔🏽", "bearded_person_medium_skin_tone": "🧔🏽", "bearded_person_tone4": "🧔🏾", "bearded_person_medium_dark_skin_tone": "🧔🏾", "bearded_person_tone5": "🧔🏿", "bearded_person_dark_skin_tone": "🧔🏿", "woman_tone1_beard": "🧔🏻‍♀️", "woman_light_skin_tone_beard": "🧔🏻‍♀️", "woman_tone2_beard": "🧔🏼‍♀️", "woman_medium_light_skin_tone_beard": "🧔🏼‍♀️", "woman_tone3_beard": "🧔🏽‍♀️", "woman_medium_skin_tone_beard": "🧔🏽‍♀️", "woman_tone4_beard": "🧔🏾‍♀️", "woman_medium_dark_skin_tone_beard": "🧔🏾‍♀️", "woman_tone5_beard": "🧔🏿‍♀️", "woman_dark_skin_tone_beard": "🧔🏿‍♀️", "man_tone1_beard": "🧔🏻‍♂️", "man_light_skin_tone_beard": "🧔🏻‍♂️", "man_tone2_beard": "🧔🏼‍♂️", "man_medium_light_skin_tone_beard": "🧔🏼‍♂️", "man_tone3_beard": "🧔🏽‍♂️", "man_medium_skin_tone_beard": "🧔🏽‍♂️", "man_tone4_beard": "🧔🏾‍♂️", "man_medium_dark_skin_tone_beard": "🧔🏾‍♂️", "man_tone5_beard": "🧔🏿‍♂️", "man_dark_skin_tone_beard": "🧔🏿‍♂️", "older_adult_tone1": "🧓🏻", "older_adult_light_skin_tone": "🧓🏻", "older_adult_tone2": "🧓🏼", "older_adult_medium_light_skin_tone": "🧓🏼", "older_adult_tone3": "🧓🏽", "older_adult_medium_skin_tone": "🧓🏽", "older_adult_tone4": "🧓🏾", "older_adult_medium_dark_skin_tone": "🧓🏾", "older_adult_tone5": "🧓🏿", "older_adult_dark_skin_tone": "🧓🏿", "older_woman_tone1": "👵🏻", "grandma_tone1": "👵🏻", "older_woman_tone2": "👵🏼", "grandma_tone2": "👵🏼", "older_woman_tone3": "👵🏽", "grandma_tone3": "👵🏽", "older_woman_tone4": "👵🏾", "grandma_tone4": "👵🏾", "older_woman_tone5": "👵🏿", "grandma_tone5": "👵🏿", "older_man_tone1": "👴🏻", "older_man_tone2": "👴🏼", "older_man_tone3": "👴🏽", "older_man_tone4": "👴🏾", "older_man_tone5": "👴🏿", "man_with_chinese_cap_tone1": "👲🏻", "man_with_gua_pi_mao_tone1": "👲🏻", "man_with_chinese_cap_tone2": "👲🏼", "man_with_gua_pi_mao_tone2": "👲🏼", "man_with_chinese_cap_tone3": "👲🏽", "man_with_gua_pi_mao_tone3": "👲🏽", "man_with_chinese_cap_tone4": "👲🏾", "man_with_gua_pi_mao_tone4": "👲🏾", "man_with_chinese_cap_tone5": "👲🏿", "man_with_gua_pi_mao_tone5": "👲🏿", "person_wearing_turban_tone1": "👳🏻", "man_with_turban_tone1": "👳🏻", "person_wearing_turban_tone2": "👳🏼", "man_with_turban_tone2": "👳🏼", "person_wearing_turban_tone3": "👳🏽", "man_with_turban_tone3": "👳🏽", "person_wearing_turban_tone4": "👳🏾", "man_with_turban_tone4": "👳🏾", "person_wearing_turban_tone5": "👳🏿", "man_with_turban_tone5": "👳🏿", "woman_wearing_turban_tone1": "👳🏻‍♀️", "woman_wearing_turban_light_skin_tone": "👳🏻‍♀️", "woman_wearing_turban_tone2": "👳🏼‍♀️", "woman_wearing_turban_medium_light_skin_tone": "👳🏼‍♀️", "woman_wearing_turban_tone3": "👳🏽‍♀️", "woman_wearing_turban_medium_skin_tone": "👳🏽‍♀️", "woman_wearing_turban_tone4": "👳🏾‍♀️", "woman_wearing_turban_medium_dark_skin_tone": "👳🏾‍♀️", "woman_wearing_turban_tone5": "👳🏿‍♀️", "woman_wearing_turban_dark_skin_tone": "👳🏿‍♀️", "man_wearing_turban_tone1": "👳🏻‍♂️", "man_wearing_turban_light_skin_tone": "👳🏻‍♂️", "man_wearing_turban_tone2": "👳🏼‍♂️", "man_wearing_turban_medium_light_skin_tone": "👳🏼‍♂️", "man_wearing_turban_tone3": "👳🏽‍♂️", "man_wearing_turban_medium_skin_tone": "👳🏽‍♂️", "man_wearing_turban_tone4": "👳🏾‍♂️", "man_wearing_turban_medium_dark_skin_tone": "👳🏾‍♂️", "man_wearing_turban_tone5": "👳🏿‍♂️", "man_wearing_turban_dark_skin_tone": "👳🏿‍♂️", "woman_with_headscarf_tone1": "🧕🏻", "woman_with_headscarf_light_skin_tone": "🧕🏻", "woman_with_headscarf_tone2": "🧕🏼", "woman_with_headscarf_medium_light_skin_tone": "🧕🏼", "woman_with_headscarf_tone3": "🧕🏽", "woman_with_headscarf_medium_skin_tone": "🧕🏽", "woman_with_headscarf_tone4": "🧕🏾", "woman_with_headscarf_medium_dark_skin_tone": "🧕🏾", "woman_with_headscarf_tone5": "🧕🏿", "woman_with_headscarf_dark_skin_tone": "🧕🏿", "police_officer_tone1": "👮🏻", "cop_tone1": "👮🏻", "police_officer_tone2": "👮🏼", "cop_tone2": "👮🏼", "police_officer_tone3": "👮🏽", "cop_tone3": "👮🏽", "police_officer_tone4": "👮🏾", "cop_tone4": "👮🏾", "police_officer_tone5": "👮🏿", "cop_tone5": "👮🏿", "woman_police_officer_tone1": "👮🏻‍♀️", "woman_police_officer_light_skin_tone": "👮🏻‍♀️", "woman_police_officer_tone2": "👮🏼‍♀️", "woman_police_officer_medium_light_skin_tone": "👮🏼‍♀️", "woman_police_officer_tone3": "👮🏽‍♀️", "woman_police_officer_medium_skin_tone": "👮🏽‍♀️", "woman_police_officer_tone4": "👮🏾‍♀️", "woman_police_officer_medium_dark_skin_tone": "👮🏾‍♀️", "woman_police_officer_tone5": "👮🏿‍♀️", "woman_police_officer_dark_skin_tone": "👮🏿‍♀️", "man_police_officer_tone1": "👮🏻‍♂️", "man_police_officer_light_skin_tone": "👮🏻‍♂️", "man_police_officer_tone2": "👮🏼‍♂️", "man_police_officer_medium_light_skin_tone": "👮🏼‍♂️", "man_police_officer_tone3": "👮🏽‍♂️", "man_police_officer_medium_skin_tone": "👮🏽‍♂️", "man_police_officer_tone4": "👮🏾‍♂️", "man_police_officer_medium_dark_skin_tone": "👮🏾‍♂️", "man_police_officer_tone5": "👮🏿‍♂️", "man_police_officer_dark_skin_tone": "👮🏿‍♂️", "construction_worker_tone1": "👷🏻", "construction_worker_tone2": "👷🏼", "construction_worker_tone3": "👷🏽", "construction_worker_tone4": "👷🏾", "construction_worker_tone5": "👷🏿", "woman_construction_worker_tone1": "👷🏻‍♀️", "woman_construction_worker_light_skin_tone": "👷🏻‍♀️", "woman_construction_worker_tone2": "👷🏼‍♀️", "woman_construction_worker_medium_light_skin_tone": "👷🏼‍♀️", "woman_construction_worker_tone3": "👷🏽‍♀️", "woman_construction_worker_medium_skin_tone": "👷🏽‍♀️", "woman_construction_worker_tone4": "👷🏾‍♀️", "woman_construction_worker_medium_dark_skin_tone": "👷🏾‍♀️", "woman_construction_worker_tone5": "👷🏿‍♀️", "woman_construction_worker_dark_skin_tone": "👷🏿‍♀️", "man_construction_worker_tone1": "👷🏻‍♂️", "man_construction_worker_light_skin_tone": "👷🏻‍♂️", "man_construction_worker_tone2": "👷🏼‍♂️", "man_construction_worker_medium_light_skin_tone": "👷🏼‍♂️", "man_construction_worker_tone3": "👷🏽‍♂️", "man_construction_worker_medium_skin_tone": "👷🏽‍♂️", "man_construction_worker_tone4": "👷🏾‍♂️", "man_construction_worker_medium_dark_skin_tone": "👷🏾‍♂️", "man_construction_worker_tone5": "👷🏿‍♂️", "man_construction_worker_dark_skin_tone": "👷🏿‍♂️", "guard_tone1": "💂🏻", "guardsman_tone1": "💂🏻", "guard_tone2": "💂🏼", "guardsman_tone2": "💂🏼", "guard_tone3": "💂🏽", "guardsman_tone3": "💂🏽", "guard_tone4": "💂🏾", "guardsman_tone4": "💂🏾", "guard_tone5": "💂🏿", "guardsman_tone5": "💂🏿", "woman_guard_tone1": "💂🏻‍♀️", "woman_guard_light_skin_tone": "💂🏻‍♀️", "woman_guard_tone2": "💂🏼‍♀️", "woman_guard_medium_light_skin_tone": "💂🏼‍♀️", "woman_guard_tone3": "💂🏽‍♀️", "woman_guard_medium_skin_tone": "💂🏽‍♀️", "woman_guard_tone4": "💂🏾‍♀️", "woman_guard_medium_dark_skin_tone": "💂🏾‍♀️", "woman_guard_tone5": "💂🏿‍♀️", "woman_guard_dark_skin_tone": "💂🏿‍♀️", "man_guard_tone1": "💂🏻‍♂️", "man_guard_light_skin_tone": "💂🏻‍♂️", "man_guard_tone2": "💂🏼‍♂️", "man_guard_medium_light_skin_tone": "💂🏼‍♂️", "man_guard_tone3": "💂🏽‍♂️", "man_guard_medium_skin_tone": "💂🏽‍♂️", "man_guard_tone4": "💂🏾‍♂️", "man_guard_medium_dark_skin_tone": "💂🏾‍♂️", "man_guard_tone5": "💂🏿‍♂️", "man_guard_dark_skin_tone": "💂🏿‍♂️", "detective_tone1": "🕵🏻", "spy_tone1": "🕵🏻", "sleuth_or_spy_tone1": "🕵🏻", "detective_tone2": "🕵🏼", "spy_tone2": "🕵🏼", "sleuth_or_spy_tone2": "🕵🏼", "detective_tone3": "🕵🏽", "spy_tone3": "🕵🏽", "sleuth_or_spy_tone3": "🕵🏽", "detective_tone4": "🕵🏾", "spy_tone4": "🕵🏾", "sleuth_or_spy_tone4": "🕵🏾", "detective_tone5": "🕵🏿", "spy_tone5": "🕵🏿", "sleuth_or_spy_tone5": "🕵🏿", "woman_detective_tone1": "🕵🏻‍♀️", "woman_detective_light_skin_tone": "🕵🏻‍♀️", "woman_detective_tone2": "🕵🏼‍♀️", "woman_detective_medium_light_skin_tone": "🕵🏼‍♀️", "woman_detective_tone3": "🕵🏽‍♀️", "woman_detective_medium_skin_tone": "🕵🏽‍♀️", "woman_detective_tone4": "🕵🏾‍♀️", "woman_detective_medium_dark_skin_tone": "🕵🏾‍♀️", "woman_detective_tone5": "🕵🏿‍♀️", "woman_detective_dark_skin_tone": "🕵🏿‍♀️", "man_detective_tone1": "🕵🏻‍♂️", "man_detective_light_skin_tone": "🕵🏻‍♂️", "man_detective_tone2": "🕵🏼‍♂️", "man_detective_medium_light_skin_tone": "🕵🏼‍♂️", "man_detective_tone3": "🕵🏽‍♂️", "man_detective_medium_skin_tone": "🕵🏽‍♂️", "man_detective_tone4": "🕵🏾‍♂️", "man_detective_medium_dark_skin_tone": "🕵🏾‍♂️", "man_detective_tone5": "🕵🏿‍♂️", "man_detective_dark_skin_tone": "🕵🏿‍♂️", "health_worker_tone1": "🧑🏻‍⚕️", "health_worker_light_skin_tone": "🧑🏻‍⚕️", "health_worker_tone2": "🧑🏼‍⚕️", "health_worker_medium_light_skin_tone": "🧑🏼‍⚕️", "health_worker_tone3": "🧑🏽‍⚕️", "health_worker_medium_skin_tone": "🧑🏽‍⚕️", "health_worker_tone4": "🧑🏾‍⚕️", "health_worker_medium_dark_skin_tone": "🧑🏾‍⚕️", "health_worker_tone5": "🧑🏿‍⚕️", "health_worker_dark_skin_tone": "🧑🏿‍⚕️", "woman_health_worker_tone1": "👩🏻‍⚕️", "woman_health_worker_light_skin_tone": "👩🏻‍⚕️", "woman_health_worker_tone2": "👩🏼‍⚕️", "woman_health_worker_medium_light_skin_tone": "👩🏼‍⚕️", "woman_health_worker_tone3": "👩🏽‍⚕️", "woman_health_worker_medium_skin_tone": "👩🏽‍⚕️", "woman_health_worker_tone4": "👩🏾‍⚕️", "woman_health_worker_medium_dark_skin_tone": "👩🏾‍⚕️", "woman_health_worker_tone5": "👩🏿‍⚕️", "woman_health_worker_dark_skin_tone": "👩🏿‍⚕️", "man_health_worker_tone1": "👨🏻‍⚕️", "man_health_worker_light_skin_tone": "👨🏻‍⚕️", "man_health_worker_tone2": "👨🏼‍⚕️", "man_health_worker_medium_light_skin_tone": "👨🏼‍⚕️", "man_health_worker_tone3": "👨🏽‍⚕️", "man_health_worker_medium_skin_tone": "👨🏽‍⚕️", "man_health_worker_tone4": "👨🏾‍⚕️", "man_health_worker_medium_dark_skin_tone": "👨🏾‍⚕️", "man_health_worker_tone5": "👨🏿‍⚕️", "man_health_worker_dark_skin_tone": "👨🏿‍⚕️", "farmer_tone1": "🧑🏻‍🌾", "farmer_light_skin_tone": "🧑🏻‍🌾", "farmer_tone2": "🧑🏼‍🌾", "farmer_medium_light_skin_tone": "🧑🏼‍🌾", "farmer_tone3": "🧑🏽‍🌾", "farmer_medium_skin_tone": "🧑🏽‍🌾", "farmer_tone4": "🧑🏾‍🌾", "farmer_medium_dark_skin_tone": "🧑🏾‍🌾", "farmer_tone5": "🧑🏿‍🌾", "farmer_dark_skin_tone": "🧑🏿‍🌾", "woman_farmer_tone1": "👩🏻‍🌾", "woman_farmer_light_skin_tone": "👩🏻‍🌾", "woman_farmer_tone2": "👩🏼‍🌾", "woman_farmer_medium_light_skin_tone": "👩🏼‍🌾", "woman_farmer_tone3": "👩🏽‍🌾", "woman_farmer_medium_skin_tone": "👩🏽‍🌾", "woman_farmer_tone4": "👩🏾‍🌾", "woman_farmer_medium_dark_skin_tone": "👩🏾‍🌾", "woman_farmer_tone5": "👩🏿‍🌾", "woman_farmer_dark_skin_tone": "👩🏿‍🌾", "man_farmer_tone1": "👨🏻‍🌾", "man_farmer_light_skin_tone": "👨🏻‍🌾", "man_farmer_tone2": "👨🏼‍🌾", "man_farmer_medium_light_skin_tone": "👨🏼‍🌾", "man_farmer_tone3": "👨🏽‍🌾", "man_farmer_medium_skin_tone": "👨🏽‍🌾", "man_farmer_tone4": "👨🏾‍🌾", "man_farmer_medium_dark_skin_tone": "👨🏾‍🌾", "man_farmer_tone5": "👨🏿‍🌾", "man_farmer_dark_skin_tone": "👨🏿‍🌾", "cook_tone1": "🧑🏻‍🍳", "cook_light_skin_tone": "🧑🏻‍🍳", "cook_tone2": "🧑🏼‍🍳", "cook_medium_light_skin_tone": "🧑🏼‍🍳", "cook_tone3": "🧑🏽‍🍳", "cook_medium_skin_tone": "🧑🏽‍🍳", "cook_tone4": "🧑🏾‍🍳", "cook_medium_dark_skin_tone": "🧑🏾‍🍳", "cook_tone5": "🧑🏿‍🍳", "cook_dark_skin_tone": "🧑🏿‍🍳", "woman_cook_tone1": "👩🏻‍🍳", "woman_cook_light_skin_tone": "👩🏻‍🍳", "woman_cook_tone2": "👩🏼‍🍳", "woman_cook_medium_light_skin_tone": "👩🏼‍🍳", "woman_cook_tone3": "👩🏽‍🍳", "woman_cook_medium_skin_tone": "👩🏽‍🍳", "woman_cook_tone4": "👩🏾‍🍳", "woman_cook_medium_dark_skin_tone": "👩🏾‍🍳", "woman_cook_tone5": "👩🏿‍🍳", "woman_cook_dark_skin_tone": "👩🏿‍🍳", "man_cook_tone1": "👨🏻‍🍳", "man_cook_light_skin_tone": "👨🏻‍🍳", "man_cook_tone2": "👨🏼‍🍳", "man_cook_medium_light_skin_tone": "👨🏼‍🍳", "man_cook_tone3": "👨🏽‍🍳", "man_cook_medium_skin_tone": "👨🏽‍🍳", "man_cook_tone4": "👨🏾‍🍳", "man_cook_medium_dark_skin_tone": "👨🏾‍🍳", "man_cook_tone5": "👨🏿‍🍳", "man_cook_dark_skin_tone": "👨🏿‍🍳", "student_tone1": "🧑🏻‍🎓", "student_light_skin_tone": "🧑🏻‍🎓", "student_tone2": "🧑🏼‍🎓", "student_medium_light_skin_tone": "🧑🏼‍🎓", "student_tone3": "🧑🏽‍🎓", "student_medium_skin_tone": "🧑🏽‍🎓", "student_tone4": "🧑🏾‍🎓", "student_medium_dark_skin_tone": "🧑🏾‍🎓", "student_tone5": "🧑🏿‍🎓", "student_dark_skin_tone": "🧑🏿‍🎓", "woman_student_tone1": "👩🏻‍🎓", "woman_student_light_skin_tone": "👩🏻‍🎓", "woman_student_tone2": "👩🏼‍🎓", "woman_student_medium_light_skin_tone": "👩🏼‍🎓", "woman_student_tone3": "👩🏽‍🎓", "woman_student_medium_skin_tone": "👩🏽‍🎓", "woman_student_tone4": "👩🏾‍🎓", "woman_student_medium_dark_skin_tone": "👩🏾‍🎓", "woman_student_tone5": "👩🏿‍🎓", "woman_student_dark_skin_tone": "👩🏿‍🎓", "man_student_tone1": "👨🏻‍🎓", "man_student_light_skin_tone": "👨🏻‍🎓", "man_student_tone2": "👨🏼‍🎓", "man_student_medium_light_skin_tone": "👨🏼‍🎓", "man_student_tone3": "👨🏽‍🎓", "man_student_medium_skin_tone": "👨🏽‍🎓", "man_student_tone4": "👨🏾‍🎓", "man_student_medium_dark_skin_tone": "👨🏾‍🎓", "man_student_tone5": "👨🏿‍🎓", "man_student_dark_skin_tone": "👨🏿‍🎓", "singer_tone1": "🧑🏻‍🎤", "singer_light_skin_tone": "🧑🏻‍🎤", "singer_tone2": "🧑🏼‍🎤", "singer_medium_light_skin_tone": "🧑🏼‍🎤", "singer_tone3": "🧑🏽‍🎤", "singer_medium_skin_tone": "🧑🏽‍🎤", "singer_tone4": "🧑🏾‍🎤", "singer_medium_dark_skin_tone": "🧑🏾‍🎤", "singer_tone5": "🧑🏿‍🎤", "singer_dark_skin_tone": "🧑🏿‍🎤", "woman_singer_tone1": "👩🏻‍🎤", "woman_singer_light_skin_tone": "👩🏻‍🎤", "woman_singer_tone2": "👩🏼‍🎤", "woman_singer_medium_light_skin_tone": "👩🏼‍🎤", "woman_singer_tone3": "👩🏽‍🎤", "woman_singer_medium_skin_tone": "👩🏽‍🎤", "woman_singer_tone4": "👩🏾‍🎤", "woman_singer_medium_dark_skin_tone": "👩🏾‍🎤", "woman_singer_tone5": "👩🏿‍🎤", "woman_singer_dark_skin_tone": "👩🏿‍🎤", "man_singer_tone1": "👨🏻‍🎤", "man_singer_light_skin_tone": "👨🏻‍🎤", "man_singer_tone2": "👨🏼‍🎤", "man_singer_medium_light_skin_tone": "👨🏼‍🎤", "man_singer_tone3": "👨🏽‍🎤", "man_singer_medium_skin_tone": "👨🏽‍🎤", "man_singer_tone4": "👨🏾‍🎤", "man_singer_medium_dark_skin_tone": "👨🏾‍🎤", "man_singer_tone5": "👨🏿‍🎤", "man_singer_dark_skin_tone": "👨🏿‍🎤", "teacher_tone1": "🧑🏻‍🏫", "teacher_light_skin_tone": "🧑🏻‍🏫", "teacher_tone2": "🧑🏼‍🏫", "teacher_medium_light_skin_tone": "🧑🏼‍🏫", "teacher_tone3": "🧑🏽‍🏫", "teacher_medium_skin_tone": "🧑🏽‍🏫", "teacher_tone4": "🧑🏾‍🏫", "teacher_medium_dark_skin_tone": "🧑🏾‍🏫", "teacher_tone5": "🧑🏿‍🏫", "teacher_dark_skin_tone": "🧑🏿‍🏫", "woman_teacher_tone1": "👩🏻‍🏫", "woman_teacher_light_skin_tone": "👩🏻‍🏫", "woman_teacher_tone2": "👩🏼‍🏫", "woman_teacher_medium_light_skin_tone": "👩🏼‍🏫", "woman_teacher_tone3": "👩🏽‍🏫", "woman_teacher_medium_skin_tone": "👩🏽‍🏫", "woman_teacher_tone4": "👩🏾‍🏫", "woman_teacher_medium_dark_skin_tone": "👩🏾‍🏫", "woman_teacher_tone5": "👩🏿‍🏫", "woman_teacher_dark_skin_tone": "👩🏿‍🏫", "man_teacher_tone1": "👨🏻‍🏫", "man_teacher_light_skin_tone": "👨🏻‍🏫", "man_teacher_tone2": "👨🏼‍🏫", "man_teacher_medium_light_skin_tone": "👨🏼‍🏫", "man_teacher_tone3": "👨🏽‍🏫", "man_teacher_medium_skin_tone": "👨🏽‍🏫", "man_teacher_tone4": "👨🏾‍🏫", "man_teacher_medium_dark_skin_tone": "👨🏾‍🏫", "man_teacher_tone5": "👨🏿‍🏫", "man_teacher_dark_skin_tone": "👨🏿‍🏫", "factory_worker_tone1": "🧑🏻‍🏭", "factory_worker_light_skin_tone": "🧑🏻‍🏭", "factory_worker_tone2": "🧑🏼‍🏭", "factory_worker_medium_light_skin_tone": "🧑🏼‍🏭", "factory_worker_tone3": "🧑🏽‍🏭", "factory_worker_medium_skin_tone": "🧑🏽‍🏭", "factory_worker_tone4": "🧑🏾‍🏭", "factory_worker_medium_dark_skin_tone": "🧑🏾‍🏭", "factory_worker_tone5": "🧑🏿‍🏭", "factory_worker_dark_skin_tone": "🧑🏿‍🏭", "woman_factory_worker_tone1": "👩🏻‍🏭", "woman_factory_worker_light_skin_tone": "👩🏻‍🏭", "woman_factory_worker_tone2": "👩🏼‍🏭", "woman_factory_worker_medium_light_skin_tone": "👩🏼‍🏭", "woman_factory_worker_tone3": "👩🏽‍🏭", "woman_factory_worker_medium_skin_tone": "👩🏽‍🏭", "woman_factory_worker_tone4": "👩🏾‍🏭", "woman_factory_worker_medium_dark_skin_tone": "👩🏾‍🏭", "woman_factory_worker_tone5": "👩🏿‍🏭", "woman_factory_worker_dark_skin_tone": "👩🏿‍🏭", "man_factory_worker_tone1": "👨🏻‍🏭", "man_factory_worker_light_skin_tone": "👨🏻‍🏭", "man_factory_worker_tone2": "👨🏼‍🏭", "man_factory_worker_medium_light_skin_tone": "👨🏼‍🏭", "man_factory_worker_tone3": "👨🏽‍🏭", "man_factory_worker_medium_skin_tone": "👨🏽‍🏭", "man_factory_worker_tone4": "👨🏾‍🏭", "man_factory_worker_medium_dark_skin_tone": "👨🏾‍🏭", "man_factory_worker_tone5": "👨🏿‍🏭", "man_factory_worker_dark_skin_tone": "👨🏿‍🏭", "technologist_tone1": "🧑🏻‍💻", "technologist_light_skin_tone": "🧑🏻‍💻", "technologist_tone2": "🧑🏼‍💻", "technologist_medium_light_skin_tone": "🧑🏼‍💻", "technologist_tone3": "🧑🏽‍💻", "technologist_medium_skin_tone": "🧑🏽‍💻", "technologist_tone4": "🧑🏾‍💻", "technologist_medium_dark_skin_tone": "🧑🏾‍💻", "technologist_tone5": "🧑🏿‍💻", "technologist_dark_skin_tone": "🧑🏿‍💻", "woman_technologist_tone1": "👩🏻‍💻", "woman_technologist_light_skin_tone": "👩🏻‍💻", "woman_technologist_tone2": "👩🏼‍💻", "woman_technologist_medium_light_skin_tone": "👩🏼‍💻", "woman_technologist_tone3": "👩🏽‍💻", "woman_technologist_medium_skin_tone": "👩🏽‍💻", "woman_technologist_tone4": "👩🏾‍💻", "woman_technologist_medium_dark_skin_tone": "👩🏾‍💻", "woman_technologist_tone5": "👩🏿‍💻", "woman_technologist_dark_skin_tone": "👩🏿‍💻", "man_technologist_tone1": "👨🏻‍💻", "man_technologist_light_skin_tone": "👨🏻‍💻", "man_technologist_tone2": "👨🏼‍💻", "man_technologist_medium_light_skin_tone": "👨🏼‍💻", "man_technologist_tone3": "👨🏽‍💻", "man_technologist_medium_skin_tone": "👨🏽‍💻", "man_technologist_tone4": "👨🏾‍💻", "man_technologist_medium_dark_skin_tone": "👨🏾‍💻", "man_technologist_tone5": "👨🏿‍💻", "man_technologist_dark_skin_tone": "👨🏿‍💻", "office_worker_tone1": "🧑🏻‍💼", "office_worker_light_skin_tone": "🧑🏻‍💼", "office_worker_tone2": "🧑🏼‍💼", "office_worker_medium_light_skin_tone": "🧑🏼‍💼", "office_worker_tone3": "🧑🏽‍💼", "office_worker_medium_skin_tone": "🧑🏽‍💼", "office_worker_tone4": "🧑🏾‍💼", "office_worker_medium_dark_skin_tone": "🧑🏾‍💼", "office_worker_tone5": "🧑🏿‍💼", "office_worker_dark_skin_tone": "🧑🏿‍💼", "woman_office_worker_tone1": "👩🏻‍💼", "woman_office_worker_light_skin_tone": "👩🏻‍💼", "woman_office_worker_tone2": "👩🏼‍💼", "woman_office_worker_medium_light_skin_tone": "👩🏼‍💼", "woman_office_worker_tone3": "👩🏽‍💼", "woman_office_worker_medium_skin_tone": "👩🏽‍💼", "woman_office_worker_tone4": "👩🏾‍💼", "woman_office_worker_medium_dark_skin_tone": "👩🏾‍💼", "woman_office_worker_tone5": "👩🏿‍💼", "woman_office_worker_dark_skin_tone": "👩🏿‍💼", "man_office_worker_tone1": "👨🏻‍💼", "man_office_worker_light_skin_tone": "👨🏻‍💼", "man_office_worker_tone2": "👨🏼‍💼", "man_office_worker_medium_light_skin_tone": "👨🏼‍💼", "man_office_worker_tone3": "👨🏽‍💼", "man_office_worker_medium_skin_tone": "👨🏽‍💼", "man_office_worker_tone4": "👨🏾‍💼", "man_office_worker_medium_dark_skin_tone": "👨🏾‍💼", "man_office_worker_tone5": "👨🏿‍💼", "man_office_worker_dark_skin_tone": "👨🏿‍💼", "mechanic_tone1": "🧑🏻‍🔧", "mechanic_light_skin_tone": "🧑🏻‍🔧", "mechanic_tone2": "🧑🏼‍🔧", "mechanic_medium_light_skin_tone": "🧑🏼‍🔧", "mechanic_tone3": "🧑🏽‍🔧", "mechanic_medium_skin_tone": "🧑🏽‍🔧", "mechanic_tone4": "🧑🏾‍🔧", "mechanic_medium_dark_skin_tone": "🧑🏾‍🔧", "mechanic_tone5": "🧑🏿‍🔧", "mechanic_dark_skin_tone": "🧑🏿‍🔧", "woman_mechanic_tone1": "👩🏻‍🔧", "woman_mechanic_light_skin_tone": "👩🏻‍🔧", "woman_mechanic_tone2": "👩🏼‍🔧", "woman_mechanic_medium_light_skin_tone": "👩🏼‍🔧", "woman_mechanic_tone3": "👩🏽‍🔧", "woman_mechanic_medium_skin_tone": "👩🏽‍🔧", "woman_mechanic_tone4": "👩🏾‍🔧", "woman_mechanic_medium_dark_skin_tone": "👩🏾‍🔧", "woman_mechanic_tone5": "👩🏿‍🔧", "woman_mechanic_dark_skin_tone": "👩🏿‍🔧", "man_mechanic_tone1": "👨🏻‍🔧", "man_mechanic_light_skin_tone": "👨🏻‍🔧", "man_mechanic_tone2": "👨🏼‍🔧", "man_mechanic_medium_light_skin_tone": "👨🏼‍🔧", "man_mechanic_tone3": "👨🏽‍🔧", "man_mechanic_medium_skin_tone": "👨🏽‍🔧", "man_mechanic_tone4": "👨🏾‍🔧", "man_mechanic_medium_dark_skin_tone": "👨🏾‍🔧", "man_mechanic_tone5": "👨🏿‍🔧", "man_mechanic_dark_skin_tone": "👨🏿‍🔧", "scientist_tone1": "🧑🏻‍🔬", "scientist_light_skin_tone": "🧑🏻‍🔬", "scientist_tone2": "🧑🏼‍🔬", "scientist_medium_light_skin_tone": "🧑🏼‍🔬", "scientist_tone3": "🧑🏽‍🔬", "scientist_medium_skin_tone": "🧑🏽‍🔬", "scientist_tone4": "🧑🏾‍🔬", "scientist_medium_dark_skin_tone": "🧑🏾‍🔬", "scientist_tone5": "🧑🏿‍🔬", "scientist_dark_skin_tone": "🧑🏿‍🔬", "woman_scientist_tone1": "👩🏻‍🔬", "woman_scientist_light_skin_tone": "👩🏻‍🔬", "woman_scientist_tone2": "👩🏼‍🔬", "woman_scientist_medium_light_skin_tone": "👩🏼‍🔬", "woman_scientist_tone3": "👩🏽‍🔬", "woman_scientist_medium_skin_tone": "👩🏽‍🔬", "woman_scientist_tone4": "👩🏾‍🔬", "woman_scientist_medium_dark_skin_tone": "👩🏾‍🔬", "woman_scientist_tone5": "👩🏿‍🔬", "woman_scientist_dark_skin_tone": "👩🏿‍🔬", "man_scientist_tone1": "👨🏻‍🔬", "man_scientist_light_skin_tone": "👨🏻‍🔬", "man_scientist_tone2": "👨🏼‍🔬", "man_scientist_medium_light_skin_tone": "👨🏼‍🔬", "man_scientist_tone3": "👨🏽‍🔬", "man_scientist_medium_skin_tone": "👨🏽‍🔬", "man_scientist_tone4": "👨🏾‍🔬", "man_scientist_medium_dark_skin_tone": "👨🏾‍🔬", "man_scientist_tone5": "👨🏿‍🔬", "man_scientist_dark_skin_tone": "👨🏿‍🔬", "artist_tone1": "🧑🏻‍🎨", "artist_light_skin_tone": "🧑🏻‍🎨", "artist_tone2": "🧑🏼‍🎨", "artist_medium_light_skin_tone": "🧑🏼‍🎨", "artist_tone3": "🧑🏽‍🎨", "artist_medium_skin_tone": "🧑🏽‍🎨", "artist_tone4": "🧑🏾‍🎨", "artist_medium_dark_skin_tone": "🧑🏾‍🎨", "artist_tone5": "🧑🏿‍🎨", "artist_dark_skin_tone": "🧑🏿‍🎨", "woman_artist_tone1": "👩🏻‍🎨", "woman_artist_light_skin_tone": "👩🏻‍🎨", "woman_artist_tone2": "👩🏼‍🎨", "woman_artist_medium_light_skin_tone": "👩🏼‍🎨", "woman_artist_tone3": "👩🏽‍🎨", "woman_artist_medium_skin_tone": "👩🏽‍🎨", "woman_artist_tone4": "👩🏾‍🎨", "woman_artist_medium_dark_skin_tone": "👩🏾‍🎨", "woman_artist_tone5": "👩🏿‍🎨", "woman_artist_dark_skin_tone": "👩🏿‍🎨", "man_artist_tone1": "👨🏻‍🎨", "man_artist_light_skin_tone": "👨🏻‍🎨", "man_artist_tone2": "👨🏼‍🎨", "man_artist_medium_light_skin_tone": "👨🏼‍🎨", "man_artist_tone3": "👨🏽‍🎨", "man_artist_medium_skin_tone": "👨🏽‍🎨", "man_artist_tone4": "👨🏾‍🎨", "man_artist_medium_dark_skin_tone": "👨🏾‍🎨", "man_artist_tone5": "👨🏿‍🎨", "man_artist_dark_skin_tone": "👨🏿‍🎨", "firefighter_tone1": "🧑🏻‍🚒", "firefighter_light_skin_tone": "🧑🏻‍🚒", "firefighter_tone2": "🧑🏼‍🚒", "firefighter_medium_light_skin_tone": "🧑🏼‍🚒", "firefighter_tone3": "🧑🏽‍🚒", "firefighter_medium_skin_tone": "🧑🏽‍🚒", "firefighter_tone4": "🧑🏾‍🚒", "firefighter_medium_dark_skin_tone": "🧑🏾‍🚒", "firefighter_tone5": "🧑🏿‍🚒", "firefighter_dark_skin_tone": "🧑🏿‍🚒", "woman_firefighter_tone1": "👩🏻‍🚒", "woman_firefighter_light_skin_tone": "👩🏻‍🚒", "woman_firefighter_tone2": "👩🏼‍🚒", "woman_firefighter_medium_light_skin_tone": "👩🏼‍🚒", "woman_firefighter_tone3": "👩🏽‍🚒", "woman_firefighter_medium_skin_tone": "👩🏽‍🚒", "woman_firefighter_tone4": "👩🏾‍🚒", "woman_firefighter_medium_dark_skin_tone": "👩🏾‍🚒", "woman_firefighter_tone5": "👩🏿‍🚒", "woman_firefighter_dark_skin_tone": "👩🏿‍🚒", "man_firefighter_tone1": "👨🏻‍🚒", "man_firefighter_light_skin_tone": "👨🏻‍🚒", "man_firefighter_tone2": "👨🏼‍🚒", "man_firefighter_medium_light_skin_tone": "👨🏼‍🚒", "man_firefighter_tone3": "👨🏽‍🚒", "man_firefighter_medium_skin_tone": "👨🏽‍🚒", "man_firefighter_tone4": "👨🏾‍🚒", "man_firefighter_medium_dark_skin_tone": "👨🏾‍🚒", "man_firefighter_tone5": "👨🏿‍🚒", "man_firefighter_dark_skin_tone": "👨🏿‍🚒", "pilot_tone1": "🧑🏻‍✈️", "pilot_light_skin_tone": "🧑🏻‍✈️", "pilot_tone2": "🧑🏼‍✈️", "pilot_medium_light_skin_tone": "🧑🏼‍✈️", "pilot_tone3": "🧑🏽‍✈️", "pilot_medium_skin_tone": "🧑🏽‍✈️", "pilot_tone4": "🧑🏾‍✈️", "pilot_medium_dark_skin_tone": "🧑🏾‍✈️", "pilot_tone5": "🧑🏿‍✈️", "pilot_dark_skin_tone": "🧑🏿‍✈️", "woman_pilot_tone1": "👩🏻‍✈️", "woman_pilot_light_skin_tone": "👩🏻‍✈️", "woman_pilot_tone2": "👩🏼‍✈️", "woman_pilot_medium_light_skin_tone": "👩🏼‍✈️", "woman_pilot_tone3": "👩🏽‍✈️", "woman_pilot_medium_skin_tone": "👩🏽‍✈️", "woman_pilot_tone4": "👩🏾‍✈️", "woman_pilot_medium_dark_skin_tone": "👩🏾‍✈️", "woman_pilot_tone5": "👩🏿‍✈️", "woman_pilot_dark_skin_tone": "👩🏿‍✈️", "man_pilot_tone1": "👨🏻‍✈️", "man_pilot_light_skin_tone": "👨🏻‍✈️", "man_pilot_tone2": "👨🏼‍✈️", "man_pilot_medium_light_skin_tone": "👨🏼‍✈️", "man_pilot_tone3": "👨🏽‍✈️", "man_pilot_medium_skin_tone": "👨🏽‍✈️", "man_pilot_tone4": "👨🏾‍✈️", "man_pilot_medium_dark_skin_tone": "👨🏾‍✈️", "man_pilot_tone5": "👨🏿‍✈️", "man_pilot_dark_skin_tone": "👨🏿‍✈️", "astronaut_tone1": "🧑🏻‍🚀", "astronaut_light_skin_tone": "🧑🏻‍🚀", "astronaut_tone2": "🧑🏼‍🚀", "astronaut_medium_light_skin_tone": "🧑🏼‍🚀", "astronaut_tone3": "🧑🏽‍🚀", "astronaut_medium_skin_tone": "🧑🏽‍🚀", "astronaut_tone4": "🧑🏾‍🚀", "astronaut_medium_dark_skin_tone": "🧑🏾‍🚀", "astronaut_tone5": "🧑🏿‍🚀", "astronaut_dark_skin_tone": "🧑🏿‍🚀", "woman_astronaut_tone1": "👩🏻‍🚀", "woman_astronaut_light_skin_tone": "👩🏻‍🚀", "woman_astronaut_tone2": "👩🏼‍🚀", "woman_astronaut_medium_light_skin_tone": "👩🏼‍🚀", "woman_astronaut_tone3": "👩🏽‍🚀", "woman_astronaut_medium_skin_tone": "👩🏽‍🚀", "woman_astronaut_tone4": "👩🏾‍🚀", "woman_astronaut_medium_dark_skin_tone": "👩🏾‍🚀", "woman_astronaut_tone5": "👩🏿‍🚀", "woman_astronaut_dark_skin_tone": "👩🏿‍🚀", "man_astronaut_tone1": "👨🏻‍🚀", "man_astronaut_light_skin_tone": "👨🏻‍🚀", "man_astronaut_tone2": "👨🏼‍🚀", "man_astronaut_medium_light_skin_tone": "👨🏼‍🚀", "man_astronaut_tone3": "👨🏽‍🚀", "man_astronaut_medium_skin_tone": "👨🏽‍🚀", "man_astronaut_tone4": "👨🏾‍🚀", "man_astronaut_medium_dark_skin_tone": "👨🏾‍🚀", "man_astronaut_tone5": "👨🏿‍🚀", "man_astronaut_dark_skin_tone": "👨🏿‍🚀", "judge_tone1": "🧑🏻‍⚖️", "judge_light_skin_tone": "🧑🏻‍⚖️", "judge_tone2": "🧑🏼‍⚖️", "judge_medium_light_skin_tone": "🧑🏼‍⚖️", "judge_tone3": "🧑🏽‍⚖️", "judge_medium_skin_tone": "🧑🏽‍⚖️", "judge_tone4": "🧑🏾‍⚖️", "judge_medium_dark_skin_tone": "🧑🏾‍⚖️", "judge_tone5": "🧑🏿‍⚖️", "judge_dark_skin_tone": "🧑🏿‍⚖️", "woman_judge_tone1": "👩🏻‍⚖️", "woman_judge_light_skin_tone": "👩🏻‍⚖️", "woman_judge_tone2": "👩🏼‍⚖️", "woman_judge_medium_light_skin_tone": "👩🏼‍⚖️", "woman_judge_tone3": "👩🏽‍⚖️", "woman_judge_medium_skin_tone": "👩🏽‍⚖️", "woman_judge_tone4": "👩🏾‍⚖️", "woman_judge_medium_dark_skin_tone": "👩🏾‍⚖️", "woman_judge_tone5": "👩🏿‍⚖️", "woman_judge_dark_skin_tone": "👩🏿‍⚖️", "man_judge_tone1": "👨🏻‍⚖️", "man_judge_light_skin_tone": "👨🏻‍⚖️", "man_judge_tone2": "👨🏼‍⚖️", "man_judge_medium_light_skin_tone": "👨🏼‍⚖️", "man_judge_tone3": "👨🏽‍⚖️", "man_judge_medium_skin_tone": "👨🏽‍⚖️", "man_judge_tone4": "👨🏾‍⚖️", "man_judge_medium_dark_skin_tone": "👨🏾‍⚖️", "man_judge_tone5": "👨🏿‍⚖️", "man_judge_dark_skin_tone": "👨🏿‍⚖️", "person_with_veil_tone1": "👰🏻", "person_with_veil_tone2": "👰🏼", "person_with_veil_tone3": "👰🏽", "person_with_veil_tone4": "👰🏾", "person_with_veil_tone5": "👰🏿", "woman_with_veil_tone1": "👰🏻‍♀️", "woman_with_veil_light_skin_tone": "👰🏻‍♀️", "woman_with_veil_tone2": "👰🏼‍♀️", "woman_with_veil_medium_light_skin_tone": "👰🏼‍♀️", "woman_with_veil_tone3": "👰🏽‍♀️", "woman_with_veil_medium_skin_tone": "👰🏽‍♀️", "woman_with_veil_tone4": "👰🏾‍♀️", "woman_with_veil_medium_dark_skin_tone": "👰🏾‍♀️", "woman_with_veil_tone5": "👰🏿‍♀️", "woman_with_veil_dark_skin_tone": "👰🏿‍♀️", "man_with_veil_tone1": "👰🏻‍♂️", "man_with_veil_light_skin_tone": "👰🏻‍♂️", "man_with_veil_tone2": "👰🏼‍♂️", "man_with_veil_medium_light_skin_tone": "👰🏼‍♂️", "man_with_veil_tone3": "👰🏽‍♂️", "man_with_veil_medium_skin_tone": "👰🏽‍♂️", "man_with_veil_tone4": "👰🏾‍♂️", "man_with_veil_medium_dark_skin_tone": "👰🏾‍♂️", "man_with_veil_tone5": "👰🏿‍♂️", "man_with_veil_dark_skin_tone": "👰🏿‍♂️", "person_in_tuxedo_tone1": "🤵🏻", "tuxedo_tone1": "🤵🏻", "person_in_tuxedo_tone2": "🤵🏼", "tuxedo_tone2": "🤵🏼", "person_in_tuxedo_tone3": "🤵🏽", "tuxedo_tone3": "🤵🏽", "person_in_tuxedo_tone4": "🤵🏾", "tuxedo_tone4": "🤵🏾", "person_in_tuxedo_tone5": "🤵🏿", "tuxedo_tone5": "🤵🏿", "woman_in_tuxedo_tone1": "🤵🏻‍♀️", "woman_in_tuxedo_light_skin_tone": "🤵🏻‍♀️", "woman_in_tuxedo_tone2": "🤵🏼‍♀️", "woman_in_tuxedo_medium_light_skin_tone": "🤵🏼‍♀️", "woman_in_tuxedo_tone3": "🤵🏽‍♀️", "woman_in_tuxedo_medium_skin_tone": "🤵🏽‍♀️", "woman_in_tuxedo_tone4": "🤵🏾‍♀️", "woman_in_tuxedo_medium_dark_skin_tone": "🤵🏾‍♀️", "woman_in_tuxedo_tone5": "🤵🏿‍♀️", "woman_in_tuxedo_dark_skin_tone": "🤵🏿‍♀️", "man_in_tuxedo_tone1": "🤵🏻‍♂️", "man_in_tuxedo_light_skin_tone": "🤵🏻‍♂️", "man_in_tuxedo_tone2": "🤵🏼‍♂️", "man_in_tuxedo_medium_light_skin_tone": "🤵🏼‍♂️", "man_in_tuxedo_tone3": "🤵🏽‍♂️", "man_in_tuxedo_medium_skin_tone": "🤵🏽‍♂️", "man_in_tuxedo_tone4": "🤵🏾‍♂️", "man_in_tuxedo_medium_dark_skin_tone": "🤵🏾‍♂️", "man_in_tuxedo_tone5": "🤵🏿‍♂️", "man_in_tuxedo_dark_skin_tone": "🤵🏿‍♂️", "person_with_crown_tone1": "🫅🏻", "person_with_crown_light_skin_tone": "🫅🏻", "person_with_crown_tone2": "🫅🏼", "person_with_crown_medium_light_skin_tone": "🫅🏼", "person_with_crown_tone3": "🫅🏽", "person_with_crown_medium_skin_tone": "🫅🏽", "person_with_crown_tone4": "🫅🏾", "person_with_crown_medium_dark_skin_tone": "🫅🏾", "person_with_crown_tone5": "🫅🏿", "person_with_crown_dark_skin_tone": "🫅🏿", "princess_tone1": "👸🏻", "princess_tone2": "👸🏼", "princess_tone3": "👸🏽", "princess_tone4": "👸🏾", "princess_tone5": "👸🏿", "prince_tone1": "🤴🏻", "prince_tone2": "🤴🏼", "prince_tone3": "🤴🏽", "prince_tone4": "🤴🏾", "prince_tone5": "🤴🏿", "superhero_tone1": "🦸🏻", "superhero_light_skin_tone": "🦸🏻", "superhero_tone2": "🦸🏼", "superhero_medium_light_skin_tone": "🦸🏼", "superhero_tone3": "🦸🏽", "superhero_medium_skin_tone": "🦸🏽", "superhero_tone4": "🦸🏾", "superhero_medium_dark_skin_tone": "🦸🏾", "superhero_tone5": "🦸🏿", "superhero_dark_skin_tone": "🦸🏿", "woman_superhero_tone1": "🦸🏻‍♀️", "woman_superhero_light_skin_tone": "🦸🏻‍♀️", "woman_superhero_tone2": "🦸🏼‍♀️", "woman_superhero_medium_light_skin_tone": "🦸🏼‍♀️", "woman_superhero_tone3": "🦸🏽‍♀️", "woman_superhero_medium_skin_tone": "🦸🏽‍♀️", "woman_superhero_tone4": "🦸🏾‍♀️", "woman_superhero_medium_dark_skin_tone": "🦸🏾‍♀️", "woman_superhero_tone5": "🦸🏿‍♀️", "woman_superhero_dark_skin_tone": "🦸🏿‍♀️", "man_superhero_tone1": "🦸🏻‍♂️", "man_superhero_light_skin_tone": "🦸🏻‍♂️", "man_superhero_tone2": "🦸🏼‍♂️", "man_superhero_medium_light_skin_tone": "🦸🏼‍♂️", "man_superhero_tone3": "🦸🏽‍♂️", "man_superhero_medium_skin_tone": "🦸🏽‍♂️", "man_superhero_tone4": "🦸🏾‍♂️", "man_superhero_medium_dark_skin_tone": "🦸🏾‍♂️", "man_superhero_tone5": "🦸🏿‍♂️", "man_superhero_dark_skin_tone": "🦸🏿‍♂️", "supervillain_tone1": "🦹🏻", "supervillain_light_skin_tone": "🦹🏻", "supervillain_tone2": "🦹🏼", "supervillain_medium_light_skin_tone": "🦹🏼", "supervillain_tone3": "🦹🏽", "supervillain_medium_skin_tone": "🦹🏽", "supervillain_tone4": "🦹🏾", "supervillain_medium_dark_skin_tone": "🦹🏾", "supervillain_tone5": "🦹🏿", "supervillain_dark_skin_tone": "🦹🏿", "woman_supervillain_tone1": "🦹🏻‍♀️", "woman_supervillain_light_skin_tone": "🦹🏻‍♀️", "woman_supervillain_tone2": "🦹🏼‍♀️", "woman_supervillain_medium_light_skin_tone": "🦹🏼‍♀️", "woman_supervillain_tone3": "🦹🏽‍♀️", "woman_supervillain_medium_skin_tone": "🦹🏽‍♀️", "woman_supervillain_tone4": "🦹🏾‍♀️", "woman_supervillain_medium_dark_skin_tone": "🦹🏾‍♀️", "woman_supervillain_tone5": "🦹🏿‍♀️", "woman_supervillain_dark_skin_tone": "🦹🏿‍♀️", "man_supervillain_tone1": "🦹🏻‍♂️", "man_supervillain_light_skin_tone": "🦹🏻‍♂️", "man_supervillain_tone2": "🦹🏼‍♂️", "man_supervillain_medium_light_skin_tone": "🦹🏼‍♂️", "man_supervillain_tone3": "🦹🏽‍♂️", "man_supervillain_medium_skin_tone": "🦹🏽‍♂️", "man_supervillain_tone4": "🦹🏾‍♂️", "man_supervillain_medium_dark_skin_tone": "🦹🏾‍♂️", "man_supervillain_tone5": "🦹🏿‍♂️", "man_supervillain_dark_skin_tone": "🦹🏿‍♂️", "ninja_tone1": "🥷🏻", "ninja_light_skin_tone": "🥷🏻", "ninja_tone2": "🥷🏼", "ninja_medium_light_skin_tone": "🥷🏼", "ninja_tone3": "🥷🏽", "ninja_medium_skin_tone": "🥷🏽", "ninja_tone4": "🥷🏾", "ninja_medium_dark_skin_tone": "🥷🏾", "ninja_tone5": "🥷🏿", "ninja_dark_skin_tone": "🥷🏿", "mx_claus_tone1": "🧑🏻‍🎄", "mx_claus_light_skin_tone": "🧑🏻‍🎄", "mx_claus_tone2": "🧑🏼‍🎄", "mx_claus_medium_light_skin_tone": "🧑🏼‍🎄", "mx_claus_tone3": "🧑🏽‍🎄", "mx_claus_medium_skin_tone": "🧑🏽‍🎄", "mx_claus_tone4": "🧑🏾‍🎄", "mx_claus_medium_dark_skin_tone": "🧑🏾‍🎄", "mx_claus_tone5": "🧑🏿‍🎄", "mx_claus_dark_skin_tone": "🧑🏿‍🎄", "mrs_claus_tone1": "🤶🏻", "mother_christmas_tone1": "🤶🏻", "mrs_claus_tone2": "🤶🏼", "mother_christmas_tone2": "🤶🏼", "mrs_claus_tone3": "🤶🏽", "mother_christmas_tone3": "🤶🏽", "mrs_claus_tone4": "🤶🏾", "mother_christmas_tone4": "🤶🏾", "mrs_claus_tone5": "🤶🏿", "mother_christmas_tone5": "🤶🏿", "santa_tone1": "🎅🏻", "santa_tone2": "🎅🏼", "santa_tone3": "🎅🏽", "santa_tone4": "🎅🏾", "santa_tone5": "🎅🏿", "mage_tone1": "🧙🏻", "mage_light_skin_tone": "🧙🏻", "mage_tone2": "🧙🏼", "mage_medium_light_skin_tone": "🧙🏼", "mage_tone3": "🧙🏽", "mage_medium_skin_tone": "🧙🏽", "mage_tone4": "🧙🏾", "mage_medium_dark_skin_tone": "🧙🏾", "mage_tone5": "🧙🏿", "mage_dark_skin_tone": "🧙🏿", "woman_mage_tone1": "🧙🏻‍♀️", "woman_mage_light_skin_tone": "🧙🏻‍♀️", "woman_mage_tone2": "🧙🏼‍♀️", "woman_mage_medium_light_skin_tone": "🧙🏼‍♀️", "woman_mage_tone3": "🧙🏽‍♀️", "woman_mage_medium_skin_tone": "🧙🏽‍♀️", "woman_mage_tone4": "🧙🏾‍♀️", "woman_mage_medium_dark_skin_tone": "🧙🏾‍♀️", "woman_mage_tone5": "🧙🏿‍♀️", "woman_mage_dark_skin_tone": "🧙🏿‍♀️", "man_mage_tone1": "🧙🏻‍♂️", "man_mage_light_skin_tone": "🧙🏻‍♂️", "man_mage_tone2": "🧙🏼‍♂️", "man_mage_medium_light_skin_tone": "🧙🏼‍♂️", "man_mage_tone3": "🧙🏽‍♂️", "man_mage_medium_skin_tone": "🧙🏽‍♂️", "man_mage_tone4": "🧙🏾‍♂️", "man_mage_medium_dark_skin_tone": "🧙🏾‍♂️", "man_mage_tone5": "🧙🏿‍♂️", "man_mage_dark_skin_tone": "🧙🏿‍♂️", "elf_tone1": "🧝🏻", "elf_light_skin_tone": "🧝🏻", "elf_tone2": "🧝🏼", "elf_medium_light_skin_tone": "🧝🏼", "elf_tone3": "🧝🏽", "elf_medium_skin_tone": "🧝🏽", "elf_tone4": "🧝🏾", "elf_medium_dark_skin_tone": "🧝🏾", "elf_tone5": "🧝🏿", "elf_dark_skin_tone": "🧝🏿", "woman_elf_tone1": "🧝🏻‍♀️", "woman_elf_light_skin_tone": "🧝🏻‍♀️", "woman_elf_tone2": "🧝🏼‍♀️", "woman_elf_medium_light_skin_tone": "🧝🏼‍♀️", "woman_elf_tone3": "🧝🏽‍♀️", "woman_elf_medium_skin_tone": "🧝🏽‍♀️", "woman_elf_tone4": "🧝🏾‍♀️", "woman_elf_medium_dark_skin_tone": "🧝🏾‍♀️", "woman_elf_tone5": "🧝🏿‍♀️", "woman_elf_dark_skin_tone": "🧝🏿‍♀️", "man_elf_tone1": "🧝🏻‍♂️", "man_elf_light_skin_tone": "🧝🏻‍♂️", "man_elf_tone2": "🧝🏼‍♂️", "man_elf_medium_light_skin_tone": "🧝🏼‍♂️", "man_elf_tone3": "🧝🏽‍♂️", "man_elf_medium_skin_tone": "🧝🏽‍♂️", "man_elf_tone4": "🧝🏾‍♂️", "man_elf_medium_dark_skin_tone": "🧝🏾‍♂️", "man_elf_tone5": "🧝🏿‍♂️", "man_elf_dark_skin_tone": "🧝🏿‍♂️", "vampire_tone1": "🧛🏻", "vampire_light_skin_tone": "🧛🏻", "vampire_tone2": "🧛🏼", "vampire_medium_light_skin_tone": "🧛🏼", "vampire_tone3": "🧛🏽", "vampire_medium_skin_tone": "🧛🏽", "vampire_tone4": "🧛🏾", "vampire_medium_dark_skin_tone": "🧛🏾", "vampire_tone5": "🧛🏿", "vampire_dark_skin_tone": "🧛🏿", "woman_vampire_tone1": "🧛🏻‍♀️", "woman_vampire_light_skin_tone": "🧛🏻‍♀️", "woman_vampire_tone2": "🧛🏼‍♀️", "woman_vampire_medium_light_skin_tone": "🧛🏼‍♀️", "woman_vampire_tone3": "🧛🏽‍♀️", "woman_vampire_medium_skin_tone": "🧛🏽‍♀️", "woman_vampire_tone4": "🧛🏾‍♀️", "woman_vampire_medium_dark_skin_tone": "🧛🏾‍♀️", "woman_vampire_tone5": "🧛🏿‍♀️", "woman_vampire_dark_skin_tone": "🧛🏿‍♀️", "man_vampire_tone1": "🧛🏻‍♂️", "man_vampire_light_skin_tone": "🧛🏻‍♂️", "man_vampire_tone2": "🧛🏼‍♂️", "man_vampire_medium_light_skin_tone": "🧛🏼‍♂️", "man_vampire_tone3": "🧛🏽‍♂️", "man_vampire_medium_skin_tone": "🧛🏽‍♂️", "man_vampire_tone4": "🧛🏾‍♂️", "man_vampire_medium_dark_skin_tone": "🧛🏾‍♂️", "man_vampire_tone5": "🧛🏿‍♂️", "man_vampire_dark_skin_tone": "🧛🏿‍♂️", "merperson_tone1": "🧜🏻", "merperson_light_skin_tone": "🧜🏻", "merperson_tone2": "🧜🏼", "merperson_medium_light_skin_tone": "🧜🏼", "merperson_tone3": "🧜🏽", "merperson_medium_skin_tone": "🧜🏽", "merperson_tone4": "🧜🏾", "merperson_medium_dark_skin_tone": "🧜🏾", "merperson_tone5": "🧜🏿", "merperson_dark_skin_tone": "🧜🏿", "mermaid_tone1": "🧜🏻‍♀️", "mermaid_light_skin_tone": "🧜🏻‍♀️", "mermaid_tone2": "🧜🏼‍♀️", "mermaid_medium_light_skin_tone": "🧜🏼‍♀️", "mermaid_tone3": "🧜🏽‍♀️", "mermaid_medium_skin_tone": "🧜🏽‍♀️", "mermaid_tone4": "🧜🏾‍♀️", "mermaid_medium_dark_skin_tone": "🧜🏾‍♀️", "mermaid_tone5": "🧜🏿‍♀️", "mermaid_dark_skin_tone": "🧜🏿‍♀️", "merman_tone1": "🧜🏻‍♂️", "merman_light_skin_tone": "🧜🏻‍♂️", "merman_tone2": "🧜🏼‍♂️", "merman_medium_light_skin_tone": "🧜🏼‍♂️", "merman_tone3": "🧜🏽‍♂️", "merman_medium_skin_tone": "🧜🏽‍♂️", "merman_tone4": "🧜🏾‍♂️", "merman_medium_dark_skin_tone": "🧜🏾‍♂️", "merman_tone5": "🧜🏿‍♂️", "merman_dark_skin_tone": "🧜🏿‍♂️", "fairy_tone1": "🧚🏻", "fairy_light_skin_tone": "🧚🏻", "fairy_tone2": "🧚🏼", "fairy_medium_light_skin_tone": "🧚🏼", "fairy_tone3": "🧚🏽", "fairy_medium_skin_tone": "🧚🏽", "fairy_tone4": "🧚🏾", "fairy_medium_dark_skin_tone": "🧚🏾", "fairy_tone5": "🧚🏿", "fairy_dark_skin_tone": "🧚🏿", "woman_fairy_tone1": "🧚🏻‍♀️", "woman_fairy_light_skin_tone": "🧚🏻‍♀️", "woman_fairy_tone2": "🧚🏼‍♀️", "woman_fairy_medium_light_skin_tone": "🧚🏼‍♀️", "woman_fairy_tone3": "🧚🏽‍♀️", "woman_fairy_medium_skin_tone": "🧚🏽‍♀️", "woman_fairy_tone4": "🧚🏾‍♀️", "woman_fairy_medium_dark_skin_tone": "🧚🏾‍♀️", "woman_fairy_tone5": "🧚🏿‍♀️", "woman_fairy_dark_skin_tone": "🧚🏿‍♀️", "man_fairy_tone1": "🧚🏻‍♂️", "man_fairy_light_skin_tone": "🧚🏻‍♂️", "man_fairy_tone2": "🧚🏼‍♂️", "man_fairy_medium_light_skin_tone": "🧚🏼‍♂️", "man_fairy_tone3": "🧚🏽‍♂️", "man_fairy_medium_skin_tone": "🧚🏽‍♂️", "man_fairy_tone4": "🧚🏾‍♂️", "man_fairy_medium_dark_skin_tone": "🧚🏾‍♂️", "man_fairy_tone5": "🧚🏿‍♂️", "man_fairy_dark_skin_tone": "🧚🏿‍♂️", "angel_tone1": "👼🏻", "angel_tone2": "👼🏼", "angel_tone3": "👼🏽", "angel_tone4": "👼🏾", "angel_tone5": "👼🏿", "pregnant_person_tone1": "🫄🏻", "pregnant_person_light_skin_tone": "🫄🏻", "pregnant_person_tone2": "🫄🏼", "pregnant_person_medium_light_skin_tone": "🫄🏼", "pregnant_person_tone3": "🫄🏽", "pregnant_person_medium_skin_tone": "🫄🏽", "pregnant_person_tone4": "🫄🏾", "pregnant_person_medium_dark_skin_tone": "🫄🏾", "pregnant_person_tone5": "🫄🏿", "pregnant_person_dark_skin_tone": "🫄🏿", "pregnant_woman_tone1": "🤰🏻", "expecting_woman_tone1": "🤰🏻", "pregnant_woman_tone2": "🤰🏼", "expecting_woman_tone2": "🤰🏼", "pregnant_woman_tone3": "🤰🏽", "expecting_woman_tone3": "🤰🏽", "pregnant_woman_tone4": "🤰🏾", "expecting_woman_tone4": "🤰🏾", "pregnant_woman_tone5": "🤰🏿", "expecting_woman_tone5": "🤰🏿", "pregnant_man_tone1": "🫃🏻", "pregnant_man_light_skin_tone": "🫃🏻", "pregnant_man_tone2": "🫃🏼", "pregnant_man_medium_light_skin_tone": "🫃🏼", "pregnant_man_tone3": "🫃🏽", "pregnant_man_medium_skin_tone": "🫃🏽", "pregnant_man_tone4": "🫃🏾", "pregnant_man_medium_dark_skin_tone": "🫃🏾", "pregnant_man_tone5": "🫃🏿", "pregnant_man_dark_skin_tone": "🫃🏿", "breast_feeding_tone1": "🤱🏻", "breast_feeding_light_skin_tone": "🤱🏻", "breast_feeding_tone2": "🤱🏼", "breast_feeding_medium_light_skin_tone": "🤱🏼", "breast_feeding_tone3": "🤱🏽", "breast_feeding_medium_skin_tone": "🤱🏽", "breast_feeding_tone4": "🤱🏾", "breast_feeding_medium_dark_skin_tone": "🤱🏾", "breast_feeding_tone5": "🤱🏿", "breast_feeding_dark_skin_tone": "🤱🏿", "person_feeding_baby_tone1": "🧑🏻‍🍼", "person_feeding_baby_light_skin_tone": "🧑🏻‍🍼", "person_feeding_baby_tone2": "🧑🏼‍🍼", "person_feeding_baby_medium_light_skin_tone": "🧑🏼‍🍼", "person_feeding_baby_tone3": "🧑🏽‍🍼", "person_feeding_baby_medium_skin_tone": "🧑🏽‍🍼", "person_feeding_baby_tone4": "🧑🏾‍🍼", "person_feeding_baby_medium_dark_skin_tone": "🧑🏾‍🍼", "person_feeding_baby_tone5": "🧑🏿‍🍼", "person_feeding_baby_dark_skin_tone": "🧑🏿‍🍼", "woman_feeding_baby_tone1": "👩🏻‍🍼", "woman_feeding_baby_light_skin_tone": "👩🏻‍🍼", "woman_feeding_baby_tone2": "👩🏼‍🍼", "woman_feeding_baby_medium_light_skin_tone": "👩🏼‍🍼", "woman_feeding_baby_tone3": "👩🏽‍🍼", "woman_feeding_baby_medium_skin_tone": "👩🏽‍🍼", "woman_feeding_baby_tone4": "👩🏾‍🍼", "woman_feeding_baby_medium_dark_skin_tone": "👩🏾‍🍼", "woman_feeding_baby_tone5": "👩🏿‍🍼", "woman_feeding_baby_dark_skin_tone": "👩🏿‍🍼", "man_feeding_baby_tone1": "👨🏻‍🍼", "man_feeding_baby_light_skin_tone": "👨🏻‍🍼", "man_feeding_baby_tone2": "👨🏼‍🍼", "man_feeding_baby_medium_light_skin_tone": "👨🏼‍🍼", "man_feeding_baby_tone3": "👨🏽‍🍼", "man_feeding_baby_medium_skin_tone": "👨🏽‍🍼", "man_feeding_baby_tone4": "👨🏾‍🍼", "man_feeding_baby_medium_dark_skin_tone": "👨🏾‍🍼", "man_feeding_baby_tone5": "👨🏿‍🍼", "man_feeding_baby_dark_skin_tone": "👨🏿‍🍼", "person_bowing_tone1": "🙇🏻", "bow_tone1": "🙇🏻", "person_bowing_tone2": "🙇🏼", "bow_tone2": "🙇🏼", "person_bowing_tone3": "🙇🏽", "bow_tone3": "🙇🏽", "person_bowing_tone4": "🙇🏾", "bow_tone4": "🙇🏾", "person_bowing_tone5": "🙇🏿", "bow_tone5": "🙇🏿", "woman_bowing_tone1": "🙇🏻‍♀️", "woman_bowing_light_skin_tone": "🙇🏻‍♀️", "woman_bowing_tone2": "🙇🏼‍♀️", "woman_bowing_medium_light_skin_tone": "🙇🏼‍♀️", "woman_bowing_tone3": "🙇🏽‍♀️", "woman_bowing_medium_skin_tone": "🙇🏽‍♀️", "woman_bowing_tone4": "🙇🏾‍♀️", "woman_bowing_medium_dark_skin_tone": "🙇🏾‍♀️", "woman_bowing_tone5": "🙇🏿‍♀️", "woman_bowing_dark_skin_tone": "🙇🏿‍♀️", "man_bowing_tone1": "🙇🏻‍♂️", "man_bowing_light_skin_tone": "🙇🏻‍♂️", "man_bowing_tone2": "🙇🏼‍♂️", "man_bowing_medium_light_skin_tone": "🙇🏼‍♂️", "man_bowing_tone3": "🙇🏽‍♂️", "man_bowing_medium_skin_tone": "🙇🏽‍♂️", "man_bowing_tone4": "🙇🏾‍♂️", "man_bowing_medium_dark_skin_tone": "🙇🏾‍♂️", "man_bowing_tone5": "🙇🏿‍♂️", "man_bowing_dark_skin_tone": "🙇🏿‍♂️", "person_tipping_hand_tone1": "💁🏻", "information_desk_person_tone1": "💁🏻", "person_tipping_hand_tone2": "💁🏼", "information_desk_person_tone2": "💁🏼", "person_tipping_hand_tone3": "💁🏽", "information_desk_person_tone3": "💁🏽", "person_tipping_hand_tone4": "💁🏾", "information_desk_person_tone4": "💁🏾", "person_tipping_hand_tone5": "💁🏿", "information_desk_person_tone5": "💁🏿", "woman_tipping_hand_tone1": "💁🏻‍♀️", "woman_tipping_hand_light_skin_tone": "💁🏻‍♀️", "woman_tipping_hand_tone2": "💁🏼‍♀️", "woman_tipping_hand_medium_light_skin_tone": "💁🏼‍♀️", "woman_tipping_hand_tone3": "💁🏽‍♀️", "woman_tipping_hand_medium_skin_tone": "💁🏽‍♀️", "woman_tipping_hand_tone4": "💁🏾‍♀️", "woman_tipping_hand_medium_dark_skin_tone": "💁🏾‍♀️", "woman_tipping_hand_tone5": "💁🏿‍♀️", "woman_tipping_hand_dark_skin_tone": "💁🏿‍♀️", "man_tipping_hand_tone1": "💁🏻‍♂️", "man_tipping_hand_light_skin_tone": "💁🏻‍♂️", "man_tipping_hand_tone2": "💁🏼‍♂️", "man_tipping_hand_medium_light_skin_tone": "💁🏼‍♂️", "man_tipping_hand_tone3": "💁🏽‍♂️", "man_tipping_hand_medium_skin_tone": "💁🏽‍♂️", "man_tipping_hand_tone4": "💁🏾‍♂️", "man_tipping_hand_medium_dark_skin_tone": "💁🏾‍♂️", "man_tipping_hand_tone5": "💁🏿‍♂️", "man_tipping_hand_dark_skin_tone": "💁🏿‍♂️", "person_gesturing_no_tone1": "🙅🏻", "no_good_tone1": "🙅🏻", "person_gesturing_no_tone2": "🙅🏼", "no_good_tone2": "🙅🏼", "person_gesturing_no_tone3": "🙅🏽", "no_good_tone3": "🙅🏽", "person_gesturing_no_tone4": "🙅🏾", "no_good_tone4": "🙅🏾", "person_gesturing_no_tone5": "🙅🏿", "no_good_tone5": "🙅🏿", "woman_gesturing_no_tone1": "🙅🏻‍♀️", "woman_gesturing_no_light_skin_tone": "🙅🏻‍♀️", "woman_gesturing_no_tone2": "🙅🏼‍♀️", "woman_gesturing_no_medium_light_skin_tone": "🙅🏼‍♀️", "woman_gesturing_no_tone3": "🙅🏽‍♀️", "woman_gesturing_no_medium_skin_tone": "🙅🏽‍♀️", "woman_gesturing_no_tone4": "🙅🏾‍♀️", "woman_gesturing_no_medium_dark_skin_tone": "🙅🏾‍♀️", "woman_gesturing_no_tone5": "🙅🏿‍♀️", "woman_gesturing_no_dark_skin_tone": "🙅🏿‍♀️", "man_gesturing_no_tone1": "🙅🏻‍♂️", "man_gesturing_no_light_skin_tone": "🙅🏻‍♂️", "man_gesturing_no_tone2": "🙅🏼‍♂️", "man_gesturing_no_medium_light_skin_tone": "🙅🏼‍♂️", "man_gesturing_no_tone3": "🙅🏽‍♂️", "man_gesturing_no_medium_skin_tone": "🙅🏽‍♂️", "man_gesturing_no_tone4": "🙅🏾‍♂️", "man_gesturing_no_medium_dark_skin_tone": "🙅🏾‍♂️", "man_gesturing_no_tone5": "🙅🏿‍♂️", "man_gesturing_no_dark_skin_tone": "🙅🏿‍♂️", "person_gesturing_ok_tone1": "🙆🏻", "person_gesturing_ok_tone2": "🙆🏼", "person_gesturing_ok_tone3": "🙆🏽", "person_gesturing_ok_tone4": "🙆🏾", "person_gesturing_ok_tone5": "🙆🏿", "woman_gesturing_ok_tone1": "🙆🏻‍♀️", "woman_gesturing_ok_light_skin_tone": "🙆🏻‍♀️", "woman_gesturing_ok_tone2": "🙆🏼‍♀️", "woman_gesturing_ok_medium_light_skin_tone": "🙆🏼‍♀️", "woman_gesturing_ok_tone3": "🙆🏽‍♀️", "woman_gesturing_ok_medium_skin_tone": "🙆🏽‍♀️", "woman_gesturing_ok_tone4": "🙆🏾‍♀️", "woman_gesturing_ok_medium_dark_skin_tone": "🙆🏾‍♀️", "woman_gesturing_ok_tone5": "🙆🏿‍♀️", "woman_gesturing_ok_dark_skin_tone": "🙆🏿‍♀️", "man_gesturing_ok_tone1": "🙆🏻‍♂️", "man_gesturing_ok_light_skin_tone": "🙆🏻‍♂️", "man_gesturing_ok_tone2": "🙆🏼‍♂️", "man_gesturing_ok_medium_light_skin_tone": "🙆🏼‍♂️", "man_gesturing_ok_tone3": "🙆🏽‍♂️", "man_gesturing_ok_medium_skin_tone": "🙆🏽‍♂️", "man_gesturing_ok_tone4": "🙆🏾‍♂️", "man_gesturing_ok_medium_dark_skin_tone": "🙆🏾‍♂️", "man_gesturing_ok_tone5": "🙆🏿‍♂️", "man_gesturing_ok_dark_skin_tone": "🙆🏿‍♂️", "person_raising_hand_tone1": "🙋🏻", "raising_hand_tone1": "🙋🏻", "person_raising_hand_tone2": "🙋🏼", "raising_hand_tone2": "🙋🏼", "person_raising_hand_tone3": "🙋🏽", "raising_hand_tone3": "🙋🏽", "person_raising_hand_tone4": "🙋🏾", "raising_hand_tone4": "🙋🏾", "person_raising_hand_tone5": "🙋🏿", "raising_hand_tone5": "🙋🏿", "woman_raising_hand_tone1": "🙋🏻‍♀️", "woman_raising_hand_light_skin_tone": "🙋🏻‍♀️", "woman_raising_hand_tone2": "🙋🏼‍♀️", "woman_raising_hand_medium_light_skin_tone": "🙋🏼‍♀️", "woman_raising_hand_tone3": "🙋🏽‍♀️", "woman_raising_hand_medium_skin_tone": "🙋🏽‍♀️", "woman_raising_hand_tone4": "🙋🏾‍♀️", "woman_raising_hand_medium_dark_skin_tone": "🙋🏾‍♀️", "woman_raising_hand_tone5": "🙋🏿‍♀️", "woman_raising_hand_dark_skin_tone": "🙋🏿‍♀️", "man_raising_hand_tone1": "🙋🏻‍♂️", "man_raising_hand_light_skin_tone": "🙋🏻‍♂️", "man_raising_hand_tone2": "🙋🏼‍♂️", "man_raising_hand_medium_light_skin_tone": "🙋🏼‍♂️", "man_raising_hand_tone3": "🙋🏽‍♂️", "man_raising_hand_medium_skin_tone": "🙋🏽‍♂️", "man_raising_hand_tone4": "🙋🏾‍♂️", "man_raising_hand_medium_dark_skin_tone": "🙋🏾‍♂️", "man_raising_hand_tone5": "🙋🏿‍♂️", "man_raising_hand_dark_skin_tone": "🙋🏿‍♂️", "deaf_person_tone1": "🧏🏻", "deaf_person_light_skin_tone": "🧏🏻", "deaf_person_tone2": "🧏🏼", "deaf_person_medium_light_skin_tone": "🧏🏼", "deaf_person_tone3": "🧏🏽", "deaf_person_medium_skin_tone": "🧏🏽", "deaf_person_tone4": "🧏🏾", "deaf_person_medium_dark_skin_tone": "🧏🏾", "deaf_person_tone5": "🧏🏿", "deaf_person_dark_skin_tone": "🧏🏿", "deaf_woman_tone1": "🧏🏻‍♀️", "deaf_woman_light_skin_tone": "🧏🏻‍♀️", "deaf_woman_tone2": "🧏🏼‍♀️", "deaf_woman_medium_light_skin_tone": "🧏🏼‍♀️", "deaf_woman_tone3": "🧏🏽‍♀️", "deaf_woman_medium_skin_tone": "🧏🏽‍♀️", "deaf_woman_tone4": "🧏🏾‍♀️", "deaf_woman_medium_dark_skin_tone": "🧏🏾‍♀️", "deaf_woman_tone5": "🧏🏿‍♀️", "deaf_woman_dark_skin_tone": "🧏🏿‍♀️", "deaf_man_tone1": "🧏🏻‍♂️", "deaf_man_light_skin_tone": "🧏🏻‍♂️", "deaf_man_tone2": "🧏🏼‍♂️", "deaf_man_medium_light_skin_tone": "🧏🏼‍♂️", "deaf_man_tone3": "🧏🏽‍♂️", "deaf_man_medium_skin_tone": "🧏🏽‍♂️", "deaf_man_tone4": "🧏🏾‍♂️", "deaf_man_medium_dark_skin_tone": "🧏🏾‍♂️", "deaf_man_tone5": "🧏🏿‍♂️", "deaf_man_dark_skin_tone": "🧏🏿‍♂️", "person_facepalming_tone1": "🤦🏻", "face_palm_tone1": "🤦🏻", "facepalm_tone1": "🤦🏻", "person_facepalming_tone2": "🤦🏼", "face_palm_tone2": "🤦🏼", "facepalm_tone2": "🤦🏼", "person_facepalming_tone3": "🤦🏽", "face_palm_tone3": "🤦🏽", "facepalm_tone3": "🤦🏽", "person_facepalming_tone4": "🤦🏾", "face_palm_tone4": "🤦🏾", "facepalm_tone4": "🤦🏾", "person_facepalming_tone5": "🤦🏿", "face_palm_tone5": "🤦🏿", "facepalm_tone5": "🤦🏿", "woman_facepalming_tone1": "🤦🏻‍♀️", "woman_facepalming_light_skin_tone": "🤦🏻‍♀️", "woman_facepalming_tone2": "🤦🏼‍♀️", "woman_facepalming_medium_light_skin_tone": "🤦🏼‍♀️", "woman_facepalming_tone3": "🤦🏽‍♀️", "woman_facepalming_medium_skin_tone": "🤦🏽‍♀️", "woman_facepalming_tone4": "🤦🏾‍♀️", "woman_facepalming_medium_dark_skin_tone": "🤦🏾‍♀️", "woman_facepalming_tone5": "🤦🏿‍♀️", "woman_facepalming_dark_skin_tone": "🤦🏿‍♀️", "man_facepalming_tone1": "🤦🏻‍♂️", "man_facepalming_light_skin_tone": "🤦🏻‍♂️", "man_facepalming_tone2": "🤦🏼‍♂️", "man_facepalming_medium_light_skin_tone": "🤦🏼‍♂️", "man_facepalming_tone3": "🤦🏽‍♂️", "man_facepalming_medium_skin_tone": "🤦🏽‍♂️", "man_facepalming_tone4": "🤦🏾‍♂️", "man_facepalming_medium_dark_skin_tone": "🤦🏾‍♂️", "man_facepalming_tone5": "🤦🏿‍♂️", "man_facepalming_dark_skin_tone": "🤦🏿‍♂️", "person_shrugging_tone1": "🤷🏻", "shrug_tone1": "🤷🏻", "person_shrugging_tone2": "🤷🏼", "shrug_tone2": "🤷🏼", "person_shrugging_tone3": "🤷🏽", "shrug_tone3": "🤷🏽", "person_shrugging_tone4": "🤷🏾", "shrug_tone4": "🤷🏾", "person_shrugging_tone5": "🤷🏿", "shrug_tone5": "🤷🏿", "woman_shrugging_tone1": "🤷🏻‍♀️", "woman_shrugging_light_skin_tone": "🤷🏻‍♀️", "woman_shrugging_tone2": "🤷🏼‍♀️", "woman_shrugging_medium_light_skin_tone": "🤷🏼‍♀️", "woman_shrugging_tone3": "🤷🏽‍♀️", "woman_shrugging_medium_skin_tone": "🤷🏽‍♀️", "woman_shrugging_tone4": "🤷🏾‍♀️", "woman_shrugging_medium_dark_skin_tone": "🤷🏾‍♀️", "woman_shrugging_tone5": "🤷🏿‍♀️", "woman_shrugging_dark_skin_tone": "🤷🏿‍♀️", "man_shrugging_tone1": "🤷🏻‍♂️", "man_shrugging_light_skin_tone": "🤷🏻‍♂️", "man_shrugging_tone2": "🤷🏼‍♂️", "man_shrugging_medium_light_skin_tone": "🤷🏼‍♂️", "man_shrugging_tone3": "🤷🏽‍♂️", "man_shrugging_medium_skin_tone": "🤷🏽‍♂️", "man_shrugging_tone4": "🤷🏾‍♂️", "man_shrugging_medium_dark_skin_tone": "🤷🏾‍♂️", "man_shrugging_tone5": "🤷🏿‍♂️", "man_shrugging_dark_skin_tone": "🤷🏿‍♂️", "person_pouting_tone1": "🙎🏻", "person_with_pouting_face_tone1": "🙎🏻", "person_pouting_tone2": "🙎🏼", "person_with_pouting_face_tone2": "🙎🏼", "person_pouting_tone3": "🙎🏽", "person_with_pouting_face_tone3": "🙎🏽", "person_pouting_tone4": "🙎🏾", "person_with_pouting_face_tone4": "🙎🏾", "person_pouting_tone5": "🙎🏿", "person_with_pouting_face_tone5": "🙎🏿", "woman_pouting_tone1": "🙎🏻‍♀️", "woman_pouting_light_skin_tone": "🙎🏻‍♀️", "woman_pouting_tone2": "🙎🏼‍♀️", "woman_pouting_medium_light_skin_tone": "🙎🏼‍♀️", "woman_pouting_tone3": "🙎🏽‍♀️", "woman_pouting_medium_skin_tone": "🙎🏽‍♀️", "woman_pouting_tone4": "🙎🏾‍♀️", "woman_pouting_medium_dark_skin_tone": "🙎🏾‍♀️", "woman_pouting_tone5": "🙎🏿‍♀️", "woman_pouting_dark_skin_tone": "🙎🏿‍♀️", "man_pouting_tone1": "🙎🏻‍♂️", "man_pouting_light_skin_tone": "🙎🏻‍♂️", "man_pouting_tone2": "🙎🏼‍♂️", "man_pouting_medium_light_skin_tone": "🙎🏼‍♂️", "man_pouting_tone3": "🙎🏽‍♂️", "man_pouting_medium_skin_tone": "🙎🏽‍♂️", "man_pouting_tone4": "🙎🏾‍♂️", "man_pouting_medium_dark_skin_tone": "🙎🏾‍♂️", "man_pouting_tone5": "🙎🏿‍♂️", "man_pouting_dark_skin_tone": "🙎🏿‍♂️", "person_frowning_tone1": "🙍🏻", "person_frowning_tone2": "🙍🏼", "person_frowning_tone3": "🙍🏽", "person_frowning_tone4": "🙍🏾", "person_frowning_tone5": "🙍🏿", "woman_frowning_tone1": "🙍🏻‍♀️", "woman_frowning_light_skin_tone": "🙍🏻‍♀️", "woman_frowning_tone2": "🙍🏼‍♀️", "woman_frowning_medium_light_skin_tone": "🙍🏼‍♀️", "woman_frowning_tone3": "🙍🏽‍♀️", "woman_frowning_medium_skin_tone": "🙍🏽‍♀️", "woman_frowning_tone4": "🙍🏾‍♀️", "woman_frowning_medium_dark_skin_tone": "🙍🏾‍♀️", "woman_frowning_tone5": "🙍🏿‍♀️", "woman_frowning_dark_skin_tone": "🙍🏿‍♀️", "man_frowning_tone1": "🙍🏻‍♂️", "man_frowning_light_skin_tone": "🙍🏻‍♂️", "man_frowning_tone2": "🙍🏼‍♂️", "man_frowning_medium_light_skin_tone": "🙍🏼‍♂️", "man_frowning_tone3": "🙍🏽‍♂️", "man_frowning_medium_skin_tone": "🙍🏽‍♂️", "man_frowning_tone4": "🙍🏾‍♂️", "man_frowning_medium_dark_skin_tone": "🙍🏾‍♂️", "man_frowning_tone5": "🙍🏿‍♂️", "man_frowning_dark_skin_tone": "🙍🏿‍♂️", "person_getting_haircut_tone1": "💇🏻", "haircut_tone1": "💇🏻", "person_getting_haircut_tone2": "💇🏼", "haircut_tone2": "💇🏼", "person_getting_haircut_tone3": "💇🏽", "haircut_tone3": "💇🏽", "person_getting_haircut_tone4": "💇🏾", "haircut_tone4": "💇🏾", "person_getting_haircut_tone5": "💇🏿", "haircut_tone5": "💇🏿", "woman_getting_haircut_tone1": "💇🏻‍♀️", "woman_getting_haircut_light_skin_tone": "💇🏻‍♀️", "woman_getting_haircut_tone2": "💇🏼‍♀️", "woman_getting_haircut_medium_light_skin_tone": "💇🏼‍♀️", "woman_getting_haircut_tone3": "💇🏽‍♀️", "woman_getting_haircut_medium_skin_tone": "💇🏽‍♀️", "woman_getting_haircut_tone4": "💇🏾‍♀️", "woman_getting_haircut_medium_dark_skin_tone": "💇🏾‍♀️", "woman_getting_haircut_tone5": "💇🏿‍♀️", "woman_getting_haircut_dark_skin_tone": "💇🏿‍♀️", "man_getting_haircut_tone1": "💇🏻‍♂️", "man_getting_haircut_light_skin_tone": "💇🏻‍♂️", "man_getting_haircut_tone2": "💇🏼‍♂️", "man_getting_haircut_medium_light_skin_tone": "💇🏼‍♂️", "man_getting_haircut_tone3": "💇🏽‍♂️", "man_getting_haircut_medium_skin_tone": "💇🏽‍♂️", "man_getting_haircut_tone4": "💇🏾‍♂️", "man_getting_haircut_medium_dark_skin_tone": "💇🏾‍♂️", "man_getting_haircut_tone5": "💇🏿‍♂️", "man_getting_haircut_dark_skin_tone": "💇🏿‍♂️", "person_getting_massage_tone1": "💆🏻", "massage_tone1": "💆🏻", "person_getting_massage_tone2": "💆🏼", "massage_tone2": "💆🏼", "person_getting_massage_tone3": "💆🏽", "massage_tone3": "💆🏽", "person_getting_massage_tone4": "💆🏾", "massage_tone4": "💆🏾", "person_getting_massage_tone5": "💆🏿", "massage_tone5": "💆🏿", "woman_getting_face_massage_tone1": "💆🏻‍♀️", "woman_getting_face_massage_light_skin_tone": "💆🏻‍♀️", "woman_getting_face_massage_tone2": "💆🏼‍♀️", "woman_getting_face_massage_medium_light_skin_tone": "💆🏼‍♀️", "woman_getting_face_massage_tone3": "💆🏽‍♀️", "woman_getting_face_massage_medium_skin_tone": "💆🏽‍♀️", "woman_getting_face_massage_tone4": "💆🏾‍♀️", "woman_getting_face_massage_medium_dark_skin_tone": "💆🏾‍♀️", "woman_getting_face_massage_tone5": "💆🏿‍♀️", "woman_getting_face_massage_dark_skin_tone": "💆🏿‍♀️", "man_getting_face_massage_tone1": "💆🏻‍♂️", "man_getting_face_massage_light_skin_tone": "💆🏻‍♂️", "man_getting_face_massage_tone2": "💆🏼‍♂️", "man_getting_face_massage_medium_light_skin_tone": "💆🏼‍♂️", "man_getting_face_massage_tone3": "💆🏽‍♂️", "man_getting_face_massage_medium_skin_tone": "💆🏽‍♂️", "man_getting_face_massage_tone4": "💆🏾‍♂️", "man_getting_face_massage_medium_dark_skin_tone": "💆🏾‍♂️", "man_getting_face_massage_tone5": "💆🏿‍♂️", "man_getting_face_massage_dark_skin_tone": "💆🏿‍♂️", "person_in_steamy_room_tone1": "🧖🏻", "person_in_steamy_room_light_skin_tone": "🧖🏻", "person_in_steamy_room_tone2": "🧖🏼", "person_in_steamy_room_medium_light_skin_tone": "🧖🏼", "person_in_steamy_room_tone3": "🧖🏽", "person_in_steamy_room_medium_skin_tone": "🧖🏽", "person_in_steamy_room_tone4": "🧖🏾", "person_in_steamy_room_medium_dark_skin_tone": "🧖🏾", "person_in_steamy_room_tone5": "🧖🏿", "person_in_steamy_room_dark_skin_tone": "🧖🏿", "woman_in_steamy_room_tone1": "🧖🏻‍♀️", "woman_in_steamy_room_light_skin_tone": "🧖🏻‍♀️", "woman_in_steamy_room_tone2": "🧖🏼‍♀️", "woman_in_steamy_room_medium_light_skin_tone": "🧖🏼‍♀️", "woman_in_steamy_room_tone3": "🧖🏽‍♀️", "woman_in_steamy_room_medium_skin_tone": "🧖🏽‍♀️", "woman_in_steamy_room_tone4": "🧖🏾‍♀️", "woman_in_steamy_room_medium_dark_skin_tone": "🧖🏾‍♀️", "woman_in_steamy_room_tone5": "🧖🏿‍♀️", "woman_in_steamy_room_dark_skin_tone": "🧖🏿‍♀️", "man_in_steamy_room_tone1": "🧖🏻‍♂️", "man_in_steamy_room_light_skin_tone": "🧖🏻‍♂️", "man_in_steamy_room_tone2": "🧖🏼‍♂️", "man_in_steamy_room_medium_light_skin_tone": "🧖🏼‍♂️", "man_in_steamy_room_tone3": "🧖🏽‍♂️", "man_in_steamy_room_medium_skin_tone": "🧖🏽‍♂️", "man_in_steamy_room_tone4": "🧖🏾‍♂️", "man_in_steamy_room_medium_dark_skin_tone": "🧖🏾‍♂️", "man_in_steamy_room_tone5": "🧖🏿‍♂️", "man_in_steamy_room_dark_skin_tone": "🧖🏿‍♂️", "nail_care_tone1": "💅🏻", "nail_care_tone2": "💅🏼", "nail_care_tone3": "💅🏽", "nail_care_tone4": "💅🏾", "nail_care_tone5": "💅🏿", "selfie_tone1": "🤳🏻", "selfie_tone2": "🤳🏼", "selfie_tone3": "🤳🏽", "selfie_tone4": "🤳🏾", "selfie_tone5": "🤳🏿", "dancer_tone1": "💃🏻", "dancer_tone2": "💃🏼", "dancer_tone3": "💃🏽", "dancer_tone4": "💃🏾", "dancer_tone5": "💃🏿", "man_dancing_tone1": "🕺🏻", "male_dancer_tone1": "🕺🏻", "man_dancing_tone2": "🕺🏼", "male_dancer_tone2": "🕺🏼", "man_dancing_tone3": "🕺🏽", "male_dancer_tone3": "🕺🏽", "man_dancing_tone5": "🕺🏿", "male_dancer_tone5": "🕺🏿", "man_dancing_tone4": "🕺🏾", "male_dancer_tone4": "🕺🏾", "levitate_tone1": "🕴🏻", "man_in_business_suit_levitating_tone1": "🕴🏻", "man_in_business_suit_levitating_light_skin_tone": "🕴🏻", "levitate_tone2": "🕴🏼", "man_in_business_suit_levitating_tone2": "🕴🏼", "man_in_business_suit_levitating_medium_light_skin_tone": "🕴🏼", "levitate_tone3": "🕴🏽", "man_in_business_suit_levitating_tone3": "🕴🏽", "man_in_business_suit_levitating_medium_skin_tone": "🕴🏽", "levitate_tone4": "🕴🏾", "man_in_business_suit_levitating_tone4": "🕴🏾", "man_in_business_suit_levitating_medium_dark_skin_tone": "🕴🏾", "levitate_tone5": "🕴🏿", "man_in_business_suit_levitating_tone5": "🕴🏿", "man_in_business_suit_levitating_dark_skin_tone": "🕴🏿", "person_in_manual_wheelchair_tone1": "🧑🏻‍🦽", "person_in_manual_wheelchair_light_skin_tone": "🧑🏻‍🦽", "person_in_manual_wheelchair_tone2": "🧑🏼‍🦽", "person_in_manual_wheelchair_medium_light_skin_tone": "🧑🏼‍🦽", "person_in_manual_wheelchair_tone3": "🧑🏽‍🦽", "person_in_manual_wheelchair_medium_skin_tone": "🧑🏽‍🦽", "person_in_manual_wheelchair_tone4": "🧑🏾‍🦽", "person_in_manual_wheelchair_medium_dark_skin_tone": "🧑🏾‍🦽", "person_in_manual_wheelchair_tone5": "🧑🏿‍🦽", "person_in_manual_wheelchair_dark_skin_tone": "🧑🏿‍🦽", "woman_in_manual_wheelchair_tone1": "👩🏻‍🦽", "woman_in_manual_wheelchair_light_skin_tone": "👩🏻‍🦽", "woman_in_manual_wheelchair_tone2": "👩🏼‍🦽", "woman_in_manual_wheelchair_medium_light_skin_tone": "👩🏼‍🦽", "woman_in_manual_wheelchair_tone3": "👩🏽‍🦽", "woman_in_manual_wheelchair_medium_skin_tone": "👩🏽‍🦽", "woman_in_manual_wheelchair_tone4": "👩🏾‍🦽", "woman_in_manual_wheelchair_medium_dark_skin_tone": "👩🏾‍🦽", "woman_in_manual_wheelchair_tone5": "👩🏿‍🦽", "woman_in_manual_wheelchair_dark_skin_tone": "👩🏿‍🦽", "man_in_manual_wheelchair_tone1": "👨🏻‍🦽", "man_in_manual_wheelchair_light_skin_tone": "👨🏻‍🦽", "man_in_manual_wheelchair_tone2": "👨🏼‍🦽", "man_in_manual_wheelchair_medium_light_skin_tone": "👨🏼‍🦽", "man_in_manual_wheelchair_tone3": "👨🏽‍🦽", "man_in_manual_wheelchair_medium_skin_tone": "👨🏽‍🦽", "man_in_manual_wheelchair_tone4": "👨🏾‍🦽", "man_in_manual_wheelchair_medium_dark_skin_tone": "👨🏾‍🦽", "man_in_manual_wheelchair_tone5": "👨🏿‍🦽", "man_in_manual_wheelchair_dark_skin_tone": "👨🏿‍🦽", "person_in_manual_wheelchair_facing_right_tone1": "🧑🏻‍🦽‍➡️", "person_in_manual_wheelchair_facing_right_light_skin_tone": "🧑🏻‍🦽‍➡️", "person_in_manual_wheelchair_facing_right_tone2": "🧑🏼‍🦽‍➡️", "person_in_manual_wheelchair_facing_right_medium_light_skin_tone": "🧑🏼‍🦽‍➡️", "person_in_manual_wheelchair_facing_right_tone3": "🧑🏽‍🦽‍➡️", "person_in_manual_wheelchair_facing_right_medium_skin_tone": "🧑🏽‍🦽‍➡️", "person_in_manual_wheelchair_facing_right_tone4": "🧑🏾‍🦽‍➡️", "person_in_manual_wheelchair_facing_right_medium_dark_skin_tone": "🧑🏾‍🦽‍➡️", "person_in_manual_wheelchair_facing_right_tone5": "🧑🏿‍🦽‍➡️", "person_in_manual_wheelchair_facing_right_dark_skin_tone": "🧑🏿‍🦽‍➡️", "man_in_manual_wheelchair_facing_right_tone2": "👨🏼‍🦽‍➡️", "man_in_manual_wheelchair_facing_right_medium_light_skin_tone": "👨🏼‍🦽‍➡️", "man_in_manual_wheelchair_facing_right_tone1": "👨🏻‍🦽‍➡️", "man_in_manual_wheelchair_facing_right_light_skin_tone": "👨🏻‍🦽‍➡️", "man_in_manual_wheelchair_facing_right_tone3": "👨🏽‍🦽‍➡️", "man_in_manual_wheelchair_facing_right_medium_skin_tone": "👨🏽‍🦽‍➡️", "man_in_manual_wheelchair_facing_right_tone4": "👨🏾‍🦽‍➡️", "man_in_manual_wheelchair_facing_right_medium_dark_skin_tone": "👨🏾‍🦽‍➡️", "man_in_manual_wheelchair_facing_right_tone5": "👨🏿‍🦽‍➡️", "man_in_manual_wheelchair_facing_right_dark_skin_tone": "👨🏿‍🦽‍➡️", "woman_in_manual_wheelchair_facing_right_tone1": "👩🏻‍🦽‍➡️", "woman_in_manual_wheelchair_facing_right_light_skin_tone": "👩🏻‍🦽‍➡️", "woman_in_manual_wheelchair_facing_right_tone2": "👩🏼‍🦽‍➡️", "woman_in_manual_wheelchair_facing_right_medium_light_skin_tone": "👩🏼‍🦽‍➡️", "woman_in_manual_wheelchair_facing_right_tone3": "👩🏽‍🦽‍➡️", "woman_in_manual_wheelchair_facing_right_medium_skin_tone": "👩🏽‍🦽‍➡️", "woman_in_manual_wheelchair_facing_right_tone4": "👩🏾‍🦽‍➡️", "woman_in_manual_wheelchair_facing_right_medium_dark_skin_tone": "👩🏾‍🦽‍➡️", "woman_in_manual_wheelchair_facing_right_tone5": "👩🏿‍🦽‍➡️", "woman_in_manual_wheelchair_facing_right_dark_skin_tone": "👩🏿‍🦽‍➡️", "person_in_motorized_wheelchair_tone1": "🧑🏻‍🦼", "person_in_motorized_wheelchair_light_skin_tone": "🧑🏻‍🦼", "person_in_motorized_wheelchair_tone2": "🧑🏼‍🦼", "person_in_motorized_wheelchair_medium_light_skin_tone": "🧑🏼‍🦼", "person_in_motorized_wheelchair_tone3": "🧑🏽‍🦼", "person_in_motorized_wheelchair_medium_skin_tone": "🧑🏽‍🦼", "person_in_motorized_wheelchair_tone4": "🧑🏾‍🦼", "person_in_motorized_wheelchair_medium_dark_skin_tone": "🧑🏾‍🦼", "person_in_motorized_wheelchair_tone5": "🧑🏿‍🦼", "person_in_motorized_wheelchair_dark_skin_tone": "🧑🏿‍🦼", "woman_in_motorized_wheelchair_tone1": "👩🏻‍🦼", "woman_in_motorized_wheelchair_light_skin_tone": "👩🏻‍🦼", "woman_in_motorized_wheelchair_tone2": "👩🏼‍🦼", "woman_in_motorized_wheelchair_medium_light_skin_tone": "👩🏼‍🦼", "woman_in_motorized_wheelchair_tone3": "👩🏽‍🦼", "woman_in_motorized_wheelchair_medium_skin_tone": "👩🏽‍🦼", "woman_in_motorized_wheelchair_tone4": "👩🏾‍🦼", "woman_in_motorized_wheelchair_medium_dark_skin_tone": "👩🏾‍🦼", "woman_in_motorized_wheelchair_tone5": "👩🏿‍🦼", "woman_in_motorized_wheelchair_dark_skin_tone": "👩🏿‍🦼", "man_in_motorized_wheelchair_tone1": "👨🏻‍🦼", "man_in_motorized_wheelchair_light_skin_tone": "👨🏻‍🦼", "man_in_motorized_wheelchair_tone2": "👨🏼‍🦼", "man_in_motorized_wheelchair_medium_light_skin_tone": "👨🏼‍🦼", "man_in_motorized_wheelchair_tone3": "👨🏽‍🦼", "man_in_motorized_wheelchair_medium_skin_tone": "👨🏽‍🦼", "man_in_motorized_wheelchair_tone4": "👨🏾‍🦼", "man_in_motorized_wheelchair_medium_dark_skin_tone": "👨🏾‍🦼", "man_in_motorized_wheelchair_tone5": "👨🏿‍🦼", "man_in_motorized_wheelchair_dark_skin_tone": "👨🏿‍🦼", "person_in_motorized_wheelchair_facing_right_tone1": "🧑🏻‍🦼‍➡️", "person_in_motorized_wheelchair_facing_right_light_skin_tone": "🧑🏻‍🦼‍➡️", "person_in_motorized_wheelchair_facing_right_tone2": "🧑🏼‍🦼‍➡️", "person_in_motorized_wheelchair_facing_right_medium_light_skin_tone": "🧑🏼‍🦼‍➡️", "person_in_motorized_wheelchair_facing_right_tone3": "🧑🏽‍🦼‍➡️", "person_in_motorized_wheelchair_facing_right_medium_skin_tone": "🧑🏽‍🦼‍➡️", "person_in_motorized_wheelchair_facing_right_tone4": "🧑🏾‍🦼‍➡️", "person_in_motorized_wheelchair_facing_right_medium_dark_skin_tone": "🧑🏾‍🦼‍➡️", "person_in_motorized_wheelchair_facing_right_tone5": "🧑🏿‍🦼‍➡️", "person_in_motorized_wheelchair_facing_right_dark_skin_tone": "🧑🏿‍🦼‍➡️", "man_in_motorized_wheelchair_facing_right_tone1": "👨🏻‍🦼‍➡️", "man_in_motorized_wheelchair_facing_right_light_skin_tone": "👨🏻‍🦼‍➡️", "man_in_motorized_wheelchair_facing_right_tone2": "👨🏼‍🦼‍➡️", "man_in_motorized_wheelchair_facing_right_medium_light_skin_tone": "👨🏼‍🦼‍➡️", "man_in_motorized_wheelchair_facing_right_tone3": "👨🏽‍🦼‍➡️", "man_in_motorized_wheelchair_facing_right_medium_skin_tone": "👨🏽‍🦼‍➡️", "man_in_motorized_wheelchair_facing_right_tone4": "👨🏾‍🦼‍➡️", "man_in_motorized_wheelchair_facing_right_medium_dark_skin_tone": "👨🏾‍🦼‍➡️", "man_in_motorized_wheelchair_facing_right_tone5": "👨🏿‍🦼‍➡️", "man_in_motorized_wheelchair_facing_right_dark_skin_tone": "👨🏿‍🦼‍➡️", "woman_in_motorized_wheelchair_facing_right_tone1": "👩🏻‍🦼‍➡️", "woman_in_motorized_wheelchair_facing_right_light_skin_tone": "👩🏻‍🦼‍➡️", "woman_in_motorized_wheelchair_facing_right_tone2": "👩🏼‍🦼‍➡️", "woman_in_motorized_wheelchair_facing_right_medium_light_skin_tone": "👩🏼‍🦼‍➡️", "woman_in_motorized_wheelchair_facing_right_tone3": "👩🏽‍🦼‍➡️", "woman_in_motorized_wheelchair_facing_right_medium_skin_tone": "👩🏽‍🦼‍➡️", "woman_in_motorized_wheelchair_facing_right_tone4": "👩🏾‍🦼‍➡️", "woman_in_motorized_wheelchair_facing_right_medium_dark_skin_tone": "👩🏾‍🦼‍➡️", "woman_in_motorized_wheelchair_facing_right_tone5": "👩🏿‍🦼‍➡️", "woman_in_motorized_wheelchair_facing_right_dark_skin_tone": "👩🏿‍🦼‍➡️", "person_walking_tone1": "🚶🏻", "walking_tone1": "🚶🏻", "person_walking_tone2": "🚶🏼", "walking_tone2": "🚶🏼", "person_walking_tone3": "🚶🏽", "walking_tone3": "🚶🏽", "person_walking_tone4": "🚶🏾", "walking_tone4": "🚶🏾", "person_walking_tone5": "🚶🏿", "walking_tone5": "🚶🏿", "woman_walking_tone1": "🚶🏻‍♀️", "woman_walking_light_skin_tone": "🚶🏻‍♀️", "woman_walking_tone2": "🚶🏼‍♀️", "woman_walking_medium_light_skin_tone": "🚶🏼‍♀️", "woman_walking_tone3": "🚶🏽‍♀️", "woman_walking_medium_skin_tone": "🚶🏽‍♀️", "woman_walking_tone4": "🚶🏾‍♀️", "woman_walking_medium_dark_skin_tone": "🚶🏾‍♀️", "woman_walking_tone5": "🚶🏿‍♀️", "woman_walking_dark_skin_tone": "🚶🏿‍♀️", "man_walking_tone1": "🚶🏻‍♂️", "man_walking_light_skin_tone": "🚶🏻‍♂️", "man_walking_tone2": "🚶🏼‍♂️", "man_walking_medium_light_skin_tone": "🚶🏼‍♂️", "man_walking_tone3": "🚶🏽‍♂️", "man_walking_medium_skin_tone": "🚶🏽‍♂️", "man_walking_tone4": "🚶🏾‍♂️", "man_walking_medium_dark_skin_tone": "🚶🏾‍♂️", "man_walking_tone5": "🚶🏿‍♂️", "man_walking_dark_skin_tone": "🚶🏿‍♂️", "person_walking_facing_right_tone1": "🚶🏻‍➡️", "person_walking_facing_right_light_skin_tone": "🚶🏻‍➡️", "person_walking_facing_right_tone2": "🚶🏼‍➡️", "person_walking_facing_right_medium_light_skin_tone": "🚶🏼‍➡️", "person_walking_facing_right_tone3": "🚶🏽‍➡️", "person_walking_facing_right_medium_skin_tone": "🚶🏽‍➡️", "person_walking_facing_right_tone4": "🚶🏾‍➡️", "person_walking_facing_right_medium_dark_skin_tone": "🚶🏾‍➡️", "person_walking_facing_right_tone5": "🚶🏿‍➡️", "person_walking_facing_right_dark_skin_tone": "🚶🏿‍➡️", "woman_walking_facing_right_tone1": "🚶🏻‍♀️‍➡️", "woman_walking_facing_right_light_skin_tone": "🚶🏻‍♀️‍➡️", "woman_walking_facing_right_tone2": "🚶🏼‍♀️‍➡️", "woman_walking_facing_right_medium_light_skin_tone": "🚶🏼‍♀️‍➡️", "woman_walking_facing_right_tone3": "🚶🏽‍♀️‍➡️", "woman_walking_facing_right_medium_skin_tone": "🚶🏽‍♀️‍➡️", "woman_walking_facing_right_tone4": "🚶🏾‍♀️‍➡️", "woman_walking_facing_right_medium_dark_skin_tone": "🚶🏾‍♀️‍➡️", "woman_walking_facing_right_tone5": "🚶🏿‍♀️‍➡️", "woman_walking_facing_right_dark_skin_tone": "🚶🏿‍♀️‍➡️", "man_walking_facing_right_tone1": "🚶🏻‍♂️‍➡️", "man_walking_facing_right_light_skin_tone": "🚶🏻‍♂️‍➡️", "man_walking_facing_right_tone2": "🚶🏼‍♂️‍➡️", "man_walking_facing_right_medium_light_skin_tone": "🚶🏼‍♂️‍➡️", "man_walking_facing_right_tone3": "🚶🏽‍♂️‍➡️", "man_walking_facing_right_medium_skin_tone": "🚶🏽‍♂️‍➡️", "man_walking_facing_right_tone4": "🚶🏾‍♂️‍➡️", "man_walking_facing_right_medium_dark_skin_tone": "🚶🏾‍♂️‍➡️", "man_walking_facing_right_tone5": "🚶🏿‍♂️‍➡️", "man_walking_facing_right_dark_skin_tone": "🚶🏿‍♂️‍➡️", "person_with_probing_cane_tone1": "🧑🏻‍🦯", "person_with_probing_cane_light_skin_tone": "🧑🏻‍🦯", "person_with_probing_cane_tone2": "🧑🏼‍🦯", "person_with_probing_cane_medium_light_skin_tone": "🧑🏼‍🦯", "person_with_probing_cane_tone3": "🧑🏽‍🦯", "person_with_probing_cane_medium_skin_tone": "🧑🏽‍🦯", "person_with_probing_cane_tone4": "🧑🏾‍🦯", "person_with_probing_cane_medium_dark_skin_tone": "🧑🏾‍🦯", "person_with_probing_cane_tone5": "🧑🏿‍🦯", "person_with_probing_cane_dark_skin_tone": "🧑🏿‍🦯", "woman_with_probing_cane_tone1": "👩🏻‍🦯", "woman_with_probing_cane_light_skin_tone": "👩🏻‍🦯", "woman_with_probing_cane_tone2": "👩🏼‍🦯", "woman_with_probing_cane_medium_light_skin_tone": "👩🏼‍🦯", "woman_with_probing_cane_tone3": "👩🏽‍🦯", "woman_with_probing_cane_medium_skin_tone": "👩🏽‍🦯", "woman_with_probing_cane_tone4": "👩🏾‍🦯", "woman_with_probing_cane_medium_dark_skin_tone": "👩🏾‍🦯", "woman_with_probing_cane_tone5": "👩🏿‍🦯", "woman_with_probing_cane_dark_skin_tone": "👩🏿‍🦯", "man_with_probing_cane_tone1": "👨🏻‍🦯", "man_with_probing_cane_light_skin_tone": "👨🏻‍🦯", "man_with_probing_cane_tone2": "👨🏼‍🦯", "man_with_probing_cane_medium_light_skin_tone": "👨🏼‍🦯", "man_with_probing_cane_tone3": "👨🏽‍🦯", "man_with_probing_cane_medium_skin_tone": "👨🏽‍🦯", "man_with_probing_cane_tone4": "👨🏾‍🦯", "man_with_probing_cane_medium_dark_skin_tone": "👨🏾‍🦯", "man_with_probing_cane_tone5": "👨🏿‍🦯", "man_with_probing_cane_dark_skin_tone": "👨🏿‍🦯", "person_with_white_cane_facing_right_tone1": "🧑🏻‍🦯‍➡️", "person_with_white_cane_facing_right_light_skin_tone": "🧑🏻‍🦯‍➡️", "person_with_white_cane_facing_right_tone2": "🧑🏼‍🦯‍➡️", "person_with_white_cane_facing_right_medium_light_skin_tone": "🧑🏼‍🦯‍➡️", "person_with_white_cane_facing_right_tone3": "🧑🏽‍🦯‍➡️", "person_with_white_cane_facing_right_medium_skin_tone": "🧑🏽‍🦯‍➡️", "person_with_white_cane_facing_right_tone4": "🧑🏾‍🦯‍➡️", "person_with_white_cane_facing_right_medium_dark_skin_tone": "🧑🏾‍🦯‍➡️", "person_with_white_cane_facing_right_tone5": "🧑🏿‍🦯‍➡️", "person_with_white_cane_facing_right_dark_skin_tone": "🧑🏿‍🦯‍➡️", "man_with_white_cane_facing_right_tone1": "👨🏻‍🦯‍➡️", "man_with_white_cane_facing_right_light_skin_tone": "👨🏻‍🦯‍➡️", "man_with_white_cane_facing_right_tone2": "👨🏼‍🦯‍➡️", "man_with_white_cane_facing_right_medium_light_skin_tone": "👨🏼‍🦯‍➡️", "man_with_white_cane_facing_right_tone3": "👨🏽‍🦯‍➡️", "man_with_white_cane_facing_right_medium_skin_tone": "👨🏽‍🦯‍➡️", "man_with_white_cane_facing_right_tone4": "👨🏾‍🦯‍➡️", "man_with_white_cane_facing_right_medium_dark_skin_tone": "👨🏾‍🦯‍➡️", "man_with_white_cane_facing_right_tone5": "👨🏿‍🦯‍➡️", "man_with_white_cane_facing_right_dark_skin_tone": "👨🏿‍🦯‍➡️", "woman_with_white_cane_facing_right_tone1": "👩🏻‍🦯‍➡️", "woman_with_white_cane_facing_right_light_skin_tone": "👩🏻‍🦯‍➡️", "woman_with_white_cane_facing_right_tone2": "👩🏼‍🦯‍➡️", "woman_with_white_cane_facing_right_medium_light_skin_tone": "👩🏼‍🦯‍➡️", "woman_with_white_cane_facing_right_tone3": "👩🏽‍🦯‍➡️", "woman_with_white_cane_facing_right_medium_skin_tone": "👩🏽‍🦯‍➡️", "woman_with_white_cane_facing_right_tone4": "👩🏾‍🦯‍➡️", "woman_with_white_cane_facing_right_medium_dark_skin_tone": "👩🏾‍🦯‍➡️", "woman_with_white_cane_facing_right_tone5": "👩🏿‍🦯‍➡️", "woman_with_white_cane_facing_right_dark_skin_tone": "👩🏿‍🦯‍➡️", "person_kneeling_tone1": "🧎🏻", "person_kneeling_light_skin_tone": "🧎🏻", "person_kneeling_tone2": "🧎🏼", "person_kneeling_medium_light_skin_tone": "🧎🏼", "person_kneeling_tone3": "🧎🏽", "person_kneeling_medium_skin_tone": "🧎🏽", "person_kneeling_tone4": "🧎🏾", "person_kneeling_medium_dark_skin_tone": "🧎🏾", "person_kneeling_tone5": "🧎🏿", "person_kneeling_dark_skin_tone": "🧎🏿", "woman_kneeling_tone1": "🧎🏻‍♀️", "woman_kneeling_light_skin_tone": "🧎🏻‍♀️", "woman_kneeling_tone2": "🧎🏼‍♀️", "woman_kneeling_medium_light_skin_tone": "🧎🏼‍♀️", "woman_kneeling_tone3": "🧎🏽‍♀️", "woman_kneeling_medium_skin_tone": "🧎🏽‍♀️", "woman_kneeling_tone4": "🧎🏾‍♀️", "woman_kneeling_medium_dark_skin_tone": "🧎🏾‍♀️", "woman_kneeling_tone5": "🧎🏿‍♀️", "woman_kneeling_dark_skin_tone": "🧎🏿‍♀️", "man_kneeling_tone1": "🧎🏻‍♂️", "man_kneeling_light_skin_tone": "🧎🏻‍♂️", "man_kneeling_tone2": "🧎🏼‍♂️", "man_kneeling_medium_light_skin_tone": "🧎🏼‍♂️", "man_kneeling_tone3": "🧎🏽‍♂️", "man_kneeling_medium_skin_tone": "🧎🏽‍♂️", "man_kneeling_tone4": "🧎🏾‍♂️", "man_kneeling_medium_dark_skin_tone": "🧎🏾‍♂️", "man_kneeling_tone5": "🧎🏿‍♂️", "man_kneeling_dark_skin_tone": "🧎🏿‍♂️", "person_kneeling_facing_right_tone1": "🧎🏻‍➡️", "person_kneeling_facing_right_light_skin_tone": "🧎🏻‍➡️", "person_kneeling_facing_right_tone2": "🧎🏼‍➡️", "person_kneeling_facing_right_medium_light_skin_tone": "🧎🏼‍➡️", "person_kneeling_facing_right_tone3": "🧎🏽‍➡️", "person_kneeling_facing_right_medium_skin_tone": "🧎🏽‍➡️", "person_kneeling_facing_right_tone4": "🧎🏾‍➡️", "person_kneeling_facing_right_medium_dark_skin_tone": "🧎🏾‍➡️", "person_kneeling_facing_right_tone5": "🧎🏿‍➡️", "person_kneeling_facing_right_dark_skin_tone": "🧎🏿‍➡️", "woman_kneeling_facing_right_tone1": "🧎🏻‍♀️‍➡️", "woman_kneeling_facing_right_light_skin_tone": "🧎🏻‍♀️‍➡️", "woman_kneeling_facing_right_tone2": "🧎🏼‍♀️‍➡️", "woman_kneeling_facing_right_medium_light_skin_tone": "🧎🏼‍♀️‍➡️", "woman_kneeling_facing_right_tone3": "🧎🏽‍♀️‍➡️", "woman_kneeling_facing_right_medium_skin_tone": "🧎🏽‍♀️‍➡️", "woman_kneeling_facing_right_tone4": "🧎🏾‍♀️‍➡️", "woman_kneeling_facing_right_medium_dark_skin_tone": "🧎🏾‍♀️‍➡️", "woman_kneeling_facing_right_tone5": "🧎🏿‍♀️‍➡️", "woman_kneeling_facing_right_dark_skin_tone": "🧎🏿‍♀️‍➡️", "man_kneeling_facing_right_tone1": "🧎🏻‍♂️‍➡️", "man_kneeling_facing_right_light_skin_tone": "🧎🏻‍♂️‍➡️", "man_kneeling_facing_right_tone2": "🧎🏼‍♂️‍➡️", "man_kneeling_facing_right_medium_light_skin_tone": "🧎🏼‍♂️‍➡️", "man_kneeling_facing_right_tone3": "🧎🏽‍♂️‍➡️", "man_kneeling_facing_right_medium_skin_tone": "🧎🏽‍♂️‍➡️", "man_kneeling_facing_right_tone4": "🧎🏾‍♂️‍➡️", "man_kneeling_facing_right_medium_dark_skin_tone": "🧎🏾‍♂️‍➡️", "man_kneeling_facing_right_tone5": "🧎🏿‍♂️‍➡️", "man_kneeling_facing_right_dark_skin_tone": "🧎🏿‍♂️‍➡️", "person_running_tone1": "🏃🏻", "runner_tone1": "🏃🏻", "person_running_tone2": "🏃🏼", "runner_tone2": "🏃🏼", "person_running_tone3": "🏃🏽", "runner_tone3": "🏃🏽", "person_running_tone4": "🏃🏾", "runner_tone4": "🏃🏾", "person_running_tone5": "🏃🏿", "runner_tone5": "🏃🏿", "woman_running_tone1": "🏃🏻‍♀️", "woman_running_light_skin_tone": "🏃🏻‍♀️", "woman_running_tone2": "🏃🏼‍♀️", "woman_running_medium_light_skin_tone": "🏃🏼‍♀️", "woman_running_tone3": "🏃🏽‍♀️", "woman_running_medium_skin_tone": "🏃🏽‍♀️", "woman_running_tone4": "🏃🏾‍♀️", "woman_running_medium_dark_skin_tone": "🏃🏾‍♀️", "woman_running_tone5": "🏃🏿‍♀️", "woman_running_dark_skin_tone": "🏃🏿‍♀️", "man_running_tone1": "🏃🏻‍♂️", "man_running_light_skin_tone": "🏃🏻‍♂️", "man_running_tone2": "🏃🏼‍♂️", "man_running_medium_light_skin_tone": "🏃🏼‍♂️", "man_running_tone3": "🏃🏽‍♂️", "man_running_medium_skin_tone": "🏃🏽‍♂️", "man_running_tone4": "🏃🏾‍♂️", "man_running_medium_dark_skin_tone": "🏃🏾‍♂️", "man_running_tone5": "🏃🏿‍♂️", "man_running_dark_skin_tone": "🏃🏿‍♂️", "person_running_facing_right_tone1": "🏃🏻‍➡️", "person_running_facing_right_light_skin_tone": "🏃🏻‍➡️", "person_running_facing_right_tone2": "🏃🏼‍➡️", "person_running_facing_right_medium_light_skin_tone": "🏃🏼‍➡️", "person_running_facing_right_tone3": "🏃🏽‍➡️", "person_running_facing_right_medium_skin_tone": "🏃🏽‍➡️", "person_running_facing_right_tone4": "🏃🏾‍➡️", "person_running_facing_right_medium_dark_skin_tone": "🏃🏾‍➡️", "person_running_facing_right_tone5": "🏃🏿‍➡️", "person_running_facing_right_dark_skin_tone": "🏃🏿‍➡️", "woman_running_facing_right_tone1": "🏃🏻‍♀️‍➡️", "woman_running_facing_right_light_skin_tone": "🏃🏻‍♀️‍➡️", "woman_running_facing_right_tone2": "🏃🏼‍♀️‍➡️", "woman_running_facing_right_medium_light_skin_tone": "🏃🏼‍♀️‍➡️", "woman_running_facing_right_tone3": "🏃🏽‍♀️‍➡️", "woman_running_facing_right_medium_skin_tone": "🏃🏽‍♀️‍➡️", "woman_running_facing_right_tone4": "🏃🏾‍♀️‍➡️", "woman_running_facing_right_medium_dark_skin_tone": "🏃🏾‍♀️‍➡️", "woman_running_facing_right_tone5": "🏃🏿‍♀️‍➡️", "woman_running_facing_right_dark_skin_tone": "🏃🏿‍♀️‍➡️", "man_running_facing_right_tone1": "🏃🏻‍♂️‍➡️", "man_running_facing_right_light_skin_tone": "🏃🏻‍♂️‍➡️", "man_running_facing_right_tone2": "🏃🏼‍♂️‍➡️", "man_running_facing_right_medium_light_skin_tone": "🏃🏼‍♂️‍➡️", "man_running_facing_right_tone3": "🏃🏽‍♂️‍➡️", "man_running_facing_right_medium_skin_tone": "🏃🏽‍♂️‍➡️", "man_running_facing_right_tone4": "🏃🏾‍♂️‍➡️", "man_running_facing_right_medium_dark_skin_tone": "🏃🏾‍♂️‍➡️", "man_running_facing_right_tone5": "🏃🏿‍♂️‍➡️", "man_running_facing_right_dark_skin_tone": "🏃🏿‍♂️‍➡️", "person_standing_tone1": "🧍🏻", "person_standing_light_skin_tone": "🧍🏻", "person_standing_tone2": "🧍🏼", "person_standing_medium_light_skin_tone": "🧍🏼", "person_standing_tone3": "🧍🏽", "person_standing_medium_skin_tone": "🧍🏽", "person_standing_tone4": "🧍🏾", "person_standing_medium_dark_skin_tone": "🧍🏾", "person_standing_tone5": "🧍🏿", "person_standing_dark_skin_tone": "🧍🏿", "woman_standing_tone1": "🧍🏻‍♀️", "woman_standing_light_skin_tone": "🧍🏻‍♀️", "woman_standing_tone2": "🧍🏼‍♀️", "woman_standing_medium_light_skin_tone": "🧍🏼‍♀️", "woman_standing_tone3": "🧍🏽‍♀️", "woman_standing_medium_skin_tone": "🧍🏽‍♀️", "woman_standing_tone4": "🧍🏾‍♀️", "woman_standing_medium_dark_skin_tone": "🧍🏾‍♀️", "woman_standing_tone5": "🧍🏿‍♀️", "woman_standing_dark_skin_tone": "🧍🏿‍♀️", "man_standing_tone1": "🧍🏻‍♂️", "man_standing_light_skin_tone": "🧍🏻‍♂️", "man_standing_tone2": "🧍🏼‍♂️", "man_standing_medium_light_skin_tone": "🧍🏼‍♂️", "man_standing_tone3": "🧍🏽‍♂️", "man_standing_medium_skin_tone": "🧍🏽‍♂️", "man_standing_tone4": "🧍🏾‍♂️", "man_standing_medium_dark_skin_tone": "🧍🏾‍♂️", "man_standing_tone5": "🧍🏿‍♂️", "man_standing_dark_skin_tone": "🧍🏿‍♂️", "people_holding_hands_tone1": "🧑🏻‍🤝‍🧑🏻", "people_holding_hands_light_skin_tone": "🧑🏻‍🤝‍🧑🏻", "people_holding_hands_tone1_tone2": "🧑🏻‍🤝‍🧑🏼", "people_holding_hands_light_skin_tone_medium_light_skin_tone": "🧑🏻‍🤝‍🧑🏼", "people_holding_hands_tone1_tone3": "🧑🏻‍🤝‍🧑🏽", "people_holding_hands_light_skin_tone_medium_skin_tone": "🧑🏻‍🤝‍🧑🏽", "people_holding_hands_tone1_tone4": "🧑🏻‍🤝‍🧑🏾", "people_holding_hands_light_skin_tone_medium_dark_skin_tone": "🧑🏻‍🤝‍🧑🏾", "people_holding_hands_tone1_tone5": "🧑🏻‍🤝‍🧑🏿", "people_holding_hands_light_skin_tone_dark_skin_tone": "🧑🏻‍🤝‍🧑🏿", "people_holding_hands_tone2_tone1": "🧑🏼‍🤝‍🧑🏻", "people_holding_hands_medium_light_skin_tone_light_skin_tone": "🧑🏼‍🤝‍🧑🏻", "people_holding_hands_tone2": "🧑🏼‍🤝‍🧑🏼", "people_holding_hands_medium_light_skin_tone": "🧑🏼‍🤝‍🧑🏼", "people_holding_hands_tone2_tone3": "🧑🏼‍🤝‍🧑🏽", "people_holding_hands_medium_light_skin_tone_medium_skin_tone": "🧑🏼‍🤝‍🧑🏽", "people_holding_hands_tone2_tone4": "🧑🏼‍🤝‍🧑🏾", "people_holding_hands_medium_light_skin_tone_medium_dark_skin_tone": "🧑🏼‍🤝‍🧑🏾", "people_holding_hands_tone2_tone5": "🧑🏼‍🤝‍🧑🏿", "people_holding_hands_medium_light_skin_tone_dark_skin_tone": "🧑🏼‍🤝‍🧑🏿", "people_holding_hands_tone3_tone1": "🧑🏽‍🤝‍🧑🏻", "people_holding_hands_medium_skin_tone_light_skin_tone": "🧑🏽‍🤝‍🧑🏻", "people_holding_hands_tone3_tone2": "🧑🏽‍🤝‍🧑🏼", "people_holding_hands_medium_skin_tone_medium_light_skin_tone": "🧑🏽‍🤝‍🧑🏼", "people_holding_hands_tone3": "🧑🏽‍🤝‍🧑🏽", "people_holding_hands_medium_skin_tone": "🧑🏽‍🤝‍🧑🏽", "people_holding_hands_tone3_tone4": "🧑🏽‍🤝‍🧑🏾", "people_holding_hands_medium_skin_tone_medium_dark_skin_tone": "🧑🏽‍🤝‍🧑🏾", "people_holding_hands_tone3_tone5": "🧑🏽‍🤝‍🧑🏿", "people_holding_hands_medium_skin_tone_dark_skin_tone": "🧑🏽‍🤝‍🧑🏿", "people_holding_hands_tone4_tone1": "🧑🏾‍🤝‍🧑🏻", "people_holding_hands_medium_dark_skin_tone_light_skin_tone": "🧑🏾‍🤝‍🧑🏻", "people_holding_hands_tone4_tone2": "🧑🏾‍🤝‍🧑🏼", "people_holding_hands_medium_dark_skin_tone_medium_light_skin_tone": "🧑🏾‍🤝‍🧑🏼", "people_holding_hands_tone4_tone3": "🧑🏾‍🤝‍🧑🏽", "people_holding_hands_medium_dark_skin_tone_medium_skin_tone": "🧑🏾‍🤝‍🧑🏽", "people_holding_hands_tone4": "🧑🏾‍🤝‍🧑🏾", "people_holding_hands_medium_dark_skin_tone": "🧑🏾‍🤝‍🧑🏾", "people_holding_hands_tone4_tone5": "🧑🏾‍🤝‍🧑🏿", "people_holding_hands_medium_dark_skin_tone_dark_skin_tone": "🧑🏾‍🤝‍🧑🏿", "people_holding_hands_tone5_tone1": "🧑🏿‍🤝‍🧑🏻", "people_holding_hands_dark_skin_tone_light_skin_tone": "🧑🏿‍🤝‍🧑🏻", "people_holding_hands_tone5_tone2": "🧑🏿‍🤝‍🧑🏼", "people_holding_hands_dark_skin_tone_medium_light_skin_tone": "🧑🏿‍🤝‍🧑🏼", "people_holding_hands_tone5_tone3": "🧑🏿‍🤝‍🧑🏽", "people_holding_hands_dark_skin_tone_medium_skin_tone": "🧑🏿‍🤝‍🧑🏽", "people_holding_hands_tone5_tone4": "🧑🏿‍🤝‍🧑🏾", "people_holding_hands_dark_skin_tone_medium_dark_skin_tone": "🧑🏿‍🤝‍🧑🏾", "people_holding_hands_tone5": "🧑🏿‍🤝‍🧑🏿", "people_holding_hands_dark_skin_tone": "🧑🏿‍🤝‍🧑🏿", "woman_and_man_holding_hands_tone1": "👫🏻", "woman_and_man_holding_hands_light_skin_tone": "👫🏻", "woman_and_man_holding_hands_tone1_tone2": "👩🏻‍🤝‍👨🏼", "woman_and_man_holding_hands_light_skin_tone_medium_light_skin_tone": "👩🏻‍🤝‍👨🏼", "woman_and_man_holding_hands_tone1_tone3": "👩🏻‍🤝‍👨🏽", "woman_and_man_holding_hands_light_skin_tone_medium_skin_tone": "👩🏻‍🤝‍👨🏽", "woman_and_man_holding_hands_tone1_tone4": "👩🏻‍🤝‍👨🏾", "woman_and_man_holding_hands_light_skin_tone_medium_dark_skin_tone": "👩🏻‍🤝‍👨🏾", "woman_and_man_holding_hands_tone1_tone5": "👩🏻‍🤝‍👨🏿", "woman_and_man_holding_hands_light_skin_tone_dark_skin_tone": "👩🏻‍🤝‍👨🏿", "woman_and_man_holding_hands_tone2_tone1": "👩🏼‍🤝‍👨🏻", "woman_and_man_holding_hands_medium_light_skin_tone_light_skin_tone": "👩🏼‍🤝‍👨🏻", "woman_and_man_holding_hands_tone2": "👫🏼", "woman_and_man_holding_hands_medium_light_skin_tone": "👫🏼", "woman_and_man_holding_hands_tone2_tone3": "👩🏼‍🤝‍👨🏽", "woman_and_man_holding_hands_medium_light_skin_tone_medium_skin_tone": "👩🏼‍🤝‍👨🏽", "woman_and_man_holding_hands_tone2_tone4": "👩🏼‍🤝‍👨🏾", "woman_and_man_holding_hands_medium_light_skin_tone_medium_dark_skin_tone": "👩🏼‍🤝‍👨🏾", "woman_and_man_holding_hands_tone2_tone5": "👩🏼‍🤝‍👨🏿", "woman_and_man_holding_hands_medium_light_skin_tone_dark_skin_tone": "👩🏼‍🤝‍👨🏿", "woman_and_man_holding_hands_tone3_tone1": "👩🏽‍🤝‍👨🏻", "woman_and_man_holding_hands_medium_skin_tone_light_skin_tone": "👩🏽‍🤝‍👨🏻", "woman_and_man_holding_hands_tone3_tone2": "👩🏽‍🤝‍👨🏼", "woman_and_man_holding_hands_medium_skin_tone_medium_light_skin_tone": "👩🏽‍🤝‍👨🏼", "woman_and_man_holding_hands_tone3": "👫🏽", "woman_and_man_holding_hands_medium_skin_tone": "👫🏽", "woman_and_man_holding_hands_tone3_tone4": "👩🏽‍🤝‍👨🏾", "woman_and_man_holding_hands_medium_skin_tone_medium_dark_skin_tone": "👩🏽‍🤝‍👨🏾", "woman_and_man_holding_hands_tone3_tone5": "👩🏽‍🤝‍👨🏿", "woman_and_man_holding_hands_medium_skin_tone_dark_skin_tone": "👩🏽‍🤝‍👨🏿", "woman_and_man_holding_hands_tone4_tone1": "👩🏾‍🤝‍👨🏻", "woman_and_man_holding_hands_medium_dark_skin_tone_light_skin_tone": "👩🏾‍🤝‍👨🏻", "woman_and_man_holding_hands_tone4_tone2": "👩🏾‍🤝‍👨🏼", "woman_and_man_holding_hands_medium_dark_skin_tone_medium_light_skin_tone": "👩🏾‍🤝‍👨🏼", "woman_and_man_holding_hands_tone4_tone3": "👩🏾‍🤝‍👨🏽", "woman_and_man_holding_hands_medium_dark_skin_tone_medium_skin_tone": "👩🏾‍🤝‍👨🏽", "woman_and_man_holding_hands_tone4": "👫🏾", "woman_and_man_holding_hands_medium_dark_skin_tone": "👫🏾", "woman_and_man_holding_hands_tone4_tone5": "👩🏾‍🤝‍👨🏿", "woman_and_man_holding_hands_medium_dark_skin_tone_dark_skin_tone": "👩🏾‍🤝‍👨🏿", "woman_and_man_holding_hands_tone5_tone1": "👩🏿‍🤝‍👨🏻", "woman_and_man_holding_hands_dark_skin_tone_light_skin_tone": "👩🏿‍🤝‍👨🏻", "woman_and_man_holding_hands_tone5_tone2": "👩🏿‍🤝‍👨🏼", "woman_and_man_holding_hands_dark_skin_tone_medium_light_skin_tone": "👩🏿‍🤝‍👨🏼", "woman_and_man_holding_hands_tone5_tone3": "👩🏿‍🤝‍👨🏽", "woman_and_man_holding_hands_dark_skin_tone_medium_skin_tone": "👩🏿‍🤝‍👨🏽", "woman_and_man_holding_hands_tone5_tone4": "👩🏿‍🤝‍👨🏾", "woman_and_man_holding_hands_dark_skin_tone_medium_dark_skin_tone": "👩🏿‍🤝‍👨🏾", "woman_and_man_holding_hands_tone5": "👫🏿", "woman_and_man_holding_hands_dark_skin_tone": "👫🏿", "women_holding_hands_tone1": "👭🏻", "women_holding_hands_light_skin_tone": "👭🏻", "women_holding_hands_tone1_tone2": "👩🏻‍🤝‍👩🏼", "women_holding_hands_light_skin_tone_medium_light_skin_tone": "👩🏻‍🤝‍👩🏼", "women_holding_hands_tone1_tone3": "👩🏻‍🤝‍👩🏽", "women_holding_hands_light_skin_tone_medium_skin_tone": "👩🏻‍🤝‍👩🏽", "women_holding_hands_tone1_tone4": "👩🏻‍🤝‍👩🏾", "women_holding_hands_light_skin_tone_medium_dark_skin_tone": "👩🏻‍🤝‍👩🏾", "women_holding_hands_tone1_tone5": "👩🏻‍🤝‍👩🏿", "women_holding_hands_light_skin_tone_dark_skin_tone": "👩🏻‍🤝‍👩🏿", "women_holding_hands_tone2_tone1": "👩🏼‍🤝‍👩🏻", "women_holding_hands_medium_light_skin_tone_light_skin_tone": "👩🏼‍🤝‍👩🏻", "women_holding_hands_tone2": "👭🏼", "women_holding_hands_medium_light_skin_tone": "👭🏼", "women_holding_hands_tone2_tone3": "👩🏼‍🤝‍👩🏽", "women_holding_hands_medium_light_skin_tone_medium_skin_tone": "👩🏼‍🤝‍👩🏽", "women_holding_hands_tone2_tone4": "👩🏼‍🤝‍👩🏾", "women_holding_hands_medium_light_skin_tone_medium_dark_skin_tone": "👩🏼‍🤝‍👩🏾", "women_holding_hands_tone2_tone5": "👩🏼‍🤝‍👩🏿", "women_holding_hands_medium_light_skin_tone_dark_skin_tone": "👩🏼‍🤝‍👩🏿", "women_holding_hands_tone3_tone1": "👩🏽‍🤝‍👩🏻", "women_holding_hands_medium_skin_tone_light_skin_tone": "👩🏽‍🤝‍👩🏻", "women_holding_hands_tone3_tone2": "👩🏽‍🤝‍👩🏼", "women_holding_hands_medium_skin_tone_medium_light_skin_tone": "👩🏽‍🤝‍👩🏼", "women_holding_hands_tone3": "👭🏽", "women_holding_hands_medium_skin_tone": "👭🏽", "women_holding_hands_tone3_tone4": "👩🏽‍🤝‍👩🏾", "women_holding_hands_medium_skin_tone_medium_dark_skin_tone": "👩🏽‍🤝‍👩🏾", "women_holding_hands_tone3_tone5": "👩🏽‍🤝‍👩🏿", "women_holding_hands_medium_skin_tone_dark_skin_tone": "👩🏽‍🤝‍👩🏿", "women_holding_hands_tone4_tone1": "👩🏾‍🤝‍👩🏻", "women_holding_hands_medium_dark_skin_tone_light_skin_tone": "👩🏾‍🤝‍👩🏻", "women_holding_hands_tone4_tone2": "👩🏾‍🤝‍👩🏼", "women_holding_hands_medium_dark_skin_tone_medium_light_skin_tone": "👩🏾‍🤝‍👩🏼", "women_holding_hands_tone4_tone3": "👩🏾‍🤝‍👩🏽", "women_holding_hands_medium_dark_skin_tone_medium_skin_tone": "👩🏾‍🤝‍👩🏽", "women_holding_hands_tone4": "👭🏾", "women_holding_hands_medium_dark_skin_tone": "👭🏾", "women_holding_hands_tone4_tone5": "👩🏾‍🤝‍👩🏿", "women_holding_hands_medium_dark_skin_tone_dark_skin_tone": "👩🏾‍🤝‍👩🏿", "women_holding_hands_tone5_tone1": "👩🏿‍🤝‍👩🏻", "women_holding_hands_dark_skin_tone_light_skin_tone": "👩🏿‍🤝‍👩🏻", "women_holding_hands_tone5_tone2": "👩🏿‍🤝‍👩🏼", "women_holding_hands_dark_skin_tone_medium_light_skin_tone": "👩🏿‍🤝‍👩🏼", "women_holding_hands_tone5_tone3": "👩🏿‍🤝‍👩🏽", "women_holding_hands_dark_skin_tone_medium_skin_tone": "👩🏿‍🤝‍👩🏽", "women_holding_hands_tone5_tone4": "👩🏿‍🤝‍👩🏾", "women_holding_hands_dark_skin_tone_medium_dark_skin_tone": "👩🏿‍🤝‍👩🏾", "women_holding_hands_tone5": "👭🏿", "women_holding_hands_dark_skin_tone": "👭🏿", "men_holding_hands_tone1": "👬🏻", "men_holding_hands_light_skin_tone": "👬🏻", "men_holding_hands_tone1_tone2": "👨🏻‍🤝‍👨🏼", "men_holding_hands_light_skin_tone_medium_light_skin_tone": "👨🏻‍🤝‍👨🏼", "men_holding_hands_tone1_tone3": "👨🏻‍🤝‍👨🏽", "men_holding_hands_light_skin_tone_medium_skin_tone": "👨🏻‍🤝‍👨🏽", "men_holding_hands_tone1_tone4": "👨🏻‍🤝‍👨🏾", "men_holding_hands_light_skin_tone_medium_dark_skin_tone": "👨🏻‍🤝‍👨🏾", "men_holding_hands_tone1_tone5": "👨🏻‍🤝‍👨🏿", "men_holding_hands_light_skin_tone_dark_skin_tone": "👨🏻‍🤝‍👨🏿", "men_holding_hands_tone2_tone1": "👨🏼‍🤝‍👨🏻", "men_holding_hands_medium_light_skin_tone_light_skin_tone": "👨🏼‍🤝‍👨🏻", "men_holding_hands_tone2": "👬🏼", "men_holding_hands_medium_light_skin_tone": "👬🏼", "men_holding_hands_tone2_tone3": "👨🏼‍🤝‍👨🏽", "men_holding_hands_medium_light_skin_tone_medium_skin_tone": "👨🏼‍🤝‍👨🏽", "men_holding_hands_tone2_tone4": "👨🏼‍🤝‍👨🏾", "men_holding_hands_medium_light_skin_tone_medium_dark_skin_tone": "👨🏼‍🤝‍👨🏾", "men_holding_hands_tone2_tone5": "👨🏼‍🤝‍👨🏿", "men_holding_hands_medium_light_skin_tone_dark_skin_tone": "👨🏼‍🤝‍👨🏿", "men_holding_hands_tone3_tone1": "👨🏽‍🤝‍👨🏻", "men_holding_hands_medium_skin_tone_light_skin_tone": "👨🏽‍🤝‍👨🏻", "men_holding_hands_tone3_tone2": "👨🏽‍🤝‍👨🏼", "men_holding_hands_medium_skin_tone_medium_light_skin_tone": "👨🏽‍🤝‍👨🏼", "men_holding_hands_tone3": "👬🏽", "men_holding_hands_medium_skin_tone": "👬🏽", "men_holding_hands_tone3_tone4": "👨🏽‍🤝‍👨🏾", "men_holding_hands_medium_skin_tone_medium_dark_skin_tone": "👨🏽‍🤝‍👨🏾", "men_holding_hands_tone3_tone5": "👨🏽‍🤝‍👨🏿", "men_holding_hands_medium_skin_tone_dark_skin_tone": "👨🏽‍🤝‍👨🏿", "men_holding_hands_tone4_tone1": "👨🏾‍🤝‍👨🏻", "men_holding_hands_medium_dark_skin_tone_light_skin_tone": "👨🏾‍🤝‍👨🏻", "men_holding_hands_tone4_tone2": "👨🏾‍🤝‍👨🏼", "men_holding_hands_medium_dark_skin_tone_medium_light_skin_tone": "👨🏾‍🤝‍👨🏼", "men_holding_hands_tone4_tone3": "👨🏾‍🤝‍👨🏽", "men_holding_hands_medium_dark_skin_tone_medium_skin_tone": "👨🏾‍🤝‍👨🏽", "men_holding_hands_tone4": "👬🏾", "men_holding_hands_medium_dark_skin_tone": "👬🏾", "men_holding_hands_tone4_tone5": "👨🏾‍🤝‍👨🏿", "men_holding_hands_medium_dark_skin_tone_dark_skin_tone": "👨🏾‍🤝‍👨🏿", "men_holding_hands_tone5_tone1": "👨🏿‍🤝‍👨🏻", "men_holding_hands_dark_skin_tone_light_skin_tone": "👨🏿‍🤝‍👨🏻", "men_holding_hands_tone5_tone2": "👨🏿‍🤝‍👨🏼", "men_holding_hands_dark_skin_tone_medium_light_skin_tone": "👨🏿‍🤝‍👨🏼", "men_holding_hands_tone5_tone3": "👨🏿‍🤝‍👨🏽", "men_holding_hands_dark_skin_tone_medium_skin_tone": "👨🏿‍🤝‍👨🏽", "men_holding_hands_tone5_tone4": "👨🏿‍🤝‍👨🏾", "men_holding_hands_dark_skin_tone_medium_dark_skin_tone": "👨🏿‍🤝‍👨🏾", "men_holding_hands_tone5": "👬🏿", "men_holding_hands_dark_skin_tone": "👬🏿", "couple_with_heart_tone1": "💑🏻", "couple_with_heart_light_skin_tone": "💑🏻", "couple_with_heart_person_person_tone1_tone2": "🧑🏻‍❤️‍🧑🏼", "couple_with_heart_person_person_light_skin_tone_medium_light_skin_tone": "🧑🏻‍❤️‍🧑🏼", "couple_with_heart_person_person_tone1_tone3": "🧑🏻‍❤️‍🧑🏽", "couple_with_heart_person_person_light_skin_tone_medium_skin_tone": "🧑🏻‍❤️‍🧑🏽", "couple_with_heart_person_person_tone1_tone4": "🧑🏻‍❤️‍🧑🏾", "couple_with_heart_person_person_light_skin_tone_medium_dark_skin_tone": "🧑🏻‍❤️‍🧑🏾", "couple_with_heart_person_person_tone1_tone5": "🧑🏻‍❤️‍🧑🏿", "couple_with_heart_person_person_light_skin_tone_dark_skin_tone": "🧑🏻‍❤️‍🧑🏿", "couple_with_heart_person_person_tone2_tone1": "🧑🏼‍❤️‍🧑🏻", "couple_with_heart_person_person_medium_light_skin_tone_light_skin_tone": "🧑🏼‍❤️‍🧑🏻", "couple_with_heart_tone2": "💑🏼", "couple_with_heart_medium_light_skin_tone": "💑🏼", "couple_with_heart_person_person_tone2_tone3": "🧑🏼‍❤️‍🧑🏽", "couple_with_heart_person_person_medium_light_skin_tone_medium_skin_tone": "🧑🏼‍❤️‍🧑🏽", "couple_with_heart_person_person_tone2_tone4": "🧑🏼‍❤️‍🧑🏾", "couple_with_heart_person_person_medium_light_skin_tone_medium_dark_skin_tone": "🧑🏼‍❤️‍🧑🏾", "couple_with_heart_person_person_tone2_tone5": "🧑🏼‍❤️‍🧑🏿", "couple_with_heart_person_person_medium_light_skin_tone_dark_skin_tone": "🧑🏼‍❤️‍🧑🏿", "couple_with_heart_person_person_tone3_tone1": "🧑🏽‍❤️‍🧑🏻", "couple_with_heart_person_person_medium_skin_tone_light_skin_tone": "🧑🏽‍❤️‍🧑🏻", "couple_with_heart_person_person_tone3_tone2": "🧑🏽‍❤️‍🧑🏼", "couple_with_heart_person_person_medium_skin_tone_medium_light_skin_tone": "🧑🏽‍❤️‍🧑🏼", "couple_with_heart_tone3": "💑🏽", "couple_with_heart_medium_skin_tone": "💑🏽", "couple_with_heart_person_person_tone3_tone4": "🧑🏽‍❤️‍🧑🏾", "couple_with_heart_person_person_medium_skin_tone_medium_dark_skin_tone": "🧑🏽‍❤️‍🧑🏾", "couple_with_heart_person_person_tone3_tone5": "🧑🏽‍❤️‍🧑🏿", "couple_with_heart_person_person_medium_skin_tone_dark_skin_tone": "🧑🏽‍❤️‍🧑🏿", "couple_with_heart_person_person_tone4_tone1": "🧑🏾‍❤️‍🧑🏻", "couple_with_heart_person_person_medium_dark_skin_tone_light_skin_tone": "🧑🏾‍❤️‍🧑🏻", "couple_with_heart_person_person_tone4_tone2": "🧑🏾‍❤️‍🧑🏼", "couple_with_heart_person_person_medium_dark_skin_tone_medium_light_skin_tone": "🧑🏾‍❤️‍🧑🏼", "couple_with_heart_person_person_tone4_tone3": "🧑🏾‍❤️‍🧑🏽", "couple_with_heart_person_person_medium_dark_skin_tone_medium_skin_tone": "🧑🏾‍❤️‍🧑🏽", "couple_with_heart_tone4": "💑🏾", "couple_with_heart_medium_dark_skin_tone": "💑🏾", "couple_with_heart_person_person_tone4_tone5": "🧑🏾‍❤️‍🧑🏿", "couple_with_heart_person_person_medium_dark_skin_tone_dark_skin_tone": "🧑🏾‍❤️‍🧑🏿", "couple_with_heart_person_person_tone5_tone1": "🧑🏿‍❤️‍🧑🏻", "couple_with_heart_person_person_dark_skin_tone_light_skin_tone": "🧑🏿‍❤️‍🧑🏻", "couple_with_heart_person_person_tone5_tone2": "🧑🏿‍❤️‍🧑🏼", "couple_with_heart_person_person_dark_skin_tone_medium_light_skin_tone": "🧑🏿‍❤️‍🧑🏼", "couple_with_heart_person_person_tone5_tone3": "🧑🏿‍❤️‍🧑🏽", "couple_with_heart_person_person_dark_skin_tone_medium_skin_tone": "🧑🏿‍❤️‍🧑🏽", "couple_with_heart_person_person_tone5_tone4": "🧑🏿‍❤️‍🧑🏾", "couple_with_heart_person_person_dark_skin_tone_medium_dark_skin_tone": "🧑🏿‍❤️‍🧑🏾", "couple_with_heart_tone5": "💑🏿", "couple_with_heart_dark_skin_tone": "💑🏿", "couple_with_heart_woman_man_tone1": "👩🏻‍❤️‍👨🏻", "couple_with_heart_woman_man_light_skin_tone": "👩🏻‍❤️‍👨🏻", "couple_with_heart_woman_man_tone1_tone2": "👩🏻‍❤️‍👨🏼", "couple_with_heart_woman_man_light_skin_tone_medium_light_skin_tone": "👩🏻‍❤️‍👨🏼", "couple_with_heart_woman_man_tone1_tone3": "👩🏻‍❤️‍👨🏽", "couple_with_heart_woman_man_light_skin_tone_medium_skin_tone": "👩🏻‍❤️‍👨🏽", "couple_with_heart_woman_man_tone1_tone4": "👩🏻‍❤️‍👨🏾", "couple_with_heart_woman_man_light_skin_tone_medium_dark_skin_tone": "👩🏻‍❤️‍👨🏾", "couple_with_heart_woman_man_tone1_tone5": "👩🏻‍❤️‍👨🏿", "couple_with_heart_woman_man_light_skin_tone_dark_skin_tone": "👩🏻‍❤️‍👨🏿", "couple_with_heart_woman_man_tone2_tone1": "👩🏼‍❤️‍👨🏻", "couple_with_heart_woman_man_medium_light_skin_tone_light_skin_tone": "👩🏼‍❤️‍👨🏻", "couple_with_heart_woman_man_tone2": "👩🏼‍❤️‍👨🏼", "couple_with_heart_woman_man_medium_light_skin_tone": "👩🏼‍❤️‍👨🏼", "couple_with_heart_woman_man_tone2_tone3": "👩🏼‍❤️‍👨🏽", "couple_with_heart_woman_man_medium_light_skin_tone_medium_skin_tone": "👩🏼‍❤️‍👨🏽", "couple_with_heart_woman_man_tone2_tone4": "👩🏼‍❤️‍👨🏾", "couple_with_heart_woman_man_medium_light_skin_tone_medium_dark_skin_tone": "👩🏼‍❤️‍👨🏾", "couple_with_heart_woman_man_tone2_tone5": "👩🏼‍❤️‍👨🏿", "couple_with_heart_woman_man_medium_light_skin_tone_dark_skin_tone": "👩🏼‍❤️‍👨🏿", "couple_with_heart_woman_man_tone3_tone1": "👩🏽‍❤️‍👨🏻", "couple_with_heart_woman_man_medium_skin_tone_light_skin_tone": "👩🏽‍❤️‍👨🏻", "couple_with_heart_woman_man_tone3_tone2": "👩🏽‍❤️‍👨🏼", "couple_with_heart_woman_man_medium_skin_tone_medium_light_skin_tone": "👩🏽‍❤️‍👨🏼", "couple_with_heart_woman_man_tone3": "👩🏽‍❤️‍👨🏽", "couple_with_heart_woman_man_medium_skin_tone": "👩🏽‍❤️‍👨🏽", "couple_with_heart_woman_man_tone3_tone4": "👩🏽‍❤️‍👨🏾", "couple_with_heart_woman_man_medium_skin_tone_medium_dark_skin_tone": "👩🏽‍❤️‍👨🏾", "couple_with_heart_woman_man_tone3_tone5": "👩🏽‍❤️‍👨🏿", "couple_with_heart_woman_man_medium_skin_tone_dark_skin_tone": "👩🏽‍❤️‍👨🏿", "couple_with_heart_woman_man_tone4_tone1": "👩🏾‍❤️‍👨🏻", "couple_with_heart_woman_man_medium_dark_skin_tone_light_skin_tone": "👩🏾‍❤️‍👨🏻", "couple_with_heart_woman_man_tone4_tone2": "👩🏾‍❤️‍👨🏼", "couple_with_heart_woman_man_medium_dark_skin_tone_medium_light_skin_tone": "👩🏾‍❤️‍👨🏼", "couple_with_heart_woman_man_tone4_tone3": "👩🏾‍❤️‍👨🏽", "couple_with_heart_woman_man_medium_dark_skin_tone_medium_skin_tone": "👩🏾‍❤️‍👨🏽", "couple_with_heart_woman_man_tone4": "👩🏾‍❤️‍👨🏾", "couple_with_heart_woman_man_medium_dark_skin_tone": "👩🏾‍❤️‍👨🏾", "couple_with_heart_woman_man_tone4_tone5": "👩🏾‍❤️‍👨🏿", "couple_with_heart_woman_man_medium_dark_skin_tone_dark_skin_tone": "👩🏾‍❤️‍👨🏿", "couple_with_heart_woman_man_tone5_tone1": "👩🏿‍❤️‍👨🏻", "couple_with_heart_woman_man_dark_skin_tone_light_skin_tone": "👩🏿‍❤️‍👨🏻", "couple_with_heart_woman_man_tone5_tone2": "👩🏿‍❤️‍👨🏼", "couple_with_heart_woman_man_dark_skin_tone_medium_light_skin_tone": "👩🏿‍❤️‍👨🏼", "couple_with_heart_woman_man_tone5_tone3": "👩🏿‍❤️‍👨🏽", "couple_with_heart_woman_man_dark_skin_tone_medium_skin_tone": "👩🏿‍❤️‍👨🏽", "couple_with_heart_woman_man_tone5_tone4": "👩🏿‍❤️‍👨🏾", "couple_with_heart_woman_man_dark_skin_tone_medium_dark_skin_tone": "👩🏿‍❤️‍👨🏾", "couple_with_heart_woman_man_tone5": "👩🏿‍❤️‍👨🏿", "couple_with_heart_woman_man_dark_skin_tone": "👩🏿‍❤️‍👨🏿", "couple_with_heart_woman_woman_tone1": "👩🏻‍❤️‍👩🏻", "couple_with_heart_woman_woman_light_skin_tone": "👩🏻‍❤️‍👩🏻", "couple_with_heart_woman_woman_tone1_tone2": "👩🏻‍❤️‍👩🏼", "couple_with_heart_woman_woman_light_skin_tone_medium_light_skin_tone": "👩🏻‍❤️‍👩🏼", "couple_with_heart_woman_woman_tone1_tone3": "👩🏻‍❤️‍👩🏽", "couple_with_heart_woman_woman_light_skin_tone_medium_skin_tone": "👩🏻‍❤️‍👩🏽", "couple_with_heart_woman_woman_tone1_tone4": "👩🏻‍❤️‍👩🏾", "couple_with_heart_woman_woman_light_skin_tone_medium_dark_skin_tone": "👩🏻‍❤️‍👩🏾", "couple_with_heart_woman_woman_tone1_tone5": "👩🏻‍❤️‍👩🏿", "couple_with_heart_woman_woman_light_skin_tone_dark_skin_tone": "👩🏻‍❤️‍👩🏿", "couple_with_heart_woman_woman_tone2_tone1": "👩🏼‍❤️‍👩🏻", "couple_with_heart_woman_woman_medium_light_skin_tone_light_skin_tone": "👩🏼‍❤️‍👩🏻", "couple_with_heart_woman_woman_tone2": "👩🏼‍❤️‍👩🏼", "couple_with_heart_woman_woman_medium_light_skin_tone": "👩🏼‍❤️‍👩🏼", "couple_with_heart_woman_woman_tone2_tone3": "👩🏼‍❤️‍👩🏽", "couple_with_heart_woman_woman_medium_light_skin_tone_medium_skin_tone": "👩🏼‍❤️‍👩🏽", "couple_with_heart_woman_woman_tone2_tone4": "👩🏼‍❤️‍👩🏾", "couple_with_heart_woman_woman_medium_light_skin_tone_medium_dark_skin_tone": "👩🏼‍❤️‍👩🏾", "couple_with_heart_woman_woman_tone2_tone5": "👩🏼‍❤️‍👩🏿", "couple_with_heart_woman_woman_medium_light_skin_tone_dark_skin_tone": "👩🏼‍❤️‍👩🏿", "couple_with_heart_woman_woman_tone3_tone1": "👩🏽‍❤️‍👩🏻", "couple_with_heart_woman_woman_medium_skin_tone_light_skin_tone": "👩🏽‍❤️‍👩🏻", "couple_with_heart_woman_woman_tone3_tone2": "👩🏽‍❤️‍👩🏼", "couple_with_heart_woman_woman_medium_skin_tone_medium_light_skin_tone": "👩🏽‍❤️‍👩🏼", "couple_with_heart_woman_woman_tone3": "👩🏽‍❤️‍👩🏽", "couple_with_heart_woman_woman_medium_skin_tone": "👩🏽‍❤️‍👩🏽", "couple_with_heart_woman_woman_tone3_tone4": "👩🏽‍❤️‍👩🏾", "couple_with_heart_woman_woman_medium_skin_tone_medium_dark_skin_tone": "👩🏽‍❤️‍👩🏾", "couple_with_heart_woman_woman_tone3_tone5": "👩🏽‍❤️‍👩🏿", "couple_with_heart_woman_woman_medium_skin_tone_dark_skin_tone": "👩🏽‍❤️‍👩🏿", "couple_with_heart_woman_woman_tone4_tone1": "👩🏾‍❤️‍👩🏻", "couple_with_heart_woman_woman_medium_dark_skin_tone_light_skin_tone": "👩🏾‍❤️‍👩🏻", "couple_with_heart_woman_woman_tone4_tone2": "👩🏾‍❤️‍👩🏼", "couple_with_heart_woman_woman_medium_dark_skin_tone_medium_light_skin_tone": "👩🏾‍❤️‍👩🏼", "couple_with_heart_woman_woman_tone4_tone3": "👩🏾‍❤️‍👩🏽", "couple_with_heart_woman_woman_medium_dark_skin_tone_medium_skin_tone": "👩🏾‍❤️‍👩🏽", "couple_with_heart_woman_woman_tone4": "👩🏾‍❤️‍👩🏾", "couple_with_heart_woman_woman_medium_dark_skin_tone": "👩🏾‍❤️‍👩🏾", "couple_with_heart_woman_woman_tone4_tone5": "👩🏾‍❤️‍👩🏿", "couple_with_heart_woman_woman_medium_dark_skin_tone_dark_skin_tone": "👩🏾‍❤️‍👩🏿", "couple_with_heart_woman_woman_tone5_tone1": "👩🏿‍❤️‍👩🏻", "couple_with_heart_woman_woman_dark_skin_tone_light_skin_tone": "👩🏿‍❤️‍👩🏻", "couple_with_heart_woman_woman_tone5_tone2": "👩🏿‍❤️‍👩🏼", "couple_with_heart_woman_woman_dark_skin_tone_medium_light_skin_tone": "👩🏿‍❤️‍👩🏼", "couple_with_heart_woman_woman_tone5_tone3": "👩🏿‍❤️‍👩🏽", "couple_with_heart_woman_woman_dark_skin_tone_medium_skin_tone": "👩🏿‍❤️‍👩🏽", "couple_with_heart_woman_woman_tone5_tone4": "👩🏿‍❤️‍👩🏾", "couple_with_heart_woman_woman_dark_skin_tone_medium_dark_skin_tone": "👩🏿‍❤️‍👩🏾", "couple_with_heart_woman_woman_tone5": "👩🏿‍❤️‍👩🏿", "couple_with_heart_woman_woman_dark_skin_tone": "👩🏿‍❤️‍👩🏿", "couple_with_heart_man_man_tone1": "👨🏻‍❤️‍👨🏻", "couple_with_heart_man_man_light_skin_tone": "👨🏻‍❤️‍👨🏻", "couple_with_heart_man_man_tone1_tone2": "👨🏻‍❤️‍👨🏼", "couple_with_heart_man_man_light_skin_tone_medium_light_skin_tone": "👨🏻‍❤️‍👨🏼", "couple_with_heart_man_man_tone1_tone3": "👨🏻‍❤️‍👨🏽", "couple_with_heart_man_man_light_skin_tone_medium_skin_tone": "👨🏻‍❤️‍👨🏽", "couple_with_heart_man_man_tone1_tone4": "👨🏻‍❤️‍👨🏾", "couple_with_heart_man_man_light_skin_tone_medium_dark_skin_tone": "👨🏻‍❤️‍👨🏾", "couple_with_heart_man_man_tone1_tone5": "👨🏻‍❤️‍👨🏿", "couple_with_heart_man_man_light_skin_tone_dark_skin_tone": "👨🏻‍❤️‍👨🏿", "couple_with_heart_man_man_tone2_tone1": "👨🏼‍❤️‍👨🏻", "couple_with_heart_man_man_medium_light_skin_tone_light_skin_tone": "👨🏼‍❤️‍👨🏻", "couple_with_heart_man_man_tone2": "👨🏼‍❤️‍👨🏼", "couple_with_heart_man_man_medium_light_skin_tone": "👨🏼‍❤️‍👨🏼", "couple_with_heart_man_man_tone2_tone3": "👨🏼‍❤️‍👨🏽", "couple_with_heart_man_man_medium_light_skin_tone_medium_skin_tone": "👨🏼‍❤️‍👨🏽", "couple_with_heart_man_man_tone2_tone4": "👨🏼‍❤️‍👨🏾", "couple_with_heart_man_man_medium_light_skin_tone_medium_dark_skin_tone": "👨🏼‍❤️‍👨🏾", "couple_with_heart_man_man_tone2_tone5": "👨🏼‍❤️‍👨🏿", "couple_with_heart_man_man_medium_light_skin_tone_dark_skin_tone": "👨🏼‍❤️‍👨🏿", "couple_with_heart_man_man_tone3_tone1": "👨🏽‍❤️‍👨🏻", "couple_with_heart_man_man_medium_skin_tone_light_skin_tone": "👨🏽‍❤️‍👨🏻", "couple_with_heart_man_man_tone3_tone2": "👨🏽‍❤️‍👨🏼", "couple_with_heart_man_man_medium_skin_tone_medium_light_skin_tone": "👨🏽‍❤️‍👨🏼", "couple_with_heart_man_man_tone3": "👨🏽‍❤️‍👨🏽", "couple_with_heart_man_man_medium_skin_tone": "👨🏽‍❤️‍👨🏽", "couple_with_heart_man_man_tone3_tone4": "👨🏽‍❤️‍👨🏾", "couple_with_heart_man_man_medium_skin_tone_medium_dark_skin_tone": "👨🏽‍❤️‍👨🏾", "couple_with_heart_man_man_tone3_tone5": "👨🏽‍❤️‍👨🏿", "couple_with_heart_man_man_medium_skin_tone_dark_skin_tone": "👨🏽‍❤️‍👨🏿", "couple_with_heart_man_man_tone4_tone1": "👨🏾‍❤️‍👨🏻", "couple_with_heart_man_man_medium_dark_skin_tone_light_skin_tone": "👨🏾‍❤️‍👨🏻", "couple_with_heart_man_man_tone4_tone2": "👨🏾‍❤️‍👨🏼", "couple_with_heart_man_man_medium_dark_skin_tone_medium_light_skin_tone": "👨🏾‍❤️‍👨🏼", "couple_with_heart_man_man_tone4_tone3": "👨🏾‍❤️‍👨🏽", "couple_with_heart_man_man_medium_dark_skin_tone_medium_skin_tone": "👨🏾‍❤️‍👨🏽", "couple_with_heart_man_man_tone4": "👨🏾‍❤️‍👨🏾", "couple_with_heart_man_man_medium_dark_skin_tone": "👨🏾‍❤️‍👨🏾", "couple_with_heart_man_man_tone4_tone5": "👨🏾‍❤️‍👨🏿", "couple_with_heart_man_man_medium_dark_skin_tone_dark_skin_tone": "👨🏾‍❤️‍👨🏿", "couple_with_heart_man_man_tone5_tone1": "👨🏿‍❤️‍👨🏻", "couple_with_heart_man_man_dark_skin_tone_light_skin_tone": "👨🏿‍❤️‍👨🏻", "couple_with_heart_man_man_tone5_tone2": "👨🏿‍❤️‍👨🏼", "couple_with_heart_man_man_dark_skin_tone_medium_light_skin_tone": "👨🏿‍❤️‍👨🏼", "couple_with_heart_man_man_tone5_tone3": "👨🏿‍❤️‍👨🏽", "couple_with_heart_man_man_dark_skin_tone_medium_skin_tone": "👨🏿‍❤️‍👨🏽", "couple_with_heart_man_man_tone5_tone4": "👨🏿‍❤️‍👨🏾", "couple_with_heart_man_man_dark_skin_tone_medium_dark_skin_tone": "👨🏿‍❤️‍👨🏾", "couple_with_heart_man_man_tone5": "👨🏿‍❤️‍👨🏿", "couple_with_heart_man_man_dark_skin_tone": "👨🏿‍❤️‍👨🏿", "kiss_tone1": "💏🏻", "kiss_light_skin_tone": "💏🏻", "kiss_person_person_tone1_tone2": "🧑🏻‍❤️‍💋‍🧑🏼", "kiss_person_person_light_skin_tone_medium_light_skin_tone": "🧑🏻‍❤️‍💋‍🧑🏼", "kiss_person_person_tone1_tone3": "🧑🏻‍❤️‍💋‍🧑🏽", "kiss_person_person_light_skin_tone_medium_skin_tone": "🧑🏻‍❤️‍💋‍🧑🏽", "kiss_person_person_tone1_tone4": "🧑🏻‍❤️‍💋‍🧑🏾", "kiss_person_person_light_skin_tone_medium_dark_skin_tone": "🧑🏻‍❤️‍💋‍🧑🏾", "kiss_person_person_tone1_tone5": "🧑🏻‍❤️‍💋‍🧑🏿", "kiss_person_person_light_skin_tone_dark_skin_tone": "🧑🏻‍❤️‍💋‍🧑🏿", "kiss_person_person_tone2_tone1": "🧑🏼‍❤️‍💋‍🧑🏻", "kiss_person_person_medium_light_skin_tone_light_skin_tone": "🧑🏼‍❤️‍💋‍🧑🏻", "kiss_tone2": "💏🏼", "kiss_medium_light_skin_tone": "💏🏼", "kiss_person_person_tone2_tone3": "🧑🏼‍❤️‍💋‍🧑🏽", "kiss_person_person_medium_light_skin_tone_medium_skin_tone": "🧑🏼‍❤️‍💋‍🧑🏽", "kiss_person_person_tone2_tone4": "🧑🏼‍❤️‍💋‍🧑🏾", "kiss_person_person_medium_light_skin_tone_medium_dark_skin_tone": "🧑🏼‍❤️‍💋‍🧑🏾", "kiss_person_person_tone2_tone5": "🧑🏼‍❤️‍💋‍🧑🏿", "kiss_person_person_medium_light_skin_tone_dark_skin_tone": "🧑🏼‍❤️‍💋‍🧑🏿", "kiss_person_person_tone3_tone1": "🧑🏽‍❤️‍💋‍🧑🏻", "kiss_person_person_medium_skin_tone_light_skin_tone": "🧑🏽‍❤️‍💋‍🧑🏻", "kiss_person_person_tone3_tone2": "🧑🏽‍❤️‍💋‍🧑🏼", "kiss_person_person_medium_skin_tone_medium_light_skin_tone": "🧑🏽‍❤️‍💋‍🧑🏼", "kiss_tone3": "💏🏽", "kiss_medium_skin_tone": "💏🏽", "kiss_person_person_tone3_tone4": "🧑🏽‍❤️‍💋‍🧑🏾", "kiss_person_person_medium_skin_tone_medium_dark_skin_tone": "🧑🏽‍❤️‍💋‍🧑🏾", "kiss_person_person_tone3_tone5": "🧑🏽‍❤️‍💋‍🧑🏿", "kiss_person_person_medium_skin_tone_dark_skin_tone": "🧑🏽‍❤️‍💋‍🧑🏿", "kiss_person_person_tone4_tone1": "🧑🏾‍❤️‍💋‍🧑🏻", "kiss_person_person_medium_dark_skin_tone_light_skin_tone": "🧑🏾‍❤️‍💋‍🧑🏻", "kiss_person_person_tone4_tone2": "🧑🏾‍❤️‍💋‍🧑🏼", "kiss_person_person_medium_dark_skin_tone_medium_light_skin_tone": "🧑🏾‍❤️‍💋‍🧑🏼", "kiss_person_person_tone4_tone3": "🧑🏾‍❤️‍💋‍🧑🏽", "kiss_person_person_medium_dark_skin_tone_medium_skin_tone": "🧑🏾‍❤️‍💋‍🧑🏽", "kiss_tone4": "💏🏾", "kiss_medium_dark_skin_tone": "💏🏾", "kiss_person_person_tone4_tone5": "🧑🏾‍❤️‍💋‍🧑🏿", "kiss_person_person_medium_dark_skin_tone_dark_skin_tone": "🧑🏾‍❤️‍💋‍🧑🏿", "kiss_person_person_tone5_tone1": "🧑🏿‍❤️‍💋‍🧑🏻", "kiss_person_person_dark_skin_tone_light_skin_tone": "🧑🏿‍❤️‍💋‍🧑🏻", "kiss_person_person_tone5_tone2": "🧑🏿‍❤️‍💋‍🧑🏼", "kiss_person_person_dark_skin_tone_medium_light_skin_tone": "🧑🏿‍❤️‍💋‍🧑🏼", "kiss_person_person_tone5_tone3": "🧑🏿‍❤️‍💋‍🧑🏽", "kiss_person_person_dark_skin_tone_medium_skin_tone": "🧑🏿‍❤️‍💋‍🧑🏽", "kiss_person_person_tone5_tone4": "🧑🏿‍❤️‍💋‍🧑🏾", "kiss_person_person_dark_skin_tone_medium_dark_skin_tone": "🧑🏿‍❤️‍💋‍🧑🏾", "kiss_tone5": "💏🏿", "kiss_dark_skin_tone": "💏🏿", "kiss_woman_man_tone1": "👩🏻‍❤️‍💋‍👨🏻", "kiss_woman_man_light_skin_tone": "👩🏻‍❤️‍💋‍👨🏻", "kiss_woman_man_tone1_tone2": "👩🏻‍❤️‍💋‍👨🏼", "kiss_woman_man_light_skin_tone_medium_light_skin_tone": "👩🏻‍❤️‍💋‍👨🏼", "kiss_woman_man_tone1_tone3": "👩🏻‍❤️‍💋‍👨🏽", "kiss_woman_man_light_skin_tone_medium_skin_tone": "👩🏻‍❤️‍💋‍👨🏽", "kiss_woman_man_tone1_tone4": "👩🏻‍❤️‍💋‍👨🏾", "kiss_woman_man_light_skin_tone_medium_dark_skin_tone": "👩🏻‍❤️‍💋‍👨🏾", "kiss_woman_man_tone1_tone5": "👩🏻‍❤️‍💋‍👨🏿", "kiss_woman_man_light_skin_tone_dark_skin_tone": "👩🏻‍❤️‍💋‍👨🏿", "kiss_woman_man_tone2_tone1": "👩🏼‍❤️‍💋‍👨🏻", "kiss_woman_man_medium_light_skin_tone_light_skin_tone": "👩🏼‍❤️‍💋‍👨🏻", "kiss_woman_man_tone2": "👩🏼‍❤️‍💋‍👨🏼", "kiss_woman_man_medium_light_skin_tone": "👩🏼‍❤️‍💋‍👨🏼", "kiss_woman_man_tone2_tone3": "👩🏼‍❤️‍💋‍👨🏽", "kiss_woman_man_medium_light_skin_tone_medium_skin_tone": "👩🏼‍❤️‍💋‍👨🏽", "kiss_woman_man_tone2_tone4": "👩🏼‍❤️‍💋‍👨🏾", "kiss_woman_man_medium_light_skin_tone_medium_dark_skin_tone": "👩🏼‍❤️‍💋‍👨🏾", "kiss_woman_man_tone2_tone5": "👩🏼‍❤️‍💋‍👨🏿", "kiss_woman_man_medium_light_skin_tone_dark_skin_tone": "👩🏼‍❤️‍💋‍👨🏿", "kiss_woman_man_tone3_tone1": "👩🏽‍❤️‍💋‍👨🏻", "kiss_woman_man_medium_skin_tone_light_skin_tone": "👩🏽‍❤️‍💋‍👨🏻", "kiss_woman_man_tone3_tone2": "👩🏽‍❤️‍💋‍👨🏼", "kiss_woman_man_medium_skin_tone_medium_light_skin_tone": "👩🏽‍❤️‍💋‍👨🏼", "kiss_woman_man_tone3": "👩🏽‍❤️‍💋‍👨🏽", "kiss_woman_man_medium_skin_tone": "👩🏽‍❤️‍💋‍👨🏽", "kiss_woman_man_tone3_tone4": "👩🏽‍❤️‍💋‍👨🏾", "kiss_woman_man_medium_skin_tone_medium_dark_skin_tone": "👩🏽‍❤️‍💋‍👨🏾", "kiss_woman_man_tone3_tone5": "👩🏽‍❤️‍💋‍👨🏿", "kiss_woman_man_medium_skin_tone_dark_skin_tone": "👩🏽‍❤️‍💋‍👨🏿", "kiss_woman_man_tone4_tone1": "👩🏾‍❤️‍💋‍👨🏻", "kiss_woman_man_medium_dark_skin_tone_light_skin_tone": "👩🏾‍❤️‍💋‍👨🏻", "kiss_woman_man_tone4_tone2": "👩🏾‍❤️‍💋‍👨🏼", "kiss_woman_man_medium_dark_skin_tone_medium_light_skin_tone": "👩🏾‍❤️‍💋‍👨🏼", "kiss_woman_man_tone4_tone3": "👩🏾‍❤️‍💋‍👨🏽", "kiss_woman_man_medium_dark_skin_tone_medium_skin_tone": "👩🏾‍❤️‍💋‍👨🏽", "kiss_woman_man_tone4": "👩🏾‍❤️‍💋‍👨🏾", "kiss_woman_man_medium_dark_skin_tone": "👩🏾‍❤️‍💋‍👨🏾", "kiss_woman_man_tone4_tone5": "👩🏾‍❤️‍💋‍👨🏿", "kiss_woman_man_medium_dark_skin_tone_dark_skin_tone": "👩🏾‍❤️‍💋‍👨🏿", "kiss_woman_man_tone5_tone1": "👩🏿‍❤️‍💋‍👨🏻", "kiss_woman_man_dark_skin_tone_light_skin_tone": "👩🏿‍❤️‍💋‍👨🏻", "kiss_woman_man_tone5_tone2": "👩🏿‍❤️‍💋‍👨🏼", "kiss_woman_man_dark_skin_tone_medium_light_skin_tone": "👩🏿‍❤️‍💋‍👨🏼", "kiss_woman_man_tone5_tone3": "👩🏿‍❤️‍💋‍👨🏽", "kiss_woman_man_dark_skin_tone_medium_skin_tone": "👩🏿‍❤️‍💋‍👨🏽", "kiss_woman_man_tone5_tone4": "👩🏿‍❤️‍💋‍👨🏾", "kiss_woman_man_dark_skin_tone_medium_dark_skin_tone": "👩🏿‍❤️‍💋‍👨🏾", "kiss_woman_man_tone5": "👩🏿‍❤️‍💋‍👨🏿", "kiss_woman_man_dark_skin_tone": "👩🏿‍❤️‍💋‍👨🏿", "kiss_woman_woman_tone1": "👩🏻‍❤️‍💋‍👩🏻", "kiss_woman_woman_light_skin_tone": "👩🏻‍❤️‍💋‍👩🏻", "kiss_woman_woman_tone1_tone2": "👩🏻‍❤️‍💋‍👩🏼", "kiss_woman_woman_light_skin_tone_medium_light_skin_tone": "👩🏻‍❤️‍💋‍👩🏼", "kiss_woman_woman_tone1_tone3": "👩🏻‍❤️‍💋‍👩🏽", "kiss_woman_woman_light_skin_tone_medium_skin_tone": "👩🏻‍❤️‍💋‍👩🏽", "kiss_woman_woman_tone1_tone4": "👩🏻‍❤️‍💋‍👩🏾", "kiss_woman_woman_light_skin_tone_medium_dark_skin_tone": "👩🏻‍❤️‍💋‍👩🏾", "kiss_woman_woman_tone1_tone5": "👩🏻‍❤️‍💋‍👩🏿", "kiss_woman_woman_light_skin_tone_dark_skin_tone": "👩🏻‍❤️‍💋‍👩🏿", "kiss_woman_woman_tone2_tone1": "👩🏼‍❤️‍💋‍👩🏻", "kiss_woman_woman_medium_light_skin_tone_light_skin_tone": "👩🏼‍❤️‍💋‍👩🏻", "kiss_woman_woman_tone2": "👩🏼‍❤️‍💋‍👩🏼", "kiss_woman_woman_medium_light_skin_tone": "👩🏼‍❤️‍💋‍👩🏼", "kiss_woman_woman_tone2_tone3": "👩🏼‍❤️‍💋‍👩🏽", "kiss_woman_woman_medium_light_skin_tone_medium_skin_tone": "👩🏼‍❤️‍💋‍👩🏽", "kiss_woman_woman_tone2_tone4": "👩🏼‍❤️‍💋‍👩🏾", "kiss_woman_woman_medium_light_skin_tone_medium_dark_skin_tone": "👩🏼‍❤️‍💋‍👩🏾", "kiss_woman_woman_tone2_tone5": "👩🏼‍❤️‍💋‍👩🏿", "kiss_woman_woman_medium_light_skin_tone_dark_skin_tone": "👩🏼‍❤️‍💋‍👩🏿", "kiss_woman_woman_tone3_tone1": "👩🏽‍❤️‍💋‍👩🏻", "kiss_woman_woman_medium_skin_tone_light_skin_tone": "👩🏽‍❤️‍💋‍👩🏻", "kiss_woman_woman_tone3_tone2": "👩🏽‍❤️‍💋‍👩🏼", "kiss_woman_woman_medium_skin_tone_medium_light_skin_tone": "👩🏽‍❤️‍💋‍👩🏼", "kiss_woman_woman_tone3": "👩🏽‍❤️‍💋‍👩🏽", "kiss_woman_woman_medium_skin_tone": "👩🏽‍❤️‍💋‍👩🏽", "kiss_woman_woman_tone3_tone4": "👩🏽‍❤️‍💋‍👩🏾", "kiss_woman_woman_medium_skin_tone_medium_dark_skin_tone": "👩🏽‍❤️‍💋‍👩🏾", "kiss_woman_woman_tone3_tone5": "👩🏽‍❤️‍💋‍👩🏿", "kiss_woman_woman_medium_skin_tone_dark_skin_tone": "👩🏽‍❤️‍💋‍👩🏿", "kiss_woman_woman_tone4_tone1": "👩🏾‍❤️‍💋‍👩🏻", "kiss_woman_woman_medium_dark_skin_tone_light_skin_tone": "👩🏾‍❤️‍💋‍👩🏻", "kiss_woman_woman_tone4_tone2": "👩🏾‍❤️‍💋‍👩🏼", "kiss_woman_woman_medium_dark_skin_tone_medium_light_skin_tone": "👩🏾‍❤️‍💋‍👩🏼", "kiss_woman_woman_tone4_tone3": "👩🏾‍❤️‍💋‍👩🏽", "kiss_woman_woman_medium_dark_skin_tone_medium_skin_tone": "👩🏾‍❤️‍💋‍👩🏽", "kiss_woman_woman_tone4": "👩🏾‍❤️‍💋‍👩🏾", "kiss_woman_woman_medium_dark_skin_tone": "👩🏾‍❤️‍💋‍👩🏾", "kiss_woman_woman_tone4_tone5": "👩🏾‍❤️‍💋‍👩🏿", "kiss_woman_woman_medium_dark_skin_tone_dark_skin_tone": "👩🏾‍❤️‍💋‍👩🏿", "kiss_woman_woman_tone5_tone1": "👩🏿‍❤️‍💋‍👩🏻", "kiss_woman_woman_dark_skin_tone_light_skin_tone": "👩🏿‍❤️‍💋‍👩🏻", "kiss_woman_woman_tone5_tone2": "👩🏿‍❤️‍💋‍👩🏼", "kiss_woman_woman_dark_skin_tone_medium_light_skin_tone": "👩🏿‍❤️‍💋‍👩🏼", "kiss_woman_woman_tone5_tone3": "👩🏿‍❤️‍💋‍👩🏽", "kiss_woman_woman_dark_skin_tone_medium_skin_tone": "👩🏿‍❤️‍💋‍👩🏽", "kiss_woman_woman_tone5_tone4": "👩🏿‍❤️‍💋‍👩🏾", "kiss_woman_woman_dark_skin_tone_medium_dark_skin_tone": "👩🏿‍❤️‍💋‍👩🏾", "kiss_woman_woman_tone5": "👩🏿‍❤️‍💋‍👩🏿", "kiss_woman_woman_dark_skin_tone": "👩🏿‍❤️‍💋‍👩🏿", "kiss_man_man_tone1": "👨🏻‍❤️‍💋‍👨🏻", "kiss_man_man_light_skin_tone": "👨🏻‍❤️‍💋‍👨🏻", "kiss_man_man_tone1_tone2": "👨🏻‍❤️‍💋‍👨🏼", "kiss_man_man_light_skin_tone_medium_light_skin_tone": "👨🏻‍❤️‍💋‍👨🏼", "kiss_man_man_tone1_tone3": "👨🏻‍❤️‍💋‍👨🏽", "kiss_man_man_light_skin_tone_medium_skin_tone": "👨🏻‍❤️‍💋‍👨🏽", "kiss_man_man_tone1_tone4": "👨🏻‍❤️‍💋‍👨🏾", "kiss_man_man_light_skin_tone_medium_dark_skin_tone": "👨🏻‍❤️‍💋‍👨🏾", "kiss_man_man_tone1_tone5": "👨🏻‍❤️‍💋‍👨🏿", "kiss_man_man_light_skin_tone_dark_skin_tone": "👨🏻‍❤️‍💋‍👨🏿", "kiss_man_man_tone2_tone1": "👨🏼‍❤️‍💋‍👨🏻", "kiss_man_man_medium_light_skin_tone_light_skin_tone": "👨🏼‍❤️‍💋‍👨🏻", "kiss_man_man_tone2": "👨🏼‍❤️‍💋‍👨🏼", "kiss_man_man_medium_light_skin_tone": "👨🏼‍❤️‍💋‍👨🏼", "kiss_man_man_tone2_tone3": "👨🏼‍❤️‍💋‍👨🏽", "kiss_man_man_medium_light_skin_tone_medium_skin_tone": "👨🏼‍❤️‍💋‍👨🏽", "kiss_man_man_tone2_tone4": "👨🏼‍❤️‍💋‍👨🏾", "kiss_man_man_medium_light_skin_tone_medium_dark_skin_tone": "👨🏼‍❤️‍💋‍👨🏾", "kiss_man_man_tone2_tone5": "👨🏼‍❤️‍💋‍👨🏿", "kiss_man_man_medium_light_skin_tone_dark_skin_tone": "👨🏼‍❤️‍💋‍👨🏿", "kiss_man_man_tone3_tone1": "👨🏽‍❤️‍💋‍👨🏻", "kiss_man_man_medium_skin_tone_light_skin_tone": "👨🏽‍❤️‍💋‍👨🏻", "kiss_man_man_tone3_tone2": "👨🏽‍❤️‍💋‍👨🏼", "kiss_man_man_medium_skin_tone_medium_light_skin_tone": "👨🏽‍❤️‍💋‍👨🏼", "kiss_man_man_tone3": "👨🏽‍❤️‍💋‍👨🏽", "kiss_man_man_medium_skin_tone": "👨🏽‍❤️‍💋‍👨🏽", "kiss_man_man_tone3_tone4": "👨🏽‍❤️‍💋‍👨🏾", "kiss_man_man_medium_skin_tone_medium_dark_skin_tone": "👨🏽‍❤️‍💋‍👨🏾", "kiss_man_man_tone3_tone5": "👨🏽‍❤️‍💋‍👨🏿", "kiss_man_man_medium_skin_tone_dark_skin_tone": "👨🏽‍❤️‍💋‍👨🏿", "kiss_man_man_tone4_tone1": "👨🏾‍❤️‍💋‍👨🏻", "kiss_man_man_medium_dark_skin_tone_light_skin_tone": "👨🏾‍❤️‍💋‍👨🏻", "kiss_man_man_tone4_tone2": "👨🏾‍❤️‍💋‍👨🏼", "kiss_man_man_medium_dark_skin_tone_medium_light_skin_tone": "👨🏾‍❤️‍💋‍👨🏼", "kiss_man_man_tone4_tone3": "👨🏾‍❤️‍💋‍👨🏽", "kiss_man_man_medium_dark_skin_tone_medium_skin_tone": "👨🏾‍❤️‍💋‍👨🏽", "kiss_man_man_tone4": "👨🏾‍❤️‍💋‍👨🏾", "kiss_man_man_medium_dark_skin_tone": "👨🏾‍❤️‍💋‍👨🏾", "kiss_man_man_tone4_tone5": "👨🏾‍❤️‍💋‍👨🏿", "kiss_man_man_medium_dark_skin_tone_dark_skin_tone": "👨🏾‍❤️‍💋‍👨🏿", "kiss_man_man_tone5_tone1": "👨🏿‍❤️‍💋‍👨🏻", "kiss_man_man_dark_skin_tone_light_skin_tone": "👨🏿‍❤️‍💋‍👨🏻", "kiss_man_man_tone5_tone2": "👨🏿‍❤️‍💋‍👨🏼", "kiss_man_man_dark_skin_tone_medium_light_skin_tone": "👨🏿‍❤️‍💋‍👨🏼", "kiss_man_man_tone5_tone3": "👨🏿‍❤️‍💋‍👨🏽", "kiss_man_man_dark_skin_tone_medium_skin_tone": "👨🏿‍❤️‍💋‍👨🏽", "kiss_man_man_tone5_tone4": "👨🏿‍❤️‍💋‍👨🏾", "kiss_man_man_dark_skin_tone_medium_dark_skin_tone": "👨🏿‍❤️‍💋‍👨🏾", "kiss_man_man_tone5": "👨🏿‍❤️‍💋‍👨🏿", "kiss_man_man_dark_skin_tone": "👨🏿‍❤️‍💋‍👨🏿", "snowboarder_tone1": "🏂🏻", "snowboarder_light_skin_tone": "🏂🏻", "snowboarder_tone2": "🏂🏼", "snowboarder_medium_light_skin_tone": "🏂🏼", "snowboarder_tone3": "🏂🏽", "snowboarder_medium_skin_tone": "🏂🏽", "snowboarder_tone4": "🏂🏾", "snowboarder_medium_dark_skin_tone": "🏂🏾", "snowboarder_tone5": "🏂🏿", "snowboarder_dark_skin_tone": "🏂🏿", "person_lifting_weights_tone1": "🏋🏻", "lifter_tone1": "🏋🏻", "weight_lifter_tone1": "🏋🏻", "person_lifting_weights_tone2": "🏋🏼", "lifter_tone2": "🏋🏼", "weight_lifter_tone2": "🏋🏼", "person_lifting_weights_tone3": "🏋🏽", "lifter_tone3": "🏋🏽", "weight_lifter_tone3": "🏋🏽", "person_lifting_weights_tone4": "🏋🏾", "lifter_tone4": "🏋🏾", "weight_lifter_tone4": "🏋🏾", "person_lifting_weights_tone5": "🏋🏿", "lifter_tone5": "🏋🏿", "weight_lifter_tone5": "🏋🏿", "woman_lifting_weights_tone1": "🏋🏻‍♀️", "woman_lifting_weights_light_skin_tone": "🏋🏻‍♀️", "woman_lifting_weights_tone2": "🏋🏼‍♀️", "woman_lifting_weights_medium_light_skin_tone": "🏋🏼‍♀️", "woman_lifting_weights_tone3": "🏋🏽‍♀️", "woman_lifting_weights_medium_skin_tone": "🏋🏽‍♀️", "woman_lifting_weights_tone4": "🏋🏾‍♀️", "woman_lifting_weights_medium_dark_skin_tone": "🏋🏾‍♀️", "woman_lifting_weights_tone5": "🏋🏿‍♀️", "woman_lifting_weights_dark_skin_tone": "🏋🏿‍♀️", "man_lifting_weights_tone1": "🏋🏻‍♂️", "man_lifting_weights_light_skin_tone": "🏋🏻‍♂️", "man_lifting_weights_tone2": "🏋🏼‍♂️", "man_lifting_weights_medium_light_skin_tone": "🏋🏼‍♂️", "man_lifting_weights_tone3": "🏋🏽‍♂️", "man_lifting_weights_medium_skin_tone": "🏋🏽‍♂️", "man_lifting_weights_tone4": "🏋🏾‍♂️", "man_lifting_weights_medium_dark_skin_tone": "🏋🏾‍♂️", "man_lifting_weights_tone5": "🏋🏿‍♂️", "man_lifting_weights_dark_skin_tone": "🏋🏿‍♂️", "person_doing_cartwheel_tone1": "🤸🏻", "cartwheel_tone1": "🤸🏻", "person_doing_cartwheel_tone2": "🤸🏼", "cartwheel_tone2": "🤸🏼", "person_doing_cartwheel_tone3": "🤸🏽", "cartwheel_tone3": "🤸🏽", "person_doing_cartwheel_tone4": "🤸🏾", "cartwheel_tone4": "🤸🏾", "person_doing_cartwheel_tone5": "🤸🏿", "cartwheel_tone5": "🤸🏿", "woman_cartwheeling_tone1": "🤸🏻‍♀️", "woman_cartwheeling_light_skin_tone": "🤸🏻‍♀️", "woman_cartwheeling_tone2": "🤸🏼‍♀️", "woman_cartwheeling_medium_light_skin_tone": "🤸🏼‍♀️", "woman_cartwheeling_tone3": "🤸🏽‍♀️", "woman_cartwheeling_medium_skin_tone": "🤸🏽‍♀️", "woman_cartwheeling_tone4": "🤸🏾‍♀️", "woman_cartwheeling_medium_dark_skin_tone": "🤸🏾‍♀️", "woman_cartwheeling_tone5": "🤸🏿‍♀️", "woman_cartwheeling_dark_skin_tone": "🤸🏿‍♀️", "man_cartwheeling_tone1": "🤸🏻‍♂️", "man_cartwheeling_light_skin_tone": "🤸🏻‍♂️", "man_cartwheeling_tone2": "🤸🏼‍♂️", "man_cartwheeling_medium_light_skin_tone": "🤸🏼‍♂️", "man_cartwheeling_tone3": "🤸🏽‍♂️", "man_cartwheeling_medium_skin_tone": "🤸🏽‍♂️", "man_cartwheeling_tone4": "🤸🏾‍♂️", "man_cartwheeling_medium_dark_skin_tone": "🤸🏾‍♂️", "man_cartwheeling_tone5": "🤸🏿‍♂️", "man_cartwheeling_dark_skin_tone": "🤸🏿‍♂️", "person_bouncing_ball_tone1": "⛹🏻", "basketball_player_tone1": "⛹🏻", "person_with_ball_tone1": "⛹🏻", "person_bouncing_ball_tone2": "⛹🏼", "basketball_player_tone2": "⛹🏼", "person_with_ball_tone2": "⛹🏼", "person_bouncing_ball_tone3": "⛹🏽", "basketball_player_tone3": "⛹🏽", "person_with_ball_tone3": "⛹🏽", "person_bouncing_ball_tone4": "⛹🏾", "basketball_player_tone4": "⛹🏾", "person_with_ball_tone4": "⛹🏾", "person_bouncing_ball_tone5": "⛹🏿", "basketball_player_tone5": "⛹🏿", "person_with_ball_tone5": "⛹🏿", "woman_bouncing_ball_tone1": "⛹🏻‍♀️", "woman_bouncing_ball_light_skin_tone": "⛹🏻‍♀️", "woman_bouncing_ball_tone2": "⛹🏼‍♀️", "woman_bouncing_ball_medium_light_skin_tone": "⛹🏼‍♀️", "woman_bouncing_ball_tone3": "⛹🏽‍♀️", "woman_bouncing_ball_medium_skin_tone": "⛹🏽‍♀️", "woman_bouncing_ball_tone4": "⛹🏾‍♀️", "woman_bouncing_ball_medium_dark_skin_tone": "⛹🏾‍♀️", "woman_bouncing_ball_tone5": "⛹🏿‍♀️", "woman_bouncing_ball_dark_skin_tone": "⛹🏿‍♀️", "man_bouncing_ball_tone1": "⛹🏻‍♂️", "man_bouncing_ball_light_skin_tone": "⛹🏻‍♂️", "man_bouncing_ball_tone2": "⛹🏼‍♂️", "man_bouncing_ball_medium_light_skin_tone": "⛹🏼‍♂️", "man_bouncing_ball_tone3": "⛹🏽‍♂️", "man_bouncing_ball_medium_skin_tone": "⛹🏽‍♂️", "man_bouncing_ball_tone4": "⛹🏾‍♂️", "man_bouncing_ball_medium_dark_skin_tone": "⛹🏾‍♂️", "man_bouncing_ball_tone5": "⛹🏿‍♂️", "man_bouncing_ball_dark_skin_tone": "⛹🏿‍♂️", "person_playing_handball_tone1": "🤾🏻", "handball_tone1": "🤾🏻", "person_playing_handball_tone2": "🤾🏼", "handball_tone2": "🤾🏼", "person_playing_handball_tone3": "🤾🏽", "handball_tone3": "🤾🏽", "person_playing_handball_tone4": "🤾🏾", "handball_tone4": "🤾🏾", "person_playing_handball_tone5": "🤾🏿", "handball_tone5": "🤾🏿", "woman_playing_handball_tone1": "🤾🏻‍♀️", "woman_playing_handball_light_skin_tone": "🤾🏻‍♀️", "woman_playing_handball_tone2": "🤾🏼‍♀️", "woman_playing_handball_medium_light_skin_tone": "🤾🏼‍♀️", "woman_playing_handball_tone3": "🤾🏽‍♀️", "woman_playing_handball_medium_skin_tone": "🤾🏽‍♀️", "woman_playing_handball_tone4": "🤾🏾‍♀️", "woman_playing_handball_medium_dark_skin_tone": "🤾🏾‍♀️", "woman_playing_handball_tone5": "🤾🏿‍♀️", "woman_playing_handball_dark_skin_tone": "🤾🏿‍♀️", "man_playing_handball_tone1": "🤾🏻‍♂️", "man_playing_handball_light_skin_tone": "🤾🏻‍♂️", "man_playing_handball_tone2": "🤾🏼‍♂️", "man_playing_handball_medium_light_skin_tone": "🤾🏼‍♂️", "man_playing_handball_tone3": "🤾🏽‍♂️", "man_playing_handball_medium_skin_tone": "🤾🏽‍♂️", "man_playing_handball_tone4": "🤾🏾‍♂️", "man_playing_handball_medium_dark_skin_tone": "🤾🏾‍♂️", "man_playing_handball_tone5": "🤾🏿‍♂️", "man_playing_handball_dark_skin_tone": "🤾🏿‍♂️", "person_golfing_tone1": "🏌🏻", "person_golfing_light_skin_tone": "🏌🏻", "person_golfing_tone2": "🏌🏼", "person_golfing_medium_light_skin_tone": "🏌🏼", "person_golfing_tone3": "🏌🏽", "person_golfing_medium_skin_tone": "🏌🏽", "person_golfing_tone4": "🏌🏾", "person_golfing_medium_dark_skin_tone": "🏌🏾", "person_golfing_tone5": "🏌🏿", "person_golfing_dark_skin_tone": "🏌🏿", "woman_golfing_tone1": "🏌🏻‍♀️", "woman_golfing_light_skin_tone": "🏌🏻‍♀️", "woman_golfing_tone2": "🏌🏼‍♀️", "woman_golfing_medium_light_skin_tone": "🏌🏼‍♀️", "woman_golfing_tone3": "🏌🏽‍♀️", "woman_golfing_medium_skin_tone": "🏌🏽‍♀️", "woman_golfing_tone4": "🏌🏾‍♀️", "woman_golfing_medium_dark_skin_tone": "🏌🏾‍♀️", "woman_golfing_tone5": "🏌🏿‍♀️", "woman_golfing_dark_skin_tone": "🏌🏿‍♀️", "man_golfing_tone1": "🏌🏻‍♂️", "man_golfing_light_skin_tone": "🏌🏻‍♂️", "man_golfing_tone2": "🏌🏼‍♂️", "man_golfing_medium_light_skin_tone": "🏌🏼‍♂️", "man_golfing_tone3": "🏌🏽‍♂️", "man_golfing_medium_skin_tone": "🏌🏽‍♂️", "man_golfing_tone4": "🏌🏾‍♂️", "man_golfing_medium_dark_skin_tone": "🏌🏾‍♂️", "man_golfing_tone5": "🏌🏿‍♂️", "man_golfing_dark_skin_tone": "🏌🏿‍♂️", "horse_racing_tone1": "🏇🏻", "horse_racing_tone2": "🏇🏼", "horse_racing_tone3": "🏇🏽", "horse_racing_tone4": "🏇🏾", "horse_racing_tone5": "🏇🏿", "person_in_lotus_position_tone1": "🧘🏻", "person_in_lotus_position_light_skin_tone": "🧘🏻", "person_in_lotus_position_tone2": "🧘🏼", "person_in_lotus_position_medium_light_skin_tone": "🧘🏼", "person_in_lotus_position_tone3": "🧘🏽", "person_in_lotus_position_medium_skin_tone": "🧘🏽", "person_in_lotus_position_tone4": "🧘🏾", "person_in_lotus_position_medium_dark_skin_tone": "🧘🏾", "person_in_lotus_position_tone5": "🧘🏿", "person_in_lotus_position_dark_skin_tone": "🧘🏿", "woman_in_lotus_position_tone1": "🧘🏻‍♀️", "woman_in_lotus_position_light_skin_tone": "🧘🏻‍♀️", "woman_in_lotus_position_tone2": "🧘🏼‍♀️", "woman_in_lotus_position_medium_light_skin_tone": "🧘🏼‍♀️", "woman_in_lotus_position_tone3": "🧘🏽‍♀️", "woman_in_lotus_position_medium_skin_tone": "🧘🏽‍♀️", "woman_in_lotus_position_tone4": "🧘🏾‍♀️", "woman_in_lotus_position_medium_dark_skin_tone": "🧘🏾‍♀️", "woman_in_lotus_position_tone5": "🧘🏿‍♀️", "woman_in_lotus_position_dark_skin_tone": "🧘🏿‍♀️", "man_in_lotus_position_tone1": "🧘🏻‍♂️", "man_in_lotus_position_light_skin_tone": "🧘🏻‍♂️", "man_in_lotus_position_tone2": "🧘🏼‍♂️", "man_in_lotus_position_medium_light_skin_tone": "🧘🏼‍♂️", "man_in_lotus_position_tone3": "🧘🏽‍♂️", "man_in_lotus_position_medium_skin_tone": "🧘🏽‍♂️", "man_in_lotus_position_tone4": "🧘🏾‍♂️", "man_in_lotus_position_medium_dark_skin_tone": "🧘🏾‍♂️", "man_in_lotus_position_tone5": "🧘🏿‍♂️", "man_in_lotus_position_dark_skin_tone": "🧘🏿‍♂️", "person_surfing_tone1": "🏄🏻", "surfer_tone1": "🏄🏻", "person_surfing_tone2": "🏄🏼", "surfer_tone2": "🏄🏼", "person_surfing_tone3": "🏄🏽", "surfer_tone3": "🏄🏽", "person_surfing_tone4": "🏄🏾", "surfer_tone4": "🏄🏾", "person_surfing_tone5": "🏄🏿", "surfer_tone5": "🏄🏿", "woman_surfing_tone1": "🏄🏻‍♀️", "woman_surfing_light_skin_tone": "🏄🏻‍♀️", "woman_surfing_tone2": "🏄🏼‍♀️", "woman_surfing_medium_light_skin_tone": "🏄🏼‍♀️", "woman_surfing_tone3": "🏄🏽‍♀️", "woman_surfing_medium_skin_tone": "🏄🏽‍♀️", "woman_surfing_tone4": "🏄🏾‍♀️", "woman_surfing_medium_dark_skin_tone": "🏄🏾‍♀️", "woman_surfing_tone5": "🏄🏿‍♀️", "woman_surfing_dark_skin_tone": "🏄🏿‍♀️", "man_surfing_tone1": "🏄🏻‍♂️", "man_surfing_light_skin_tone": "🏄🏻‍♂️", "man_surfing_tone2": "🏄🏼‍♂️", "man_surfing_medium_light_skin_tone": "🏄🏼‍♂️", "man_surfing_tone3": "🏄🏽‍♂️", "man_surfing_medium_skin_tone": "🏄🏽‍♂️", "man_surfing_tone4": "🏄🏾‍♂️", "man_surfing_medium_dark_skin_tone": "🏄🏾‍♂️", "man_surfing_tone5": "🏄🏿‍♂️", "man_surfing_dark_skin_tone": "🏄🏿‍♂️", "person_swimming_tone1": "🏊🏻", "swimmer_tone1": "🏊🏻", "person_swimming_tone2": "🏊🏼", "swimmer_tone2": "🏊🏼", "person_swimming_tone3": "🏊🏽", "swimmer_tone3": "🏊🏽", "person_swimming_tone4": "🏊🏾", "swimmer_tone4": "🏊🏾", "person_swimming_tone5": "🏊🏿", "swimmer_tone5": "🏊🏿", "woman_swimming_tone1": "🏊🏻‍♀️", "woman_swimming_light_skin_tone": "🏊🏻‍♀️", "woman_swimming_tone2": "🏊🏼‍♀️", "woman_swimming_medium_light_skin_tone": "🏊🏼‍♀️", "woman_swimming_tone3": "🏊🏽‍♀️", "woman_swimming_medium_skin_tone": "🏊🏽‍♀️", "woman_swimming_tone4": "🏊🏾‍♀️", "woman_swimming_medium_dark_skin_tone": "🏊🏾‍♀️", "woman_swimming_tone5": "🏊🏿‍♀️", "woman_swimming_dark_skin_tone": "🏊🏿‍♀️", "man_swimming_tone1": "🏊🏻‍♂️", "man_swimming_light_skin_tone": "🏊🏻‍♂️", "man_swimming_tone2": "🏊🏼‍♂️", "man_swimming_medium_light_skin_tone": "🏊🏼‍♂️", "man_swimming_tone3": "🏊🏽‍♂️", "man_swimming_medium_skin_tone": "🏊🏽‍♂️", "man_swimming_tone4": "🏊🏾‍♂️", "man_swimming_medium_dark_skin_tone": "🏊🏾‍♂️", "man_swimming_tone5": "🏊🏿‍♂️", "man_swimming_dark_skin_tone": "🏊🏿‍♂️", "person_playing_water_polo_tone1": "🤽🏻", "water_polo_tone1": "🤽🏻", "person_playing_water_polo_tone2": "🤽🏼", "water_polo_tone2": "🤽🏼", "person_playing_water_polo_tone3": "🤽🏽", "water_polo_tone3": "🤽🏽", "person_playing_water_polo_tone4": "🤽🏾", "water_polo_tone4": "🤽🏾", "person_playing_water_polo_tone5": "🤽🏿", "water_polo_tone5": "🤽🏿", "woman_playing_water_polo_tone1": "🤽🏻‍♀️", "woman_playing_water_polo_light_skin_tone": "🤽🏻‍♀️", "woman_playing_water_polo_tone2": "🤽🏼‍♀️", "woman_playing_water_polo_medium_light_skin_tone": "🤽🏼‍♀️", "woman_playing_water_polo_tone3": "🤽🏽‍♀️", "woman_playing_water_polo_medium_skin_tone": "🤽🏽‍♀️", "woman_playing_water_polo_tone4": "🤽🏾‍♀️", "woman_playing_water_polo_medium_dark_skin_tone": "🤽🏾‍♀️", "woman_playing_water_polo_tone5": "🤽🏿‍♀️", "woman_playing_water_polo_dark_skin_tone": "🤽🏿‍♀️", "man_playing_water_polo_tone1": "🤽🏻‍♂️", "man_playing_water_polo_light_skin_tone": "🤽🏻‍♂️", "man_playing_water_polo_tone2": "🤽🏼‍♂️", "man_playing_water_polo_medium_light_skin_tone": "🤽🏼‍♂️", "man_playing_water_polo_tone3": "🤽🏽‍♂️", "man_playing_water_polo_medium_skin_tone": "🤽🏽‍♂️", "man_playing_water_polo_tone4": "🤽🏾‍♂️", "man_playing_water_polo_medium_dark_skin_tone": "🤽🏾‍♂️", "man_playing_water_polo_tone5": "🤽🏿‍♂️", "man_playing_water_polo_dark_skin_tone": "🤽🏿‍♂️", "person_rowing_boat_tone1": "🚣🏻", "rowboat_tone1": "🚣🏻", "person_rowing_boat_tone2": "🚣🏼", "rowboat_tone2": "🚣🏼", "person_rowing_boat_tone3": "🚣🏽", "rowboat_tone3": "🚣🏽", "person_rowing_boat_tone4": "🚣🏾", "rowboat_tone4": "🚣🏾", "person_rowing_boat_tone5": "🚣🏿", "rowboat_tone5": "🚣🏿", "woman_rowing_boat_tone1": "🚣🏻‍♀️", "woman_rowing_boat_light_skin_tone": "🚣🏻‍♀️", "woman_rowing_boat_tone2": "🚣🏼‍♀️", "woman_rowing_boat_medium_light_skin_tone": "🚣🏼‍♀️", "woman_rowing_boat_tone3": "🚣🏽‍♀️", "woman_rowing_boat_medium_skin_tone": "🚣🏽‍♀️", "woman_rowing_boat_tone4": "🚣🏾‍♀️", "woman_rowing_boat_medium_dark_skin_tone": "🚣🏾‍♀️", "woman_rowing_boat_tone5": "🚣🏿‍♀️", "woman_rowing_boat_dark_skin_tone": "🚣🏿‍♀️", "man_rowing_boat_tone1": "🚣🏻‍♂️", "man_rowing_boat_light_skin_tone": "🚣🏻‍♂️", "man_rowing_boat_tone2": "🚣🏼‍♂️", "man_rowing_boat_medium_light_skin_tone": "🚣🏼‍♂️", "man_rowing_boat_tone3": "🚣🏽‍♂️", "man_rowing_boat_medium_skin_tone": "🚣🏽‍♂️", "man_rowing_boat_tone4": "🚣🏾‍♂️", "man_rowing_boat_medium_dark_skin_tone": "🚣🏾‍♂️", "man_rowing_boat_tone5": "🚣🏿‍♂️", "man_rowing_boat_dark_skin_tone": "🚣🏿‍♂️", "person_climbing_tone1": "🧗🏻", "person_climbing_light_skin_tone": "🧗🏻", "person_climbing_tone2": "🧗🏼", "person_climbing_medium_light_skin_tone": "🧗🏼", "person_climbing_tone3": "🧗🏽", "person_climbing_medium_skin_tone": "🧗🏽", "person_climbing_tone4": "🧗🏾", "person_climbing_medium_dark_skin_tone": "🧗🏾", "person_climbing_tone5": "🧗🏿", "person_climbing_dark_skin_tone": "🧗🏿", "woman_climbing_tone1": "🧗🏻‍♀️", "woman_climbing_light_skin_tone": "🧗🏻‍♀️", "woman_climbing_tone2": "🧗🏼‍♀️", "woman_climbing_medium_light_skin_tone": "🧗🏼‍♀️", "woman_climbing_tone3": "🧗🏽‍♀️", "woman_climbing_medium_skin_tone": "🧗🏽‍♀️", "woman_climbing_tone4": "🧗🏾‍♀️", "woman_climbing_medium_dark_skin_tone": "🧗🏾‍♀️", "woman_climbing_tone5": "🧗🏿‍♀️", "woman_climbing_dark_skin_tone": "🧗🏿‍♀️", "man_climbing_tone1": "🧗🏻‍♂️", "man_climbing_light_skin_tone": "🧗🏻‍♂️", "man_climbing_tone2": "🧗🏼‍♂️", "man_climbing_medium_light_skin_tone": "🧗🏼‍♂️", "man_climbing_tone3": "🧗🏽‍♂️", "man_climbing_medium_skin_tone": "🧗🏽‍♂️", "man_climbing_tone4": "🧗🏾‍♂️", "man_climbing_medium_dark_skin_tone": "🧗🏾‍♂️", "man_climbing_tone5": "🧗🏿‍♂️", "man_climbing_dark_skin_tone": "🧗🏿‍♂️", "person_mountain_biking_tone1": "🚵🏻", "mountain_bicyclist_tone1": "🚵🏻", "person_mountain_biking_tone2": "🚵🏼", "mountain_bicyclist_tone2": "🚵🏼", "person_mountain_biking_tone3": "🚵🏽", "mountain_bicyclist_tone3": "🚵🏽", "person_mountain_biking_tone4": "🚵🏾", "mountain_bicyclist_tone4": "🚵🏾", "person_mountain_biking_tone5": "🚵🏿", "mountain_bicyclist_tone5": "🚵🏿", "woman_mountain_biking_tone1": "🚵🏻‍♀️", "woman_mountain_biking_light_skin_tone": "🚵🏻‍♀️", "woman_mountain_biking_tone2": "🚵🏼‍♀️", "woman_mountain_biking_medium_light_skin_tone": "🚵🏼‍♀️", "woman_mountain_biking_tone3": "🚵🏽‍♀️", "woman_mountain_biking_medium_skin_tone": "🚵🏽‍♀️", "woman_mountain_biking_tone4": "🚵🏾‍♀️", "woman_mountain_biking_medium_dark_skin_tone": "🚵🏾‍♀️", "woman_mountain_biking_tone5": "🚵🏿‍♀️", "woman_mountain_biking_dark_skin_tone": "🚵🏿‍♀️", "man_mountain_biking_tone1": "🚵🏻‍♂️", "man_mountain_biking_light_skin_tone": "🚵🏻‍♂️", "man_mountain_biking_tone2": "🚵🏼‍♂️", "man_mountain_biking_medium_light_skin_tone": "🚵🏼‍♂️", "man_mountain_biking_tone3": "🚵🏽‍♂️", "man_mountain_biking_medium_skin_tone": "🚵🏽‍♂️", "man_mountain_biking_tone4": "🚵🏾‍♂️", "man_mountain_biking_medium_dark_skin_tone": "🚵🏾‍♂️", "man_mountain_biking_tone5": "🚵🏿‍♂️", "man_mountain_biking_dark_skin_tone": "🚵🏿‍♂️", "person_biking_tone1": "🚴🏻", "bicyclist_tone1": "🚴🏻", "person_biking_tone2": "🚴🏼", "bicyclist_tone2": "🚴🏼", "person_biking_tone3": "🚴🏽", "bicyclist_tone3": "🚴🏽", "person_biking_tone4": "🚴🏾", "bicyclist_tone4": "🚴🏾", "person_biking_tone5": "🚴🏿", "bicyclist_tone5": "🚴🏿", "woman_biking_tone1": "🚴🏻‍♀️", "woman_biking_light_skin_tone": "🚴🏻‍♀️", "woman_biking_tone2": "🚴🏼‍♀️", "woman_biking_medium_light_skin_tone": "🚴🏼‍♀️", "woman_biking_tone3": "🚴🏽‍♀️", "woman_biking_medium_skin_tone": "🚴🏽‍♀️", "woman_biking_tone4": "🚴🏾‍♀️", "woman_biking_medium_dark_skin_tone": "🚴🏾‍♀️", "woman_biking_tone5": "🚴🏿‍♀️", "woman_biking_dark_skin_tone": "🚴🏿‍♀️", "man_biking_tone1": "🚴🏻‍♂️", "man_biking_light_skin_tone": "🚴🏻‍♂️", "man_biking_tone2": "🚴🏼‍♂️", "man_biking_medium_light_skin_tone": "🚴🏼‍♂️", "man_biking_tone3": "🚴🏽‍♂️", "man_biking_medium_skin_tone": "🚴🏽‍♂️", "man_biking_tone4": "🚴🏾‍♂️", "man_biking_medium_dark_skin_tone": "🚴🏾‍♂️", "man_biking_tone5": "🚴🏿‍♂️", "man_biking_dark_skin_tone": "🚴🏿‍♂️", "person_juggling_tone1": "🤹🏻", "juggling_tone1": "🤹🏻", "juggler_tone1": "🤹🏻", "person_juggling_tone2": "🤹🏼", "juggling_tone2": "🤹🏼", "juggler_tone2": "🤹🏼", "person_juggling_tone3": "🤹🏽", "juggling_tone3": "🤹🏽", "juggler_tone3": "🤹🏽", "person_juggling_tone4": "🤹🏾", "juggling_tone4": "🤹🏾", "juggler_tone4": "🤹🏾", "person_juggling_tone5": "🤹🏿", "juggling_tone5": "🤹🏿", "juggler_tone5": "🤹🏿", "woman_juggling_tone1": "🤹🏻‍♀️", "woman_juggling_light_skin_tone": "🤹🏻‍♀️", "woman_juggling_tone2": "🤹🏼‍♀️", "woman_juggling_medium_light_skin_tone": "🤹🏼‍♀️", "woman_juggling_tone3": "🤹🏽‍♀️", "woman_juggling_medium_skin_tone": "🤹🏽‍♀️", "woman_juggling_tone4": "🤹🏾‍♀️", "woman_juggling_medium_dark_skin_tone": "🤹🏾‍♀️", "woman_juggling_tone5": "🤹🏿‍♀️", "woman_juggling_dark_skin_tone": "🤹🏿‍♀️", "man_juggling_tone1": "🤹🏻‍♂️", "man_juggling_light_skin_tone": "🤹🏻‍♂️", "man_juggling_tone2": "🤹🏼‍♂️", "man_juggling_medium_light_skin_tone": "🤹🏼‍♂️", "man_juggling_tone3": "🤹🏽‍♂️", "man_juggling_medium_skin_tone": "🤹🏽‍♂️", "man_juggling_tone4": "🤹🏾‍♂️", "man_juggling_medium_dark_skin_tone": "🤹🏾‍♂️", "man_juggling_tone5": "🤹🏿‍♂️", "man_juggling_dark_skin_tone": "🤹🏿‍♂️", "bath_tone1": "🛀🏻", "bath_tone2": "🛀🏼", "bath_tone3": "🛀🏽", "bath_tone4": "🛀🏾", "bath_tone5": "🛀🏿", "person_in_bed_tone1": "🛌🏻", "person_in_bed_light_skin_tone": "🛌🏻", "person_in_bed_tone2": "🛌🏼", "person_in_bed_medium_light_skin_tone": "🛌🏼", "person_in_bed_tone3": "🛌🏽", "person_in_bed_medium_skin_tone": "🛌🏽", "person_in_bed_tone4": "🛌🏾", "person_in_bed_medium_dark_skin_tone": "🛌🏾", "person_in_bed_tone5": "🛌🏿", "person_in_bed_dark_skin_tone": "🛌🏿", "skin-tone-1": "🏻", "skin-tone-2": "🏼", "skin-tone-3": "🏽", "skin-tone-4": "🏾", "skin-tone-5": "🏿"} diff --git a/discord/enums.py b/discord/enums.py index 91425b8cf8..cc2429a84c 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -27,6 +27,7 @@ import types from collections import namedtuple +from enum import IntEnum from typing import TYPE_CHECKING, Any, ClassVar, TypeVar, Union __all__ = ( @@ -71,11 +72,18 @@ "PromptType", "OnboardingMode", "ReactionType", + "VoiceChannelEffectAnimationType", "SKUType", "EntitlementType", "EntitlementOwnerType", "IntegrationType", "InteractionContextType", + "PollLayoutType", + "MessageReferenceType", + "ThreadArchiveDuration", + "SubscriptionStatus", + "SeparatorSpacingSize", + "SelectDefaultValueType", ) @@ -266,6 +274,12 @@ class MessageType(Enum): stage_raise_hand = 30 stage_topic = 31 guild_application_premium_subscription = 32 + guild_incident_alert_mode_enabled = 36 + guild_incident_alert_mode_disabled = 37 + guild_incident_report_raid = 38 + guild_incident_report_false_alarm = 39 + purchase_notification = 44 + poll_result = 46 class VoiceRegion(Enum): @@ -712,6 +726,14 @@ class ComponentType(Enum): role_select = 6 mentionable_select = 7 channel_select = 8 + section = 9 + text_display = 10 + thumbnail = 11 + media_gallery = 12 + file = 13 + separator = 14 + content_inventory_entry = 16 + container = 17 def __int__(self): return self.value @@ -825,6 +847,7 @@ def from_datatype(cls, datatype): "ThreadOption", "Thread", "ForumChannel", + "MediaChannel", "DMChannel", ]: return cls.channel @@ -1054,6 +1077,58 @@ class PollLayoutType(Enum): default = 1 +class VoiceChannelEffectAnimationType(Enum): + """Voice channel effect animation type. + + .. versionadded:: 2.7 + """ + + premium = 0 + basic = 1 + + +class MessageReferenceType(Enum): + """The type of the message reference object""" + + default = 0 + forward = 1 + + +class SubscriptionStatus(Enum): + """The status of a subscription.""" + + active = 0 + ending = 1 + inactive = 2 + + +class ThreadArchiveDuration(IntEnum): + """The time set until a thread is automatically archived.""" + + one_hour = 60 + one_day = 1440 + three_days = 4320 + one_week = 10080 + + +class SeparatorSpacingSize(Enum): + """A separator component's spacing size.""" + + small = 1 + large = 2 + + def __int__(self): + return self.value + + +class SelectDefaultValueType(Enum): + """Represents the default value type of a select menu.""" + + channel = "channel" + role = "role" + user = "user" + + T = TypeVar("T") diff --git a/discord/ext/bridge/core.py b/discord/ext/bridge/core.py index 103f345693..ef31e01d79 100644 --- a/discord/ext/bridge/core.py +++ b/discord/ext/bridge/core.py @@ -41,7 +41,9 @@ ) from ...utils import MISSING, find, get, warn_deprecated -from ..commands import BadArgument +from ..commands import ( + BadArgument, +) from ..commands import Bot as ExtBot from ..commands import ( Command, @@ -49,6 +51,7 @@ Converter, Group, GuildChannelConverter, + MemberConverter, RoleConverter, UserConverter, ) @@ -96,26 +99,12 @@ class BridgeExtCommand(Command): def __init__(self, func, **kwargs): super().__init__(func, **kwargs) - # TODO: v2.7: Remove backwards support for Option in bridge commands. - for name, option in self.params.items(): + for option in self.params.values(): if isinstance(option.annotation, Option) and not isinstance( option.annotation, BridgeOption ): - # Warn not to do this - warn_deprecated( - "Using Option for bridge commands", - "BridgeOption", - "2.5", - "2.7", - reference="https://github.com/Pycord-Development/pycord/pull/2417", - stacklevel=6, - ) - # Override the convert method of the parameter's annotated Option. - # We can use the convert method from BridgeOption, and bind "self" - # using a manual invocation of the descriptor protocol. - # Definitely not a good approach, but gets the job done until removal. - self.params[name].annotation.convert = BridgeOption.convert.__get__( - self.params[name].annotation + raise TypeError( + f"{option.annotation.__class__.__name__} is not supported in bridge commands. Use BridgeOption instead." ) async def dispatch_error(self, ctx: BridgeExtContext, error: Exception) -> None: @@ -196,8 +185,10 @@ def __init__(self, callback, **kwargs): @property def name_localizations(self) -> dict[str, str] | None: """Returns name_localizations from :attr:`slash_variant` - You can edit/set name_localizations directly with + You can edit/set name_localizations directly with + .. code-block:: python3 + bridge_command.name_localizations["en-UK"] = ... # or any other locale # or bridge_command.name_localizations = {"en-UK": ..., "fr-FR": ...} @@ -211,8 +202,10 @@ def name_localizations(self, value): @property def description_localizations(self) -> dict[str, str] | None: """Returns description_localizations from :attr:`slash_variant` - You can edit/set description_localizations directly with + You can edit/set description_localizations directly with + .. code-block:: python3 + bridge_command.description_localizations["en-UK"] = ... # or any other locale # or bridge_command.description_localizations = {"en-UK": ..., "fr-FR": ...} @@ -230,7 +223,7 @@ def __getattribute__(self, name): except AttributeError as e: # if it doesn't exist, check this list, if the name of # the parameter is here - if name is self.__special_attrs__: + if name in self.__special_attrs__: raise e # looks up the result in the variants. @@ -578,13 +571,21 @@ def predicate(func: Callable | ApplicationCommand): class MentionableConverter(Converter): - """A converter that can convert a mention to a user or a role.""" + """A converter that can convert a mention to a member, a user or a role.""" async def convert(self, ctx, argument): try: return await RoleConverter().convert(ctx, argument) except BadArgument: - return await UserConverter().convert(ctx, argument) + pass + + if ctx.guild: + try: + return await MemberConverter().convert(ctx, argument) + except BadArgument: + pass + + return await UserConverter().convert(ctx, argument) class AttachmentConverter(Converter): @@ -612,6 +613,7 @@ async def convert(self, ctx, arg: bool): SlashCommandOptionType.mentionable: MentionableConverter, SlashCommandOptionType.number: float, SlashCommandOptionType.attachment: AttachmentConverter, + discord.Member: MemberConverter, } @@ -620,16 +622,24 @@ class BridgeOption(Option, Converter): command option and a prefixed command argument for bridge commands. """ + def __init__(self, input_type, *args, **kwargs): + self.converter = kwargs.pop("converter", None) + super().__init__(input_type, *args, **kwargs) + + self.converter = self.converter or BRIDGE_CONVERTER_MAPPING.get(input_type) + async def convert(self, ctx, argument: str) -> Any: try: if self.converter is not None: - converted = await self.converter.convert(ctx, argument) + converted = await self.converter().convert(ctx, argument) else: - converter = BRIDGE_CONVERTER_MAPPING[self.input_type] - if issubclass(converter, Converter): + converter = BRIDGE_CONVERTER_MAPPING.get(self.input_type) + if isinstance(converter, type) and issubclass(converter, Converter): converted = await converter().convert(ctx, argument) # type: ignore # protocol class - else: + elif callable(converter): converted = converter(argument) + else: + raise TypeError(f"Invalid converter: {converter}") if self.choices: choices_names: list[str | int | float] = [ diff --git a/discord/ext/commands/context.py b/discord/ext/commands/context.py index c140586faa..afd023d351 100644 --- a/discord/ext/commands/context.py +++ b/discord/ext/commands/context.py @@ -283,28 +283,28 @@ def cog(self) -> Cog | None: return None return self.command.cog - @discord.utils.cached_property + @property def guild(self) -> Guild | None: """Returns the guild associated with this context's command. None if not available. """ return self.message.guild - @discord.utils.cached_property + @property def channel(self) -> MessageableChannel: """Returns the channel associated with this context's command. Shorthand for :attr:`.Message.channel`. """ return self.message.channel - @discord.utils.cached_property + @property def author(self) -> User | Member: """Union[:class:`~discord.User`, :class:`.Member`]: Returns the author associated with this context's command. Shorthand for :attr:`.Message.author` """ return self.message.author - @discord.utils.cached_property + @property def me(self) -> Member | ClientUser: """Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message @@ -403,3 +403,9 @@ async def send_help(self, *args: Any) -> Any: @discord.utils.copy_doc(Message.reply) async def reply(self, content: str | None = None, **kwargs: Any) -> Message: return await self.message.reply(content, **kwargs) + + @discord.utils.copy_doc(Message.forward_to) + async def forward_to( + self, channel: discord.abc.Messageable, **kwargs: Any + ) -> Message: + return await self.message.forward_to(channel, **kwargs) diff --git a/discord/ext/commands/converter.py b/discord/ext/commands/converter.py index e60ac89b34..ca5a109f3f 100644 --- a/discord/ext/commands/converter.py +++ b/discord/ext/commands/converter.py @@ -41,6 +41,7 @@ ) import discord +from discord.utils import UNICODE_EMOJIS from .errors import * @@ -851,7 +852,8 @@ async def convert(self, ctx: Context, argument: str) -> discord.GuildEmoji: class PartialEmojiConverter(Converter[discord.PartialEmoji]): """Converts to a :class:`~discord.PartialEmoji`. - This is done by extracting the animated flag, name and ID from the emoji. + This is done by extracting the animated flag, name, and ID for custom emojis, + or by using the standard Unicode emojis supported by Discord. .. versionchanged:: 1.5 Raise :exc:`.PartialEmojiConversionFailure` instead of generic :exc:`.BadArgument` @@ -872,6 +874,14 @@ async def convert(self, ctx: Context, argument: str) -> discord.PartialEmoji: id=emoji_id, ) + if argument in UNICODE_EMOJIS: + return discord.PartialEmoji.with_state( + ctx.bot._connection, + animated=False, + name=argument, + id=None, + ) + raise PartialEmojiConversionFailure(argument) @@ -1094,7 +1104,11 @@ def get_converter(param: inspect.Parameter) -> Any: def is_generic_type(tp: Any, *, _GenericAlias: type = _GenericAlias) -> bool: - return isinstance(tp, type) and issubclass(tp, Generic) or isinstance(tp, _GenericAlias) # type: ignore + return ( + isinstance(tp, type) + and issubclass(tp, Generic) + or isinstance(tp, _GenericAlias) + ) # type: ignore CONVERTER_MAPPING: dict[type[Any], Any] = { diff --git a/discord/ext/commands/core.py b/discord/ext/commands/core.py index 992ba05956..1a0d8a09a2 100644 --- a/discord/ext/commands/core.py +++ b/discord/ext/commands/core.py @@ -1695,7 +1695,7 @@ def decorator( func: ( Callable[Concatenate[ContextT, P], Coro[Any]] | Callable[Concatenate[CogT, ContextT, P], Coro[Any]] - ) + ), ) -> CommandT: if isinstance(func, Command): raise TypeError("Callback is already a command.") @@ -1877,7 +1877,7 @@ def check_any(*checks: Check) -> Callable[[T], T]: the :func:`check` decorator. Raises - ------- + ------ TypeError A check passed has not been decorated with the :func:`check` decorator. @@ -1899,6 +1899,7 @@ def predicate(ctx): @commands.check_any(commands.is_owner(), is_guild_owner()) async def only_for_owners(ctx): await ctx.send('Hello mister owner!') + """ unwrapped = [] diff --git a/discord/ext/commands/flags.py b/discord/ext/commands/flags.py index 54e7e0c37c..ebe54ab5fd 100644 --- a/discord/ext/commands/flags.py +++ b/discord/ext/commands/flags.py @@ -31,12 +31,11 @@ from dataclasses import dataclass, field from typing import TYPE_CHECKING, Any, Iterator, Literal, Pattern, TypeVar, Union -from discord.utils import MISSING, MissingField, maybe_coroutine, resolve_annotation - -if sys.version_info >= (3, 11): - _MISSING = MissingField -else: - _MISSING = MISSING +from discord.utils import ( + MISSING, + maybe_coroutine, + resolve_annotation, +) from .converter import run_converters from .errors import ( @@ -59,6 +58,10 @@ from .context import Context +def _missing_field_factory() -> field: + return field(default_factory=lambda: MISSING) + + @dataclass class Flag: """Represents a flag parameter for :class:`FlagConverter`. @@ -86,13 +89,13 @@ class Flag: Whether multiple given values overrides the previous value. """ - name: str = _MISSING + name: str = _missing_field_factory() aliases: list[str] = field(default_factory=list) - attribute: str = _MISSING - annotation: Any = _MISSING - default: Any = _MISSING - max_args: int = _MISSING - override: bool = _MISSING + attribute: str = _missing_field_factory() + annotation: Any = _missing_field_factory() + default: Any = _missing_field_factory() + max_args: int = _missing_field_factory() + override: bool = _missing_field_factory() cast_to_dict: bool = False @property diff --git a/discord/ext/commands/help.py b/discord/ext/commands/help.py index 25b44388bd..75dc6861f4 100644 --- a/discord/ext/commands/help.py +++ b/discord/ext/commands/help.py @@ -29,7 +29,7 @@ import functools import itertools import re -from typing import TYPE_CHECKING +from typing import TYPE_CHECKING, Any import discord.utils @@ -550,7 +550,9 @@ def subcommand_not_found(self, command, string): ) return f'Command "{command.qualified_name}" has no subcommands.' - async def filter_commands(self, commands, *, sort=False, key=None): + async def filter_commands( + self, commands, *, sort=False, key=None, exclude: tuple[Any] | None = None + ): """|coro| Returns a filtered list of commands and optionally sorts them. @@ -568,6 +570,8 @@ async def filter_commands(self, commands, *, sort=False, key=None): 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. + exclude: Optional[Tuple[Any, ...]] + A tuple of command types to exclude from the filter. Returns ------- @@ -579,15 +583,18 @@ async def filter_commands(self, commands, *, sort=False, key=None): key = lambda c: c.name # Ignore Application Commands because they don't have hidden/docs - prefix_commands = [ + new_commands = [ command for command in commands - if not isinstance(command, discord.commands.ApplicationCommand) + if not isinstance( + command, + (discord.commands.ApplicationCommand, *(exclude if exclude else ())), + ) ] iterator = ( - prefix_commands + new_commands if self.show_hidden - else filter(lambda c: not c.hidden, prefix_commands) + else filter(lambda c: not c.hidden, new_commands) ) if self.verify_checks is False: @@ -1103,11 +1110,15 @@ async def send_group_help(self, group): await self.send_pages() async def send_cog_help(self, cog): + from discord.ext.bridge import BridgeExtCommand + if cog.description: self.paginator.add_line(cog.description, empty=True) filtered = await self.filter_commands( - cog.get_commands(), sort=self.sort_commands + cog.get_commands(), + sort=self.sort_commands, + exclude=(BridgeExtCommand,), ) self.add_indented_commands(filtered, heading=self.commands_heading) @@ -1345,6 +1356,8 @@ def get_category(command, *, no_category=no_category): await self.send_pages() async def send_cog_help(self, cog): + from discord.ext.bridge import BridgeExtCommand + bot = self.context.bot if bot.description: self.paginator.add_line(bot.description, empty=True) @@ -1357,7 +1370,9 @@ async def send_cog_help(self, cog): self.paginator.add_line(cog.description, empty=True) filtered = await self.filter_commands( - cog.get_commands(), sort=self.sort_commands + cog.get_commands(), + sort=self.sort_commands, + exclude=(BridgeExtCommand,), ) if filtered: self.paginator.add_line(f"**{cog.qualified_name} {self.commands_heading}**") diff --git a/discord/ext/pages/pagination.py b/discord/ext/pages/pagination.py index dc99996f2a..8dbf1c0f43 100644 --- a/discord/ext/pages/pagination.py +++ b/discord/ext/pages/pagination.py @@ -155,9 +155,9 @@ def __init__( files: list[discord.File] | None = None, **kwargs, ): - if content is None and embeds is None: + if content is None and embeds is None and custom_view is None: raise discord.InvalidArgument( - "A page cannot have both content and embeds equal to None." + "A page must at least have content, embeds, or custom_view set." ) self._content = content self._embeds = embeds or [] @@ -591,8 +591,9 @@ async def update( async def on_timeout(self) -> None: """Disables all buttons when the view times out.""" if self.disable_on_timeout: - for item in self.children: - item.disabled = True + for item in self.walk_children(): + if hasattr(item, "disabled"): + item.disabled = True page = self.pages[self.current_page] page = self.get_page_content(page) files = page.update_files() @@ -617,12 +618,12 @@ async def disable( The page content to show after disabling the paginator. """ page = self.get_page_content(page) - for item in self.children: + for item in self.walk_children(): if ( include_custom or not self.custom_view or item not in self.custom_view.children - ): + ) and hasattr(item, "disabled"): item.disabled = True if page: await self.message.edit( @@ -918,6 +919,8 @@ def get_page_content( return Page(content=None, embeds=[page], files=[]) elif isinstance(page, discord.File): return Page(content=None, embeds=[], files=[page]) + elif isinstance(page, discord.ui.View): + return Page(content=None, embeds=[], files=[], custom_view=page) elif isinstance(page, List): if all(isinstance(x, discord.Embed) for x in page): return Page(content=None, embeds=page, files=[]) @@ -927,7 +930,7 @@ def get_page_content( raise TypeError("All list items must be embeds or files.") else: raise TypeError( - "Page content must be a Page object, string, an embed, a list of" + "Page content must be a Page object, string, an embed, a view, a list of" " embeds, a file, or a list of files." ) @@ -1163,7 +1166,7 @@ async def respond( if target is not None and not isinstance(target, discord.abc.Messageable): raise TypeError(f"expected abc.Messageable not {target.__class__!r}") - if ephemeral and (self.timeout >= 900 or self.timeout is None): + if ephemeral and (self.timeout is None or self.timeout >= 900): raise ValueError( "paginator responses cannot be ephemeral if the paginator timeout is 15" " minutes or greater" @@ -1202,7 +1205,7 @@ async def respond( ) # convert from WebhookMessage to Message reference to bypass # 15min webhook token timeout (non-ephemeral messages only) - if not ephemeral: + if not ephemeral and not msg.flags.ephemeral: msg = await msg.channel.fetch_message(msg.id) else: msg = await interaction.response.send_message( diff --git a/discord/ext/tasks/__init__.py b/discord/ext/tasks/__init__.py index 638bd831c6..af34cc6844 100644 --- a/discord/ext/tasks/__init__.py +++ b/discord/ext/tasks/__init__.py @@ -168,6 +168,7 @@ async def _loop(self, *args: Any, **kwargs: Any) -> None: try: await self.coro(*args, **kwargs) self._last_iteration_failed = False + backoff = ExponentialBackoff() except self._valid_exception: self._last_iteration_failed = True if not self.reconnect: diff --git a/discord/file.py b/discord/file.py index cb1a766bc9..f1f99ddc11 100644 --- a/discord/file.py +++ b/discord/file.py @@ -29,7 +29,10 @@ import os from typing import TYPE_CHECKING -__all__ = ("File",) +__all__ = ( + "File", + "VoiceMessage", +) class File: @@ -89,6 +92,7 @@ def __init__( description: str | None = None, spoiler: bool = False, ): + if isinstance(fp, io.IOBase): if not (fp.seekable() and fp.readable()): raise ValueError(f"File buffer {fp!r} must be seekable and readable") @@ -143,3 +147,60 @@ def close(self) -> None: self.fp.close = self._closer if self._owner: self._closer() + + +class VoiceMessage(File): + """A special case of the File class that represents a voice message. + + .. versionadded:: 2.7 + + .. note:: + + Similar to File objects, VoiceMessage objects are single use and are not meant to be reused in + multiple requests. + + Attributes + ---------- + fp: Union[:class:`os.PathLike`, :class:`io.BufferedIOBase`] + A audio file-like object opened in binary mode and read mode + or a filename representing a file in the hard drive to + open. + + .. note:: + + If the file-like object passed is opened via ``open`` then the + modes 'rb' should be used. + + To pass binary data, consider usage of ``io.BytesIO``. + + filename: Optional[:class:`str`] + 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. + description: Optional[:class:`str`] + The description of a file, used by Discord to display alternative text on images. + spoiler: :class:`bool` + Whether the attachment is a spoiler. + waveform: Optional[:class:`str`] + The base64 encoded bytearray representing a sampled waveform. + duration_secs: Optional[:class:`float`] + The duration of the voice message. + """ + + __slots__ = ( + "waveform", + "duration_secs", + ) + + def __init__( + self, + fp: str | bytes | os.PathLike | io.BufferedIOBase, + filename: str | None = None, + *, + waveform: str = "", + duration_secs: float = 0.0, + **kwargs, + ): + super().__init__(fp, filename, **kwargs) + self.waveform = waveform + self.duration_secs = duration_secs diff --git a/discord/flags.py b/discord/flags.py index 1a6af50c72..cb2059e866 100644 --- a/discord/flags.py +++ b/discord/flags.py @@ -333,22 +333,22 @@ class MessageFlags(BaseFlags): @flag_value def crossposted(self): """:class:`bool`: Returns ``True`` if the message is the original crossposted message.""" - return 1 + return 1 << 0 @flag_value def is_crossposted(self): """:class:`bool`: Returns ``True`` if the message was crossposted from another channel.""" - return 2 + return 1 << 1 @flag_value def suppress_embeds(self): """:class:`bool`: Returns ``True`` if the message's embeds have been suppressed.""" - return 4 + return 1 << 2 @flag_value def source_message_deleted(self): """:class:`bool`: Returns ``True`` if the source message for this crosspost has been deleted.""" - return 8 + return 1 << 3 @flag_value def urgent(self): @@ -356,7 +356,7 @@ def urgent(self): An urgent message is one sent by Discord Trust and Safety. """ - return 16 + return 1 << 4 @flag_value def has_thread(self): @@ -364,7 +364,7 @@ def has_thread(self): .. versionadded:: 2.0 """ - return 32 + return 1 << 5 @flag_value def ephemeral(self): @@ -372,7 +372,7 @@ def ephemeral(self): .. versionadded:: 2.0 """ - return 64 + return 1 << 6 @flag_value def loading(self): @@ -382,7 +382,7 @@ def loading(self): .. versionadded:: 2.0 """ - return 128 + return 1 << 7 @flag_value def failed_to_mention_some_roles_in_thread(self): @@ -390,7 +390,7 @@ def failed_to_mention_some_roles_in_thread(self): .. versionadded:: 2.0 """ - return 256 + return 1 << 8 @flag_value def suppress_notifications(self): @@ -401,7 +401,7 @@ def suppress_notifications(self): .. versionadded:: 2.4 """ - return 4096 + return 1 << 12 @flag_value def is_voice_message(self): @@ -409,7 +409,23 @@ def is_voice_message(self): .. versionadded:: 2.5 """ - return 8192 + return 1 << 13 + + @flag_value + def is_components_v2(self): + """:class:`bool`: Returns ``True`` if this message has v2 components. This flag disables sending `content`, `embed`, and `embeds`. + + .. versionadded:: 2.7 + """ + return 1 << 15 + + @flag_value + def has_snapshot(self): + """:class:`bool`: Returns ``True`` if this message has a snapshot from message forwarding. + + .. versionadded:: 2.7 + """ + return 1 << 14 @fill_with_flags() @@ -1561,6 +1577,14 @@ def require_tag(self): """ return 1 << 4 + @flag_value + def hide_media_download_options(self): + """:class:`bool`: Returns ``True`` if the embedded media download options are hidden for the media channel posts. + + .. versionadded:: 2.7 + """ + return 1 << 15 + @fill_with_flags() class AttachmentFlags(BaseFlags): diff --git a/discord/gateway.py b/discord/gateway.py index 4af59f3864..a24581ed78 100644 --- a/discord/gateway.py +++ b/discord/gateway.py @@ -35,6 +35,7 @@ import traceback import zlib from collections import deque, namedtuple +from typing import TYPE_CHECKING import aiohttp @@ -208,6 +209,9 @@ def ack(self): class VoiceKeepAliveHandler(KeepAliveHandler): + if TYPE_CHECKING: + ws: DiscordVoiceWebSocket + def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.recent_ack_latencies = deque(maxlen=20) @@ -216,7 +220,10 @@ def __init__(self, *args, **kwargs): self.behind_msg = "High socket latency, shard ID %s heartbeat is %.1fs behind" def get_payload(self): - return {"op": self.ws.HEARTBEAT, "d": int(time.time() * 1000)} + return { + "op": self.ws.HEARTBEAT, + "d": {"t": int(time.time() * 1000), "seq_ack": self.ws.seq_ack}, + } def ack(self): ack_time = time.perf_counter() @@ -284,6 +291,7 @@ class DiscordWebSocket: HELLO = 10 HEARTBEAT_ACK = 11 GUILD_SYNC = 12 + REQUEST_SOUNDBOARD_SOUNDS = 31 def __init__(self, socket, *, loop): self.socket = socket @@ -724,6 +732,15 @@ async def voice_state(self, guild_id, channel_id, self_mute=False, self_deaf=Fal _log.debug("Updating our voice state to %s.", payload) await self.send_as_json(payload) + async def request_soundboard_sounds(self, guild_ids): + payload = { + "op": self.REQUEST_SOUNDBOARD_SOUNDS, + "d": {"guild_ids": guild_ids}, + } + + _log.debug("Requesting soundboard sounds for guilds %s.", guild_ids) + await self.send_as_json(payload) + async def close(self, code=4000): if self._keep_alive: self._keep_alive.stop() @@ -784,6 +801,7 @@ def __init__(self, socket, loop, *, hook=None): self._close_code = None self.secret_key = None self.ssrc_map = {} + self.seq_ack: int = -1 if hook: self._hook = hook @@ -804,6 +822,9 @@ async def resume(self): "token": state.token, "server_id": str(state.server_id), "session_id": state.session_id, + # this seq_ack will allow for us to do buffered resume, which is, receive the + # lost voice packets while trying to resume the reconnection + "seq_ack": self.seq_ack, }, } await self.send_as_json(payload) @@ -824,7 +845,7 @@ async def identify(self): @classmethod async def from_client(cls, client, *, resume=False, hook=None): """Creates a voice websocket for the :class:`VoiceClient`.""" - gateway = f"wss://{client.endpoint}/?v=4" + gateway = f"wss://{client.endpoint}/?v=8" http = client._state.http socket = await http.ws_connect(gateway, compress=15) ws = cls(socket, loop=client.loop, hook=hook) @@ -860,7 +881,13 @@ async def client_connect(self): await self.send_as_json(payload) async def speak(self, state=SpeakingState.voice): - payload = {"op": self.SPEAKING, "d": {"speaking": int(state), "delay": 0}} + payload = { + "op": self.SPEAKING, + "d": { + "speaking": int(state), + "delay": 0, + }, + } await self.send_as_json(payload) @@ -868,6 +895,7 @@ async def received_message(self, msg): _log.debug("Voice websocket frame received: %s", msg) op = msg["op"] data = msg.get("d") + self.seq_ack = data.get("seq", self.seq_ack) if op == self.READY: await self.initial_connection(data) diff --git a/discord/guild.py b/discord/guild.py index b1e937d07b..ff4c9e04b2 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -56,8 +56,10 @@ EntitlementOwnerType, NotificationLevel, NSFWLevel, + OnboardingMode, ScheduledEventLocationType, ScheduledEventPrivacyLevel, + SortOrder, VerificationLevel, VideoQualityMode, VoiceRegion, @@ -79,8 +81,9 @@ from .monetization import Entitlement from .onboarding import Onboarding from .permissions import PermissionOverwrite -from .role import Role +from .role import Role, RoleColours from .scheduled_events import ScheduledEvent, ScheduledEventLocation +from .soundboard import SoundboardSound from .stage_instance import StageInstance from .sticker import GuildSticker from .threads import Thread, ThreadMember @@ -88,7 +91,7 @@ from .welcome_screen import WelcomeScreen, WelcomeScreenChannel from .widget import Widget -__all__ = ("Guild",) +__all__ = ("BanEntry", "Guild") MISSING = utils.MISSING @@ -103,6 +106,7 @@ TextChannel, VoiceChannel, ) + from .onboarding import OnboardingPrompt from .permissions import Permissions from .state import ConnectionState from .template import Template @@ -130,6 +134,7 @@ class BanEntry(NamedTuple): class _GuildLimit(NamedTuple): emoji: int stickers: int + soundboard: int bitrate: float filesize: int @@ -173,8 +178,6 @@ class Guild(Hashable): The channel that denotes the AFK channel. ``None`` if it doesn't exist. id: :class:`int` The guild's ID. - invites_disabled: :class:`bool` - Indicates if the guild invites are disabled. owner_id: :class:`int` The guild owner's ID. Use :attr:`Guild.owner` instead. unavailable: :class:`bool` @@ -286,14 +289,25 @@ class Guild(Hashable): "_threads", "approximate_member_count", "approximate_presence_count", + "_sounds", ) _PREMIUM_GUILD_LIMITS: ClassVar[dict[int | None, _GuildLimit]] = { - None: _GuildLimit(emoji=50, stickers=5, bitrate=96e3, filesize=26214400), - 0: _GuildLimit(emoji=50, stickers=5, bitrate=96e3, filesize=26214400), - 1: _GuildLimit(emoji=100, stickers=15, bitrate=128e3, filesize=26214400), - 2: _GuildLimit(emoji=150, stickers=30, bitrate=256e3, filesize=52428800), - 3: _GuildLimit(emoji=250, stickers=60, bitrate=384e3, filesize=104857600), + None: _GuildLimit( + emoji=50, stickers=5, soundboard=8, bitrate=96e3, filesize=10_485_760 + ), + 0: _GuildLimit( + emoji=50, stickers=5, soundboard=8, bitrate=96e3, filesize=10_485_760 + ), + 1: _GuildLimit( + emoji=100, stickers=15, soundboard=24, bitrate=128e3, filesize=10_485_760 + ), + 2: _GuildLimit( + emoji=150, stickers=30, soundboard=36, bitrate=256e3, filesize=52_428_800 + ), + 3: _GuildLimit( + emoji=250, stickers=60, soundboard=48, bitrate=384e3, filesize=104_857_600 + ), } def __init__(self, *, data: GuildPayload, state: ConnectionState): @@ -308,6 +322,7 @@ def __init__(self, *, data: GuildPayload, state: ConnectionState): self._voice_states: dict[int, VoiceState] = {} self._threads: dict[int, Thread] = {} self._state: ConnectionState = state + self._sounds: dict[int, SoundboardSound] = {} self._from_data(data) def _add_channel(self, channel: GuildChannel, /) -> None: @@ -550,6 +565,133 @@ def _from_data(self, guild: GuildPayload) -> None: for obj in guild.get("voice_states", []): self._update_voice_state(obj, int(obj["channel_id"])) + for sound in guild.get("soundboard_sounds", []): + sound = SoundboardSound(state=state, http=state.http, data=sound) + self._add_sound(sound) + + def _add_sound(self, sound: SoundboardSound) -> None: + self._sounds[sound.id] = sound + self._state._add_sound(sound) + + def _remove_sound(self, sound_id: int) -> None: + self._sounds.pop(sound_id, None) + + async def fetch_sounds(self) -> list[SoundboardSound]: + """|coro| + Fetches all the soundboard sounds in the guild. + + .. versionadded:: 2.7 + + Returns + ------- + List[:class:`SoundboardSound`] + The sounds in the guild. + """ + data = await self._state.http.get_all_guild_sounds(self.id) + return [ + SoundboardSound( + state=self._state, + http=self._state.http, + data=sound, + ) + for sound in data["items"] + ] + + async def fetch_sound(self, sound_id: int) -> SoundboardSound: + """|coro| + Fetches a soundboard sound in the guild. + + .. versionadded:: 2.7 + + Parameters + ---------- + sound_id: :class:`int` + The ID of the sound. + + Returns + ------- + :class:`SoundboardSound` + The sound. + """ + data = await self._state.http.get_guild_sound(self.id, sound_id) + return SoundboardSound( + state=self._state, + http=self._state.http, + data=data, + ) + + async def create_sound( + self, + name: str, + sound: bytes, + volume: float = 1.0, + emoji: PartialEmoji | GuildEmoji | str | None = None, + reason: str | None = None, + ) -> SoundboardSound: + """|coro| + Creates a :class:`SoundboardSound` in the guild. + You must have :attr:`Permissions.manage_expressions` permission to use this. + + .. versionadded:: 2.7 + + Parameters + ---------- + name: :class:`str` + The name of the sound. + sound: :class:`bytes` + The :term:`py:bytes-like object` representing the sound data. + Only MP3 sound files that are less than 5.2 seconds long are supported. + volume: :class:`float` + The volume of the sound. Defaults to 1.0. + emoji: Optional[Union[:class:`PartialEmoji`, :class:`GuildEmoji`, :class:`str`]] + The emoji of the sound. + reason: Optional[:class:`str`] + The reason for creating this sound. Shows up on the audit log. + + Returns + ------- + :class:`SoundboardSound` + The created sound. + + Raises + ------ + :exc:`HTTPException` + Creating the sound failed. + :exc:`Forbidden` + You do not have permissions to create sounds. + """ + + payload: dict[str, Any] = { + "name": name, + "sound": utils._bytes_to_base64_data(sound), + "volume": volume, + "emoji_id": None, + "emoji_name": None, + } + + if emoji is not None: + if isinstance(emoji, _EmojiTag): + partial_emoji = emoji._to_partial() + elif isinstance(emoji, str): + partial_emoji = PartialEmoji.from_str(emoji) + else: + partial_emoji = None + + if partial_emoji is not None: + if partial_emoji.id is None: + payload["emoji_name"] = partial_emoji.name + else: + payload["emoji_id"] = partial_emoji.id + + data = await self._state.http.create_guild_sound( + self.id, reason=reason, **payload + ) + return SoundboardSound( + state=self._state, + http=self._state.http, + data=data, + ) + # TODO: refactor/remove? def _sync(self, data: GuildPayload) -> None: try: @@ -676,6 +818,17 @@ def categories(self) -> list[CategoryChannel]: r.sort(key=lambda c: (c.position or -1, c.id)) return r + @property + def sounds(self) -> list[SoundboardSound]: + """A list of soundboard sounds that belong to this guild. + + .. versionadded:: 2.7 + + This is sorted by the position and are in UI order from top to bottom. + """ + r = list(self._sounds.values()) + return r + def by_category(self) -> list[ByCategoryItem]: """Returns every :class:`CategoryChannel` and their associated channels. @@ -826,6 +979,17 @@ def sticker_limit(self) -> int: more_stickers, self._PREMIUM_GUILD_LIMITS[self.premium_tier].stickers ) + @property + def soundboard_limit(self) -> int: + """The maximum number of soundboard slots this guild has. + + .. versionadded:: 2.7 + """ + more_soundboard = 48 if "MORE_SOUNDBOARD" in self.features else 0 + return max( + more_soundboard, self._PREMIUM_GUILD_LIMITS[self.premium_tier].soundboard + ) + @property def bitrate_limit(self) -> int: """The maximum bitrate for voice channels this guild can have.""" @@ -1027,7 +1191,7 @@ def created_at(self) -> datetime.datetime: @property def invites_disabled(self) -> bool: - """Returns a boolean indicating if the guild invites are disabled.""" + """A boolean indicating whether the guild invites are disabled.""" return "INVITES_DISABLED" in self.features def get_member_named(self, name: str, /) -> Member | None: @@ -1130,6 +1294,8 @@ async def create_text_channel( slowmode_delay: int = MISSING, nsfw: bool = MISSING, overwrites: dict[Role | Member, PermissionOverwrite] = MISSING, + default_thread_slowmode_delay: int | None = MISSING, + default_auto_archive_duration: int = MISSING, ) -> TextChannel: """|coro| @@ -1166,12 +1332,22 @@ async def create_text_channel( The new channel's topic. slowmode_delay: :class:`int` Specifies the slowmode rate limit for user in this channel, in seconds. - The maximum value possible is `21600`. + A value of `0` disables slowmode. The maximum value possible is `21600`. nsfw: :class:`bool` - To mark the channel as NSFW or not. + Whether the channel is marked as NSFW. reason: Optional[:class:`str`] The reason for creating this channel. Shows up on the audit log. + default_thread_slowmode_delay: Optional[:class:`int`] + The initial slowmode delay to set on newly created threads in this channel. + + .. versionadded:: 2.7 + + default_auto_archive_duration: :class:`int` + The default auto archive duration in minutes for threads created in this channel. + + .. versionadded:: 2.7 + Returns ------- :class:`TextChannel` @@ -1220,6 +1396,12 @@ async def create_text_channel( if nsfw is not MISSING: options["nsfw"] = nsfw + if default_thread_slowmode_delay is not MISSING: + options["default_thread_slowmode_delay"] = default_thread_slowmode_delay + + if default_auto_archive_duration is not MISSING: + options["default_auto_archive_duration"] = default_auto_archive_duration + data = await self._create_channel( name, overwrites=overwrites, @@ -1246,6 +1428,8 @@ async def create_voice_channel( rtc_region: VoiceRegion | None = MISSING, video_quality_mode: VideoQualityMode = MISSING, overwrites: dict[Role | Member, PermissionOverwrite] = MISSING, + slowmode_delay: int = MISSING, + nsfw: bool = MISSING, ) -> VoiceChannel: """|coro| @@ -1280,6 +1464,17 @@ async def create_voice_channel( reason: Optional[:class:`str`] The reason for creating this channel. Shows up on the audit log. + slowmode_delay: :class:`int` + Specifies the slowmode rate limit for user in this channel, in seconds. + A value of ``0`` disables slowmode. The maximum value possible is ``21600``. + + .. versionadded:: 2.7 + + nsfw: :class:`bool` + Whether the channel is marked as NSFW. + + .. versionadded:: 2.7 + Returns ------- :class:`VoiceChannel` @@ -1310,6 +1505,12 @@ async def create_voice_channel( if video_quality_mode is not MISSING: options["video_quality_mode"] = video_quality_mode.value + if slowmode_delay is not MISSING: + options["rate_limit_per_user"] = slowmode_delay + + if nsfw is not MISSING: + options["nsfw"] = nsfw + data = await self._create_channel( name, overwrites=overwrites, @@ -1333,6 +1534,12 @@ async def create_stage_channel( overwrites: dict[Role | Member, PermissionOverwrite] = MISSING, category: CategoryChannel | None = None, reason: str | None = None, + bitrate: int = MISSING, + user_limit: int = MISSING, + rtc_region: VoiceRegion | None = MISSING, + video_quality_mode: VideoQualityMode = MISSING, + slowmode_delay: int = MISSING, + nsfw: bool = MISSING, ) -> StageChannel: """|coro| @@ -1358,6 +1565,38 @@ async def create_stage_channel( reason: Optional[:class:`str`] The reason for creating this channel. Shows up on the audit log. + bitrate: :class:`int` + The channel's preferred audio bitrate in bits per second. + + .. versionadded:: 2.7 + + user_limit: :class:`int` + The channel's limit for number of members that can be in a voice channel. + + .. versionadded:: 2.7 + + rtc_region: Optional[:class:`VoiceRegion`] + The region for the voice channel's voice communication. + A value of ``None`` indicates automatic voice region detection. + + .. versionadded:: 2.7 + + video_quality_mode: :class:`VideoQualityMode` + The camera video quality for the voice channel's participants. + + .. versionadded:: 2.7 + + slowmode_delay: :class:`int` + Specifies the slowmode rate limit for user in this channel, in seconds. + A value of ``0`` disables slowmode. The maximum value possible is ``21600``. + + .. versionadded:: 2.7 + + nsfw: :class:`bool` + Whether the channel is marked as NSFW. + + .. versionadded:: 2.7 + Returns ------- :class:`StageChannel` @@ -1379,6 +1618,24 @@ async def create_stage_channel( if position is not MISSING: options["position"] = position + if bitrate is not MISSING: + options["bitrate"] = bitrate + + if user_limit is not MISSING: + options["user_limit"] = user_limit + + if rtc_region is not MISSING: + options["rtc_region"] = None if rtc_region is None else str(rtc_region) + + if video_quality_mode is not MISSING: + options["video_quality_mode"] = video_quality_mode.value + + if slowmode_delay is not MISSING: + options["rate_limit_per_user"] = slowmode_delay + + if nsfw is not MISSING: + options["nsfw"] = nsfw + data = await self._create_channel( name, overwrites=overwrites, @@ -1405,6 +1662,10 @@ async def create_forum_channel( nsfw: bool = MISSING, overwrites: dict[Role | Member, PermissionOverwrite] = MISSING, default_reaction_emoji: GuildEmoji | int | str = MISSING, + available_tags: list[ForumTag] = MISSING, + default_sort_order: SortOrder | None = MISSING, + default_thread_slowmode_delay: int | None = MISSING, + default_auto_archive_duration: int = MISSING, ) -> ForumChannel: """|coro| @@ -1441,9 +1702,9 @@ async def create_forum_channel( The new channel's topic. slowmode_delay: :class:`int` Specifies the slowmode rate limit for user in this channel, in seconds. - The maximum value possible is `21600`. + A value of ``0`` disables slowmode. The maximum value possible is ``21600``. nsfw: :class:`bool` - To mark the channel as NSFW or not. + Whether the channel is marked as NSFW. reason: Optional[:class:`str`] The reason for creating this channel. Shows up on the audit log. default_reaction_emoji: Optional[:class:`GuildEmoji` | :class:`int` | :class:`str`] @@ -1453,6 +1714,26 @@ async def create_forum_channel( .. versionadded:: v2.5 + available_tags: List[:class:`ForumTag`] + The set of tags that can be used in a forum channel. + + .. versionadded:: 2.7 + + default_sort_order: Optional[:class:`SortOrder`] + The default sort order type used to order posts in this channel. + + .. versionadded:: 2.7 + + default_thread_slowmode_delay: Optional[:class:`int`] + The initial slowmode delay to set on newly created threads in this channel. + + .. versionadded:: 2.7 + + default_auto_archive_duration: :class:`int` + The default auto archive duration in minutes for threads created in this channel. + + .. versionadded:: 2.7 + Returns ------- :class:`ForumChannel` @@ -1501,6 +1782,20 @@ async def create_forum_channel( if nsfw is not MISSING: options["nsfw"] = nsfw + if available_tags is not MISSING: + options["available_tags"] = [tag.to_dict() for tag in available_tags] + + if default_sort_order is not MISSING: + options["default_sort_order"] = ( + default_sort_order.value if default_sort_order else None + ) + + if default_thread_slowmode_delay is not MISSING: + options["default_thread_slowmode_delay"] = default_thread_slowmode_delay + + if default_auto_archive_duration is not MISSING: + options["default_auto_archive_duration"] = default_auto_archive_duration + if default_reaction_emoji is not MISSING: if isinstance( default_reaction_emoji, _EmojiTag @@ -1512,13 +1807,17 @@ async def create_forum_channel( ) elif isinstance(default_reaction_emoji, str): default_reaction_emoji = PartialEmoji.from_str(default_reaction_emoji) + elif default_reaction_emoji is None: + pass else: raise InvalidArgument( - "default_reaction_emoji must be of type: GuildEmoji | int | str" + "default_reaction_emoji must be of type: GuildEmoji | int | str | None" ) options["default_reaction_emoji"] = ( default_reaction_emoji._to_forum_reaction_payload() + if default_reaction_emoji + else None ) data = await self._create_channel( @@ -1663,6 +1962,9 @@ async def edit( public_updates_channel: TextChannel | None = MISSING, premium_progress_bar_enabled: bool = MISSING, disable_invites: bool = MISSING, + discoverable: bool = MISSING, + disable_raid_alerts: bool = MISSING, + enable_activity_feed: bool = MISSING, ) -> Guild: r"""|coro| @@ -1740,6 +2042,12 @@ async def edit( Whether the guild should have premium progress bar enabled. disable_invites: :class:`bool` Whether the guild should have server invites enabled or disabled. + discoverable: :class:`bool` + Whether the guild should be discoverable in the discover tab. + disable_raid_alerts: :class:`bool` + Whether activity alerts for the guild should be disabled. + enable_activity_feed: class:`bool` + Whether the guild's user activity feed should be enabled. reason: Optional[:class:`str`] The reason for editing this guild. Shows up on the audit log. @@ -1861,8 +2169,12 @@ async def edit( fields["system_channel_flags"] = system_channel_flags.value + if premium_progress_bar_enabled is not MISSING: + fields["premium_progress_bar_enabled"] = premium_progress_bar_enabled + + features: list[GuildFeature] = self.features.copy() + if community is not MISSING: - features = self.features.copy() if community: if ( "rules_channel_id" in fields @@ -1872,8 +2184,7 @@ async def edit( features.append("COMMUNITY") else: raise InvalidArgument( - "community field requires both rules_channel and" - " public_updates_channel fields to be provided" + "community field requires both rules_channel and public_updates_channel fields to be provided" ) else: if "COMMUNITY" in features: @@ -1883,20 +2194,43 @@ async def edit( fields["public_updates_channel_id"] = None features.remove("COMMUNITY") - fields["features"] = features - - if premium_progress_bar_enabled is not MISSING: - fields["premium_progress_bar_enabled"] = premium_progress_bar_enabled - if disable_invites is not MISSING: - features = self.features.copy() if disable_invites: - if not "INVITES_DISABLED" in features: + if "INVITES_DISABLED" not in features: features.append("INVITES_DISABLED") else: if "INVITES_DISABLED" in features: features.remove("INVITES_DISABLED") + if discoverable is not MISSING: + if discoverable: + if "DISCOVERABLE" not in features: + features.append("DISCOVERABLE") + else: + if "DISCOVERABLE" in features: + features.remove("DISCOVERABLE") + + if disable_raid_alerts is not MISSING: + if disable_raid_alerts: + if "RAID_ALERTS_DISABLED" not in features: + features.append("RAID_ALERTS_DISABLED") + else: + if "RAID_ALERTS_DISABLED" in features: + features.remove("RAID_ALERTS_DISABLED") + + if enable_activity_feed is not MISSING: + if enable_activity_feed: + if "ACTIVITY_FEED_ENABLED_BY_USER" not in features: + features.append("ACTIVITY_FEED_ENABLED_BY_USER") + if "ACTIVITY_FEED_DISABLED_BY_USER" in features: + features.remove("ACTIVITY_FEED_DISABLED_BY_USER") + else: + if "ACTIVITY_FEED_ENABLED_BY_USER" in features: + features.remove("ACTIVITY_FEED_ENABLED_BY_USER") + if "ACTIVITY_FEED_DISABLED_BY_USER" not in features: + features.append("ACTIVITY_FEED_DISABLED_BY_USER") + + if self.features != features: fields["features"] = features data = await http.edit_guild(self.id, reason=reason, **fields) @@ -2881,6 +3215,8 @@ async def create_role( name: str = ..., permissions: Permissions = ..., colour: Colour | int = ..., + colours: RoleColours = ..., + holographic: bool = ..., hoist: bool = ..., mentionable: bool = ..., icon: bytes | None = MISSING, @@ -2895,6 +3231,8 @@ async def create_role( name: str = ..., permissions: Permissions = ..., color: Colour | int = ..., + colors: RoleColours = ..., + holographic: bool = ..., hoist: bool = ..., mentionable: bool = ..., icon: bytes | None = ..., @@ -2908,6 +3246,9 @@ async def create_role( permissions: Permissions = MISSING, color: Colour | int = MISSING, colour: Colour | int = MISSING, + colors: RoleColours = MISSING, + colours: RoleColours = MISSING, + holographic: bool = MISSING, hoist: bool = MISSING, mentionable: bool = MISSING, reason: str | None = None, @@ -2971,11 +3312,30 @@ async def create_role( else: fields["permissions"] = "0" - actual_colour = colour or color or Colour.default() + actual_colour = colour if colour not in (MISSING, None) else color + if isinstance(actual_colour, int): - fields["color"] = actual_colour + actual_colour = Colour(actual_colour) + + if actual_colour not in (MISSING, None): + utils.warn_deprecated("colour", "colours", "2.7") + actual_colours = RoleColours(primary=actual_colour) + elif holographic: + actual_colours = RoleColours.holographic() + else: + actual_colours = colours or colors or RoleColours.default() + + if isinstance(actual_colours, RoleColours): + if "ENHANCED_ROLE_COLORS" not in self.features: + actual_colours.secondary = None + actual_colours.tertiary = None + fields["colors"] = actual_colours._to_dict() else: - fields["color"] = actual_colour.value + raise InvalidArgument( + "colours parameter must be of type RoleColours, not {0.__class__.__name__}".format( + actual_colours + ) + ) if hoist is not MISSING: fields["hoist"] = hoist @@ -3770,8 +4130,8 @@ async def create_scheduled_event( *, name: str, description: str = MISSING, - start_time: datetime, - end_time: datetime = MISSING, + start_time: datetime.datetime, + end_time: datetime.datetime = MISSING, location: str | int | VoiceChannel | StageChannel | ScheduledEventLocation, privacy_level: ScheduledEventPrivacyLevel = ScheduledEventPrivacyLevel.guild_only, reason: str | None = None, @@ -4149,3 +4509,20 @@ def entitlements( guild_id=self.id, exclude_ended=exclude_ended, ) + + def get_sound(self, sound_id: int) -> SoundboardSound | None: + """Returns a sound with the given ID. + + .. versionadded :: 2.7 + + Parameters + ---------- + sound_id: :class:`int` + The ID to search for. + + Returns + ------- + Optional[:class:`SoundboardSound`] + The sound or ``None`` if not found. + """ + return self._sounds.get(sound_id) diff --git a/discord/http.py b/discord/http.py index 464710daac..bfefed91d1 100644 --- a/discord/http.py +++ b/discord/http.py @@ -44,7 +44,9 @@ LoginFailure, NotFound, ) +from .file import VoiceMessage from .gateway import DiscordClientWebSocketResponse +from .soundboard import PartialSoundboardSound, SoundboardSound from .utils import MISSING, warn_deprecated _log = logging.getLogger(__name__) @@ -83,6 +85,7 @@ widget, ) from .types.snowflake import Snowflake, SnowflakeList + from .types.soundboard import SoundboardSound as SoundboardSoundPayload T = TypeVar("T") BE = TypeVar("BE", bound=BaseException) @@ -105,6 +108,8 @@ async def json_or_text(response: aiohttp.ClientResponse) -> dict[str, Any] | str class Route: + API_BASE_URL: str = "https://discord.com/api/v{API_VERSION}" + def __init__(self, method: str, path: str, **parameters: Any) -> None: self.path: str = path self.method: str = method @@ -126,7 +131,7 @@ def __init__(self, method: str, path: str, **parameters: Any) -> None: @property def base(self) -> str: - return f"https://discord.com/api/v{API_VERSION}" + return self.API_BASE_URL.format(API_VERSION=API_VERSION) @property def bucket(self) -> str: @@ -567,13 +572,17 @@ def send_multipart_helper( attachments = [] form.append({"name": "payload_json"}) for index, file in enumerate(files): - attachments.append( - { - "id": index, - "filename": file.filename, - "description": file.description, - } - ) + attachment_info = { + "id": index, + "filename": file.filename, + "description": file.description, + } + if isinstance(file, VoiceMessage): + attachment_info.update( + waveform=file.waveform, + duration_secs=file.duration_secs, + ) + attachments.append(attachment_info) form.append( { "name": f"files[{index}]", @@ -633,13 +642,17 @@ def edit_multipart_helper( attachments = [] form.append({"name": "payload_json"}) for index, file in enumerate(files): - attachments.append( - { - "id": index, - "filename": file.filename, - "description": file.description, - } - ) + attachment_info = { + "id": index, + "filename": file.filename, + "description": file.description, + } + if isinstance(file, VoiceMessage): + attachment_info.update( + waveform=file.waveform, + duration_secs=file.duration_secs, + ) + attachments.append(attachment_info) form.append( { "name": f"files[{index}]", @@ -877,7 +890,7 @@ def pin_message( ) -> Response[None]: r = Route( "PUT", - "/channels/{channel_id}/pins/{message_id}", + "/channels/{channel_id}/messages/pins/{message_id}", channel_id=channel_id, message_id=message_id, ) @@ -888,13 +901,30 @@ def unpin_message( ) -> Response[None]: r = Route( "DELETE", - "/channels/{channel_id}/pins/{message_id}", + "/channels/{channel_id}/messages/pins/{message_id}", channel_id=channel_id, message_id=message_id, ) return self.request(r, reason=reason) - def pins_from(self, channel_id: Snowflake) -> Response[list[message.Message]]: + def pins_from( + self, + channel_id: Snowflake, + limit: int | None = None, + before: str | None = None, + ) -> Response[message.MessagePinPagination]: + r = Route("GET", "/channels/{channel_id}/messages/pins", channel_id=channel_id) + params = {} + if limit: + params["limit"] = limit + if before: + params["before"] = before + + return self.request(r, params=params) + + def legacy_pins_from( + self, channel_id: Snowflake + ) -> Response[list[message.Message]]: return self.request( Route("GET", "/channels/{channel_id}/pins", channel_id=channel_id) ) @@ -990,38 +1020,6 @@ def guild_voice_state( def edit_profile(self, payload: dict[str, Any]) -> Response[user.User]: return self.request(Route("PATCH", "/users/@me"), json=payload) - def change_my_nickname( - self, - guild_id: Snowflake, - nickname: str, - *, - reason: str | None = None, - ) -> Response[member.Nickname]: - r = Route("PATCH", "/guilds/{guild_id}/members/@me", guild_id=guild_id) - payload = { - "nick": nickname, - } - return self.request(r, json=payload, reason=reason) - - def change_nickname( - self, - guild_id: Snowflake, - user_id: Snowflake, - nickname: str, - *, - reason: str | None = None, - ) -> Response[member.Member]: - r = Route( - "PATCH", - "/guilds/{guild_id}/members/{user_id}", - guild_id=guild_id, - user_id=user_id, - ) - payload = { - "nick": nickname, - } - return self.request(r, json=payload, reason=reason) - def edit_my_voice_state( self, guild_id: Snowflake, payload: dict[str, Any] ) -> Response[None]: @@ -1217,6 +1215,7 @@ def start_forum_thread( allowed_mentions: message.AllowedMentions | None = None, stickers: list[sticker.StickerItem] | None = None, components: list[components.Component] | None = None, + flags: int | None = None, ) -> Response[threads.Thread]: payload: dict[str, Any] = { "name": name, @@ -1253,6 +1252,9 @@ def start_forum_thread( if stickers: message["sticker_ids"] = stickers + if flags: + message["flags"] = flags + if message != {}: payload["message"] = message @@ -1751,7 +1753,7 @@ def create_guild_sticker( initial_bytes = file.fp.read(16) try: - mime_type = utils._get_mime_type_for_image(initial_bytes) + mime_type = utils._get_mime_type_for_file(initial_bytes) except InvalidArgument: if initial_bytes.startswith(b"{"): mime_type = "application/json" @@ -2148,6 +2150,7 @@ def edit_role( "name", "permissions", "color", + "colors", "hoist", "mentionable", "icon", @@ -3072,6 +3075,43 @@ def delete_test_entitlement( ) return self.request(r) + def list_sku_subscriptions( + self, + sku_id: Snowflake, + *, + before: Snowflake | None = None, + after: Snowflake | None = None, + limit: int = 50, + user_id: Snowflake | None = None, + ) -> Response[list[monetization.Subscription]]: + params: dict[str, Any] = {} + if before is not None: + params["before"] = before + if after is not None: + params["after"] = after + if limit is not None: + params["limit"] = limit + if user_id is not None: + params["user_id"] = user_id + return self.request( + Route("GET", "/skus/{sku_id}/subscriptions", sku_id=sku_id), + params=params, + ) + + def get_subscription( + self, + sku_id: Snowflake, + subscription_id: Snowflake, + ) -> Response[monetization.Subscription]: + return self.request( + Route( + "GET", + "/skus/{sku_id}/subscriptions/{subscription_id}", + sku_id=sku_id, + subscription_id=subscription_id, + ) + ) + # Onboarding def get_onboarding(self, guild_id: Snowflake) -> Response[onboarding.Onboarding]: @@ -3175,3 +3215,98 @@ async def get_bot_gateway( def get_user(self, user_id: Snowflake) -> Response[user.User]: return self.request(Route("GET", "/users/{user_id}", user_id=user_id)) + + def delete_sound( + self, sound: SoundboardSound, *, reason: str | None + ) -> Response[None]: + return self.request( + Route( + "DELETE", + "/guilds/{guild_id}/soundboard-sounds/{sound_id}", + guild_id=sound.guild.id, + sound_id=sound.id, + ), + reason=reason, + ) + + def get_default_sounds(self) -> Response[list[SoundboardSoundPayload]]: + return self.request(Route("GET", "/soundboard-default-sounds")) + + def create_guild_sound( + self, guild_id: Snowflake, reason: str | None, **payload + ) -> Response[SoundboardSoundPayload]: + keys = ( + "name", + "sound", + "volume", + "emoji_id", + "emoji_name", + ) + + payload = {k: v for k, v in payload.items() if k in keys and v is not None} + + return self.request( + Route("POST", "/guilds/{guild_id}/soundboard-sounds", guild_id=guild_id), + json=payload, + reason=reason, + ) + + def get_all_guild_sounds( + self, guild_id: Snowflake + ) -> Response[list[SoundboardSoundPayload]]: + return self.request( + Route("GET", "/guilds/{guild_id}/soundboard-sounds", guild_id=guild_id) + ) + + def get_guild_sound( + self, guild_id: Snowflake, sound_id: Snowflake + ) -> Response[SoundboardSoundPayload]: + return self.request( + Route( + "GET", + "/guilds/{guild_id}/soundboard-sounds/{sound_id}", + guild_id=guild_id, + sound_id=sound_id, + ) + ) + + def edit_guild_sound( + self, guild_id: Snowflake, sound_id: Snowflake, *, reason: str | None, **payload + ) -> Response[SoundboardSoundPayload]: + keys = ( + "name", + "volume", + "emoji_id", + "emoji_name", + ) + + payload = {k: v for k, v in payload.items() if k in keys and v is not None} + + return self.request( + Route( + "PATCH", + "/guilds/{guild_id}/soundboard-sounds/{sound_id}", + guild_id=guild_id, + sound_id=sound_id, + ), + json=payload, + reason=reason, + ) + + def send_soundboard_sound( + self, channel_id: int, sound: PartialSoundboardSound + ) -> Response[None]: + payload = { + "sound_id": sound.id, + } + if isinstance(sound, SoundboardSound) and not sound.is_default_sound: + payload["source_guild_id"] = sound.guild_id + + return self.request( + Route( + "POST", + "/channels/{channel_id}/send-soundboard-sound", + channel_id=channel_id, + ), + json=payload, + ) diff --git a/discord/integrations.py b/discord/integrations.py index f5d67faad8..60ecbdde3f 100644 --- a/discord/integrations.py +++ b/discord/integrations.py @@ -50,7 +50,9 @@ from .types.integration import ( IntegrationApplication as IntegrationApplicationPayload, ) - from .types.integration import IntegrationType + from .types.integration import ( + IntegrationType, + ) from .types.integration import StreamIntegration as StreamIntegrationPayload diff --git a/discord/interactions.py b/discord/interactions.py index e7d7fade3e..c94c2bcea4 100644 --- a/discord/interactions.py +++ b/discord/interactions.py @@ -26,6 +26,7 @@ from __future__ import annotations import asyncio +import datetime from typing import TYPE_CHECKING, Any, Coroutine, Union from . import utils @@ -37,7 +38,7 @@ try_enum, ) from .errors import ClientException, InteractionResponded, InvalidArgument -from .file import File +from .file import File, VoiceMessage from .flags import MessageFlags from .guild import Guild from .member import Member @@ -60,6 +61,7 @@ "MessageInteraction", "InteractionMetadata", "AuthorizingIntegrationOwners", + "InteractionCallback", ) if TYPE_CHECKING: @@ -75,14 +77,15 @@ VoiceChannel, ) from .client import Client - from .commands import OptionChoice + from .commands import ApplicationCommand, OptionChoice from .embeds import Embed from .mentions import AllowedMentions from .poll import Poll from .state import ConnectionState from .threads import Thread from .types.interactions import Interaction as InteractionPayload - from .types.interactions import InteractionData + from .types.interactions import InteractionCallback as InteractionCallbackPayload + from .types.interactions import InteractionCallbackResponse, InteractionData from .types.interactions import InteractionMetadata as InteractionMetadataPayload from .types.interactions import MessageInteraction as MessageInteractionPayload from .ui.modal import Modal @@ -119,7 +122,7 @@ class Interaction: The interaction type. guild_id: Optional[:class:`int`] The guild ID the interaction was sent from. - channel: Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`]] + channel: Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]] The channel the interaction was sent from. channel_id: Optional[:class:`int`] The ID of the channel the interaction was sent from. @@ -152,6 +155,27 @@ class Interaction: The context in which this command was executed. .. versionadded:: 2.6 + callback: Optional[:class:`InteractionCallback`] + The callback of the interaction. Contains information about the status of the interaction response. + Will be `None` until the interaction is responded to. + + .. versionadded:: 2.7 + command: Optional[:class:`ApplicationCommand`] + The command that this interaction belongs to. + + .. versionadded:: 2.7 + view: Optional[:class:`View`] + The view that this interaction belongs to. + + .. versionadded:: 2.7 + modal: Optional[:class:`Modal`] + The modal that this interaction belongs to. + + .. versionadded:: 2.7 + attachment_size_limit: :class:`int` + The attachment size limit. + + .. versionadded:: 2.7 """ __slots__: tuple[str, ...] = ( @@ -172,6 +196,12 @@ class Interaction: "entitlements", "context", "authorizing_integration_owners", + "callback", + "command", + "view", + "modal", + "attachment_size_limit", + "_raw_data", "_channel_data", "_message_data", "_guild_data", @@ -191,9 +221,11 @@ def __init__(self, *, data: InteractionPayload, state: ConnectionState): self._state: ConnectionState = state self._session: ClientSession = state.http._HTTPClient__session self._original_response: InteractionMessage | None = None + self.callback: InteractionCallback | None = None self._from_data(data) def _from_data(self, data: InteractionPayload): + self._raw_data: InteractionPayload = data self.id: int = int(data["id"]) self.type: InteractionType = try_enum(InteractionType, data["type"]) self.data: InteractionData | None = data.get("data") @@ -224,6 +256,11 @@ def _from_data(self, data: InteractionPayload): else None ) + self.command: ApplicationCommand | None = None + self.view: View | None = None + self.modal: Modal | None = None + self.attachment_size_limit: int = data.get("attachment_size_limit") + self.message: Message | None = None self.channel = None @@ -261,20 +298,23 @@ def _from_data(self, data: InteractionPayload): except KeyError: pass - if channel := data.get("channel"): - if (ch_type := channel.get("type")) is not None: - factory, ch_type = _threaded_channel_factory(ch_type) + channel = data.get("channel") + data_ch_type: int | None = channel.get("type") if channel else None - if ch_type in (ChannelType.group, ChannelType.private): - self.channel = factory( - me=self.user, data=channel, state=self._state - ) - elif self.guild: - self.channel = factory( - guild=self.guild, state=self._state, data=channel - ) - else: - self.channel = self.cached_channel + if data_ch_type is not None: + factory, ch_type = _threaded_channel_factory(data_ch_type) + if ch_type in (ChannelType.group, ChannelType.private): + self.channel = factory(me=self.user, data=channel, state=self._state) + + if self.channel is None and self.guild: + self.channel = self.guild._resolve_channel(self.channel_id) + if self.channel is None and self.channel_id is not None: + ch_type = ( + ChannelType.text if self.guild_id is not None else ChannelType.private + ) + self.channel = PartialMessageable( + state=self._state, id=self.channel_id, type=ch_type + ) self._channel_data = channel @@ -297,6 +337,11 @@ def guild(self) -> Guild | None: return self._guild return self._state and self._state._get_guild(self.guild_id) + @property + def created_at(self) -> datetime.datetime: + """Returns the interaction's creation time in UTC.""" + return utils.snowflake_time(self.id) + def is_command(self) -> bool: """Indicates whether the interaction is an application command.""" return self.type == InteractionType.application_command @@ -306,12 +351,12 @@ def is_component(self) -> bool: return self.type == InteractionType.component @utils.cached_slot_property("_cs_channel") + @utils.deprecated("Interaction.channel", "2.7", stacklevel=4) def cached_channel(self) -> InteractionChannel | None: - """The channel the - interaction was sent from. + """The cached channel from which the interaction was sent. + DM channels are not resolved. These are :class:`PartialMessageable` instead. - 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. + .. deprecated:: 2.7 """ guild = self.guild channel = guild and guild._resolve_channel(self.channel_id) @@ -360,6 +405,48 @@ def followup(self) -> Webhook: } return Webhook.from_state(data=payload, state=self._state) + def is_guild_authorised(self) -> bool: + """:class:`bool`: Checks if the interaction is guild authorised. + + There is an alias for this called :meth:`.is_guild_authorized`. + + .. versionadded:: 2.7 + """ + if self.guild_id: + return self.authorizing_integration_owners.guild_id == self.guild_id + return False + + def is_user_authorised(self) -> bool: + """:class:`bool`: Checks if the interaction is user authorised. + + There is an alias for this called :meth:`.is_user_authorized`. + + .. versionadded:: 2.7 + """ + if self.user: + return self.authorizing_integration_owners.user_id == self.user.id + + # This return should not be called but to make sure it returns the expected value + return False + + def is_guild_authorized(self) -> bool: + """:class:`bool`: Checks if the interaction is guild authorized. + + There is an alias for this called :meth:`.is_guild_authorised`. + + .. versionadded:: 2.7 + """ + return self.is_guild_authorised() + + def is_user_authorized(self) -> bool: + """:class:`bool`: Checks if the interaction is user authorized. + + There is an alias for this called :meth:`.is_user_authorised`. + + .. versionadded:: 2.7 + """ + return self.is_user_authorised() + async def original_response(self) -> InteractionMessage: """|coro| @@ -390,7 +477,9 @@ async def original_response(self) -> InteractionMessage: # TODO: fix later to not raise? channel = self.channel if channel is None: - raise ClientException("Channel for message could not be resolved") + raise ClientException( + "Channel for message could not be resolved. Please open a issue on GitHub if you encounter this error." + ) adapter = async_context.get() http = self._state.http @@ -524,9 +613,13 @@ async def edit_original_response( # The message channel types should always match state = _InteractionMessageState(self, self._state) message = InteractionMessage(state=state, channel=self.channel, data=data) # type: ignore - if view and not view.is_finished(): + if view: + if not view.is_finished(): + view.refresh(message.components) + if view.is_dispatchable(): + self._state.store_view(view, message.id) + view.message = message - self._state.store_view(view, message.id) if delete_after is not None: await self.delete_original_response(delay=delete_after) @@ -780,18 +873,21 @@ async def defer(self, *, ephemeral: bool = False, invisible: bool = True) -> Non if defer_type: adapter = async_context.get() http = parent._state.http - await self._locked_response( - adapter.create_interaction_response( - parent.id, - parent.token, - session=parent._session, - type=defer_type, - data=data, - proxy=http.proxy, - proxy_auth=http.proxy_auth, + callback_response: InteractionCallbackResponse = ( + await self._locked_response( + adapter.create_interaction_response( + parent.id, + parent.token, + session=parent._session, + type=defer_type, + data=data, + proxy=http.proxy, + proxy_auth=http.proxy_auth, + ) ) ) self._responded = True + await self._process_callback_response(callback_response) async def pong(self) -> None: """|coro| @@ -814,17 +910,36 @@ async def pong(self) -> None: if parent.type is InteractionType.ping: adapter = async_context.get() http = parent._state.http - await self._locked_response( - adapter.create_interaction_response( - parent.id, - parent.token, - session=parent._session, - proxy=http.proxy, - proxy_auth=http.proxy_auth, - type=InteractionResponseType.pong.value, + callback_response: InteractionCallbackResponse = ( + await self._locked_response( + adapter.create_interaction_response( + parent.id, + parent.token, + session=parent._session, + proxy=http.proxy, + proxy_auth=http.proxy_auth, + type=InteractionResponseType.pong.value, + ) ) ) self._responded = True + await self._process_callback_response(callback_response) + + async def _process_callback_response( + self, callback_response: InteractionCallbackResponse + ): + if callback_response.get("resource", {}).get("message"): + # TODO: fix later to not raise? + channel = self._parent.channel + if channel is None: + raise ClientException( + "Channel for message could not be resolved. Please open a issue on GitHub if you encounter this error." + ) + state = _InteractionMessageState(self._parent, self._parent._state) + message = InteractionMessage(state=state, channel=channel, data=callback_response["resource"]["message"]) # type: ignore + self._parent._original_response = message + + self._parent.callback = InteractionCallback(callback_response["interaction"]) async def send_message( self, @@ -888,7 +1003,7 @@ async def send_message( HTTPException Sending the message failed. TypeError - You specified both ``embed`` and ``embeds``. + You specified both ``embed`` and ``embeds``, or sent content or embeds with V2 components. ValueError The length of ``embeds`` was invalid. InteractionResponded @@ -915,11 +1030,16 @@ async def send_message( if content is not None: payload["content"] = str(content) - if ephemeral: - payload["flags"] = 64 + flags = MessageFlags(ephemeral=ephemeral) - if view is not None: + if view: payload["components"] = view.to_components() + if view.is_components_v2(): + if embeds or content: + raise TypeError( + "cannot send embeds or content with a view using v2 component logic" + ) + flags.is_components_v2 = True if poll is not None: payload["poll"] = poll.to_dict() @@ -954,20 +1074,27 @@ async def send_message( elif not all(isinstance(file, File) for file in files): raise InvalidArgument("files parameter must be a list of File") + if any(isinstance(file, VoiceMessage) for file in files): + flags = flags + MessageFlags(is_voice_message=True) + + payload["flags"] = flags.value + parent = self._parent adapter = async_context.get() http = parent._state.http try: - await self._locked_response( - adapter.create_interaction_response( - parent.id, - parent.token, - session=parent._session, - type=InteractionResponseType.channel_message.value, - proxy=http.proxy, - proxy_auth=http.proxy_auth, - data=payload, - files=files, + callback_response: InteractionCallbackResponse = ( + await self._locked_response( + adapter.create_interaction_response( + parent.id, + parent.token, + session=parent._session, + type=InteractionResponseType.channel_message.value, + proxy=http.proxy, + proxy_auth=http.proxy_auth, + data=payload, + files=files, + ) ) ) finally: @@ -975,14 +1102,19 @@ async def send_message( for file in files: file.close() - if view is not None: - if ephemeral and view.timeout is None: - view.timeout = 15 * 60.0 + self._responded = True + await self._process_callback_response(callback_response) + if view: + if not view.is_finished(): + if ephemeral and view.timeout is None: + view.timeout = 15 * 60.0 - view.parent = self._parent - self._parent._state.store_view(view) + view.parent = self._parent + if view.is_dispatchable(): + self._parent._state.store_view(view) + + view.message = await self._parent.original_response() - self._responded = True if delete_after is not None: await self._parent.delete_original_response(delay=delete_after) return self._parent @@ -1122,16 +1254,18 @@ async def edit_message( adapter = async_context.get() http = parent._state.http try: - await self._locked_response( - adapter.create_interaction_response( - parent.id, - parent.token, - session=parent._session, - type=InteractionResponseType.message_update.value, - proxy=http.proxy, - proxy_auth=http.proxy_auth, - data=payload, - files=files, + callback_response: InteractionCallbackResponse = ( + await self._locked_response( + adapter.create_interaction_response( + parent.id, + parent.token, + session=parent._session, + type=InteractionResponseType.message_update.value, + proxy=http.proxy, + proxy_auth=http.proxy_auth, + data=payload, + files=files, + ) ) ) finally: @@ -1139,11 +1273,13 @@ async def edit_message( for file in files: file.close() - if view and not view.is_finished(): - view.message = msg - state.store_view(view, message_id) - self._responded = True + await self._process_callback_response(callback_response) + if view: + if not view.is_finished(): + state.store_view(view, message_id) + view.message = msg or await parent.original_response() + if delete_after is not None: await self._parent.delete_original_response(delay=delete_after) @@ -1179,7 +1315,7 @@ async def send_autocomplete_result( adapter = async_context.get() http = parent._state.http - await self._locked_response( + callback_response: InteractionCallbackResponse = await self._locked_response( adapter.create_interaction_response( parent.id, parent.token, @@ -1192,6 +1328,7 @@ async def send_autocomplete_result( ) self._responded = True + await self._process_callback_response(callback_response) async def send_modal(self, modal: Modal) -> Interaction: """|coro| @@ -1218,7 +1355,7 @@ async def send_modal(self, modal: Modal) -> Interaction: payload = modal.to_dict() adapter = async_context.get() http = parent._state.http - await self._locked_response( + callback_response: InteractionCallbackResponse = await self._locked_response( adapter.create_interaction_response( parent.id, parent.token, @@ -1230,6 +1367,7 @@ async def send_modal(self, modal: Modal) -> Interaction: ) ) self._responded = True + await self._process_callback_response(callback_response) self._parent._state.store_modal(modal, self._parent.user.id) return self._parent @@ -1257,7 +1395,7 @@ async def premium_required(self) -> Interaction: adapter = async_context.get() http = parent._state.http - await self._locked_response( + callback_response: InteractionCallbackResponse = await self._locked_response( adapter.create_interaction_response( parent.id, parent.token, @@ -1268,9 +1406,10 @@ async def premium_required(self) -> Interaction: ) ) self._responded = True + await self._process_callback_response(callback_response) return self._parent - async def _locked_response(self, coro: Coroutine[Any, Any, Any]) -> None: + async def _locked_response(self, coro: Coroutine[Any, Any, Any]) -> Any: """|coro| Wraps a response and makes sure that it's locked while executing. @@ -1280,16 +1419,24 @@ async def _locked_response(self, coro: Coroutine[Any, Any, Any]) -> None: coro: Coroutine[Any] The coroutine to wrap. + Returns + ------- + Any + The result of the coroutine. + Raises ------ InteractionResponded This interaction has already been responded to before. + + .. versionchanged:: 2.7 + Return the result of the coroutine """ async with self._response_lock: if self.is_done(): coro.close() # cleanup un-awaited coroutine raise InteractionResponded(self._parent) - await coro + return await coro class _InteractionMessageState: @@ -1613,3 +1760,36 @@ def guild(self) -> Guild | None: if not self.guild_id: return None return self._state._get_guild(self.guild_id) + + +class InteractionCallback: + """Information about the status of the interaction response. + + .. versionadded:: 2.7 + """ + + def __init__(self, data: InteractionCallbackPayload): + self._response_message_loading: bool = data.get( + "response_message_loading", False + ) + self._response_message_ephemeral: bool = data.get( + "response_message_ephemeral", False + ) + + def __repr__(self): + return ( + f"" + ) + + def is_loading(self) -> bool: + """Indicates whether the response message is in a loading state.""" + return self._response_message_loading + + def is_ephemeral(self) -> bool: + """Indicates whether the response message is ephemeral. + + This might be useful for determining if the message was forced to be ephemeral. + """ + return self._response_message_ephemeral diff --git a/discord/iterators.py b/discord/iterators.py index eca3c72091..b074aefdc4 100644 --- a/discord/iterators.py +++ b/discord/iterators.py @@ -33,6 +33,7 @@ AsyncIterator, Awaitable, Callable, + Generator, List, TypeVar, Union, @@ -40,9 +41,8 @@ from .audit_logs import AuditLogEntry from .errors import NoMoreItems -from .monetization import Entitlement from .object import Object -from .utils import maybe_coroutine, snowflake_time, time_snowflake +from .utils import maybe_coroutine, snowflake_time, time_snowflake, warn_deprecated __all__ = ( "ReactionIterator", @@ -52,19 +52,24 @@ "MemberIterator", "ScheduledEventSubscribersIterator", "EntitlementIterator", + "SubscriptionIterator", ) if TYPE_CHECKING: from .abc import Snowflake + from .channel import MessageableChannel from .guild import BanEntry, Guild from .member import Member - from .message import Message + from .message import Message, MessagePin + from .monetization import Entitlement, Subscription from .scheduled_events import ScheduledEvent from .threads import Thread from .types.audit_log import AuditLog as AuditLogPayload from .types.guild import Guild as GuildPayload from .types.message import Message as MessagePayload + from .types.message import MessagePin as MessagePinPayload from .types.monetization import Entitlement as EntitlementPayload + from .types.monetization import Subscription as SubscriptionPayload from .types.threads import Thread as ThreadPayload from .types.user import PartialUser as PartialUserPayload from .user import User @@ -1031,6 +1036,11 @@ def _get_retrieve(self): self.retrieve = r return r > 0 + def create_entitlement(self, data) -> Entitlement: + from .monetization import Entitlement + + return Entitlement(data=data, state=self.state) + async def fill_entitlements(self): if not self._get_retrieve(): return @@ -1044,9 +1054,9 @@ async def fill_entitlements(self): self.limit = 0 # terminate loop for element in data: - await self.entitlements.put(Entitlement(data=element, state=self.state)) + await self.entitlements.put(self.create_entitlement(element)) - async def _retrieve_entitlements(self, retrieve) -> list[Entitlement]: + async def _retrieve_entitlements(self, retrieve) -> list[EntitlementPayload]: """Retrieve entitlements and update next parameters.""" raise NotImplementedError @@ -1089,3 +1099,187 @@ async def _retrieve_entitlements_after_strategy( self.limit -= retrieve self.after = Object(id=int(data[-1]["id"])) return data + + +class SubscriptionIterator(_AsyncIterator["Subscription"]): + def __init__( + self, + state, + sku_id: int, + limit: int = None, + before: datetime.datetime | None = None, + after: datetime.datetime | None = None, + user_id: int | None = None, + ): + if isinstance(before, datetime.datetime): + before = Object(id=time_snowflake(before, high=False)) + if isinstance(after, datetime.datetime): + after = Object(id=time_snowflake(after, high=True)) + + self.state = state + self.sku_id = sku_id + self.limit = limit + self.before = before + self.after = after + self.user_id = user_id + + self._filter = None + + self.get_subscriptions = state.http.list_sku_subscriptions + self.subscriptions = asyncio.Queue() + + if self.before and self.after: + self._retrieve_subscriptions = self._retrieve_subscriptions_before_strategy + self._filter = lambda m: int(m["id"]) > self.after.id + elif self.after: + self._retrieve_subscriptions = self._retrieve_subscriptions_after_strategy + else: + self._retrieve_subscriptions = self._retrieve_subscriptions_before_strategy + + async def next(self) -> Guild: + if self.subscriptions.empty(): + await self.fill_subscriptions() + + try: + return self.subscriptions.get_nowait() + except asyncio.QueueEmpty: + raise NoMoreItems() + + def _get_retrieve(self): + l = self.limit + if l is None or l > 100: + r = 100 + else: + r = l + self.retrieve = r + return r > 0 + + def create_subscription(self, data) -> Subscription: + from .monetization import Subscription + + return Subscription(state=self.state, data=data) + + async def fill_subscriptions(self): + if self._get_retrieve(): + data = await self._retrieve_subscriptions(self.retrieve) + if self.limit is None or len(data) < 100: + self.limit = 0 + + if self._filter: + data = filter(self._filter, data) + + for element in data: + await self.subscriptions.put(self.create_subscription(element)) + + async def _retrieve_subscriptions(self, retrieve) -> list[SubscriptionPayload]: + raise NotImplementedError + + async def _retrieve_subscriptions_before_strategy(self, retrieve): + before = self.before.id if self.before else None + data: list[SubscriptionPayload] = await self.get_subscriptions( + self.sku_id, + limit=retrieve, + before=before, + user_id=self.user_id, + ) + if len(data): + if self.limit is not None: + self.limit -= retrieve + self.before = Object(id=int(data[-1]["id"])) + return data + + async def _retrieve_subscriptions_after_strategy(self, retrieve): + after = self.after.id if self.after else None + data: list[SubscriptionPayload] = await self.get_subscriptions( + self.sku_id, + limit=retrieve, + after=after, + user_id=self.user_id, + ) + if len(data): + if self.limit is not None: + self.limit -= retrieve + self.after = Object(id=int(data[0]["id"])) + return data + + +class MessagePinIterator(_AsyncIterator["MessagePin"]): + def __init__( + self, + channel: MessageableChannel, + limit: int | None, + before: Snowflake | datetime.datetime | None = None, + ): + self._channel = channel + self.limit = limit + self.http = channel._state.http + + self.before: str | None + if before is None: + self.before = None + elif isinstance(before, datetime.datetime): + self.before = before.isoformat() + else: + self.before = snowflake_time(before.id).isoformat() + + self.update_before: Callable[[MessagePinPayload], str] = self.get_last_pinned + + self.endpoint = self.http.pins_from + + self.queue: asyncio.Queue[MessagePin] = asyncio.Queue() + self.has_more: bool = True + + async def next(self) -> MessagePin: + if self.queue.empty(): + await self.fill_queue() + + try: + return self.queue.get_nowait() + except asyncio.QueueEmpty: + raise NoMoreItems() + + @staticmethod + def get_last_pinned(data: MessagePinPayload) -> str: + return data["pinned_at"] + + async def fill_queue(self) -> None: + if not self.has_more: + raise NoMoreItems() + + if not hasattr(self, "channel"): + channel = await self._channel._get_channel() + self.channel = channel + + limit = 50 if self.limit is None else min(self.limit, 50) + data = await self.endpoint(self.channel.id, before=self.before, limit=limit) + + pins: list[MessagePinPayload] = data.get("items", []) + for d in pins: + self.queue.put_nowait(self.create_pin(d)) + + self.has_more = data.get("has_more", False) + if self.limit is not None: + self.limit -= len(pins) + if self.limit <= 0: + self.has_more = False + + if self.has_more: + self.before = self.update_before(pins[-1]) + + def create_pin(self, data: MessagePinPayload) -> MessagePin: + from .message import MessagePin + + return MessagePin(state=self.channel._state, channel=self.channel, data=data) + + async def retrieve_inner(self) -> list[Message]: + pins = await self.flatten() + return [p.message for p in pins] + + def __await__(self) -> Generator[Any, Any, MessagePin]: + warn_deprecated( + f"Messageable.pins() returning a list of Message", + since="2.7", + removed="3.0", + reference="The documentation of pins()", + ) + return self.retrieve_inner().__await__() diff --git a/discord/member.py b/discord/member.py index 0ff90cce04..8d8e5bd818 100644 --- a/discord/member.py +++ b/discord/member.py @@ -39,6 +39,7 @@ from .asset import Asset from .colour import Colour from .enums import Status, try_enum +from .errors import InvalidArgument from .flags import MemberFlags from .object import Object from .permissions import Permissions @@ -769,6 +770,9 @@ async def edit( reason: str | None = None, communication_disabled_until: datetime.datetime | None = MISSING, bypass_verification: bool | None = MISSING, + banner: bytes | None = MISSING, + avatar: bytes | None = MISSING, + bio: str | None = MISSING, ) -> Member | None: """|coro| @@ -804,6 +808,14 @@ async def edit( - Client has ALL THREE of :attr:`Permissions.moderate_members`, :attr:`Permissions.kick_members`, and :attr:`Permissions.ban_members` + .. note:: + + The following parameters are only available when editing the bot's own member: + + - ``avatar`` + - ``banner`` + - ``bio`` + All parameters are optional. .. versionchanged:: 1.1 @@ -841,6 +853,26 @@ async def edit( Indicates if the member should bypass the guild's verification requirements. .. versionadded:: 2.6 + banner: Optional[:class:`bytes`] + A :term:`py:bytes-like object` representing the banner. + Could be ``None`` to denote removal of the banner. + + This is only available when editing the bot's own member (i.e. :attr:`Guild.me`). + + .. versionadded:: 2.7 + avatar: Optional[:class:`bytes`] + A :term:`py:bytes-like object` representing the avatar. + Could be ``None`` to denote removal of the avatar. + + This is only available when editing the bot's own member (i.e. :attr:`Guild.me`). + + .. versionadded:: 2.7 + bio: Optional[:class:`str`] + The new bio for the member. Could be ``None`` to denote removal of the bio. + + This is only available when editing the bot's own member (i.e. :attr:`Guild.me`). + + .. versionadded:: 2.7 Returns ------- @@ -854,16 +886,19 @@ async def edit( You do not have the proper permissions to the action requested. HTTPException The operation failed. + InvalidArgument + You tried to edit the avatar, banner, or bio of a member that is not the bot. """ http = self._state.http guild_id = self.guild.id me = self._state.self_id == self.id payload: dict[str, Any] = {} + bot_payload: dict[str, Any] = {} if nick is not MISSING: nick = nick or "" if me: - await http.change_my_nickname(guild_id, nick, reason=reason) + bot_payload["nick"] = nick else: payload["nick"] = nick @@ -910,9 +945,34 @@ async def edit( flags.bypasses_verification = bypass_verification payload["flags"] = flags.value + if avatar is not MISSING: + if avatar is None: + bot_payload["avatar"] = None + else: + bot_payload["avatar"] = utils._bytes_to_base64_data(avatar) + + if banner is not MISSING: + if banner is None: + bot_payload["banner"] = None + else: + bot_payload["banner"] = utils._bytes_to_base64_data(banner) + + if bio is not MISSING: + bot_payload["bio"] = bio or "" + + if bot_payload and not me: + raise InvalidArgument( + "Can only edit avatar, banner, or bio for the bot's member." + ) + if payload: data = await http.edit_member(guild_id, self.id, reason=reason, **payload) - return Member(data=data, guild=self.guild, state=self._state) + elif bot_payload: + data = await http.edit_member(guild_id, "@me", reason=reason, **bot_payload) + else: + return None + + return Member(data=data, guild=self.guild, state=self._state) async def timeout( self, until: datetime.datetime | None, *, reason: str | None = None diff --git a/discord/message.py b/discord/message.py index 5ebd2aa0ea..e476ae8fcf 100644 --- a/discord/message.py +++ b/discord/message.py @@ -46,7 +46,7 @@ from .components import _component_factory from .embeds import Embed from .emoji import AppEmoji, GuildEmoji -from .enums import ChannelType, MessageType, try_enum +from .enums import ChannelType, MessageReferenceType, MessageType, try_enum from .errors import InvalidArgument from .file import File from .flags import AttachmentFlags, MessageFlags @@ -59,7 +59,7 @@ from .reaction import Reaction from .sticker import StickerItem from .threads import Thread -from .utils import MISSING, escape_mentions +from .utils import MISSING, escape_mentions, find if TYPE_CHECKING: from .abc import ( @@ -79,11 +79,14 @@ from .types.member import Member as MemberPayload from .types.member import UserWithMember as UserWithMemberPayload from .types.message import Attachment as AttachmentPayload + from .types.message import ForwardedMessage as ForwardedMessagePayload from .types.message import Message as MessagePayload from .types.message import MessageActivity as MessageActivityPayload from .types.message import MessageApplication as MessageApplicationPayload from .types.message import MessageCall as MessageCallPayload + from .types.message import MessagePin as MessagePinPayload from .types.message import MessageReference as MessageReferencePayload + from .types.message import MessageSnapshot as MessageSnapshotPayload from .types.message import Reaction as ReactionPayload from .types.poll import Poll as PollPayload from .types.snowflake import SnowflakeList @@ -102,6 +105,7 @@ "MessageReference", "MessageCall", "DeletedReferencedMessage", + "ForwardedMessage", ) @@ -143,7 +147,9 @@ class Attachment(Hashable): .. describe:: hash(x) - Returns the hash of the attachment. + Returns the attachment's unique identifier. + + This is equivalent to :attr:`id`. .. versionchanged:: 1.7 Attachment can now be cast to :class:`str` and is hashable. @@ -478,6 +484,11 @@ class MessageReference: Attributes ---------- + type: Optional[:class:`~discord.MessageReferenceType`] + The type of message reference. If this is not provided, assume the default behavior (i.e., reply). + + .. versionadded:: 2.7 + message_id: Optional[:class:`int`] The id of the message referenced. channel_id: :class:`int` @@ -508,6 +519,7 @@ class MessageReference: "guild_id", "fail_if_not_exists", "resolved", + "type", "_state", ) @@ -518,9 +530,11 @@ def __init__( channel_id: int, guild_id: int | None = None, fail_if_not_exists: bool = True, + type: MessageReferenceType = MessageReferenceType.default, ): self._state: ConnectionState | None = None self.resolved: Message | DeletedReferencedMessage | None = None + self.type: MessageReferenceType = type self.message_id: int | None = message_id self.channel_id: int = channel_id self.guild_id: int | None = guild_id @@ -531,8 +545,12 @@ def with_state( cls: type[MR], state: ConnectionState, data: MessageReferencePayload ) -> MR: self = cls.__new__(cls) + self.type = ( + try_enum(MessageReferenceType, data.get("type")) + or MessageReferenceType.default + ) self.message_id = utils._get_as_snowflake(data, "message_id") - self.channel_id = int(data.pop("channel_id")) + self.channel_id = utils._get_as_snowflake(data, "channel_id") self.guild_id = utils._get_as_snowflake(data, "guild_id") self.fail_if_not_exists = data.get("fail_if_not_exists", True) self._state = state @@ -541,7 +559,11 @@ def with_state( @classmethod def from_message( - cls: type[MR], message: Message, *, fail_if_not_exists: bool = True + cls: type[MR], + message: Message, + *, + fail_if_not_exists: bool = True, + type: MessageReferenceType = MessageReferenceType.default, ) -> MR: """Creates a :class:`MessageReference` from an existing :class:`~discord.Message`. @@ -557,6 +579,11 @@ def from_message( .. versionadded:: 1.7 + type: Optional[:class:`~discord.MessageReferenceType`] + The type of reference to create. Defaults to :attr:`MessageReferenceType.default` (reply). + + .. versionadded:: 2.7 + Returns ------- :class:`MessageReference` @@ -567,6 +594,7 @@ def from_message( channel_id=message.channel.id, guild_id=getattr(message.guild, "id", None), fail_if_not_exists=fail_if_not_exists, + type=type, ) self._state = message._state return self @@ -588,7 +616,8 @@ def jump_url(self) -> str: def __repr__(self) -> str: return ( f"" + f" channel_id={self.channel_id!r} guild_id={self.guild_id!r}" + f" type={self.type!r}>" ) def to_dict(self) -> MessageReferencePayload: @@ -596,6 +625,7 @@ def to_dict(self) -> MessageReferencePayload: {"message_id": self.message_id} if self.message_id is not None else {} ) result["channel_id"] = self.channel_id + result["type"] = self.type and self.type.value if self.guild_id is not None: result["guild_id"] = self.guild_id if self.fail_if_not_exists is not None: @@ -633,6 +663,122 @@ def ended_at(self) -> datetime.datetime | None: return self._ended_timestamp +class ForwardedMessage: + """Represents the snapshotted contents from a forwarded message. Forwarded messages are immutable; any updates to the original message will not be reflected. + + .. versionadded:: 2.7 + + Attributes + ---------- + type: :class:`MessageType` + The type of the original 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`. + original_message: Optional[Union[:class:`Message`, :class:`PartialMessage`]] + The original message that was forwarded, if available. + channel: Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`] + The :class:`TextChannel` or :class:`Thread` that the original message was sent from. + guild: Optional[Union[:class:`Guild`, :class:`Object`]] + The guild that the original message belonged to, if applicable. + content: :class:`str` + The contents of the original message. + embeds: List[:class:`Embed`] + A list of embeds the original message had. + attachments: List[:class:`Attachment`] + A list of attachments given to the original message. + flags: :class:`MessageFlags` + Extra features of the original message. + mentions: List[Union[:class:`abc.User`, :class:`Object`]] + A list of :class:`Member` that were originally mentioned. + role_mentions: List[Union[:class:`Role`, :class:`Object`]] + A list of :class:`Role` that were originally mentioned. + stickers: List[:class:`StickerItem`] + A list of sticker items given to the original message. + components: List[:class:`Component`] + A list of components in the original message. + """ + + def __init__( + self, + *, + state: ConnectionState, + reference: MessageReference, + data: ForwardedMessagePayload, + ): + self._state: ConnectionState = state + self._reference = reference + self.id: int = reference.message_id + self.channel = state.get_channel(reference.channel_id) or ( + reference.channel_id + and PartialMessageable( + state=state, + id=reference.channel_id, + ) + ) + self.guild = state._get_guild(reference.guild_id) or ( + reference.guild_id and Object(reference.guild_id) + ) + self.original_message = state._get_message(self.id) or ( + self.id and self.channel.get_partial_message(self.id) + ) + self.content: str = data["content"] + self.embeds: list[Embed] = [Embed.from_dict(a) for a in data["embeds"]] + self.attachments: list[Attachment] = [ + Attachment(data=a, state=state) for a in data["attachments"] + ] + self.flags: MessageFlags = MessageFlags._from_value(data.get("flags", 0)) + self.stickers: list[StickerItem] = [ + StickerItem(data=d, state=state) for d in data.get("sticker_items", []) + ] + self.components: list[Component] = [ + _component_factory(d) for d in data.get("components", []) + ] + self._edited_timestamp: datetime.datetime | None = utils.parse_time( + data["edited_timestamp"] + ) + + @property + def created_at(self) -> datetime.datetime: + """The original message's creation time in UTC.""" + return utils.snowflake_time(self.id) + + @property + def edited_at(self) -> datetime.datetime | None: + """An aware UTC datetime object containing the + edited time of the original message. + """ + return self._edited_timestamp + + def __repr__(self) -> str: + return f"" + + +class MessageSnapshot: + """Represents a message snapshot. + + .. versionadded:: 2.7 + + Attributes + ---------- + message: :class:`ForwardedMessage` + The forwarded message, which includes a minimal subset of fields from the original message. + """ + + def __init__( + self, + *, + state: ConnectionState, + reference: MessageReference, + data: MessageSnapshotPayload, + ): + self._state: ConnectionState = state + self.message: ForwardedMessage | None + if fm := data.get("message"): + self.message = ForwardedMessage(state=state, reference=reference, data=fm) + + def __repr__(self) -> str: + return f"" + + def flatten_handlers(cls): prefix = len("_handle_") handlers = [ @@ -648,6 +794,38 @@ def flatten_handlers(cls): return cls +class MessagePin: + """Represents information about a pinned message. + + .. versionadded:: 2.7 + """ + + def __init__( + self, + state: ConnectionState, + channel: MessageableChannel, + data: MessagePinPayload, + ): + self._state: ConnectionState = state + self._pinned_at: datetime.datetime = utils.parse_time(data["pinned_at"]) + self._message: Message = state.create_message( + channel=channel, data=data["message"] + ) + + @property + def message(self) -> Message: + """The pinned message.""" + return self._message + + @property + def pinned_at(self) -> datetime.datetime: + """An aware timestamp of when the message was pinned.""" + return self._pinned_at + + def __repr__(self) -> str: + return f"" + + @flatten_handlers class Message(Hashable): r"""Represents a message from Discord. @@ -785,10 +963,15 @@ class Message(Hashable): The call information associated with this message, if applicable. .. versionadded:: 2.6 + snapshots: Optional[List[:class:`MessageSnapshots`]] + The snapshots attached to this message, if applicable. + + .. versionadded:: 2.7 """ __slots__ = ( "_state", + "_raw_data", "_edited_timestamp", "_cs_channel_mentions", "_cs_raw_mentions", @@ -823,6 +1006,7 @@ class Message(Hashable): "thread", "_poll", "call", + "snapshots", ) if TYPE_CHECKING: @@ -842,6 +1026,7 @@ def __init__( data: MessagePayload, ): self._state: ConnectionState = state + self._raw_data: MessagePayload = data self.id: int = int(data["id"]) self.webhook_id: int | None = utils._get_as_snowflake(data, "webhook_id") self.reactions: list[Reaction] = [ @@ -868,7 +1053,7 @@ def __init__( StickerItem(data=d, state=state) for d in data.get("sticker_items", []) ] self.components: list[Component] = [ - _component_factory(d) for d in data.get("components", []) + _component_factory(d, state=state) for d in data.get("components", []) ] try: @@ -902,6 +1087,19 @@ def __init__( # the channel will be the correct type here ref.resolved = self.__class__(channel=chan, data=resolved, state=state) # type: ignore + self.snapshots: list[MessageSnapshot] + try: + self.snapshots = [ + MessageSnapshot( + state=state, + reference=self.reference, + data=ms, + ) + for ms in data["message_snapshots"] + ] + except KeyError: + self.snapshots = [] + from .interactions import InteractionMetadata, MessageInteraction self._interaction: MessageInteraction | None @@ -1010,26 +1208,6 @@ def _clear_emoji(self, emoji) -> Reaction | None: del self.reactions[index] return reaction - def _update(self, data): - # In an update scheme, 'author' key has to be handled before 'member' - # otherwise they overwrite each other which is undesirable. - # Since there's no good way to do this we have to iterate over every - # handler rather than iterating over the keys which is a little slower - for key, handler in self._HANDLERS: - try: - value = data[key] - except KeyError: - continue - else: - handler(self, value) - - # clear the cached properties - for attr in self._CACHED_SLOTS: - try: - delattr(self, attr) - except AttributeError: - pass - def _handle_edited_timestamp(self, value: str) -> None: self._edited_timestamp = utils.parse_time(value) @@ -1118,7 +1296,7 @@ def _handle_mention_roles(self, role_mentions: list[int]) -> None: self.role_mentions.append(role) def _handle_components(self, components: list[ComponentPayload]): - self.components = [_component_factory(d) for d in components] + self.components = [_component_factory(d, state=self._state) for d in components] def _rebind_cached_references( self, new_guild: Guild, new_channel: TextChannel | Thread @@ -1270,11 +1448,14 @@ def system_content(self) -> str: regardless of the :attr:`Message.type`. In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\, - this just returns the regular :attr:`Message.content`. Otherwise, this + this just returns the regular :attr:`Message.content`, and forwarded messages + will display the original message's content from :attr:`Message.snapshots`. Otherwise, this returns an English message denoting the contents of the system message. """ if self.type is MessageType.default: + if self.snapshots: + return self.snapshots[0].message and self.snapshots[0].message.content return self.content if self.type is MessageType.recipient_add: @@ -1574,10 +1755,10 @@ async def edit( elif embeds is not MISSING: payload["embeds"] = [e.to_dict() for e in embeds] + flags = MessageFlags._from_value(self.flags.value) + if suppress is not MISSING: - flags = MessageFlags._from_value(self.flags.value) flags.suppress_embeds = suppress - payload["flags"] = flags.value if allowed_mentions is MISSING: if ( @@ -1599,9 +1780,14 @@ async def edit( if view is not MISSING: self._state.prevent_view_updates_for(self.id) payload["components"] = view.to_components() if view else [] + if view and view.is_components_v2(): + flags.is_components_v2 = True if file is not MISSING and files is not MISSING: raise InvalidArgument("cannot pass both file and files parameter to edit()") + if flags.value != self.flags.value: + payload["flags"] = flags.value + if file is not MISSING or files is not MISSING: if file is not MISSING: if not isinstance(file, File): @@ -1636,7 +1822,9 @@ async def edit( if view and not view.is_finished(): view.message = message - self._state.store_view(view, self.id) + view.refresh(message.components) + if view.is_dispatchable(): + self._state.store_view(view, self.id) if delete_after is not None: await self.delete(delay=delete_after) @@ -1668,7 +1856,7 @@ async def pin(self, *, reason: str | None = None) -> None: Pins the message. - You must have the :attr:`~Permissions.manage_messages` permission to do + You must have the :attr:`~Permissions.pin_messages` permission to do this in a non-private channel context. Parameters @@ -1697,7 +1885,7 @@ async def unpin(self, *, reason: str | None = None) -> None: Unpins the message. - You must have the :attr:`~Permissions.manage_messages` permission to do + You must have the :attr:`~Permissions.pin_messages` permission to do this in a non-private channel context. Parameters @@ -1927,7 +2115,42 @@ async def reply(self, content: str | None = None, **kwargs) -> Message: you specified both ``file`` and ``files``. """ - return await self.channel.send(content, reference=self, **kwargs) + return await self.channel.send(content, reference=self.to_reference(), **kwargs) + + async def forward_to( + self, channel: MessageableChannel | PartialMessageableChannel, **kwargs + ) -> Message: + """|coro| + + A shortcut method to :meth:`.abc.Messageable.send` to forward the + :class:`.Message` to a channel. + + .. versionadded:: 2.7 + + Parameters + ---------- + channel: Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`GroupChannel`, :class:`PartialMessageable`] + The channel to forward this to. + + Returns + ------- + :class:`.Message` + The message that was sent. + + Raises + ------ + ~discord.HTTPException + Sending the message failed. + ~discord.Forbidden + You do not have the proper permissions to send the message. + ~discord.InvalidArgument + The ``files`` list is not of the appropriate size, or + you specified both ``file`` and ``files``. + """ + + return await channel.send( + reference=self.to_reference(type=MessageReferenceType.forward), **kwargs + ) async def end_poll(self) -> Message: """|coro| @@ -1957,7 +2180,9 @@ async def end_poll(self) -> Message: return message - def to_reference(self, *, fail_if_not_exists: bool = True) -> MessageReference: + def to_reference( + self, *, fail_if_not_exists: bool = True, type: MessageReferenceType = None + ) -> MessageReference: """Creates a :class:`~discord.MessageReference` from the current message. .. versionadded:: 1.6 @@ -1970,6 +2195,11 @@ def to_reference(self, *, fail_if_not_exists: bool = True) -> MessageReference: .. versionadded:: 1.7 + type: Optional[:class:`~discord.MessageReferenceType`] + The type of message reference. Defaults to a reply. + + .. versionadded:: 2.7 + Returns ------- :class:`~discord.MessageReference` @@ -1977,13 +2207,16 @@ def to_reference(self, *, fail_if_not_exists: bool = True) -> MessageReference: """ return MessageReference.from_message( - self, fail_if_not_exists=fail_if_not_exists + self, fail_if_not_exists=fail_if_not_exists, type=type ) - def to_message_reference_dict(self) -> MessageReferencePayload: + def to_message_reference_dict( + self, type: MessageReferenceType = None + ) -> MessageReferencePayload: data: MessageReferencePayload = { "message_id": self.id, "channel_id": self.channel.id, + "type": type and type.value, } if self.guild is not None: @@ -1991,6 +2224,32 @@ def to_message_reference_dict(self) -> MessageReferencePayload: return data + def get_component(self, id: str | int) -> Component | None: + """Gets a component from this message. Roughly equal to `utils.get(message.components, ...)`. + If an :class:`int` is provided, the component will be retrieved by ``id``, otherwise by ``custom_id``. + This method will also search nested components. + + Parameters + ---------- + id: Union[:class:`str`, :class:`int`] + The id or custom_id the item to get + + Returns + ------- + Optional[:class:`Component`] + The component with the matching ``custom_id`` or ``id`` if it exists. + """ + if not id: + return None + attr = "id" if isinstance(id, int) else "custom_id" + for i in self.components: + if getattr(i, attr, None) == id: + return i + elif hasattr(i, "get_component"): + if component := i.get_component(id): + return component + return None + class PartialMessage(Hashable): """Represents a partial message to aid with working messages when only @@ -2044,6 +2303,7 @@ class PartialMessage(Hashable): clear_reaction = Message.clear_reaction clear_reactions = Message.clear_reactions reply = Message.reply + forward_to = Message.forward_to to_reference = Message.to_reference to_message_reference_dict = Message.to_message_reference_dict @@ -2231,7 +2491,9 @@ async def edit(self, **fields: Any) -> Message | None: msg = self._state.create_message(channel=self.channel, data=data) # type: ignore if view and not view.is_finished(): view.message = msg - self._state.store_view(view, self.id) + view.refresh(msg.components) + if view.is_dispatchable(): + self._state.store_view(view, self.id) return msg async def end_poll(self) -> Message: diff --git a/discord/monetization.py b/discord/monetization.py index f18ce0593b..9a4dc9f05c 100644 --- a/discord/monetization.py +++ b/discord/monetization.py @@ -27,22 +27,26 @@ from typing import TYPE_CHECKING -from .enums import EntitlementType, SKUType, try_enum +from .enums import EntitlementType, SKUType, SubscriptionStatus, try_enum from .flags import SKUFlags +from .iterators import SubscriptionIterator from .mixins import Hashable from .utils import MISSING, _get_as_snowflake, parse_time if TYPE_CHECKING: from datetime import datetime + from .abc import Snowflake, SnowflakeTime from .state import ConnectionState from .types.monetization import SKU as SKUPayload from .types.monetization import Entitlement as EntitlementPayload + from .types.monetization import Subscription as SubscriptionPayload __all__ = ( "SKU", "Entitlement", + "Subscription", ) @@ -68,6 +72,7 @@ class SKU(Hashable): """ __slots__ = ( + "_state", "id", "type", "application_id", @@ -76,7 +81,8 @@ class SKU(Hashable): "flags", ) - def __init__(self, *, data: SKUPayload) -> None: + def __init__(self, *, state: ConnectionState, data: SKUPayload) -> None: + self._state: ConnectionState = state self.id: int = int(data["id"]) self.type: SKUType = try_enum(SKUType, data["type"]) self.application_id: int = int(data["application_id"]) @@ -101,12 +107,80 @@ def url(self) -> str: """:class:`str`: Returns the URL for the SKU.""" return f"https://discord.com/application-directory/{self.application_id}/store/{self.id}" + def fetch_subscriptions( + self, + user: Snowflake, # user is required because this is a bot, we are not using oauth2 + *, + before: SnowflakeTime | None = None, + after: SnowflakeTime | None = None, + limit: int | None = 100, + ) -> SubscriptionIterator: + """Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions. + + .. versionadded:: 2.7 + + Parameters + ---------- + user: :class:`.abc.Snowflake` + The user for which to retrieve subscriptions. + before: :class:`.abc.Snowflake` | :class:`datetime.datetime` | None + Retrieves subscriptions before this date or object. + If a datetime is provided, it is recommended to use a UTC-aware datetime. + If the datetime is naive, it is assumed to be local time. + after: :class:`.abc.Snowflake` | :class:`datetime.datetime` | None + Retrieve subscriptions after this date or object. + If a datetime is provided, it is recommended to use a UTC-aware datetime. + If the datetime is naive, it is assumed to be local time. + limit: :class:`int` | None + The number of subscriptions to retrieve. If ``None``, retrieves all subscriptions. + + Yields + ------ + :class:`Subscription` + A subscription that the user has for this SKU. + + Raises + ------ + :exc:`HTTPException` + Getting the subscriptions failed. + + Examples + -------- + + Usage :: + + async for subscription in sku.fetch_subscriptions(discord.Object(id=123456789)): + print(subscription.status) + + Flattening into a list :: + + subscriptions = await sku.fetch_subscriptions(discord.Object(id=123456789)).flatten() + # subscriptions is now a list of Subscription... + + All parameters except for ``user`` are optional. + """ + return SubscriptionIterator( + self._state, + self.id, + user_id=user.id, + before=before, + after=after, + limit=limit, + ) + class Entitlement(Hashable): """Represents a Discord entitlement. .. versionadded:: 2.5 + .. note:: + + As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` + unless the parent :class:`Subscription` has been cancelled. + + `See the Discord changelog. `_ + Attributes ---------- id: :class:`int` @@ -130,7 +204,7 @@ class Entitlement(Hashable): consumed: :class:`bool` Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not - of type :attr:`EntitlementType.consumable`. + from an SKU of type :attr:`SKUType.consumable`. """ __slots__ = ( @@ -158,7 +232,9 @@ def __init__(self, *, data: EntitlementPayload, state: ConnectionState) -> None: self.starts_at: datetime | MISSING = ( parse_time(data.get("starts_at")) or MISSING ) - self.ends_at: datetime | MISSING = parse_time(data.get("ends_at")) or MISSING + self.ends_at: datetime | MISSING | None = ( + parse_time(ea) if (ea := data.get("ends_at")) is not None else MISSING + ) self.guild_id: int | MISSING = _get_as_snowflake(data, "guild_id") or MISSING self.consumed: bool = data.get("consumed", False) @@ -177,18 +253,13 @@ async def consume(self) -> None: Consumes this entitlement. - This can only be done on entitlements of type :attr:`EntitlementType.consumable`. + This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`. Raises ------ - TypeError - The entitlement is not consumable. HTTPException Consuming the entitlement failed. """ - if self.type is not EntitlementType.consumable: - raise TypeError("Cannot consume non-consumable entitlement") - await self._state.http.consume_entitlement(self._state.application_id, self.id) self.consumed = True @@ -205,3 +276,75 @@ async def delete(self) -> None: Deleting the entitlement failed. """ await self._state.http.delete_test_entitlement(self.application_id, self.id) + + +class Subscription(Hashable): + """Represents a user making recurring payments for one or more SKUs. + + Successful payments grant the user access to entitlements associated with the SKU. + + .. versionadded:: 2.7 + + Attributes + ---------- + id: :class:`int` + The subscription's ID. + user_id: :class:`int` + The ID of the user that owns this subscription. + sku_ids: List[:class:`int`] + The IDs of the SKUs this subscription is for. + entitlement_ids: List[:class:`int`] + The IDs of the entitlements this subscription is for. + renewal_sku_ids: List[:class:`int`] + The IDs of the SKUs that the buyer will be subscribed to at renewal. + current_period_start: :class:`datetime.datetime` + The start of the current subscription period. + current_period_end: :class:`datetime.datetime` + The end of the current subscription period. + status: :class:`SubscriptionStatus` + The status of the subscription. + canceled_at: :class:`datetime.datetime` | ``None`` + When the subscription was canceled. + """ + + __slots__ = ( + "_state", + "id", + "user_id", + "sku_ids", + "entitlement_ids", + "renewal_sku_ids", + "current_period_start", + "current_period_end", + "status", + "canceled_at", + "country", + ) + + def __init__(self, *, state: ConnectionState, data: SubscriptionPayload) -> None: + self._state: ConnectionState = state + self.id: int = int(data["id"]) + self.user_id: int = int(data["user_id"]) + self.sku_ids: list[int] = list(map(int, data["sku_ids"])) + self.entitlement_ids: list[int] = list(map(int, data["entitlement_ids"])) + self.renewal_sku_ids: list[int] = list(map(int, data["renewal_sku_ids"] or [])) + self.current_period_start: datetime = parse_time(data["current_period_start"]) + self.current_period_end: datetime = parse_time(data["current_period_end"]) + self.status: SubscriptionStatus = try_enum(SubscriptionStatus, data["status"]) + self.canceled_at: datetime | None = parse_time(data.get("canceled_at")) + self.country: str | None = data.get( + "country" + ) # Not documented, it is only available with oauth2, not bots + + def __repr__(self) -> str: + return ( + f"" + ) + + def __eq__(self, other: object) -> bool: + return isinstance(other, self.__class__) and other.id == self.id + + @property + def user(self): + """Optional[:class:`User`]: The user that owns this subscription.""" + return self._state.get_user(self.user_id) diff --git a/discord/object.py b/discord/object.py index d8bd72268f..fd684069d8 100644 --- a/discord/object.py +++ b/discord/object.py @@ -33,6 +33,8 @@ if TYPE_CHECKING: import datetime + from .abc import Snowflake + SupportsIntCast = Union[SupportsInt, str, bytes, bytearray] __all__ = ("Object",) @@ -70,9 +72,11 @@ class Object(Hashable): ---------- id: :class:`int` The ID of the object. + type: type[:class:`abc.Snowflake`] + The model this object's ID is based off. """ - def __init__(self, id: SupportsIntCast): + def __init__(self, id: SupportsIntCast, type: type[Snowflake] = utils.MISSING): try: id = int(id) except ValueError: @@ -81,6 +85,7 @@ def __init__(self, id: SupportsIntCast): ) from None else: self.id = id + self.type: type[Snowflake] = type or self.__class__ def __repr__(self) -> str: return f"" diff --git a/discord/onboarding.py b/discord/onboarding.py index cf6a721a00..4e4fa7e993 100644 --- a/discord/onboarding.py +++ b/discord/onboarding.py @@ -24,11 +24,12 @@ from __future__ import annotations +from functools import cached_property from typing import TYPE_CHECKING, Any from .enums import OnboardingMode, PromptType, try_enum from .partial_emoji import PartialEmoji -from .utils import MISSING, cached_property, generate_snowflake, get +from .utils import MISSING, generate_snowflake, get if TYPE_CHECKING: from .abc import Snowflake diff --git a/discord/opus.py b/discord/opus.py index 63362b929a..6ea6f84308 100644 --- a/discord/opus.py +++ b/discord/opus.py @@ -323,7 +323,7 @@ def is_loaded() -> bool: :class:`bool` Indicates if the opus library has been loaded. """ - global _lib + global _lib # noqa: F824 return _lib is not None diff --git a/discord/partial_emoji.py b/discord/partial_emoji.py index 89009cc741..27d780d40d 100644 --- a/discord/partial_emoji.py +++ b/discord/partial_emoji.py @@ -127,7 +127,7 @@ def from_str(cls: type[PE], value: str) -> PE: - ``name:id`` - ``<:name:id>`` - If the format does not match then it is assumed to be a unicode emoji. + If the format does not match then it is assumed to be a Unicode emoji block, either as Unicode characters or as a Discord alias (``:smile:``). .. versionadded:: 2.0 @@ -141,6 +141,11 @@ def from_str(cls: type[PE], value: str) -> PE: :class:`PartialEmoji` The partial emoji from this string. """ + if unicode_emoji := utils.EMOJIS_MAP.get( + value.removeprefix(":").removesuffix(":") + ): + return cls(name=unicode_emoji, id=None, animated=False) + match = cls._CUSTOM_EMOJI_RE.match(value) if match is not None: groups = match.groupdict() diff --git a/discord/permissions.py b/discord/permissions.py index 110909384a..a097cde116 100644 --- a/discord/permissions.py +++ b/discord/permissions.py @@ -180,7 +180,7 @@ def all(cls: type[P]) -> P: """A factory method that creates a :class:`Permissions` with all permissions set to ``True``. """ - return cls(0b1111111111111111111111111111111111111111111111111) + return cls(~(~1 << 51)) @classmethod def all_channel(cls: type[P]) -> P: @@ -394,11 +394,11 @@ def send_tts_messages(self) -> int: @flag_value def manage_messages(self) -> int: - """:class:`bool`: Returns ``True`` if a user can delete or pin messages in a text channel. + """:class:`bool`: Returns ``True`` if a user can delete messages in a text channel. - .. note:: + .. warning:: - Note that there are currently no ways to edit other people's messages. + Starting from January 12th 2026, this will no longer grant the ability to pin/unpin messages. Use :attr:`pin_messages` instead. """ return 1 << 13 @@ -672,6 +672,14 @@ def use_external_apps(self) -> int: """ return 1 << 50 + @flag_value + def pin_messages(self) -> int: + """:class:`bool`: Returns ``True`` if a member can pin/unpin messages. + + .. versionadded:: 2.7 + """ + return 1 << 51 + PO = TypeVar("PO", bound="PermissionOverwrite") @@ -795,6 +803,7 @@ class PermissionOverwrite: set_voice_channel_status: bool | None send_polls: bool | None use_external_apps: bool | None + pin_messages: bool | None def __init__(self, **kwargs: bool | None): self._values: dict[str, bool | None] = {} @@ -860,7 +869,7 @@ def is_empty(self) -> bool: """ return len(self._values) == 0 - def update(self, **kwargs: bool) -> None: + def update(self, **kwargs: bool | None) -> None: r"""Bulk updates this permission overwrite object. Allows you to set multiple attributes by using keyword diff --git a/discord/poll.py b/discord/poll.py index 087d2833f6..fcc94cc4b4 100644 --- a/discord/poll.py +++ b/discord/poll.py @@ -25,6 +25,7 @@ from __future__ import annotations import datetime +from functools import cached_property from typing import TYPE_CHECKING, Any from . import utils @@ -358,7 +359,7 @@ def __init__( self._expiry = None self._message = None - @utils.cached_property + @cached_property def expiry(self) -> datetime.datetime | None: """An aware datetime object that specifies the date and time in UTC when the poll will end.""" return utils.parse_time(self._expiry) diff --git a/discord/primary_guild.py b/discord/primary_guild.py new file mode 100644 index 0000000000..27edba7e97 --- /dev/null +++ b/discord/primary_guild.py @@ -0,0 +1,75 @@ +""" +The MIT License (MIT) + +Copyright (c) 2021-present Pycord Development + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. +""" + +from functools import cached_property +from typing import TYPE_CHECKING + +if TYPE_CHECKING: + from .state import ConnectionState + +from .asset import Asset +from .types.primary_guild import PrimaryGuild as PrimaryGuildPayload + +__all__ = ("PrimaryGuild",) + + +class PrimaryGuild: + """ + Represents a Discord Primary Guild. + + .. versionadded:: 2.7 + + Attributes + ---------- + identity_guild_id: int + The ID of the guild. + identity_enabled: :class:`bool` + Whether the primary guild is enabled. + tag: str + The tag of the primary guild. + """ + + def __init__(self, data: PrimaryGuildPayload, state: "ConnectionState") -> None: + self.identity_guild_id: int | None = ( + int(data.get("identity_guild_id") or 0) or None + ) + self.identity_enabled: bool | None = data.get("identity_enabled", None) + self.tag: str | None = data.get("tag", None) + self._badge: str | None = data.get("badge", None) + self._state: "ConnectionState" = state + + def __repr__(self) -> str: + return f"" + + @cached_property + def badge(self) -> Asset | None: + """Returns the badge asset, if available. + + .. versionadded:: 2.7 + """ + if self._badge is None: + return None + return Asset._from_user_primary_guild_tag( + self._state, self.identity_guild_id, self._badge + ) diff --git a/discord/raw_models.py b/discord/raw_models.py index a2881839a6..86635b90e8 100644 --- a/discord/raw_models.py +++ b/discord/raw_models.py @@ -29,7 +29,13 @@ from typing import TYPE_CHECKING from .automod import AutoModAction, AutoModTriggerType -from .enums import AuditLogAction, ChannelType, ReactionType, try_enum +from .enums import ( + AuditLogAction, + ChannelType, + ReactionType, + VoiceChannelEffectAnimationType, + try_enum, +) if TYPE_CHECKING: from .abc import MessageableChannel @@ -37,9 +43,13 @@ from .member import Member from .message import Message from .partial_emoji import PartialEmoji + from .soundboard import PartialSoundboardSound, SoundboardSound from .state import ConnectionState from .threads import Thread - from .types.raw_models import AuditLogEntryEvent + from .types.channel import VoiceChannelEffectSendEvent as VoiceChannelEffectSend + from .types.raw_models import ( + AuditLogEntryEvent, + ) from .types.raw_models import AutoModActionExecutionEvent as AutoModActionExecution from .types.raw_models import ( BulkMessageDeleteEvent, @@ -79,6 +89,7 @@ "RawAuditLogEntryEvent", "RawVoiceChannelStatusUpdateEvent", "RawMessagePollVoteEvent", + "RawSoundboardSoundDeleteEvent", ) @@ -174,15 +185,21 @@ class RawMessageUpdateEvent(_RawReprMixin): cached_message: Optional[:class:`Message`] The cached message, if found in the internal message cache. Represents the message before it is modified by the data in :attr:`RawMessageUpdateEvent.data`. + new_message: :class:`Message` + The new message object. Represents the message after it is modified by the data in + :attr:`RawMessageUpdateEvent.data`. + + .. versionadded:: 2.7 """ __slots__ = ("message_id", "channel_id", "guild_id", "data", "cached_message") - def __init__(self, data: MessageUpdateEvent) -> None: + def __init__(self, data: MessageUpdateEvent, new_message: Message) -> None: self.message_id: int = int(data["id"]) self.channel_id: int = int(data["channel_id"]) self.data: MessageUpdateEvent = data self.cached_message: Message | None = None + self.new_message: Message = new_message try: self.guild_id: int | None = int(data["guild_id"]) @@ -839,3 +856,17 @@ def __init__(self, data: MessagePollVoteEvent, added: bool) -> None: self.guild_id: int | None = int(data["guild_id"]) except KeyError: self.guild_id: int | None = None + + +class RawSoundboardSoundDeleteEvent(_RawReprMixin): + """Represents the payload for an :func:`on_raw_soundboard_sound_delete`. + + .. versionadded 2.7 + """ + + __slots__ = ("sound_id", "guild_id", "data") + + def __init__(self, data: PartialSoundboardSound) -> None: + self.sound_id: int = int(data["sound_id"]) + self.guild_id: int = int(data["guild_id"]) + self.data: PartialSoundboardSound = data diff --git a/discord/role.py b/discord/role.py index 1907606e9d..309f57ba1c 100644 --- a/discord/role.py +++ b/discord/role.py @@ -27,19 +27,25 @@ from typing import TYPE_CHECKING, Any, TypeVar +from typing_extensions import Self + from .asset import Asset from .colour import Colour from .errors import InvalidArgument from .flags import RoleFlags from .mixins import Hashable from .permissions import Permissions -from .utils import MISSING, _bytes_to_base64_data, _get_as_snowflake, snowflake_time - -__all__ = ( - "RoleTags", - "Role", +from .utils import ( + MISSING, + _bytes_to_base64_data, + _get_as_snowflake, + deprecated, + snowflake_time, + warn_deprecated, ) +__all__ = ("RoleTags", "Role", "RoleColours") + if TYPE_CHECKING: import datetime @@ -48,6 +54,7 @@ from .state import ConnectionState from .types.guild import RolePositionUpdate from .types.role import Role as RolePayload + from .types.role import RoleColours as RoleColoursPayload from .types.role import RoleTags as RoleTagPayload @@ -60,6 +67,10 @@ class RoleTags: While this can be accessed, a useful interface is also provided in the :class:`Role` and :class:`Guild` classes as well. + Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. + We aim to improve the documentation / introduce new attributes in future. + For the meantime read `this `_ if you need detailed information about how role tags work. + .. versionadded:: 1.6 Attributes @@ -68,22 +79,37 @@ class RoleTags: The bot's user ID that manages this role. integration_id: Optional[:class:`int`] The integration ID that manages the role. + subscription_listing_id: Optional[:class:`int`] + The subscription SKU and listing ID of the role. + + .. versionadded:: 2.7 """ __slots__ = ( "bot_id", "integration_id", + "subscription_listing_id", "_premium_subscriber", + "_available_for_purchase", + "_guild_connections", ) def __init__(self, data: RoleTagPayload): self.bot_id: int | None = _get_as_snowflake(data, "bot_id") self.integration_id: int | None = _get_as_snowflake(data, "integration_id") - # NOTE: The API returns "null" for this if it's valid, which corresponds to None. + self.subscription_listing_id: int | None = _get_as_snowflake( + data, "subscription_listing_id" + ) + # NOTE: The API returns "null" for each of the following tags if they are True, and omits them if False. + # However, "null" corresponds to None. # This is different from other fields where "null" means "not there". # So in this case, a value of None is the same as True. # Which means we would need a different sentinel. self._premium_subscriber: Any | None = data.get("premium_subscriber", MISSING) + self._available_for_purchase: Any | None = data.get( + "available_for_purchase", MISSING + ) + self._guild_connections: Any | None = data.get("guild_connections", MISSING) def is_bot_managed(self) -> bool: """Whether the role is associated with a bot.""" @@ -94,19 +120,132 @@ def is_premium_subscriber(self) -> bool: return self._premium_subscriber is None def is_integration(self) -> bool: - """Whether the role is managed by an integration.""" + """Whether the guild manages the role through some form of + integrations such as Twitch or through guild subscriptions. + """ return self.integration_id is not None + def is_available_for_purchase(self) -> bool: + """Whether the role is available for purchase. + + Returns ``True`` if the role is available for purchase, and + ``False`` if it is not available for purchase or if the role + is not linked to a guild subscription. + + .. versionadded:: 2.7 + """ + return self._available_for_purchase is None + + def is_guild_connections_role(self) -> bool: + """Whether the role is a guild connections role. + + .. versionadded:: 2.7 + """ + return self._guild_connections is None + def __repr__(self) -> str: return ( f"" + f"subscription_listing_id={self.subscription_listing_id} " + f"premium_subscriber={self.is_premium_subscriber()} " + f"available_for_purchase={self.is_available_for_purchase()} " + f"guild_connections={self.is_guild_connections_role()}>" ) R = TypeVar("R", bound="Role") +class RoleColours: + """Represents a role's gradient colours. + + .. versionadded:: 2.7 + + Attributes + ---------- + primary: :class:`Colour` + The primary colour of the role. + secondary: Optional[:class:`Colour`] + The secondary colour of the role. + tertiary: Optional[:class:`Colour`] + The tertiary colour of the role. At the moment, only `16761760` is allowed. + """ + + def __init__( + self, + primary: Colour, + secondary: Colour | None = None, + tertiary: Colour | None = None, + ): + """Initialises a :class:`RoleColours` object. + + .. versionadded:: 2.7 + + Parameters + ---------- + primary: :class:`Colour` + The primary colour of the role. + secondary: Optional[:class:`Colour`] + The secondary colour of the role. + tertiary: Optional[:class:`Colour`] + The tertiary colour of the role. + """ + self.primary: Colour = primary + self.secondary: Colour | None = secondary + self.tertiary: Colour | None = tertiary + + @classmethod + def _from_payload(cls, data: RoleColoursPayload) -> Self: + primary = Colour(data["primary_color"]) + secondary = ( + Colour(data["secondary_color"]) if data.get("secondary_color") else None + ) + tertiary = ( + Colour(data["tertiary_color"]) if data.get("tertiary_color") else None + ) + return cls(primary, secondary, tertiary) + + def _to_dict(self) -> RoleColoursPayload: + """Converts the role colours to a dictionary.""" + return { + "primary_color": self.primary.value, + "secondary_color": self.secondary.value if self.secondary else None, + "tertiary_color": self.tertiary.value if self.tertiary else None, + } # type: ignore + + @classmethod + def default(cls) -> RoleColours: + """Returns a default :class:`RoleColours` object with no colours set.""" + return cls(Colour.default(), None, None) + + @classmethod + def holographic(cls) -> RoleColours: + """Returns a :class:`RoleColours` that makes the role look holographic. + + Currently holographic roles are only supported with colours 11127295, 16759788, and 16761760. + """ + return cls(Colour(11127295), Colour(16759788), Colour(16761760)) + + @property + def is_holographic(self) -> bool: + """Whether the role is holographic. + + Currently roles are holographic when colours are set to 11127295, 16759788, and 16761760. + """ + return ( + self.primary.value == 11127295 + and self.secondary.value == 16759788 + and self.tertiary.value == 16761760 + ) + + def __repr__(self) -> str: + return ( + f"" + ) + + class Role(Hashable): """Represents a Discord role in a :class:`Guild`. @@ -167,8 +306,10 @@ class Role(Hashable): operators on the role objects themselves. managed: :class:`bool` - Indicates if the role is managed by the guild through some form of - integrations such as Twitch. + Indicates if the role is managed by the guild. + This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, + :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` + is ``True``. mentionable: :class:`bool` Indicates if the role can be mentioned by users. tags: Optional[:class:`RoleTags`] @@ -183,6 +324,11 @@ class Role(Hashable): Extra attributes of the role. .. versionadded:: 2.6 + + colours: :class:`RoleColours` + The role's colours. + + .. versionadded:: 2.7 """ __slots__ = ( @@ -190,6 +336,7 @@ class Role(Hashable): "name", "_permissions", "_colour", + "colours", "position", "managed", "mentionable", @@ -255,6 +402,7 @@ def _update(self, data: RolePayload): self._permissions: int = int(data.get("permissions", 0)) self.position: int = data.get("position", 0) self._colour: int = data.get("color", 0) + self.colours: RoleColours = RoleColours._from_payload(data["colors"]) self.hoist: bool = data.get("hoist", False) self.managed: bool = data.get("managed", False) self.mentionable: bool = data.get("mentionable", False) @@ -287,7 +435,8 @@ def is_premium_subscriber(self) -> bool: return self.tags is not None and self.tags.is_premium_subscriber() def is_integration(self) -> bool: - """Whether the role is managed by an integration. + """Whether the guild manages the role through some form of + integrations such as Twitch or through guild subscriptions. .. versionadded:: 1.6 """ @@ -305,20 +454,56 @@ def is_assignable(self) -> bool: and (me.top_role > self or me.id == self.guild.owner_id) ) + def is_available_for_purchase(self) -> bool: + """Whether the role is available for purchase. + + Returns ``True`` if the role is available for purchase, and + ``False`` if it is not available for purchase or if the + role is not linked to a guild subscription. + + .. versionadded:: 2.7 + """ + return self.tags is not None and self.tags.is_available_for_purchase() + + def is_guild_connections_role(self) -> bool: + """Whether the role is a guild connections role. + + .. versionadded:: 2.7 + """ + return self.tags is not None and self.tags.is_guild_connections_role() + @property def permissions(self) -> Permissions: """Returns the role's permissions.""" return Permissions(self._permissions) @property + @deprecated("colours.primary", "2.7") def colour(self) -> Colour: - """Returns the role colour. An alias exists under ``color``.""" - return Colour(self._colour) + """Returns the role colour. Equivalent to :attr:`colours.primary`. + An alias exists under ``color``. + + .. versionchanged:: 2.7 + """ + return self.colours.primary @property + @deprecated("colors.primary", "2.7") def color(self) -> Colour: - """Returns the role color. An alias exists under ``colour``.""" - return self.colour + """Returns the role's primary color. Equivalent to :attr:`colors.primary`. + An alias exists under ``colour``. + + .. versionchanged:: 2.7 + """ + return self.colours.primary + + @property + def colors(self) -> RoleColours: + """Returns the role's colours. Equivalent to :attr:`colours`. + + .. versionadded:: 2.7 + """ + return self.colours @property def created_at(self) -> datetime.datetime: @@ -389,13 +574,16 @@ async def edit( permissions: Permissions = MISSING, colour: Colour | int = MISSING, color: Colour | int = MISSING, + colours: RoleColours = MISSING, + colors: RoleColours = MISSING, + holographic: bool = MISSING, hoist: bool = MISSING, mentionable: bool = MISSING, position: int = MISSING, reason: str | None = MISSING, icon: bytes | None = MISSING, unicode_emoji: str | None = MISSING, - ) -> Role | None: + ) -> Role: """|coro| Edits the role. @@ -460,8 +648,25 @@ async def edit( if color is not MISSING: colour = color + if colors is not MISSING: + colours = colors + if colour is not MISSING: - payload["color"] = colour if isinstance(colour, int) else colour.value + warn_deprecated("colour", "colours", "2.7") + if isinstance(colour, int): + colour = Colour(colour) + colours = RoleColours(primary=colour) + if holographic: + colours = RoleColours.holographic() + if colours is not MISSING: + if not isinstance(colours, RoleColours): + raise InvalidArgument("colours must be a RoleColours object") + if "ENHANCED_ROLE_COLORS" not in self.guild.features: + colours.secondary = None + colours.tertiary = None + + payload["colors"] = colours._to_dict() + if name is not MISSING: payload["name"] = name diff --git a/discord/sinks/core.py b/discord/sinks/core.py index c8ea31a82a..90fdbf7d19 100644 --- a/discord/sinks/core.py +++ b/discord/sinks/core.py @@ -107,11 +107,22 @@ def __init__(self, data, client): self.data = bytearray(data) self.client = client - self.header = data[:12] - self.data = self.data[12:] - unpacker = struct.Struct(">xxHII") - self.sequence, self.timestamp, self.ssrc = unpacker.unpack_from(self.header) + self.sequence, self.timestamp, self.ssrc = unpacker.unpack_from(self.data[:12]) + + # RFC3550 5.1: RTP Fixed Header Fields + if self.client.mode.endswith("_rtpsize"): + # If It Has CSRC Chunks + cutoff = 12 + (data[0] & 0b00_0_0_1111) * 4 + # If It Has A Extension + if data[0] & 0b00_0_1_0000: + cutoff += 4 + else: + cutoff = 12 + + self.header = data[:cutoff] + self.data = self.data[cutoff:] + self.decrypted_data = getattr(self.client, f"_decrypt_{self.client.mode}")( self.header, self.data ) diff --git a/discord/soundboard.py b/discord/soundboard.py new file mode 100644 index 0000000000..6fae037090 --- /dev/null +++ b/discord/soundboard.py @@ -0,0 +1,270 @@ +""" +The MIT License (MIT) + +Copyright (c) 2021-present Pycord Development + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. +""" + +from __future__ import annotations + +from typing import TYPE_CHECKING, Any, Coroutine + +from typing_extensions import override + +from .asset import Asset +from .emoji import PartialEmoji, _EmojiTag +from .mixins import Hashable +from .types.channel import ( + VoiceChannelEffectSendEvent as VoiceChannelEffectSendEventPayload, +) +from .types.soundboard import SoundboardSound as SoundboardSoundPayload +from .utils import cached_slot_property + +if TYPE_CHECKING: + from .guild import Guild + from .http import HTTPClient + from .state import ConnectionState + + +__all__ = ( + "PartialSoundboardSound", + "SoundboardSound", +) + + +class PartialSoundboardSound(Hashable): + """A partial soundboard sound. + + .. versionadded:: 2.7 + + Attributes + ---------- + id: :class:`int` + The sound's ID. + volume: :class:`float` + The sound's volume. + emoji: :class:`PartialEmoji` | :class:`None` + The sound's emoji. Could be ``None`` if the sound has no emoji. + """ + + __slots__ = ("id", "volume", "emoji", "_http", "_state") + + def __init__( + self, + data: SoundboardSoundPayload | VoiceChannelEffectSendEventPayload, + state: ConnectionState, + http: HTTPClient, + ): + self._http = http + self._state = state + self._from_data(data) + + def _from_data( + self, data: SoundboardSoundPayload | VoiceChannelEffectSendEventPayload + ) -> None: + self.id = int(data.get("sound_id", 0)) + self.volume = ( + float(data.get("volume", 0) or data.get("sound_volume", 0)) or None + ) + self.emoji = None + if raw_emoji := data.get( + "emoji" + ): # From gateway event (VoiceChannelEffectSendEventPayload) + self.emoji = PartialEmoji.from_dict(raw_emoji) + elif data.get("emoji_name") or data.get( + "emoji_id" + ): # From HTTP response (SoundboardSoundPayload) + self.emoji = PartialEmoji( + name=data.get("emoji_name"), + id=int(data.get("emoji_id", 0) or 0) or None, + ) + + @override + def __eq__( + self, other: PartialSoundboardSound + ) -> bool: # pyright: ignore[reportIncompatibleMethodOverride] + if isinstance(other, self, __class__): + return self.id == other.id + return NotImplemented + + @override + def __ne__( + self, other: PartialSoundboardSound + ) -> bool: # pyright: ignore[reportIncompatibleMethodOverride] + return not self.__eq__(other) + + @property + def file(self) -> Asset: + """:class:`Asset`: Returns the sound's file.""" + return Asset._from_soundboard_sound(self._state, sound_id=self.id) + + def __repr__(self) -> str: + return f"" + + +class SoundboardSound(PartialSoundboardSound): + """Represents a soundboard sound. + + .. versionadded:: 2.7 + + Attributes + ---------- + id: :class:`int` + The sound's ID. + volume: :class:`float` + The sound's volume. + emoji: :class:`PartialEmoji` | :class:`None` + The sound's emoji. Could be ``None`` if the sound has no emoji. + name: :class:`str` + The sound's name. + available: :class:`bool` + Whether the sound is available. Could be ``False`` if the sound is not available. + This is the case, for example, when the guild loses the boost level required to use the sound. + guild_id: :class:`int` | :class:`None` + The ID of the guild to which the sound belongs. Could be :class:`None` if the sound is a default sound. + user: :class:`User` | :class:`None` + The sound's owner. Could be ``None`` if the sound is a default sound. + """ + + __slots__ = ( + "name", + "available", + "guild_id", + "user", + "_cs_guild", + "_state", + ) + + def __init__( + self, + *, + state: ConnectionState, + http: HTTPClient, + data: SoundboardSoundPayload, + ) -> None: + super().__init__(data, state, http) + + @override + def _from_data( + self, data: SoundboardSoundPayload + ) -> None: # pyright: ignore[reportIncompatibleMethodOverride] + super()._from_data(data) + self.name = data["name"] + self.available: bool = data["available"] + self.guild_id = int(data.get("guild_id", 0) or 0) or None + user = data.get("user") + self.user = self._state.store_user(user) if user else None + + @cached_slot_property("_cs_guild") + def guild(self) -> Guild | None: + """:class:`Guild` | :class:`None` The guild the sound belongs to. Could be :class:`None` if the sound is a default sound.""" + return self._state._get_guild(self.guild_id) if self.guild_id else None + + @override + def __eq__( + self, other: SoundboardSound + ) -> bool: # pyright: ignore[reportIncompatibleMethodOverride] + return isinstance(other, SoundboardSound) and self.__dict__ == other.__dict__ + + @property + def is_default_sound(self) -> bool: + """:class:`bool`: Whether the sound is a default sound.""" + return self.guild_id is None + + def edit( + self, + *, + name: str | None = None, + volume: float | None = None, + emoji: PartialEmoji | str | None = None, + reason: str | None = None, + ) -> Coroutine[Any, Any, SoundboardSound]: + """Edits the sound. + + .. versionadded:: 2.7 + + Parameters + ---------- + name: Optional[:class:`str`] + The new name of the sound. + volume: Optional[:class:`float`] + The new volume of the sound. + emoji: Optional[Union[:class:`PartialEmoji`, :class:`str`]] + The new emoji of the sound. + reason: Optional[:class:`str`] + The reason for editing the sound. Shows up in the audit log. + + Returns + ------- + :class:`SoundboardSound` + The edited sound. + + Raises + ------ + :exc:`ValueError` + Editing a default sound is not allowed. + """ + if self.is_default_sound: + raise ValueError("Cannot edit a default sound.") + payload: dict[str, Any] = { + "name": name, + "volume": volume, + "emoji_id": None, + "emoji_name": None, + } + partial_emoji = None + if emoji is not None: + if isinstance(emoji, _EmojiTag): + partial_emoji = emoji._to_partial() + elif isinstance(emoji, str): + partial_emoji = PartialEmoji.from_str(emoji) + + if partial_emoji is not None: + if partial_emoji.id is None: + payload["emoji_name"] = partial_emoji.name + else: + payload["emoji_id"] = partial_emoji.id + + return self._http.edit_guild_sound( + self.guild_id, self.id, reason=reason, **payload + ) + + def delete(self, *, reason: str | None = None) -> Coroutine[Any, Any, None]: + """Deletes the sound. + + .. versionadded:: 2.7 + + Parameters + ---------- + reason: Optional[:class:`str`] + The reason for deleting the sound. Shows up in the audit log. + + Raises + ------ + :exc:`ValueError` + Deleting a default sound is not allowed. + """ + if self.is_default_sound: + raise ValueError("Cannot delete a default sound.") + return self._http.delete_sound(self, reason=reason) + + @override + def __repr__(self) -> str: + return f"" diff --git a/discord/state.py b/discord/state.py index cf74d99285..dc982d43bb 100644 --- a/discord/state.py +++ b/discord/state.py @@ -59,13 +59,14 @@ from .member import Member from .mentions import AllowedMentions from .message import Message -from .monetization import Entitlement +from .monetization import Entitlement, Subscription from .object import Object from .partial_emoji import PartialEmoji from .poll import Poll, PollAnswerCount from .raw_models import * from .role import Role from .scheduled_events import ScheduledEvent +from .soundboard import PartialSoundboardSound, SoundboardSound from .stage_instance import StageInstance from .sticker import GuildSticker from .threads import Thread, ThreadMember @@ -283,6 +284,7 @@ def clear(self, *, views: bool = True) -> None: self._view_store: ViewStore = ViewStore(self) self._modal_store: ModalStore = ModalStore(self) self._voice_clients: dict[int, VoiceClient] = {} + self._sounds: dict[int, SoundboardSound] = {} # LRU of max size 128 self._private_channels: OrderedDict[int, PrivateChannel] = OrderedDict() @@ -602,7 +604,6 @@ async def query_members( raise async def _delay_ready(self) -> None: - if self.cache_app_emojis and self.application_id: data = await self.http.get_all_application_emojis(self.application_id) for e in data.get("items", []): @@ -651,6 +652,7 @@ async def _delay_ready(self) -> None: except asyncio.CancelledError: pass else: + await self._add_default_sounds() # dispatch the event self.call_handlers("ready") self.dispatch("ready") @@ -674,7 +676,9 @@ def parse_ready(self, data) -> None: else: self.application_id = utils._get_as_snowflake(application, "id") # flags will always be present here - self.application_flags = ApplicationFlags._from_value(application["flags"]) # type: ignore + self.application_flags = ApplicationFlags._from_value( + application["flags"] + ) # type: ignore for guild_data in data["guilds"]: self._add_guild_from_data(guild_data) @@ -718,6 +722,18 @@ def parse_entitlement_delete(self, data) -> None: event = Entitlement(data=data, state=self) self.dispatch("entitlement_delete", event) + def parse_subscription_create(self, data) -> None: + event = Subscription(data=data, state=self) + self.dispatch("subscription_create", event) + + def parse_subscription_update(self, data) -> None: + event = Subscription(data=data, state=self) + self.dispatch("subscription_update", event) + + def parse_subscription_delete(self, data) -> None: + event = Subscription(data=data, state=self) + self.dispatch("subscription_delete", event) + def parse_message_create(self, data) -> None: channel, _ = self._get_guild_channel(data) # channel would be the correct type here @@ -760,21 +776,20 @@ def parse_message_delete_bulk(self, data) -> None: self._messages.remove(msg) # type: ignore def parse_message_update(self, data) -> None: - raw = RawMessageUpdateEvent(data) - message = self._get_message(raw.message_id) - if message is not None: - older_message = copy.copy(message) - raw.cached_message = older_message - self.dispatch("raw_message_edit", raw) - message._update(data) - # Coerce the `after` parameter to take the new updated Member - # ref: #5999 - older_message.author = message.author - self.dispatch("message_edit", older_message, message) + old_message = self._get_message(int(data["id"])) + channel, _ = self._get_guild_channel(data) + message = Message(channel=channel, data=data, state=self) + if self._messages is not None: + if old_message is not None: + self._messages.remove(old_message) + self._messages.append(message) + raw = RawMessageUpdateEvent(data, message) + self.dispatch("raw_message_edit", raw) + if old_message is not None: + self.dispatch("message_edit", old_message, message) else: if poll_data := data.get("poll"): self.store_raw_poll(poll_data, raw) - self.dispatch("raw_message_edit", raw) if "components" in data and self._view_store.is_message_tracked(raw.message_id): self._view_store.update_from_message(raw.message_id, data["components"]) @@ -1363,7 +1378,9 @@ def parse_guild_stickers_update(self, data) -> None: for emoji in before_stickers: self._stickers.pop(emoji.id, None) # guild won't be None here - guild.stickers = tuple(map(lambda d: self.store_sticker(guild, d), data["stickers"])) # type: ignore + guild.stickers = tuple( + map(lambda d: self.store_sticker(guild, d), data["stickers"]) + ) # type: ignore self.dispatch("guild_stickers_update", guild, before_stickers, guild.stickers) def _get_create_guild(self, data): @@ -1568,7 +1585,10 @@ def parse_guild_members_chunk(self, data) -> None: presences = data.get("presences", []) # the guild won't be None here - members = [Member(guild=guild, data=member, state=self) for member in data.get("members", [])] # type: ignore + members = [ + Member(guild=guild, data=member, state=self) + for member in data.get("members", []) + ] # type: ignore _log.debug( "Processed a chunk for %s members in guild ID %s.", len(members), guild_id ) @@ -2000,6 +2020,83 @@ def create_message( ) -> Message: return Message(state=self, channel=channel, data=data) + def parse_voice_channel_effect_send(self, data) -> None: + if sound_id := int(data.get("sound_id", 0)): + sound = self._get_sound(sound_id) + if sound is None: + sound = PartialSoundboardSound(data, self, self.http) + raw = VoiceChannelEffectSendEvent(data, self, sound) + else: + raw = VoiceChannelEffectSendEvent(data, self, None) + + self.dispatch("voice_channel_effect_send", raw) + + def _get_sound(self, sound_id: int) -> SoundboardSound | None: + return self._sounds.get(sound_id) + + def _update_sound(self, sound: SoundboardSound) -> SoundboardSound | None: + before = self._sounds.get(sound.id) + self._sounds[sound.id] = sound + return before + + def parse_soundboard_sounds(self, data) -> None: + guild_id = int(data["guild_id"]) + for sound_data in data["soundboard_sounds"]: + self._add_sound( + SoundboardSound( + state=self, http=self.http, data=sound_data, guild_id=guild_id + ) + ) + + def parse_guild_soundboard_sounds_update(self, data): + before_sounds = [] + after_sounds = [] + for sound_data in data["soundboard_sounds"]: + after = SoundboardSound(state=self, http=self.http, data=sound_data) + if before := self._update_sound(after): + before_sounds.append(before) + after_sounds.append(after) + if len(before_sounds) == len(after_sounds): + self.dispatch("soundboard_sounds_update", before_sounds, after_sounds) + self.dispatch("raw_soundboard_sounds_update", after_sounds) + + def parse_guild_soundboard_sound_update(self, data): + after = SoundboardSound(state=self, http=self.http, data=data) + if before := self._update_sound(after): + self.dispatch("soundboard_sound_update", before, after) + self.dispatch("raw_soundboard_sound_update", after) + + def parse_guild_soundboard_sound_create(self, data): + sound = SoundboardSound(state=self, http=self.http, data=data) + self._add_sound(sound) + self.dispatch("soundboard_sound_create", sound) + + def parse_guild_soundboard_sound_delete(self, data): + sound_id = int(data["sound_id"]) + sound = self._get_sound(sound_id) + if sound is not None: + self._remove_sound(sound) + self.dispatch("soundboard_sound_delete", sound) + self.dispatch( + "raw_soundboard_sound_delete", RawSoundboardSoundDeleteEvent(data) + ) + + async def _add_default_sounds(self) -> None: + default_sounds = await self.http.get_default_sounds() + for default_sound in default_sounds: + sound = SoundboardSound(state=self, http=self.http, data=default_sound) + self._add_sound(sound) + + def _add_sound(self, sound: SoundboardSound) -> None: + self._sounds[sound.id] = sound + + def _remove_sound(self, sound: SoundboardSound) -> None: + self._sounds.pop(sound.id, None) + + @property + def sounds(self) -> list[SoundboardSound]: + return list(self._sounds.values()) + class AutoShardedConnectionState(ConnectionState): def __init__(self, *args: Any, **kwargs: Any) -> None: diff --git a/discord/sticker.py b/discord/sticker.py index fa5e75eaf8..78b4b8c1f4 100644 --- a/discord/sticker.py +++ b/discord/sticker.py @@ -212,7 +212,12 @@ def __init__(self, *, state: ConnectionState, data: StickerItemPayload): self.format: StickerFormatType = try_enum( StickerFormatType, data["format_type"] ) - self.url: str = f"{Asset.BASE}/stickers/{self.id}.{self.format.file_extension}" + base = ( + "https://media.discordapp.net" + if self.format is StickerFormatType.gif + else Asset.BASE + ) + self.url: str = f"{base}/stickers/{self.id}.{self.format.file_extension}" def __repr__(self) -> str: return f"" @@ -288,7 +293,12 @@ def _from_data(self, data: StickerPayload) -> None: self.format: StickerFormatType = try_enum( StickerFormatType, data["format_type"] ) - self.url: str = f"{Asset.BASE}/stickers/{self.id}.{self.format.file_extension}" + base = ( + "https://media.discordapp.net" + if self.format is StickerFormatType.gif + else Asset.BASE + ) + self.url: str = f"{base}/stickers/{self.id}.{self.format.file_extension}" def __repr__(self) -> str: return f"" @@ -533,7 +543,7 @@ async def delete(self, *, reason: str | None = None) -> None: def _sticker_factory( - sticker_type: Literal[1, 2] + sticker_type: Literal[1, 2], ) -> tuple[type[StandardSticker | GuildSticker | Sticker], StickerType]: value = try_enum(StickerType, sticker_type) if value == StickerType.standard: diff --git a/discord/threads.py b/discord/threads.py index 28eafc9522..8d7781770a 100644 --- a/discord/threads.py +++ b/discord/threads.py @@ -28,7 +28,13 @@ from typing import TYPE_CHECKING, Callable, Iterable from .abc import Messageable, _purge_messages_helper -from .enums import ChannelType, try_enum +from .enums import ( + ChannelType, +) +from .enums import ThreadArchiveDuration as ThreadArchiveDurationEnum +from .enums import ( + try_enum, +) from .errors import ClientException from .flags import ChannelFlags from .mixins import Hashable @@ -300,7 +306,7 @@ def members(self) -> list[ThreadMember]: def applied_tags(self) -> list[ForumTag]: """List[:class:`ForumTag`]: A list of tags applied to this thread. - This is only available for threads in forum channels. + This is only available for threads in forum or media channels. """ from .channel import ForumChannel # to prevent circular import @@ -394,7 +400,7 @@ def starting_message(self) -> Message | None: return self._state._get_message(self.id) def is_pinned(self) -> bool: - """Whether the thread is pinned to the top of its parent forum channel. + """Whether the thread is pinned to the top of its parent forum or media channel. .. versionadded:: 2.3 """ @@ -602,7 +608,9 @@ async def edit( locked: bool = MISSING, invitable: bool = MISSING, slowmode_delay: int = MISSING, - auto_archive_duration: ThreadArchiveDuration = MISSING, + auto_archive_duration: ( + ThreadArchiveDuration | ThreadArchiveDurationEnum + ) = MISSING, pinned: bool = MISSING, applied_tags: list[ForumTag] = MISSING, reason: str | None = None, @@ -632,13 +640,14 @@ async def edit( auto_archive_duration: :class:`int` The new duration in minutes before a thread is automatically archived for inactivity. Must be one of ``60``, ``1440``, ``4320``, or ``10080``. + :class:`ThreadArchiveDuration` can be used alternatively. slowmode_delay: :class:`int` Specifies the slowmode rate limit for user in this thread, in seconds. A value of ``0`` disables slowmode. The maximum value possible is ``21600``. reason: Optional[:class:`str`] The reason for editing this thread. Shows up on the audit log. pinned: :class:`bool` - Whether to pin the thread or not. This only works if the thread is part of a forum. + Whether to pin the thread or not. This only works if the thread is part of a forum or media channel. applied_tags: List[:class:`ForumTag`] The set of tags to apply to the thread. Each tag object should have an ID set. diff --git a/discord/types/activity.py b/discord/types/activity.py index 3c610e3138..c19e9b18c1 100644 --- a/discord/types/activity.py +++ b/discord/types/activity.py @@ -27,7 +27,8 @@ from typing import Literal -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from .snowflake import Snowflake from .user import PartialUser diff --git a/discord/types/appinfo.py b/discord/types/appinfo.py index 8d891acbed..c22f665745 100644 --- a/discord/types/appinfo.py +++ b/discord/types/appinfo.py @@ -25,7 +25,8 @@ from __future__ import annotations -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from .snowflake import Snowflake from .team import Team from .user import User diff --git a/discord/types/application_role_connection.py b/discord/types/application_role_connection.py index 40bcae1014..cf797b8efa 100644 --- a/discord/types/application_role_connection.py +++ b/discord/types/application_role_connection.py @@ -26,7 +26,7 @@ from typing import Literal -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict ApplicationRoleConnectionMetadataType = Literal[1, 2, 3, 4, 5, 6, 7, 8] diff --git a/discord/types/audit_log.py b/discord/types/audit_log.py index d543f9e3b7..0575457e7a 100644 --- a/discord/types/audit_log.py +++ b/discord/types/audit_log.py @@ -27,7 +27,8 @@ from typing import Literal, Union -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from .automod import AutoModRule from .channel import ChannelType, PermissionOverwrite, VideoQualityMode from .guild import ( diff --git a/discord/types/automod.py b/discord/types/automod.py index 4f13b46ae0..0417e78497 100644 --- a/discord/types/automod.py +++ b/discord/types/automod.py @@ -24,7 +24,8 @@ from typing import Literal -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from .snowflake import Snowflake AutoModTriggerType = Literal[1, 2, 3, 4, 5] diff --git a/discord/types/channel.py b/discord/types/channel.py index 822ee9283f..d4661cf8c4 100644 --- a/discord/types/channel.py +++ b/discord/types/channel.py @@ -27,9 +27,11 @@ from typing import Literal, Union -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from ..enums import SortOrder from ..flags import ChannelFlags +from .emoji import PartialEmoji from .snowflake import Snowflake from .threads import ThreadArchiveDuration, ThreadMember, ThreadMetadata from .user import User @@ -181,3 +183,14 @@ class StageInstance(TypedDict): privacy_level: PrivacyLevel discoverable_disabled: bool guild_scheduled_event_id: Snowflake + + +class VoiceChannelEffectSendEvent(TypedDict): + channel_id: Snowflake + guild_id: Snowflake + user_id: Snowflake + emoji: NotRequired[PartialEmoji | None] + animation_type: NotRequired[int | None] + animation_id: NotRequired[int] + sound_id: NotRequired[Snowflake | int] + sound_volume: NotRequired[float] diff --git a/discord/_typed_dict.py b/discord/types/collectibles.py similarity index 73% rename from discord/_typed_dict.py rename to discord/types/collectibles.py index dfd1e4e9eb..ae035b0ec9 100644 --- a/discord/_typed_dict.py +++ b/discord/types/collectibles.py @@ -22,17 +22,15 @@ DEALINGS IN THE SOFTWARE. """ -import sys - -# PEP 655 Required and NotRequired were added in python 3.11. This file is simply a -# shortcut import, so we don't have to repeat this import logic across files. -if sys.version_info >= (3, 11): - from typing import NotRequired, Required, TypedDict -else: - from typing_extensions import NotRequired, Required, TypedDict - -__all__ = ( - "Required", - "NotRequired", - "TypedDict", -) +from __future__ import annotations + +from typing import TypedDict + +from .snowflake import Snowflake + + +class Nameplate(TypedDict): + sku_id: Snowflake + asset: str + label: str + palette: str diff --git a/discord/types/components.py b/discord/types/components.py index 4c0ce30ad4..5c90bec604 100644 --- a/discord/types/components.py +++ b/discord/types/components.py @@ -27,22 +27,30 @@ from typing import Literal, Union -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from .channel import ChannelType from .emoji import PartialEmoji from .snowflake import Snowflake -ComponentType = Literal[1, 2, 3, 4] +ComponentType = Literal[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18] ButtonStyle = Literal[1, 2, 3, 4, 5, 6] InputTextStyle = Literal[1, 2] +SeparatorSpacingSize = Literal[1, 2] +SelectDefaultValueType = Literal["channel", "role", "user"] + + +class BaseComponent(TypedDict): + type: ComponentType + id: NotRequired[int] -class ActionRow(TypedDict): +class ActionRow(BaseComponent): type: Literal[1] - components: list[Component] + components: list[ButtonComponent | InputText | SelectMenu] -class ButtonComponent(TypedDict): +class ButtonComponent(BaseComponent): custom_id: NotRequired[str] url: NotRequired[str] disabled: NotRequired[bool] @@ -53,7 +61,7 @@ class ButtonComponent(TypedDict): sku_id: Snowflake -class InputText(TypedDict): +class InputText(BaseComponent): min_length: NotRequired[int] max_length: NotRequired[int] required: NotRequired[bool] @@ -62,7 +70,7 @@ class InputText(TypedDict): type: Literal[4] style: InputTextStyle custom_id: str - label: str + label: NotRequired[str] class SelectOption(TypedDict): @@ -73,7 +81,12 @@ class SelectOption(TypedDict): default: bool -class SelectMenu(TypedDict): +class SelectDefaultValue(TypedDict): + id: Snowflake + type: SelectDefaultValueType + + +class SelectMenu(BaseComponent): placeholder: NotRequired[str] min_values: NotRequired[int] max_values: NotRequired[int] @@ -82,6 +95,85 @@ class SelectMenu(TypedDict): options: NotRequired[list[SelectOption]] type: Literal[3, 5, 6, 7, 8] custom_id: str + required: NotRequired[bool] + default_values: NotRequired[list[SelectDefaultValue]] + + +class TextDisplayComponent(BaseComponent): + type: Literal[10] + content: str + + +class SectionComponent(BaseComponent): + type: Literal[9] + components: list[TextDisplayComponent] + accessory: NotRequired[ThumbnailComponent | ButtonComponent] + + +class UnfurledMediaItem(TypedDict): + url: str + proxy_url: str + height: NotRequired[int | None] + width: NotRequired[int | None] + content_type: NotRequired[str] + flags: NotRequired[int] + attachment_id: NotRequired[Snowflake] + + +class ThumbnailComponent(BaseComponent): + type: Literal[11] + media: UnfurledMediaItem + description: NotRequired[str] + spoiler: NotRequired[bool] + + +class MediaGalleryItem(TypedDict): + media: UnfurledMediaItem + description: NotRequired[str] + spoiler: NotRequired[bool] + + +class MediaGalleryComponent(BaseComponent): + type: Literal[12] + items: list[MediaGalleryItem] + + +class FileComponent(BaseComponent): + type: Literal[13] + file: UnfurledMediaItem + spoiler: NotRequired[bool] + name: str + size: int + + +class SeparatorComponent(BaseComponent): + type: Literal[14] + divider: NotRequired[bool] + spacing: NotRequired[SeparatorSpacingSize] + + +class ContainerComponent(BaseComponent): + type: Literal[17] + accent_color: NotRequired[int] + spoiler: NotRequired[bool] + components: list[AllowedContainerComponents] + + +class LabelComponent(BaseComponent): + type: Literal[18] + label: str + description: NotRequired[str] + component: SelectMenu | InputText Component = Union[ActionRow, ButtonComponent, SelectMenu, InputText] + + +AllowedContainerComponents = Union[ + ActionRow, + TextDisplayComponent, + MediaGalleryComponent, + FileComponent, + SeparatorComponent, + SectionComponent, +] diff --git a/discord/types/embed.py b/discord/types/embed.py index dbfcb14c87..7d39c1630d 100644 --- a/discord/types/embed.py +++ b/discord/types/embed.py @@ -27,7 +27,7 @@ from typing import Literal -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict class EmbedFooter(TypedDict): @@ -76,7 +76,14 @@ class EmbedAuthor(TypedDict, total=False): EmbedType = Literal[ - "rich", "image", "video", "gifv", "article", "link", "auto_moderation_message" + "rich", + "image", + "video", + "gifv", + "article", + "link", + "auto_moderation_message", + "poll_result", ] diff --git a/discord/types/guild.py b/discord/types/guild.py index cac645b272..342686af9e 100644 --- a/discord/types/guild.py +++ b/discord/types/guild.py @@ -27,7 +27,8 @@ from typing import Literal -from .._typed_dict import NotRequired, Required, TypedDict +from typing_extensions import NotRequired, Required, TypedDict + from .activity import PartialPresenceUpdate from .channel import GuildChannel from .emoji import Emoji @@ -58,6 +59,8 @@ class UnavailableGuild(TypedDict): NSFWLevel = Literal[0, 1, 2, 3] PremiumTier = Literal[0, 1, 2, 3] GuildFeature = Literal[ + "ACTIVITY_FEED_DISABLED_BY_USER", + "ACTIVITY_FEED_ENABLED_BY_USER", "ANIMATED_BANNER", "ANIMATED_ICON", "APPLICATION_COMMAND_PERMISSIONS_V2", @@ -79,6 +82,8 @@ class UnavailableGuild(TypedDict): "MEMBER_VERIFICATION_GATE_ENABLED", "MONETIZATION_ENABLED", "MORE_EMOJI", + "MORE_SOUNDBOARD", + "SOUNDBOARD", "MORE_STICKERS", "NEWS", "NEW_THREAD_PERMISSIONS", @@ -87,6 +92,7 @@ class UnavailableGuild(TypedDict): "PREVIEW_ENABLED", "ROLE_ICONS", "ROLE_SUBSCRIPTIONS_ENABLED", + "RAID_ALERTS_DISABLED", "SEVEN_DAY_THREAD_ARCHIVE", "TEXT_IN_VOICE_ENABLED", "THREAD_DEFAULT_AUTO_ARCHIVE_DURATION", @@ -97,6 +103,7 @@ class UnavailableGuild(TypedDict): "VERIFIED", "VIP_REGIONS", "WELCOME_SCREEN_ENABLED", + "ENHANCED_ROLE_COLORS", ] diff --git a/discord/types/integration.py b/discord/types/integration.py index 219992d225..1a6c8b70f1 100644 --- a/discord/types/integration.py +++ b/discord/types/integration.py @@ -27,7 +27,8 @@ from typing import Literal, Union -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from .snowflake import Snowflake from .user import User diff --git a/discord/types/interactions.py b/discord/types/interactions.py index 2c7fd520ab..3f45e35c19 100644 --- a/discord/types/interactions.py +++ b/discord/types/interactions.py @@ -42,7 +42,7 @@ from .message import AllowedMentions, Message from ..interactions import InteractionChannel -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict ApplicationCommandType = Literal[1, 2, 3] @@ -215,6 +215,7 @@ class Interaction(TypedDict): locale: NotRequired[str] guild_locale: NotRequired[str] app_permissions: NotRequired[Permissions] + attachment_size_limit: NotRequired[int] id: Snowflake application_id: Snowflake type: InteractionType @@ -272,3 +273,24 @@ class EditApplicationCommand(TypedDict): _StringApplicationIntegrationType = Literal["0", "1"] AuthorizingIntegrationOwners = Dict[_StringApplicationIntegrationType, Snowflake] + + +class InteractionCallbackResponse(TypedDict): + interaction: InteractionCallback + resource: NotRequired[InteractionCallbackResource] + + +class InteractionCallback(TypedDict): + id: Snowflake + type: InteractionType + activity_instance_id: NotRequired[str] + response_message_id: NotRequired[Snowflake] + response_message_loading: NotRequired[bool] + response_message_ephemeral: NotRequired[bool] + + +class InteractionCallbackResource(TypedDict): + type: InteractionResponseType + # This is not fully typed as activities are out of scope + activity_instance: NotRequired[dict] + message: NotRequired[Message] diff --git a/discord/types/invite.py b/discord/types/invite.py index 7f1e23b96e..796d27ccb4 100644 --- a/discord/types/invite.py +++ b/discord/types/invite.py @@ -27,7 +27,8 @@ from typing import Literal, Union -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from .appinfo import PartialAppInfo from .channel import PartialChannel from .guild import InviteGuild, _GuildPreviewUnique diff --git a/discord/types/message.py b/discord/types/message.py index f138609d1b..d9bc4f2f9d 100644 --- a/discord/types/message.py +++ b/discord/types/message.py @@ -41,7 +41,7 @@ if TYPE_CHECKING: from .interactions import InteractionMetadata, MessageInteraction -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict class ChannelMention(TypedDict): @@ -99,7 +99,11 @@ class MessageApplication(TypedDict): name: str +MessageReferenceType = Literal[0, 1] + + class MessageReference(TypedDict, total=False): + type: NotRequired[MessageReferenceType] message_id: Snowflake channel_id: Snowflake guild_id: Snowflake @@ -111,6 +115,29 @@ class MessageReference(TypedDict, total=False): ] +class MessageCall(TypedDict): + participants: SnowflakeList + ended_timestamp: NotRequired[str] + + +class ForwardedMessage(TypedDict): + type: MessageType + content: str + embeds: list[Embed] + attachments: list[Attachment] + timestamp: str + edited_timestamp: str | None + flags: NotRequired[int] + mentions: list[UserWithMember] + mention_roles: SnowflakeList + sticker_items: NotRequired[list[StickerItem]] + components: NotRequired[list[Component]] + + +class MessageSnapshot(TypedDict): + message: ForwardedMessage + + class Message(TypedDict): guild_id: NotRequired[Snowflake] member: NotRequired[Member] @@ -144,6 +171,18 @@ class Message(TypedDict): pinned: bool type: MessageType poll: Poll + call: MessageCall + message_snapshots: NotRequired[list[MessageSnapshot]] + + +class MessagePin(TypedDict): + pinned_at: str + message: Message + + +class MessagePinPagination(TypedDict): + items: list[MessagePin] + has_more: bool AllowedMentionType = Literal["roles", "users", "everyone"] @@ -154,8 +193,3 @@ class AllowedMentions(TypedDict): roles: SnowflakeList users: SnowflakeList replied_user: bool - - -class MessageCall(TypedDict): - participants: SnowflakeList - ended_timestamp: NotRequired[str] diff --git a/discord/types/monetization.py b/discord/types/monetization.py index 8b186c83e0..13ed22ccc3 100644 --- a/discord/types/monetization.py +++ b/discord/types/monetization.py @@ -27,12 +27,14 @@ from typing import Literal -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from .snowflake import Snowflake -SKUType = Literal[5, 6] -EntitlementType = Literal[8] +SKUType = Literal[2, 3, 5, 6] +EntitlementType = Literal[1, 2, 3, 4, 5, 6, 7, 8] OwnerType = Literal[1, 2] +SubscriptionStatus = Literal[1, 2, 3] class SKU(TypedDict): @@ -54,9 +56,23 @@ class Entitlement(TypedDict): starts_at: NotRequired[str] ends_at: NotRequired[str] guild_id: NotRequired[Snowflake] + consumed: NotRequired[bool] class CreateTestEntitlementPayload(TypedDict): sku_id: Snowflake owner_id: Snowflake owner_type: OwnerType + + +class Subscription(TypedDict): + id: Snowflake + user_id: Snowflake + sku_ids: list[Snowflake] + entitlement_ids: list[Snowflake] + renewal_sku_ids: list[Snowflake] + current_period_start: str + current_period_end: str + status: SubscriptionStatus + canceled_at: str | None + country: NotRequired[str] diff --git a/discord/types/onboarding.py b/discord/types/onboarding.py index 7bfa44dc13..31dda34ca8 100644 --- a/discord/types/onboarding.py +++ b/discord/types/onboarding.py @@ -26,7 +26,8 @@ from typing import Literal, TypedDict -from .._typed_dict import NotRequired +from typing_extensions import NotRequired + from .emoji import Emoji from .snowflake import Snowflake, SnowflakeList diff --git a/discord/types/poll.py b/discord/types/poll.py index 21e54431e6..ed747f93da 100644 --- a/discord/types/poll.py +++ b/discord/types/poll.py @@ -26,7 +26,8 @@ from typing import Literal, TypedDict -from .._typed_dict import NotRequired +from typing_extensions import NotRequired + from .emoji import Emoji PollLayoutType = Literal[1] diff --git a/discord/types/primary_guild.py b/discord/types/primary_guild.py new file mode 100644 index 0000000000..5ee6386cc3 --- /dev/null +++ b/discord/types/primary_guild.py @@ -0,0 +1,36 @@ +""" +The MIT License (MIT) + +Copyright (c) 2021-present Pycord Development + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. +""" + +from __future__ import annotations + +from typing import TypedDict + +from .snowflake import Snowflake + + +class PrimaryGuild(TypedDict): + identity_guild_id: Snowflake + identity_enabled: bool | None + tag: str + badge: str diff --git a/discord/types/raw_models.py b/discord/types/raw_models.py index 2d0698eca3..1a7feee059 100644 --- a/discord/types/raw_models.py +++ b/discord/types/raw_models.py @@ -25,7 +25,8 @@ from __future__ import annotations -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from .automod import AutoModAction, AutoModTriggerType from .emoji import PartialEmoji from .member import Member diff --git a/discord/types/role.py b/discord/types/role.py index d387d38b77..09e718e173 100644 --- a/discord/types/role.py +++ b/discord/types/role.py @@ -25,15 +25,23 @@ from __future__ import annotations -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from .snowflake import Snowflake +class RoleColours(TypedDict): + primary_color: int + secondary_color: int | None + tertiary_color: int | None + + class Role(TypedDict): tags: NotRequired[RoleTags] id: Snowflake name: str color: int + colors: RoleColours hoist: bool position: int permissions: str diff --git a/discord/types/soundboard.py b/discord/types/soundboard.py new file mode 100644 index 0000000000..9a4c19b0ed --- /dev/null +++ b/discord/types/soundboard.py @@ -0,0 +1,42 @@ +""" +The MIT License (MIT) + +Copyright (c) 2021-present Pycord Development + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and associated documentation files (the "Software"), +to deal in the Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, sublicense, +and/or sell copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +DEALINGS IN THE SOFTWARE. +""" + +from __future__ import annotations + +from typing_extensions import NotRequired, TypedDict + +from discord.types.user import User + +from .snowflake import Snowflake + + +class SoundboardSound(TypedDict): + name: str + sound_id: Snowflake | int + volume: float + emoji_name: str | None + emoji_id: Snowflake | None + guild_id: NotRequired[Snowflake] + user: NotRequired[User] + available: bool diff --git a/discord/types/sticker.py b/discord/types/sticker.py index 129b14cc46..95945462e6 100644 --- a/discord/types/sticker.py +++ b/discord/types/sticker.py @@ -27,7 +27,8 @@ from typing import Literal, Union -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from .snowflake import Snowflake from .user import User diff --git a/discord/types/threads.py b/discord/types/threads.py index aab6d95794..447027183b 100644 --- a/discord/types/threads.py +++ b/discord/types/threads.py @@ -27,7 +27,8 @@ from typing import Literal -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from ..flags import ChannelFlags from .snowflake import Snowflake diff --git a/discord/types/voice.py b/discord/types/voice.py index 4dc485cbf7..68d99ccd48 100644 --- a/discord/types/voice.py +++ b/discord/types/voice.py @@ -27,12 +27,16 @@ from typing import Literal -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from .member import MemberWithUser from .snowflake import Snowflake SupportedModes = Literal[ - "xsalsa20_poly1305_lite", "xsalsa20_poly1305_suffix", "xsalsa20_poly1305" + "xsalsa20_poly1305_lite", + "xsalsa20_poly1305_suffix", + "xsalsa20_poly1305", + "aead_xchacha20_poly1305_rtpsize", ] diff --git a/discord/types/webhook.py b/discord/types/webhook.py index 20fa0e900e..a312b30a41 100644 --- a/discord/types/webhook.py +++ b/discord/types/webhook.py @@ -27,7 +27,8 @@ from typing import Literal -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from .channel import PartialChannel from .snowflake import Snowflake from .user import User diff --git a/discord/types/widget.py b/discord/types/widget.py index 1ebeb959a3..d327fa58fb 100644 --- a/discord/types/widget.py +++ b/discord/types/widget.py @@ -25,7 +25,8 @@ from __future__ import annotations -from .._typed_dict import NotRequired, TypedDict +from typing_extensions import NotRequired, TypedDict + from .activity import Activity from .snowflake import Snowflake from .user import User diff --git a/discord/ui/__init__.py b/discord/ui/__init__.py index fa1767d220..473ac45563 100644 --- a/discord/ui/__init__.py +++ b/discord/ui/__init__.py @@ -9,8 +9,15 @@ """ from .button import * +from .container import * +from .file import * from .input_text import * from .item import * +from .media_gallery import * from .modal import * +from .section import * from .select import * +from .separator import * +from .text_display import * +from .thumbnail import * from .view import * diff --git a/discord/ui/button.py b/discord/ui/button.py index 42d4af8d08..f08de8d193 100644 --- a/discord/ui/button.py +++ b/discord/ui/button.py @@ -75,6 +75,13 @@ class Button(Item[V]): 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). + + .. warning:: + + This parameter does not work with V2 components or with more than 25 items in your view. + + id: Optional[:class:`int`] + The button's ID. """ __item_repr_attributes__: tuple[str, ...] = ( @@ -85,6 +92,8 @@ class Button(Item[V]): "emoji", "sku_id", "row", + "custom_id", + "id", ) def __init__( @@ -98,6 +107,7 @@ def __init__( emoji: str | GuildEmoji | AppEmoji | PartialEmoji | None = None, sku_id: int | None = None, row: int | None = None, + id: int | None = None, ): super().__init__() if label and len(str(label)) > 80: @@ -145,6 +155,7 @@ def __init__( style=style, emoji=emoji, sku_id=sku_id, + id=id, ) self.row = row @@ -172,6 +183,7 @@ def custom_id(self, value: str | None): if value and len(value) > 100: raise ValueError("custom_id must be 100 characters or fewer") self._underlying.custom_id = value + self._provided_custom_id = value is not None @property def url(self) -> str | None: @@ -248,6 +260,7 @@ def from_component(cls: type[B], button: ButtonComponent) -> B: emoji=button.emoji, sku_id=button.sku_id, row=None, + id=button.id, ) @property @@ -260,6 +273,9 @@ def to_component_dict(self): def is_dispatchable(self) -> bool: return self.custom_id is not None + def is_storable(self) -> bool: + return self.is_dispatchable() + def is_persistent(self) -> bool: if self.style is ButtonStyle.link: return self.url is not None @@ -277,7 +293,8 @@ def button( style: ButtonStyle = ButtonStyle.secondary, emoji: str | GuildEmoji | AppEmoji | PartialEmoji | None = None, row: int | None = None, -) -> Callable[[ItemCallbackType], ItemCallbackType]: + id: int | None = None, +) -> Callable[[ItemCallbackType[Button[V]]], Button[V]]: """A decorator that attaches a button to a component. The function being decorated should have three parameters, ``self`` representing @@ -326,7 +343,8 @@ def decorator(func: ItemCallbackType) -> ItemCallbackType: "label": label, "emoji": emoji, "row": row, + "id": id, } return func - return decorator + return decorator # type: ignore # lie to the type checkers, because after a View is instated, the button callback is converted into a Button instance diff --git a/discord/ui/container.py b/discord/ui/container.py new file mode 100644 index 0000000000..e18b0ec0d2 --- /dev/null +++ b/discord/ui/container.py @@ -0,0 +1,431 @@ +from __future__ import annotations + +from functools import partial +from typing import TYPE_CHECKING, ClassVar, Iterator, TypeVar + +from ..colour import Colour +from ..components import ActionRow +from ..components import Container as ContainerComponent +from ..components import _component_factory +from ..enums import ComponentType, SeparatorSpacingSize +from ..utils import find, get +from .file import File +from .item import Item, ItemCallbackType +from .media_gallery import MediaGallery +from .section import Section +from .separator import Separator +from .text_display import TextDisplay +from .view import _walk_all_components + +__all__ = ("Container",) + +if TYPE_CHECKING: + from typing_extensions import Self + + from ..types.components import ContainerComponent as ContainerComponentPayload + from .view import View + + +C = TypeVar("C", bound="Container") +V = TypeVar("V", bound="View", covariant=True) + + +class Container(Item[V]): + """Represents a UI Container. + + The current items supported are as follows: + + - :class:`discord.ui.Button` + - :class:`discord.ui.Select` + - :class:`discord.ui.Section` + - :class:`discord.ui.TextDisplay` + - :class:`discord.ui.MediaGallery` + - :class:`discord.ui.File` + - :class:`discord.ui.Separator` + + .. versionadded:: 2.7 + + Parameters + ---------- + *items: :class:`Item` + The initial items in this container. + colour: Union[:class:`Colour`, :class:`int`] + The accent colour of the container. Aliased to ``color`` as well. + spoiler: Optional[:class:`bool`] + Whether this container has the spoiler overlay. + id: Optional[:class:`int`] + The container's ID. + """ + + __item_repr_attributes__: tuple[str, ...] = ( + "items", + "colour", + "spoiler", + "id", + ) + + __container_children_items__: ClassVar[list[ItemCallbackType]] = [] + + def __init_subclass__(cls) -> None: + children: list[ItemCallbackType] = [] + for base in reversed(cls.__mro__): + for member in base.__dict__.values(): + if hasattr(member, "__discord_ui_model_type__"): + children.append(member) + + cls.__container_children_items__ = children + + def __init__( + self, + *items: Item, + colour: int | Colour | None = None, + color: int | Colour | None = None, + spoiler: bool = False, + id: int | None = None, + ): + super().__init__() + + self.items: list[Item] = [] + + self._underlying = ContainerComponent._raw_construct( + type=ComponentType.container, + id=id, + components=[], + accent_color=None, + spoiler=spoiler, + ) + self.color = colour or color + + for func in self.__container_children_items__: + item: Item = func.__discord_ui_model_type__( + **func.__discord_ui_model_kwargs__ + ) + item.callback = partial(func, self, item) + self.add_item(item) + setattr(self, func.__name__, item) + for i in items: + self.add_item(i) + + def _add_component_from_item(self, item: Item): + if item._underlying.is_v2(): + self._underlying.components.append(item._underlying) + else: + found = False + for row in reversed(self._underlying.components): + if ( + isinstance(row, ActionRow) and row.width + item.width <= 5 + ): # If a valid ActionRow exists + row.children.append(item._underlying) + found = True + elif not isinstance(row, ActionRow): + # create new row if last component is v2 + break + if not found: + row = ActionRow.with_components(item._underlying) + self._underlying.components.append(row) + + def _set_components(self, items: list[Item]): + self._underlying.components.clear() + for item in items: + self._add_component_from_item(item) + + def add_item(self, item: Item) -> Self: + """Adds an item to the container. + + Parameters + ---------- + item: :class:`Item` + The item to add to the container. + + Raises + ------ + TypeError + An :class:`Item` was not passed. + """ + + if not isinstance(item, Item): + raise TypeError(f"expected Item not {item.__class__!r}") + + item._view = self.view + if hasattr(item, "items"): + item.view = self + item.parent = self + + self.items.append(item) + self._add_component_from_item(item) + return self + + def remove_item(self, item: Item | str | int) -> Self: + """Removes an item from the container. If an int or str is passed, it will remove by Item :attr:`id` or ``custom_id`` respectively. + + Parameters + ---------- + item: Union[:class:`Item`, :class:`int`, :class:`str`] + The item, ``id``, or item ``custom_id`` to remove from the container. + """ + + if isinstance(item, (str, int)): + item = self.get_item(item) + try: + self.items.remove(item) + except ValueError: + pass + return self + + def get_item(self, id: str | int) -> Item | None: + """Get an item from this container. Roughly equivalent to `utils.get(container.items, ...)`. + If an ``int`` is provided, the item will be retrieved by ``id``, otherwise by ``custom_id``. + This method will also search for nested items. + + Parameters + ---------- + id: Union[:class:`str`, :class:`int`] + The id or custom_id of the item to get. + + Returns + ------- + Optional[:class:`Item`] + The item with the matching ``id`` or ``custom_id`` if it exists. + """ + if not id: + return None + attr = "id" if isinstance(id, int) else "custom_id" + child = find(lambda i: getattr(i, attr, None) == id, self.items) + if not child: + for i in self.items: + if hasattr(i, "get_item"): + if child := i.get_item(id): + return child + return child + + def add_section( + self, + *items: Item, + accessory: Item, + id: int | None = None, + ) -> Self: + """Adds a :class:`Section` to the container. + + To append a pre-existing :class:`Section`, use the + :meth:`add_item` method, instead. + + Parameters + ---------- + *items: :class:`Item` + The items contained in this section, up to 3. + Currently only supports :class:`~discord.ui.TextDisplay`. + accessory: Optional[:class:`Item`] + The section's accessory. This is displayed in the top right of the section. + Currently only supports :class:`~discord.ui.Button` and :class:`~discord.ui.Thumbnail`. + id: Optional[:class:`int`] + The section's ID. + """ + + section = Section(*items, accessory=accessory, id=id) + + return self.add_item(section) + + def add_text(self, content: str, id: int | None = None) -> Self: + """Adds a :class:`TextDisplay` to the container. + + Parameters + ---------- + content: :class:`str` + The content of the TextDisplay + id: Optiona[:class:`int`] + The text displays' ID. + """ + + text = TextDisplay(content, id=id) + + return self.add_item(text) + + def add_gallery( + self, + *items: Item, + id: int | None = None, + ) -> Self: + """Adds a :class:`MediaGallery` to the container. + + To append a pre-existing :class:`MediaGallery`, use :meth:`add_item` instead. + + Parameters + ---------- + *items: :class:`MediaGalleryItem` + The media this gallery contains. + id: Optiona[:class:`int`] + The gallery's ID. + """ + + g = MediaGallery(*items, id=id) + + return self.add_item(g) + + def add_file(self, url: str, spoiler: bool = False, id: int | None = None) -> Self: + """Adds a :class:`TextDisplay` to the container. + + Parameters + ---------- + url: :class:`str` + The URL of this file's media. This must be an ``attachment://`` URL that references a :class:`~discord.File`. + spoiler: Optional[:class:`bool`] + Whether the file has the spoiler overlay. Defaults to ``False``. + id: Optiona[:class:`int`] + The file's ID. + """ + + f = File(url, spoiler=spoiler, id=id) + + return self.add_item(f) + + def add_separator( + self, + *, + divider: bool = True, + spacing: SeparatorSpacingSize = SeparatorSpacingSize.small, + id: int | None = None, + ) -> Self: + """Adds a :class:`Separator` to the container. + + Parameters + ---------- + divider: :class:`bool` + Whether the separator is a divider. Defaults to ``True``. + spacing: :class:`~discord.SeparatorSpacingSize` + The spacing size of the separator. Defaults to :attr:`~discord.SeparatorSpacingSize.small`. + id: Optional[:class:`int`] + The separator's ID. + """ + + s = Separator(divider=divider, spacing=spacing, id=id) + + return self.add_item(s) + + def copy_text(self) -> str: + """Returns the text of all :class:`~discord.ui.TextDisplay` items in this container. + Equivalent to the `Copy Text` option on Discord clients. + """ + return "\n".join(t for i in self.items if (t := i.copy_text())) + + @property + def spoiler(self) -> bool: + """Whether the container has the spoiler overlay. Defaults to ``False``.""" + return self._underlying.spoiler + + @spoiler.setter + def spoiler(self, spoiler: bool) -> None: + self._underlying.spoiler = spoiler + + @property + def colour(self) -> Colour | None: + return self._underlying.accent_color + + @colour.setter + def colour(self, value: int | Colour | None): # type: ignore + if value is None or isinstance(value, Colour): + self._underlying.accent_color = value + elif isinstance(value, int): + self._underlying.accent_color = Colour(value=value) + else: + raise TypeError( + "Expected discord.Colour, int, or None but received" + f" {value.__class__.__name__} instead." + ) + + color = colour + + @Item.view.setter + def view(self, value): + self._view = value + for item in self.items: + item.parent = self + item._view = value + if hasattr(item, "items"): + item.view = value + + @property + def type(self) -> ComponentType: + return self._underlying.type + + @property + def width(self) -> int: + return 5 + + def is_dispatchable(self) -> bool: + return any(item.is_dispatchable() for item in self.items) + + def is_persistent(self) -> bool: + return all(item.is_persistent() for item in self.items) + + def refresh_component(self, component: ContainerComponent) -> None: + self._underlying = component + i = 0 + flattened = [] + for c in component.components: + if isinstance(c, ActionRow): + flattened += c.children + else: + flattened.append(c) + for y in flattened: + x = self.items[i] + x.refresh_component(y) + i += 1 + + def disable_all_items(self, *, exclusions: list[Item] | None = None) -> Self: + """ + Disables all buttons and select menus in the container. + + Parameters + ---------- + exclusions: Optional[List[:class:`Item`]] + A list of items in `self.items` to not disable from the view. + """ + for item in self.walk_items(): + if hasattr(item, "disabled") and ( + exclusions is None or item not in exclusions + ): + item.disabled = True + return self + + def enable_all_items(self, *, exclusions: list[Item] | None = None) -> Self: + """ + Enables all buttons and select menus in the container. + + Parameters + ---------- + exclusions: Optional[List[:class:`Item`]] + A list of items in `self.items` to not enable from the view. + """ + for item in self.walk_items(): + if hasattr(item, "disabled") and ( + exclusions is None or item not in exclusions + ): + item.disabled = False + return self + + def walk_items(self) -> Iterator[Item]: + for item in self.items: + if hasattr(item, "walk_items"): + yield from item.walk_items() + else: + yield item + + def to_component_dict(self) -> ContainerComponentPayload: + self._set_components(self.items) + return self._underlying.to_dict() + + @classmethod + def from_component(cls: type[C], component: ContainerComponent) -> C: + from .view import _component_to_item + + items = [ + _component_to_item(c) for c in _walk_all_components(component.components) + ] + return cls( + *items, + colour=component.accent_color, + spoiler=component.spoiler, + id=component.id, + ) + + callback = None diff --git a/discord/ui/file.py b/discord/ui/file.py new file mode 100644 index 0000000000..dc06b83648 --- /dev/null +++ b/discord/ui/file.py @@ -0,0 +1,112 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING, TypeVar +from urllib.parse import urlparse + +from ..components import FileComponent, UnfurledMediaItem, _component_factory +from ..enums import ComponentType +from .item import Item + +__all__ = ("File",) + +if TYPE_CHECKING: + from ..types.components import FileComponent as FileComponentPayload + from .view import View + + +F = TypeVar("F", bound="File") +V = TypeVar("V", bound="View", covariant=True) + + +class File(Item[V]): + """Represents a UI File. + + .. note:: + This component does not show media previews. Use :class:`MediaGallery` for previews instead. + + .. versionadded:: 2.7 + + Parameters + ---------- + url: :class:`str` + The URL of this file. This must be an ``attachment://`` URL referring to a local file used with :class:`~discord.File`. + spoiler: Optional[:class:`bool`] + Whether this file has the spoiler overlay. + id: Optional[:class:`int`] + The file component's ID. + """ + + __item_repr_attributes__: tuple[str, ...] = ( + "file", + "spoiler", + "id", + ) + + def __init__(self, url: str, *, spoiler: bool = False, id: int | None = None): + super().__init__() + + self.file = UnfurledMediaItem(url) + + self._underlying = FileComponent._raw_construct( + type=ComponentType.file, + id=id, + file=self.file, + spoiler=spoiler, + ) + + @property + def type(self) -> ComponentType: + return self._underlying.type + + @property + def width(self) -> int: + return 5 + + @property + def url(self) -> str: + """The URL of this file's media. This must be an ``attachment://`` URL that references a :class:`~discord.File`.""" + return self._underlying.file and self._underlying.file.url + + @url.setter + def url(self, value: str) -> None: + self._underlying.file.url = value + + @property + def spoiler(self) -> bool: + """Whether the file has the spoiler overlay. Defaults to ``False``.""" + return self._underlying.spoiler + + @spoiler.setter + def spoiler(self, spoiler: bool) -> None: + self._underlying.spoiler = spoiler + + @property + def name(self) -> str: + """The name of this file, if provided by Discord.""" + return self._underlying.name + + @property + def size(self) -> int: + """The size of this file in bytes, if provided by Discord.""" + return self._underlying.size + + def refresh_component(self, component: FileComponent) -> None: + original = self._underlying.file + component.file._static_url = original._static_url + self._underlying = component + + def to_component_dict(self) -> FileComponentPayload: + return self._underlying.to_dict() + + @classmethod + def from_component(cls: type[F], component: FileComponent) -> F: + url = component.file and component.file.url + if not url.startswith("attachment://"): + url = "attachment://" + urlparse(url).path.rsplit("/", 1)[-1] + return cls( + url, + spoiler=component.spoiler, + id=component.id, + ) + + callback = None diff --git a/discord/ui/input_text.py b/discord/ui/input_text.py index dd7438be21..4f7828ce97 100644 --- a/discord/ui/input_text.py +++ b/discord/ui/input_text.py @@ -6,9 +6,10 @@ from ..components import InputText as InputTextComponent from ..enums import ComponentType, InputTextStyle -__all__ = ("InputText",) +__all__ = ("InputText", "TextInput") if TYPE_CHECKING: + from ..interactions import Interaction from ..types.components import InputText as InputTextComponentPayload @@ -26,6 +27,11 @@ class InputText: label: :class:`str` The label for the input text field. Must be 45 characters or fewer. + description: Optional[:class:`str`] + The description for the input text field. + Must be 100 characters or fewer. + + .. versionadded:: 2.7 placeholder: Optional[:class:`str`] The placeholder text that is shown if nothing is selected, if any. Must be 100 characters or fewer. @@ -48,6 +54,19 @@ class InputText: ordering. The row number must be between 0 and 4 (i.e. zero indexed). """ + __item_repr_attributes__: tuple[str, ...] = ( + "label", + "placeholder", + "value", + "required", + "style", + "min_length", + "max_length", + "custom_id", + "id", + "description", + ) + def __init__( self, *, @@ -60,10 +79,14 @@ def __init__( required: bool | None = True, value: str | None = None, row: int | None = None, + id: int | None = None, + description: str | None = None, ): super().__init__() if len(str(label)) > 45: raise ValueError("label must be 45 characters or fewer") + if description and len(description) > 100: + raise ValueError("description must be 100 characters or fewer") if min_length and (min_length < 0 or min_length > 4000): raise ValueError("min_length must be between 0 and 4000") if max_length and (max_length < 0 or max_length > 4000): @@ -77,6 +100,7 @@ def __init__( f"expected custom_id to be str, not {custom_id.__class__.__name__}" ) custom_id = os.urandom(16).hex() if custom_id is None else custom_id + self.description: str | None = description self._underlying = InputTextComponent._raw_construct( type=ComponentType.input_text, @@ -88,11 +112,18 @@ def __init__( max_length=max_length, required=required, value=value, + id=id, ) self._input_value = False self.row = row self._rendered_row: int | None = None + def __repr__(self) -> str: + attrs = " ".join( + f"{key}={getattr(self, key)!r}" for key in self.__item_repr_attributes__ + ) + return f"<{self.__class__.__name__} {attrs}>" + @property def type(self) -> ComponentType: return self._underlying.type @@ -102,6 +133,11 @@ def style(self) -> InputTextStyle: """The style of the input text field.""" return self._underlying.style + @property + def id(self) -> int | None: + """The input text's ID. If not provided by the user, it is set sequentially by Discord.""" + return self._underlying.id + @style.setter def style(self, value: InputTextStyle): if not isinstance(value, InputTextStyle): @@ -211,3 +247,12 @@ def to_component_dict(self) -> InputTextComponentPayload: def refresh_state(self, data) -> None: self._input_value = data["value"] + + def refresh_from_modal(self, interaction: Interaction, data: dict) -> None: + return self.refresh_state(data) + + def uses_label(self) -> bool: + return self.description is not None + + +TextInput = InputText diff --git a/discord/ui/item.py b/discord/ui/item.py index c822983bce..e2a568e345 100644 --- a/discord/ui/item.py +++ b/discord/ui/item.py @@ -44,12 +44,25 @@ class Item(Generic[V]): """Represents the base UI item that all UI components inherit from. - The current UI items supported are: + The following are the original items: - :class:`discord.ui.Button` - :class:`discord.ui.Select` + And the following are new items under the "Components V2" specification: + + - :class:`discord.ui.Section` + - :class:`discord.ui.TextDisplay` + - :class:`discord.ui.Thumbnail` + - :class:`discord.ui.MediaGallery` + - :class:`discord.ui.File` + - :class:`discord.ui.Separator` + - :class:`discord.ui.Container` + .. versionadded:: 2.0 + + .. versionchanged:: 2.7 + Added V2 Components. """ __item_repr_attributes__: tuple[str, ...] = ("row",) @@ -58,6 +71,7 @@ def __init__(self): self._view: V | None = None self._row: int | None = None self._rendered_row: int | None = None + self._underlying: Component | None = None # This works mostly well but there is a gotcha with # the interaction with from_component, since that technically provides # a custom_id most dispatchable items would get this set to True even though @@ -65,16 +79,20 @@ def __init__(self): # actually affect the intended purpose of this check because from_component is # only called upon edit and we're mainly interested during initial creation time. self._provided_custom_id: bool = False + self.parent: Item | View | None = self.view def to_component_dict(self) -> dict[str, Any]: raise NotImplementedError def refresh_component(self, component: Component) -> None: - return None + self._underlying = component def refresh_state(self, interaction: Interaction) -> None: return None + def refresh_from_modal(self, interaction: Interaction, data: dict) -> None: + return None + @classmethod def from_component(cls: type[I], component: Component) -> I: return cls() @@ -86,8 +104,17 @@ def type(self) -> ComponentType: def is_dispatchable(self) -> bool: return False + def is_storable(self) -> bool: + return False + def is_persistent(self) -> bool: - return self._provided_custom_id + return not self.is_dispatchable() or self._provided_custom_id + + def uses_label(self) -> bool: + return False + + def copy_text(self) -> str: + return "" def __repr__(self) -> str: attrs = " ".join( @@ -97,24 +124,77 @@ def __repr__(self) -> str: @property def row(self) -> int | None: + """Gets or sets the row position of this item within its parent view. + + The row position determines the vertical placement of the item in the UI. + The value must be an integer between 0 and 39 (inclusive), or ``None`` to indicate + that no specific row is set. + + Returns + ------- + Optional[:class:`int`] + The row position of the item, or ``None`` if not explicitly set. + + Raises + ------ + ValueError + If the row value is not ``None`` and is outside the range [0, 39]. + """ return self._row @row.setter def row(self, value: int | None): if value is None: self._row = None - elif 5 > value >= 0: + elif 39 > value >= 0: self._row = value else: - raise ValueError("row cannot be negative or greater than or equal to 5") + raise ValueError("row cannot be negative or greater than or equal to 39") @property def width(self) -> int: + """Gets the width of the item in the UI layout. + + The width determines how much horizontal space this item occupies within its row. + + Returns + ------- + :class:`int` + The width of the item. Defaults to 1. + """ return 1 + @property + def id(self) -> int | None: + """Gets this item's ID. + + This can be set by the user when constructing an Item. If not, Discord will automatically provide one when the View is sent. + + Returns + ------- + Optional[:class:`int`] + The ID of this item, or ``None`` if the user didn't set one. + """ + return self._underlying and self._underlying.id + + @id.setter + def id(self, value) -> None: + if not self._underlying: + return + self._underlying.id = value + @property def view(self) -> V | None: - """The underlying view for this item.""" + """Gets the parent view associated with this item. + + The view refers to the container that holds this item. This is typically set + automatically when the item is added to a view. + + Returns + ------- + Optional[:class:`View`] + The parent view of this item, or ``None`` if the item is not attached to any view. + """ return self._view async def callback(self, interaction: Interaction): diff --git a/discord/ui/media_gallery.py b/discord/ui/media_gallery.py new file mode 100644 index 0000000000..b50daef71c --- /dev/null +++ b/discord/ui/media_gallery.py @@ -0,0 +1,127 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING, TypeVar + +from ..components import MediaGallery as MediaGalleryComponent +from ..components import MediaGalleryItem +from ..enums import ComponentType +from .item import Item + +__all__ = ("MediaGallery",) + +if TYPE_CHECKING: + from typing_extensions import Self + + from ..types.components import MediaGalleryComponent as MediaGalleryComponentPayload + from .view import View + + +M = TypeVar("M", bound="MediaGallery") +V = TypeVar("V", bound="View", covariant=True) + + +class MediaGallery(Item[V]): + """Represents a UI Media Gallery. Galleries may contain up to 10 :class:`MediaGalleryItem` objects. + + .. versionadded:: 2.7 + + Parameters + ---------- + *items: :class:`MediaGalleryItem` + The initial items contained in this gallery, up to 10. + id: Optional[:class:`int`] + The gallery's ID. + """ + + __item_repr_attributes__: tuple[str, ...] = ( + "items", + "id", + ) + + def __init__(self, *items: MediaGalleryItem, id: int | None = None): + super().__init__() + + self._underlying = MediaGalleryComponent._raw_construct( + type=ComponentType.media_gallery, id=id, items=[i for i in items] + ) + + @property + def items(self): + return self._underlying.items + + def append_item(self, item: MediaGalleryItem) -> Self: + """Adds a :attr:`MediaGalleryItem` to the gallery. + + Parameters + ---------- + item: :class:`MediaGalleryItem` + The gallery item to add to the gallery. + + Raises + ------ + TypeError + A :class:`MediaGalleryItem` was not passed. + ValueError + Maximum number of items has been exceeded (10). + """ + + if len(self.items) >= 10: + raise ValueError("maximum number of children exceeded") + + if not isinstance(item, MediaGalleryItem): + raise TypeError(f"expected MediaGalleryItem not {item.__class__!r}") + + self._underlying.items.append(item) + return self + + def add_item( + self, + url: str, + *, + description: str = None, + spoiler: bool = False, + ) -> None: + """Adds a new media item to the gallery. + + Parameters + ---------- + url: :class:`str` + The URL of the media item. This can either be an arbitrary URL or an ``attachment://`` URL. + description: Optional[:class:`str`] + The media item's description, up to 1024 characters. + spoiler: Optional[:class:`bool`] + Whether the media item has the spoiler overlay. + + Raises + ------ + ValueError + Maximum number of items has been exceeded (10). + """ + + if len(self.items) >= 10: + raise ValueError("maximum number of items exceeded") + + item = MediaGalleryItem(url, description=description, spoiler=spoiler) + + return self.append_item(item) + + @Item.view.setter + def view(self, value): + self._view = value + + @property + def type(self) -> ComponentType: + return self._underlying.type + + @property + def width(self) -> int: + return 5 + + def to_component_dict(self) -> MediaGalleryComponentPayload: + return self._underlying.to_dict() + + @classmethod + def from_component(cls: type[M], component: MediaGalleryComponent) -> M: + return cls(*component.items, id=component.id) + + callback = None diff --git a/discord/ui/modal.py b/discord/ui/modal.py index 966e6abe0f..32bf5853bc 100644 --- a/discord/ui/modal.py +++ b/discord/ui/modal.py @@ -4,12 +4,16 @@ import os import sys import time -import traceback from functools import partial from itertools import groupby -from typing import TYPE_CHECKING, Any, Callable +from typing import TYPE_CHECKING, Any, Callable, TypeVar, Union +from ..enums import ComponentType +from ..utils import find from .input_text import InputText +from .item import Item +from .select import Select +from .text_display import TextDisplay __all__ = ( "Modal", @@ -18,9 +22,15 @@ if TYPE_CHECKING: + from typing_extensions import Self + from ..interactions import Interaction from ..state import ConnectionState +M = TypeVar("M", bound="Modal", covariant=True) + +ModalItem = Union[InputText, Item[M]] + class Modal: """Represents a UI Modal dialog. @@ -29,10 +39,14 @@ class Modal: .. versionadded:: 2.0 + .. versionchanged:: 2.7 + + :class:`discord.ui.Select` and :class:`discord.ui.TextDisplay` can now be used in modals. + Parameters ---------- - children: :class:`InputText` - The initial InputText fields that are displayed in the modal dialog. + children: Union[:class:`InputText`, :class:`Item`] + The initial items that are displayed in the modal dialog. Currently supports :class:`discord.ui.Select` and :class:`discord.ui.TextDisplay`. title: :class:`str` The title of the modal dialog. Must be 45 characters or fewer. @@ -44,9 +58,15 @@ class Modal: If ``None`` then there is no timeout. """ + __item_repr_attributes__: tuple[str, ...] = ( + "title", + "children", + "timeout", + ) + def __init__( self, - *children: InputText, + *children: ModalItem, title: str, custom_id: str | None = None, timeout: float | None = None, @@ -60,7 +80,7 @@ def __init__( if len(title) > 45: raise ValueError("title must be 45 characters or fewer") self._title = title - self._children: list[InputText] = list(children) + self._children: list[ModalItem] = list(children) self._weights = _ModalWeights(self._children) loop = asyncio.get_running_loop() self._stopped: asyncio.Future[bool] = loop.create_future() @@ -69,6 +89,12 @@ def __init__( self.__timeout_task: asyncio.Task[None] | None = None self.loop = asyncio.get_event_loop() + def __repr__(self) -> str: + attrs = " ".join( + f"{key}={getattr(self, key)!r}" for key in self.__item_repr_attributes__ + ) + return f"<{self.__class__.__name__} {attrs}>" + def _start_listening_from_store(self, store: ModalStore) -> None: self.__cancel_callback = partial(store.remove_modal) if self.timeout: @@ -125,16 +151,16 @@ def title(self, value: str): self._title = value @property - def children(self) -> list[InputText]: + def children(self) -> list[ModalItem]: """The child components associated with the modal dialog.""" return self._children @children.setter - def children(self, value: list[InputText]): + def children(self, value: list[ModalItem]): for item in value: - if not isinstance(item, InputText): + if not isinstance(item, (InputText, Item)): raise TypeError( - "all Modal children must be InputText, not" + "all Modal children must be InputText or Item, not" f" {item.__class__.__name__}" ) self._weights = _ModalWeights(self._children) @@ -169,55 +195,101 @@ async def callback(self, interaction: Interaction): self.stop() def to_components(self) -> list[dict[str, Any]]: - def key(item: InputText) -> int: + def key(item: ModalItem) -> int: return item._rendered_row or 0 children = sorted(self._children, key=key) components: list[dict[str, Any]] = [] for _, group in groupby(children, key=key): - children = [item.to_component_dict() for item in group] + labels = False + toplevel = False + children = [] + for item in group: + if item.uses_label() or isinstance(item, Select): + labels = True + elif isinstance(item, (TextDisplay,)): + toplevel = True + children.append(item) if not children: continue - components.append( - { - "type": 1, - "components": children, - } - ) + if labels: + for item in children: + component = item.to_component_dict() + label = component.pop("label", item.label) + components.append( + { + "type": 18, + "component": component, + "label": label, + "description": item.description, + } + ) + elif toplevel: + components += [item.to_component_dict() for item in children] + else: + components.append( + { + "type": 1, + "components": [item.to_component_dict() for item in children], + } + ) return components - def add_item(self, item: InputText): - """Adds an InputText component to the modal dialog. + def add_item(self, item: ModalItem) -> Self: + """Adds a component to the modal dialog. Parameters ---------- - item: :class:`InputText` + item: Union[class:`InputText`, :class:`Item`] The item to add to the modal dialog """ if len(self._children) > 5: raise ValueError("You can only have up to 5 items in a modal dialog.") - if not isinstance(item, InputText): - raise TypeError(f"expected InputText not {item.__class__!r}") + if not isinstance(item, (InputText, Item)): + raise TypeError(f"expected InputText or Item, not {item.__class__!r}") + if isinstance(item, (InputText, Select)) and not item.label: + raise ValueError("InputTexts and Selects must have a label set") self._weights.add_item(item) self._children.append(item) + return self - def remove_item(self, item: InputText): - """Removes an InputText component from the modal dialog. + def remove_item(self, item: ModalItem) -> Self: + """Removes a component from the modal dialog. Parameters ---------- - item: :class:`InputText` + item: Union[class:`InputText`, :class:`Item`] The item to remove from the modal dialog. """ try: self._children.remove(item) except ValueError: pass + return self + + def get_item(self, id: str | int) -> ModalItem | None: + """Gets an item from the modal. Roughly equal to `utils.get(modal.children, ...)`. + If an :class:`int` is provided, the item will be retrieved by ``id``, otherwise by ``custom_id``. + + Parameters + ---------- + id: Union[:class:`int`, :class:`str`] + The id or custom_id of the item to get + + Returns + ------- + Optional[Union[class:`InputText`, :class:`Item`]] + The item with the matching ``custom_id`` or ``id`` if it exists. + """ + if not id: + return None + attr = "id" if isinstance(id, int) else "custom_id" + return find(lambda i: getattr(i, attr, None) == id, self.children) def stop(self) -> None: """Stops listening to interaction events from the modal dialog.""" @@ -253,10 +325,7 @@ async def on_error(self, error: Exception, interaction: Interaction) -> None: interaction: :class:`~discord.Interaction` The interaction that led to the failure. """ - print(f"Ignoring exception in modal {self}:", file=sys.stderr) - traceback.print_exception( - error.__class__, error, error.__traceback__, file=sys.stderr - ) + interaction.client.dispatch("modal_error", error, interaction) async def on_timeout(self) -> None: """|coro| @@ -268,7 +337,7 @@ async def on_timeout(self) -> None: class _ModalWeights: __slots__ = ("weights",) - def __init__(self, children: list[InputText]): + def __init__(self, children: list[ModalItem]): self.weights: list[int] = [0, 0, 0, 0, 0] key = lambda i: sys.maxsize if i.row is None else i.row @@ -277,14 +346,14 @@ def __init__(self, children: list[InputText]): for item in group: self.add_item(item) - def find_open_space(self, item: InputText) -> int: + def find_open_space(self, item: ModalItem) -> int: for index, weight in enumerate(self.weights): if weight + item.width <= 5: return index raise ValueError("could not find open space for item") - def add_item(self, item: InputText) -> None: + def add_item(self, item: ModalItem) -> None: if item.row is not None: total = self.weights[item.row] + item.width if total > 5: @@ -298,7 +367,7 @@ def add_item(self, item: InputText) -> None: self.weights[index] += item.width item._rendered_row = index - def remove_item(self, item: InputText) -> None: + def remove_item(self, item: ModalItem) -> None: if item._rendered_row is not None: self.weights[item._rendered_row] -= item.width item._rendered_row = None @@ -326,18 +395,23 @@ async def dispatch(self, user_id: int, custom_id: str, interaction: Interaction) value = self._modals.get(key) if value is None: return + interaction.modal = value try: components = [ component for parent_component in interaction.data["components"] - for component in parent_component["components"] + for component in ( + parent_component.get("components") + or ( + [parent_component.get("component")] + if parent_component.get("component") + else [parent_component] + ) + ) ] - for component in components: - for child in value.children: - if child.custom_id == component["custom_id"]: # type: ignore - child.refresh_state(component) - break + for component, child in zip(components, value.children): + child.refresh_from_modal(interaction, component) await value.callback(interaction) self.remove_modal(value, user_id) except Exception as e: diff --git a/discord/ui/section.py b/discord/ui/section.py new file mode 100644 index 0000000000..922f4819ad --- /dev/null +++ b/discord/ui/section.py @@ -0,0 +1,328 @@ +from __future__ import annotations + +from functools import partial +from typing import TYPE_CHECKING, ClassVar, Iterator, TypeVar + +from ..components import Section as SectionComponent +from ..components import _component_factory +from ..enums import ComponentType +from ..utils import find, get +from .button import Button +from .item import Item, ItemCallbackType +from .text_display import TextDisplay +from .thumbnail import Thumbnail + +__all__ = ("Section",) + +if TYPE_CHECKING: + from typing_extensions import Self + + from ..types.components import SectionComponent as SectionComponentPayload + from .view import View + + +S = TypeVar("S", bound="Section") +V = TypeVar("V", bound="View", covariant=True) + + +class Section(Item[V]): + """Represents a UI section. Sections must have 1-3 (inclusive) items and an accessory set. + + .. versionadded:: 2.7 + + Parameters + ---------- + *items: :class:`Item` + The initial items contained in this section, up to 3. + Currently only supports :class:`~discord.ui.TextDisplay`. + Sections must have at least 1 item before being sent. + accessory: Optional[:class:`Item`] + The section's accessory. This is displayed in the top right of the section. + Currently only supports :class:`~discord.ui.Button` and :class:`~discord.ui.Thumbnail`. + Sections must have an accessory attached before being sent. + id: Optional[:class:`int`] + The section's ID. + """ + + __item_repr_attributes__: tuple[str, ...] = ( + "items", + "accessory", + "id", + ) + + __section_accessory_item__: ClassVar[ItemCallbackType] = [] + + def __init_subclass__(cls) -> None: + accessory: list[ItemCallbackType] = [] + for base in reversed(cls.__mro__): + for member in base.__dict__.values(): + if hasattr(member, "__discord_ui_model_type__"): + accessory.append(member) + + cls.__section_accessory_item__ = accessory + + def __init__(self, *items: Item, accessory: Item = None, id: int | None = None): + super().__init__() + + self.items: list[Item] = [] + self.accessory: Item | None = None + + self._underlying = SectionComponent._raw_construct( + type=ComponentType.section, + id=id, + components=[], + accessory=None, + ) + for func in self.__section_accessory_item__: + item: Item = func.__discord_ui_model_type__( + **func.__discord_ui_model_kwargs__ + ) + item.callback = partial(func, self, item) + self.set_accessory(item) + setattr(self, func.__name__, item) + if accessory: + self.set_accessory(accessory) + for i in items: + self.add_item(i) + + def _add_component_from_item(self, item: Item): + self._underlying.components.append(item._underlying) + + def _set_components(self, items: list[Item]): + self._underlying.components.clear() + for item in items: + self._add_component_from_item(item) + + def add_item(self, item: Item) -> Self: + """Adds an item to the section. + + Parameters + ---------- + item: :class:`Item` + The item to add to the section. + + Raises + ------ + TypeError + An :class:`Item` was not passed. + ValueError + Maximum number of items has been exceeded (3). + """ + + if len(self.items) >= 3: + raise ValueError("maximum number of children exceeded") + + if not isinstance(item, Item): + raise TypeError(f"expected Item not {item.__class__!r}") + + item.parent = self + self.items.append(item) + self._add_component_from_item(item) + return self + + def remove_item(self, item: Item | str | int) -> Self: + """Removes an item from the section. If an :class:`int` or :class:`str` is passed, + the item will be removed by Item ``id`` or ``custom_id`` respectively. + + Parameters + ---------- + item: Union[:class:`Item`, :class:`int`, :class:`str`] + The item, item ``id``, or item ``custom_id`` to remove from the section. + """ + + if isinstance(item, (str, int)): + item = self.get_item(item) + try: + self.items.remove(item) + except ValueError: + pass + return self + + def get_item(self, id: int | str) -> Item | None: + """Get an item from this section. Alias for `utils.get(section.walk_items(), ...)`. + If an ``int`` is provided, it will be retrieved by ``id``, otherwise it will check the accessory's ``custom_id``. + + Parameters + ---------- + id: Union[:class:`str`, :class:`int`] + The id or custom_id of the item to get. + + Returns + ------- + Optional[:class:`Item`] + The item with the matching ``id`` if it exists. + """ + if not id: + return None + attr = "id" if isinstance(id, int) else "custom_id" + if self.accessory and id == getattr(self.accessory, attr, None): + return self.accessory + child = find(lambda i: getattr(i, attr, None) == id, self.items) + return child + + def add_text(self, content: str, *, id: int | None = None) -> Self: + """Adds a :class:`TextDisplay` to the section. + + Parameters + ---------- + content: :class:`str` + The content of the text display. + id: Optional[:class:`int`] + The text display's ID. + + Raises + ------ + ValueError + Maximum number of items has been exceeded (3). + """ + + if len(self.items) >= 3: + raise ValueError("maximum number of children exceeded") + + text = TextDisplay(content, id=id) + + return self.add_item(text) + + def set_accessory(self, item: Item) -> Self: + """Set an item as the section's :attr:`accessory`. + + Parameters + ---------- + item: :class:`Item` + The item to set as accessory. + Currently only supports :class:`~discord.ui.Button` and :class:`~discord.ui.Thumbnail`. + + Raises + ------ + TypeError + An :class:`Item` was not passed. + """ + + if not isinstance(item, Item): + raise TypeError(f"expected Item not {item.__class__!r}") + if self.view: + item._view = self.view + item.parent = self + + self.accessory = item + self._underlying.accessory = item._underlying + return self + + def set_thumbnail( + self, + url: str, + *, + description: str | None = None, + spoiler: bool = False, + id: int | None = None, + ) -> Self: + """Sets a :class:`Thumbnail` with the provided URL as the section's :attr:`accessory`. + + Parameters + ---------- + url: :class:`str` + The url of the thumbnail. + description: Optional[:class:`str`] + The thumbnail's description, up to 1024 characters. + spoiler: Optional[:class:`bool`] + Whether the thumbnail has the spoiler overlay. Defaults to ``False``. + id: Optional[:class:`int`] + The thumbnail's ID. + """ + + thumbnail = Thumbnail(url, description=description, spoiler=spoiler, id=id) + + return self.set_accessory(thumbnail) + + @Item.view.setter + def view(self, value): + self._view = value + for item in self.walk_items(): + item._view = value + item.parent = self + + def copy_text(self) -> str: + """Returns the text of all :class:`~discord.ui.TextDisplay` items in this section. + Equivalent to the `Copy Text` option on Discord clients. + """ + return "\n".join(t for i in self.items if (t := i.copy_text())) + + @property + def type(self) -> ComponentType: + return self._underlying.type + + @property + def width(self) -> int: + return 5 + + def is_dispatchable(self) -> bool: + return self.accessory and self.accessory.is_dispatchable() + + def is_persistent(self) -> bool: + if not isinstance(self.accessory, Button): + return True + return self.accessory.is_persistent() + + def refresh_component(self, component: SectionComponent) -> None: + self._underlying = component + for x, y in zip(self.items, component.components): + x.refresh_component(y) + if self.accessory and component.accessory: + self.accessory.refresh_component(component.accessory) + + def disable_all_items(self, *, exclusions: list[Item] | None = None) -> Self: + """ + Disables all buttons and select menus in the section. + At the moment, this only disables :attr:`accessory` if it is a button. + + Parameters + ---------- + exclusions: Optional[List[:class:`Item`]] + A list of items in `self.items` to not disable from the view. + """ + for item in self.walk_items(): + if hasattr(item, "disabled") and ( + exclusions is None or item not in exclusions + ): + item.disabled = True + return self + + def enable_all_items(self, *, exclusions: list[Item] | None = None) -> Self: + """ + Enables all buttons and select menus in the section. + At the moment, this only enables :attr:`accessory` if it is a button. + + Parameters + ---------- + exclusions: Optional[List[:class:`Item`]] + A list of items in `self.items` to not enable from the view. + """ + for item in self.walk_items(): + if hasattr(item, "disabled") and ( + exclusions is None or item not in exclusions + ): + item.disabled = False + return self + + def walk_items(self) -> Iterator[Item]: + r = self.items + if self.accessory: + yield from r + [self.accessory] + else: + yield from r + + def to_component_dict(self) -> SectionComponentPayload: + self._set_components(self.items) + if self.accessory: + self.set_accessory(self.accessory) + return self._underlying.to_dict() + + @classmethod + def from_component(cls: type[S], component: SectionComponent) -> S: + from .view import _component_to_item + + items = [_component_to_item(c) for c in component.components] + accessory = _component_to_item(component.accessory) + return cls(*items, accessory=accessory, id=component.id) + + callback = None diff --git a/discord/ui/select.py b/discord/ui/select.py index 496446e61c..a779016b4e 100644 --- a/discord/ui/select.py +++ b/discord/ui/select.py @@ -27,12 +27,15 @@ import inspect import os -from typing import TYPE_CHECKING, Callable, TypeVar +import sys +from collections.abc import Sequence +from functools import partial +from typing import TYPE_CHECKING, Any, Callable, Generic, Literal, TypeVar, overload from ..channel import _threaded_guild_channel_factory -from ..components import SelectMenu, SelectOption +from ..components import SelectDefaultValue, SelectMenu, SelectOption from ..emoji import AppEmoji, GuildEmoji -from ..enums import ChannelType, ComponentType +from ..enums import ChannelType, ComponentType, SelectDefaultValueType from ..errors import InvalidArgument from ..interactions import Interaction from ..member import Member @@ -51,19 +54,33 @@ "role_select", "mentionable_select", "channel_select", + "StringSelect", + "UserSelect", + "RoleSelect", + "MentionableSelect", + "ChannelSelect", ) if TYPE_CHECKING: - from ..abc import GuildChannel + from typing_extensions import Self + + from ..abc import GuildChannel, Snowflake from ..types.components import SelectMenu as SelectMenuPayload from ..types.interactions import ComponentInteractionData from .view import View + ST = TypeVar("ST", bound=Snowflake | str, covariant=True, default=Any) +else: + if sys.version_info >= (3, 13): + ST = TypeVar("ST", bound="Snowflake | str", covariant=True, default=Any) + else: + ST = TypeVar("ST", bound="Snowflake | str", covariant=True) + S = TypeVar("S", bound="Select") V = TypeVar("V", bound="View", covariant=True) -class Select(Item[V]): +class Select(Generic[V, ST], Item[V]): """Represents a UI select menu. This is usually represented as a drop down menu. @@ -78,6 +95,10 @@ class Select(Item[V]): :attr:`discord.ComponentType.role_select`, :attr:`discord.ComponentType.mentionable_select`, and :attr:`discord.ComponentType.channel_select`. + .. versionchanged:: 2.7 + + Can now be sent in :class:`discord.ui.Modal`. + Parameters ---------- select_type: :class:`discord.ComponentType` @@ -85,6 +106,10 @@ class Select(Item[V]): :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`. + + The default is :attr:`discord.ComponentType.string_select`, but if this is created using any of the provided + aliases: :class:`StringSelect`, :class:`RoleSelect`, :class:`UserSelect`, :class:`MentionableSelect`, or + :class:`ChannelSelect`, the default will be its respective select type. custom_id: :class:`str` The ID of the select menu that gets received during an interaction. If not given then one is generated for you. @@ -103,13 +128,60 @@ class Select(Item[V]): A list of channel types that can be selected in this menu. Only valid for selects of type :attr:`discord.ComponentType.channel_select`. disabled: :class:`bool` - Whether the select is disabled or not. + Whether the select is disabled or not. Only useable in views. Defaults to ``False`` in views. row: Optional[:class:`int`] 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). + id: Optional[:class:`int`] + The select menu's ID. + label: Optional[:class:`str`] + The label for the select menu. Only useable in modals. + Must be 45 characters or fewer. + + .. versionadded:: 2.7 + description: Optional[:class:`str`] + The description for the select menu. Only useable in modals. + Must be 100 characters or fewer. + + .. versionadded:: 2.7 + required: Optional[:class:`bool`] + Whether the select is required or not. Only useable in modals. Defaults to ``True`` in modals. + + .. versionadded:: 2.7 + default_values: Optional[Sequence[Union[:class:`discord.SelectDefaultValue`, :class:`discord.abc.Snowflake`]]] + The default values of this select. Only applicable if :attr:`.select_type` is not :attr:`discord.ComponentType.string_select`. + + These can be either :class:`discord.SelectDefaultValue` instances or models, which will be converted into :class:`discord.SelectDefaultValue` + instances. + + Below, is a table defining the model instance type and the default value type it will be mapped: + + +-----------------------------------+--------------------------------------------------------------------------+ + | Model Type | Default Value Type | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.User` | :attr:`discord.SelectDefaultValueType.user` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.Member` | :attr:`discord.SelectDefaultValueType.user` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.Role` | :attr:`discord.SelectDefaultValueType.role` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.abc.GuildChannel` | :attr:`discord.SelectDefaultValueType.channel` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.Object` | depending on :attr:`discord.Object.type`, it will be mapped to any above | + +-----------------------------------+--------------------------------------------------------------------------+ + + If you pass a model that is not defined in the table, ``TypeError`` will be raised. + + .. note:: + + The :class:`discord.abc.GuildChannel` protocol includes :class:`discord.TextChannel`, :class:`discord.VoiceChannel`, :class:`discord.StageChannel`, + :class:`discord.ForumChannel`, :class:`discord.Thread`, :class:`discord.MediaChannel`. This list is not exhaustive, and is bound to change + based of the new channel types Discord adds. + + .. versionadded:: 2.7 """ __item_repr_attributes__: tuple[str, ...] = ( @@ -120,8 +192,73 @@ class Select(Item[V]): "options", "channel_types", "disabled", + "custom_id", + "id", + "label", + "description", + "required", + "default_values", ) + @overload + def __init__( + self, + select_type: Literal[ComponentType.string_select] = ..., + *, + custom_id: str | None = ..., + placeholder: str | None = ..., + min_values: int = ..., + max_values: int = ..., + options: list[SelectOption] | None = ..., + disabled: bool = ..., + row: int | None = ..., + id: int | None = ..., + label: str | None = ..., + description: str | None = ..., + required: bool | None = ..., + ) -> None: ... + + @overload + def __init__( + self, + select_type: Literal[ComponentType.channel_select] = ..., + *, + custom_id: str | None = ..., + placeholder: str | None = ..., + min_values: int = ..., + max_values: int = ..., + channel_types: list[ChannelType] | None = ..., + disabled: bool = ..., + row: int | None = ..., + id: int | None = ..., + label: str | None = ..., + description: str | None = ..., + required: bool | None = ..., + default_values: Sequence[SelectDefaultValue | ST] | None = ..., + ) -> None: ... + + @overload + def __init__( + self, + select_type: Literal[ + ComponentType.user_select, + ComponentType.role_select, + ComponentType.mentionable_select, + ] = ..., + *, + custom_id: str | None = ..., + placeholder: str | None = ..., + min_values: int = ..., + max_values: int = ..., + disabled: bool = ..., + row: int | None = ..., + id: int | None = ..., + label: str | None = ..., + description: str | None = ..., + required: bool | None = ..., + default_values: Sequence[SelectDefaultValue | ST] | None = ..., + ) -> None: ... + def __init__( self, select_type: ComponentType = ComponentType.string_select, @@ -130,17 +267,28 @@ def __init__( placeholder: str | None = None, min_values: int = 1, max_values: int = 1, - options: list[SelectOption] = None, - channel_types: list[ChannelType] = None, + options: list[SelectOption] | None = None, + channel_types: list[ChannelType] | None = None, disabled: bool = False, row: int | None = None, + id: int | None = None, + label: str | None = None, + description: str | None = None, + required: bool | None = None, + default_values: Sequence[SelectDefaultValue | ST] | None = None, ) -> None: if options and select_type is not ComponentType.string_select: raise InvalidArgument("options parameter is only valid for string selects") + if label and len(label) > 45: + raise ValueError("label must be 45 characters or fewer") + if description and len(description) > 100: + raise ValueError("description must be 100 characters or fewer") if channel_types and select_type is not ComponentType.channel_select: raise InvalidArgument( "channel_types parameter is only valid for channel selects" ) + if required and min_values < 1: + raise ValueError("min_values must be greater than 0 when required=True") super().__init__() self._selected_values: list[str] = [] self._interaction: Interaction | None = None @@ -155,6 +303,9 @@ def __init__( f"expected custom_id to be str, not {custom_id.__class__.__name__}" ) + self.label: str | None = label + self.description: str | None = description + self._provided_custom_id = custom_id is not None custom_id = os.urandom(16).hex() if custom_id is None else custom_id self._underlying: SelectMenu = SelectMenu._raw_construct( @@ -166,9 +317,56 @@ def __init__( disabled=disabled, options=options or [], channel_types=channel_types or [], + id=id, + required=required, + default_values=self._handle_default_values(default_values, select_type), ) self.row = row + def _handle_default_values( + self, + default_values: Sequence[Snowflake | ST] | None, + select_type: ComponentType, + ) -> list[SelectDefaultValue]: + if not default_values: + return [] + + ret = [] + + valid_default_types = { + ComponentType.user_select: (SelectDefaultValueType.user,), + ComponentType.role_select: (SelectDefaultValueType.role,), + ComponentType.channel_select: (SelectDefaultValueType.channel,), + ComponentType.mentionable_select: ( + SelectDefaultValueType.user, + SelectDefaultValueType.role, + ), + } + + for dv in default_values: + if isinstance(dv, SelectDefaultValue): + try: + valid_types = valid_default_types[select_type] + except KeyError: + raise TypeError( + f"select default values are not allowed for this select type ({select_type.name})" + ) + + if dv.type not in valid_types: + raise TypeError( + f"{dv.type.name} is not a valid select default value for selects of type {select_type.name}" + ) + + ret.append(dv) + continue + if isinstance(dv, str): + # this should not be here anyways, but guarding it + continue + + ret.append(SelectDefaultValue._handle_model(dv, select_type)) + + return ret + @property def custom_id(self) -> str: """The ID of the select menu that gets received during an interaction.""" @@ -181,6 +379,7 @@ def custom_id(self, value: str): if len(value) > 100: raise ValueError("custom_id must be 100 characters or fewer") self._underlying.custom_id = value + self._provided_custom_id = value is not None @property def placeholder(self) -> str | None: @@ -223,6 +422,15 @@ def disabled(self) -> bool: """Whether the select is disabled or not.""" return self._underlying.disabled + @property + def required(self) -> bool: + """Whether the select is required or not. Only applicable in modal selects.""" + return self._underlying.required + + @required.setter + def required(self, value: bool): + self._underlying.required = value + @disabled.setter def disabled(self, value: bool): self._underlying.disabled = bool(value) @@ -254,6 +462,132 @@ def options(self, value: list[SelectOption]): self._underlying.options = value + @property + def default_values(self) -> list[SelectDefaultValue]: + """A list of the select's default values. This is only applicable if + the select type is not :attr:`discord.ComponentType.string_select`. + + .. versionadded:: 2.7 + """ + return self._underlying.default_values + + @default_values.setter + def default_values( + self, values: Sequence[SelectDefaultValue | Snowflake] | None + ) -> None: + default_values = self._handle_default_values(values, self.type) + self._underlying.default_values = default_values + + def add_default_value( + self, + *, + id: int, + type: SelectDefaultValueType = MISSING, + ) -> Self: + """Adds a default value to the select menu. + + To append a pre-existing :class:`discord.SelectDefaultValue` use the + :meth:`append_default_value` method instead. + + .. versionadded:: 2.7 + + Parameters + ---------- + id: :class:`int` + The ID of the entity to add as a default. + type: :class:`discord.SelectDefaultValueType` + The default value type of the ID. This is only required if :attr:`.type` is of + type :attr:`discord.ComponentType.mentionable_select`. + + Raises + ------ + TypeError + The select type is a mentionable_select and type was not provided, or the select + type is string_select. + ValueError + The number of default select values exceeds 25. + """ + if type is MISSING and self.type is ComponentType.mentionable_select: + raise TypeError( + "type is required when select is of type mentionable_select" + ) + + types = { + ComponentType.user_select: SelectDefaultValueType.user, + ComponentType.role_select: SelectDefaultValueType.role, + ComponentType.channel_select: SelectDefaultValueType.channel, + } + + def_type = types.get(self.type, type) + self.append_default_value(SelectDefaultValue(id=id, type=def_type)) + return self + + def append_default_value( + self, + value: SelectDefaultValue | Snowflake, + /, + ) -> Self: + """Appends a default value to this select menu. + + .. versionadded:: 2.7 + + Parameters + ---------- + value: Union[:class:`discord.SelectDefaultValue`, :class:`discord.abc.Snowflake`] + The default value to append to this select. + + These can be either :class:`discord.SelectDefaultValue` instances or models, which will be converted into :class:`discord.SelectDefaultvalue` + instances. + + Below, is a table defining the model instance type and the default value type it will be mapped: + + +-----------------------------------+--------------------------------------------------------------------------+ + | Model Type | Default Value Type | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.User` | :attr:`discord.SelectDefaultValueType.user` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.Member` | :attr:`discord.SelectDefaultValueType.user` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.Role` | :attr:`discord.SelectDefaultValueType.role` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.abc.GuildChannel` | :attr:`discord.SelectDefaultValueType.channel` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.Object` | depending on :attr:`discord.Object.type`, it will be mapped to any above | + +-----------------------------------+--------------------------------------------------------------------------+ + + If you pass a model that is not defined in the table, ``TypeError`` will be raised. + + .. note:: + + The :class:`discord.abc.GuildChannel` protocol includes :class:`discord.TextChannel`, :class:`discord.VoiceChannel`, :class:`discord.StageChannel`, + :class:`discord.ForumChannel`, :class:`discord.Thread`, :class:`discord.MediaChannel`. This list is not exhaustive, and is bound to change + based of the new channel types Discord adds. + + Raises + ------ + TypeError + The select type is string_select, which does not allow for default_values + ValueError + The number of default select values exceeds 25. + """ + + if self.type is ComponentType.string_select: + raise TypeError("string_select selects do not allow default_values") + + if len(self.default_values) >= 25: + raise ValueError("maximum number of default values exceeded (25)") + + if not isinstance(value, SelectDefaultValue): + value = SelectDefaultValue._handle_model(value) + + if not isinstance(value, SelectDefaultValue): + raise TypeError( + f"expected a SelectDefaultValue object, got {value.__class__.__name__}" + ) + + self._underlying.default_values.append(value) + return self + def add_option( self, *, @@ -262,7 +596,7 @@ def add_option( description: str | None = None, emoji: str | GuildEmoji | AppEmoji | PartialEmoji | None = None, default: bool = False, - ): + ) -> Self: """Adds an option to the select menu. To append a pre-existing :class:`discord.SelectOption` use the @@ -301,9 +635,9 @@ def add_option( default=default, ) - self.append_option(option) + return self.append_option(option) - def append_option(self, option: SelectOption): + def append_option(self, option: SelectOption) -> Self: """Appends an option to the select menu. Parameters @@ -323,31 +657,28 @@ def append_option(self, option: SelectOption): raise ValueError("maximum number of options already provided") self._underlying.options.append(option) + return self @property - def values( - self, - ) -> ( - list[str] - | list[Member | User] - | list[Role] - | list[Member | User | Role] - | list[GuildChannel | Thread] - ): + def values(self) -> list[ST]: """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. """ - if self._interaction is None: + if self._interaction is None or self._interaction.data is None: # The select has not been interacted with yet - return None + return [] select_type = self._underlying.type if select_type is ComponentType.string_select: - return self._selected_values + return self._selected_values # type: ignore # ST is str resolved = [] selected_values = list(self._selected_values) state = self._interaction._state guild = self._interaction.guild + + if guild is None: + return [] + resolved_data = self._interaction.data.get("resolved", {}) if select_type is ComponentType.channel_select: for channel_id, _data in resolved_data.get("channels", {}).items(): @@ -372,6 +703,9 @@ def values( # For threads, if this fallback occurs, info like thread owner id, message count, # flags, and more will be missing due to a lack of data sent by Discord. obj_type = _threaded_guild_channel_factory(_data["type"])[0] + if obj_type is None: + # should not be None, but assert anyways + continue result = obj_type(state=state, data=_data, guild=guild) resolved.append(result) elif select_type in ( @@ -410,8 +744,14 @@ def to_component_dict(self) -> SelectMenuPayload: def refresh_component(self, component: SelectMenu) -> None: self._underlying = component - def refresh_state(self, interaction: Interaction) -> None: - data: ComponentInteractionData = interaction.data # type: ignore + def refresh_state(self, interaction: Interaction | dict) -> None: + data: ComponentInteractionData = ( + interaction.data if isinstance(interaction, Interaction) else interaction # type: ignore + ) + self._selected_values = data.get("values", []) + self._interaction = interaction + + def refresh_from_modal(self, interaction: Interaction | dict, data: dict) -> None: self._selected_values = data.get("values", []) self._interaction = interaction @@ -427,7 +767,10 @@ def from_component(cls: type[S], component: SelectMenu) -> S: channel_types=component.channel_types, disabled=component.disabled, row=None, - ) + id=component.id, + required=component.required, + default_values=component.default_values, + ) # type: ignore @property def type(self) -> ComponentType: @@ -436,6 +779,74 @@ def type(self) -> ComponentType: def is_dispatchable(self) -> bool: return True + def is_storable(self) -> bool: + return True + + def uses_label(self) -> bool: + return bool(self.label or self.description or (self.required is not None)) + + +if TYPE_CHECKING: + StringSelect = Select[V, str] + """A typed alias for :class:`Select` for string values. + + When creating an instance with this, it will automatically provide the ``select_type`` + parameter as a :attr:`discord.ComponentType.string_select`. + """ + UserSelect = Select[V, User | Member] + """A typed alias for :class:`Select` for user-like values. + + When creating an instance with this, it will automatically provide the ``select_type`` + parameter as a :attr:`discord.ComponentType.user_select`. + """ + RoleSelect = Select[V, Role] + """A typed alias for :class:`Select` for role values. + + When creating an instance with this, it will automatically provide the ``select_type`` + parameter as a :attr:`discord.ComponentType.role_select`. + """ + MentionableSelect = Select[V, User | Member | Role] + """A typed alias for :class:`Select` for mentionable (role and user-like) values. + + When creating an instance with this, it will automatically provide the ``select_type`` + parameter as a :attr:`discord.ComponentType.mentionable_select`. + """ + ChannelSelect = Select[V, GuildChannel | Thread] + """A typed alias for :class:`Select` for channel values. + + When creating an instance with this, it will automatically provide the ``select_type`` + parameter as a :attr:`discord.ComponentType.channel_select`. + """ +else: + StringSelect: Select[V, str] = partial( + Select, select_type=ComponentType.string_select + ) + """An alias for :class:`Select` that will pass :attr:`discord.ComponentType.string_select` + as its default ``select_type``. + """ + UserSelect: Select[V, User | Member] = partial( + Select, select_type=ComponentType.user_select + ) + """An alias for :class:`Select` that will pass :attr:`discord.ComponentType.user_select` + as its default ``select_type``. + """ + RoleSelect: Select[V, Role] = partial(Select, select_type=ComponentType.role_select) + """An alias for :class:`Select` that will pass :attr:`discord.ComponentType.role_select` + as its default ``select_type``. + """ + MentionableSelect: Select[V, Role | User | Member] = partial( + Select, select_type=ComponentType.mentionable_select + ) + """An alias for :class:`Select` that will pass :attr:`discord.ComponentType.mentionable_select` + as its default ``select_type``. + """ + ChannelSelect: Select[V, GuildChannel | Thread] = partial( + Select, select_type=ComponentType.channel_select + ) + """An alias for :class:`Select` that will pass :attr:`discord.ComponentType.channel_select` + as its default ``select_type``. + """ + _select_types = ( ComponentType.string_select, @@ -457,7 +868,9 @@ def select( channel_types: list[ChannelType] = MISSING, disabled: bool = False, row: int | None = None, -) -> Callable[[ItemCallbackType], ItemCallbackType]: + id: int | None = None, + default_values: Sequence[SelectDefaultValue | Snowflake] | None = None, +) -> Callable[[ItemCallbackType[Select[V, ST]]], Select[V, ST]]: """A decorator that attaches a select menu to a component. The function being decorated should have three parameters, ``self`` representing @@ -504,6 +917,39 @@ def select( Defaults to all channel types. disabled: :class:`bool` Whether the select is disabled or not. Defaults to ``False``. + id: Optional[:class:`int`] + The select menu's ID. + default_values: Optional[Sequence[Union[:class:`discord.SelectDefaultValue`, :class:`discord.abc.Snowflake`]]] + The default values of this select. Only applicable if :attr:`.select_type` is not :attr:`discord.ComponentType.string_select`. + + This can be either :class:`discord.SelectDefaultValue` instances or models, which will be converted into :class:`discord.SelectDefaultValue` + instances. + + Below, is a table defining the model instance type and the default value type it will be mapped: + + +-----------------------------------+--------------------------------------------------------------------------+ + | Model Type | Default Value Type | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.User` | :attr:`discord.SelectDefaultValueType.user` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.Member` | :attr:`discord.SelectDefaultValueType.user` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.Role` | :attr:`discord.SelectDefaultValueType.role` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.abc.GuildChannel` | :attr:`discord.SelectDefaultValueType.channel` | + +-----------------------------------+--------------------------------------------------------------------------+ + | :class:`discord.Object` | depending on :attr:`discord.Object.type`, it will be mapped to any above | + +-----------------------------------+--------------------------------------------------------------------------+ + + If you pass a model that is not defined in the table, ``TypeError`` will be raised. + + .. note:: + + The :class:`discord.abc.GuildChannel` protocol includes :class:`discord.TextChannel`, :class:`discord.VoiceChannel`, :class:`discord.StageChannel`, + :class:`discord.ForumChannel`, :class:`discord.Thread`, :class:`discord.MediaChannel`. This list is not exhaustive, and is bound to change + based of the new channel types Discord adds. + + .. versionadded:: 2.7 """ if select_type not in _select_types: raise ValueError( @@ -519,6 +965,11 @@ def select( if channel_types is not MISSING and select_type is not ComponentType.channel_select: raise TypeError("channel_types may only be specified for channel selects") + if default_values is not None and select_type is ComponentType.string_select: + raise TypeError( + "default_values may only be specified for selects other than string selects" + ) + def decorator(func: ItemCallbackType) -> ItemCallbackType: if not inspect.iscoroutinefunction(func): raise TypeError("select function must be a coroutine function") @@ -531,6 +982,8 @@ def decorator(func: ItemCallbackType) -> ItemCallbackType: "min_values": min_values, "max_values": max_values, "disabled": disabled, + "id": id, + "default_values": default_values, } if options: model_kwargs["options"] = options @@ -542,7 +995,7 @@ def decorator(func: ItemCallbackType) -> ItemCallbackType: return func - return decorator + return decorator # type: ignore # lie to the type checkers because after a View is instated the select callback is converted into a Select instance def string_select( @@ -554,7 +1007,8 @@ def string_select( options: list[SelectOption] = MISSING, disabled: bool = False, row: int | None = None, -) -> Callable[[ItemCallbackType], ItemCallbackType]: + id: int | None = None, +) -> Callable[[ItemCallbackType[StringSelect[V]]], StringSelect[V]]: """A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.string_select`. .. versionadded:: 2.3 @@ -568,6 +1022,7 @@ def string_select( options=options, disabled=disabled, row=row, + id=id, ) @@ -579,7 +1034,9 @@ def user_select( max_values: int = 1, disabled: bool = False, row: int | None = None, -) -> Callable[[ItemCallbackType], ItemCallbackType]: + id: int | None = None, + default_values: Sequence[SelectDefaultValue | Snowflake] | None = None, +) -> Callable[[ItemCallbackType[UserSelect[V]]], UserSelect[V]]: """A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.user_select`. .. versionadded:: 2.3 @@ -592,6 +1049,8 @@ def user_select( max_values=max_values, disabled=disabled, row=row, + id=id, + default_values=default_values, ) @@ -603,7 +1062,9 @@ def role_select( max_values: int = 1, disabled: bool = False, row: int | None = None, -) -> Callable[[ItemCallbackType], ItemCallbackType]: + id: int | None = None, + default_values: Sequence[SelectDefaultValue | Snowflake] | None = None, +) -> Callable[[ItemCallbackType[RoleSelect[V]]], RoleSelect[V]]: """A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.role_select`. .. versionadded:: 2.3 @@ -616,6 +1077,8 @@ def role_select( max_values=max_values, disabled=disabled, row=row, + id=id, + default_values=default_values, ) @@ -627,7 +1090,12 @@ def mentionable_select( max_values: int = 1, disabled: bool = False, row: int | None = None, -) -> Callable[[ItemCallbackType], ItemCallbackType]: + id: int | None = None, + default_values: Sequence[SelectDefaultValue | Snowflake] | None = None, +) -> Callable[ + [ItemCallbackType[MentionableSelect[V]]], + MentionableSelect[V], +]: """A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.mentionable_select`. .. versionadded:: 2.3 @@ -640,6 +1108,8 @@ def mentionable_select( max_values=max_values, disabled=disabled, row=row, + id=id, + default_values=default_values, ) @@ -652,7 +1122,12 @@ def channel_select( disabled: bool = False, channel_types: list[ChannelType] = MISSING, row: int | None = None, -) -> Callable[[ItemCallbackType], ItemCallbackType]: + id: int | None = None, + default_values: Sequence[SelectDefaultValue | Snowflake] | None = None, +) -> Callable[ + [ItemCallbackType[ChannelSelect[V]]], + ChannelSelect[V], +]: """A shortcut for :meth:`discord.ui.select` with select type :attr:`discord.ComponentType.channel_select`. .. versionadded:: 2.3 @@ -666,4 +1141,6 @@ def channel_select( disabled=disabled, channel_types=channel_types, row=row, + id=id, + default_values=default_values, ) diff --git a/discord/ui/separator.py b/discord/ui/separator.py new file mode 100644 index 0000000000..6b81674401 --- /dev/null +++ b/discord/ui/separator.py @@ -0,0 +1,93 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING, TypeVar + +from ..components import Separator as SeparatorComponent +from ..components import _component_factory +from ..enums import ComponentType, SeparatorSpacingSize +from .item import Item + +__all__ = ("Separator",) + +if TYPE_CHECKING: + from ..types.components import SeparatorComponent as SeparatorComponentPayload + from .view import View + + +S = TypeVar("S", bound="Separator") +V = TypeVar("V", bound="View", covariant=True) + + +class Separator(Item[V]): + """Represents a UI Separator. + + .. versionadded:: 2.7 + + Parameters + ---------- + divider: :class:`bool` + Whether the separator is a divider. Defaults to ``True``. + spacing: :class:`~discord.SeparatorSpacingSize` + The spacing size of the separator. Defaults to :attr:`~discord.SeparatorSpacingSize.small`. + id: Optional[:class:`int`] + The separator's ID. + """ + + __item_repr_attributes__: tuple[str, ...] = ( + "divider", + "spacing", + "id", + ) + + def __init__( + self, + *, + divider: bool = True, + spacing: SeparatorSpacingSize = SeparatorSpacingSize.small, + id: int | None = None, + ): + super().__init__() + + self._underlying = SeparatorComponent._raw_construct( + type=ComponentType.separator, + id=id, + divider=divider, + spacing=spacing, + ) + + @property + def type(self) -> ComponentType: + return self._underlying.type + + @property + def divider(self) -> bool: + """Whether the separator is a divider. Defaults to ``True``.""" + return self._underlying.divider + + @divider.setter + def divider(self, value: bool) -> None: + self._underlying.divider = value + + @property + def spacing(self) -> SeparatorSpacingSize: + """The spacing size of the separator. Defaults to :attr:`~discord.SeparatorSpacingSize.small`.""" + return self._underlying.spacing + + @spacing.setter + def spacing(self, value: SeparatorSpacingSize) -> None: + self._underlying.spacing = value + + @property + def width(self) -> int: + return 5 + + def to_component_dict(self) -> SeparatorComponentPayload: + return self._underlying.to_dict() + + @classmethod + def from_component(cls: type[S], component: SeparatorComponent) -> S: + return cls( + divider=component.divider, spacing=component.spacing, id=component.id + ) + + callback = None diff --git a/discord/ui/text_display.py b/discord/ui/text_display.py new file mode 100644 index 0000000000..6624500a3f --- /dev/null +++ b/discord/ui/text_display.py @@ -0,0 +1,80 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING, TypeVar + +from ..components import TextDisplay as TextDisplayComponent +from ..components import _component_factory +from ..enums import ComponentType +from .item import Item + +__all__ = ("TextDisplay",) + +if TYPE_CHECKING: + from ..types.components import TextDisplayComponent as TextDisplayComponentPayload + from .view import View + + +T = TypeVar("T", bound="TextDisplay") +V = TypeVar("V", bound="View", covariant=True) + + +class TextDisplay(Item[V]): + """Represents a UI text display. A message can have up to 4000 characters across all :class:`TextDisplay` objects combined. + + .. versionadded:: 2.7 + + Parameters + ---------- + content: :class:`str` + The text display's content, up to 4000 characters. + id: Optional[:class:`int`] + The text display's ID. + """ + + __item_repr_attributes__: tuple[str, ...] = ( + "content", + "id", + ) + + def __init__( + self, + content: str, + id: int | None = None, + ): + super().__init__() + + self._underlying = TextDisplayComponent._raw_construct( + type=ComponentType.text_display, + id=id, + content=content, + ) + + @property + def type(self) -> ComponentType: + return self._underlying.type + + @property + def content(self) -> str: + """The text display's content.""" + return self._underlying.content + + @content.setter + def content(self, value: str) -> None: + self._underlying.content = value + + @property + def width(self) -> int: + return 5 + + def to_component_dict(self) -> TextDisplayComponentPayload: + return self._underlying.to_dict() + + def copy_text(self) -> str: + """Returns the content of this text display. Equivalent to the `Copy Text` option on Discord clients.""" + return self.content + + @classmethod + def from_component(cls: type[T], component: TextDisplayComponent) -> T: + return cls(component.content, id=component.id) + + callback = None diff --git a/discord/ui/thumbnail.py b/discord/ui/thumbnail.py new file mode 100644 index 0000000000..f14e3022eb --- /dev/null +++ b/discord/ui/thumbnail.py @@ -0,0 +1,113 @@ +from __future__ import annotations + +from typing import TYPE_CHECKING, TypeVar + +from ..components import Thumbnail as ThumbnailComponent +from ..components import UnfurledMediaItem, _component_factory +from ..enums import ComponentType +from .item import Item + +__all__ = ("Thumbnail",) + +if TYPE_CHECKING: + from ..types.components import ThumbnailComponent as ThumbnailComponentPayload + from .view import View + + +T = TypeVar("T", bound="Thumbnail") +V = TypeVar("V", bound="View", covariant=True) + + +class Thumbnail(Item[V]): + """Represents a UI Thumbnail. + + .. versionadded:: 2.7 + + Parameters + ---------- + url: :class:`str` + The url of the thumbnail. This can either be an arbitrary URL or an ``attachment://`` URL to work with local files. + description: Optional[:class:`str`] + The thumbnail's description, up to 1024 characters. + spoiler: Optional[:class:`bool`] + Whether the thumbnail has the spoiler overlay. Defaults to ``False``. + id: Optional[:class:`int`] + The thumbnail's ID. + """ + + __item_repr_attributes__: tuple[str, ...] = ( + "url", + "description", + "spoiler", + "id", + ) + + def __init__( + self, + url: str, + *, + description: str = None, + spoiler: bool = False, + id: int = None, + ): + super().__init__() + + media = UnfurledMediaItem(url) + + self._underlying = ThumbnailComponent._raw_construct( + type=ComponentType.thumbnail, + id=id, + media=media, + description=description, + spoiler=spoiler, + ) + + @property + def type(self) -> ComponentType: + return self._underlying.type + + @property + def width(self) -> int: + return 5 + + @property + def url(self) -> str: + """The URL of this thumbnail's media. This can either be an arbitrary URL or an ``attachment://`` URL.""" + return self._underlying.media and self._underlying.media.url + + @url.setter + def url(self, value: str) -> None: + self._underlying.media.url = value + + @property + def description(self) -> str | None: + """The thumbnail's description, up to 1024 characters.""" + return self._underlying.description + + @description.setter + def description(self, description: str | None) -> None: + self._underlying.description = description + + @property + def spoiler(self) -> bool: + """Whether the thumbnail has the spoiler overlay. Defaults to ``False``.""" + + return self._underlying.spoiler + + @spoiler.setter + def spoiler(self, spoiler: bool) -> None: + self._underlying.spoiler = spoiler + + def to_component_dict(self) -> ThumbnailComponentPayload: + return self._underlying.to_dict() + + @classmethod + def from_component(cls: type[T], component: ThumbnailComponent) -> T: + return cls( + component.media and component.media.url, + description=component.description, + spoiler=component.spoiler, + id=component.id, + ) + + callback = None diff --git a/discord/ui/view.py b/discord/ui/view.py index c54cb58f13..ddb5368b51 100644 --- a/discord/ui/view.py +++ b/discord/ui/view.py @@ -29,20 +29,27 @@ import os import sys import time -import traceback from functools import partial from itertools import groupby -from typing import TYPE_CHECKING, Any, Callable, ClassVar, Iterator, Sequence +from typing import TYPE_CHECKING, Any, Callable, ClassVar, Iterator, Sequence, TypeVar from ..components import ActionRow as ActionRowComponent from ..components import Button as ButtonComponent from ..components import Component +from ..components import Container as ContainerComponent +from ..components import FileComponent +from ..components import Label as LabelComponent +from ..components import MediaGallery as MediaGalleryComponent +from ..components import Section as SectionComponent from ..components import SelectMenu as SelectComponent +from ..components import Separator as SeparatorComponent +from ..components import TextDisplay as TextDisplayComponent +from ..components import Thumbnail as ThumbnailComponent from ..components import _component_factory -from ..utils import get +from ..utils import find from .item import Item, ItemCallbackType -__all__ = ("View",) +__all__ = ("View", "_component_to_item", "_walk_all_components") if TYPE_CHECKING: @@ -51,6 +58,8 @@ from ..state import ConnectionState from ..types.components import Component as ComponentPayload +V = TypeVar("V", bound="View", covariant=True) + def _walk_all_components(components: list[Component]) -> Iterator[Component]: for item in components: @@ -60,7 +69,18 @@ def _walk_all_components(components: list[Component]) -> Iterator[Component]: yield item -def _component_to_item(component: Component) -> Item: +def _walk_all_components_v2(components: list[Component]) -> Iterator[Component]: + for item in components: + if isinstance(item, ActionRowComponent): + yield from item.children + elif isinstance(item, (SectionComponent, ContainerComponent)): + yield from item.walk_components() + else: + yield item + + +def _component_to_item(component: Component) -> Item[V]: + if isinstance(component, ButtonComponent): from .button import Button @@ -69,13 +89,50 @@ def _component_to_item(component: Component) -> Item: from .select import Select return Select.from_component(component) + if isinstance(component, SectionComponent): + from .section import Section + + return Section.from_component(component) + if isinstance(component, TextDisplayComponent): + from .text_display import TextDisplay + + return TextDisplay.from_component(component) + if isinstance(component, ThumbnailComponent): + from .thumbnail import Thumbnail + + return Thumbnail.from_component(component) + if isinstance(component, MediaGalleryComponent): + from .media_gallery import MediaGallery + + return MediaGallery.from_component(component) + if isinstance(component, FileComponent): + from .file import File + + return File.from_component(component) + if isinstance(component, SeparatorComponent): + from .separator import Separator + + return Separator.from_component(component) + if isinstance(component, ContainerComponent): + from .container import Container + + return Container.from_component(component) + if isinstance(component, ActionRowComponent): + # Handle ActionRow.children manually, or design ui.ActionRow? + + return component + if isinstance(component, LabelComponent): + ret = _component_to_item(component.component) + ret.label = component.label + ret.description = component.description + return ret return Item.from_component(component) class _ViewWeights: __slots__ = ("weights",) - def __init__(self, children: list[Item]): + def __init__(self, children: list[Item[V]]): self.weights: list[int] = [0, 0, 0, 0, 0] key = lambda i: sys.maxsize if i.row is None else i.row @@ -84,14 +141,23 @@ def __init__(self, children: list[Item]): for item in group: self.add_item(item) - def find_open_space(self, item: Item) -> int: + def find_open_space(self, item: Item[V]) -> int: for index, weight in enumerate(self.weights): - if weight + item.width <= 5: + # check if open space AND (next row has no items OR this is the last row) + if (weight + item.width <= 5) and ( + (index < len(self.weights) - 1 and self.weights[index + 1] == 0) + or index == len(self.weights) - 1 + ): return index raise ValueError("could not find open space for item") - def add_item(self, item: Item) -> None: + def add_item(self, item: Item[V]) -> None: + if ( + item._underlying.is_v2() or not self.fits_legacy(item) + ) and not self.requires_v2(): + self.weights.extend([0, 0, 0, 0, 0] * 7) + if item.row is not None: total = self.weights[item.row] + item.width if total > 5: @@ -105,7 +171,7 @@ def add_item(self, item: Item) -> None: self.weights[index] += item.width item._rendered_row = index - def remove_item(self, item: Item) -> None: + def remove_item(self, item: Item[V]) -> None: if item._rendered_row is not None: self.weights[item._rendered_row] -= item.width item._rendered_row = None @@ -113,6 +179,14 @@ def remove_item(self, item: Item) -> None: def clear(self) -> None: self.weights = [0, 0, 0, 0, 0] + def requires_v2(self) -> bool: + return sum(w > 0 for w in self.weights) > 5 or len(self.weights) > 5 + + def fits_legacy(self, item) -> bool: + if item.row is not None: + return item.row <= 4 + return self.weights[-1] + item.width <= 5 + class View: """Represents a UI view. @@ -156,26 +230,27 @@ def __init_subclass__(cls) -> None: if hasattr(member, "__discord_ui_model_type__"): children.append(member) - if len(children) > 25: - raise TypeError("View cannot have more than 25 children") + if len(children) > 40: + raise TypeError("View cannot have more than 40 children") cls.__view_children_items__ = children def __init__( self, - *items: Item, + *items: Item[V], timeout: float | None = 180.0, disable_on_timeout: bool = False, ): self.timeout = timeout self.disable_on_timeout = disable_on_timeout - self.children: list[Item] = [] + self.children: list[Item[V]] = [] for func in self.__view_children_items__: - item: Item = func.__discord_ui_model_type__( + item: Item[V] = func.__discord_ui_model_type__( **func.__discord_ui_model_kwargs__ ) item.callback = partial(func, self, item) item._view = self + item.parent = self setattr(self, func.__name__, item) self.children.append(item) @@ -213,22 +288,26 @@ async def __timeout_task_impl(self) -> None: await asyncio.sleep(self.__timeout_expiry - now) def to_components(self) -> list[dict[str, Any]]: - def key(item: Item) -> int: + def key(item: Item[V]) -> int: return item._rendered_row or 0 children = sorted(self.children, key=key) components: list[dict[str, Any]] = [] for _, group in groupby(children, key=key): - children = [item.to_component_dict() for item in group] + items = list(group) + children = [item.to_component_dict() for item in items] if not children: continue - components.append( - { - "type": 1, - "components": children, - } - ) + if any([i._underlying.is_v2() for i in items]): + components += children + else: + components.append( + { + "type": 1, + "components": children, + } + ) return components @@ -261,13 +340,42 @@ def from_message( view.add_item(_component_to_item(component)) return view + @classmethod + def from_dict( + cls, + data: list[Component], + /, + *, + timeout: float | None = 180.0, + ) -> View: + """Converts a list of component dicts into a :class:`View`. + + Parameters + ---------- + data: List[:class:`.Component`] + The list of components to convert into a view. + timeout: Optional[:class:`float`] + The timeout of the converted view. + + Returns + ------- + :class:`View` + The converted view. This always returns a :class:`View` and not + one of its subclasses. + """ + view = View(timeout=timeout) + components = [_component_factory(d) for d in data] + for component in _walk_all_components(components): + view.add_item(_component_to_item(component)) + return view + @property def _expires_at(self) -> float | None: if self.timeout: return time.monotonic() + self.timeout return None - def add_item(self, item: Item) -> None: + def add_item(self, item: Item[V]) -> None: """Adds an item to the view. Parameters @@ -280,56 +388,81 @@ def add_item(self, item: Item) -> None: TypeError An :class:`Item` was not passed. ValueError - Maximum number of children has been exceeded (25) + Maximum number of children has been exceeded (40) or the row the item is trying to be added to is full. """ - if len(self.children) > 25: + if len(self.children) >= 40: raise ValueError("maximum number of children exceeded") if not isinstance(item, Item): raise TypeError(f"expected Item not {item.__class__!r}") + if item.uses_label(): + raise ValueError( + f"cannot use label, description or required on select menus in views." + ) + self.__weights.add_item(item) + item.parent = self item._view = self + if hasattr(item, "items"): + item.view = self self.children.append(item) + return self - def remove_item(self, item: Item) -> None: - """Removes an item from the view. + def remove_item(self, item: Item[V] | int | str) -> None: + """Removes an item from the view. If an :class:`int` or :class:`str` is passed, + the item will be removed by Item ``id`` or ``custom_id`` respectively. Parameters ---------- - item: :class:`Item` - The item to remove from the view. + item: Union[:class:`Item`, :class:`int`, :class:`str`] + The item, item ``id``, or item ``custom_id`` to remove from the view. """ + if isinstance(item, (str, int)): + item = self.get_item(item) try: self.children.remove(item) except ValueError: pass else: self.__weights.remove_item(item) + return self def clear_items(self) -> None: """Removes all items from the view.""" self.children.clear() self.__weights.clear() + return self - def get_item(self, custom_id: str) -> Item | None: - """Get an item from the view with the given custom ID. Alias for `utils.get(view.children, custom_id=custom_id)`. + def get_item(self, custom_id: str | int) -> Item[V] | None: + """Gets an item from the view. Roughly equal to `utils.get(view.children, ...)`. + If an :class:`int` is provided, the item will be retrieved by ``id``, otherwise by ``custom_id``. + This method will also search nested items. Parameters ---------- - custom_id: :class:`str` - The custom_id of the item to get + custom_id: Union[:class:`str`, :class:`int`] + The id of the item to get Returns ------- Optional[:class:`Item`] - The item with the matching ``custom_id`` if it exists. + The item with the matching ``custom_id`` or ``id`` if it exists. """ - return get(self.children, custom_id=custom_id) + if not custom_id: + return None + attr = "id" if isinstance(custom_id, int) else "custom_id" + child = find(lambda i: getattr(i, attr, None) == custom_id, self.children) + if not child: + for i in self.children: + if hasattr(i, "get_item"): + if child := i.get_item(custom_id): + return child + return child async def interaction_check(self, interaction: Interaction) -> bool: """|coro| @@ -391,7 +524,7 @@ async def on_check_failure(self, interaction: Interaction) -> None: """ async def on_error( - self, error: Exception, item: Item, interaction: Interaction + self, error: Exception, item: Item[V], interaction: Interaction ) -> None: """|coro| @@ -409,12 +542,9 @@ async def on_error( interaction: :class:`~discord.Interaction` The interaction that led to the failure. """ - print(f"Ignoring exception in view {self} for item {item}:", file=sys.stderr) - traceback.print_exception( - error.__class__, error, error.__traceback__, file=sys.stderr - ) + interaction.client.dispatch("view_error", error, item, interaction) - async def _scheduled_task(self, item: Item, interaction: Interaction): + async def _scheduled_task(self, item: Item[V], interaction: Interaction): try: if self.timeout: self.__timeout_expiry = time.monotonic() + self.timeout @@ -446,7 +576,7 @@ def _dispatch_timeout(self): self.on_timeout(), name=f"discord-ui-view-timeout-{self.id}" ) - def _dispatch_item(self, item: Item, interaction: Interaction): + def _dispatch_item(self, item: Item[V], interaction: Interaction): if self.__stopped.done(): return @@ -459,26 +589,26 @@ def _dispatch_item(self, item: Item, interaction: Interaction): ) def refresh(self, components: list[Component]): - # This is pretty hacky at the moment - old_state: dict[tuple[int, str], Item] = { - (item.type.value, item.custom_id): item for item in self.children if item.is_dispatchable() # type: ignore - } - children: list[Item] = [ - item for item in self.children if not item.is_dispatchable() - ] - for component in _walk_all_components(components): + # Refreshes view data using discord's values + # Assumes the components and items are identical + if not components: + return + + i = 0 + flattened = [] + for c in components: + if isinstance(c, ActionRowComponent): + flattened += c.children + else: + flattened.append(c) + for c in flattened: try: - older = old_state[(component.type.value, component.custom_id)] # type: ignore - except (KeyError, AttributeError): - item = _component_to_item(component) - if not item.is_dispatchable(): - continue - children.append(item) + item = self.children[i] + except: + break else: - older.refresh_component(component) - children.append(older) - - self.children = children + item.refresh_component(c) + i += 1 def stop(self) -> None: """Stops listening to interaction events from this view. @@ -501,6 +631,9 @@ def is_finished(self) -> bool: """Whether the view has finished interacting.""" return self.__stopped.done() + def is_dispatchable(self) -> bool: + return any(item.is_dispatchable() for item in self.children) + def is_dispatching(self) -> bool: """Whether the view has been added for dispatching purposes.""" return self.__cancel_callback is not None @@ -515,6 +648,16 @@ def is_persistent(self) -> bool: item.is_persistent() for item in self.children ) + def is_components_v2(self) -> bool: + """Whether the view contains V2 components. + + A view containing V2 components cannot be sent alongside message content or embeds. + """ + return ( + any([item._underlying.is_v2() for item in self.children]) + or self.__weights.requires_v2() + ) + async def wait(self) -> bool: """Waits until the view has finished interacting. @@ -529,9 +672,9 @@ async def wait(self) -> bool: """ return await self.__stopped - def disable_all_items(self, *, exclusions: list[Item] | None = None) -> None: + def disable_all_items(self, *, exclusions: list[Item[V]] | None = None) -> None: """ - Disables all items in the view. + Disables all buttons and select menus in the view. Parameters ---------- @@ -539,12 +682,17 @@ def disable_all_items(self, *, exclusions: list[Item] | None = None) -> None: A list of items in `self.children` to not disable from the view. """ for child in self.children: - if exclusions is None or child not in exclusions: + if hasattr(child, "disabled") and ( + exclusions is None or child not in exclusions + ): child.disabled = True + if hasattr(child, "disable_all_items"): + child.disable_all_items(exclusions=exclusions) + return self - def enable_all_items(self, *, exclusions: list[Item] | None = None) -> None: + def enable_all_items(self, *, exclusions: list[Item[V]] | None = None) -> None: """ - Enables all items in the view. + Enables all buttons and select menus in the view. Parameters ---------- @@ -552,8 +700,26 @@ def enable_all_items(self, *, exclusions: list[Item] | None = None) -> None: A list of items in `self.children` to not enable from the view. """ for child in self.children: - if exclusions is None or child not in exclusions: + if hasattr(child, "disabled") and ( + exclusions is None or child not in exclusions + ): child.disabled = False + if hasattr(child, "enable_all_items"): + child.enable_all_items(exclusions=exclusions) + return self + + def walk_children(self) -> Iterator[Item]: + for item in self.children: + if hasattr(item, "walk_items"): + yield from item.walk_items() + else: + yield item + + def copy_text(self) -> str: + """Returns the text of all :class:`~discord.ui.TextDisplay` items in this View. + Equivalent to the `Copy Text` option on Discord clients. + """ + return "\n".join(t for i in self.children if (t := i.copy_text())) @property def message(self): @@ -567,7 +733,7 @@ def message(self, value): class ViewStore: def __init__(self, state: ConnectionState): # (component_type, message_id, custom_id): (View, Item) - self._views: dict[tuple[int, int | None, str], tuple[View, Item]] = {} + self._views: dict[tuple[int, int | None, str], tuple[View, Item[V]]] = {} # message_id: View self._synced_message_views: dict[int, View] = {} self._state: ConnectionState = state @@ -594,16 +760,16 @@ def add_view(self, view: View, message_id: int | None = None): self.__verify_integrity() view._start_listening_from_store(self) - for item in view.children: - if item.is_dispatchable(): + for item in view.walk_children(): + if item.is_storable(): self._views[(item.type.value, message_id, item.custom_id)] = (view, item) # type: ignore if message_id is not None: self._synced_message_views[message_id] = view def remove_view(self, view: View): - for item in view.children: - if item.is_dispatchable(): + for item in view.walk_children(): + if item.is_storable(): self._views.pop((item.type.value, item.custom_id), None) # type: ignore for key, value in self._synced_message_views.items(): @@ -624,6 +790,7 @@ def dispatch(self, component_type: int, custom_id: str, interaction: Interaction return view, item = value + interaction.view = view item.refresh_state(interaction) view._dispatch_item(item, interaction) @@ -636,4 +803,5 @@ def remove_message_tracking(self, message_id: int) -> View | None: def update_from_message(self, message_id: int, components: list[ComponentPayload]): # pre-req: is_message_tracked == true view = self._synced_message_views[message_id] - view.refresh([_component_factory(d) for d in components]) + components = [_component_factory(d, state=self._state) for d in components] + view.refresh(components) diff --git a/discord/user.py b/discord/user.py index 9fa995cf66..c8ad8bc017 100644 --- a/discord/user.py +++ b/discord/user.py @@ -30,10 +30,12 @@ import discord.abc from .asset import Asset +from .collectibles import Nameplate from .colour import Colour from .flags import PublicUserFlags from .iterators import EntitlementIterator from .monetization import Entitlement +from .primary_guild import PrimaryGuild from .utils import MISSING, _bytes_to_base64_data, snowflake_time if TYPE_CHECKING: @@ -76,6 +78,8 @@ class BaseUser(_UserTag): "_public_flags", "_avatar_decoration", "_state", + "nameplate", + "primary_guild", ) if TYPE_CHECKING: @@ -91,6 +95,8 @@ class BaseUser(_UserTag): _accent_colour: int | None _avatar_decoration: dict | None _public_flags: int + nameplate: Nameplate | None + primary_guild: PrimaryGuild | None def __init__( self, *, state: ConnectionState, data: UserPayload | PartialUserPayload @@ -143,6 +149,18 @@ def _update(self, data: UserPayload) -> None: self._banner = data.get("banner", None) self._accent_colour = data.get("accent_color", None) self._avatar_decoration = data.get("avatar_decoration_data", None) + nameplate = (data.get("collectibles") or {}).get("nameplate", None) + if nameplate: + self.nameplate = Nameplate(data=nameplate, state=self._state) + else: + self.nameplate = None + primary_guild_payload = data.get("primary_guild", None) + if primary_guild_payload and primary_guild_payload.get("identity_enabled"): + self.primary_guild = PrimaryGuild( + data=primary_guild_payload, state=self._state + ) + else: + self.primary_guild = None self._public_flags = data.get("public_flags", 0) self.bot = data.get("bot", False) self.system = data.get("system", False) @@ -162,6 +180,7 @@ def _copy(cls: type[BU], user: BU) -> BU: self.bot = user.bot self._state = user._state self._public_flags = user._public_flags + self.primary_guild = user.primary_guild return self @@ -534,6 +553,10 @@ class User(BaseUser, discord.abc.Messageable): Specifies if the user is a bot account. system: :class:`bool` Specifies if the user is a system user (i.e. represents Discord officially). + nameplate: Optional[:class:`Nameplate`] + The user's nameplate, if the user has one. + + .. versionadded:: 2.7 """ __slots__ = ("_stored",) diff --git a/discord/utils.py b/discord/utils.py index c04ef0b0bd..c42a51cbd8 100644 --- a/discord/utils.py +++ b/discord/utils.py @@ -30,8 +30,10 @@ import collections.abc import datetime import functools +import importlib.resources import itertools import json +import logging import re import sys import types @@ -39,7 +41,6 @@ import warnings from base64 import b64encode from bisect import bisect_left -from dataclasses import field from inspect import isawaitable as _isawaitable from inspect import signature as _signature from operator import attrgetter @@ -100,8 +101,26 @@ "filter_params", ) +_log = logging.getLogger(__name__) + DISCORD_EPOCH = 1420070400000 +try: + with ( + importlib.resources.files(__package__) + .joinpath("emojis.json") + .open(encoding="utf-8") as f + ): + EMOJIS_MAP = json.load(f) +except FileNotFoundError: + _log.debug( + "Couldn't find emojis.json. Is the package data missing? Discord emojis names will not work.", + ) + EMOJIS_MAP = {} + + +UNICODE_EMOJIS = set(EMOJIS_MAP.values()) + class _MissingSentinel: def __eq__(self, other) -> bool: @@ -115,27 +134,6 @@ def __repr__(self) -> str: MISSING: Any = _MissingSentinel() -# As of 3.11, directly setting a dataclass field to MISSING causes a ValueError. Using -# field(default=MISSING) produces the same error, but passing a lambda to -# default_factory produces the same behavior as default=MISSING and does not raise an -# error. -MissingField = field(default_factory=lambda: MISSING) - - -class _cached_property: - def __init__(self, function): - self.function = function - self.__doc__ = getattr(function, "__doc__") - - def __get__(self, instance, owner): - if instance is None: - return self - - value = self.function(instance) - setattr(instance, self.function.__name__, value) - - return value - if TYPE_CHECKING: from typing_extensions import ParamSpec @@ -150,12 +148,9 @@ def __get__(self, instance, owner): class _RequestLike(Protocol): headers: Mapping[str, Any] - cached_property = property - P = ParamSpec("P") else: - cached_property = _cached_property AutocompleteContext = Any OptionChoice = Any @@ -318,7 +313,6 @@ def warn_deprecated( stacklevel: :class:`int` The stacklevel kwarg passed to :func:`warnings.warn`. Defaults to 3. """ - warnings.simplefilter("always", DeprecationWarning) # turn off filter message = f"{name} is deprecated" if since: message += f" since version {since}" @@ -331,7 +325,6 @@ def warn_deprecated( message += f" See {reference} for more information." warnings.warn(message, stacklevel=stacklevel, category=DeprecationWarning) - warnings.simplefilter("default", DeprecationWarning) # reset filter def deprecated( @@ -646,7 +639,7 @@ def _get_as_snowflake(data: Any, key: str) -> int | None: return value and int(value) -def _get_mime_type_for_image(data: bytes): +def _get_mime_type_for_file(data: bytes): if data.startswith(b"\x89\x50\x4e\x47\x0d\x0a\x1a\x0a"): return "image/png" elif data[0:3] == b"\xff\xd8\xff" or data[6:10] in (b"JFIF", b"Exif"): @@ -655,13 +648,15 @@ def _get_mime_type_for_image(data: bytes): return "image/gif" elif data.startswith(b"RIFF") and data[8:12] == b"WEBP": return "image/webp" + elif data.startswith(b"\x49\x44\x33") or data.startswith(b"\xff\xfb"): + return "audio/mpeg" else: - raise InvalidArgument("Unsupported image type given") + raise InvalidArgument("Unsupported file type given") def _bytes_to_base64_data(data: bytes) -> str: fmt = "data:{mime};base64,{data}" - mime = _get_mime_type_for_image(data) + mime = _get_mime_type_for_file(data) b64 = b64encode(data).decode("ascii") return fmt.format(mime=mime, data=b64) @@ -939,7 +934,7 @@ def replacement(match): regex = _MARKDOWN_STOCK_REGEX if ignore_links: regex = f"(?:{_URL_REGEX}|{regex})" - return re.sub(regex, replacement, text, 0, re.MULTILINE) + return re.sub(regex, replacement, text, count=0, flags=re.MULTILINE) def escape_markdown( @@ -981,7 +976,7 @@ def replacement(match): regex = _MARKDOWN_STOCK_REGEX if ignore_links: regex = f"(?:{_URL_REGEX}|{regex})" - return re.sub(regex, replacement, text, 0, re.MULTILINE | re.X) + return re.sub(regex, replacement, text, count=0, flags=re.MULTILINE | re.X) else: text = re.sub(r"\\", r"\\\\", text) return _MARKDOWN_ESCAPE_REGEX.sub(r"\\\1", text) @@ -1236,7 +1231,9 @@ def resolve_annotation( TimestampStyle = Literal["f", "F", "d", "D", "t", "T", "R"] -def format_dt(dt: datetime.datetime, /, style: TimestampStyle | None = None) -> str: +def format_dt( + dt: datetime.datetime | datetime.time, /, style: TimestampStyle | None = None +) -> str: """A helper function to format a :class:`datetime.datetime` for presentation within Discord. This allows for a locale-independent way of presenting data using Discord specific Markdown. @@ -1266,7 +1263,7 @@ def format_dt(dt: datetime.datetime, /, style: TimestampStyle | None = None) -> Parameters ---------- - dt: :class:`datetime.datetime` + dt: Union[:class:`datetime.datetime`, :class:`datetime.time`] The datetime to format. style: :class:`str` The style to format the datetime with. @@ -1276,6 +1273,8 @@ def format_dt(dt: datetime.datetime, /, style: TimestampStyle | None = None) -> :class:`str` The formatted string. """ + if isinstance(dt, datetime.time): + dt = datetime.datetime.combine(datetime.datetime.now(), dt) if style is None: return f"" return f"" diff --git a/discord/voice_client.py b/discord/voice_client.py index 4ba571c9a7..a36a81fa67 100644 --- a/discord/voice_client.py +++ b/discord/voice_client.py @@ -265,12 +265,14 @@ def __init__(self, client: Client, channel: abc.Connectable): self.sink = None self.starting_time = None self.stopping_time = None + self.temp_queued_data: dict[int, list] = {} warn_nacl = not has_nacl supported_modes: tuple[SupportedModes, ...] = ( "xsalsa20_poly1305_lite", "xsalsa20_poly1305_suffix", "xsalsa20_poly1305", + "aead_xchacha20_poly1305_rtpsize", ) @property @@ -325,11 +327,7 @@ async def on_voice_server_update(self, data: VoiceServerUpdatePayload) -> None: ) return - self.endpoint, _, _ = endpoint.rpartition(":") - if self.endpoint.startswith("wss://"): - # Just in case, strip it off since we're going to add it later - self.endpoint = self.endpoint[6:] - + self.endpoint = endpoint.removeprefix("wss://") # This gets set later self.endpoint_ip = MISSING @@ -471,8 +469,8 @@ async def poll_voice_ws(self, reconnect: bool) -> None: # The following close codes are undocumented, so I will document them here. # 1000 - normal closure (obviously) # 4014 - voice channel has been deleted. - # 4015 - voice server has crashed - if exc.code in (1000, 4015): + # 4015 - voice server has crashed, we should resume + if exc.code == 1000: _log.info( "Disconnecting from voice normally, close code %d.", exc.code, @@ -494,6 +492,21 @@ async def poll_voice_ws(self, reconnect: bool) -> None: ) await self.disconnect() break + if exc.code == 4015: + _log.info("Disconnected from voice, trying to resume...") + + try: + await self.ws.resume() + except asyncio.TimeoutError: + _log.info( + "Could not resume the voice connection... Disconnection..." + ) + if self._connected.is_set(): + await self.disconnect(force=True) + else: + _log.info("Successfully resumed voice connection") + continue + if not reconnect: await self.disconnect() raise @@ -565,6 +578,7 @@ def _get_voice_packet(self, data): return encrypt_packet(header, data) def _encrypt_xsalsa20_poly1305(self, header: bytes, data) -> bytes: + # Deprecated, remove in 2.7 box = nacl.secret.SecretBox(bytes(self.secret_key)) nonce = bytearray(24) nonce[:12] = header @@ -572,12 +586,14 @@ def _encrypt_xsalsa20_poly1305(self, header: bytes, data) -> bytes: return header + box.encrypt(bytes(data), bytes(nonce)).ciphertext def _encrypt_xsalsa20_poly1305_suffix(self, header: bytes, data) -> bytes: + # Deprecated, remove in 2.7 box = nacl.secret.SecretBox(bytes(self.secret_key)) nonce = nacl.utils.random(nacl.secret.SecretBox.NONCE_SIZE) return header + box.encrypt(bytes(data), nonce).ciphertext + nonce def _encrypt_xsalsa20_poly1305_lite(self, header: bytes, data) -> bytes: + # Deprecated, remove in 2.7 box = nacl.secret.SecretBox(bytes(self.secret_key)) nonce = bytearray(24) @@ -586,7 +602,22 @@ def _encrypt_xsalsa20_poly1305_lite(self, header: bytes, data) -> bytes: return header + box.encrypt(bytes(data), bytes(nonce)).ciphertext + nonce[:4] + def _encrypt_aead_xchacha20_poly1305_rtpsize(self, header: bytes, data) -> bytes: + # Required as of Nov 18 2024 + box = nacl.secret.Aead(bytes(self.secret_key)) + nonce = bytearray(24) + + nonce[:4] = struct.pack(">I", self._lite_nonce) + self.checked_add("_lite_nonce", 1, 4294967295) + + return ( + header + + box.encrypt(bytes(data), bytes(header), bytes(nonce)).ciphertext + + nonce[:4] + ) + def _decrypt_xsalsa20_poly1305(self, header, data): + # Deprecated, remove in 2.7 box = nacl.secret.SecretBox(bytes(self.secret_key)) nonce = bytearray(24) @@ -595,6 +626,7 @@ def _decrypt_xsalsa20_poly1305(self, header, data): return self.strip_header_ext(box.decrypt(bytes(data), bytes(nonce))) def _decrypt_xsalsa20_poly1305_suffix(self, header, data): + # Deprecated, remove in 2.7 box = nacl.secret.SecretBox(bytes(self.secret_key)) nonce_size = nacl.secret.SecretBox.NONCE_SIZE @@ -603,6 +635,7 @@ def _decrypt_xsalsa20_poly1305_suffix(self, header, data): return self.strip_header_ext(box.decrypt(bytes(data[:-nonce_size]), nonce)) def _decrypt_xsalsa20_poly1305_lite(self, header, data): + # Deprecated, remove in 2.7 box = nacl.secret.SecretBox(bytes(self.secret_key)) nonce = bytearray(24) @@ -611,9 +644,22 @@ def _decrypt_xsalsa20_poly1305_lite(self, header, data): return self.strip_header_ext(box.decrypt(bytes(data), bytes(nonce))) + def _decrypt_aead_xchacha20_poly1305_rtpsize(self, header, data): + # Required as of Nov 18 2024 + box = nacl.secret.Aead(bytes(self.secret_key)) + + nonce = bytearray(24) + nonce[:4] = data[-4:] + data = data[:-4] + + r = box.decrypt(bytes(data), bytes(header), bytes(nonce)) + # Discord adds 8 bytes of data before the opus data. + # This can be removed, and at this time, discarded as it is unclear what they are for. + return r[8:] + @staticmethod def strip_header_ext(data): - if data[0] == 0xBE and data[1] == 0xDE and len(data) > 4: + if len(data) > 4 and data[0] == 0xBE and data[1] == 0xDE: _, length = struct.unpack_from(">HH", data) offset = 4 + length * 4 data = data[offset:] @@ -729,11 +775,12 @@ def unpack_audio(self, data): data: :class:`bytes` Bytes received by Discord via the UDP connection used for sending and receiving voice data. """ - if 200 <= data[1] <= 204: - # RTCP received. - # RTCP provides information about the connection - # as opposed to actual audio data, so it's not - # important at the moment. + if data[1] & 0x78 != 0x78: + # We Should Ignore Any Payload Types We Do Not Understand + # Ref RFC 3550 5.1 payload type + # At Some Point We Noted That We Should Ignore Only Types 200 - 204 inclusive. + # They Were Marked As RTCP: Provides Information About The Connection + # This Was Too Broad Of A Whitelist, It Is Unclear If This Is Too Narrow Of A Whitelist return if self.paused: return @@ -845,7 +892,7 @@ def recv_audio(self, sink, callback, *args): # it by user, handles pcm files and # silence that should be added. - self.user_timestamps: dict[int, tuple[int, float]] = {} + self.user_timestamps: dict[int, tuple[int, int, float]] = {} self.starting_time = time.perf_counter() self.first_packet_timestamp: float while self.recording: @@ -873,7 +920,30 @@ def recv_audio(self, sink, callback, *args): def recv_decoded_audio(self, data: RawData): # Add silence when they were not being recorded. - if data.ssrc not in self.user_timestamps: # First packet from user + data.user_id = self.ws.ssrc_map.get(data.ssrc, {}).get("user_id") + + if data.user_id is None: + _log.debug( + f"DEBUG: received packet with SSRC {data.ssrc} not linked to a user_id." + f"Queueing for later processing." + ) + self.temp_queued_data.setdefault(data.ssrc, []).append(data) + return + elif data.ssrc in self.temp_queued_data: + _log.debug( + "DEBUG: We got %d packet(s) in queue for SSRC %d", + len(self.temp_queued_data[data.ssrc]), + data.ssrc, + ) + queued_packets = self.temp_queued_data.pop(data.ssrc) + for q_packet in queued_packets: + q_packet.user_id = data.user_id + self._process_audio_packet(q_packet) + + self._process_audio_packet(data) + + def _process_audio_packet(self, data: RawData): + if data.user_id not in self.user_timestamps: # First packet from user if ( not self.user_timestamps or not self.sync_start ): # First packet from anyone @@ -886,19 +956,33 @@ def recv_decoded_audio(self, data: RawData): ) - 960 else: # Previously received a packet from user - dRT = ( - data.receive_time - self.user_timestamps[data.ssrc][1] - ) * 48000 # delta receive time - dT = data.timestamp - self.user_timestamps[data.ssrc][0] # delta timestamp - diff = abs(100 - dT * 100 / dRT) - if ( - diff > 60 and dT != 960 - ): # If the difference in change is more than 60% threshold - silence = dRT - 960 + prev_ssrc = self.user_timestamps[data.user_id][0] + prev_timestamp = self.user_timestamps[data.user_id][1] + prev_receive_time = self.user_timestamps[data.user_id][2] + + if data.ssrc != prev_ssrc: + _log.info( + f"Received audio data from USER_ID {data.user_id} with a previous SSRC {prev_ssrc} and new " + f"SSRC {data.ssrc}." + ) + dRT = (data.receive_time - prev_receive_time) * 1000 + silence = max(0, int(dRT / (1000 / 48000))) - 960 else: - silence = dT - 960 + dRT = ( + data.receive_time - prev_receive_time + ) * 48000 # delta receive time + dT = data.timestamp - prev_timestamp # delta timestamp + diff = abs(100 - dT * 100 / dRT) + if ( + diff > 60 and dT != 960 + ): # If the difference in change is more than 60% threshold + silence = dRT - 960 + else: + silence = dT - 960 - self.user_timestamps.update({data.ssrc: (data.timestamp, data.receive_time)}) + self.user_timestamps.update( + {data.user_id: (data.ssrc, data.timestamp, data.receive_time)} + ) data.decoded_data = ( struct.pack(" Response[MessagePayload | None]: params = {"wait": int(wait)} @@ -346,6 +348,9 @@ def execute_webhook( if thread_name: payload["thread_name"] = thread_name + if with_components is not None: + params["with_components"] = int(with_components) + route = Route( "POST", "/webhooks/{webhook_id}/{webhook_token}", @@ -403,12 +408,16 @@ def edit_webhook_message( payload: dict[str, Any] | None = None, multipart: list[dict[str, Any]] | None = None, files: list[File] | None = None, + with_components: bool | None = None, ) -> Response[WebhookMessage]: params = {} if thread_id: params["thread_id"] = thread_id + if with_components is not None: + params["with_components"] = int(with_components) + route = Route( "PATCH", "/webhooks/{webhook_id}/{webhook_token}/messages/{message_id}", @@ -501,19 +510,22 @@ def create_interaction_response( "type": type, } - if data is not None: - payload["data"] = data + payload["data"] = data if data is not None else {} form = [{"name": "payload_json"}] attachments = [] files = files or [] for index, file in enumerate(files): - attachments.append( - { - "id": index, - "filename": file.filename, - "description": file.description, - } - ) + attachment_info = { + "id": index, + "filename": file.filename, + "description": file.description, + } + if isinstance(file, VoiceMessage): + attachment_info.update( + waveform=file.waveform, + duration_secs=file.duration_secs, + ) + attachments.append(attachment_info) form.append( { "name": f"files[{index}]", @@ -522,7 +534,8 @@ def create_interaction_response( "content_type": "application/octet-stream", } ) - payload["attachments"] = attachments + if attachments: + payload["data"]["attachments"] = attachments form[0]["value"] = utils._to_json(payload) route = Route( @@ -532,6 +545,10 @@ def create_interaction_response( webhook_token=token, ) + params: dict[str, Any] = { + "with_response": "true", + } + return self.request( route, session=session, @@ -539,6 +556,7 @@ def create_interaction_response( proxy_auth=proxy_auth, files=files, multipart=form, + params=params, ) def get_original_interaction_response( @@ -628,6 +646,7 @@ def handle_message_parameters( allowed_mentions: AllowedMentions | None = MISSING, previous_allowed_mentions: AllowedMentions | None = None, suppress: bool = False, + thread_name: str | None = None, ) -> ExecuteWebhookParameters: if files is not MISSING and file is not MISSING: raise TypeError("Cannot mix file and files keyword arguments.") @@ -648,8 +667,19 @@ def handle_message_parameters( if attachments is not MISSING: _attachments = [a.to_dict() for a in attachments] + flags = MessageFlags( + suppress_embeds=suppress, + ephemeral=ephemeral, + ) + if view is not MISSING: payload["components"] = view.to_components() if view is not None else [] + if view and view.is_components_v2(): + if payload.get("content") or payload.get("embeds"): + raise TypeError( + "cannot send embeds or content with a view using v2 component logic" + ) + flags.is_components_v2 = True if poll is not MISSING: payload["poll"] = poll.to_dict() payload["tts"] = tts @@ -658,9 +688,6 @@ def handle_message_parameters( if username: payload["username"] = username - flags = MessageFlags(suppress_embeds=suppress, ephemeral=ephemeral) - payload["flags"] = flags.value - if applied_tags is not MISSING: payload["applied_tags"] = applied_tags @@ -680,6 +707,7 @@ def handle_message_parameters( files = [file] if files: + voice_message = False for index, file in enumerate(files): multipart_files.append( { @@ -689,17 +717,29 @@ def handle_message_parameters( "content_type": "application/octet-stream", } ) - _attachments.append( - { - "id": index, - "filename": file.filename, - "description": file.description, - } - ) + attachment_info = { + "id": index, + "filename": file.filename, + "description": file.description, + } + if isinstance(file, VoiceMessage): + voice_message = True + attachment_info.update( + waveform=file.waveform, + duration_secs=file.duration_secs, + ) + _attachments.append(attachment_info) + if voice_message: + flags = flags + MessageFlags(is_voice_message=True) - if _attachments: + if attachments is not MISSING or _attachments: payload["attachments"] = _attachments + payload["flags"] = flags.value + + if thread_name: + payload["thread_name"] = thread_name + if multipart_files: multipart.append({"name": "payload_json", "value": utils._to_json(payload)}) payload = None @@ -1735,8 +1775,8 @@ async def send( InvalidArgument 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. + giving it a dispatchable view, you specified both ``thread_name`` and ``thread``, + or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified. """ if self.token is None: @@ -1765,13 +1805,21 @@ async def send( if application_webhook: wait = True + with_components = False + if view is not MISSING: - if isinstance(self._state, _WebhookState): + if ( + isinstance(self._state, _WebhookState) + and view + and view.is_dispatchable() + ): raise InvalidArgument( - "Webhook views require an associated state with the webhook" + "Dispatchable Webhook views require an associated state with the webhook" ) if ephemeral is True and view.timeout is None: view.timeout = 15 * 60.0 + if not application_webhook: + with_components = True if poll is None: poll = MISSING @@ -1791,6 +1839,7 @@ async def send( applied_tags=applied_tags, allowed_mentions=allowed_mentions, previous_allowed_mentions=previous_mentions, + thread_name=thread_name, ) adapter = async_context.get() thread_id: int | None = None @@ -1807,18 +1856,21 @@ async def send( multipart=params.multipart, files=params.files, thread_id=thread_id, - thread_name=thread_name, wait=wait, + with_components=with_components, ) msg = None if wait: msg = self._create_message(data) - if view is not MISSING and not view.is_finished(): + if view and not view.is_finished(): message_id = None if msg is None else msg.id view.message = None if msg is None else msg - self._state.store_view(view, message_id) + if msg: + view.refresh(msg.components) + if view.is_dispatchable(): + self._state.store_view(view, message_id) if delete_after is not None: @@ -1973,13 +2025,21 @@ async def edit_message( "This webhook does not have a token associated with it" ) + with_components = False + if view is not MISSING: - if isinstance(self._state, _WebhookState): + if ( + isinstance(self._state, _WebhookState) + and view + and view.is_dispatchable() + ): raise InvalidArgument( - "This webhook does not have state associated with it" + "Dispatchable Webhook views require an associated state with the webhook" ) self._state.prevent_view_updates_for(message_id) + if self.type is not WebhookType.application: + with_components = True previous_mentions: AllowedMentions | None = getattr( self._state, "allowed_mentions", None @@ -2013,12 +2073,15 @@ async def edit_message( payload=params.payload, multipart=params.multipart, files=params.files, + with_components=with_components, ) message = self._create_message(data) if view and not view.is_finished(): view.message = message - self._state.store_view(view, message_id) + view.refresh(message.components) + if view.is_dispatchable(): + self._state.store_view(view, message_id) return message async def delete_message( diff --git a/discord/webhook/sync.py b/discord/webhook/sync.py index d2d3213d71..fde7031321 100644 --- a/discord/webhook/sync.py +++ b/discord/webhook/sync.py @@ -307,16 +307,12 @@ def execute_webhook( multipart: list[dict[str, Any]] | None = None, files: list[File] | None = None, thread_id: int | None = None, - thread_name: str | None = None, wait: bool = False, ): params = {"wait": int(wait)} if thread_id: params["thread_id"] = thread_id - if thread_name: - payload["thread_name"] = thread_name - route = Route( "POST", "/webhooks/{webhook_id}/{webhook_token}", @@ -1080,6 +1076,7 @@ def send( allowed_mentions=allowed_mentions, previous_allowed_mentions=previous_mentions, suppress=suppress, + thread_name=thread_name, ) adapter: WebhookAdapter = _get_webhook_adapter() thread_id: int | None = None @@ -1094,7 +1091,6 @@ def send( multipart=params.multipart, files=params.files, thread_id=thread_id, - thread_name=thread_name, wait=wait, ) if wait: diff --git a/docs/_static/css/custom.css b/docs/_static/css/custom.css index cd2b41d9a2..57ef457b9e 100644 --- a/docs/_static/css/custom.css +++ b/docs/_static/css/custom.css @@ -8,8 +8,9 @@ font-display: swap; src: url(https://fonts.gstatic.com/s/saira/v8/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773FksAxljYm.woff2) format("woff2"); - unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, - U+01AF-01B0, U+1EA0-1EF9, U+20AB; + unicode-range: + U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, + U+1EA0-1EF9, U+20AB; } /* latin-ext */ @font-face { @@ -20,8 +21,9 @@ font-display: swap; src: url(https://fonts.gstatic.com/s/saira/v8/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773FksExljYm.woff2) format("woff2"); - unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, - U+2113, U+2C60-2C7F, U+A720-A7FF; + unicode-range: + U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, + U+2C60-2C7F, U+A720-A7FF; } /* latin */ @font-face { @@ -32,8 +34,9 @@ font-display: swap; src: url(https://fonts.gstatic.com/s/saira/v8/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773Fks8xlg.woff2) format("woff2"); - unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, - U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; + unicode-range: + U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, + U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* latin */ @font-face { @@ -43,8 +46,9 @@ font-display: swap; src: url(https://fonts.gstatic.com/s/outfit/v4/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61O4a0Ew.woff2) format("woff2"); - unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, - U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; + unicode-range: + U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, + U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* latin */ @font-face { @@ -54,8 +58,9 @@ font-display: swap; src: url(https://fonts.gstatic.com/s/outfit/v4/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyO4a0Ew.woff2) format("woff2"); - unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, - U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; + unicode-range: + U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, + U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; } /* attribute tables */ diff --git a/docs/api/audit_logs.rst b/docs/api/audit_logs.rst index c8ac5a877a..af90f95c18 100644 --- a/docs/api/audit_logs.rst +++ b/docs/api/audit_logs.rst @@ -524,11 +524,17 @@ this goal, it must make use of a couple of data classes that aid in this goal. :type: :class:`str` - .. attribute:: image + .. attribute:: image - The cover image of a :class:`ScheduledEvent`. + The cover image of a :class:`ScheduledEvent`. - :type: :class:`str` + :type: :class:`str` + + .. attribute:: communication_disabled_until + + Until when a :class:`Member` will be timed out + + :type: :class:`datetime.datetime` | :data:`None` .. this is currently missing the following keys: reason and application_id I'm not sure how to about porting these diff --git a/docs/api/data_classes.rst b/docs/api/data_classes.rst index 1d891b90cd..87f86f1732 100644 --- a/docs/api/data_classes.rst +++ b/docs/api/data_classes.rst @@ -26,6 +26,21 @@ dynamic attributes in mind. .. autoclass:: SelectOption :members: +.. attributetable:: SelectDefaultValue + +.. autoclass:: SelectDefaultValue + :members: + +.. attributetable:: MediaGalleryItem + +.. autoclass:: MediaGalleryItem + :members: + +.. attributetable:: UnfurledMediaItem + +.. autoclass:: UnfurledMediaItem + :members: + .. attributetable:: Intents .. autoclass:: Intents diff --git a/docs/api/enums.rst b/docs/api/enums.rst index cd48a85cf5..20692fce21 100644 --- a/docs/api/enums.rst +++ b/docs/api/enums.rst @@ -2362,7 +2362,7 @@ of :class:`enum.Enum`. .. attribute:: advanced - Both default channels and questions (``OnboardingPrompt``s) will count towards the Onboarding requirements. + Both default channels and questions (``OnboardingPrompt``\s) will count towards the Onboarding requirements. .. class:: ReactionType @@ -2500,3 +2500,103 @@ of :class:`enum.Enum`. .. attribute:: private_channel The interaction is in a private DM or group DM channel. + +.. class:: VoiceChannelEffectAnimationType + + Represents the type of animation for a voice channel effect. + + .. versionadded:: 2.7 + + .. attribute:: premium + + The animation is a premium effect. + + .. attribute:: basic + + The animation is a basic effect. + + +.. class:: SubscriptionStatus + + Represents a subscription's status. + + .. versionadded:: 2.7 + + .. attribute:: active + + The subscription is active and is scheduled to renew. + + .. attribute:: ending + + The subscription is active but will not renew. + + .. attribute:: inactive + + The subscription is inactive and the subscription owner is not being charged. + + + +.. class:: ThreadArchiveDuration + + Represents the time before a thread is archived. + + .. versionadded:: 2.7 + + .. attribute:: one_hour + + Indicates that the thread will be archived after 1 hour of inactivity. + + .. attribute:: one_day + + Indicates that the thread will be archived after 1 day of inactivity. + + .. attribute:: three_days + + Indicates that the thread will be archived after 3 days of inactivity. + + .. attribute:: one_week + + Indicates that the thread will be archived after 1 week of inactivity. + + +.. class:: SeparatorSpacingSize + + Represents the padding size around a separator component. + + .. versionadded:: 2.7 + + .. attribute:: small + + The separator uses small padding. + + .. attribute:: large + + The separator uses large padding. + +.. class:: SortOrder + + Used to represent the default sort order for posts in :class:`ForumChannel` and :class:`MediaChannel`. + + .. attribute:: latest_activity + + Sort by latest activity. + + .. attribute:: creation_date + + Sort by post creation date. + +.. class:: SelectDefaultValueType + + Represents the default value type of a select menu. + + .. attribute:: channel + + The default value is a channel. + + .. attribute:: role + + The default value is a role. + + .. attribute:: user + + The default value is a user. diff --git a/docs/api/events.rst b/docs/api/events.rst index 51652ad925..45d8c1e279 100644 --- a/docs/api/events.rst +++ b/docs/api/events.rst @@ -410,42 +410,6 @@ Connection WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message. -Entitlements ------------- -.. function:: on_entitlement_create(entitlement) - - Called when a user subscribes to an SKU. - - .. versionadded:: 2.5 - - :param entitlement: The entitlement that was created as a result of the subscription. - :type entitlement: :class:`Entitlement` - -.. function:: on_entitlement_update(entitlement) - - Called when a user's subscription to an Entitlement is renewed for the next billing period. - - .. versionadded:: 2.5 - - :param entitlement: The entitlement that was updated. - :type entitlement: :class:`Entitlement` - -.. function:: on_entitlement_delete(entitlement) - - Called when a user's entitlement is deleted. - - Entitlements are usually only deleted when Discord issues a refund for a subscription, - or manually removes an entitlement from a user. - - .. note:: - - This is not called when a user's subscription is cancelled. - - .. versionadded:: 2.5 - - :param entitlement: The entitlement that was deleted. - :type entitlement: :class:`Entitlement` - Guilds ------ .. function:: on_guild_join(guild) @@ -911,7 +875,7 @@ Messages :type payload: :class:`RawMessageUpdateEvent` Polls -~~~~~~~~~ +~~~~~~ .. function:: on_poll_vote_add(poll, user, answer) Called when a vote is cast on a poll. If multiple answers were selected, this fires multiple times. @@ -1079,6 +1043,78 @@ Reactions :param payload: The raw event payload data. :type payload: :class:`RawReactionClearEmojiEvent` +Monetization +------------ +.. function:: on_entitlement_create(entitlement) + + Called when a user subscribes to an SKU. + + .. versionadded:: 2.5 + + :param entitlement: The entitlement that was created as a result of the subscription. + :type entitlement: :class:`Entitlement` + +.. function:: on_entitlement_update(entitlement) + + Called when a user's subscription to an Entitlement is cancelled. + + .. versionadded:: 2.5 + + .. note:: + + Before October 1, 2024, this event was called when a user's subscription was renewed. + + Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. + Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`. + + `See the Discord changelog. `_ + + :param entitlement: The entitlement that was updated. + :type entitlement: :class:`Entitlement` + +.. function:: on_entitlement_delete(entitlement) + + Called when a user's entitlement is deleted. + + Entitlements are usually only deleted when Discord issues a refund for a subscription, + or manually removes an entitlement from a user. + + .. note:: + + This is not called when a user's subscription is cancelled. + + .. versionadded:: 2.5 + + :param entitlement: The entitlement that was deleted. + :type entitlement: :class:`Entitlement` + +.. function:: on_subscription_create(subscription) + + Called when a subscription is created for the application. + + .. versionadded:: 2.7 + + :param subscription: The subscription that was created. + :type subscription: :class:`Subscription` + +.. function:: on_subscription_update(subscription) + + Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update. + + .. versionadded:: 2.7 + + :param subscription: The subscription that was updated. + :type subscription: :class:`Subscription` + +.. function:: on_subscription_delete(subscription) + + Called when a subscription has been deleted. + + .. versionadded:: 2.7 + + :param subscription: The subscription that was deleted. + :type subscription: :class:`Subscription` + Scheduled Events ---------------- .. function:: on_scheduled_event_create(event) @@ -1377,3 +1413,85 @@ Voice Channel Status Update :param payload: The raw voice channel status update payload. :type payload: :class:`RawVoiceChannelStatusUpdateEvent` + +Voice Channel Effects +--------------------- +.. function:: on_voice_channel_effect_send(event) + + Called when a voice channel effect is sent. + + .. versionadded:: 2.7 + + :param event: The voice channel effect event. + :type event: :class:`VoiceChannelEffectSendEvent` + +Soundboard Sound +---------------- +.. function:: on_soundboard_sounds_update(before, after) + + Called when multiple guild soundboard sounds are updated at once and they were all already in the cache. + This is called, for example, when a guild loses a boost level and some sounds become unavailable. + + .. versionadded:: 2.7 + + :param before: The soundboard sounds prior to being updated. + :type before: List[:class:`SoundboardSound`] + :param after: The soundboard sounds after being updated. + :type after: List[:class:`SoundboardSound`] + +.. function:: on_raw_soundboard_sounds_update(after) + + Called when multiple guild soundboard sounds are updated at once. + This is called, for example, when a guild loses a boost level and some sounds become unavailable. + + .. versionadded:: 2.7 + + :param after: The soundboard sounds after being updated. + :type after: List[:class:`SoundboardSound`] + +.. function:: on_soundboard_sound_update(before, after) + + Called when a soundboard sound is updated and it was already in the cache. + + .. versionadded:: 2.7 + + :param before: The soundboard sound prior to being updated. + :type before: :class:`Soundboard` + :param after: The soundboard sound after being updated. + :type after: :class:`Soundboard` + +.. function:: on_raw_soundboard_sound_update(after) + + Called when a soundboard sound is updated. + + .. versionadded:: 2.7 + + :param after: The soundboard sound after being updated. + :type after: :class:`SoundboardSound` + +.. function:: on_soundboard_sound_delete(sound) + + Called when a soundboard sound is deleted. + + .. versionadded:: 2.7 + + :param sound: The soundboard sound that was deleted. + :type sound: :class:`SoundboardSound` + +.. function:: on_raw_soundboard_sound_delete(payload) + + Called when a soundboard sound is deleted. + + .. versionadded:: 2.7 + + :param payload: The raw event payload data. + :type payload: :class:`RawSoundboardSoundDeleteEvent` + +.. function:: on_soundboard_sound_create(sound) + + Called when a soundboard sound is created. + + .. versionadded:: 2.7 + + :param sound: The soundboard sound that was created. + :type sound: :class:`SoundboardSound` diff --git a/docs/api/models.rst b/docs/api/models.rst index 0238e2fc77..5075d7084b 100644 --- a/docs/api/models.rst +++ b/docs/api/models.rst @@ -114,6 +114,11 @@ Monetization .. autoclass:: Entitlement() :members: +.. attributetable:: Subscription + +.. autoclass:: Subscription() + :members: + Guild ----- @@ -216,6 +221,11 @@ Role .. autoclass:: RoleTags() :members: +.. attributetable:: RoleColours + +.. autoclass:: RoleColours + :members: + Scheduled Event ~~~~~~~~~~~~~~~ @@ -363,6 +373,14 @@ Interactions .. autoclass:: AuthorizingIntegrationOwners() :members: +.. attributetable:: InteractionCallback + +.. autoclass:: InteractionCallback() + :members: + +Message Components +------------------ + .. attributetable:: Component .. autoclass:: Component() @@ -385,6 +403,48 @@ Interactions :members: :inherited-members: +.. attributetable:: Section + +.. autoclass:: Section() + :members: + :inherited-members: + +.. attributetable:: TextDisplay + +.. autoclass:: TextDisplay() + :members: + :inherited-members: + +.. attributetable:: Thumbnail + +.. autoclass:: Thumbnail() + :members: + :inherited-members: + +.. attributetable:: MediaGallery + +.. autoclass:: MediaGallery() + :members: + :inherited-members: + +.. attributetable:: FileComponent + +.. autoclass:: FileComponent() + :members: + :inherited-members: + +.. attributetable:: Separator + +.. autoclass:: Separator() + :members: + :inherited-members: + +.. attributetable:: Container + +.. autoclass:: Container() + :members: + :inherited-members: + Emoji ----- @@ -428,6 +488,12 @@ Channels :members: :inherited-members: +.. attributetable:: MediaChannel + +.. autoclass:: MediaChannel() + :members: + :inherited-members: + .. attributetable:: VoiceChannel .. autoclass:: VoiceChannel() @@ -494,6 +560,20 @@ Stickers .. autoclass:: GuildSticker() :members: +Soundboard +---------- + +.. attributetable:: PartialSoundboardSound + +.. autoclass:: PartialSoundboardSound() + :members: + +.. attributetable:: SoundboardSound + +.. autoclass:: SoundboardSound() + :members: + :inherited-members: + Events ------ @@ -577,6 +657,11 @@ Events .. autoclass:: RawVoiceChannelStatusUpdateEvent() :members: +.. attributetable:: VoiceChannelEffectSendEvent + +.. autoclass:: VoiceChannelEffectSendEvent() + :members: + Webhooks @@ -591,3 +676,13 @@ Webhooks .. autoclass:: PartialWebhookChannel() :members: + + + +Collectibles +------------ + +.. attributetable:: Nameplate + +.. autoclass:: Nameplate() + :undoc-members: diff --git a/docs/api/ui_kit.rst b/docs/api/ui_kit.rst index 18bb9de89b..8714f59b85 100644 --- a/docs/api/ui_kit.rst +++ b/docs/api/ui_kit.rst @@ -55,6 +55,69 @@ Objects :members: :inherited-members: + +.. class:: discord.ui.StringSelect + + An alias for :class:`Select` with ``select_type`` as :attr:`discord.ComponentType.string_select`. + +.. class:: discord.ui.UserSelect + + An alias for :class:`Select` with ``select_type`` as :attr:`discord.ComponentType.user_select`. + +.. class:: discord.ui.RoleSelect + + An alias for :class:`Select` with ``select_type`` as :attr:`discord.ComponentType.role_select`. + +.. class:: discord.ui.MentionableSelect + + An alias for :class:`Select` with ``select_type`` as :attr:`discord.ComponentType.mentionable_select`. + +.. class:: discord.ui.ChannelSelect + + An alias for :class:`Select` with ``select_type`` as :attr:`discord.ComponentType.channel_select`. + +.. attributetable:: discord.ui.Section + +.. autoclass:: discord.ui.Section + :members: + :inherited-members: + +.. attributetable:: discord.ui.TextDisplay + +.. autoclass:: discord.ui.TextDisplay + :members: + :inherited-members: + +.. attributetable:: discord.ui.Thumbnail + +.. autoclass:: discord.ui.Thumbnail + :members: + :inherited-members: + +.. attributetable:: discord.ui.MediaGallery + +.. autoclass:: discord.ui.MediaGallery + :members: + :inherited-members: + +.. attributetable:: discord.ui.File + +.. autoclass:: discord.ui.File + :members: + :inherited-members: + +.. attributetable:: discord.ui.Separator + +.. autoclass:: discord.ui.Separator + :members: + :inherited-members: + +.. attributetable:: discord.ui.Container + +.. autoclass:: discord.ui.Container + :members: + :inherited-members: + .. attributetable:: discord.ui.Modal .. autoclass:: discord.ui.Modal diff --git a/docs/build/locales/.doctrees/api/abcs.doctree b/docs/build/locales/.doctrees/api/abcs.doctree index 4bd66ea63e..c90545358a 100644 Binary files a/docs/build/locales/.doctrees/api/abcs.doctree 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 index ad217db584..039c83ac14 100644 Binary files a/docs/build/locales/.doctrees/api/application_commands.doctree and b/docs/build/locales/.doctrees/api/application_commands.doctree differ diff --git a/docs/build/locales/.doctrees/api/clients.doctree b/docs/build/locales/.doctrees/api/clients.doctree index da5422fe15..f41491c9d5 100644 Binary files a/docs/build/locales/.doctrees/api/clients.doctree 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 index 0ff6e2a955..b745aee400 100644 Binary files a/docs/build/locales/.doctrees/api/cogs.doctree 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 index 1fe0f158c8..050f12fca2 100644 Binary files a/docs/build/locales/.doctrees/api/data_classes.doctree 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 index 40b779a378..1c956a72b0 100644 Binary files a/docs/build/locales/.doctrees/api/enums.doctree 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 index 924bdcd6c8..215c7599e2 100644 Binary files a/docs/build/locales/.doctrees/api/events.doctree and b/docs/build/locales/.doctrees/api/events.doctree differ diff --git a/docs/build/locales/.doctrees/api/index.doctree b/docs/build/locales/.doctrees/api/index.doctree index 795192be78..7d7908cafa 100644 Binary files a/docs/build/locales/.doctrees/api/index.doctree 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 index 3f54c6289f..01a4f5544d 100644 Binary files a/docs/build/locales/.doctrees/api/models.doctree and b/docs/build/locales/.doctrees/api/models.doctree differ diff --git a/docs/build/locales/.doctrees/api/ui_kit.doctree b/docs/build/locales/.doctrees/api/ui_kit.doctree index 6c4ea620e3..706850aa6b 100644 Binary files a/docs/build/locales/.doctrees/api/ui_kit.doctree 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 index 7147a8bbf3..ee648eed32 100644 Binary files a/docs/build/locales/.doctrees/api/utils.doctree and b/docs/build/locales/.doctrees/api/utils.doctree differ diff --git a/docs/build/locales/.doctrees/api/webhooks.doctree b/docs/build/locales/.doctrees/api/webhooks.doctree index cd7358c7c8..58021a45dc 100644 Binary files a/docs/build/locales/.doctrees/api/webhooks.doctree 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 index af23610a19..f021a304b0 100644 Binary files a/docs/build/locales/.doctrees/changelog.doctree and b/docs/build/locales/.doctrees/changelog.doctree differ diff --git a/docs/build/locales/.doctrees/environment.pickle b/docs/build/locales/.doctrees/environment.pickle index b874bd9437..75fb33c00c 100644 Binary files a/docs/build/locales/.doctrees/environment.pickle 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 index 96bd9c8a5c..36d60ff285 100644 Binary files a/docs/build/locales/.doctrees/ext/bridge/api.doctree 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 index 2756f599c9..8f2d70f1de 100644 Binary files a/docs/build/locales/.doctrees/ext/bridge/index.doctree 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 index 7de9700370..ad29c8b1d9 100644 Binary files a/docs/build/locales/.doctrees/ext/commands/api.doctree and b/docs/build/locales/.doctrees/ext/commands/api.doctree differ diff --git a/docs/build/locales/.doctrees/ext/commands/commands.doctree b/docs/build/locales/.doctrees/ext/commands/commands.doctree index 61405cd271..8793ae3c91 100644 Binary files a/docs/build/locales/.doctrees/ext/commands/commands.doctree and b/docs/build/locales/.doctrees/ext/commands/commands.doctree differ diff --git a/docs/build/locales/.doctrees/ext/commands/index.doctree b/docs/build/locales/.doctrees/ext/commands/index.doctree index ed56744cfd..d4544d49d3 100644 Binary files a/docs/build/locales/.doctrees/ext/commands/index.doctree 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 index a1ee59714b..31bb886352 100644 Binary files a/docs/build/locales/.doctrees/ext/pages/index.doctree and b/docs/build/locales/.doctrees/ext/pages/index.doctree differ diff --git a/docs/build/locales/.doctrees/faq.doctree b/docs/build/locales/.doctrees/faq.doctree index e1a046da4b..8335066a2d 100644 Binary files a/docs/build/locales/.doctrees/faq.doctree 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 index e2dc3a76d0..d199357998 100644 Binary files a/docs/build/locales/.doctrees/index.doctree 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 index f26a49c5e7..b8e71731c3 100644 Binary files a/docs/build/locales/.doctrees/installing.doctree and b/docs/build/locales/.doctrees/installing.doctree differ diff --git a/docs/build/locales/api/abcs.pot b/docs/build/locales/api/abcs.pot index 063196b285..c9bdc1190d 100644 --- a/docs/build/locales/api/abcs.pot +++ b/docs/build/locales/api/abcs.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1077,12 +1077,12 @@ 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" +msgid "A reference to the :class:`~discord.Message` being replied to or forwarded. This can be created using :meth:`~discord.Message.to_reference`. When replying, you can control whether 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``." +msgid "A reference to the :class:`~discord.Message` being replied to or forwarded. This can be created using :meth:`~discord.Message.to_reference`. When replying, you can control whether 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 diff --git a/docs/build/locales/api/application_commands.pot b/docs/build/locales/api/application_commands.pot index 7f4c9e6f9b..786bc5a352 100644 --- a/docs/build/locales/api/application_commands.pot +++ b/docs/build/locales/api/application_commands.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -53,22 +53,22 @@ msgstr "" #: 2f82411ffec84c53bcd002c61cacf0de #: 64675ca2cf37474fb4db23c7d15af9ab #: 62e059169acd42789ad242cd2083fa36 -#: 36bdb8c4ce3245f58c14273b19fd5d62 -#: 52bf2928121f4472b33d87c293c520da -#: a0e267ca8cbb4cdc92ee405b3a8b5906 -#: a0e267ca8cbb4cdc92ee405b3a8b5906 -#: a0e267ca8cbb4cdc92ee405b3a8b5906 -#: 235625d33ce645a7b043c3677e586ff9 -#: a0e267ca8cbb4cdc92ee405b3a8b5906 -#: a0e267ca8cbb4cdc92ee405b3a8b5906 -#: a0e267ca8cbb4cdc92ee405b3a8b5906 -#: a0e267ca8cbb4cdc92ee405b3a8b5906 -#: a0e267ca8cbb4cdc92ee405b3a8b5906 -#: a0e267ca8cbb4cdc92ee405b3a8b5906 -#: a0e267ca8cbb4cdc92ee405b3a8b5906 -#: a0e267ca8cbb4cdc92ee405b3a8b5906 -#: a0e267ca8cbb4cdc92ee405b3a8b5906 -#: a0e267ca8cbb4cdc92ee405b3a8b5906 +#: 62e059169acd42789ad242cd2083fa36 +#: 62e059169acd42789ad242cd2083fa36 +#: 62e059169acd42789ad242cd2083fa36 +#: 62e059169acd42789ad242cd2083fa36 +#: 62e059169acd42789ad242cd2083fa36 +#: 62e059169acd42789ad242cd2083fa36 +#: 62e059169acd42789ad242cd2083fa36 +#: 62e059169acd42789ad242cd2083fa36 +#: 62e059169acd42789ad242cd2083fa36 +#: 62e059169acd42789ad242cd2083fa36 +#: 62e059169acd42789ad242cd2083fa36 +#: 62e059169acd42789ad242cd2083fa36 +#: 62e059169acd42789ad242cd2083fa36 +#: 62e059169acd42789ad242cd2083fa36 +#: 62e059169acd42789ad242cd2083fa36 +#: 62e059169acd42789ad242cd2083fa36 msgid "Parameters" msgstr "" @@ -91,19 +91,20 @@ msgstr "" #: b0facd7208864b9190e27e037ea8aa7b #: 7bfccaa86ce54a64bf7d92ec6a576066 #: c8daf70be35f4fcfaafc3aca82447190 -#: 466e0a2592dd47b6a53225e7c79ec12b -#: 661e5de699854673aba3514ac463b12e -#: 96f7f9fedd3e4084838b9340c26d3781 -#: 96f7f9fedd3e4084838b9340c26d3781 -#: 96f7f9fedd3e4084838b9340c26d3781 -#: 96f7f9fedd3e4084838b9340c26d3781 -#: 96f7f9fedd3e4084838b9340c26d3781 -#: 96f7f9fedd3e4084838b9340c26d3781 -#: 96f7f9fedd3e4084838b9340c26d3781 -#: 96f7f9fedd3e4084838b9340c26d3781 -#: 96f7f9fedd3e4084838b9340c26d3781 -#: 96f7f9fedd3e4084838b9340c26d3781 -#: 96f7f9fedd3e4084838b9340c26d3781 +#: c8daf70be35f4fcfaafc3aca82447190 +#: c8daf70be35f4fcfaafc3aca82447190 +#: c8daf70be35f4fcfaafc3aca82447190 +#: c8daf70be35f4fcfaafc3aca82447190 +#: c8daf70be35f4fcfaafc3aca82447190 +#: c8daf70be35f4fcfaafc3aca82447190 +#: c8daf70be35f4fcfaafc3aca82447190 +#: c8daf70be35f4fcfaafc3aca82447190 +#: c8daf70be35f4fcfaafc3aca82447190 +#: c8daf70be35f4fcfaafc3aca82447190 +#: c8daf70be35f4fcfaafc3aca82447190 +#: c8daf70be35f4fcfaafc3aca82447190 +#: c8daf70be35f4fcfaafc3aca82447190 +#: c8daf70be35f4fcfaafc3aca82447190 msgid "Return type" msgstr "" @@ -176,17 +177,17 @@ msgstr "" #: 48a171e781d247f4be4cd083cd7b649a #: 35882ccb7511412fa8a02fe91cb6a83c #: 1f9a0fed83444d2d8cc1cb8f25d4f832 -#: d2b91ddf551d443299606af43f270971 -#: 3de69d0bb23d41e1bdf1fc7ec71268b0 -#: 51571b876dcd4446b30ec38ef632db2c -#: 51571b876dcd4446b30ec38ef632db2c -#: 51571b876dcd4446b30ec38ef632db2c -#: 51571b876dcd4446b30ec38ef632db2c -#: 51571b876dcd4446b30ec38ef632db2c -#: 51571b876dcd4446b30ec38ef632db2c -#: 51571b876dcd4446b30ec38ef632db2c -#: 51571b876dcd4446b30ec38ef632db2c -#: 51571b876dcd4446b30ec38ef632db2c +#: 1f9a0fed83444d2d8cc1cb8f25d4f832 +#: 1f9a0fed83444d2d8cc1cb8f25d4f832 +#: 1f9a0fed83444d2d8cc1cb8f25d4f832 +#: 1f9a0fed83444d2d8cc1cb8f25d4f832 +#: 1f9a0fed83444d2d8cc1cb8f25d4f832 +#: 1f9a0fed83444d2d8cc1cb8f25d4f832 +#: 1f9a0fed83444d2d8cc1cb8f25d4f832 +#: 1f9a0fed83444d2d8cc1cb8f25d4f832 +#: 1f9a0fed83444d2d8cc1cb8f25d4f832 +#: 1f9a0fed83444d2d8cc1cb8f25d4f832 +#: 1f9a0fed83444d2d8cc1cb8f25d4f832 msgid "Returns" msgstr "" @@ -324,11 +325,11 @@ msgstr "" #: e46ea6aa9eee426bb7dfc66cd3cba65a #: 469210f5cf914546997454d384d9029d #: 6c64647e98224b3580a97a6971e0460f -#: 1d938773f96a4ec29acb39fe95a085e1 -#: 1cd0f7372eb94a76a4c4eb766a807d99 -#: 1cd0f7372eb94a76a4c4eb766a807d99 +#: 6c64647e98224b3580a97a6971e0460f #: 1cd0f7372eb94a76a4c4eb766a807d99 +#: 6c64647e98224b3580a97a6971e0460f #: 1cd0f7372eb94a76a4c4eb766a807d99 +#: 6c64647e98224b3580a97a6971e0460f msgid ":class:`bool`" msgstr "" @@ -483,8 +484,8 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:8 #: 67aaf53865d34b4eab081611d1af6dda #: ed6cdb67d88c45f4a8824353790cf8fa -#: 3d0e2ed16525455d96c8cb1edadb5bc9 -#: 3d0e2ed16525455d96c8cb1edadb5bc9 +#: ed6cdb67d88c45f4a8824353790cf8fa +#: ed6cdb67d88c45f4a8824353790cf8fa msgid "The name of the command." msgstr "" @@ -515,34 +516,20 @@ msgstr "" #: 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 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 @@ -551,8 +538,10 @@ msgstr "" #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 @@ -561,6 +550,8 @@ msgstr "" #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 @@ -570,13 +561,21 @@ msgstr "" #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 #: f422915c4028467f9272f041e90ac356 #: f422915c4028467f9272f041e90ac356 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 +#: cfb0e3fdd30c4752aa18bb3bb3051aa8 msgid "type" msgstr "" @@ -591,11 +590,11 @@ msgstr "" #: 49221d04f03b4b12a9d0c0a9c637ef9a #: e1a8d5b422ad43aa838454c7a548d093 #: e73d6cccfb5e4378b06a018f2cb3a728 -#: b2ced8f32ef84169b7d0feed3cfdffb8 -#: b2ced8f32ef84169b7d0feed3cfdffb8 -#: b2ced8f32ef84169b7d0feed3cfdffb8 -#: b2ced8f32ef84169b7d0feed3cfdffb8 -#: b2ced8f32ef84169b7d0feed3cfdffb8 +#: e73d6cccfb5e4378b06a018f2cb3a728 +#: e73d6cccfb5e4378b06a018f2cb3a728 +#: e73d6cccfb5e4378b06a018f2cb3a728 +#: e73d6cccfb5e4378b06a018f2cb3a728 +#: e73d6cccfb5e4378b06a018f2cb3a728 msgid ":class:`str`" msgstr "" @@ -629,7 +628,7 @@ msgstr "" #: ../../../discord/commands/options.py:docstring of discord.commands.options.Option:23 #: 219ed0b9b95f4158a6f0a49a5ce2decb #: 4c502354c8d74bf7b7c8f98c11b6a5bd -#: 457e3625a42542f28892b83df6b3d440 +#: 4c502354c8d74bf7b7c8f98c11b6a5bd msgid "Optional[:class:`str`]" msgstr "" @@ -639,8 +638,8 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:20 #: d206fd0ddbb94163a1152cfc1c826c06 #: 64a250a8f0ac40d4aecc323b2ac9a050 -#: 77e0016800534470945d60987fed7899 -#: 77e0016800534470945d60987fed7899 +#: 64a250a8f0ac40d4aecc323b2ac9a050 +#: 64a250a8f0ac40d4aecc323b2ac9a050 msgid "The ids of the guilds where this command will be registered." msgstr "" @@ -650,8 +649,8 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:22 #: c586c88145e24838a7a0f08feae5b3db #: a8524dff9e6d4ac8a3a4b6229ad12e63 -#: 2b5abad428324601971b5a7d306bdc79 -#: 2b5abad428324601971b5a7d306bdc79 +#: a8524dff9e6d4ac8a3a4b6229ad12e63 +#: a8524dff9e6d4ac8a3a4b6229ad12e63 msgid "Optional[List[:class:`int`]]" msgstr "" @@ -689,9 +688,9 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:26 #: aedee1abd900459caa0824d9395135f2 #: 90c2f3e57f6b4b12a2db96f0229f59a6 -#: 243e82cb8df04a368273abf6f3e337e6 -#: fe40b49ec6f643979b0a4dc4f8f53c79 -#: fe40b49ec6f643979b0a4dc4f8f53c79 +#: 90c2f3e57f6b4b12a2db96f0229f59a6 +#: 90c2f3e57f6b4b12a2db96f0229f59a6 +#: 90c2f3e57f6b4b12a2db96f0229f59a6 msgid "Whether the command should only be usable inside a guild." msgstr "" @@ -709,9 +708,9 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:35 #: a1c4ecc9455b4ba4bf4c25be0df33521 #: 3f98034506304fa5adcbcb706311be39 -#: c1b7134cf52d42c2950bd14e6152aed8 -#: 6d50a38d0a17491a8badbba7e2e94860 -#: 6d50a38d0a17491a8badbba7e2e94860 +#: 3f98034506304fa5adcbcb706311be39 +#: 3f98034506304fa5adcbcb706311be39 +#: 3f98034506304fa5adcbcb706311be39 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 "" @@ -722,9 +721,9 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:42 #: 6b3bc7e04f3640fbbc49a1f5f1444291 #: 4093e966648f402ab9e9a3821479bc17 -#: d0cf02f6c33d40f480e6dcdfa59e5bed -#: 59b49969a86549fe97fef27fa01c037d -#: 59b49969a86549fe97fef27fa01c037d +#: 4093e966648f402ab9e9a3821479bc17 +#: 4093e966648f402ab9e9a3821479bc17 +#: 4093e966648f402ab9e9a3821479bc17 msgid "The default permissions a member needs to be able to run the command." msgstr "" @@ -734,8 +733,8 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:44 #: 128da93392f74a34b75d9da47a07e5d3 #: c8f15213fe404ecc80f0efbad85ce25f -#: 5fd417671e594f12bbdb4eebee581649 -#: 5fd417671e594f12bbdb4eebee581649 +#: c8f15213fe404ecc80f0efbad85ce25f +#: c8f15213fe404ecc80f0efbad85ce25f msgid ":class:`~discord.Permissions`" msgstr "" @@ -764,9 +763,9 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:54 #: 99e057769f604564828ec66970d09051 #: 0b88f443adf9434cab24c10d11dd4d90 -#: 1d352bc3635141cda4848e4fb7e0973e -#: d9d5c1770b794a5aa348922c71a848cd -#: d9d5c1770b794a5aa348922c71a848cd +#: 0b88f443adf9434cab24c10d11dd4d90 +#: 0b88f443adf9434cab24c10d11dd4d90 +#: 0b88f443adf9434cab24c10d11dd4d90 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 "" @@ -776,8 +775,8 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:61 #: ad45d2349ec14cf6a18c5b8b7dc2a062 #: ec1f97a3576f474d878bf3caa4bef5f8 -#: 67af798da00f47a391dffbdf1d1b782b -#: 67af798da00f47a391dffbdf1d1b782b +#: ec1f97a3576f474d878bf3caa4bef5f8 +#: ec1f97a3576f474d878bf3caa4bef5f8 msgid "List[Callable[[:class:`.ApplicationContext`], :class:`bool`]]" msgstr "" @@ -806,10 +805,10 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:72 #: 4c7491a6786349beb7d12103568687d9 #: 6e99029583a841a9ab1d74653b3b85ac -#: 21ed930c27b2453195f0faa34f14457e #: 808dd134efa0495ea9b213fcf9b366a3 -#: 8aeea10a4b16406bb4fabc8f5e266f29 -#: 8aeea10a4b16406bb4fabc8f5e266f29 +#: 6e99029583a841a9ab1d74653b3b85ac +#: 6e99029583a841a9ab1d74653b3b85ac +#: 6e99029583a841a9ab1d74653b3b85ac msgid "The name localizations for this command. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." msgstr "" @@ -825,12 +824,12 @@ msgstr "" #: 7f013ded205c49e4a449eb1a8356e3b8 #: 023e1e7e67f84b929dedc87e98bf488f #: 94ef4db9991241619146371c2d241eec -#: 9fb8440c83b64b5da889a607e563f44c -#: 7897fe9f532240669b41fd64f8d327df -#: 7897fe9f532240669b41fd64f8d327df -#: 7897fe9f532240669b41fd64f8d327df -#: 7897fe9f532240669b41fd64f8d327df +#: 94ef4db9991241619146371c2d241eec +#: 94ef4db9991241619146371c2d241eec +#: 94ef4db9991241619146371c2d241eec #: 7897fe9f532240669b41fd64f8d327df +#: 94ef4db9991241619146371c2d241eec +#: 94ef4db9991241619146371c2d241eec msgid "Dict[:class:`str`, :class:`str`]" msgstr "" @@ -839,8 +838,8 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.create_subgroup:30 #: 9f23516b8763437599e6707336f93a13 #: 465be0fc2ca64e46ab11324883be8c39 -#: 232bbcc643034214afd2c8bf7793034c #: b589efc99cfc492e9e2d1b0070562e2c +#: 465be0fc2ca64e46ab11324883be8c39 msgid "The description localizations for this command. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." msgstr "" @@ -857,8 +856,8 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:81 #: bde9fd66a882485c806403a935a2799b #: 667c0fef77a5473cb31b94fd02113660 -#: 6eb640cae00c453a89aab91f7b489f5b -#: 6eb640cae00c453a89aab91f7b489f5b +#: 667c0fef77a5473cb31b94fd02113660 +#: 667c0fef77a5473cb31b94fd02113660 msgid "Set[:class:`IntegrationType`]" msgstr "" @@ -873,17 +872,22 @@ msgstr "" #: ../../../discord/commands/core.py:docstring of discord.commands.core.UserCommand:87 #: 5f7622e9d98e4fa78b9fdc2edd148970 #: e4cf9dee7685447693343bc155de82b8 -#: fca44b50de0b4821acb8f06f88efc30b -#: fca44b50de0b4821acb8f06f88efc30b +#: e4cf9dee7685447693343bc155de82b8 +#: e4cf9dee7685447693343bc155de82b8 msgid "Set[:class:`InteractionContextType`]" msgstr "" +#: ../../../discord/commands/core.py:docstring of discord.SlashCommand.cog:1 +#: f0a5c570cc0640daaab5e1d358b07b15 +msgid "The type of the None singleton." +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 +#: e09041a18e2048f885c27f005740a3b7 +#: e09041a18e2048f885c27f005740a3b7 msgid "Creates a copy of this command." msgstr "" @@ -891,8 +895,8 @@ msgstr "" #: ../../../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 +#: a8105025c5e2494aa3f98b742ce48850 +#: a8105025c5e2494aa3f98b742ce48850 msgid "A new instance of this command." msgstr "" @@ -934,21 +938,21 @@ 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 +#: e19cf1315db44335b86b91dc9de63e5b 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 +#: e16839754dd74ff0b55c2565c7a3bbfb 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 +#: 50bd9f43948a48cda18b0348eeacf075 msgid "The slash command group that was created." msgstr "" @@ -977,6 +981,11 @@ msgstr "" msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." msgstr "" +#: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.walk_commands:6 +#: 62d15681b0ef40fabaa8a66ccb17f7c1 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + #: ../../../discord/commands/core.py:docstring of discord.commands.core.SlashCommandGroup.copy:1 #: 2030810b53b74013855efa8e43381af4 msgid "Creates a copy of this command group." @@ -1257,20 +1266,6 @@ msgstr "" 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 @@ -1323,6 +1318,13 @@ msgstr "" msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" msgstr "" +#: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.command:1 +#: ../../../discord/commands/context.py:docstring of discord.AutocompleteContext.command:1 +#: d6f68d1b5a754d4faff41bef78e15ad3 +#: d6f68d1b5a754d4faff41bef78e15ad3 +msgid "The command that this context belongs to." +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`." @@ -1543,8 +1545,8 @@ 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``." +#: c6b8b47999374b87931c77b60a96a2d4 +msgid "You specified both ``embed`` and ``embeds``, or sent content or embeds with V2 components." msgstr "" #: ../../../discord/commands/context.py:docstring of discord.ApplicationContext.edit:55 @@ -1692,7 +1694,7 @@ 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." +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 dispatchable 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 @@ -1857,6 +1859,36 @@ msgstr "" 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.ApplicationContext.is_guild_authorised:1 +#: 27773616d4ce4d9b82783152b70268e7 +msgid ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.is_guild_authorised:4 +#: 27854a581be54d2ca5e020fb0355b768 +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.is_user_authorised:1 +#: 7c5843df10734082b20d87652eedb730 +msgid ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.is_user_authorised:4 +#: c1c6d413f39c498698c17bed484de46f +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.is_guild_authorized:1 +#: 6d0f7b6360b144369463f617bf6fda74 +msgid ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/commands/context.py:docstring of discord.commands.context.ApplicationContext.is_user_authorized:1 +#: a672117d3103480d961a778b53df95e7 +msgid ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + #: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:1 #: 48def13f6174498892c7611747545cd9 msgid "Represents context for a slash command's option autocomplete." @@ -1872,32 +1904,32 @@ msgstr "" msgid "The interaction object that invoked the autocomplete." msgstr "" -#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:27 +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:21 #: 59a530105ac6485197b9bf2cefe8e50a msgid "The option the user is currently typing." msgstr "" -#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:29 +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:23 #: 326327f43433488a8304984c578d455b msgid ":class:`.Option`" msgstr "" -#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:33 +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:27 #: 59f72990e3c14649938ce6341ee0005f msgid "The content of the focused option." msgstr "" -#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:35 +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:29 #: 58801cfd58d44239a96812222e3aa822 msgid ":class:`.str`" msgstr "" -#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:39 +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:33 #: 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 +#: ../../../discord/commands/context.py:docstring of discord.commands.context.AutocompleteContext:35 #: 808133417bf3421090c005298b52fda3 msgid "Dict[:class:`str`, Any]" msgstr "" diff --git a/docs/build/locales/api/clients.pot b/docs/build/locales/api/clients.pot index c06642dcef..b7ba5aebf2 100644 --- a/docs/build/locales/api/clients.pot +++ b/docs/build/locales/api/clients.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -156,76 +156,82 @@ msgstr "" #: d26b63e1b0dd4241989d229e204c2df0 #: 3cb58a3abe1b42c1819b2852310d653a #: 383b7b70518e4373a487cda57b5af7e9 -#: 894ca1b95aa546fa989ebc8cdeba861f -#: 76dd9328c31b4a4f950ccd0e3951a95b -#: 50b3f627d64d43968598406f8a54b014 -#: 96723fb434f94be5a857bec15ed52438 -#: cd623e270a47436b8f61ff60505e83cf -#: 29c266428c724030856e400f0321170c -#: c846f5d2939f47388cb6d8ca7e75a1a5 -#: c938d82420ef4100a294a971ae9ed880 -#: fd85f38bdfd648178e90d9d7b75e359b -#: 59323c4d26924524b3f0a37f55605994 -#: e9d1b7d02e6341219d94f03c85af5364 -#: 8dcb3fd905cc4640a1d94643105dd392 -#: b147c7c183114833a614aa7b243e3b87 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 #: 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 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 #: 7a83a9a6026f4952ac18057feeedb044 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 +#: 383b7b70518e4373a487cda57b5af7e9 msgid "Returns" msgstr "" @@ -256,123 +262,140 @@ msgstr "" #: 80db389f7eb84893ab0b237312ef5b00 #: 5572b6fc69b947b6b4a38b5a3a0919fd #: c08ffb6b169b4e5d9ea796330e158ba4 -#: 94fb92d7017746558cdd49a5591ea65f -#: 065b24140ad64f89bb8aebb7cbaaab81 -#: 1e47d1137dd948f7a4766ae5501226cd -#: ecaa6e582e60430db9758f5ad91318c7 -#: 169835626ad247a4bcc302daabf74f2b -#: 00df3d9a2f42415fb50effb3dcc752e2 -#: 804ec08a0674477f81206af58d000d7a -#: 87d6c1142b8d4e4f84dbc4462fa8af12 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 #: d01fd2e5a7ce4d7c8e3c738e2769c0b3 -#: 6a5cda973d654ea292590a860372879c -#: 47506201077a4cf2a2d31c3225e7f066 -#: 5dc7f8a955dc46239ce157d05489e188 -#: 211c294473a74b80966d5142f36889f0 -#: 655d0d4943ab4822aa21d4e4a750d74b -#: 3f756d9875684a0ebe2664b9ca14132a -#: b7ac4b96f8d2402ba0daae8c56c55910 -#: ab9ba099fcf94cbb9bb79464abb21fa8 -#: 30cedd7bc2524dcd8393358dc4220ba0 -#: 8df350c04c424a6ba39097fe0b5f8a9c -#: 802bd62917a4494ba82f62bcf514d251 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 #: 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 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 #: c776ad51021d4b88a50e1e87662bf4a5 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 #: c776ad51021d4b88a50e1e87662bf4a5 -#: 606afb97d6624f858e67593ee96461ba +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 #: c776ad51021d4b88a50e1e87662bf4a5 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 #: c776ad51021d4b88a50e1e87662bf4a5 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 +#: c08ffb6b169b4e5d9ea796330e158ba4 msgid "Return type" msgstr "" @@ -421,58 +444,66 @@ msgstr "" #: 4727e7dbff374a62b8a56c79dc66082d #: 6dcc2de71d1343bc93b3f0bca6661072 #: f7d3143efeea400d85cc0fcf45b1e15b -#: 3888f66b0d7d4eb7bfc805f9807a41d7 -#: b4b22e18c1bf40269e3dcfbaec8aae03 -#: efa73facdf57418f9086572e7be0917d -#: d365fec41ab64fd19b3077f49a1088a4 -#: 9dddf4f4551d4eb09d25088e95eed7b5 -#: 00e6bd39c7fa4184844b6f7e7afcc5ef -#: b897a699a6ae41eb83dee4e67d3b0f4a -#: e4def2a95d484a9584fa73e8d26c4d1b -#: 93af98486bf7445e9912df5e0da0b0ea -#: 6c9daf6bb4464e6cbc2c184b3ccea998 -#: 0a5f7aa535f24ca794e3c8734d4caf5f -#: 5333ac2171494bb08f73a1fad01039bf -#: cab1be0a9d7a4ab18612dc4bdf535020 -#: 378fed9230884b5e9680753fe70c3989 +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b #: 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 +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b +#: f7d3143efeea400d85cc0fcf45b1e15b msgid "Raises" msgstr "" @@ -498,12 +529,12 @@ msgstr "" #: 4b54c577282844ab83de80cfe4c6af2e #: 24b2a7241cb049de8a09e3130bf59982 #: 8afe70b1dc3e415bbcb3587ae113f646 -#: ba886c1958ae47468695dc36cd20fa30 -#: 833994483f0d48bcb79e761846317133 -#: 2d6af0e10e374eb2848aaf6af07794ca -#: 2d6af0e10e374eb2848aaf6af07794ca -#: 2d6af0e10e374eb2848aaf6af07794ca -#: 2d6af0e10e374eb2848aaf6af07794ca +#: 8afe70b1dc3e415bbcb3587ae113f646 +#: 8afe70b1dc3e415bbcb3587ae113f646 +#: 8afe70b1dc3e415bbcb3587ae113f646 +#: 8afe70b1dc3e415bbcb3587ae113f646 +#: 8afe70b1dc3e415bbcb3587ae113f646 +#: 8afe70b1dc3e415bbcb3587ae113f646 msgid "Example" msgstr "" @@ -523,108 +554,118 @@ msgstr "" #: 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 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 #: 99d7d45c973e4cab836405c222bbdf74 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 #: 99d7d45c973e4cab836405c222bbdf74 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 #: 99d7d45c973e4cab836405c222bbdf74 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 +#: f706cf333c1a47f1a2976aa784a20ba9 msgid "Parameters" msgstr "" @@ -761,6 +802,7 @@ msgstr "" #: ../../../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_emoji:11 #: ../../../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 @@ -777,6 +819,7 @@ msgstr "" #: ../../../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_emoji:11 #: ../../../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 @@ -793,39 +836,41 @@ msgstr "" #: 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 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 #: 88c3ad85bb944f3da68503ca6321c03e -#: 1916ebc54d4d4a9f979821f8449a61a4 -#: 1916ebc54d4d4a9f979821f8449a61a4 -#: 1916ebc54d4d4a9f979821f8449a61a4 -#: 1916ebc54d4d4a9f979821f8449a61a4 -#: 1916ebc54d4d4a9f979821f8449a61a4 -#: 1916ebc54d4d4a9f979821f8449a61a4 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" msgstr "" @@ -981,6 +1026,20 @@ msgstr "" msgid "The allowed mention configuration." msgstr "" +#: ../../../discord/bot.py:docstring of discord.Bot.app_emojis:1 +#: ../../../discord/client.py:docstring of discord.Client.app_emojis:1 +#: b39bab7b652b4d4f98cf18b2b9db6484 +#: b39bab7b652b4d4f98cf18b2b9db6484 +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.Bot.app_emojis:5 +#: ../../../discord/client.py:docstring of discord.Client.app_emojis:5 +#: 062738f2100e4c61908d1e90957795c7 +#: d771fad779b94086a9f24278c89e38f4 +msgid "This is only available if `cache_app_emojis` is ``True``." +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`." @@ -989,7 +1048,7 @@ msgstr "" #: ../../../discord/bot.py:docstring of discord.Bot.application_flags:1 #: ../../../discord/client.py:docstring of discord.Client.application_flags:1 #: 8b07e863b4da42b087185fe66a4e4782 -#: dfae6e3bc62e49a09c2ee43781c23646 +#: 8b07e863b4da42b087185fe66a4e4782 msgid "The client's application flags." msgstr "" @@ -997,15 +1056,15 @@ msgstr "" #: ../../../discord/client.py:docstring of discord.Client.application_id:1 #: ../../../discord/client.py:docstring of discord.client.Client:27 #: 7b81e6817aa3453dadfa039d5908f380 -#: ae7d062cf9c948289a20102ae95031b7 -#: ae7d062cf9c948289a20102ae95031b7 +#: 7b81e6817aa3453dadfa039d5908f380 +#: 7b81e6817aa3453dadfa039d5908f380 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 +#: 7d1d35144ab143c89844f2eeda5ca458 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 "" @@ -1025,9 +1084,13 @@ msgstr "" #: ../../../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_emoji:1 #: ../../../discord/bot.py:docstring of discord.client.Client.create_guild:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.delete_emoji: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_emoji:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_emojis: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 @@ -1042,6 +1105,8 @@ msgstr "" #: ../../../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.on_modal_error:1 +#: ../../../discord/bot.py:docstring of discord.client.Client.on_view_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 @@ -1052,9 +1117,13 @@ msgstr "" #: ../../../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_emoji:1 #: ../../../discord/client.py:docstring of discord.client.Client.create_guild:1 +#: ../../../discord/client.py:docstring of discord.client.Client.delete_emoji: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_emoji:1 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_emojis: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 @@ -1069,6 +1138,8 @@ msgstr "" #: ../../../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.on_modal_error:1 +#: ../../../discord/client.py:docstring of discord.client.Client.on_view_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 @@ -1077,128 +1148,140 @@ msgstr "" #: ../../../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 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 +#: 41081b0ab799472fa6aa72c01266cc77 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 +#: 5983dcd0486b4523ae227931a10b1302 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 +#: 507ab57eb4464568979b8f115e241575 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 +#: 0101829855214ceca48fda193d62fa4a 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 +#: 3aa370c5983e445f88dd18e9eadbd873 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 +#: 70cb703484a24211b5f015b6c98489ed 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 +#: e8ac04bf158e41c38b39991bab6fb822 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 +#: 0b6319a9e67d414e87249e03d6d63397 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 +#: 2301c3d3f9404ea495a8d7650bf54425 msgid "Whether this IDENTIFY is the first initial IDENTIFY." msgstr "" @@ -1220,7 +1303,7 @@ msgstr "" #: ../../../discord/bot.py:docstring of discord.Bot.cached_messages:1 #: ../../../discord/client.py:docstring of discord.Client.cached_messages:1 #: cba36eb2890e435fa097ddab61040300 -#: 26517c7b15d54b3f8695eb62fbc85109 +#: cba36eb2890e435fa097ddab61040300 msgid "Read-only list of messages the connected client has cached." msgstr "" @@ -1228,8 +1311,8 @@ msgstr "" #: ../../../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 +#: d2e7ed1bee18473c8ed6a983e8028076 +#: d2e7ed1bee18473c8ed6a983e8028076 msgid "Changes the client's presence." msgstr "" @@ -1237,22 +1320,22 @@ msgstr "" #: ../../../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 +#: 6c8a13b6a2374d07bde689acfab480b4 +#: 6c8a13b6a2374d07bde689acfab480b4 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 +#: 3abff02da97142be826bc2c4e6ca6170 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 +#: 135d8da50bfe441ba19fe730e3461b60 msgid "If the ``activity`` parameter is not the proper type." msgstr "" @@ -1260,8 +1343,8 @@ msgstr "" #: ../../../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 +#: 39e909d604eb4a8c8eae94680b0f85d5 +#: 39e909d604eb4a8c8eae94680b0f85d5 msgid "Removed the ``afk`` keyword-only parameter." msgstr "" @@ -1290,14 +1373,14 @@ msgstr "" #: ../../../discord/bot.py:docstring of discord.client.Client.clear:1 #: ../../../discord/client.py:docstring of discord.client.Client.clear:1 #: 46113f3b59ba48888dae66daa428f6a2 -#: 664b2b67ec6147ed94b53e0140acb9ef +#: 46113f3b59ba48888dae66daa428f6a2 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 +#: b2e236d83dc34d8bb26a73a49b01369e 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 "" @@ -1305,8 +1388,8 @@ msgstr "" #: ../../../discord/client.py:docstring of discord.client.Client.close:3 #: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.close:3 #: 78ac357893eb41058d331fbd7e21f8bf -#: 67affa321575466d843d881e79ff9660 -#: 67affa321575466d843d881e79ff9660 +#: 78ac357893eb41058d331fbd7e21f8bf +#: 78ac357893eb41058d331fbd7e21f8bf msgid "Closes the connection to Discord." msgstr "" @@ -1319,8 +1402,8 @@ msgstr "" #: ../../../discord/client.py:docstring of discord.client.Client.connect:3 #: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.connect:3 #: 9b1145547fdc4c8b85b1fdffccd05849 -#: 2e2b4b77bc7549c0a05965d9694ef840 -#: 2e2b4b77bc7549c0a05965d9694ef840 +#: 9b1145547fdc4c8b85b1fdffccd05849 +#: 9b1145547fdc4c8b85b1fdffccd05849 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 "" @@ -1328,8 +1411,8 @@ msgstr "" #: ../../../discord/client.py:docstring of discord.client.Client.connect:9 #: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.connect:9 #: 6baf64d2338545519040319cd1847544 -#: 01fe01284ae748c8b1eddfddd1d73e21 -#: 01fe01284ae748c8b1eddfddd1d73e21 +#: 6baf64d2338545519040319cd1847544 +#: 6baf64d2338545519040319cd1847544 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 "" @@ -1337,8 +1420,8 @@ msgstr "" #: ../../../discord/client.py:docstring of discord.client.Client.connect:15 #: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.connect:15 #: 4f24dc57384346d0856e8fdac0a91c7a -#: e065be27c22342a28fae8bfee39dc5f6 -#: e065be27c22342a28fae8bfee39dc5f6 +#: 4f24dc57384346d0856e8fdac0a91c7a +#: 4f24dc57384346d0856e8fdac0a91c7a msgid "The gateway to connect to Discord is not found. Usually if this is thrown then there is a Discord API outage." msgstr "" @@ -1346,46 +1429,99 @@ msgstr "" #: ../../../discord/client.py:docstring of discord.client.Client.connect:16 #: ../../../discord/shard.py:docstring of discord.shard.AutoShardedClient.connect:16 #: 1656a53ca10c491688df2509c3c5ff71 -#: c36b8e522ef8432ab9d32865a6f89cda -#: c36b8e522ef8432ab9d32865a6f89cda +#: 1656a53ca10c491688df2509c3c5ff71 +#: 1656a53ca10c491688df2509c3c5ff71 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 +#: eaa633504af044fbbae0c5fff1734c12 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 +#: 0be38552dc6d4508b568215162fbc247 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 +#: 5a3111fd82194cd2885d84958fca1132 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 +#: d6fa64d947654bf7becf7fad301f0fb9 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 +#: 4ee54b2c76694caabfe0fde5d1cd1696 msgid ":class:`.DMChannel`" msgstr "" +#: ../../../discord/bot.py:docstring of discord.client.Client.create_emoji:3 +#: ../../../discord/client.py:docstring of discord.client.Client.create_emoji:3 +#: c6993c8ace9a402dbd8a19399cff355a +#: c6993c8ace9a402dbd8a19399cff355a +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_emoji:5 +#: ../../../discord/client.py:docstring of discord.client.Client.create_emoji:5 +#: f602d4b2cc6842a19adea1a6fcd9e034 +#: 04f4999d06504127abb524ae05e6bef4 +msgid "There is currently a limit of 2000 emojis per application." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_emoji:8 +#: ../../../discord/client.py:docstring of discord.client.Client.create_emoji:8 +#: 7d847ee8a4554a5da695f22ce3d5313c +#: 7d847ee8a4554a5da695f22ce3d5313c +msgid "The emoji name. Must be at least 2 characters." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_emoji:11 +#: ../../../discord/client.py:docstring of discord.client.Client.create_emoji:11 +#: 62b9a65381f34c1bac438c5fd2c7ba6f +#: 62b9a65381f34c1bac438c5fd2c7ba6f +msgid "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_emoji:15 +#: ../../../discord/client.py:docstring of discord.client.Client.create_emoji:15 +#: 2a7626f94ccf4dd6a346424f2bc46c3b +#: 743ce386005549e5aa392fe07d92ad7e +msgid "An error occurred creating an emoji." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_emoji:17 +#: ../../../discord/client.py:docstring of discord.client.Client.create_emoji:17 +#: a272e12723b0440e8cdd4b64dd581be0 +#: a272e12723b0440e8cdd4b64dd581be0 +msgid "The created emoji." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.create_emoji:18 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_emoji:10 +#: ../../../discord/client.py:docstring of discord.client.Client.create_emoji:18 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_emoji:10 +#: 0101829855214ceca48fda193d62fa4a +#: 0101829855214ceca48fda193d62fa4a +#: 0101829855214ceca48fda193d62fa4a +#: 0101829855214ceca48fda193d62fa4a +msgid ":class:`AppEmoji`" +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`." @@ -1399,16 +1535,16 @@ 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 +#: 69af3206fe804f5ea844fa3e65c9cb7c +#: 69af3206fe804f5ea844fa3e65c9cb7c 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 +#: 017330dc607446c2a51ad9824d9b6642 +#: 017330dc607446c2a51ad9824d9b6642 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 "" @@ -1420,57 +1556,57 @@ 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 +#: fffbb1f76152417080d7db49ca8e4c85 +#: fffbb1f76152417080d7db49ca8e4c85 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 +#: 3b97fc8c08714dc0bf7cbe2a88d0fcab 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 +#: 8524eb9f26414048b1952e19fc192260 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 +#: bfd43e9bd0f34e918327fc339e37937b 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 +#: 62b9a65381f34c1bac438c5fd2c7ba6f 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 +#: 0722a839383b4001aa95fb0d76912f04 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 +#: 352fe566629842ad9d6ff7432397522e 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 +#: ef6b2cc2844948a6afac53df0c6c4c71 msgid "The guild created. This is not the same guild that is added to cache." msgstr "" @@ -1479,128 +1615,156 @@ msgstr "" #: ../../../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 +#: ac312b1700ba40e3ab5989b9c39cdc00 +#: ac312b1700ba40e3ab5989b9c39cdc00 +#: ac312b1700ba40e3ab5989b9c39cdc00 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 +#: 6fa7e508b0cf4b958775cf91dac4ba35 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 +#: 2d01c286352d4eeba440b3662378cc26 msgid "Invalid icon image format given. Must be PNG or JPG." msgstr "" +#: ../../../discord/bot.py:docstring of discord.client.Client.delete_emoji:3 +#: ../../../discord/client.py:docstring of discord.client.Client.delete_emoji:3 +#: c6993c8ace9a402dbd8a19399cff355a +#: c6993c8ace9a402dbd8a19399cff355a +msgid "Deletes the custom :class:`AppEmoji` from the application." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.delete_emoji:6 +#: ../../../discord/client.py:docstring of discord.client.Client.delete_emoji:6 +#: 79ce9e3cdd1f42a0bbdd9b54d0263d2c +#: 79ce9e3cdd1f42a0bbdd9b54d0263d2c +msgid "The emoji you are deleting." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.delete_emoji:9 +#: ../../../discord/client.py:docstring of discord.client.Client.delete_emoji:9 +#: 1c85bc449adf413483d92b5ca9136cfa +#: ea862460293d4b07aa6764d066c3a2d0 +msgid "An error occurred deleting the emoji." +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 +#: 8689a2f7442c4748b0aeb3620d9cf09c 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 +#: 7e2f44aeac5741c9a5a08f2da76920ba 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 +#: 98207a40e1a94e19afe49b181675d48a 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 +#: d5b48d7d2a60458e8a2839ed8faa7b5d 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 +#: 34eee7d0a7914a7a9232644c1582c652 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 +#: e12571e8018b4226a23231a3d292f435 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 +#: da199159cd414e03aa393a6e7fceb015 msgid "The emojis that the connected client has." msgstr "" +#: ../../../discord/bot.py:docstring of discord.Bot.emojis:5 +#: ../../../discord/client.py:docstring of discord.Client.emojis:5 +#: 6872f8c9608949fab7ac89cb5072f36d +#: 6872f8c9608949fab7ac89cb5072f36d +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "" + #: ../../../discord/bot.py:docstring of discord.client.Client.entitlements:1 #: ../../../discord/client.py:docstring of discord.client.Client.entitlements:1 #: 7a582bcb64fe4e77b22294e3d86b3458 -#: 78892bf021d04c6fba29337b575b8b71 +#: 7a582bcb64fe4e77b22294e3d86b3458 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 +#: 523b5670abb24b5e88f9d7f04d5a0a9f 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 +#: 47234f44f4bd4ceeb41bdc775a227c15 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 +#: 0326acb773754d438a4581ed32136b6d 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 +#: 830e0935ff744a0ea9a2a540a4a27ed3 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 +#: 98a71d0d914f4fe8b2324c24a917aa28 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 +#: c9ef4370de624686b6d2148b7bb52dbc 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 +#: e475177db885429080f0ae2b78b72aea msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." msgstr "" @@ -1614,83 +1778,83 @@ msgstr "" #: ../../../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 +#: ee8fbed1e9c64e87a77e9b4d5b4de348 +#: ee8fbed1e9c64e87a77e9b4d5b4de348 +#: ee8fbed1e9c64e87a77e9b4d5b4de348 +#: ee8fbed1e9c64e87a77e9b4d5b4de348 +#: ee8fbed1e9c64e87a77e9b4d5b4de348 +#: ee8fbed1e9c64e87a77e9b4d5b4de348 +#: ee8fbed1e9c64e87a77e9b4d5b4de348 +#: ee8fbed1e9c64e87a77e9b4d5b4de348 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 +#: fd477cb2f68542529b5f28246bd2cddc 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 +#: 2d3a2a0f88ba4346a292f010fcfac590 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 +#: 862c6912d2294e34a06faddbf7ff0269 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.fetch_guilds:41 #: ../../../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.fetch_guilds:41 #: ../../../discord/client.py:docstring of discord.client.Client.wait_for:42 #: 7c8cb90e915a42688bb8e0ac08a56b44 -#: 11648d97fb784d6b97497cf45bd7180f -#: f784f833af4f43caa6cf59467766ead4 -#: f784f833af4f43caa6cf59467766ead4 -#: f784f833af4f43caa6cf59467766ead4 -#: f784f833af4f43caa6cf59467766ead4 +#: 7c8cb90e915a42688bb8e0ac08a56b44 +#: 7c8cb90e915a42688bb8e0ac08a56b44 +#: 7c8cb90e915a42688bb8e0ac08a56b44 +#: 7c8cb90e915a42688bb8e0ac08a56b44 +#: 7c8cb90e915a42688bb8e0ac08a56b44 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/bot.py:docstring of discord.client.Client.fetch_guilds:42 #: ../../../discord/client.py:docstring of discord.client.Client.entitlements:41 -#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:36 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:42 +#: 4fcb97767a904beb9ef44f190efbd53a +#: 4fcb97767a904beb9ef44f190efbd53a +#: 4fcb97767a904beb9ef44f190efbd53a #: 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/bot.py:docstring of discord.client.Client.fetch_guilds:47 #: ../../../discord/client.py:docstring of discord.client.Client.entitlements:46 -#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:41 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:47 +#: 5b7cc08b85db4b84ae5e9195194d36ba +#: 5b7cc08b85db4b84ae5e9195194d36ba +#: 5b7cc08b85db4b84ae5e9195194d36ba #: 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/bot.py:docstring of discord.client.Client.fetch_guilds:52 #: ../../../discord/client.py:docstring of discord.client.Client.entitlements:50 -#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:46 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:52 +#: ce984edfb81a40f88475e5d768a64ec9 +#: ce984edfb81a40f88475e5d768a64ec9 +#: ce984edfb81a40f88475e5d768a64ec9 #: ce984edfb81a40f88475e5d768a64ec9 -#: 48fa76c559f4449a95854d789559492f -#: af1413448fd64215ad8a510b736adb91 -#: af1413448fd64215ad8a510b736adb91 msgid "All parameters are optional." msgstr "" @@ -1702,357 +1866,427 @@ 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 +#: c6993c8ace9a402dbd8a19399cff355a 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 +#: cdfbd078a7e34b39bc30d2f5d3db7fef 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 +#: 330746db683542c0bf43295ce8a60ecb 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 +#: 80da38d28f7a4058a9a443c380f15e07 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 +#: fdfab0a8ac644e918e2b868f0b80ea8a 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 +#: 6f5bdf2b2be6487f8cd5cd5d7201e238 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 +#: 709c0c6eedd44918b90f6dffa9b47f23 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 +#: ffeb7dc3d9fe4482ab577068571db8bf 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 +#: a9141c92c30443dab13cd3bfdfb3221b 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 +#: e0c5c0a3312d4c5bbb8ef19d1e2f15e1 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 +#: 220028234d2c4c72a8866cef69f6cedd 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 +#: 7b7c1cd63b90442e9e3e142aff758d8f 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 +#: 97eac6521e9a4e9dbc6cc6ecbfb97238 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 +#: d4920f83bc284b55b50a4c8f62cd4180 msgid "You do not have permission to fetch this channel." msgstr "" +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_emoji:3 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_emoji:3 +#: c6993c8ace9a402dbd8a19399cff355a +#: c6993c8ace9a402dbd8a19399cff355a +msgid "Retrieves a custom :class:`AppEmoji` from the application." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_emoji:6 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_emoji:6 +#: 06cf0595cc3f498c8e8f41b354e358d8 +#: 06cf0595cc3f498c8e8f41b354e358d8 +msgid "The emoji's ID." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_emoji:9 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_emoji:9 +#: 98207a40e1a94e19afe49b181675d48a +#: 98207a40e1a94e19afe49b181675d48a +msgid "The retrieved emoji." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_emoji:12 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_emoji:12 +#: e5a4d1d3aaf040398c8c0a5ac1e6dc2d +#: e5a4d1d3aaf040398c8c0a5ac1e6dc2d +msgid "The emoji requested could not be found." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_emoji:13 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_emoji:13 +#: 93b617ce45a047109131fd5c50b58243 +#: b863b5ab9f294d39841d1e57a8cd00f8 +msgid "An error occurred fetching the emoji." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_emojis:3 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_emojis:3 +#: c6993c8ace9a402dbd8a19399cff355a +#: c6993c8ace9a402dbd8a19399cff355a +msgid "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_emojis:5 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_emojis:5 +#: af44be4f67084ac48d3f3df89bf28261 +#: 02bc2b83e6184eb2b71db6efe7e331a2 +msgid "An error occurred fetching the emojis." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_emojis:7 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_emojis:7 +#: 5eba8aff592647dbb428a36b08475afc +#: 5eba8aff592647dbb428a36b08475afc +msgid "The retrieved emojis." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_emojis:8 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_emojis:8 +#: 00d7fd8a5ae747b7a60a6c550b8c741d +#: 00d7fd8a5ae747b7a60a6c550b8c741d +msgid "List[:class:`AppEmoji`]" +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 +#: 8e9f4f77bac844f5a9988587c611cb9d 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 +#: fc48643cd30442b68921bd961d8c4ee2 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 +#: 232c4e056e1641d2b6f4f6aec6a485ec 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 +#: 0edc6723fbc942dfba36ab15f4771dc3 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 +#: 3c5f0d5b44a34c12b46639235faa7ad0 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 +#: a4245b805fa0424588c0d476c4087214 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 +#: 13441326e09f4c41a4b70ace65d3685a 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 +#: 18b98d33672748fab571d1592086006c 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 +#: ab6c8c5386cc4638a941c7e10d2114f6 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 +#: 680b55c43a404490948ccf8c75056fe5 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 +#: 6b41ff587fa34dd48f92f8b2adec9ab3 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 +#: 7b2ca8d29ccd472dbfe3bb09ee67cd31 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 +#: 656fd5be7efa4693858ddc0bba11b5c9 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 +#: 2e80267839e44327b92ec76be0aaf427 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 +#: dde1d08cc27a42afa6456baeab1c4824 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 +#: 3c5f0d5b44a34c12b46639235faa7ad0 +#: 3c5f0d5b44a34c12b46639235faa7ad0 +msgid "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:35 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:35 +#: d8cf0096c4ea46e0ae7da1145a0b557d #: 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 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:37 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:37 +#: 2f4a72e1186a46d9aa54d22b75e640a3 #: 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 +#: ../../../discord/bot.py:docstring of discord.client.Client.fetch_guilds:38 +#: ../../../discord/client.py:docstring of discord.client.Client.fetch_guilds:38 +#: f8744a77885f4d189fc280ec89e87d2c #: 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 +#: acc5f4a6a0f647dc9f8b5eaf7c539fdb 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 +#: 163cd0bf1a67459a89e9cdb0c6c757aa 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 +#: 2c47a87fed924f02ba4dbce127a2d89d 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 +#: 21da813826c74acbb3eedef11175e8f1 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 +#: 6f6b0591a01a439e9c26b6ea317b4e85 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 +#: 9a1b3e4805b1414ba7f36b8206cc700b 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 +#: 2cb15eb196524b68889c66edffb272a2 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 +#: 18b09b5aff7a4f39b50d78b9acb653fc 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 +#: 5347b95856644909bb7dc80c9155b154 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 +#: 1c9f38c89b6f4c17aede743f8c65d8aa 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 +#: 05420965d65349869d9a3fcceff2515e 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 +#: fe1ada1d25bf4ad7bc00b849f6fa88a9 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 +#: a5f9c6c8318341df9f815544e2b2fc05 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 +#: b369cce5013e4d698043f69c944f8a66 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 +#: c3ebd2de351c47589c35c91351a05cc8 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 +#: f2c67dc53c534b0aa88697406f41a753 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 +#: baf041eef92145928978a65d22c41d49 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 +#: 9424f8645549490aad4b3df67690028b 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 +#: a739439997df43e7b7db808923acb79d msgid "The bot's role connection metadata records." msgstr "" @@ -2061,296 +2295,296 @@ msgstr "" #: ../../../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 +#: ee166a08201f4183bfad8ad88c5fb320 +#: ee166a08201f4183bfad8ad88c5fb320 +#: ee166a08201f4183bfad8ad88c5fb320 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 +#: 68218a4bf26b4b38b1c806c7aa61f661 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 +#: 06cf0595cc3f498c8e8f41b354e358d8 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 +#: 043327feba3d4c899a4b9e27f3ae1372 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 +#: 7a3e45f29a644f32b777d11a18579ede 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 +#: 69ca285e4a1b4e8797cec962961cc055 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 +#: 7c7c97b654ed4a66a971dda8a270dcbf 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 +#: 8e0d484c75f44292bf2e50c355f77b5b 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 +#: e5a4d1d3aaf040398c8c0a5ac1e6dc2d 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 +#: 9be3c4f2f0164f2798360c5e220e7f50 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 +#: 584ac55387214bf0bc7655da6f2792e0 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 +#: a84b7eec831d41849ecdc43cee32ae28 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 +#: b838a91ed61b4d37be246951b8564208 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 +#: 50d8785227d54d73b68c6649c6fc793f 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 +#: a914b8b74dff428b8217376bb44ee280 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 +#: dbd91692e99f41089c24f3a1b016abe3 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 +#: 9cf7aeba3cf94ddfade1161921136fcd 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 +#: 20002ad14d4a4ebeb50f9d4b42e9bb59 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 +#: f8e660d6df844ff9b6e8ca42e45a6db4 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 +#: 35c845de13e349a9bd817308bd8210bb 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 +#: 1e8fc158e4c74b9fa63f4cd6822c9190 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 +#: fc5e27dfd5df4f1083a2ce78905f137f 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 +#: 88856ef0a1c34816a1b8126d28db55c8 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 +#: 904c1ae5fcc14436b80548bb1f284c43 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 +#: f331d997dda74b7e9506f9f0858875f4 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 +#: 84fbf23886304607b5223e4f3e827432 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 +#: 1f026a4e35c84df8b91a677e61429aad 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 +#: a7894ada30514c09917ba342ff6307bf 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 +#: 7b5c3de0d5bc490583eed2148fe3adf2 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 +#: 79ce9e3cdd1f42a0bbdd9b54d0263d2c 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 +#: 0f9acb4de476421b8b66cafaad9e8d13 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 +#: 78c27258634f42bf842727095db62ee5 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 +#: 6c4a19c3d6534ae4849f4b219aab45e7 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 +#: 38afa3e69538483c9aa15498beaf378e 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 +#: 8b4ef3067a554f3dbd79ec87d454e563 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 +#: f3c9ea1202d04fe98848e776cc633b43 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 +#: 81d3c19143e44cf2b6c178fc3d2fcc77 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 +#: 44fbd4d628244841a9214142b84ff39d 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 +#: d8bc6239ad544978978964d975b88cf8 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 +#: aca5c6cbb697464b90cc953011ed05bc 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 +#: 6c887b61d6214bbc89a3071595e17351 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 +#: b886abcab97a46f3940f4064094180e2 msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." msgstr "" @@ -2359,21 +2593,28 @@ msgstr "" #: ../../../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 +#: d5dfb16bdaa1458bb44264187f4ee38c +#: d5dfb16bdaa1458bb44264187f4ee38c +#: d5dfb16bdaa1458bb44264187f4ee38c 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 +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_channels:8 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_channels:8 +#: 954c934a3ae542bd8e48d65c6872c37f +#: 954c934a3ae542bd8e48d65c6872c37f +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_channels:13 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_channels:13 #: 14df624bee0b4d23b1f9088155d3e882 #: 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 +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_channels:17 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_channels:17 #: 5eab19fe94124dbcab31f439d0973160 #: 5eab19fe94124dbcab31f439d0973160 msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." @@ -2393,6 +2634,13 @@ msgstr "" msgid ":class:`.Member` -- A member the client can see." msgstr "" +#: ../../../discord/bot.py:docstring of discord.client.Client.get_all_members:12 +#: ../../../discord/client.py:docstring of discord.client.Client.get_all_members:12 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +msgid ":sphinx_autodoc_typehints_type:`Generator\\[Member\\]`" +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." @@ -2612,9 +2860,9 @@ 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`]" +#: b838a91ed61b4d37be246951b8564208 +#: b838a91ed61b4d37be246951b8564208 +msgid "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgstr "" #: ../../../discord/bot.py:docstring of discord.client.Client.get_guild:1 @@ -2833,6 +3081,13 @@ msgstr "" 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.guild_emojis:1 +#: ../../../discord/client.py:docstring of discord.Client.guild_emojis:1 +#: b39bab7b652b4d4f98cf18b2b9db6484 +#: b39bab7b652b4d4f98cf18b2b9db6484 +msgid "The :class:`~discord.GuildEmoji` that the connected client has." +msgstr "" + #: ../../../discord/bot.py:docstring of discord.Bot.guilds:1 #: ../../../discord/client.py:docstring of discord.Client.guilds:1 #: 2f2a3e8f246c4f30b877af0e3e88001b @@ -2923,15 +3178,13 @@ 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." +#: b833b064d3654341ac190b5824bd6b24 +#: 19a5ab09684e42629fda01fdb8529cd7 +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgstr "" -#: ../../../discord/bot.py:docstring of discord.Bot.latency:3 -#: ../../../discord/client.py:docstring of discord.Client.latency:3 +#: ../../../discord/bot.py:docstring of discord.Bot.latency:4 +#: ../../../discord/client.py:docstring of discord.Client.latency:4 #: 421f8b497847440fbd6dbe4be0a01720 #: 421f8b497847440fbd6dbe4be0a01720 msgid "This could be referred to as the Discord WebSocket protocol latency." @@ -3144,6 +3397,45 @@ msgstr "" 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.client.Client.on_modal_error:3 +#: ../../../discord/client.py:docstring of discord.client.Client.on_modal_error:3 +#: fb14025cdc964e5796fa74884c5d87b8 +#: f264d63d90574060bc9b34715a2e5075 +msgid "The default modal error handler provided by the client. The default implementation prints the traceback to stderr." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.on_modal_error:6 +#: ../../../discord/client.py:docstring of discord.client.Client.on_modal_error:6 +#: 054f9eb286a249488d4516a6c9a77bbf +#: 788863ce342a4c6fa188aae5c62ad4ae +msgid "This only fires for a modal if you did not define its :func:`~discord.ui.Modal.on_error`." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.on_modal_error:12 +#: ../../../discord/bot.py:docstring of discord.client.Client.on_view_error:13 +#: ../../../discord/client.py:docstring of discord.client.Client.on_modal_error:12 +#: ../../../discord/client.py:docstring of discord.client.Client.on_view_error:13 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +#: c811a0a6a91d4b8c98daa60d8f8c78b9 +msgid ":sphinx_autodoc_typehints_type:`None`" +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.on_view_error:3 +#: ../../../discord/client.py:docstring of discord.client.Client.on_view_error:3 +#: 57179a6f7b13404b8d698521898a6d9c +#: 57179a6f7b13404b8d698521898a6d9c +msgid "The default view error handler provided by the client." +msgstr "" + +#: ../../../discord/bot.py:docstring of discord.client.Client.on_view_error:5 +#: ../../../discord/client.py:docstring of discord.client.Client.on_view_error:5 +#: f101d9263c01410e8ef9263e0b8c3b0e +#: 4b5db7ec08f94c5ab1f87f667b240f70 +msgid "This only fires for a view if you did not define its :func:`~discord.ui.View.on_error`." +msgstr "" + #: ../../../discord/bot.py:docstring of discord.Bot.persistent_views:1 #: ../../../discord/client.py:docstring of discord.Client.persistent_views:1 #: 0ddbaefb41734b77ad0d3ad0792c3d18 @@ -3669,6 +3961,11 @@ msgstr "" msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." msgstr "" +#: ../../../discord/bot.py:docstring of discord.bot.ApplicationCommandMixin.walk_application_commands:6 +#: 92a9bc95fa124cc2a6481b3544402054 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + #: ../../../discord/bot.py:docstring of discord.bot.AutoShardedBot:1 #: 61133e69adc34f46b680972b64aba970 msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." @@ -3824,17 +4121,32 @@ msgstr "" 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 +#: ../../../discord/client.py:docstring of discord.client.Client:82 +#: d81d99c5eb134726bc4295710867d447 +msgid "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:82 +#: e475177db885429080f0ae2b78b72aea +msgid "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:86 +#: 2777d76119cf4da09f43cec0ac6ce08d +msgid "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." +msgstr "" + +#: ../../../discord/client.py:docstring of discord.client.Client:95 #: c72989c35e494798868c418761624dc3 msgid "The WebSocket gateway the client is currently connected to. Could be ``None``." msgstr "" -#: ../../../discord/client.py:docstring of discord.client.Client:89 +#: ../../../discord/client.py:docstring of discord.client.Client:99 #: bfdaca2ce94b47c491227ce955d6ef14 msgid "The event loop that the client uses for asynchronous operations." msgstr "" -#: ../../../discord/client.py:docstring of discord.client.Client:91 +#: ../../../discord/client.py:docstring of discord.client.Client:101 #: 49f2ebafe64e46af80bdc5670f75ec65 msgid ":class:`asyncio.AbstractEventLoop`" msgstr "" @@ -3869,6 +4181,11 @@ msgstr "" msgid "An optional list of shard_ids to launch the shards with." msgstr "" +#: ../../../discord/shard.py:docstring of discord.AutoShardedClient.latency:1 +#: c5ab6840e90349f19ce335c373c2303d +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +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." diff --git a/docs/build/locales/api/cogs.pot b/docs/build/locales/api/cogs.pot index ec8ea4cc10..f0badde8df 100644 --- a/docs/build/locales/api/cogs.pot +++ b/docs/build/locales/api/cogs.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"POT-Creation-Date: 2025-02-24 14:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -68,6 +68,7 @@ msgstr "" #: a548999373424e22a1eef592535cb0e9 #: a548999373424e22a1eef592535cb0e9 #: a548999373424e22a1eef592535cb0e9 +#: a548999373424e22a1eef592535cb0e9 msgid "Return type" msgstr "" @@ -101,6 +102,11 @@ msgstr "" msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "" +#: ../../../discord/cog.py:docstring of discord.cog.Cog.walk_commands:6 +#: 37ca252417a04d0f9a6d189f27bf99a5 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + #: ../../../discord/cog.py:docstring of discord.cog.Cog.get_listeners:1 #: 483845d65d544491a23375ed5d92e183 msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." diff --git a/docs/build/locales/api/data_classes.pot b/docs/build/locales/api/data_classes.pot index 539a26561f..6ce32ae5b7 100644 --- a/docs/build/locales/api/data_classes.pot +++ b/docs/build/locales/api/data_classes.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 23:44+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -82,6 +82,7 @@ msgstr "" #: ../../../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/components.py:docstring of discord.components.UnfurledMediaItem: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 @@ -128,6 +129,7 @@ msgstr "" #: ../../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.hide_media_download_options:0 #: ../../docstring of discord.ChannelFlags.pinned:0 #: ../../docstring of discord.ChannelFlags.require_tag:0 #: ../../docstring of discord.Intents.auto_moderation_configuration:0 @@ -167,7 +169,9 @@ msgstr "" #: ../../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_snapshot:0 #: ../../docstring of discord.MessageFlags.has_thread:0 +#: ../../docstring of discord.MessageFlags.is_components_v2:0 #: ../../docstring of discord.MessageFlags.is_crossposted:0 #: ../../docstring of discord.MessageFlags.is_voice_message:0 #: ../../docstring of discord.MessageFlags.loading:0 @@ -220,11 +224,14 @@ msgstr "" #: ../../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_sounds:0 #: ../../docstring of discord.Permissions.use_external_stickers:0 #: ../../docstring of discord.Permissions.use_slash_commands:0 +#: ../../docstring of discord.Permissions.use_soundboard: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_creator_monetization_analytics:0 #: ../../docstring of discord.Permissions.view_guild_insights:0 #: ../../docstring of discord.PublicUserFlags.active_developer:0 #: ../../docstring of discord.PublicUserFlags.bot_http_interactions:0 @@ -258,227 +265,222 @@ msgstr "" #: 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 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 #: 3cde02c1afdd471284767db5f3c67801 #: 0d8cf03e305c441a937b9d418b558488 -#: e6bfdc42ce134a04bfb90118a9947aa3 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 -#: 0b6bdc9f79764717a733eb7a5958f520 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 #: 0b6bdc9f79764717a733eb7a5958f520 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 #: 0b6bdc9f79764717a733eb7a5958f520 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 #: 0b6bdc9f79764717a733eb7a5958f520 #: 0b6bdc9f79764717a733eb7a5958f520 #: 0b6bdc9f79764717a733eb7a5958f520 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 #: 0b6bdc9f79764717a733eb7a5958f520 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 #: 0b6bdc9f79764717a733eb7a5958f520 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 #: 0b6bdc9f79764717a733eb7a5958f520 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 #: 0b6bdc9f79764717a733eb7a5958f520 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 #: 0b6bdc9f79764717a733eb7a5958f520 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 #: 0b6bdc9f79764717a733eb7a5958f520 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 #: 0b6bdc9f79764717a733eb7a5958f520 #: 0b6bdc9f79764717a733eb7a5958f520 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 #: 0b6bdc9f79764717a733eb7a5958f520 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 #: 0b6bdc9f79764717a733eb7a5958f520 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 #: 0b6bdc9f79764717a733eb7a5958f520 #: 0b6bdc9f79764717a733eb7a5958f520 #: 0b6bdc9f79764717a733eb7a5958f520 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 #: 0b6bdc9f79764717a733eb7a5958f520 #: 0b6bdc9f79764717a733eb7a5958f520 #: 0b6bdc9f79764717a733eb7a5958f520 @@ -486,6 +488,23 @@ msgstr "" #: 0b6bdc9f79764717a733eb7a5958f520 #: 0b6bdc9f79764717a733eb7a5958f520 #: 0b6bdc9f79764717a733eb7a5958f520 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 6c4d566dbc03451c823e41e2f0cb5dd1 msgid "type" msgstr "" @@ -503,7 +522,7 @@ msgstr "" #: ../../../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.MessageReference:26 #: ../../../discord/message.py:docstring of discord.message.PartialMessage:42 #: ../../../discord/object.py:docstring of discord.object.Object:32 #: ../../../discord/permissions.py:docstring of discord.permissions.Permissions:62 @@ -515,28 +534,28 @@ msgstr "" #: ../../../discord/shard.py:docstring of discord.shard.ShardInfo:12 #: 0a3305279543462d880226cdad446ec5 #: 787271a8ad0043a4b44cc5a717c8b26b -#: 47963b10a3744670a53e06986a02d383 -#: 83ced52f44bb4a1c95f0962207ce50dc -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e -#: 6674934795ef4e7c9fb97e9e9883e91e +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b +#: 787271a8ad0043a4b44cc5a717c8b26b msgid ":class:`int`" msgstr "" @@ -546,80 +565,83 @@ msgstr "" #: e10fd84d147f4b71b2d38959065e253c #: 62c0635de0e14e85b11eb228a093d50b #: 17d3622dc479450a9951e9f01f4e961e -#: 89e6520d4ff047f18dee15ce511b202d -#: ed60de7fca634eb19790777106f69830 -#: b5ea8629223b4b5b93a1742e5a53077e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e #: d463224bd212438b803261a9fa1b966a -#: 41838a50196b4f6281147969c43977d0 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 -#: bc227baf3a35408b8f5380ffa74958b7 +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e #: bc227baf3a35408b8f5380ffa74958b7 +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e #: bc227baf3a35408b8f5380ffa74958b7 +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e #: bc227baf3a35408b8f5380ffa74958b7 +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e #: bc227baf3a35408b8f5380ffa74958b7 +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e #: bc227baf3a35408b8f5380ffa74958b7 +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e #: bc227baf3a35408b8f5380ffa74958b7 +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e +#: 17d3622dc479450a9951e9f01f4e961e msgid "Parameters" msgstr "" @@ -645,16 +667,19 @@ msgstr "" #: ../../../discord/components.py:docstring of discord.components.SelectOption:1 #: 0d8b907771e64532af760f81f51e6054 +#: 303f5f553a71428285d200852504cec9 msgid "Represents a :class:`discord.SelectMenu`'s option." msgstr "" #: ../../../discord/components.py:docstring of discord.components.SelectOption:3 #: 836aee37573f4fb99a2e2ba8cd2ac24e +#: 8d9e3b5226b84a4d9a95bccfb7d8ccc5 msgid "These can be created by users." msgstr "" #: ../../../discord/components.py:docstring of discord.components.SelectOption:9 #: b0f1217cfaff4c189043c1907c804416 +#: c56b411c300a4ce08a3948b4da36a990 msgid "The label of the option. This is displayed to users. Can only be up to 100 characters." msgstr "" @@ -662,6 +687,7 @@ msgstr "" #: ../../../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/components.py:docstring of discord.components.UnfurledMediaItem:11 #: ../../../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 @@ -702,16 +728,21 @@ msgstr "" #: bf029a45ccb14764ab8bb9e4b6849d2a #: bf029a45ccb14764ab8bb9e4b6849d2a #: bf029a45ccb14764ab8bb9e4b6849d2a +#: bf029a45ccb14764ab8bb9e4b6849d2a +#: bf029a45ccb14764ab8bb9e4b6849d2a +#: bf029a45ccb14764ab8bb9e4b6849d2a msgid ":class:`str`" msgstr "" #: ../../../discord/components.py:docstring of discord.components.SelectOption:16 #: 579e6accca914c3998466750119550fe +#: 11123714def448fdbeccc9ee4f80c118 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 +#: c56b411c300a4ce08a3948b4da36a990 msgid "An additional description of the option, if any. Can only be up to 100 characters." msgstr "" @@ -741,11 +772,13 @@ msgstr "" #: 1829644e9c8741b9ab3d3326ded2df0a #: 1829644e9c8741b9ab3d3326ded2df0a #: 1829644e9c8741b9ab3d3326ded2df0a +#: 1829644e9c8741b9ab3d3326ded2df0a msgid "Optional[:class:`str`]" msgstr "" #: ../../../discord/components.py:docstring of discord.components.SelectOption:31 #: 5c9b407cffa7482394bcebc4fc8cd412 +#: e588f36be137417db4a513b55beb6351 msgid "Whether this option is selected by default." msgstr "" @@ -754,7 +787,7 @@ msgstr "" #: ../../../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/message.py:docstring of discord.message.MessageReference:41 #: ../../../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 @@ -776,6 +809,7 @@ msgstr "" #: ../../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.hide_media_download_options:5 #: ../../docstring of discord.ChannelFlags.pinned:3 #: ../../docstring of discord.ChannelFlags.require_tag:6 #: ../../docstring of discord.Intents.auto_moderation_configuration:9 @@ -815,7 +849,9 @@ msgstr "" #: ../../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_snapshot:5 #: ../../docstring of discord.MessageFlags.has_thread:5 +#: ../../docstring of discord.MessageFlags.is_components_v2:5 #: ../../docstring of discord.MessageFlags.is_crossposted:3 #: ../../docstring of discord.MessageFlags.is_voice_message:5 #: ../../docstring of discord.MessageFlags.loading:7 @@ -868,11 +904,14 @@ msgstr "" #: ../../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_sounds:5 #: ../../docstring of discord.Permissions.use_external_stickers:5 #: ../../docstring of discord.Permissions.use_slash_commands:5 +#: ../../docstring of discord.Permissions.use_soundboard: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_creator_monetization_analytics:5 #: ../../docstring of discord.Permissions.view_guild_insights:5 #: ../../docstring of discord.PublicUserFlags.active_developer:5 #: ../../docstring of discord.PublicUserFlags.bot_http_interactions:5 @@ -902,148 +941,137 @@ msgstr "" #: ../../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 -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b -#: e1c1e64874eb4dc4b81588e9d084845b +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 #: e1c1e64874eb4dc4b81588e9d084845b +#: 46fa3239adde4e4e8c329454531c38d3 #: e1c1e64874eb4dc4b81588e9d084845b +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 #: e1c1e64874eb4dc4b81588e9d084845b #: e1c1e64874eb4dc4b81588e9d084845b +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 #: e1c1e64874eb4dc4b81588e9d084845b #: e1c1e64874eb4dc4b81588e9d084845b #: e1c1e64874eb4dc4b81588e9d084845b +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 #: e1c1e64874eb4dc4b81588e9d084845b #: e1c1e64874eb4dc4b81588e9d084845b #: e1c1e64874eb4dc4b81588e9d084845b @@ -1051,14 +1079,53 @@ msgstr "" #: e1c1e64874eb4dc4b81588e9d084845b #: e1c1e64874eb4dc4b81588e9d084845b #: e1c1e64874eb4dc4b81588e9d084845b +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 +#: 46fa3239adde4e4e8c329454531c38d3 msgid ":class:`bool`" msgstr "" #: ../../../discord/components.py:docstring of discord.SelectOption.emoji:1 #: 83b108a10aa446cdb6eebaab379b4174 +#: 804bbf20fe6c4418a6f03780ed6e383d msgid "The emoji of the option, if available." msgstr "" +#: ../../../discord/components.py:docstring of discord.components.UnfurledMediaItem:1 +#: 7356eae6e80c48cabddc24248342e844 +msgid "Represents an Unfurled Media Item used in Components V2." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.UnfurledMediaItem:3 +#: 815a8f8542054043b415faafbdbedde0 +msgid "This is used as an underlying component for other media-based components such as :class:`Thumbnail`, :class:`FileComponent`, and :class:`MediaGalleryItem`." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.UnfurledMediaItem:9 +#: 092b6ba6ce244e53b6ce5f7e4e9500c1 +msgid "The URL of this media item. This can either be an arbitrary URL or an ``attachment://`` URL to work with local files." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.UnfurledMediaItem.url:1 +#: 5b063163bfaf4930af9d387ef066d6ec +msgid "Returns this media item's url." +msgstr "" + #: ../../../discord/flags.py:docstring of discord.flags.Intents:1 #: e2e452e939b041f88f583aded7ed5bad msgid "Wraps up a Discord gateway intent flag." @@ -1073,8 +1140,8 @@ msgstr "" #: ../../../discord/flags.py:docstring of discord.flags.MemberCacheFlags:12 #: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:7 #: c7ccca30986e43fd8e10beb3bd9d8656 -#: 99d045cffa884713a159060bf7b59130 -#: 99d045cffa884713a159060bf7b59130 +#: c7ccca30986e43fd8e10beb3bd9d8656 +#: c7ccca30986e43fd8e10beb3bd9d8656 msgid "To construct an object you can pass keyword arguments denoting the flags to enable or disable." msgstr "" @@ -1089,10 +1156,10 @@ msgstr "" #: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:9 #: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:14 #: 4e9fe61ccd1549e88739285bf3dafd88 -#: 2723da96d9724f13aedb5348870ab7f6 -#: 2723da96d9724f13aedb5348870ab7f6 -#: 2723da96d9724f13aedb5348870ab7f6 -#: 2723da96d9724f13aedb5348870ab7f6 +#: 4e9fe61ccd1549e88739285bf3dafd88 +#: 4e9fe61ccd1549e88739285bf3dafd88 +#: 4e9fe61ccd1549e88739285bf3dafd88 +#: 4e9fe61ccd1549e88739285bf3dafd88 msgid "Checks if two flags are equal." msgstr "" @@ -1102,10 +1169,10 @@ msgstr "" #: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:12 #: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:17 #: c5b62a3820524bdaa7ffdc764a11c059 -#: b6e33c093a6446c4b0db0d86d7eea46a -#: b6e33c093a6446c4b0db0d86d7eea46a -#: b6e33c093a6446c4b0db0d86d7eea46a -#: b6e33c093a6446c4b0db0d86d7eea46a +#: c5b62a3820524bdaa7ffdc764a11c059 +#: c5b62a3820524bdaa7ffdc764a11c059 +#: c5b62a3820524bdaa7ffdc764a11c059 +#: c5b62a3820524bdaa7ffdc764a11c059 msgid "Checks if two flags are not equal." msgstr "" @@ -1121,16 +1188,16 @@ msgstr "" #: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:13 #: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:20 #: 0bd6187917144dd29d57b86f7c0403e5 -#: f96e957c78734f899f6a8cabbcd6e80f -#: f96e957c78734f899f6a8cabbcd6e80f -#: f96e957c78734f899f6a8cabbcd6e80f -#: f96e957c78734f899f6a8cabbcd6e80f -#: f96e957c78734f899f6a8cabbcd6e80f -#: f96e957c78734f899f6a8cabbcd6e80f -#: f96e957c78734f899f6a8cabbcd6e80f -#: f96e957c78734f899f6a8cabbcd6e80f -#: f96e957c78734f899f6a8cabbcd6e80f -#: f96e957c78734f899f6a8cabbcd6e80f +#: 0bd6187917144dd29d57b86f7c0403e5 +#: 0bd6187917144dd29d57b86f7c0403e5 +#: 0bd6187917144dd29d57b86f7c0403e5 +#: 0bd6187917144dd29d57b86f7c0403e5 +#: 0bd6187917144dd29d57b86f7c0403e5 +#: 0bd6187917144dd29d57b86f7c0403e5 +#: 0bd6187917144dd29d57b86f7c0403e5 +#: 0bd6187917144dd29d57b86f7c0403e5 +#: 0bd6187917144dd29d57b86f7c0403e5 +#: 0bd6187917144dd29d57b86f7c0403e5 msgid "Adds two flags together. Equivalent to ``x | y``." msgstr "" @@ -1146,16 +1213,16 @@ msgstr "" #: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:16 #: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:23 #: 1cc0f99d2ad34188a3d109ca5ea135bd -#: 0c17b2ad55124b1aaae336d3932a00a5 -#: 0c17b2ad55124b1aaae336d3932a00a5 -#: 0c17b2ad55124b1aaae336d3932a00a5 -#: 0c17b2ad55124b1aaae336d3932a00a5 -#: 0c17b2ad55124b1aaae336d3932a00a5 -#: 0c17b2ad55124b1aaae336d3932a00a5 -#: 0c17b2ad55124b1aaae336d3932a00a5 -#: 0c17b2ad55124b1aaae336d3932a00a5 -#: 0c17b2ad55124b1aaae336d3932a00a5 -#: 0c17b2ad55124b1aaae336d3932a00a5 +#: 1cc0f99d2ad34188a3d109ca5ea135bd +#: 1cc0f99d2ad34188a3d109ca5ea135bd +#: 1cc0f99d2ad34188a3d109ca5ea135bd +#: 1cc0f99d2ad34188a3d109ca5ea135bd +#: 1cc0f99d2ad34188a3d109ca5ea135bd +#: 1cc0f99d2ad34188a3d109ca5ea135bd +#: 1cc0f99d2ad34188a3d109ca5ea135bd +#: 1cc0f99d2ad34188a3d109ca5ea135bd +#: 1cc0f99d2ad34188a3d109ca5ea135bd +#: 1cc0f99d2ad34188a3d109ca5ea135bd msgid "Subtracts two flags from each other." msgstr "" @@ -1171,16 +1238,16 @@ msgstr "" #: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:19 #: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:26 #: dc44aea0eb8843ec89427b68ed42e355 -#: 8682d8d121804ca78190744b3a59c4d3 -#: 8682d8d121804ca78190744b3a59c4d3 -#: 8682d8d121804ca78190744b3a59c4d3 -#: 8682d8d121804ca78190744b3a59c4d3 -#: 8682d8d121804ca78190744b3a59c4d3 -#: 8682d8d121804ca78190744b3a59c4d3 -#: 8682d8d121804ca78190744b3a59c4d3 -#: 8682d8d121804ca78190744b3a59c4d3 -#: 8682d8d121804ca78190744b3a59c4d3 -#: 8682d8d121804ca78190744b3a59c4d3 +#: dc44aea0eb8843ec89427b68ed42e355 +#: dc44aea0eb8843ec89427b68ed42e355 +#: dc44aea0eb8843ec89427b68ed42e355 +#: dc44aea0eb8843ec89427b68ed42e355 +#: dc44aea0eb8843ec89427b68ed42e355 +#: dc44aea0eb8843ec89427b68ed42e355 +#: dc44aea0eb8843ec89427b68ed42e355 +#: dc44aea0eb8843ec89427b68ed42e355 +#: dc44aea0eb8843ec89427b68ed42e355 +#: dc44aea0eb8843ec89427b68ed42e355 msgid "Returns the union of two flags. Equivalent to ``x + y``." msgstr "" @@ -1196,16 +1263,16 @@ msgstr "" #: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:22 #: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:29 #: 1aa74630c59244a680d6c45bac4a40d4 -#: 1958adb42308499f8545a94033c83764 -#: 1958adb42308499f8545a94033c83764 -#: 1958adb42308499f8545a94033c83764 -#: 1958adb42308499f8545a94033c83764 -#: 1958adb42308499f8545a94033c83764 -#: 1958adb42308499f8545a94033c83764 -#: 1958adb42308499f8545a94033c83764 -#: 1958adb42308499f8545a94033c83764 -#: 1958adb42308499f8545a94033c83764 -#: 1958adb42308499f8545a94033c83764 +#: 1aa74630c59244a680d6c45bac4a40d4 +#: 1aa74630c59244a680d6c45bac4a40d4 +#: 1aa74630c59244a680d6c45bac4a40d4 +#: 1aa74630c59244a680d6c45bac4a40d4 +#: 1aa74630c59244a680d6c45bac4a40d4 +#: 1aa74630c59244a680d6c45bac4a40d4 +#: 1aa74630c59244a680d6c45bac4a40d4 +#: 1aa74630c59244a680d6c45bac4a40d4 +#: 1aa74630c59244a680d6c45bac4a40d4 +#: 1aa74630c59244a680d6c45bac4a40d4 msgid "Returns the intersection of two flags." msgstr "" @@ -1221,16 +1288,16 @@ msgstr "" #: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:25 #: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:32 #: 0c0d4ae9593340cc9d83a5f1bf9ae314 -#: 3f25fb08cab5411e97b911287fb3d991 -#: 3f25fb08cab5411e97b911287fb3d991 -#: 3f25fb08cab5411e97b911287fb3d991 -#: 3f25fb08cab5411e97b911287fb3d991 -#: 3f25fb08cab5411e97b911287fb3d991 -#: 3f25fb08cab5411e97b911287fb3d991 -#: 3f25fb08cab5411e97b911287fb3d991 -#: 3f25fb08cab5411e97b911287fb3d991 -#: 3f25fb08cab5411e97b911287fb3d991 -#: 3f25fb08cab5411e97b911287fb3d991 +#: 0c0d4ae9593340cc9d83a5f1bf9ae314 +#: 0c0d4ae9593340cc9d83a5f1bf9ae314 +#: 0c0d4ae9593340cc9d83a5f1bf9ae314 +#: 0c0d4ae9593340cc9d83a5f1bf9ae314 +#: 0c0d4ae9593340cc9d83a5f1bf9ae314 +#: 0c0d4ae9593340cc9d83a5f1bf9ae314 +#: 0c0d4ae9593340cc9d83a5f1bf9ae314 +#: 0c0d4ae9593340cc9d83a5f1bf9ae314 +#: 0c0d4ae9593340cc9d83a5f1bf9ae314 +#: 0c0d4ae9593340cc9d83a5f1bf9ae314 msgid "Returns the inverse of a flag." msgstr "" @@ -1246,16 +1313,16 @@ msgstr "" #: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:28 #: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:35 #: cd38184237914f6c802d8fd54c02a106 -#: 115cbdc73ead48389591b9c18de16c6e -#: 115cbdc73ead48389591b9c18de16c6e -#: 115cbdc73ead48389591b9c18de16c6e -#: 115cbdc73ead48389591b9c18de16c6e -#: 115cbdc73ead48389591b9c18de16c6e -#: 115cbdc73ead48389591b9c18de16c6e -#: 115cbdc73ead48389591b9c18de16c6e -#: 115cbdc73ead48389591b9c18de16c6e -#: 115cbdc73ead48389591b9c18de16c6e -#: 115cbdc73ead48389591b9c18de16c6e +#: cd38184237914f6c802d8fd54c02a106 +#: cd38184237914f6c802d8fd54c02a106 +#: cd38184237914f6c802d8fd54c02a106 +#: cd38184237914f6c802d8fd54c02a106 +#: cd38184237914f6c802d8fd54c02a106 +#: cd38184237914f6c802d8fd54c02a106 +#: cd38184237914f6c802d8fd54c02a106 +#: cd38184237914f6c802d8fd54c02a106 +#: cd38184237914f6c802d8fd54c02a106 +#: cd38184237914f6c802d8fd54c02a106 msgid "Return the flag's hash." msgstr "" @@ -1264,9 +1331,9 @@ msgstr "" #: ../../../discord/flags.py:docstring of discord.flags.MessageFlags:33 #: ../../../discord/flags.py:docstring of discord.flags.SystemChannelFlags:38 #: a99a094ce4fa417f968709af699b5323 -#: 7204b8ea3a9241949e0f987e6f8c8665 -#: 7204b8ea3a9241949e0f987e6f8c8665 -#: 7204b8ea3a9241949e0f987e6f8c8665 +#: a99a094ce4fa417f968709af699b5323 +#: a99a094ce4fa417f968709af699b5323 +#: a99a094ce4fa417f968709af699b5323 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 "" @@ -1278,12 +1345,12 @@ msgstr "" #: ../../../discord/flags.py:docstring of discord.flags.MemberFlags:39 #: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:39 #: f54fefdc28274d45b023ba51349e495a -#: 82101dd125534b129f6f38b3b3ed2e27 -#: 82101dd125534b129f6f38b3b3ed2e27 -#: 82101dd125534b129f6f38b3b3ed2e27 -#: 82101dd125534b129f6f38b3b3ed2e27 -#: 82101dd125534b129f6f38b3b3ed2e27 -#: 82101dd125534b129f6f38b3b3ed2e27 +#: f54fefdc28274d45b023ba51349e495a +#: f54fefdc28274d45b023ba51349e495a +#: f54fefdc28274d45b023ba51349e495a +#: f54fefdc28274d45b023ba51349e495a +#: f54fefdc28274d45b023ba51349e495a +#: f54fefdc28274d45b023ba51349e495a msgid "The raw value. You should query flags via the properties rather than using this raw value." msgstr "" @@ -1296,101 +1363,102 @@ msgstr "" #: ../../../discord/poll.py:docstring of discord.poll.PollAnswer.voters:0 #: ../../api/data_classes.rst:0 #: 06117d4991d64482ab3bd74ddd051afa -#: 387a935c6db343558a4e1062dc05e80b -#: 2a6fff9cfbc140eea62eb86587d99e12 -#: 2aaf29a75ce048e59ab4aa068f89270e -#: 2c65699780f042bda30498eb6d195ca1 -#: 3a69766c2ab349738d5ae59cbd70517b -#: 7afd0d20cf2940e4a0493121eb555c29 -#: 3d9d7f31e3fd426c91b7da7fe211b099 -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa -#: 4cec06d96aa540ca837c06faf1eda4aa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa #: 4cec06d96aa540ca837c06faf1eda4aa #: 4cec06d96aa540ca837c06faf1eda4aa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa #: 4cec06d96aa540ca837c06faf1eda4aa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa #: 4cec06d96aa540ca837c06faf1eda4aa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa +#: 06117d4991d64482ab3bd74ddd051afa msgid "Return type" msgstr "" @@ -1398,8 +1466,8 @@ msgstr "" #: ../../../discord/flags.py:docstring of discord.flags.Intents.default:5 #: ../../../discord/flags.py:docstring of discord.flags.Intents.none:4 #: 93072a21a8ac4f6d9051e897557acc8f -#: 946b7c87c7b64016bc9465fb66cea03d -#: 20a24ced6c2f40ae97a379aac52fc31e +#: 93072a21a8ac4f6d9051e897557acc8f +#: 93072a21a8ac4f6d9051e897557acc8f msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.flags.Intents\\``" msgstr "" @@ -1443,29 +1511,29 @@ msgstr "" #: ../../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 +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d +#: f1b1d51dfc7e4692a37d5bca93905b4d msgid "This corresponds to the following events:" msgstr "" @@ -1525,20 +1593,20 @@ msgstr "" #: ../../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 +#: cfe6c3251c0f4e13a904e56454fbaa4a +#: cfe6c3251c0f4e13a904e56454fbaa4a +#: cfe6c3251c0f4e13a904e56454fbaa4a +#: cfe6c3251c0f4e13a904e56454fbaa4a +#: cfe6c3251c0f4e13a904e56454fbaa4a +#: cfe6c3251c0f4e13a904e56454fbaa4a +#: cfe6c3251c0f4e13a904e56454fbaa4a +#: cfe6c3251c0f4e13a904e56454fbaa4a +#: cfe6c3251c0f4e13a904e56454fbaa4a +#: cfe6c3251c0f4e13a904e56454fbaa4a +#: cfe6c3251c0f4e13a904e56454fbaa4a +#: cfe6c3251c0f4e13a904e56454fbaa4a +#: cfe6c3251c0f4e13a904e56454fbaa4a +#: cfe6c3251c0f4e13a904e56454fbaa4a msgid "This also corresponds to the following attributes and classes in terms of cache:" msgstr "" @@ -1665,7 +1733,7 @@ msgstr "" #: ../../docstring of discord.Intents.members:30 #: ../../docstring of discord.Intents.presences:17 #: a144ff86320b4e09b37cff189bb3174c -#: 5f0bed46e9fd446fa11f769c2e18134d +#: a144ff86320b4e09b37cff189bb3174c 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 "" @@ -1677,7 +1745,7 @@ msgstr "" #: ../../docstring of discord.Intents.bans:3 #: ../../docstring of discord.Intents.emojis:3 #: 27a0c56e0c79468d9c88cabbab69f321 -#: bc8f8e325af24de382cf5ea080f4c8ef +#: 27a0c56e0c79468d9c88cabbab69f321 msgid "Changed to an alias." msgstr "" @@ -1709,12 +1777,12 @@ msgstr "" #: ../../docstring of discord.Intents.typing:9 #: ../../docstring of discord.Intents.webhooks:7 #: bbcdb3c184584751b4fce179030f686b -#: 49e0cca02c174ab0b3af1016f00bb680 -#: b9863a675003490b89043c31dbf28eff -#: 20164eb2064e41b7b194bcf624744b12 -#: f29f9b186eba40a0910997fe79f8b7a4 -#: a9a3db3038a7485ca7c791f1c7782ae9 -#: c8d84c681fd142bf88e6ff7b096647b2 +#: bbcdb3c184584751b4fce179030f686b +#: bbcdb3c184584751b4fce179030f686b +#: bbcdb3c184584751b4fce179030f686b +#: bbcdb3c184584751b4fce179030f686b +#: bbcdb3c184584751b4fce179030f686b +#: bbcdb3c184584751b4fce179030f686b msgid "This does not correspond to any attributes or classes in the library in terms of cache." msgstr "" @@ -1740,7 +1808,7 @@ msgstr "" #: ../../docstring of discord.Intents.emojis_and_stickers:12 #: 8d522dd4ec834c5e834a8a3a1d82637a -msgid ":class:`Emoji`" +msgid ":class:`GuildEmoji`" msgstr "" #: ../../docstring of discord.Intents.emojis_and_stickers:13 @@ -1955,8 +2023,8 @@ msgstr "" #: ../../docstring of discord.Intents.guild_messages:15 #: ../../docstring of discord.Intents.messages:15 #: 3a20c463f48c465d92f7b983f9414c0f -#: 4cc0d56ddc4341339bbabe226cfff4ea -#: 131678d976fa4452a3c6274c4a114015 +#: 3a20c463f48c465d92f7b983f9414c0f +#: 3a20c463f48c465d92f7b983f9414c0f #: 6f70df5e3a324290889232d0395e7f0f #: 6f70df5e3a324290889232d0395e7f0f #: 6f70df5e3a324290889232d0395e7f0f @@ -1987,29 +2055,29 @@ msgstr "" #: ../../docstring of discord.Intents.guild_messages:21 #: ../../docstring of discord.Intents.messages:21 #: 3bdf1873d5a74fbea1e77e2f6675beba -#: f674049e077048a98e3783c5fb184729 -#: fc0283f014bc4a5b9324a679e0833a98 +#: 3bdf1873d5a74fbea1e77e2f6675beba +#: 3bdf1873d5a74fbea1e77e2f6675beba 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 +#: 4f0824eaddd64a2a81888d5b807b6347 msgid ":func:`on_reaction_add` (both guilds and DMs)" msgstr "" #: ../../docstring of discord.Intents.messages:24 #: ../../docstring of discord.Intents.reactions:8 #: 7ef5737b80aa46ff8b63044455a72240 -#: bc06530511074b05bd24b74d33bc9ff1 +#: 7ef5737b80aa46ff8b63044455a72240 msgid ":func:`on_reaction_remove` (both guilds and DMs)" msgstr "" #: ../../docstring of discord.Intents.messages:25 #: ../../docstring of discord.Intents.reactions:9 #: 642521a6775f42d986de623796667074 -#: 394bfa686d5e4cddbfeb4a5eac2ae4ae +#: 642521a6775f42d986de623796667074 msgid ":func:`on_reaction_clear` (both guilds and DMs)" msgstr "" @@ -2076,21 +2144,21 @@ msgstr "" #: ../../docstring of discord.Intents.guild_messages:23 #: ../../docstring of discord.Intents.guild_reactions:7 #: c8df715cc6f3485fb0be9c491e646337 -#: 0f9dd91ef1a649588b0c988cd620e899 +#: c8df715cc6f3485fb0be9c491e646337 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 +#: 1c5ff802260840e5aaa934513f0f0779 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 +#: 8c1165c7fa7941e59b5a7f5666dcd44b msgid ":func:`on_reaction_clear` (only for guilds)" msgstr "" @@ -2102,35 +2170,35 @@ msgstr "" #: ../../docstring of discord.Intents.guild_messages:30 #: ../../docstring of discord.Intents.message_content:5 #: a137ba63f3c846b3bd5d57a7bf96e78c -#: d177535ebad849a4baae6d17fa3e786b +#: a137ba63f3c846b3bd5d57a7bf96e78c msgid ":attr:`Message.content`" msgstr "" #: ../../docstring of discord.Intents.guild_messages:31 #: ../../docstring of discord.Intents.message_content:6 #: af61766b09a94aa8a75595f3be33a449 -#: 7c7118245dc842a49b2ad81bc4ba0ebb +#: af61766b09a94aa8a75595f3be33a449 msgid ":attr:`Message.embeds`" msgstr "" #: ../../docstring of discord.Intents.guild_messages:32 #: ../../docstring of discord.Intents.message_content:7 #: 058da375316a46a0af5a9c3109b1f253 -#: ebb75125811444e4a46f7aef8bbb23b8 +#: 058da375316a46a0af5a9c3109b1f253 msgid ":attr:`Message.attachments`" msgstr "" #: ../../docstring of discord.Intents.guild_messages:33 #: ../../docstring of discord.Intents.message_content:8 #: 9dc7fe52d32942078f6af7ec79f3d42b -#: 323a68adf77442f680a96f59bea295e3 +#: 9dc7fe52d32942078f6af7ec79f3d42b msgid ":attr:`Message.components`" msgstr "" #: ../../docstring of discord.Intents.guild_messages:34 #: ../../docstring of discord.Intents.message_content:9 #: 4ad7140b499a4cb89a813065e5957e41 -#: bb8eef7fe7034efc99a7fdba061ec310 +#: 4ad7140b499a4cb89a813065e5957e41 msgid ":attr:`Message.poll`" msgstr "" @@ -2197,21 +2265,21 @@ msgstr "" #: ../../docstring of discord.Intents.dm_messages:23 #: ../../docstring of discord.Intents.dm_reactions:7 #: 589df8506c3445e5bb27a3f7c0e1eb13 -#: c93500c986124c1392636208ff6c21bf +#: 589df8506c3445e5bb27a3f7c0e1eb13 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 +#: 6b9d55f3802a435184fcb981cea63230 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 +#: 85eb129e0b244960ab86b6367da8d207 msgid ":func:`on_reaction_clear` (only for DMs)" msgstr "" @@ -2309,8 +2377,8 @@ msgstr "" #: ../../docstring of discord.Intents.guild_typing:1 #: ../../docstring of discord.Intents.typing:1 #: 8d8207f6f69441fba7d0f03fa6f9ff53 -#: 9ff7cfd43aa44d0193722bec92998fd9 -#: fb5b74711cf94bc8800f3998b67e5970 +#: 8d8207f6f69441fba7d0f03fa6f9ff53 +#: 8d8207f6f69441fba7d0f03fa6f9ff53 msgid "Whether guild and direct message typing related events are enabled." msgstr "" @@ -2585,15 +2653,15 @@ msgid "The shard count for this cluster. If this is ``None`` then the bot has no 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/message.py:docstring of discord.message.MessageReference:20 +#: ../../../discord/message.py:docstring of discord.message.MessageReference:32 #: ../../../discord/poll.py:docstring of discord.poll.Poll.total_votes:4 #: ../../../discord/shard.py:docstring of discord.shard.ShardInfo:18 #: c99851f342584595848427fb38375fa3 -#: 838cbbf586be4eb48c92fc8e4c675bad -#: 49c4c30c182d4a029b0c433682a7412d -#: 8162371196bd4d3698a8c759ead84e30 -#: 8162371196bd4d3698a8c759ead84e30 +#: c99851f342584595848427fb38375fa3 +#: c99851f342584595848427fb38375fa3 +#: c99851f342584595848427fb38375fa3 +#: c99851f342584595848427fb38375fa3 msgid "Optional[:class:`int`]" msgstr "" @@ -2608,10 +2676,10 @@ msgstr "" #: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.is_superset:5 #: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.is_closed:4 #: 9aca5fcb17de43ee849174bf0bd5a3f7 -#: 58d0f572132547b7a1dbaf2927806124 -#: 58d0f572132547b7a1dbaf2927806124 -#: 58d0f572132547b7a1dbaf2927806124 -#: 58d0f572132547b7a1dbaf2927806124 +#: 9aca5fcb17de43ee849174bf0bd5a3f7 +#: 9aca5fcb17de43ee849174bf0bd5a3f7 +#: 9aca5fcb17de43ee849174bf0bd5a3f7 +#: 9aca5fcb17de43ee849174bf0bd5a3f7 msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" msgstr "" @@ -2619,6 +2687,7 @@ msgstr "" #: ../../../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.forward_to: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 @@ -2631,20 +2700,21 @@ msgstr "" #: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.disconnect:1 #: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.reconnect:1 #: 7b6aba613fd1494aa813bfbe67e79186 -#: 2d31939098494f0489e8a053303107d7 -#: 61d3fe2200f04894857f7a6b254fed20 -#: 336386f348c2475b83c479b3376548af -#: 336386f348c2475b83c479b3376548af -#: 336386f348c2475b83c479b3376548af -#: 336386f348c2475b83c479b3376548af -#: 336386f348c2475b83c479b3376548af -#: 336386f348c2475b83c479b3376548af -#: 336386f348c2475b83c479b3376548af -#: 336386f348c2475b83c479b3376548af -#: 336386f348c2475b83c479b3376548af -#: 336386f348c2475b83c479b3376548af +#: 7b6aba613fd1494aa813bfbe67e79186 +#: 7b6aba613fd1494aa813bfbe67e79186 +#: 7b6aba613fd1494aa813bfbe67e79186 +#: 7b6aba613fd1494aa813bfbe67e79186 +#: 7b6aba613fd1494aa813bfbe67e79186 +#: 7b6aba613fd1494aa813bfbe67e79186 #: 336386f348c2475b83c479b3376548af #: 336386f348c2475b83c479b3376548af +#: 7b6aba613fd1494aa813bfbe67e79186 +#: 7b6aba613fd1494aa813bfbe67e79186 +#: 7b6aba613fd1494aa813bfbe67e79186 +#: 7b6aba613fd1494aa813bfbe67e79186 +#: 7b6aba613fd1494aa813bfbe67e79186 +#: 7b6aba613fd1494aa813bfbe67e79186 +#: 7b6aba613fd1494aa813bfbe67e79186 msgid "|coro|" msgstr "" @@ -2675,21 +2745,21 @@ msgstr "" #: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.disconnect:9 #: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.reconnect:6 #: 2aeb0522710e4223920fd1c621bb6bb9 -#: 937a7163bad44cc0b251d6ab47e83b23 -#: 6ab82dd262114586ae1460ec0ef8949f -#: 682dc42cdccd42f3a7f85235164dfb67 -#: 682dc42cdccd42f3a7f85235164dfb67 -#: 682dc42cdccd42f3a7f85235164dfb67 -#: 682dc42cdccd42f3a7f85235164dfb67 -#: 682dc42cdccd42f3a7f85235164dfb67 -#: 682dc42cdccd42f3a7f85235164dfb67 -#: 682dc42cdccd42f3a7f85235164dfb67 -#: 682dc42cdccd42f3a7f85235164dfb67 -#: 682dc42cdccd42f3a7f85235164dfb67 -#: 682dc42cdccd42f3a7f85235164dfb67 -#: 682dc42cdccd42f3a7f85235164dfb67 +#: 2aeb0522710e4223920fd1c621bb6bb9 +#: 2aeb0522710e4223920fd1c621bb6bb9 +#: 2aeb0522710e4223920fd1c621bb6bb9 +#: 2aeb0522710e4223920fd1c621bb6bb9 +#: 2aeb0522710e4223920fd1c621bb6bb9 #: 682dc42cdccd42f3a7f85235164dfb67 #: 682dc42cdccd42f3a7f85235164dfb67 +#: 2aeb0522710e4223920fd1c621bb6bb9 +#: 2aeb0522710e4223920fd1c621bb6bb9 +#: 2aeb0522710e4223920fd1c621bb6bb9 +#: 2aeb0522710e4223920fd1c621bb6bb9 +#: 2aeb0522710e4223920fd1c621bb6bb9 +#: 2aeb0522710e4223920fd1c621bb6bb9 +#: 2aeb0522710e4223920fd1c621bb6bb9 +#: 2aeb0522710e4223920fd1c621bb6bb9 msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" msgstr "" @@ -2704,8 +2774,8 @@ 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." +#: 77a9f6e52669457f8060e59f51444378 +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." msgstr "" #: ../../../discord/shard.py:docstring of discord.shard.ShardInfo.is_ws_ratelimited:1 @@ -2718,7 +2788,7 @@ msgstr "" 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 +#: ../../api/data_classes.rst:50 #: e4e4b4653ed64e5bb6d330ca5bee9fe8 msgid "Message" msgstr "" @@ -2746,7 +2816,7 @@ msgstr "" #: ../../../discord/mentions.py:docstring of discord.mentions.AllowedMentions:21 #: ../../../discord/mentions.py:docstring of discord.mentions.AllowedMentions:31 #: 530c33a7c302431cbd3d33ded378f0ba -#: 481cf58f03144feda8cabc58d0c1e2ee +#: 530c33a7c302431cbd3d33ded378f0ba msgid "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" msgstr "" @@ -2781,38 +2851,48 @@ msgid "This class can now be constructed by users." msgstr "" #: ../../../discord/message.py:docstring of discord.message.MessageReference:10 +#: c5ee817b12ad456c9205ed5834d32a57 +msgid "The type of message reference. If this is not provided, assume the default behavior (i.e., reply)." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference:14 +#: 5ed3d2c88b4d4d4a96d200c1bf406751 +msgid "Optional[:class:`~discord.MessageReferenceType`]" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference:18 #: 64f0d504dd97408ca19d5fe84a0df71b msgid "The id of the message referenced." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.MessageReference:16 +#: ../../../discord/message.py:docstring of discord.message.MessageReference:24 #: b3465d0402d0442e829de7d9fc0c70fb msgid "The channel id of the message referenced." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.MessageReference:22 +#: ../../../discord/message.py:docstring of discord.message.MessageReference:30 #: 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:36 #: ../../../discord/message.py:docstring of discord.message.MessageReference.from_message:9 #: f161b3d6b9624e51af155755e2347428 -#: ea0f2d067e6b4d12b130bbafb1face58 +#: f161b3d6b9624e51af155755e2347428 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 +#: ../../../discord/message.py:docstring of discord.message.MessageReference:45 #: 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 +#: ../../../discord/message.py:docstring of discord.message.MessageReference:51 #: 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 +#: ../../../discord/message.py:docstring of discord.message.MessageReference:55 #: 19036d2129714259ad50409d11530f07 msgid "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" msgstr "" @@ -2832,33 +2912,44 @@ msgstr "" 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 "" +#: ../../../discord/message.py:docstring of discord.message.MessageReference.from_message:15 +#: 9d87e15db2c9447c9e88885a3e0c7f97 +msgid "The type of reference to create. Defaults to :attr:`MessageReferenceType.default` (reply). .. versionadded:: 2.7" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.MessageReference.from_message:15 +#: 0de7e18170c04f9fa198616b291658b1 +msgid "The type of reference to create. Defaults to :attr:`MessageReferenceType.default` (reply)." +msgstr "" + #: ../../api/data_classes.rst:0 #: f298076f2da34bc6b0148276f66f26f5 -#: ec698da13c7a4164a882b6d5a0868fe2 -#: ec698da13c7a4164a882b6d5a0868fe2 -#: ec698da13c7a4164a882b6d5a0868fe2 -#: ec698da13c7a4164a882b6d5a0868fe2 -#: ec698da13c7a4164a882b6d5a0868fe2 -#: ec698da13c7a4164a882b6d5a0868fe2 -#: ec698da13c7a4164a882b6d5a0868fe2 -#: ec698da13c7a4164a882b6d5a0868fe2 -#: ec698da13c7a4164a882b6d5a0868fe2 -#: ec698da13c7a4164a882b6d5a0868fe2 -#: ec698da13c7a4164a882b6d5a0868fe2 -#: ec698da13c7a4164a882b6d5a0868fe2 -#: ec698da13c7a4164a882b6d5a0868fe2 -#: ec698da13c7a4164a882b6d5a0868fe2 -#: ec698da13c7a4164a882b6d5a0868fe2 -#: ec698da13c7a4164a882b6d5a0868fe2 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 +#: f298076f2da34bc6b0148276f66f26f5 msgid "Returns" msgstr "" -#: ../../../discord/message.py:docstring of discord.message.MessageReference.from_message:15 +#: ../../../discord/message.py:docstring of discord.message.MessageReference.from_message:20 #: 7440176a49d948b3838d6425ad4d9117 msgid "A reference to the message." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.MessageReference.from_message:16 +#: ../../../discord/message.py:docstring of discord.message.MessageReference.from_message:21 #: b558b9254e9b4404829ca2f6328601fb msgid ":class:`MessageReference`" msgstr "" @@ -3017,6 +3108,7 @@ msgstr "" #: 564b493c7da74b0a8b0026dc729e05e4 #: 564b493c7da74b0a8b0026dc729e05e4 #: 564b493c7da74b0a8b0026dc729e05e4 +#: 564b493c7da74b0a8b0026dc729e05e4 msgid "Raises" msgstr "" @@ -3135,7 +3227,7 @@ msgstr "" #: cd02277db89943ed9ee4591e8af3275f #: cd02277db89943ed9ee4591e8af3275f #: cd02277db89943ed9ee4591e8af3275f -msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgid "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." msgstr "" #: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:7 @@ -3261,31 +3353,51 @@ msgstr "" msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." msgstr "" +#: ../../../discord/message.py:docstring of discord.message.Message.forward_to:12 #: ../../../discord/message.py:docstring of discord.message.Message.reply:8 #: 0432f057bc24436ab0c9162af0b56320 +#: 0432f057bc24436ab0c9162af0b56320 msgid "The message that was sent." msgstr "" +#: ../../../discord/message.py:docstring of discord.message.Message.forward_to:13 #: ../../../discord/message.py:docstring of discord.message.Message.reply:9 #: 815203ab4dd9447daab77ae359e85c30 +#: 815203ab4dd9447daab77ae359e85c30 msgid ":class:`.Message`" msgstr "" +#: ../../../discord/message.py:docstring of discord.message.Message.forward_to:15 #: ../../../discord/message.py:docstring of discord.message.Message.reply:11 #: d7a8c5afd03e4ba18c9c5bc654aaa52f +#: d7a8c5afd03e4ba18c9c5bc654aaa52f msgid "Sending the message failed." msgstr "" +#: ../../../discord/message.py:docstring of discord.message.Message.forward_to:16 #: ../../../discord/message.py:docstring of discord.message.Message.reply:12 #: f58e37c02b9346ac8affda2006377756 +#: f58e37c02b9346ac8affda2006377756 msgid "You do not have the proper permissions to send the message." msgstr "" +#: ../../../discord/message.py:docstring of discord.message.Message.forward_to:17 #: ../../../discord/message.py:docstring of discord.message.Message.reply:13 #: 2b6ec3e3ab574a20ae37d4d118fb1267 +#: 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.forward_to:3 +#: 6a803b20f30b41499a3154208e1cddbd +msgid "A shortcut method to :meth:`.abc.Messageable.send` to forward the :class:`.Message` to a channel." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.forward_to:9 +#: 935d9c5a268d4132998d5ab2b779a4a0 +msgid "The channel to forward this to." +msgstr "" + #: ../../../discord/message.py:docstring of discord.message.Message.to_reference:1 #: 303f5f553a71428285d200852504cec9 msgid "Creates a :class:`~discord.MessageReference` from the current message." @@ -3302,11 +3414,21 @@ msgid "Whether replying using the message reference should raise :class:`HTTPExc msgstr "" #: ../../../discord/message.py:docstring of discord.message.Message.to_reference:12 +#: 689db2ebc4e949cbad070710a8741095 +msgid "The type of message reference. Defaults to a reply. .. versionadded:: 2.7" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:12 +#: 293efff145294d2eb01067636aec1ced +msgid "The type of message reference. Defaults to a reply." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:17 #: ba9e9d761df54e83b387bd4522433122 msgid "The reference to this message." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:13 +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:18 #: 5ed3d2c88b4d4d4a96d200c1bf406751 msgid ":class:`~discord.MessageReference`" msgstr "" @@ -3494,7 +3616,7 @@ msgstr "" msgid "Whether the attachment is a spoiler." msgstr "" -#: ../../api/data_classes.rst:68 +#: ../../api/data_classes.rst:78 #: 5672173d06bd46829384d84e99bed65e msgid "Embed" msgstr "" @@ -4127,7 +4249,7 @@ msgstr "" msgid "The URL of the provider." msgstr "" -#: ../../api/data_classes.rst:102 +#: ../../api/data_classes.rst:112 #: 646f8ad2d43d4dce987005a50de9a4cf msgid "Poll" msgstr "" @@ -4310,7 +4432,7 @@ msgstr "" #: ../../../discord/poll.py:docstring of discord.poll.PollMedia:15 #: b006fb5c6c854d799f871d8884228162 -msgid "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" +msgid "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" msgstr "" #: ../../../discord/poll.py:docstring of discord.poll.PollAnswer:1 @@ -4445,7 +4567,7 @@ msgstr "" msgid "The total number of votes on this poll." msgstr "" -#: ../../api/data_classes.rst:132 +#: ../../api/data_classes.rst:142 #: 43ab35acc0f9434b8e53132a073d8d22 msgid "Flags" msgstr "" @@ -4767,6 +4889,16 @@ msgstr "" msgid "Returns ``True`` if this message is a voice message." msgstr "" +#: ../../docstring of discord.MessageFlags.is_components_v2:1 +#: e59991780d57460db3e98a50cf7bdf3a +msgid "Returns ``True`` if this message has v2 components. This flag disables sending `content`, `embed`, and `embeds`." +msgstr "" + +#: ../../docstring of discord.MessageFlags.has_snapshot:1 +#: 649ea51ce00e42e1ad43640c7458e6b0 +msgid "Returns ``True`` if this message has a snapshot from message forwarding." +msgstr "" + #: ../../../discord/flags.py:docstring of discord.flags.AttachmentFlags:1 #: 8dc3ce8bf77f4a4684ab876af0ddf039 msgid "Wraps up the Discord Attachment flags." @@ -4927,6 +5059,11 @@ msgstr "" msgid "Returns ``True`` if a tag is required to be specified when creating a thread in a :class:`ForumChannel`." msgstr "" +#: ../../docstring of discord.ChannelFlags.hide_media_download_options:1 +#: dd01266c445141a097c673b102981c4d +msgid "Returns ``True`` if the embedded media download options are hidden for the media channel posts." +msgstr "" + #: ../../../discord/flags.py:docstring of discord.flags.SKUFlags:1 #: 32012591b7c94fc08af1f60088606c64 msgid "Wraps up the Discord SKU flags." @@ -5017,7 +5154,7 @@ msgstr "" msgid "Returns ``True`` if the role is selectable in one of the guild's :class:`~discord.OnboardingPrompt`." msgstr "" -#: ../../api/data_classes.rst:185 +#: ../../api/data_classes.rst:195 #: 4d2438b9745240cd93782603979ee00b msgid "Colour" msgstr "" @@ -5359,7 +5496,7 @@ msgstr "" msgid "The theme colour to apply, must be one of \"dark\", \"light\", or \"amoled\"." msgstr "" -#: ../../api/data_classes.rst:193 +#: ../../api/data_classes.rst:203 #: 9905f7d99ac846c088e3402bdc9a380a msgid "Activity" msgstr "" @@ -5630,7 +5767,7 @@ msgstr "" #: ../../../discord/activity.py:docstring of discord.activity.Game:24 #: ../../../discord/activity.py:docstring of discord.activity.Game:29 #: 710eb25609234a2eab35dd6ef26a8672 -#: 60ec9c34573a4bfd974edad2940fc120 +#: 710eb25609234a2eab35dd6ef26a8672 msgid "The game's name." msgstr "" @@ -5781,7 +5918,7 @@ msgstr "" msgid "It always returns :attr:`ActivityType.custom`." msgstr "" -#: ../../api/data_classes.rst:221 +#: ../../api/data_classes.rst:231 #: 60d410b462c140fd9d5d5d85a0ca55ef msgid "Permissions" msgstr "" @@ -5933,41 +6070,46 @@ msgid ":attr:`view_guild_insights`" msgstr "" #: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:10 +#: 9233959505d54774aefa37968742a69c +msgid ":attr:`view_creator_monetization_analytics`" +msgstr "" + +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:11 #: 7b554c4be8944c03a6ef76c5b73eede5 msgid ":attr:`manage_guild`" msgstr "" -#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:11 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:12 #: 7f33532c524d48eeb208f2f316ac7879 msgid ":attr:`change_nickname`" msgstr "" -#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:12 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:13 #: 606ad5d3e5084e568298891c3b0588e7 msgid ":attr:`manage_nicknames`" msgstr "" -#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:13 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:14 #: 48fc50f3db1a4049aa6ed259c0016e20 msgid ":attr:`kick_members`" msgstr "" -#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:14 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:15 #: e7d64bc06aef4cc7837d72e3051db957 msgid ":attr:`ban_members`" msgstr "" -#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:15 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:16 #: c502768910914af6a4de9d4bbf12a158 msgid ":attr:`administrator`" msgstr "" -#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:17 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:18 #: 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 +#: ../../../discord/permissions.py:docstring of discord.permissions.Permissions.all_channel:21 #: 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 "" @@ -5982,6 +6124,11 @@ msgstr "" 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.general:11 +#: 58e62e0ef9144695b99159ad964e9797 +msgid "Added :attr:`view_creator_monetization_analytics` permission." +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\\)`" @@ -6294,6 +6441,21 @@ msgstr "" msgid "Returns ``True`` if a user can moderate members (timeout)." msgstr "" +#: ../../docstring of discord.Permissions.view_creator_monetization_analytics:1 +#: 19b7f1d6020a42598e0f34f2792209d2 +msgid "Returns ``True`` if a user can view creator monetization (role subscription) analytics." +msgstr "" + +#: ../../docstring of discord.Permissions.use_soundboard:1 +#: ee7d230c69a64cf6bd2fe7b2832f656a +msgid "Returns ``True`` if a user can use the soundboard in a voice channel." +msgstr "" + +#: ../../docstring of discord.Permissions.use_external_sounds:1 +#: ee7d230c69a64cf6bd2fe7b2832f656a +msgid "Returns ``True`` if a user can use external soundboard sounds in a voice channel." +msgstr "" + #: ../../docstring of discord.Permissions.send_voice_messages:1 #: 21e49f2607d948d1aac14cf0bde7222d msgid "Returns ``True`` if a member can send voice messages." @@ -6394,7 +6556,7 @@ msgstr "" msgid "A list of key/value pairs to bulk update with." msgstr "" -#: ../../api/data_classes.rst:234 +#: ../../api/data_classes.rst:244 #: 9b867a9572674a3a8c8653b44c9f9b72 msgid "Application Role Connections" msgstr "" @@ -6431,6 +6593,6 @@ msgstr "" #: ../../../discord/application_role_connection.py:docstring of discord.application_role_connection.ApplicationRoleConnectionMetadata:23 #: 246b61db68854beb9cb72d12dc9cfd40 -#: 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 index d2e5fc20fd..400416b350 100644 --- a/docs/build/locales/api/enums.pot +++ b/docs/build/locales/api/enums.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1863,7 +1863,7 @@ msgstr "" #: ../../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." +msgid "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` or :class:`Object` with the emoji ID." msgstr "" #: ../../api/enums.rst:1201 @@ -3307,3 +3307,38 @@ msgstr "" #: 1e9f15c549cb42a1974d9ba887984e15 msgid "The interaction is in a private DM or group DM channel." msgstr "" + +#: ../../api/enums.rst:2507 +#: 01f2e91f4fb944b997dd5067e60a8289 +msgid "Represents a subscription's status." +msgstr "" + +#: ../../api/enums.rst:2513 +#: 08e8ab3b99434be989a53c61cc38f780 +msgid "The subscription is active and is scheduled to renew." +msgstr "" + +#: ../../api/enums.rst:2517 +#: 778b0c4eee34445e9b6374dde9251089 +msgid "The subscription is active but will not renew." +msgstr "" + +#: ../../api/enums.rst:2521 +#: da88c67afa8d45e8965b9e7defd425cb +msgid "The subscription is inactive and the subscription owner is not being charged." +msgstr "" + +#: ../../api/enums.rst:2526 +#: df2d552101134de0b37f9bc3f1fe64a5 +msgid "Represents the padding size around a separator component." +msgstr "" + +#: ../../api/enums.rst:2532 +#: 5d1855c5f1104662bfa445de38ae412d +msgid "The separator uses small padding." +msgstr "" + +#: ../../api/enums.rst:2536 +#: 7974579a64184f3f94acaca0d00878aa +msgid "The separator uses large padding." +msgstr "" diff --git a/docs/build/locales/api/events.pot b/docs/build/locales/api/events.pot index 6111d5f708..8b576582c7 100644 --- a/docs/build/locales/api/events.pot +++ b/docs/build/locales/api/events.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"POT-Creation-Date: 2025-02-24 14:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -78,72 +78,75 @@ msgstr "" #: 450ea7dd8b0742b6a95034bc736a0b26 #: 349abfcdf56240438f5690772fe0a18d #: e3455443ac954b88b181ebe074279d1a -#: 847adddbea6a47e4b9b7e13a7f352ad5 -#: a62f5e8fc8174aa7881c7c7803d52529 -#: 9d17e39474da4efb97dc8dba285d4e27 -#: 2047ad9931154d87a4d5f8a7090fd208 -#: d945cfa6fb84406aada47da35d94e1b0 -#: eb2b8d62e3094050ababe6c81875b9a3 -#: 0d00d17e652745278bde98e5a9baac57 +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a #: 81c162aa46b14ab0a333ed9962606f0a -#: 281495434b004210ae4aaff83990d327 -#: 677c6a863bc24ae1a5ad297c49517cd8 -#: 1678169629ec4355a18db9887c5dbc22 +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a #: 900882c0284c4bc4a079c467bf577de2 -#: 176ab3d1374941268495018745427ade -#: 60b3d7ac967d4fbaa7ab300016181e83 +#: e3455443ac954b88b181ebe074279d1a #: 78208569a83144aa920b951012b5ce70 #: b04fccd185f843d1aca16ec4a414e75c -#: 6d7428028f5f4c47a87e228b3382926a -#: e6e388c1d5e74cfcb8a83eb43c1ea8c0 -#: 4aa9dc788bbb4783842e434f794ea2be -#: d5cd6b0856484ad1a5f1be0f36dbca84 -#: 559e63e7918344a8afdb26e8d8af2bae -#: 681f4a0621c84af5b603e302957fca24 -#: 40ac5755dc1642c89e6bc723e5950d7a -#: 9ac90eb414af4d83b9c363cc85e04e26 +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a #: a88f1812c49f42f1ac7a744c1c840822 -#: d71e0e6a13fe4d9990262d983c4aea4b -#: d4d90a7f98cf4fa785b0c5df1c055240 -#: 9a16c00d4a624d2aa7e42be17f5e9e41 -#: da5228275de345319b40abae16fbe8b7 -#: 962d87d49ce14c0ea1cceabda7c9cc2d -#: 6b62d4d670624d2590578fa265eae9af -#: 4866914077374dcabb7961c78d04b703 -#: 99b97506806e4f40b1382cef723cca78 -#: 0450b87209e04abf999c6d16346f74ad -#: c914a36558cb4bc98abd8de320e5cfc0 +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a #: a2a4098c99f44db3990a9980266e23aa -#: 72ce7e3d4c314950a9bc3410fd54a91a -#: ab5d8aefc1db4a4c817b5368caa5543e -#: 4ab35ccbcc7a421bba4f7493d8ae96c4 -#: a6c90e28198047819bbc09741d0e820b -#: ca0cd7fa385341149261f81c4cb9db61 +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a #: 6dab0c0a2e24494ab8395fce18a6640a -#: 80f30be1218d4627ac862062d98f65b9 -#: de18df4128cb43da8ea61b66283e75f2 -#: 5015785657bd461bb6bf2bc0a2125668 +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a #: 8432d53ccc6b4c218b0be97b5c783d06 -#: 70306a7be41d4b578c334a0619ba1f3c -#: 1938a7564e7f49a4a0c3d07f69097a01 -#: 6d8d97277dc24519b84ce4eddbcf5e6c -#: c41c21d6e6304513afc6ce518472f17b -#: 60839dcce1c248789ade9b533e7911db -#: e9aab89b208b4e639310868813af5a3a -#: 620a42e608284789b3c467b464c96dad -#: ee9815d10d0f4b26aa8a87feed666d51 +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a #: 69f826f1232a4d53a56d0d5f09d6091a -#: 37ee4bf65332432b844f4c82c96e130f -#: fca243bce7384dd5a65201e550249536 -#: 8f50058a92a84b47a4211733aacacd7e -#: 18ff51c5a3704f5a9fa461a57b8e9b66 +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a #: 743a2e37a02c4c5fb8f7dd22c8217882 -#: ddbc0fd0c67b4c47b95f888da332497a -#: 13c8a10e7a204b58956db583cfa99493 -#: b71cd393e4bb46869fc9b5aa74556aea -#: 5f9dfeae511c4e658ed3c94bd40b4560 -#: d907a1e1ec6441fda3a2d770dd044ffb -#: 67c06d15edc74df8ac0d765f1893023e +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a +#: e3455443ac954b88b181ebe074279d1a msgid "Parameters" msgstr "" @@ -215,39 +218,39 @@ msgid "Called when an audit log entry is created. Unlike :func:`on_audit_log_ent 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 +#: ../../api/events.rst:574 +#: ../../api/events.rst:669 +#: ../../api/events.rst:808 +#: ../../api/events.rst:821 +#: ../../api/events.rst:874 +#: ../../api/events.rst:901 +#: ../../api/events.rst:926 +#: ../../api/events.rst:963 +#: ../../api/events.rst:995 +#: ../../api/events.rst:1018 +#: ../../api/events.rst:1043 +#: ../../api/events.rst:1170 +#: ../../api/events.rst:1194 +#: ../../api/events.rst:1293 +#: ../../api/events.rst:1320 +#: ../../api/events.rst:1354 #: 2c7f1cc4edff4bc29e8b8268e06aa93e #: 6214e4ff9d514cadbf5a0815af3cccaa -#: ac6d84c776ef4acaa1b57da19160c5d3 -#: 940bd659eeb745b2b753faf7238ee8fe -#: 08eb4bec2f2a4837932a221dbd3220c0 -#: b5f3a3acf81442c49df4b0db70f59a29 -#: cebb871f992f4011aea78bd0c12995fb +#: 6214e4ff9d514cadbf5a0815af3cccaa +#: 6214e4ff9d514cadbf5a0815af3cccaa +#: 6214e4ff9d514cadbf5a0815af3cccaa +#: 6214e4ff9d514cadbf5a0815af3cccaa +#: 6214e4ff9d514cadbf5a0815af3cccaa +#: 6214e4ff9d514cadbf5a0815af3cccaa #: 6b8bd14634da4b118afbfe9e49e3beb1 -#: 023402936a654371aab9f215b6e0c90c -#: 7c6afb134ff248edbef99cd378aeac64 -#: 83f294fe23f6474ba62680e79b9ecfee -#: 776fe87242094fc881ad350436325a2a -#: 61459f05ae5d4e50b742f4e8ea6afe1f -#: 198f9bbae5974dffbe423f6dd1819686 -#: 97da3d1b88d84c68a282dfdb9f98fbb3 -#: 0635e0f24c0e47b894c9c7fec506157a -#: 6bea76946d334a7996bd35f353135667 +#: 6214e4ff9d514cadbf5a0815af3cccaa +#: 6214e4ff9d514cadbf5a0815af3cccaa +#: 6214e4ff9d514cadbf5a0815af3cccaa +#: 6214e4ff9d514cadbf5a0815af3cccaa +#: 6214e4ff9d514cadbf5a0815af3cccaa +#: 6214e4ff9d514cadbf5a0815af3cccaa +#: 6214e4ff9d514cadbf5a0815af3cccaa +#: 6214e4ff9d514cadbf5a0815af3cccaa msgid "The raw event payload data." msgstr "" @@ -363,21 +366,21 @@ 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 +#: ../../api/events.rst:753 +#: ../../api/events.rst:776 +#: ../../api/events.rst:793 +#: ../../api/events.rst:806 +#: ../../api/events.rst:819 +#: ../../api/events.rst:846 +#: ../../api/events.rst:872 #: e55034f9969343d990011bfeb8b17ce5 #: cb3213b1115949de9bb856d6d491d2ac -#: d97041759bf74fb7a97daf70cfe8bf3f -#: 95ccb54b20fd47e58417710ed5f5eb52 -#: 1082924a78134519a59315c26ab91333 -#: 024d5d91d73a44de83c021d43b5b54e9 -#: 9021e87cdea64927a2681528197df4d5 -#: af5b8c5a72884a83ac69344f157698af +#: cb3213b1115949de9bb856d6d491d2ac +#: cb3213b1115949de9bb856d6d491d2ac +#: cb3213b1115949de9bb856d6d491d2ac +#: cb3213b1115949de9bb856d6d491d2ac +#: cb3213b1115949de9bb856d6d491d2ac +#: cb3213b1115949de9bb856d6d491d2ac msgid "This requires :attr:`Intents.messages` to be enabled." msgstr "" @@ -416,33 +419,33 @@ 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 +#: ../../api/events.rst:420 +#: ../../api/events.rst:439 +#: ../../api/events.rst:453 +#: ../../api/events.rst:467 +#: ../../api/events.rst:476 +#: ../../api/events.rst:517 +#: ../../api/events.rst:1233 +#: ../../api/events.rst:1246 +#: ../../api/events.rst:1259 +#: ../../api/events.rst:1281 +#: ../../api/events.rst:1329 +#: ../../api/events.rst:1350 #: 3ad5cbd41ddb4c8e847d8f8ac5f8c3e6 #: f28de120c204470e8efc2483a3ec3ec3 #: 5d355f08e7f145bc97271086b10d0260 #: f9ffac6969464760865bea86217e862e -#: 4330cee10810420eae954b7acf917069 -#: 0873cc1fdc914f0fad25fd05b59de54d -#: 701881eeed2b49a0bf24be49460e89d7 -#: 2e278f832d434ef9a4960f7d01cde05e -#: ec0f92796f594f4297ae5903eb0667b8 -#: e12869e76b1849dfb9a5de16e606e9d9 -#: 77ddc91aee8f43b7b3639a94cef10e17 -#: 8b159796a6f349e8aeaf7c5bf5752f37 -#: 45b3e36bf4724062b1bddf760945f9e1 -#: a4a7d77e88f44357be30d5714d93dd1b -#: 213bd7864c0e48eea8da67e27a46dabc +#: f9ffac6969464760865bea86217e862e +#: f9ffac6969464760865bea86217e862e +#: f9ffac6969464760865bea86217e862e +#: f9ffac6969464760865bea86217e862e +#: f9ffac6969464760865bea86217e862e +#: f9ffac6969464760865bea86217e862e +#: f9ffac6969464760865bea86217e862e +#: f9ffac6969464760865bea86217e862e +#: f9ffac6969464760865bea86217e862e +#: f9ffac6969464760865bea86217e862e +#: f9ffac6969464760865bea86217e862e msgid "This requires :attr:`Intents.guilds` to be enabled." msgstr "" @@ -666,1235 +669,1280 @@ msgid "The message that is about to be passed on to the WebSocket library. It ca 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 +#: ../../api/events.rst:417 #: 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 +#: ../../api/events.rst:422 #: ea6e535b185f4d968990adf6893c7de0 msgid "The guild that was joined." msgstr "" -#: ../../api/events.rst:463 +#: ../../api/events.rst:427 #: 070a63745b6849fbbeab2bf0a1b4e515 msgid "Called when a :class:`Guild` is removed from the :class:`Client`." msgstr "" -#: ../../api/events.rst:465 +#: ../../api/events.rst:429 #: 5d6cba70019f45f3ad96f5ec0a2594cc msgid "This happens through, but not limited to, these circumstances:" msgstr "" -#: ../../api/events.rst:467 +#: ../../api/events.rst:431 #: 51b0d21974c1475a806ed37c3782ff11 msgid "The client got banned." msgstr "" -#: ../../api/events.rst:468 +#: ../../api/events.rst:432 #: ff9e9e053e6049889fca38347497fb96 msgid "The client got kicked." msgstr "" -#: ../../api/events.rst:469 +#: ../../api/events.rst:433 #: 1ed4f7c318cb43ce8b62cb081fe6a0b1 msgid "The client left the guild." msgstr "" -#: ../../api/events.rst:470 +#: ../../api/events.rst:434 #: ec3900333c3f461bb2ad0cc95bc5ef2d msgid "The client or the guild owner deleted the guild." msgstr "" -#: ../../api/events.rst:472 +#: ../../api/events.rst:436 #: 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 +#: ../../api/events.rst:441 #: a83039edb3ba4814a286c7e322c10728 msgid "The guild that got removed." msgstr "" -#: ../../api/events.rst:482 +#: ../../api/events.rst:446 #: 1e90656c38f64056af4b1e544753df18 msgid "Called when a :class:`Guild` is updated, for example:" msgstr "" -#: ../../api/events.rst:484 +#: ../../api/events.rst:448 #: 422f145b8062401c84f76756bb9820e2 msgid "Changed name" msgstr "" -#: ../../api/events.rst:485 +#: ../../api/events.rst:449 #: cbab865be7764aefa53002b353147cda msgid "Changed AFK channel" msgstr "" -#: ../../api/events.rst:486 +#: ../../api/events.rst:450 #: deebcf9e947142edbdbcb28d9c54c4a6 msgid "Changed AFK timeout" msgstr "" -#: ../../api/events.rst:487 +#: ../../api/events.rst:451 #: e5891580f33b405da90cd749c059cb8f msgid "etc." msgstr "" -#: ../../api/events.rst:491 +#: ../../api/events.rst:455 #: a8cffe8722014b508fe234b456e99add msgid "The guild prior to being updated." msgstr "" -#: ../../api/events.rst:493 +#: ../../api/events.rst:457 #: 09559bb331d54c818d9456c9e50dccc8 msgid "The guild after being updated." msgstr "" -#: ../../api/events.rst:499 +#: ../../api/events.rst:463 #: 4926a01720844942bb4fbe2214b41d5d msgid "Called when a :class:`Guild` creates or deletes a :class:`Role`." msgstr "" -#: ../../api/events.rst:501 +#: ../../api/events.rst:465 #: 26919d02a3764b4bb306d4b2bb402aac msgid "To get the guild it belongs to, use :attr:`Role.guild`." msgstr "" -#: ../../api/events.rst:505 +#: ../../api/events.rst:469 #: 1ff07f75468541b38b5b8945ccec0b63 msgid "The role that was created or deleted." msgstr "" -#: ../../api/events.rst:510 +#: ../../api/events.rst:474 #: f7dd6519c06844c08e5241b1559491a5 msgid "Called when a :class:`Role` is changed guild-wide." msgstr "" -#: ../../api/events.rst:514 +#: ../../api/events.rst:478 #: f1b5a9b9b024439d9ed75c18e938f390 msgid "The updated role's old info." msgstr "" -#: ../../api/events.rst:516 +#: ../../api/events.rst:480 #: 1ff66a23bf0d491cb53e831bae382c88 msgid "The updated role's updated info." msgstr "" -#: ../../api/events.rst:521 +#: ../../api/events.rst:485 #: 8cbae07e47ba4cdebe69ec4076d665f9 -msgid "Called when a :class:`Guild` adds or removes an :class:`Emoji`." +msgid "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." msgstr "" -#: ../../api/events.rst:523 -#: ../../api/events.rst:536 +#: ../../api/events.rst:487 +#: ../../api/events.rst:500 +#: 7d54c1f8e6e74a72b35f12482d5961b4 #: 7d54c1f8e6e74a72b35f12482d5961b4 -#: f67a33188bb34272a8889e369b01d223 msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." msgstr "" -#: ../../api/events.rst:525 +#: ../../api/events.rst:489 #: 73965f3cab494980aa9dd819ffd29c0b msgid "The guild who got their emojis updated." msgstr "" -#: ../../api/events.rst:527 +#: ../../api/events.rst:491 #: fe7eb70f2c4a42d88b47e0e0c2137c58 msgid "A list of emojis before the update." msgstr "" -#: ../../api/events.rst:529 +#: ../../api/events.rst:493 #: 0b5a5ffd3b384bb8b875fd343f7d22a6 msgid "A list of emojis after the update." msgstr "" -#: ../../api/events.rst:534 +#: ../../api/events.rst:498 #: 7b8bb01b2d34498da90bd94b2c350575 msgid "Called when a :class:`Guild` adds or removes a sticker." msgstr "" -#: ../../api/events.rst:540 +#: ../../api/events.rst:504 #: 1fae23769a4342888fab8d136a77ec99 msgid "The guild who got their stickers updated." msgstr "" -#: ../../api/events.rst:542 +#: ../../api/events.rst:506 #: b36c6dcfc18940f9abb2e0f888efff66 msgid "A list of stickers before the update." msgstr "" -#: ../../api/events.rst:544 +#: ../../api/events.rst:508 #: cd05518a2d924fd68974c2f5ea934b34 msgid "A list of stickers after the update." msgstr "" -#: ../../api/events.rst:550 +#: ../../api/events.rst:514 #: 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 +#: ../../api/events.rst:519 #: c35fb39492e5426aa2d9ea96218afa36 msgid "The guild that has changed availability." msgstr "" -#: ../../api/events.rst:560 +#: ../../api/events.rst:524 #: 6b348d1a6bcb4fd483811fb2f1f365d5 msgid "Called whenever a webhook is created, modified, or removed from a guild channel." msgstr "" -#: ../../api/events.rst:562 +#: ../../api/events.rst:526 #: a4440117ae634b6681222e5129783348 msgid "This requires :attr:`Intents.webhooks` to be enabled." msgstr "" -#: ../../api/events.rst:564 +#: ../../api/events.rst:528 #: e31dea0d4cf244af992bdf2f321a7013 msgid "The channel that had its webhooks updated." msgstr "" -#: ../../api/events.rst:568 +#: ../../api/events.rst:532 #: 4c52e96a47324217a4defdba08ed9919 msgid "Integrations" msgstr "" -#: ../../api/events.rst:571 +#: ../../api/events.rst:535 #: 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 +#: ../../api/events.rst:537 +#: ../../api/events.rst:548 +#: ../../api/events.rst:559 +#: ../../api/events.rst:570 #: b5b38af536e54fbe8712c1ed8deb7547 -#: c2e1693b47554cf7945399623ff784b2 -#: 737a9cd4e70a4373a753fbdf4dff4b3b +#: b5b38af536e54fbe8712c1ed8deb7547 +#: b5b38af536e54fbe8712c1ed8deb7547 +#: a5ca1990b43345bebb2c1cb83f07bb00 msgid "This requires :attr:`Intents.integrations` to be enabled." msgstr "" -#: ../../api/events.rst:577 +#: ../../api/events.rst:541 #: 7cd3123072c84da0b5786b9c2dceed48 msgid "The guild that had its integrations updated." msgstr "" -#: ../../api/events.rst:582 +#: ../../api/events.rst:546 #: c09a7f4e3d20488fa04c4baa6e222d0c msgid "Called when an integration is created." msgstr "" -#: ../../api/events.rst:588 -#: ../../api/events.rst:599 +#: ../../api/events.rst:552 +#: ../../api/events.rst:563 +#: 7f9c50d99dd24e9fac1bc3fee804ca53 #: 7f9c50d99dd24e9fac1bc3fee804ca53 -#: 060f67ac9b304260a34915be922f68c1 msgid "The integration that was created." msgstr "" -#: ../../api/events.rst:593 +#: ../../api/events.rst:557 #: 184033097d74474fb4d5a9e187a0eb1b msgid "Called when an integration is updated." msgstr "" -#: ../../api/events.rst:604 +#: ../../api/events.rst:568 #: da531782f86c4b52b37c365448ee9f07 msgid "Called when an integration is deleted." msgstr "" -#: ../../api/events.rst:614 +#: ../../api/events.rst:578 #: cfb2b057b0c1472cb4d3eee5331ae7ae msgid "Interactions" msgstr "" -#: ../../api/events.rst:617 +#: ../../api/events.rst:581 #: 53db6b926a804818a95dc3ff07ce5e99 msgid "Called when an interaction happened." msgstr "" -#: ../../api/events.rst:619 +#: ../../api/events.rst:583 #: 3ebdd96f98e9443a8d255dc81f17e869 msgid "This currently happens due to application command invocations or components being used." msgstr "" -#: ../../api/events.rst:623 +#: ../../api/events.rst:587 #: 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 +#: ../../api/events.rst:593 #: 5036e83617bf4ba58f9fcb428bc0680d msgid "The interaction data." msgstr "" -#: ../../api/events.rst:633 +#: ../../api/events.rst:597 #: 6973c117b78e4a2ebc6825aacb60698c msgid "Invites" msgstr "" -#: ../../api/events.rst:636 +#: ../../api/events.rst:600 #: 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 +#: ../../api/events.rst:607 +#: ../../api/events.rst:624 +#: 812b6d18d5a946d9bf0784367bb3affd #: 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 +#: ../../api/events.rst:610 +#: ../../api/events.rst:630 +#: 3cf7be58f5b4432ca452bf28c48129e9 #: 3cf7be58f5b4432ca452bf28c48129e9 -#: 4dd28bae94dc48ccb43ad42ddf3c2eaf msgid "This requires :attr:`Intents.invites` to be enabled." msgstr "" -#: ../../api/events.rst:648 +#: ../../api/events.rst:612 #: 088d046716804d73b129d0bf49e473bb msgid "The invite that was created." msgstr "" -#: ../../api/events.rst:653 +#: ../../api/events.rst:617 #: 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 +#: ../../api/events.rst:627 #: 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 +#: ../../api/events.rst:632 #: 2af6321a181640749c67d39cf154ad77 msgid "The invite that was deleted." msgstr "" -#: ../../api/events.rst:672 +#: ../../api/events.rst:636 #: cc2adb6fe784475a94c0c0e32b9bac4c msgid "Members/Users" msgstr "" -#: ../../api/events.rst:675 +#: ../../api/events.rst:639 #: 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 +#: ../../api/events.rst:641 +#: ../../api/events.rst:654 +#: ../../api/events.rst:665 +#: ../../api/events.rst:684 +#: ../../api/events.rst:740 +#: ../../api/events.rst:1303 +#: ../../api/events.rst:1316 +#: 8c500bf67b4947efbccd591b47e807d3 +#: 8c500bf67b4947efbccd591b47e807d3 +#: 8c500bf67b4947efbccd591b47e807d3 +#: 8c500bf67b4947efbccd591b47e807d3 +#: 8c500bf67b4947efbccd591b47e807d3 +#: 8c500bf67b4947efbccd591b47e807d3 #: 8c500bf67b4947efbccd591b47e807d3 -#: c267ed1dfc214c44b6f071d6284d0d90 -#: 571a0224eed04afca25ceb6fe779b727 -#: b77f2bddd083470aabb9f69a1aa4df63 -#: ac04b1a2a0c4454d82d101ecb00a6bc0 -#: 0608221e23ac498eb93feba2e0df9730 -#: 245dfa13ed9940cb9f9e97069c816268 msgid "This requires :attr:`Intents.members` to be enabled." msgstr "" -#: ../../api/events.rst:679 +#: ../../api/events.rst:643 #: 51b1cf557f3b4b28a31d47b008c958e5 msgid "The member who joined." msgstr "" -#: ../../api/events.rst:684 +#: ../../api/events.rst:648 #: 4bdb0182507c45c8b03ae52c0d7fe188 msgid "Called when a :class:`Member` leaves a :class:`Guild`." msgstr "" -#: ../../api/events.rst:686 +#: ../../api/events.rst:650 #: 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 +#: ../../api/events.rst:656 #: 3fd5f443082f4f50ab9d14d965e5906c msgid "The member who left." msgstr "" -#: ../../api/events.rst:697 +#: ../../api/events.rst:661 #: 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 +#: ../../api/events.rst:674 #: 72cf960892384ef2a30c0f88ed9d2050 msgid "Called when a :class:`Member` updates their profile." msgstr "" -#: ../../api/events.rst:712 -#: ../../api/events.rst:731 -#: ../../api/events.rst:769 +#: ../../api/events.rst:676 +#: ../../api/events.rst:695 +#: ../../api/events.rst:733 +#: 9c0d0062f4524f09afc01922b6880478 +#: 9c0d0062f4524f09afc01922b6880478 #: 9c0d0062f4524f09afc01922b6880478 -#: df7654b2971a4c8cb816e6a4cb412282 -#: 94033025616b4076bd1cd69dbccbce65 msgid "This is called when one or more of the following things change:" msgstr "" -#: ../../api/events.rst:714 +#: ../../api/events.rst:678 #: 636b715442114d74b10fffcb5ea1f423 msgid "nickname" msgstr "" -#: ../../api/events.rst:715 +#: ../../api/events.rst:679 #: 72c18648ea0441579e75a0809dda2be0 msgid "roles" msgstr "" -#: ../../api/events.rst:716 +#: ../../api/events.rst:680 #: 32412ad2806a4c19a0b79bd9de971467 msgid "pending" msgstr "" -#: ../../api/events.rst:717 +#: ../../api/events.rst:681 #: 23c7215831354f6eaa85e8cfa1a70f3e msgid "communication_disabled_until" msgstr "" -#: ../../api/events.rst:718 +#: ../../api/events.rst:682 #: dfb5abcb569a43c7acb95e5da9c81b39 msgid "timed_out" msgstr "" -#: ../../api/events.rst:722 -#: ../../api/events.rst:740 +#: ../../api/events.rst:686 +#: ../../api/events.rst:704 +#: 725047654176421eb19576468343096f #: 725047654176421eb19576468343096f -#: 3c202860a49f49fe90fce486a871deb3 msgid "The updated member's old info." msgstr "" -#: ../../api/events.rst:724 -#: ../../api/events.rst:742 +#: ../../api/events.rst:688 +#: ../../api/events.rst:706 +#: 4a04609fc50046328661598fbb671487 #: 4a04609fc50046328661598fbb671487 -#: efbf85ad83644356bf043efa7cd58731 msgid "The updated member's updated info." msgstr "" -#: ../../api/events.rst:729 +#: ../../api/events.rst:693 #: 1dee8a81bb94444cb7bc2ddf2fab5117 msgid "Called when a :class:`Member` updates their presence." msgstr "" -#: ../../api/events.rst:733 +#: ../../api/events.rst:697 #: 1a275606817640eb8e06ee192f0f607b msgid "status" msgstr "" -#: ../../api/events.rst:734 +#: ../../api/events.rst:698 #: 9f977430a74e4863afee82b21fcbf311 msgid "activity" msgstr "" -#: ../../api/events.rst:736 +#: ../../api/events.rst:700 #: 765cb25bca1e473d8f12775b7c880b4f msgid "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled." msgstr "" -#: ../../api/events.rst:747 +#: ../../api/events.rst:711 #: a4a83d5acfa848f298585ef71e363a26 msgid "Called when a :class:`Member` changes their :class:`VoiceState`." msgstr "" -#: ../../api/events.rst:749 -#: ../../api/events.rst:1177 +#: ../../api/events.rst:713 +#: ../../api/events.rst:1213 +#: 0c77a95ffd774442b4de3a3305b391f4 #: 0c77a95ffd774442b4de3a3305b391f4 -#: 79633923465b40b68645223137732d3e msgid "The following, but not limited to, examples illustrate when this event is called:" msgstr "" -#: ../../api/events.rst:751 +#: ../../api/events.rst:715 #: 2bdb0897344a4989a02198ce2b493750 msgid "A member joins a voice or stage channel." msgstr "" -#: ../../api/events.rst:752 +#: ../../api/events.rst:716 #: a2d0ec0a66f44b798dbfdf16e54cf5f4 msgid "A member leaves a voice or stage channel." msgstr "" -#: ../../api/events.rst:753 +#: ../../api/events.rst:717 #: 906d40a6e6c54fa48a691ea0742aefcd msgid "A member is muted or deafened by their own accord." msgstr "" -#: ../../api/events.rst:754 +#: ../../api/events.rst:718 #: bae40f0b39be405a95122a36592e4a53 msgid "A member is muted or deafened by a guild administrator." msgstr "" -#: ../../api/events.rst:756 +#: ../../api/events.rst:720 #: 1c7f2baeafaf4301bfd220ebeb3936ea msgid "This requires :attr:`Intents.voice_states` to be enabled." msgstr "" -#: ../../api/events.rst:758 +#: ../../api/events.rst:722 #: 0da0ec4c5bc04aaab41c2ad70e357a81 msgid "The member whose voice states changed." msgstr "" -#: ../../api/events.rst:760 +#: ../../api/events.rst:724 #: 3b6875267fcb48fea947ebbc069ac8e3 msgid "The voice state prior to the changes." msgstr "" -#: ../../api/events.rst:762 +#: ../../api/events.rst:726 #: 88099f60004742219109afd6e44eadff msgid "The voice state after the changes." msgstr "" -#: ../../api/events.rst:767 +#: ../../api/events.rst:731 #: 525d8057d8ac440b9f12215a99861567 msgid "Called when a :class:`User` updates their profile." msgstr "" -#: ../../api/events.rst:771 +#: ../../api/events.rst:735 #: f8f87a7c98ed4b2f928b30556b4fa7b7 msgid "avatar" msgstr "" -#: ../../api/events.rst:772 +#: ../../api/events.rst:736 #: 599d96b1a33b4f199c8d33b53feb03be msgid "username" msgstr "" -#: ../../api/events.rst:773 +#: ../../api/events.rst:737 #: e0ee257c4fb84b0d9c81e54f1137853d msgid "discriminator" msgstr "" -#: ../../api/events.rst:774 +#: ../../api/events.rst:738 #: 32ad7813f11149efa7fa506c96845ed4 msgid "global_name" msgstr "" -#: ../../api/events.rst:778 +#: ../../api/events.rst:742 #: b7fa74d14bdc43d68246734145009b99 msgid "The updated user's old info." msgstr "" -#: ../../api/events.rst:780 +#: ../../api/events.rst:744 #: 9ba6bc5b6bbb4eaea29046092573c451 msgid "The updated user's updated info." msgstr "" -#: ../../api/events.rst:784 +#: ../../api/events.rst:748 #: 7abff70b9dca4670aa6d4733ba79f565 msgid "Messages" msgstr "" -#: ../../api/events.rst:787 +#: ../../api/events.rst:751 #: 82baa07e4f7c4be7b944e0382240ef7e msgid "Called when a :class:`Message` is created and sent." msgstr "" -#: ../../api/events.rst:793 +#: ../../api/events.rst:757 #: 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 +#: ../../api/events.rst:763 #: 192f3d3b79e047c4b51ec51f981e33b7 msgid "The current message." msgstr "" -#: ../../api/events.rst:804 +#: ../../api/events.rst:768 #: 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 +#: ../../api/events.rst:773 #: 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 +#: ../../api/events.rst:778 #: a428153671394c76966c2a2f9024abcf msgid "The deleted message." msgstr "" -#: ../../api/events.rst:819 +#: ../../api/events.rst:783 #: 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 +#: ../../api/events.rst:790 #: 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 +#: ../../api/events.rst:795 #: 9ce00566593447c492ca1278f8511426 msgid "The messages that have been deleted." msgstr "" -#: ../../api/events.rst:836 +#: ../../api/events.rst:800 #: 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 +#: ../../api/events.rst:803 #: 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 +#: ../../api/events.rst:813 #: 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 +#: ../../api/events.rst:816 #: 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 +#: ../../api/events.rst:826 #: 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 +#: ../../api/events.rst:831 #: 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 +#: ../../api/events.rst:834 #: 9335cc2da527455584f33d3799b39d7d msgid "The following non-exhaustive cases trigger this event:" msgstr "" -#: ../../api/events.rst:872 +#: ../../api/events.rst:836 #: 53861c9cc0f64565af31bcc8356d1596 msgid "A message has been pinned or unpinned." msgstr "" -#: ../../api/events.rst:873 +#: ../../api/events.rst:837 #: 308d8ed1000e42cf94bd6253c7eee766 msgid "The message content has been changed." msgstr "" -#: ../../api/events.rst:874 +#: ../../api/events.rst:838 #: 066a5520d3c14022b153532fb10de9ca msgid "The message has received an embed." msgstr "" -#: ../../api/events.rst:876 +#: ../../api/events.rst:840 #: 0af62deae9b743988d34523a50c3d13a msgid "For performance reasons, the embed server does not do this in a \"consistent\" manner." msgstr "" -#: ../../api/events.rst:878 +#: ../../api/events.rst:842 #: b0864434abef4d4f9c3b7fb53099a72e msgid "The message's embeds were suppressed or unsuppressed." msgstr "" -#: ../../api/events.rst:879 +#: ../../api/events.rst:843 #: 0f327a0f417a439eab5204a3f58142bb msgid "A call message has received an update to its participants or ending time." msgstr "" -#: ../../api/events.rst:880 +#: ../../api/events.rst:844 #: 497e563c063242e7b911450f5531d398 msgid "A poll has ended and the results have been finalized." msgstr "" -#: ../../api/events.rst:884 +#: ../../api/events.rst:848 #: d43cb6b0601a480684fa45bddbf78ded msgid "The previous version of the message." msgstr "" -#: ../../api/events.rst:886 +#: ../../api/events.rst:850 #: 7a7d3bc5be514a42acadd0236c90968a msgid "The current version of the message." msgstr "" -#: ../../api/events.rst:891 +#: ../../api/events.rst:855 #: 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 +#: ../../api/events.rst:858 #: 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 +#: ../../api/events.rst:864 #: 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 +#: ../../api/events.rst:867 #: 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 +#: ../../api/events.rst:878 #: 407e56cbd8894cc7bfead844affa902e msgid "Polls" msgstr "" -#: ../../api/events.rst:917 +#: ../../api/events.rst:881 #: 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 +#: ../../api/events.rst:885 +#: ../../api/events.rst:899 +#: ../../api/events.rst:910 +#: ../../api/events.rst:924 +#: cf97ca5ad27a4e5fbbe4f583cc89dc60 +#: cf97ca5ad27a4e5fbbe4f583cc89dc60 +#: cf97ca5ad27a4e5fbbe4f583cc89dc60 #: cf97ca5ad27a4e5fbbe4f583cc89dc60 -#: 91c503e67e4742a392a6f3e5e71708ec -#: e8a3023c3c93418e9c82cb67372f1bf7 -#: b162b13f9b5b4acd8b928cdf76d398af msgid "This requires :attr:`Intents.polls` to be enabled." msgstr "" -#: ../../api/events.rst:923 -#: ../../api/events.rst:948 +#: ../../api/events.rst:887 +#: ../../api/events.rst:912 +#: 258ead003f2243f494b187adccae34fa #: 258ead003f2243f494b187adccae34fa -#: ff747bd5556c4a8d9167ea03a335f344 msgid "The current state of the poll." msgstr "" -#: ../../api/events.rst:925 +#: ../../api/events.rst:889 #: 57e5c2cd8fde48a285c0585219a834ef msgid "The user who added the vote." msgstr "" -#: ../../api/events.rst:927 -#: ../../api/events.rst:952 +#: ../../api/events.rst:891 +#: ../../api/events.rst:916 +#: 90a34ed5976846189bfc2190e990abdf #: 90a34ed5976846189bfc2190e990abdf -#: b9bc568e4f2143f2b176e85afef48e8e msgid "The answer that was voted." msgstr "" -#: ../../api/events.rst:932 +#: ../../api/events.rst:896 #: 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 +#: ../../api/events.rst:906 #: 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 +#: ../../api/events.rst:914 #: 5f583e96e69c4434b86aa5855a38a645 msgid "The user who removed the vote." msgstr "" -#: ../../api/events.rst:957 +#: ../../api/events.rst:921 #: 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 +#: ../../api/events.rst:930 #: 1e6beea08c6545e1956f072b67cf94c0 msgid "Reactions" msgstr "" -#: ../../api/events.rst:969 +#: ../../api/events.rst:933 #: 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 +#: ../../api/events.rst:939 #: 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 +#: ../../api/events.rst:941 +#: ../../api/events.rst:961 +#: ../../api/events.rst:993 +#: ../../api/events.rst:1004 +#: ../../api/events.rst:1016 +#: ../../api/events.rst:1027 +#: ../../api/events.rst:1039 +#: d254e7018b894d5da0d9ab3310487581 +#: d254e7018b894d5da0d9ab3310487581 +#: d254e7018b894d5da0d9ab3310487581 +#: d254e7018b894d5da0d9ab3310487581 +#: d254e7018b894d5da0d9ab3310487581 +#: d254e7018b894d5da0d9ab3310487581 #: d254e7018b894d5da0d9ab3310487581 -#: 3ae12ea3aa9e49c29f89238dd55ad89d -#: e903959ba860442bacb9dbb7455787a1 -#: 8b747aaeeaa54dbaa2bb43a1cacfb4a4 -#: 05cf2a3105064224935b6fc52c104a8b -#: dcf7eda8ed0e407aaabc8a42264dd252 -#: 71824a77e84c432daeeb45c809a4cf3d msgid "This requires :attr:`Intents.reactions` to be enabled." msgstr "" -#: ../../api/events.rst:981 +#: ../../api/events.rst:945 #: 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 +#: ../../api/events.rst:951 +#: ../../api/events.rst:983 +#: 367f92343bc64207970e6a72c687716d #: 367f92343bc64207970e6a72c687716d -#: 09d780eee4834c02bccf9c957d6a8cf6 msgid "The current state of the reaction." msgstr "" -#: ../../api/events.rst:989 -#: ../../api/events.rst:1021 +#: ../../api/events.rst:953 +#: ../../api/events.rst:985 +#: b19a600ee7604f58ae7c7dae8826a694 #: b19a600ee7604f58ae7c7dae8826a694 -#: 6e25ca528d3649428e675864d9383bf7 msgid "The user who added the reaction." msgstr "" -#: ../../api/events.rst:994 +#: ../../api/events.rst:958 #: 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 +#: ../../api/events.rst:968 #: 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 +#: ../../api/events.rst:974 #: 602b41b73b974da69daf8f4af20d682b msgid "To get the message being reacted, access it via :attr:`Reaction.message`." msgstr "" -#: ../../api/events.rst:1012 +#: ../../api/events.rst:976 #: f0e3d9f9640149579db72c4d79b4b9b7 msgid "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled." msgstr "" -#: ../../api/events.rst:1016 +#: ../../api/events.rst:980 #: 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 +#: ../../api/events.rst:990 #: 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 +#: ../../api/events.rst:1000 #: 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 +#: ../../api/events.rst:1006 #: 957dda2d335345a6a9873f634958c021 msgid "The message that had its reactions cleared." msgstr "" -#: ../../api/events.rst:1044 +#: ../../api/events.rst:1008 #: 07322cdc6b664f13af8dca1e2b91081b msgid "The reactions that were removed." msgstr "" -#: ../../api/events.rst:1049 +#: ../../api/events.rst:1013 #: 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 +#: ../../api/events.rst:1023 #: 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 +#: ../../api/events.rst:1031 #: dfa4f0b46a1048fb9196d4cab53e7e96 msgid "The reaction that got cleared." msgstr "" -#: ../../api/events.rst:1072 +#: ../../api/events.rst:1036 #: 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 +#: ../../api/events.rst:1047 +#: 4c52e96a47324217a4defdba08ed9919 +msgid "Monetization" +msgstr "" + +#: ../../api/events.rst:1050 +#: c4bda84ba80d4f6b82e53d44e2704b60 +msgid "Called when a user subscribes to an SKU." +msgstr "" + +#: ../../api/events.rst:1054 +#: ec2ef743271140fca72f11b8f28b55f2 +msgid "The entitlement that was created as a result of the subscription." +msgstr "" + +#: ../../api/events.rst:1059 +#: 072d6e76c4bb492ebf7fc48e64a58def +msgid "Called when a user's subscription to an Entitlement is cancelled." +msgstr "" + +#: ../../api/events.rst:1065 +#: 0e5c7574cf1641eb92588ee42cf949c8 +msgid "Before October 1, 2024, this event was called when a user's subscription was renewed." +msgstr "" + +#: ../../api/events.rst:1067 +#: 438a722423d44ce8914d0be34b1600cb +msgid "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." +msgstr "" + +#: ../../api/events.rst:1070 +#: 0a0768b592be40a89c28b086a2229aa1 +msgid "`See the Discord changelog. `_" +msgstr "" + +#: ../../api/events.rst:1072 +#: 79720b0dadf04f179a625168706790b9 +msgid "The entitlement that was updated." +msgstr "" + +#: ../../api/events.rst:1077 +#: 1d13e1996ca641bcb26d6179d19e09e7 +msgid "Called when a user's entitlement is deleted." +msgstr "" + +#: ../../api/events.rst:1079 +#: 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:1084 +#: bf621f37de124bcbb5cce9859564f2d1 +msgid "This is not called when a user's subscription is cancelled." +msgstr "" + +#: ../../api/events.rst:1088 +#: 9dbb179c32b54a398dc87524d5bbaef8 +msgid "The entitlement that was deleted." +msgstr "" + +#: ../../api/events.rst:1093 +#: 070a63745b6849fbbeab2bf0a1b4e515 +msgid "Called when a subscription is created for the application." +msgstr "" + +#: ../../api/events.rst:1097 +#: 7f9c50d99dd24e9fac1bc3fee804ca53 +msgid "The subscription that was created." +msgstr "" + +#: ../../api/events.rst:1102 +#: 0e3eb0e978f147ee8ac9f2ad8b364954 +msgid "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." +msgstr "" + +#: ../../api/events.rst:1106 +#: 7f9c50d99dd24e9fac1bc3fee804ca53 +msgid "The subscription that was updated." +msgstr "" + +#: ../../api/events.rst:1111 +#: da531782f86c4b52b37c365448ee9f07 +msgid "Called when a subscription has been deleted." +msgstr "" + +#: ../../api/events.rst:1115 +#: 7f9c50d99dd24e9fac1bc3fee804ca53 +msgid "The subscription that was deleted." +msgstr "" + +#: ../../api/events.rst:1119 #: 35ea4a4f51b14096be194c1b45b9980e msgid "Scheduled Events" msgstr "" -#: ../../api/events.rst:1086 +#: ../../api/events.rst:1122 #: 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 +#: ../../api/events.rst:1124 +#: ../../api/events.rst:1133 +#: ../../api/events.rst:1144 +#: ../../api/events.rst:1155 +#: ../../api/events.rst:1168 +#: ../../api/events.rst:1179 +#: ../../api/events.rst:1192 +#: 397fd90fe30649a59c540215efdd33f2 +#: 397fd90fe30649a59c540215efdd33f2 +#: 397fd90fe30649a59c540215efdd33f2 +#: 397fd90fe30649a59c540215efdd33f2 +#: 397fd90fe30649a59c540215efdd33f2 +#: 397fd90fe30649a59c540215efdd33f2 #: 397fd90fe30649a59c540215efdd33f2 -#: 9262461979874e4ba80b732bd9128414 -#: 2fd67e22f8f24a24a4f09f34a9e9d221 -#: d1665efce5a24edea7b9f156c11971dc -#: f1a230d4368d427a8aa0254e2144a131 -#: 5d2d9f01bc57458b94256b5aaae996bc -#: e0576265fd4140f3a91040bbb9245078 msgid "This requires :attr:`Intents.scheduled_events` to be enabled." msgstr "" -#: ../../api/events.rst:1090 +#: ../../api/events.rst:1126 #: df55f40708a14557bca10e280cadffcd msgid "The newly created scheduled event." msgstr "" -#: ../../api/events.rst:1095 +#: ../../api/events.rst:1131 #: 3003cf8ca0d9419d9d22b0f170953af8 msgid "Called when a scheduled event is updated." msgstr "" -#: ../../api/events.rst:1099 +#: ../../api/events.rst:1135 #: f4adbcfb52fd47f483e7dcff7ef80d89 msgid "The old scheduled event." msgstr "" -#: ../../api/events.rst:1101 +#: ../../api/events.rst:1137 #: dd0e692f4c5a4846b85c3503724118c9 msgid "The updated scheduled event." msgstr "" -#: ../../api/events.rst:1106 +#: ../../api/events.rst:1142 #: a5186e52c5b5474589a4e4fce901f851 msgid "Called when a scheduled event is deleted." msgstr "" -#: ../../api/events.rst:1110 +#: ../../api/events.rst:1146 #: 30ee4a060f724db18a7e1b6d5dae9c6f msgid "The deleted scheduled event." msgstr "" -#: ../../api/events.rst:1115 +#: ../../api/events.rst:1151 #: 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 +#: ../../api/events.rst:1157 #: 65b1bb809e964351ab01b21f5d03bce1 msgid "The scheduled event subscribed to." msgstr "" -#: ../../api/events.rst:1123 +#: ../../api/events.rst:1159 #: 1d1f095f702e4d1cba2e0300dfb1d7cd msgid "The member who subscribed." msgstr "" -#: ../../api/events.rst:1128 +#: ../../api/events.rst:1164 #: 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 +#: ../../api/events.rst:1175 #: 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 +#: ../../api/events.rst:1181 #: 7fa34a768768480d8411a6b67d092bf9 msgid "The scheduled event unsubscribed from." msgstr "" -#: ../../api/events.rst:1147 +#: ../../api/events.rst:1183 #: ca841d99fac740dc81c93bccf1047b92 msgid "The member who unsubscribed." msgstr "" -#: ../../api/events.rst:1152 +#: ../../api/events.rst:1188 #: 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 +#: ../../api/events.rst:1198 #: fdab4d3cb6594493937e482cf6f3a3cd msgid "Stage Instances" msgstr "" -#: ../../api/events.rst:1166 +#: ../../api/events.rst:1202 #: 5e4de8c9a02d40568f53b22e2928b78b msgid "Called when a :class:`StageInstance` is created or deleted for a :class:`StageChannel`." msgstr "" -#: ../../api/events.rst:1170 +#: ../../api/events.rst:1206 #: 4362791ab4114db28b8dd19f7ef7ef07 msgid "The stage instance that was created or deleted." msgstr "" -#: ../../api/events.rst:1175 +#: ../../api/events.rst:1211 #: 885999ae3cce4971a022991fe5ae4fcd msgid "Called when a :class:`StageInstance` is updated." msgstr "" -#: ../../api/events.rst:1179 +#: ../../api/events.rst:1215 #: cf4fabc871504d3c8c5ef7cf2452c119 msgid "The topic is changed." msgstr "" -#: ../../api/events.rst:1180 +#: ../../api/events.rst:1216 #: 6f32d000266b4d3480e3e484435b15a8 msgid "The privacy level is changed." msgstr "" -#: ../../api/events.rst:1184 +#: ../../api/events.rst:1220 #: 0330580b863a4796b086995635979c2c msgid "The stage instance before the update." msgstr "" -#: ../../api/events.rst:1186 +#: ../../api/events.rst:1222 #: e2d1b23c3728472291d4c10ad1e01549 msgid "The stage instance after the update." msgstr "" -#: ../../api/events.rst:1190 +#: ../../api/events.rst:1226 #: 17f76be0c525474bb937f182666eecd1 msgid "Threads" msgstr "" -#: ../../api/events.rst:1193 +#: ../../api/events.rst:1229 #: 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 +#: ../../api/events.rst:1231 +#: ../../api/events.rst:1244 +#: ../../api/events.rst:1257 +#: ../../api/events.rst:1279 +#: 423b8f3188c34015b3769ffa0fcab9ca +#: 423b8f3188c34015b3769ffa0fcab9ca +#: 423b8f3188c34015b3769ffa0fcab9ca #: 423b8f3188c34015b3769ffa0fcab9ca -#: aa7a8ccefad941ce85f2f7bcfb056245 -#: 2a9ac789aa754c35880a62d90d5b91cf -#: 61dce03189704726b094d79abe9d639f msgid "Note that you can get the guild from :attr:`Thread.guild`." msgstr "" -#: ../../api/events.rst:1201 +#: ../../api/events.rst:1237 #: 5ec02873673f4719852827e4a4fc1fd5 msgid "The thread that got joined." msgstr "" -#: ../../api/events.rst:1206 +#: ../../api/events.rst:1242 #: 59bfa1563ad747e98d7057340d442f09 msgid "Called whenever a thread is created." msgstr "" -#: ../../api/events.rst:1214 +#: ../../api/events.rst:1250 #: dfb084bf5ccd42c29d6b55512463bf9f msgid "The thread that got created." msgstr "" -#: ../../api/events.rst:1219 +#: ../../api/events.rst:1255 #: 8c4ff18149944315a69630439fd143b6 msgid "Called whenever a thread is removed. This is different from a thread being deleted." msgstr "" -#: ../../api/events.rst:1227 +#: ../../api/events.rst:1263 #: 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 +#: ../../api/events.rst:1270 #: 22b7be80106949e8ac757cfca635aa77 msgid "The thread that got removed." msgstr "" -#: ../../api/events.rst:1239 +#: ../../api/events.rst:1275 #: 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 +#: ../../api/events.rst:1285 #: c836cd8213994a84b0e2a036731f5f51 msgid "The thread that got deleted." msgstr "" -#: ../../api/events.rst:1254 +#: ../../api/events.rst:1290 #: 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 +#: ../../api/events.rst:1299 #: 7a457e60855f40f1a930b8e3039c0c99 msgid "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." msgstr "" -#: ../../api/events.rst:1265 +#: ../../api/events.rst:1301 #: 258b46c075964405929ecf4a53efca46 msgid "You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`." msgstr "" -#: ../../api/events.rst:1271 +#: ../../api/events.rst:1307 #: 3768dbfed1414b8bbc6b887601538d2d msgid "The member who joined or left." msgstr "" -#: ../../api/events.rst:1277 +#: ../../api/events.rst:1313 #: 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 +#: ../../api/events.rst:1327 +#: ../../api/events.rst:1345 +#: 0b546f8438b44009bacd6b97af0d4b28 #: 0b546f8438b44009bacd6b97af0d4b28 -#: f4fb02cac22b4700aded6cad53c12eb7 msgid "Called whenever a thread is updated." msgstr "" -#: ../../api/events.rst:1295 +#: ../../api/events.rst:1331 #: 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 +#: ../../api/events.rst:1337 #: 73530b47c0c14ea596341620dbb70d97 msgid "The updated thread's old info." msgstr "" -#: ../../api/events.rst:1303 +#: ../../api/events.rst:1339 #: e4ad496582ca4ac58d49cb868450344f msgid "The updated thread's new info." msgstr "" -#: ../../api/events.rst:1311 +#: ../../api/events.rst:1347 #: 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 +#: ../../api/events.rst:1358 #: 1060458a9a7a4da09c743728271e7d05 msgid "Typing" msgstr "" -#: ../../api/events.rst:1325 +#: ../../api/events.rst:1361 #: 36ddd6002ec044c082db85e340ffd365 msgid "Called when someone begins typing a message." msgstr "" -#: ../../api/events.rst:1327 +#: ../../api/events.rst:1363 #: 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 +#: ../../api/events.rst:1367 #: 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 +#: ../../api/events.rst:1370 +#: ../../api/events.rst:1387 +#: f4c7ce967027460c941934be2c781d19 #: f4c7ce967027460c941934be2c781d19 -#: 4c2cab82fe0d4d7d9bb9226ebd0f9ba1 msgid "This requires :attr:`Intents.typing` to be enabled." msgstr "" -#: ../../api/events.rst:1336 +#: ../../api/events.rst:1372 #: 6bd9c433daea4c2e8516e44a45101692 msgid "The location where the typing originated from." msgstr "" -#: ../../api/events.rst:1338 +#: ../../api/events.rst:1374 #: f0f1ef599c534a958cf8278f9d26283d msgid "The user that started typing." msgstr "" -#: ../../api/events.rst:1340 +#: ../../api/events.rst:1376 #: 3f0964e9777347c394ba677711de264d msgid "When the typing started as an aware datetime in UTC." msgstr "" -#: ../../api/events.rst:1345 +#: ../../api/events.rst:1381 #: 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 +#: ../../api/events.rst:1384 #: 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 +#: ../../api/events.rst:1389 #: dadfbe18822e4f56a787d7eee475f016 msgid "The raw typing payload." msgstr "" -#: ../../api/events.rst:1358 +#: ../../api/events.rst:1394 #: 72cc8acd59874ea7a93625ae002a2026 msgid "Voice Channel Status Update" msgstr "" -#: ../../api/events.rst:1361 +#: ../../api/events.rst:1397 #: faf876de35744e14972adcc55c9f6413 msgid "Called when someone updates a voice channel status." msgstr "" -#: ../../api/events.rst:1365 +#: ../../api/events.rst:1401 #: c82e605cb0a14ccfba06f997667f1f06 msgid "The channel where the voice channel status update originated from." msgstr "" -#: ../../api/events.rst:1367 +#: ../../api/events.rst:1403 #: 17c48469e42a4a4ba626198df396e32d msgid "The old voice channel status." msgstr "" -#: ../../api/events.rst:1369 +#: ../../api/events.rst:1405 #: cada34ee29ff4e7eb0d6d6c47797ec4d msgid "The new voice channel status." msgstr "" -#: ../../api/events.rst:1374 +#: ../../api/events.rst:1410 #: 52dd6b5033a0412b9bba7a8a156f8e4f msgid "Called when someone updates a voice channels status." msgstr "" -#: ../../api/events.rst:1378 +#: ../../api/events.rst:1414 #: 1bb0b4ef346543ad92c14dd99a025211 msgid "The raw voice channel status update payload." msgstr "" diff --git a/docs/build/locales/api/models.pot b/docs/build/locales/api/models.pot index 1c264d33a3..05bb306bb5 100644 --- a/docs/build/locales/api/models.pot +++ b/docs/build/locales/api/models.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-11 09:03+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -72,8 +72,13 @@ 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." +#: 594c0f99676c49e082bb82c19c0f7d6e +msgid "Returns the asset's url's hash." +msgstr "" + +#: ../../../discord/asset.py:docstring of discord.asset.Asset:25 +#: e2124f67ec9f4267908985a925d278ed +msgid "This is equivalent to hash(:attr:`url`)." msgstr "" #: ../../../discord/abc.py:docstring of discord.abc.Messageable.history:0 @@ -84,338 +89,370 @@ msgstr "" #: ../../../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/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions: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 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 -#: c831fa537f414a13a0b6020ed358e961 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 #: c831fa537f414a13a0b6020ed358e961 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 #: c831fa537f414a13a0b6020ed358e961 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 #: c831fa537f414a13a0b6020ed358e961 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 #: c831fa537f414a13a0b6020ed358e961 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 #: c831fa537f414a13a0b6020ed358e961 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 #: c831fa537f414a13a0b6020ed358e961 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 #: c831fa537f414a13a0b6020ed358e961 +#: b168fffcce71401eb693e9e18b66c905 #: c831fa537f414a13a0b6020ed358e961 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 #: c831fa537f414a13a0b6020ed358e961 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 #: c831fa537f414a13a0b6020ed358e961 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 #: c831fa537f414a13a0b6020ed358e961 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 #: c831fa537f414a13a0b6020ed358e961 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 #: c831fa537f414a13a0b6020ed358e961 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 +#: b168fffcce71401eb693e9e18b66c905 msgid "Parameters" msgstr "" @@ -442,2658 +479,2777 @@ msgstr "" #: ../../../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/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions: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 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 #: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -#: 8f1345380b4e4342a090f0d5cd984869 -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 -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -#: b3d373e32ad24fc09945543962ca1e3a -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 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -#: ecd9fdca3e544014953f89c1e94c68f0 -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 -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -#: fb7a0c154ac948c6bb5db13e5ec9280f -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 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -#: 867ac713660943d69dbd98f2164d01b6 -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 -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: 5f353ab23d4e42d19a2257f9ead36a65 -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: 5f353ab23d4e42d19a2257f9ead36a65 -#: 5f353ab23d4e42d19a2257f9ead36a65 -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -#: cf2159859c6247b487751085c8eca2ab -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 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 -#: f40b4138a7f643cdad4ff34785e7a1a6 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 +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/components.py:docstring of discord.components.Component.is_v2:4 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji.is_usable: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:5 +#: ../../../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 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +#: 1fad9e42f9844177a0e09f9e5f6e4592 +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 +#: daa2f1c92cda42ddae693df8ce5553ce +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 +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: ecd9fdca3e544014953f89c1e94c68f0 +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: ecd9fdca3e544014953f89c1e94c68f0 +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: ecd9fdca3e544014953f89c1e94c68f0 +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: ecd9fdca3e544014953f89c1e94c68f0 +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: ecd9fdca3e544014953f89c1e94c68f0 +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: ecd9fdca3e544014953f89c1e94c68f0 +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +#: 57f07e810e7a4586855dc28481b0158a +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 +#: fd507c401cdc4f5ea3a0dc7c779df1d2 +#: fd507c401cdc4f5ea3a0dc7c779df1d2 +#: fd507c401cdc4f5ea3a0dc7c779df1d2 +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/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions: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 +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: fb7a0c154ac948c6bb5db13e5ec9280f +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +#: 05260df1bd954c5caa25ff09f602f59d +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 +#: 9adf62b3d3dd496d8296e2f28fb3db26 +#: 9adf62b3d3dd496d8296e2f28fb3db26 +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.MediaChannel.edit: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.AppEmoji.delete:1 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji.edit:1 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.delete:1 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.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.forward_to: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 +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: 867ac713660943d69dbd98f2164d01b6 +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: 867ac713660943d69dbd98f2164d01b6 +#: 867ac713660943d69dbd98f2164d01b6 +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: 867ac713660943d69dbd98f2164d01b6 +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: 867ac713660943d69dbd98f2164d01b6 +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: 867ac713660943d69dbd98f2164d01b6 +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: 867ac713660943d69dbd98f2164d01b6 +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: 867ac713660943d69dbd98f2164d01b6 +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: 867ac713660943d69dbd98f2164d01b6 +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: 867ac713660943d69dbd98f2164d01b6 +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +#: e9daf36896ce457cbddfeb00139760dd +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 +#: 4dcd15b67bf147479ba86c1113f22610 +#: 4dcd15b67bf147479ba86c1113f22610 +#: 4dcd15b67bf147479ba86c1113f22610 +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 +#: 65febeca148b4be9994734d258af10f6 +#: 65febeca148b4be9994734d258af10f6 +#: 65febeca148b4be9994734d258af10f6 +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 +#: d3b229e6d8534eceb97a2d8228c54f0f +#: d3b229e6d8534eceb97a2d8228c54f0f +#: d3b229e6d8534eceb97a2d8228c54f0f +#: d3b229e6d8534eceb97a2d8228c54f0f +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 +#: 2d8757c0cd4949059cba01c2a5b8f8f6 +#: 2d8757c0cd4949059cba01c2a5b8f8f6 +#: 2d8757c0cd4949059cba01c2a5b8f8f6 +#: 2d8757c0cd4949059cba01c2a5b8f8f6 +#: 2d8757c0cd4949059cba01c2a5b8f8f6 +#: 2d8757c0cd4949059cba01c2a5b8f8f6 +#: 2d8757c0cd4949059cba01c2a5b8f8f6 +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 +#: a1e890fa41674e048ecbd57d80238a69 +#: a1e890fa41674e048ecbd57d80238a69 +#: a1e890fa41674e048ecbd57d80238a69 +#: a1e890fa41674e048ecbd57d80238a69 +#: a1e890fa41674e048ecbd57d80238a69 +#: a1e890fa41674e048ecbd57d80238a69 +#: a1e890fa41674e048ecbd57d80238a69 +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 +#: 4401ecb89712474fb7bfe8e694cbfee2 +#: 4401ecb89712474fb7bfe8e694cbfee2 +#: 4401ecb89712474fb7bfe8e694cbfee2 +#: 4401ecb89712474fb7bfe8e694cbfee2 +#: 4401ecb89712474fb7bfe8e694cbfee2 +#: 4401ecb89712474fb7bfe8e694cbfee2 +#: 4401ecb89712474fb7bfe8e694cbfee2 +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 +#: 4cbc6c1c6cba4159a0d4a5b6c0d718b8 +#: 4cbc6c1c6cba4159a0d4a5b6c0d718b8 +#: 4cbc6c1c6cba4159a0d4a5b6c0d718b8 +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 +#: 83de373e758a4e4681957b8ec406b431 +#: 83de373e758a4e4681957b8ec406b431 +#: 83de373e758a4e4681957b8ec406b431 +#: 83de373e758a4e4681957b8ec406b431 +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 +#: 046ad38efb79459fbf2a3ecd8b279567 +#: 046ad38efb79459fbf2a3ecd8b279567 +#: 046ad38efb79459fbf2a3ecd8b279567 +#: 046ad38efb79459fbf2a3ecd8b279567 +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 +#: aede6c3b17ae4ee08ab6dafed6701d9a +#: aede6c3b17ae4ee08ab6dafed6701d9a +#: aede6c3b17ae4ee08ab6dafed6701d9a +#: aede6c3b17ae4ee08ab6dafed6701d9a +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.MediaChannel:39 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel:78 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel:94 +#: ../../../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.Component:31 +#: ../../../discord/components.py:docstring of discord.components.FileComponent:29 +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:40 +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:47 +#: ../../../discord/emoji.py:docstring of discord.asset.AssetMixin.save:16 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:41 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:39 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji: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:30 +#: ../../../discord/message.py:docstring of discord.message.Attachment:36 +#: ../../../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:16 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:22 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:28 +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:9 +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:21 +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:11 +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:17 +#: ../../../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 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 42faf5a34414420fa7c8b306f914946c +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 42faf5a34414420fa7c8b306f914946c +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 42faf5a34414420fa7c8b306f914946c +#: 940c35d806714f3490c1706f2b5e9387 +#: 42faf5a34414420fa7c8b306f914946c +#: 42faf5a34414420fa7c8b306f914946c +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: cf2159859c6247b487751085c8eca2ab +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: cf2159859c6247b487751085c8eca2ab +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +#: 940c35d806714f3490c1706f2b5e9387 +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 +#: 66c0095a60a34c59a3390d2c9df00d73 +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.MediaChannel: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.Container:0 +#: ../../../discord/components.py:docstring of discord.components.FileComponent:0 +#: ../../../discord/components.py:docstring of discord.components.MediaGallery:0 +#: ../../../discord/components.py:docstring of discord.components.Section:0 +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:0 +#: ../../../discord/components.py:docstring of discord.components.Separator:0 +#: ../../../discord/components.py:docstring of discord.components.TextDisplay:0 +#: ../../../discord/components.py:docstring of discord.components.Thumbnail:0 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:0 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji: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.Subscription.user:0 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:0 +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU:0 +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription: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 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 @@ -3103,10 +3259,101 @@ msgstr "" #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 #: f40b4138a7f643cdad4ff34785e7a1a6 #: f40b4138a7f643cdad4ff34785e7a1a6 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 +#: 09eec61105ed4161b45e3ffdafd48bb1 msgid "type" msgstr "" @@ -3114,13 +3361,19 @@ msgstr "" #: ../../../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.MediaChannel:88 #: ../../../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/components.py:docstring of discord.components.Button:34 +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:69 +#: ../../../discord/components.py:docstring of discord.components.Separator:17 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:47 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:53 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:59 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:71 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:45 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:51 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:57 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji: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 @@ -3141,12 +3394,12 @@ msgstr "" #: ../../../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.Attachment:92 #: ../../../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/monetization.py:docstring of discord.monetization.Entitlement:46 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:72 #: ../../../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 @@ -3159,8 +3412,8 @@ msgstr "" #: ../../../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/role.py:docstring of discord.role.Role:83 +#: ../../../discord/role.py:docstring of discord.role.Role:89 #: ../../../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 @@ -3178,78 +3431,84 @@ msgstr "" #: ../../../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 +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 91ee58c33d2848ed8446bec74e5c8c94 +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 91ee58c33d2848ed8446bec74e5c8c94 +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 91ee58c33d2848ed8446bec74e5c8c94 +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 91ee58c33d2848ed8446bec74e5c8c94 +#: 91ee58c33d2848ed8446bec74e5c8c94 +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 91ee58c33d2848ed8446bec74e5c8c94 +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 91ee58c33d2848ed8446bec74e5c8c94 +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 91ee58c33d2848ed8446bec74e5c8c94 #: 91ee58c33d2848ed8446bec74e5c8c94 -#: 975fd0fa469044a8a9710bc449dee9bc -#: 6afc41742da04070adb35652a57c9da3 -#: 7e4e194346944a07bc961f3e35ff72bd -#: 3033e6f13ed54783b7677f34108bf609 -#: c553482c64d74d31a199dacf7d704993 -#: 60abce50c46249439a7420028aa5b862 -#: 12dadc55d4ba4391961b514f8a8f42cb -#: 4003d244e62a42b7ab7815a5cfe25417 -#: ae2156faa6f64461abb53909ccabe94a -#: 5fa3865947e547d3861918f336602cc1 -#: 789166acd786435a96c38745c7816111 -#: 105352a161e5411ba6f61e2fc15386f2 -#: 94f78f94eef14c5eab8e517a73ffd096 -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: c0f57792bcc94fe6a59671a5e2fb01b3 -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: c0f57792bcc94fe6a59671a5e2fb01b3 -#: c0f57792bcc94fe6a59671a5e2fb01b3 -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: c0f57792bcc94fe6a59671a5e2fb01b3 -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: c0f57792bcc94fe6a59671a5e2fb01b3 -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: c0f57792bcc94fe6a59671a5e2fb01b3 -#: c0f57792bcc94fe6a59671a5e2fb01b3 -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de -#: e0e606cdfb3344ea9a2910bb9d83e6de +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e +#: 55766eb1c16d48b9a0c2abbf506e9b9e msgid ":class:`bool`" msgstr "" @@ -3306,12 +3565,12 @@ msgstr "" #: ../../../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 +#: bd59fe44ce914d0285c9bd326f4f62ad +#: bd59fe44ce914d0285c9bd326f4f62ad +#: bd59fe44ce914d0285c9bd326f4f62ad +#: bd59fe44ce914d0285c9bd326f4f62ad +#: bd59fe44ce914d0285c9bd326f4f62ad +#: bd59fe44ce914d0285c9bd326f4f62ad msgid "Optional[:class:`datetime.datetime`]" msgstr "" @@ -3380,14 +3639,14 @@ msgstr "" #: ../../../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 +#: ee064c6766394f2fa4a28f0119527874 +#: ee064c6766394f2fa4a28f0119527874 +#: ee064c6766394f2fa4a28f0119527874 +#: ee064c6766394f2fa4a28f0119527874 +#: ee064c6766394f2fa4a28f0119527874 +#: ee064c6766394f2fa4a28f0119527874 +#: ee064c6766394f2fa4a28f0119527874 +#: ee064c6766394f2fa4a28f0119527874 msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." msgstr "" @@ -3396,14 +3655,14 @@ msgstr "" #: ../../../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 +#: 14d2bfd03a6e469d8ee65a8d101afb5f +#: 14d2bfd03a6e469d8ee65a8d101afb5f +#: 14d2bfd03a6e469d8ee65a8d101afb5f +#: 14d2bfd03a6e469d8ee65a8d101afb5f +#: 14d2bfd03a6e469d8ee65a8d101afb5f +#: 14d2bfd03a6e469d8ee65a8d101afb5f +#: 14d2bfd03a6e469d8ee65a8d101afb5f +#: 14d2bfd03a6e469d8ee65a8d101afb5f msgid "Indicates whether you have the permissions to send the object(s)." msgstr "" @@ -3412,14 +3671,14 @@ msgstr "" #: ../../../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 +#: 0384c1134c80472eac35ba53c22d90ff +#: 0384c1134c80472eac35ba53c22d90ff +#: 0384c1134c80472eac35ba53c22d90ff +#: 0384c1134c80472eac35ba53c22d90ff +#: 0384c1134c80472eac35ba53c22d90ff +#: 0384c1134c80472eac35ba53c22d90ff +#: 0384c1134c80472eac35ba53c22d90ff +#: 0384c1134c80472eac35ba53c22d90ff msgid "An invalid type has been passed." msgstr "" @@ -3428,14 +3687,14 @@ msgstr "" #: ../../../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 +#: 0dec3dbb162842d78a61e2d1f4a0da1d +#: 0dec3dbb162842d78a61e2d1f4a0da1d +#: 0dec3dbb162842d78a61e2d1f4a0da1d +#: 0dec3dbb162842d78a61e2d1f4a0da1d +#: 0dec3dbb162842d78a61e2d1f4a0da1d +#: 0dec3dbb162842d78a61e2d1f4a0da1d +#: 0dec3dbb162842d78a61e2d1f4a0da1d +#: 0dec3dbb162842d78a61e2d1f4a0da1d msgid "Retrieves a single :class:`~discord.Message` from the destination." msgstr "" @@ -3444,14 +3703,14 @@ msgstr "" #: ../../../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 +#: 4ae78ba5a69f45d4a4ae83d62b4802f3 +#: 4ae78ba5a69f45d4a4ae83d62b4802f3 +#: 4ae78ba5a69f45d4a4ae83d62b4802f3 +#: 4ae78ba5a69f45d4a4ae83d62b4802f3 +#: 4ae78ba5a69f45d4a4ae83d62b4802f3 +#: 4ae78ba5a69f45d4a4ae83d62b4802f3 +#: 4ae78ba5a69f45d4a4ae83d62b4802f3 +#: 4ae78ba5a69f45d4a4ae83d62b4802f3 msgid "The message ID to look for." msgstr "" @@ -3460,14 +3719,14 @@ msgstr "" #: ../../../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 +#: c2f7f6b8b80e4041818f55005ce8b67a +#: c2f7f6b8b80e4041818f55005ce8b67a +#: c2f7f6b8b80e4041818f55005ce8b67a +#: c2f7f6b8b80e4041818f55005ce8b67a +#: c2f7f6b8b80e4041818f55005ce8b67a +#: c2f7f6b8b80e4041818f55005ce8b67a +#: c2f7f6b8b80e4041818f55005ce8b67a +#: c2f7f6b8b80e4041818f55005ce8b67a msgid "The message asked for." msgstr "" @@ -3480,23 +3739,23 @@ msgstr "" #: ../../../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 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 +#: 0e44b08a661a4e4cb8977253c1a1fce1 msgid ":class:`~discord.Message`" msgstr "" @@ -3505,14 +3764,14 @@ msgstr "" #: ../../../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 +#: 9ae4e78f4cbb4eab83ecc6f4fabaf8cc +#: 9ae4e78f4cbb4eab83ecc6f4fabaf8cc +#: 9ae4e78f4cbb4eab83ecc6f4fabaf8cc +#: 9ae4e78f4cbb4eab83ecc6f4fabaf8cc +#: 9ae4e78f4cbb4eab83ecc6f4fabaf8cc +#: 9ae4e78f4cbb4eab83ecc6f4fabaf8cc +#: 9ae4e78f4cbb4eab83ecc6f4fabaf8cc +#: 9ae4e78f4cbb4eab83ecc6f4fabaf8cc msgid "The specified message was not found." msgstr "" @@ -3521,14 +3780,14 @@ msgstr "" #: ../../../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 +#: 1c4b5de6d0084edfb0c36ddc586cd125 +#: 1c4b5de6d0084edfb0c36ddc586cd125 +#: 1c4b5de6d0084edfb0c36ddc586cd125 +#: 1c4b5de6d0084edfb0c36ddc586cd125 +#: 1c4b5de6d0084edfb0c36ddc586cd125 +#: 1c4b5de6d0084edfb0c36ddc586cd125 +#: 1c4b5de6d0084edfb0c36ddc586cd125 +#: 1c4b5de6d0084edfb0c36ddc586cd125 msgid "You do not have the permissions required to get a message." msgstr "" @@ -3537,112 +3796,112 @@ msgstr "" #: ../../../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 +#: 1e046de530f5431fa8a01caec3544a8a +#: 1e046de530f5431fa8a01caec3544a8a +#: 1e046de530f5431fa8a01caec3544a8a +#: 1e046de530f5431fa8a01caec3544a8a +#: 1e046de530f5431fa8a01caec3544a8a +#: 1e046de530f5431fa8a01caec3544a8a +#: 1e046de530f5431fa8a01caec3544a8a +#: 1e046de530f5431fa8a01caec3544a8a 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 +#: a2b5b9f3f9864954a6c95353f0840647 +#: a2b5b9f3f9864954a6c95353f0840647 +#: a2b5b9f3f9864954a6c95353f0840647 +#: a2b5b9f3f9864954a6c95353f0840647 +#: a2b5b9f3f9864954a6c95353f0840647 +#: a2b5b9f3f9864954a6c95353f0840647 +#: a2b5b9f3f9864954a6c95353f0840647 +#: a2b5b9f3f9864954a6c95353f0840647 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 +#: 1e013f815e324252ba499008afce7129 +#: 1e013f815e324252ba499008afce7129 +#: 1e013f815e324252ba499008afce7129 +#: 1e013f815e324252ba499008afce7129 +#: 1e013f815e324252ba499008afce7129 +#: 1e013f815e324252ba499008afce7129 +#: 1e013f815e324252ba499008afce7129 +#: 1e013f815e324252ba499008afce7129 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 +#: 62c477d54eab4eb5b3303b8b364c89c4 +#: 62c477d54eab4eb5b3303b8b364c89c4 +#: 62c477d54eab4eb5b3303b8b364c89c4 +#: 62c477d54eab4eb5b3303b8b364c89c4 +#: 62c477d54eab4eb5b3303b8b364c89c4 +#: 62c477d54eab4eb5b3303b8b364c89c4 +#: 62c477d54eab4eb5b3303b8b364c89c4 +#: 62c477d54eab4eb5b3303b8b364c89c4 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 +#: ad959063203140e2a8fec35d19f3b2c1 +#: ad959063203140e2a8fec35d19f3b2c1 +#: ad959063203140e2a8fec35d19f3b2c1 +#: ad959063203140e2a8fec35d19f3b2c1 +#: ad959063203140e2a8fec35d19f3b2c1 +#: ad959063203140e2a8fec35d19f3b2c1 +#: ad959063203140e2a8fec35d19f3b2c1 +#: ad959063203140e2a8fec35d19f3b2c1 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 +#: aacb6953371648ccb5e72a11bdaabbe0 +#: aacb6953371648ccb5e72a11bdaabbe0 +#: aacb6953371648ccb5e72a11bdaabbe0 +#: aacb6953371648ccb5e72a11bdaabbe0 +#: aacb6953371648ccb5e72a11bdaabbe0 +#: aacb6953371648ccb5e72a11bdaabbe0 +#: aacb6953371648ccb5e72a11bdaabbe0 +#: aacb6953371648ccb5e72a11bdaabbe0 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 +#: da844572f0ee4e3db1ab88bc0ae53ace +#: da844572f0ee4e3db1ab88bc0ae53ace +#: da844572f0ee4e3db1ab88bc0ae53ace +#: da844572f0ee4e3db1ab88bc0ae53ace +#: da844572f0ee4e3db1ab88bc0ae53ace +#: da844572f0ee4e3db1ab88bc0ae53ace +#: da844572f0ee4e3db1ab88bc0ae53ace +#: da844572f0ee4e3db1ab88bc0ae53ace 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 +#: 2158e52532114f00b4b65cd0423df2af +#: 2158e52532114f00b4b65cd0423df2af +#: 2158e52532114f00b4b65cd0423df2af +#: 2158e52532114f00b4b65cd0423df2af +#: 2158e52532114f00b4b65cd0423df2af +#: 2158e52532114f00b4b65cd0423df2af +#: 2158e52532114f00b4b65cd0423df2af +#: 2158e52532114f00b4b65cd0423df2af msgid "If set to ``True``, return messages in oldest->newest order. Defaults to ``True`` if ``after`` is specified, otherwise ``False``." msgstr "" @@ -3654,84 +3913,87 @@ msgstr "" #: ../../../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/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions: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 -#: 978ec7ef1794400e84a2dba4651a187b -#: 978ec7ef1794400e84a2dba4651a187b -#: 978ec7ef1794400e84a2dba4651a187b -#: 978ec7ef1794400e84a2dba4651a187b -#: 978ec7ef1794400e84a2dba4651a187b -#: 978ec7ef1794400e84a2dba4651a187b -#: 978ec7ef1794400e84a2dba4651a187b -#: 978ec7ef1794400e84a2dba4651a187b -#: 978ec7ef1794400e84a2dba4651a187b -#: 978ec7ef1794400e84a2dba4651a187b -#: 978ec7ef1794400e84a2dba4651a187b -#: 978ec7ef1794400e84a2dba4651a187b -#: 978ec7ef1794400e84a2dba4651a187b -#: 978ec7ef1794400e84a2dba4651a187b +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 #: 978ec7ef1794400e84a2dba4651a187b +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 +#: a56a4e26f11646db9973fb9a82041c86 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 +#: a02393114810463a8e9d4c9c7191362e +#: a02393114810463a8e9d4c9c7191362e +#: a02393114810463a8e9d4c9c7191362e +#: a02393114810463a8e9d4c9c7191362e +#: a02393114810463a8e9d4c9c7191362e +#: a02393114810463a8e9d4c9c7191362e +#: a02393114810463a8e9d4c9c7191362e +#: a02393114810463a8e9d4c9c7191362e 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 +#: aabc54e6131b4d4a81f580c6c926badb +#: aabc54e6131b4d4a81f580c6c926badb +#: aabc54e6131b4d4a81f580c6c926badb +#: aabc54e6131b4d4a81f580c6c926badb +#: aabc54e6131b4d4a81f580c6c926badb +#: aabc54e6131b4d4a81f580c6c926badb +#: aabc54e6131b4d4a81f580c6c926badb +#: aabc54e6131b4d4a81f580c6c926badb 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 +#: f2f1efc2d20a4530b8075de51578d2a5 +#: f2f1efc2d20a4530b8075de51578d2a5 +#: f2f1efc2d20a4530b8075de51578d2a5 +#: f2f1efc2d20a4530b8075de51578d2a5 +#: f2f1efc2d20a4530b8075de51578d2a5 +#: f2f1efc2d20a4530b8075de51578d2a5 +#: f2f1efc2d20a4530b8075de51578d2a5 +#: f2f1efc2d20a4530b8075de51578d2a5 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 +#: 71713b3b7da14660975590d847fa9ea1 +#: 71713b3b7da14660975590d847fa9ea1 +#: 71713b3b7da14660975590d847fa9ea1 +#: 71713b3b7da14660975590d847fa9ea1 +#: 71713b3b7da14660975590d847fa9ea1 +#: 71713b3b7da14660975590d847fa9ea1 +#: 71713b3b7da14660975590d847fa9ea1 +#: 71713b3b7da14660975590d847fa9ea1 msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" msgstr "" @@ -3740,41 +4002,45 @@ msgstr "" #: ../../../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 -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a -#: 25bd697769214744832fa1612bc8518a +#: ../../../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/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions:28 +#: ../../../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 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 #: 25bd697769214744832fa1612bc8518a +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 +#: 966fbbaa61a846aa9b633dbfc1ee5c60 msgid "Examples" msgstr "" @@ -3782,21 +4048,23 @@ msgstr "" #: ../../../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/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions:29 #: ../../../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 -#: 745ca57186c14e1785a2e80ce870df80 -#: 745ca57186c14e1785a2e80ce870df80 -#: 745ca57186c14e1785a2e80ce870df80 -#: 745ca57186c14e1785a2e80ce870df80 -#: 745ca57186c14e1785a2e80ce870df80 -#: 745ca57186c14e1785a2e80ce870df80 -#: 745ca57186c14e1785a2e80ce870df80 -#: 745ca57186c14e1785a2e80ce870df80 -#: 745ca57186c14e1785a2e80ce870df80 -#: 745ca57186c14e1785a2e80ce870df80 +#: 51b8dfbb15bb43ef95c144c7a5d3f6ba +#: 51b8dfbb15bb43ef95c144c7a5d3f6ba +#: 51b8dfbb15bb43ef95c144c7a5d3f6ba +#: 51b8dfbb15bb43ef95c144c7a5d3f6ba +#: 51b8dfbb15bb43ef95c144c7a5d3f6ba +#: 51b8dfbb15bb43ef95c144c7a5d3f6ba +#: 51b8dfbb15bb43ef95c144c7a5d3f6ba +#: 51b8dfbb15bb43ef95c144c7a5d3f6ba +#: 51b8dfbb15bb43ef95c144c7a5d3f6ba +#: 51b8dfbb15bb43ef95c144c7a5d3f6ba +#: 51b8dfbb15bb43ef95c144c7a5d3f6ba +#: 51b8dfbb15bb43ef95c144c7a5d3f6ba +#: 51b8dfbb15bb43ef95c144c7a5d3f6ba msgid "Usage ::" msgstr "" @@ -3805,16 +4073,16 @@ msgstr "" #: ../../../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 -#: 976781fce2904a7ea929a7f179bad61a -#: 976781fce2904a7ea929a7f179bad61a -#: 976781fce2904a7ea929a7f179bad61a -#: 976781fce2904a7ea929a7f179bad61a -#: 976781fce2904a7ea929a7f179bad61a -#: 976781fce2904a7ea929a7f179bad61a -#: 976781fce2904a7ea929a7f179bad61a -#: 976781fce2904a7ea929a7f179bad61a +#: 154df22c3326437ebd9a4d0421852b9e +#: 154df22c3326437ebd9a4d0421852b9e +#: 154df22c3326437ebd9a4d0421852b9e +#: 154df22c3326437ebd9a4d0421852b9e +#: 154df22c3326437ebd9a4d0421852b9e +#: 154df22c3326437ebd9a4d0421852b9e +#: 154df22c3326437ebd9a4d0421852b9e +#: 154df22c3326437ebd9a4d0421852b9e +#: 154df22c3326437ebd9a4d0421852b9e +#: 154df22c3326437ebd9a4d0421852b9e msgid "Flattening into a list: ::" msgstr "" @@ -3824,17 +4092,17 @@ msgstr "" #: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:10 #: ../../../discord/member.py:docstring of discord.member.Member.edit:35 #: 4e0136f8359346d6ae9e6d3eb61aa0d7 -#: f55d483d8f7243539066e1a0a2e89189 -#: ace68b84a7ee43cbb3d166231f224751 -#: ace68b84a7ee43cbb3d166231f224751 -#: ace68b84a7ee43cbb3d166231f224751 -#: ace68b84a7ee43cbb3d166231f224751 -#: ace68b84a7ee43cbb3d166231f224751 -#: ace68b84a7ee43cbb3d166231f224751 -#: ace68b84a7ee43cbb3d166231f224751 -#: ace68b84a7ee43cbb3d166231f224751 -#: ace68b84a7ee43cbb3d166231f224751 -#: ace68b84a7ee43cbb3d166231f224751 +#: 4e0136f8359346d6ae9e6d3eb61aa0d7 +#: 4e0136f8359346d6ae9e6d3eb61aa0d7 +#: 4e0136f8359346d6ae9e6d3eb61aa0d7 +#: 4e0136f8359346d6ae9e6d3eb61aa0d7 +#: 4e0136f8359346d6ae9e6d3eb61aa0d7 +#: 4e0136f8359346d6ae9e6d3eb61aa0d7 +#: 4e0136f8359346d6ae9e6d3eb61aa0d7 +#: 4e0136f8359346d6ae9e6d3eb61aa0d7 +#: 4e0136f8359346d6ae9e6d3eb61aa0d7 +#: 4e0136f8359346d6ae9e6d3eb61aa0d7 +#: 4e0136f8359346d6ae9e6d3eb61aa0d7 msgid "All parameters are optional." msgstr "" @@ -3843,14 +4111,14 @@ msgstr "" #: ../../../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 +#: 4f0650134f1040c6b9ae6622883f8748 +#: 4f0650134f1040c6b9ae6622883f8748 +#: 4f0650134f1040c6b9ae6622883f8748 +#: 4f0650134f1040c6b9ae6622883f8748 +#: 4f0650134f1040c6b9ae6622883f8748 +#: 4f0650134f1040c6b9ae6622883f8748 +#: 4f0650134f1040c6b9ae6622883f8748 +#: 4f0650134f1040c6b9ae6622883f8748 msgid "Retrieves all messages that are currently pinned in the channel." msgstr "" @@ -3859,14 +4127,14 @@ msgstr "" #: ../../../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 +#: 5219c84db278497aafcba6d6e944b9fc +#: 5219c84db278497aafcba6d6e944b9fc +#: 5219c84db278497aafcba6d6e944b9fc +#: 5219c84db278497aafcba6d6e944b9fc +#: 5219c84db278497aafcba6d6e944b9fc +#: 5219c84db278497aafcba6d6e944b9fc +#: 5219c84db278497aafcba6d6e944b9fc +#: 5219c84db278497aafcba6d6e944b9fc 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 "" @@ -3875,14 +4143,14 @@ msgstr "" #: ../../../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 +#: 549042b4685847aba193e422e7789a14 +#: 549042b4685847aba193e422e7789a14 +#: 549042b4685847aba193e422e7789a14 +#: 549042b4685847aba193e422e7789a14 +#: 549042b4685847aba193e422e7789a14 +#: 549042b4685847aba193e422e7789a14 +#: 549042b4685847aba193e422e7789a14 +#: 549042b4685847aba193e422e7789a14 msgid "The messages that are currently pinned." msgstr "" @@ -3891,14 +4159,14 @@ msgstr "" #: ../../../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 +#: 875dee04a4ff4712a8b83bd629d6ad29 +#: 875dee04a4ff4712a8b83bd629d6ad29 +#: 875dee04a4ff4712a8b83bd629d6ad29 +#: 875dee04a4ff4712a8b83bd629d6ad29 +#: 875dee04a4ff4712a8b83bd629d6ad29 +#: 875dee04a4ff4712a8b83bd629d6ad29 +#: 875dee04a4ff4712a8b83bd629d6ad29 +#: 875dee04a4ff4712a8b83bd629d6ad29 msgid "List[:class:`~discord.Message`]" msgstr "" @@ -3907,14 +4175,14 @@ msgstr "" #: ../../../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 +#: 2bc50ccd657f46209917f5d9f4099650 +#: 2bc50ccd657f46209917f5d9f4099650 +#: 2bc50ccd657f46209917f5d9f4099650 +#: 2bc50ccd657f46209917f5d9f4099650 +#: 2bc50ccd657f46209917f5d9f4099650 +#: 2bc50ccd657f46209917f5d9f4099650 +#: 2bc50ccd657f46209917f5d9f4099650 +#: 2bc50ccd657f46209917f5d9f4099650 msgid "Retrieving the pinned messages failed." msgstr "" @@ -3923,14 +4191,14 @@ msgstr "" #: ../../../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 +#: 2a04455df66145088795dfb431c2b0e9 +#: 2a04455df66145088795dfb431c2b0e9 +#: 2a04455df66145088795dfb431c2b0e9 +#: 2a04455df66145088795dfb431c2b0e9 +#: 2a04455df66145088795dfb431c2b0e9 +#: 2a04455df66145088795dfb431c2b0e9 +#: 2a04455df66145088795dfb431c2b0e9 +#: 2a04455df66145088795dfb431c2b0e9 msgid "Sends a message to the destination with the content given." msgstr "" @@ -3939,14 +4207,14 @@ msgstr "" #: ../../../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 +#: d514a06a45d546b5af908df5d43dc2cb +#: d514a06a45d546b5af908df5d43dc2cb +#: d514a06a45d546b5af908df5d43dc2cb +#: d514a06a45d546b5af908df5d43dc2cb +#: d514a06a45d546b5af908df5d43dc2cb +#: d514a06a45d546b5af908df5d43dc2cb +#: d514a06a45d546b5af908df5d43dc2cb +#: d514a06a45d546b5af908df5d43dc2cb 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 "" @@ -3955,14 +4223,14 @@ msgstr "" #: ../../../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 +#: 70aab3326d8f44e7bacd069c736a0420 +#: 70aab3326d8f44e7bacd069c736a0420 +#: 70aab3326d8f44e7bacd069c736a0420 +#: 70aab3326d8f44e7bacd069c736a0420 +#: 70aab3326d8f44e7bacd069c736a0420 +#: 70aab3326d8f44e7bacd069c736a0420 +#: 70aab3326d8f44e7bacd069c736a0420 +#: 70aab3326d8f44e7bacd069c736a0420 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 "" @@ -3971,14 +4239,14 @@ msgstr "" #: ../../../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 +#: 5d8119f4a9344fd8bb519aebe2645bff +#: 5d8119f4a9344fd8bb519aebe2645bff +#: 5d8119f4a9344fd8bb519aebe2645bff +#: 5d8119f4a9344fd8bb519aebe2645bff +#: 5d8119f4a9344fd8bb519aebe2645bff +#: 5d8119f4a9344fd8bb519aebe2645bff +#: 5d8119f4a9344fd8bb519aebe2645bff +#: 5d8119f4a9344fd8bb519aebe2645bff 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 "" @@ -3989,16 +4257,17 @@ msgstr "" #: ../../../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 +#: db5a50cea2b24ff4bca646659c4d8cc6 +#: db5a50cea2b24ff4bca646659c4d8cc6 +#: db5a50cea2b24ff4bca646659c4d8cc6 +#: db5a50cea2b24ff4bca646659c4d8cc6 +#: db5a50cea2b24ff4bca646659c4d8cc6 +#: db5a50cea2b24ff4bca646659c4d8cc6 +#: db5a50cea2b24ff4bca646659c4d8cc6 +#: db5a50cea2b24ff4bca646659c4d8cc6 +#: db5a50cea2b24ff4bca646659c4d8cc6 +#: db5a50cea2b24ff4bca646659c4d8cc6 +#: db5a50cea2b24ff4bca646659c4d8cc6 msgid "The content of the message to send." msgstr "" @@ -4008,15 +4277,15 @@ msgstr "" #: ../../../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 +#: 6af57bec404e422082a79e523a309932 +#: 6af57bec404e422082a79e523a309932 +#: 6af57bec404e422082a79e523a309932 +#: 6af57bec404e422082a79e523a309932 +#: 6af57bec404e422082a79e523a309932 +#: 6af57bec404e422082a79e523a309932 +#: 6af57bec404e422082a79e523a309932 +#: 6af57bec404e422082a79e523a309932 +#: 6af57bec404e422082a79e523a309932 msgid "Indicates if the message should be sent using text-to-speech." msgstr "" @@ -4026,15 +4295,16 @@ msgstr "" #: ../../../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 +#: 96484f4d35624bdd83b5e136d83bb9ad +#: 96484f4d35624bdd83b5e136d83bb9ad +#: 96484f4d35624bdd83b5e136d83bb9ad +#: 96484f4d35624bdd83b5e136d83bb9ad +#: 96484f4d35624bdd83b5e136d83bb9ad +#: 96484f4d35624bdd83b5e136d83bb9ad +#: 96484f4d35624bdd83b5e136d83bb9ad +#: 96484f4d35624bdd83b5e136d83bb9ad +#: 96484f4d35624bdd83b5e136d83bb9ad +#: 96484f4d35624bdd83b5e136d83bb9ad msgid "The rich embed for the content." msgstr "" @@ -4045,16 +4315,17 @@ msgstr "" #: ../../../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 +#: 06f3de9c7238498a8af9d93d7325365a +#: 06f3de9c7238498a8af9d93d7325365a +#: 06f3de9c7238498a8af9d93d7325365a +#: 06f3de9c7238498a8af9d93d7325365a +#: 06f3de9c7238498a8af9d93d7325365a +#: 06f3de9c7238498a8af9d93d7325365a +#: 06f3de9c7238498a8af9d93d7325365a +#: 06f3de9c7238498a8af9d93d7325365a +#: 06f3de9c7238498a8af9d93d7325365a +#: 06f3de9c7238498a8af9d93d7325365a +#: 06f3de9c7238498a8af9d93d7325365a msgid "The file to upload." msgstr "" @@ -4065,16 +4336,17 @@ msgstr "" #: ../../../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 +#: 9b87132b9bb447f8af98bd5da3e604f8 +#: 9b87132b9bb447f8af98bd5da3e604f8 +#: 9b87132b9bb447f8af98bd5da3e604f8 +#: 9b87132b9bb447f8af98bd5da3e604f8 +#: 9b87132b9bb447f8af98bd5da3e604f8 +#: 9b87132b9bb447f8af98bd5da3e604f8 +#: 9b87132b9bb447f8af98bd5da3e604f8 +#: 9b87132b9bb447f8af98bd5da3e604f8 +#: 9b87132b9bb447f8af98bd5da3e604f8 +#: 9b87132b9bb447f8af98bd5da3e604f8 +#: 9b87132b9bb447f8af98bd5da3e604f8 msgid "A list of files to upload. Must be a maximum of 10." msgstr "" @@ -4084,15 +4356,16 @@ msgstr "" #: ../../../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 +#: 55c2f9866dc74139b0feab43272e038d +#: 55c2f9866dc74139b0feab43272e038d +#: 55c2f9866dc74139b0feab43272e038d +#: 55c2f9866dc74139b0feab43272e038d +#: 55c2f9866dc74139b0feab43272e038d +#: 55c2f9866dc74139b0feab43272e038d +#: 55c2f9866dc74139b0feab43272e038d +#: 55c2f9866dc74139b0feab43272e038d +#: 55c2f9866dc74139b0feab43272e038d +#: 55c2f9866dc74139b0feab43272e038d 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 "" @@ -4101,14 +4374,14 @@ msgstr "" #: ../../../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 +#: 0682ef24bd354948b962042a67084324 +#: 0682ef24bd354948b962042a67084324 +#: 0682ef24bd354948b962042a67084324 +#: 0682ef24bd354948b962042a67084324 +#: 0682ef24bd354948b962042a67084324 +#: 0682ef24bd354948b962042a67084324 +#: 0682ef24bd354948b962042a67084324 +#: 0682ef24bd354948b962042a67084324 msgid "Whether :attr:`nonce` is enforced to be validated. .. versionadded:: 2.5" msgstr "" @@ -4117,14 +4390,14 @@ msgstr "" #: ../../../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 +#: ab8ae4adffea4ea1ad666e6619212c31 +#: ab8ae4adffea4ea1ad666e6619212c31 +#: ab8ae4adffea4ea1ad666e6619212c31 +#: ab8ae4adffea4ea1ad666e6619212c31 +#: ab8ae4adffea4ea1ad666e6619212c31 +#: ab8ae4adffea4ea1ad666e6619212c31 +#: ab8ae4adffea4ea1ad666e6619212c31 +#: ab8ae4adffea4ea1ad666e6619212c31 msgid "Whether :attr:`nonce` is enforced to be validated." msgstr "" @@ -4133,14 +4406,14 @@ msgstr "" #: ../../../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 +#: 75b7f2ddb4c744648d05f3e322561b4c +#: 75b7f2ddb4c744648d05f3e322561b4c +#: 75b7f2ddb4c744648d05f3e322561b4c +#: 75b7f2ddb4c744648d05f3e322561b4c +#: 75b7f2ddb4c744648d05f3e322561b4c +#: 75b7f2ddb4c744648d05f3e322561b4c +#: 75b7f2ddb4c744648d05f3e322561b4c +#: 75b7f2ddb4c744648d05f3e322561b4c 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 "" @@ -4150,15 +4423,15 @@ msgstr "" #: ../../../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 +#: a046f5017f4b49e8b01e1a6448f58d41 +#: a046f5017f4b49e8b01e1a6448f58d41 +#: a046f5017f4b49e8b01e1a6448f58d41 +#: a046f5017f4b49e8b01e1a6448f58d41 +#: a046f5017f4b49e8b01e1a6448f58d41 +#: a046f5017f4b49e8b01e1a6448f58d41 +#: a046f5017f4b49e8b01e1a6448f58d41 +#: a046f5017f4b49e8b01e1a6448f58d41 +#: a046f5017f4b49e8b01e1a6448f58d41 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 "" @@ -4170,17 +4443,18 @@ msgstr "" #: ../../../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 +#: 76e68b02a3534b59bb633ccfab46cc5b +#: 76e68b02a3534b59bb633ccfab46cc5b +#: 76e68b02a3534b59bb633ccfab46cc5b +#: 76e68b02a3534b59bb633ccfab46cc5b +#: 76e68b02a3534b59bb633ccfab46cc5b +#: 76e68b02a3534b59bb633ccfab46cc5b +#: 76e68b02a3534b59bb633ccfab46cc5b +#: 76e68b02a3534b59bb633ccfab46cc5b +#: 76e68b02a3534b59bb633ccfab46cc5b +#: 76e68b02a3534b59bb633ccfab46cc5b +#: 76e68b02a3534b59bb633ccfab46cc5b +#: 76e68b02a3534b59bb633ccfab46cc5b 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 "" @@ -4189,15 +4463,15 @@ msgstr "" #: ../../../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" +#: 2aa113aa350843c58a84928aff36e57e +#: 2aa113aa350843c58a84928aff36e57e +#: 2aa113aa350843c58a84928aff36e57e +#: 2aa113aa350843c58a84928aff36e57e +#: 2aa113aa350843c58a84928aff36e57e +#: 2aa113aa350843c58a84928aff36e57e +#: 2aa113aa350843c58a84928aff36e57e +#: 2aa113aa350843c58a84928aff36e57e +msgid "A reference to the :class:`~discord.Message` being replied to or forwarded. This can be created using :meth:`~discord.Message.to_reference`. When replying, you can control whether 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 @@ -4205,15 +4479,15 @@ msgstr "" #: ../../../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``." +#: 6e42ff8967e144e3ae89f80e28a26b06 +#: 6e42ff8967e144e3ae89f80e28a26b06 +#: 6e42ff8967e144e3ae89f80e28a26b06 +#: 6e42ff8967e144e3ae89f80e28a26b06 +#: 6e42ff8967e144e3ae89f80e28a26b06 +#: 6e42ff8967e144e3ae89f80e28a26b06 +#: 6e42ff8967e144e3ae89f80e28a26b06 +#: 6e42ff8967e144e3ae89f80e28a26b06 +msgid "A reference to the :class:`~discord.Message` being replied to or forwarded. This can be created using :meth:`~discord.Message.to_reference`. When replying, you can control whether 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 @@ -4221,14 +4495,14 @@ msgstr "" #: ../../../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 +#: 27c40492605d46f4b6d1ec39f44617cb +#: 27c40492605d46f4b6d1ec39f44617cb +#: 27c40492605d46f4b6d1ec39f44617cb +#: 27c40492605d46f4b6d1ec39f44617cb +#: 27c40492605d46f4b6d1ec39f44617cb +#: 27c40492605d46f4b6d1ec39f44617cb +#: 27c40492605d46f4b6d1ec39f44617cb +#: 27c40492605d46f4b6d1ec39f44617cb msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``. .. versionadded:: 1.6" msgstr "" @@ -4237,14 +4511,14 @@ msgstr "" #: ../../../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 +#: aaeebba9d9a64174b83aa7be6aae9540 +#: aaeebba9d9a64174b83aa7be6aae9540 +#: aaeebba9d9a64174b83aa7be6aae9540 +#: aaeebba9d9a64174b83aa7be6aae9540 +#: aaeebba9d9a64174b83aa7be6aae9540 +#: aaeebba9d9a64174b83aa7be6aae9540 +#: aaeebba9d9a64174b83aa7be6aae9540 +#: aaeebba9d9a64174b83aa7be6aae9540 msgid "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` attribute of ``allowed_mentions``." msgstr "" @@ -4254,15 +4528,16 @@ msgstr "" #: ../../../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 +#: bd4855af588b4e1988b99aac83ede6de +#: bd4855af588b4e1988b99aac83ede6de +#: bd4855af588b4e1988b99aac83ede6de +#: bd4855af588b4e1988b99aac83ede6de +#: bd4855af588b4e1988b99aac83ede6de +#: bd4855af588b4e1988b99aac83ede6de +#: bd4855af588b4e1988b99aac83ede6de +#: bd4855af588b4e1988b99aac83ede6de +#: bd4855af588b4e1988b99aac83ede6de +#: bd4855af588b4e1988b99aac83ede6de msgid "A Discord UI View to add to the message." msgstr "" @@ -4271,14 +4546,14 @@ msgstr "" #: ../../../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 +#: ed29a8c13ec640fa92a87f37475ac04c +#: ed29a8c13ec640fa92a87f37475ac04c +#: ed29a8c13ec640fa92a87f37475ac04c +#: ed29a8c13ec640fa92a87f37475ac04c +#: ed29a8c13ec640fa92a87f37475ac04c +#: ed29a8c13ec640fa92a87f37475ac04c +#: ed29a8c13ec640fa92a87f37475ac04c +#: ed29a8c13ec640fa92a87f37475ac04c msgid "A list of embeds to upload. Must be a maximum of 10. .. versionadded:: 2.0" msgstr "" @@ -4288,15 +4563,16 @@ msgstr "" #: ../../../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 +#: f103ebfe04b44e86849a58ad2e1e0dfe +#: f103ebfe04b44e86849a58ad2e1e0dfe +#: f103ebfe04b44e86849a58ad2e1e0dfe +#: f103ebfe04b44e86849a58ad2e1e0dfe +#: f103ebfe04b44e86849a58ad2e1e0dfe +#: f103ebfe04b44e86849a58ad2e1e0dfe +#: f103ebfe04b44e86849a58ad2e1e0dfe +#: f103ebfe04b44e86849a58ad2e1e0dfe +#: f103ebfe04b44e86849a58ad2e1e0dfe +#: f103ebfe04b44e86849a58ad2e1e0dfe msgid "A list of embeds to upload. Must be a maximum of 10." msgstr "" @@ -4305,14 +4581,14 @@ msgstr "" #: ../../../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 +#: b1d45afa98b64e6fa0ac204136beeb14 +#: b1d45afa98b64e6fa0ac204136beeb14 +#: b1d45afa98b64e6fa0ac204136beeb14 +#: b1d45afa98b64e6fa0ac204136beeb14 +#: b1d45afa98b64e6fa0ac204136beeb14 +#: b1d45afa98b64e6fa0ac204136beeb14 +#: b1d45afa98b64e6fa0ac204136beeb14 +#: b1d45afa98b64e6fa0ac204136beeb14 msgid "A list of stickers to upload. Must be a maximum of 3. .. versionadded:: 2.0" msgstr "" @@ -4322,15 +4598,16 @@ msgstr "" #: ../../../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 +#: 50a1e07e506e41859f67cc406b77ce5b +#: 50a1e07e506e41859f67cc406b77ce5b +#: 50a1e07e506e41859f67cc406b77ce5b +#: 50a1e07e506e41859f67cc406b77ce5b +#: 50a1e07e506e41859f67cc406b77ce5b +#: 50a1e07e506e41859f67cc406b77ce5b +#: 50a1e07e506e41859f67cc406b77ce5b +#: 50a1e07e506e41859f67cc406b77ce5b +#: 50a1e07e506e41859f67cc406b77ce5b +#: 50a1e07e506e41859f67cc406b77ce5b msgid "A list of stickers to upload. Must be a maximum of 3." msgstr "" @@ -4342,17 +4619,17 @@ msgstr "" #: ../../../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 +#: e3b279330bc34955b55950c71551319c +#: e3b279330bc34955b55950c71551319c +#: e3b279330bc34955b55950c71551319c +#: e3b279330bc34955b55950c71551319c +#: e3b279330bc34955b55950c71551319c +#: e3b279330bc34955b55950c71551319c +#: e3b279330bc34955b55950c71551319c +#: e3b279330bc34955b55950c71551319c +#: e3b279330bc34955b55950c71551319c +#: e3b279330bc34955b55950c71551319c +#: e3b279330bc34955b55950c71551319c msgid "Whether to suppress embeds for the message." msgstr "" @@ -4361,14 +4638,14 @@ msgstr "" #: ../../../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 +#: 1bfc49ed975b4dd6803c578b5a1b9a11 +#: 1bfc49ed975b4dd6803c578b5a1b9a11 +#: 1bfc49ed975b4dd6803c578b5a1b9a11 +#: 1bfc49ed975b4dd6803c578b5a1b9a11 +#: 1bfc49ed975b4dd6803c578b5a1b9a11 +#: 1bfc49ed975b4dd6803c578b5a1b9a11 +#: 1bfc49ed975b4dd6803c578b5a1b9a11 +#: 1bfc49ed975b4dd6803c578b5a1b9a11 msgid "Whether to suppress push and desktop notifications for the message. .. versionadded:: 2.4" msgstr "" @@ -4377,14 +4654,14 @@ msgstr "" #: ../../../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 +#: 1f656b33b85f44f1b8d7ef979f3fb091 +#: 1f656b33b85f44f1b8d7ef979f3fb091 +#: 1f656b33b85f44f1b8d7ef979f3fb091 +#: 1f656b33b85f44f1b8d7ef979f3fb091 +#: 1f656b33b85f44f1b8d7ef979f3fb091 +#: 1f656b33b85f44f1b8d7ef979f3fb091 +#: 1f656b33b85f44f1b8d7ef979f3fb091 +#: 1f656b33b85f44f1b8d7ef979f3fb091 msgid "Whether to suppress push and desktop notifications for the message." msgstr "" @@ -4394,15 +4671,15 @@ msgstr "" #: ../../../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 +#: b141ceeb37ae4582a08741b71a2246bd +#: b141ceeb37ae4582a08741b71a2246bd +#: b141ceeb37ae4582a08741b71a2246bd +#: b141ceeb37ae4582a08741b71a2246bd +#: b141ceeb37ae4582a08741b71a2246bd +#: b141ceeb37ae4582a08741b71a2246bd +#: b141ceeb37ae4582a08741b71a2246bd +#: b141ceeb37ae4582a08741b71a2246bd +#: b141ceeb37ae4582a08741b71a2246bd msgid "The poll to send. .. versionadded:: 2.6" msgstr "" @@ -4412,33 +4689,35 @@ msgstr "" #: ../../../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 +#: d267e037031c49eb8e18cccf60f0c73f +#: d267e037031c49eb8e18cccf60f0c73f +#: d267e037031c49eb8e18cccf60f0c73f +#: d267e037031c49eb8e18cccf60f0c73f +#: d267e037031c49eb8e18cccf60f0c73f +#: d267e037031c49eb8e18cccf60f0c73f +#: d267e037031c49eb8e18cccf60f0c73f +#: d267e037031c49eb8e18cccf60f0c73f +#: d267e037031c49eb8e18cccf60f0c73f 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.forward_to:12 #: ../../../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 -#: 529869019b26467eabd9b22c54f8a337 -#: 529869019b26467eabd9b22c54f8a337 -#: 529869019b26467eabd9b22c54f8a337 -#: 529869019b26467eabd9b22c54f8a337 -#: 529869019b26467eabd9b22c54f8a337 -#: 529869019b26467eabd9b22c54f8a337 -#: 529869019b26467eabd9b22c54f8a337 +#: 3a4f436feb9b4de4a168d2d5a14fbb8d +#: 3a4f436feb9b4de4a168d2d5a14fbb8d +#: 3a4f436feb9b4de4a168d2d5a14fbb8d +#: 3a4f436feb9b4de4a168d2d5a14fbb8d +#: 3a4f436feb9b4de4a168d2d5a14fbb8d +#: 3a4f436feb9b4de4a168d2d5a14fbb8d +#: 3a4f436feb9b4de4a168d2d5a14fbb8d +#: 3a4f436feb9b4de4a168d2d5a14fbb8d +#: 3a4f436feb9b4de4a168d2d5a14fbb8d +#: 3a4f436feb9b4de4a168d2d5a14fbb8d msgid "The message that was sent." msgstr "" @@ -4446,39 +4725,43 @@ msgstr "" #: ../../../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.forward_to:15 #: ../../../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 -#: 88c91e15b9a246d7ba6c0a0c4a8cd3ca -#: 88c91e15b9a246d7ba6c0a0c4a8cd3ca -#: 88c91e15b9a246d7ba6c0a0c4a8cd3ca -#: 88c91e15b9a246d7ba6c0a0c4a8cd3ca -#: 88c91e15b9a246d7ba6c0a0c4a8cd3ca -#: 88c91e15b9a246d7ba6c0a0c4a8cd3ca -#: 88c91e15b9a246d7ba6c0a0c4a8cd3ca -#: 88c91e15b9a246d7ba6c0a0c4a8cd3ca -#: 88c91e15b9a246d7ba6c0a0c4a8cd3ca +#: e115079242b5446f93fb52a4a2929591 +#: e115079242b5446f93fb52a4a2929591 +#: e115079242b5446f93fb52a4a2929591 +#: e115079242b5446f93fb52a4a2929591 +#: e115079242b5446f93fb52a4a2929591 +#: e115079242b5446f93fb52a4a2929591 +#: e115079242b5446f93fb52a4a2929591 +#: e115079242b5446f93fb52a4a2929591 +#: e115079242b5446f93fb52a4a2929591 +#: e115079242b5446f93fb52a4a2929591 +#: e115079242b5446f93fb52a4a2929591 +#: e115079242b5446f93fb52a4a2929591 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.forward_to:16 #: ../../../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 -#: 11607a716ca841198785219e0ca22b26 -#: 11607a716ca841198785219e0ca22b26 -#: 11607a716ca841198785219e0ca22b26 -#: 11607a716ca841198785219e0ca22b26 -#: 11607a716ca841198785219e0ca22b26 -#: 11607a716ca841198785219e0ca22b26 -#: 11607a716ca841198785219e0ca22b26 +#: ae8d9e25950748d7b741fcc4d782933b +#: ae8d9e25950748d7b741fcc4d782933b +#: ae8d9e25950748d7b741fcc4d782933b +#: ae8d9e25950748d7b741fcc4d782933b +#: ae8d9e25950748d7b741fcc4d782933b +#: ae8d9e25950748d7b741fcc4d782933b +#: ae8d9e25950748d7b741fcc4d782933b +#: ae8d9e25950748d7b741fcc4d782933b +#: ae8d9e25950748d7b741fcc4d782933b +#: ae8d9e25950748d7b741fcc4d782933b msgid "You do not have the proper permissions to send the message." msgstr "" @@ -4487,14 +4770,14 @@ msgstr "" #: ../../../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 +#: 604cb5ce8f63403583ed85ead7908ba4 +#: 604cb5ce8f63403583ed85ead7908ba4 +#: 604cb5ce8f63403583ed85ead7908ba4 +#: 604cb5ce8f63403583ed85ead7908ba4 +#: 604cb5ce8f63403583ed85ead7908ba4 +#: 604cb5ce8f63403583ed85ead7908ba4 +#: 604cb5ce8f63403583ed85ead7908ba4 +#: 604cb5ce8f63403583ed85ead7908ba4 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 "" @@ -4503,14 +4786,14 @@ msgstr "" #: ../../../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 +#: 433a232ac737443cadd8e5f32c10aea4 +#: 433a232ac737443cadd8e5f32c10aea4 +#: 433a232ac737443cadd8e5f32c10aea4 +#: 433a232ac737443cadd8e5f32c10aea4 +#: 433a232ac737443cadd8e5f32c10aea4 +#: 433a232ac737443cadd8e5f32c10aea4 +#: 433a232ac737443cadd8e5f32c10aea4 +#: 433a232ac737443cadd8e5f32c10aea4 msgid "Triggers a *typing* indicator to the destination." msgstr "" @@ -4519,14 +4802,14 @@ msgstr "" #: ../../../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 +#: 10bacd45da084132bd3fef9ed8d250ca +#: 10bacd45da084132bd3fef9ed8d250ca +#: 10bacd45da084132bd3fef9ed8d250ca +#: 10bacd45da084132bd3fef9ed8d250ca +#: 10bacd45da084132bd3fef9ed8d250ca +#: 10bacd45da084132bd3fef9ed8d250ca +#: 10bacd45da084132bd3fef9ed8d250ca +#: 10bacd45da084132bd3fef9ed8d250ca msgid "*Typing* indicator will go away after 10 seconds, or after a message is sent." msgstr "" @@ -4539,7 +4822,8 @@ msgstr "" #: ../../../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/emoji.py:docstring of discord.emoji.AppEmoji.delete:11 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.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 @@ -4579,7 +4863,7 @@ msgstr "" #: ../../../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.consume:10 #: ../../../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 @@ -4591,120 +4875,124 @@ msgstr "" #: ../../../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 -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b -#: 9b4d5894f2f7434e8f7a6db8d32e038b +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 #: 9b4d5894f2f7434e8f7a6db8d32e038b +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 #: 9b4d5894f2f7434e8f7a6db8d32e038b +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 +#: 86bbc2437e30463eba135081562d8883 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 +#: 507759ccb3074f54855e48e5f971d798 +#: 507759ccb3074f54855e48e5f971d798 +#: 507759ccb3074f54855e48e5f971d798 +#: 507759ccb3074f54855e48e5f971d798 +#: 507759ccb3074f54855e48e5f971d798 +#: 507759ccb3074f54855e48e5f971d798 +#: 507759ccb3074f54855e48e5f971d798 +#: 507759ccb3074f54855e48e5f971d798 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 +#: 8a9ffc24518f4de293cc4b65774a51d8 +#: 8a9ffc24518f4de293cc4b65774a51d8 +#: 8a9ffc24518f4de293cc4b65774a51d8 +#: 8a9ffc24518f4de293cc4b65774a51d8 +#: 8a9ffc24518f4de293cc4b65774a51d8 +#: 8a9ffc24518f4de293cc4b65774a51d8 +#: 8a9ffc24518f4de293cc4b65774a51d8 +#: 8a9ffc24518f4de293cc4b65774a51d8 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 +#: f38b5698c9964d15a7dd0e1ff97642fd +#: f38b5698c9964d15a7dd0e1ff97642fd +#: f38b5698c9964d15a7dd0e1ff97642fd +#: f38b5698c9964d15a7dd0e1ff97642fd +#: f38b5698c9964d15a7dd0e1ff97642fd +#: f38b5698c9964d15a7dd0e1ff97642fd +#: f38b5698c9964d15a7dd0e1ff97642fd +#: f38b5698c9964d15a7dd0e1ff97642fd 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 "" @@ -4712,15 +5000,15 @@ msgstr "" #: ../../../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 +#: a9a905b97c2a48ebbf86176eaeee6469 +#: a9a905b97c2a48ebbf86176eaeee6469 +#: a9a905b97c2a48ebbf86176eaeee6469 +#: a9a905b97c2a48ebbf86176eaeee6469 +#: a9a905b97c2a48ebbf86176eaeee6469 +#: a9a905b97c2a48ebbf86176eaeee6469 +#: a9a905b97c2a48ebbf86176eaeee6469 +#: a9a905b97c2a48ebbf86176eaeee6469 +#: a9a905b97c2a48ebbf86176eaeee6469 msgid "Example Usage: ::" msgstr "" @@ -4731,12 +5019,13 @@ msgstr "" #: ../../../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 +#: 715e396d169947279c18eb2f259bd903 +#: 715e396d169947279c18eb2f259bd903 +#: 715e396d169947279c18eb2f259bd903 +#: 715e396d169947279c18eb2f259bd903 +#: 715e396d169947279c18eb2f259bd903 +#: 715e396d169947279c18eb2f259bd903 +#: 715e396d169947279c18eb2f259bd903 msgid "Creates a :class:`PartialMessage` from the message ID." msgstr "" @@ -4747,12 +5036,13 @@ msgstr "" #: ../../../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 +#: 67179488c7744e83bfcf423722415b13 +#: 67179488c7744e83bfcf423722415b13 +#: 67179488c7744e83bfcf423722415b13 +#: 67179488c7744e83bfcf423722415b13 +#: 67179488c7744e83bfcf423722415b13 +#: 67179488c7744e83bfcf423722415b13 +#: 67179488c7744e83bfcf423722415b13 msgid "This is useful if you want to work with a message and only have its ID without doing an unnecessary API call." msgstr "" @@ -4763,12 +5053,13 @@ msgstr "" #: ../../../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 +#: 843df377ee7c4084b88787836abc669e +#: 843df377ee7c4084b88787836abc669e +#: 843df377ee7c4084b88787836abc669e +#: 843df377ee7c4084b88787836abc669e +#: 843df377ee7c4084b88787836abc669e +#: 843df377ee7c4084b88787836abc669e +#: 843df377ee7c4084b88787836abc669e msgid "The message ID to create a partial message for." msgstr "" @@ -4779,12 +5070,13 @@ msgstr "" #: ../../../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 +#: 6f2827dab3174ceba9c167c94f8e8b01 +#: 6f2827dab3174ceba9c167c94f8e8b01 +#: 6f2827dab3174ceba9c167c94f8e8b01 +#: 6f2827dab3174ceba9c167c94f8e8b01 +#: 6f2827dab3174ceba9c167c94f8e8b01 +#: 6f2827dab3174ceba9c167c94f8e8b01 +#: 6f2827dab3174ceba9c167c94f8e8b01 msgid "The partial message." msgstr "" @@ -4795,12 +5087,13 @@ msgstr "" #: ../../../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 +#: 125d07572d5c4fa4bafff84e471385ed +#: 125d07572d5c4fa4bafff84e471385ed +#: 125d07572d5c4fa4bafff84e471385ed +#: 125d07572d5c4fa4bafff84e471385ed +#: 125d07572d5c4fa4bafff84e471385ed +#: 125d07572d5c4fa4bafff84e471385ed +#: 125d07572d5c4fa4bafff84e471385ed msgid ":class:`PartialMessage`" msgstr "" @@ -4817,35 +5110,35 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.user.ClientUser:7 #: ../../../discord/user.py:docstring of discord.user.User:7 #: 8528f633c43f4dfba2b972dc62785542 -#: bb87a910467b4f62bb1f394dd32e6575 +#: 8528f633c43f4dfba2b972dc62785542 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 +#: 85c8883463c64892b2d113641e57cfc0 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 +#: d143943b4ab946ab950eb1f7171cd587 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 +#: 1add853063144abda929fa08b980265c 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 +#: df577759b9bb40b891e952c0fc8d7856 msgid "The user's username." msgstr "" @@ -4853,10 +5146,14 @@ msgstr "" #: ../../../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.MediaChannel:27 #: ../../../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/components.py:docstring of discord.components.FileComponent:23 +#: ../../../discord/components.py:docstring of discord.components.TextDisplay:17 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:35 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji: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 @@ -4876,10 +5173,10 @@ msgstr "" #: ../../../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.Attachment:54 +#: ../../../discord/message.py:docstring of discord.message.Attachment:70 +#: ../../../discord/message.py:docstring of discord.message.Attachment:78 +#: ../../../discord/message.py:docstring of discord.message.Attachment:132 #: ../../../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 @@ -4925,94 +5222,98 @@ msgstr "" #: ../../../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 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 +#: b181e837ebe24f42aed74532d371c2d6 msgid ":class:`str`" msgstr "" #: ../../../discord/user.py:docstring of discord.user.ClientUser:29 #: ../../../discord/user.py:docstring of discord.user.User:29 #: 7d59402a16e54f61a97fdc966dfa756c -#: db789a3e10764d59b4328ce02560ff1f +#: 7d59402a16e54f61a97fdc966dfa756c 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 +#: 4fe49248ca6a4cf19931a37f31753734 msgid "The user's discriminator. This is given when the username has conflicts." msgstr "" @@ -5024,21 +5325,21 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.user.ClientUser:45 #: ../../../discord/user.py:docstring of discord.user.User:45 #: ced530d2472048d0a529cf1cf1c91d86 -#: f5d700742ed5457cbd1652439db6a54f +#: ced530d2472048d0a529cf1cf1c91d86 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 +#: 6f1c81c727e7490db10e1647ddc6868b 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 +#: e5ec8e04dabb4b16903f766258769106 msgid "Specifies if the user is a system user (i.e. represents Discord officially)." msgstr "" @@ -5054,64 +5355,68 @@ 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.MediaChannel:55 #: ../../../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 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 -#: f2fec74b5ab74ff4b1cab4cf1a188256 +#: ../../../discord/components.py:docstring of discord.components.Button:22 +#: ../../../discord/components.py:docstring of discord.components.Button:28 +#: ../../../discord/components.py:docstring of discord.components.Button:40 +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:27 +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:33 +#: ../../../discord/components.py:docstring of discord.components.Thumbnail:23 +#: ../../../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:63 +#: ../../../discord/message.py:docstring of discord.message.Attachment:84 +#: ../../../discord/message.py:docstring of discord.message.Attachment:100 +#: ../../../discord/message.py:docstring of discord.message.Attachment:116 +#: ../../../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:104 +#: ../../../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:145 +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab #: f2fec74b5ab74ff4b1cab4cf1a188256 +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab +#: dc1d35b84de04aa694c7b09e76c9f5ab msgid "Optional[:class:`str`]" msgstr "" @@ -5188,8 +5493,8 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.accent_color:1 #: ../../../discord/widget.py:docstring of discord.WidgetMember.accent_color:1 #: 6a0f951102c042f1967a6cc3fb063826 -#: 6ab96fcf4f29436e858954fbce53796b -#: 5d42054d5da84f4fbd5c7a1c1f650136 +#: 6a0f951102c042f1967a6cc3fb063826 +#: 6a0f951102c042f1967a6cc3fb063826 msgid "Returns the user's accent color, if applicable." msgstr "" @@ -5197,8 +5502,8 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.accent_color:3 #: ../../../discord/widget.py:docstring of discord.WidgetMember.accent_color:3 #: 98620bb2a1034ce2a564fe642e2417c6 -#: dbfa0f2b4d2542e2855ee6b9d62771be -#: 1938cce6bef44a45a48d698878cba477 +#: 98620bb2a1034ce2a564fe642e2417c6 +#: 98620bb2a1034ce2a564fe642e2417c6 msgid "There is an alias for this named :attr:`accent_colour`." msgstr "" @@ -5212,14 +5517,14 @@ msgstr "" #: ../../../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 +#: 5b13b7de5a524b0aaf9cc1784c3e14eb +#: 5b13b7de5a524b0aaf9cc1784c3e14eb +#: 5b13b7de5a524b0aaf9cc1784c3e14eb +#: 5b13b7de5a524b0aaf9cc1784c3e14eb +#: 5b13b7de5a524b0aaf9cc1784c3e14eb +#: 5b13b7de5a524b0aaf9cc1784c3e14eb +#: 5b13b7de5a524b0aaf9cc1784c3e14eb +#: 5b13b7de5a524b0aaf9cc1784c3e14eb msgid "This information is only available via :meth:`Client.fetch_user`." msgstr "" @@ -5227,8 +5532,8 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.accent_colour:1 #: ../../../discord/widget.py:docstring of discord.WidgetMember.accent_colour:1 #: c59947f63fe941bf84cf9f07cdfe2593 -#: fc1973771c3e423ab34b16ab10b22619 -#: 89e0f07e8f4b42c18a916c2fee3a14a4 +#: c59947f63fe941bf84cf9f07cdfe2593 +#: c59947f63fe941bf84cf9f07cdfe2593 msgid "Returns the user's accent colour, if applicable." msgstr "" @@ -5236,22 +5541,22 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.accent_colour:3 #: ../../../discord/widget.py:docstring of discord.WidgetMember.accent_colour:3 #: 04e4c72d96d64ecd921c375be4339ac8 -#: a090b4fb330747bd92cc59742138225c -#: 6b7360e798ae481c9c1808160c5bb033 +#: 04e4c72d96d64ecd921c375be4339ac8 +#: 04e4c72d96d64ecd921c375be4339ac8 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 +#: 501c4f6cbdbf42769fff2a35d112d118 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 +#: a26030435155406dac323efb28927fe9 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 "" @@ -5259,8 +5564,8 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.avatar_decoration:1 #: ../../../discord/widget.py:docstring of discord.WidgetMember.avatar_decoration:1 #: c03fc269038746299c68c4ff20bdcb43 -#: 4e65e66d65cf422f984e2dc18da32a72 -#: af7c151a269941859b5eb927d1052e49 +#: c03fc269038746299c68c4ff20bdcb43 +#: c03fc269038746299c68c4ff20bdcb43 msgid "Returns the user's avatar decoration, if available." msgstr "" @@ -5268,8 +5573,8 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.banner:1 #: ../../../discord/widget.py:docstring of discord.WidgetMember.banner:1 #: be1ed8a944cf42bebfcd8d4c6878cdcb -#: 9c4d8e995e424d76994802eb84438e29 -#: 55fa34cde7fb4b2c86ad88d8033f125e +#: be1ed8a944cf42bebfcd8d4c6878cdcb +#: be1ed8a944cf42bebfcd8d4c6878cdcb msgid "Returns the user's banner asset, if available." msgstr "" @@ -5277,8 +5582,8 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.color:1 #: ../../../discord/widget.py:docstring of discord.WidgetMember.color:1 #: 0d50a75dd5aa40f4a61fc98fd5b2e577 -#: ca3f1b9b592542c08357b2c0269e41dc -#: 10d4742b9b8f4d08b8afb6128d733ad0 +#: 0d50a75dd5aa40f4a61fc98fd5b2e577 +#: 0d50a75dd5aa40f4a61fc98fd5b2e577 msgid "A property that returns a color denoting the rendered color for the user. This always returns :meth:`Colour.default`." msgstr "" @@ -5287,9 +5592,9 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.color:4 #: ../../../discord/widget.py:docstring of discord.WidgetMember.color:4 #: d5b77dfdb6414af4bd41ae7661eca6e5 -#: 624b0e883b1d48839b0128ffaafa47e8 -#: 4a11e8cca87344baa2a0b654de88fa39 -#: 4a11e8cca87344baa2a0b654de88fa39 +#: d5b77dfdb6414af4bd41ae7661eca6e5 +#: d5b77dfdb6414af4bd41ae7661eca6e5 +#: d5b77dfdb6414af4bd41ae7661eca6e5 msgid "There is an alias for this named :attr:`colour`." msgstr "" @@ -5297,8 +5602,8 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.colour:1 #: ../../../discord/widget.py:docstring of discord.WidgetMember.colour:1 #: 9cec23c320d8469ea36f43da369ed102 -#: e69af87a44364eaf9b5b69d3f66864c7 -#: 2cf635b79df3473c90ac23f164a0427c +#: 9cec23c320d8469ea36f43da369ed102 +#: 9cec23c320d8469ea36f43da369ed102 msgid "A property that returns a colour denoting the rendered colour for the user. This always returns :meth:`Colour.default`." msgstr "" @@ -5307,9 +5612,9 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.colour:4 #: ../../../discord/widget.py:docstring of discord.WidgetMember.colour:4 #: e2124f67ec9f4267908985a925d278ed -#: 4e371cae01aa4766ab17cff8f76e1efe -#: 2d5f274e11504b99938c8ba60c312acb -#: 2d5f274e11504b99938c8ba60c312acb +#: e2124f67ec9f4267908985a925d278ed +#: e2124f67ec9f4267908985a925d278ed +#: e2124f67ec9f4267908985a925d278ed msgid "There is an alias for this named :attr:`color`." msgstr "" @@ -5317,8 +5622,8 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.created_at:1 #: ../../../discord/widget.py:docstring of discord.WidgetMember.created_at:1 #: b36550ba16734b24b4466af739ed85aa -#: 242c9dfc04694b489e2f7d80df59ded7 -#: 437b006882224342968fb4c368487fe6 +#: b36550ba16734b24b4466af739ed85aa +#: b36550ba16734b24b4466af739ed85aa msgid "Returns the user's creation time in UTC." msgstr "" @@ -5326,8 +5631,8 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.created_at:3 #: ../../../discord/widget.py:docstring of discord.WidgetMember.created_at:3 #: 8221e054b3a6494e9dcbb094d3c44517 -#: c13d536b60be48f5b31de078b4b756b6 -#: 50f3e4ffe5384958b891922303c4be12 +#: 8221e054b3a6494e9dcbb094d3c44517 +#: 8221e054b3a6494e9dcbb094d3c44517 msgid "This is when the user's Discord account was created." msgstr "" @@ -5335,8 +5640,8 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.default_avatar:1 #: ../../../discord/widget.py:docstring of discord.WidgetMember.default_avatar:1 #: 224eea430fc345f5baaceb1fd1705c4a -#: d4d393857fb64b7e914cd07558fd6602 -#: 038c62b751b84784986d6e29a5dc57c1 +#: 224eea430fc345f5baaceb1fd1705c4a +#: 224eea430fc345f5baaceb1fd1705c4a 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 "" @@ -5344,8 +5649,8 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.display_avatar:1 #: ../../../discord/widget.py:docstring of discord.WidgetMember.display_avatar:1 #: 3c9e57b8c879411eb7b0a5bce8837eaa -#: 613adc4ebb9d487bb1c10b1b831c265a -#: 91a80ca04f9845d782a0aec709e6342d +#: 3c9e57b8c879411eb7b0a5bce8837eaa +#: 3c9e57b8c879411eb7b0a5bce8837eaa msgid "Returns the user's display avatar." msgstr "" @@ -5353,15 +5658,15 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.display_avatar:3 #: ../../../discord/widget.py:docstring of discord.WidgetMember.display_avatar:3 #: fb3482d25d174a26b778b9faf87546c8 -#: d2b170adae3f48cfaca8949892f73fc4 -#: b73981c9e34846df86edd23a8b06acba +#: fb3482d25d174a26b778b9faf87546c8 +#: fb3482d25d174a26b778b9faf87546c8 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 +#: 590fc14655784aab8f2ee70767655abb msgid "Returns the user's display name. This will be their global name if set, otherwise their username." msgstr "" @@ -5369,8 +5674,8 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.is_migrated:1 #: ../../../discord/widget.py:docstring of discord.WidgetMember.is_migrated:1 #: 98d46180481045ac91439bb582984225 -#: 75913c2943e244da9f912797c9315548 -#: 83b3d21571f541efa5c11b1df2216c78 +#: 98d46180481045ac91439bb582984225 +#: 98d46180481045ac91439bb582984225 msgid "Checks whether the user is already migrated to global name." msgstr "" @@ -5378,8 +5683,8 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.jump_url:1 #: ../../../discord/widget.py:docstring of discord.WidgetMember.jump_url:1 #: ed344f416d38414faf37aa0952f5119b -#: a6aab4a6f73b4a558e5a99f75d9d6f09 -#: 71803c743ab04f6487bcc7cd7592ab5c +#: ed344f416d38414faf37aa0952f5119b +#: ed344f416d38414faf37aa0952f5119b msgid "Returns a URL that allows the client to jump to the user." msgstr "" @@ -5387,16 +5692,16 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.mention:1 #: ../../../discord/widget.py:docstring of discord.WidgetMember.mention:1 #: 952afd71f7ee40ee923e5d57e9666246 -#: 7000b4f254244a50968882f86aa22812 -#: 2e4ec00b99904f72a3847aca88c7a818 +#: 952afd71f7ee40ee923e5d57e9666246 +#: 952afd71f7ee40ee923e5d57e9666246 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 +#: fd752e6addca4ab6b4f098137fa9ce29 +#: fd752e6addca4ab6b4f098137fa9ce29 msgid "Checks if the user is mentioned in the specified message." msgstr "" @@ -5404,17 +5709,17 @@ msgstr "" #: ../../../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 +#: f59645c800104853b49db0b8b46edcbf +#: f59645c800104853b49db0b8b46edcbf +#: f59645c800104853b49db0b8b46edcbf 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 +#: 8f7489e0344546199a8c5c066f41a5c2 +#: 8f7489e0344546199a8c5c066f41a5c2 msgid "Indicates if the user is mentioned in the message." msgstr "" @@ -5422,8 +5727,8 @@ msgstr "" #: ../../../discord/user.py:docstring of discord.User.public_flags:1 #: ../../../discord/widget.py:docstring of discord.WidgetMember.public_flags:1 #: 93632cb243b348e9956831b21bdc22a9 -#: 921c002b550040f8b20f075deecaa7e6 -#: ea58197e31bb4b41884a157342d514cc +#: 93632cb243b348e9956831b21bdc22a9 +#: 93632cb243b348e9956831b21bdc22a9 msgid "The publicly available flags the user has." msgstr "" @@ -5460,14 +5765,14 @@ 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 +#: 5d3cf60bddbc4c6fad29b9c300b60469 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 +#: e099032e034b487db2a951a186656094 msgid "This should be rarely called, as this is done transparently for most people." msgstr "" @@ -5478,26 +5783,27 @@ msgstr "" #: ../../../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 +#: 34c3db924cfe4afba20d42849d8a1d7b +#: 34c3db924cfe4afba20d42849d8a1d7b +#: 34c3db924cfe4afba20d42849d8a1d7b +#: 34c3db924cfe4afba20d42849d8a1d7b +#: 34c3db924cfe4afba20d42849d8a1d7b +#: 34c3db924cfe4afba20d42849d8a1d7b +#: 34c3db924cfe4afba20d42849d8a1d7b 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 +#: 827186088d1d4f689ad318127cf593a4 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 +#: 6f3a14dd55e94eff97233f7cdb9ddded msgid "Creates a test entitlement for the user." msgstr "" @@ -5505,8 +5811,8 @@ msgstr "" #: ../../../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 +#: 52b7f3d178ba45879ca736db726309ac +#: 52b7f3d178ba45879ca736db726309ac msgid "The SKU to create a test entitlement for." msgstr "" @@ -5514,8 +5820,8 @@ msgstr "" #: ../../../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 +#: 688251e620db45399e35182ab313f053 +#: 688251e620db45399e35182ab313f053 msgid "The created entitlement." msgstr "" @@ -5523,22 +5829,22 @@ msgstr "" #: ../../../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 +#: ed4f4ebe3d314273a8db0f388ad10891 +#: ed4f4ebe3d314273a8db0f388ad10891 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 +#: ae059b12f7be4225823a1ebe75b9caa2 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 +#: 73ee380e8eaa49b1985d9e76d0ce3011 msgid "This is identical to :meth:`Client.entitlements` with the ``user`` parameter." msgstr "" @@ -5546,8 +5852,8 @@ msgstr "" #: ../../../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 +#: 191945eb971249b586dd09f0a363f167 +#: 191945eb971249b586dd09f0a363f167 msgid "Limit the fetched entitlements to entitlements that are for these SKUs." msgstr "" @@ -5555,8 +5861,8 @@ msgstr "" #: ../../../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 +#: 6aa172e940f144f98ef4d69e388b7e00 +#: 6aa172e940f144f98ef4d69e388b7e00 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 "" @@ -5564,8 +5870,8 @@ msgstr "" #: ../../../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 +#: 3be018fd0820429f800ddf00c58423ea +#: 3be018fd0820429f800ddf00c58423ea 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 "" @@ -5573,8 +5879,8 @@ msgstr "" #: ../../../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 +#: 2f95d22d8cda40e587765c256f57bfe6 +#: 2f95d22d8cda40e587765c256f57bfe6 msgid "The number of entitlements to retrieve. If ``None``, retrieves every entitlement, which may be slow. Defaults to ``100``." msgstr "" @@ -5582,8 +5888,8 @@ msgstr "" #: ../../../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 +#: cb8af2a165a445fa87148c0efa867904 +#: cb8af2a165a445fa87148c0efa867904 msgid "Whether to limit the fetched entitlements to those that have not ended. Defaults to ``False``." msgstr "" @@ -5591,8 +5897,8 @@ msgstr "" #: ../../../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 +#: 2fcb0d10765c4c01b53a633d1e7749f0 +#: 2fcb0d10765c4c01b53a633d1e7749f0 msgid ":class:`.Entitlement` -- The application's entitlements." msgstr "" @@ -5600,7 +5906,7 @@ msgstr "" #: ../../../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 +#: dfae8467fd154ea5b8777569e61e764e #: 4477dcd6cf974b189ffa8308bef5b349 msgid "Retrieving the entitlements failed." msgstr "" @@ -5608,7 +5914,7 @@ msgstr "" #: ../../../discord/guild.py:docstring of discord.guild.Guild.entitlements:34 #: ../../../discord/user.py:docstring of discord.user.User.entitlements:34 #: add5fc2b3b474b48963f5e2d57af8ad3 -#: 87e7437ba3dd4295bcf7317cc8932738 +#: add5fc2b3b474b48963f5e2d57af8ad3 msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" msgstr "" @@ -5638,26 +5944,31 @@ 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." +#: 48caa2a52a4144049a492c2f01a7eff0 +msgid "Returns the attachment's unique identifier." msgstr "" #: ../../../discord/message.py:docstring of discord.message.Attachment:21 +#: cf3459c60a5448888d44092d532857cb +msgid "This is equivalent to :attr:`id`." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Attachment:23 #: 0c575e35aef5425b94a0dff90e2e0231 msgid "Attachment can now be cast to :class:`str` and is hashable." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Attachment:26 +#: ../../../discord/message.py:docstring of discord.message.Attachment:28 #: 8c174bbfd44147ecb1d712933fa3aa4e msgid "The attachment ID." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Attachment:32 +#: ../../../discord/message.py:docstring of discord.message.Attachment:34 #: cad88e03745e4898b486276d5648803c msgid "The attachment size in bytes." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Attachment:38 +#: ../../../discord/message.py:docstring of discord.message.Attachment:40 #: a2938bf7c9b44e4e9bca2663a729afaf msgid "The attachment's height, in pixels. Only applicable to images and videos." msgstr "" @@ -5667,6 +5978,10 @@ msgstr "" #: ../../../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.MediaChannel:45 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel:62 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel:69 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel:118 #: ../../../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 @@ -5677,7 +5992,8 @@ msgstr "" #: ../../../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/components.py:docstring of discord.components.Button:52 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:65 #: ../../../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 @@ -5690,8 +6006,8 @@ msgstr "" #: ../../../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.Attachment:42 +#: ../../../discord/message.py:docstring of discord.message.Attachment:48 #: ../../../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 @@ -5707,132 +6023,139 @@ msgstr "" #: ../../../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/role.py:docstring of discord.role.RoleTags:19 +#: ../../../discord/role.py:docstring of discord.role.RoleTags:25 +#: ../../../discord/role.py:docstring of discord.role.RoleTags:33 #: ../../../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 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a #: f50b8fb8640844a6933c62864952effb -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 -#: 32bfaad9dc0e42aba5a769f9c2139168 +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a +#: 8a0504dbcaec4f5ca2890730091a5b6a msgid "Optional[:class:`int`]" msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Attachment:44 +#: ../../../discord/message.py:docstring of discord.message.Attachment:46 #: 5ef4f4ec93704176ab793181a849f05f msgid "The attachment's width, in pixels. Only applicable to images and videos." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Attachment:50 +#: ../../../discord/message.py:docstring of discord.message.Attachment:52 #: 1578fbf5297d4be08834fd1ee5ef1fe5 msgid "The attachment's filename." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Attachment:56 +#: ../../../discord/message.py:docstring of discord.message.Attachment:58 #: 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 +#: ../../../discord/message.py:docstring of discord.message.Attachment:67 #: 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 +#: ../../../discord/message.py:docstring of discord.message.Attachment:74 #: 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 +#: ../../../discord/message.py:docstring of discord.message.Attachment:82 #: 3afcc47a746b41ef962d8970c735e85c msgid "The attachment's `media type `_." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Attachment:86 +#: ../../../discord/message.py:docstring of discord.message.Attachment:88 #: 1bc86b04dd0e4e3ab62f5abb1fa5a191 msgid "Whether the attachment is ephemeral or not." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Attachment:94 +#: ../../../discord/message.py:docstring of discord.message.Attachment:96 #: 3f39cbfb9d7b4acdbbbbb44af1a4a044 msgid "The attachment's description." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Attachment:102 +#: ../../../discord/message.py:docstring of discord.message.Attachment:104 #: 41a146e92e5c4b14b97610c414598c5f msgid "The duration of the audio file (currently for voice messages)." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Attachment:106 +#: ../../../discord/message.py:docstring of discord.message.Attachment:108 #: 5e36ab69e24a4e9281fef9f23b4e9417 msgid "Optional[:class:`float`]" msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Attachment:110 +#: ../../../discord/message.py:docstring of discord.message.Attachment:112 #: eff44c3749674e1fbbf4b67f51584aa1 msgid "The base64 encoded bytearray representing a sampled waveform (currently for voice messages)." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Attachment:118 +#: ../../../discord/message.py:docstring of discord.message.Attachment:120 #: 8d72571d6ca849d6a35b59f075db944f msgid "Extra attributes of the attachment." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Attachment:122 +#: ../../../discord/message.py:docstring of discord.message.Attachment:124 #: ab0f888b90cd441e98e12a4233f6a5ca msgid ":class:`AttachmentFlags`" msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Attachment:126 +#: ../../../discord/message.py:docstring of discord.message.Attachment:128 #: eb66ce493d6144a692880c2d020256d8 msgid "The unique signature of this attachment's instance." msgstr "" @@ -5861,8 +6184,8 @@ msgstr "" #: ../../../discord/message.py:docstring of discord.message.Attachment.save:15 #: ../../../discord/message.py:docstring of discord.message.Attachment.to_file:9 #: 2b5ead79700145a382d76f44023473e0 -#: abdf57698eb34d8982ba647f6da17306 -#: 7aa4f610913d4f9b9a7d74ae16d69eb5 +#: 2b5ead79700145a382d76f44023473e0 +#: 2b5ead79700145a382d76f44023473e0 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 "" @@ -5875,8 +6198,8 @@ msgstr "" #: ../../../discord/message.py:docstring of discord.message.Attachment.save:27 #: ../../../discord/message.py:docstring of discord.message.Attachment.to_file:29 #: d18abb0c844745c2807b072262ea7789 -#: ab9fdda4d9474a1086b411042447c7f8 -#: 38a5651d049e4b7e9f01bb38e9760855 +#: d18abb0c844745c2807b072262ea7789 +#: d18abb0c844745c2807b072262ea7789 msgid "The attachment was deleted." msgstr "" @@ -5893,14 +6216,14 @@ msgstr "" #: ../../../discord/message.py:docstring of discord.message.Attachment.read:19 #: ../../../discord/message.py:docstring of discord.message.Attachment.to_file:27 #: 50fc85816460419987fd4b9d6f35c1e0 -#: 4db1799592a342b69f4dff05cb3399aa +#: 50fc85816460419987fd4b9d6f35c1e0 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 +#: 852f492f157c49a49a538a015d3dc7f6 msgid "You do not have permissions to access this attachment" msgstr "" @@ -6141,7 +6464,7 @@ msgstr "" #: ../../../discord/message.py:docstring of discord.message.Message:164 #: ../../../discord/message.py:docstring of discord.message.Message:178 #: f3f5b79ae0264c59b2b8f18457a33604 -#: 11c75525785d4c429178a7a718d68f80 +#: f3f5b79ae0264c59b2b8f18457a33604 msgid "Optional[:class:`dict`]" msgstr "" @@ -6196,9 +6519,13 @@ msgid "A list of components in the message." msgstr "" #: ../../../discord/components.py:docstring of discord.components.ActionRow:19 +#: ../../../discord/components.py:docstring of discord.components.Container:25 +#: ../../../discord/components.py:docstring of discord.components.Section:17 #: ../../../discord/message.py:docstring of discord.message.Message:194 #: 67814d733bdf4049865a606a8b8f8cc5 -#: 84f37565d5b54049bca37476a10434b3 +#: 67814d733bdf4049865a606a8b8f8cc5 +#: 67814d733bdf4049865a606a8b8f8cc5 +#: 67814d733bdf4049865a606a8b8f8cc5 msgid "List[:class:`Component`]" msgstr "" @@ -6212,9 +6539,9 @@ msgstr "" #: ../../../discord/raw_models.py:docstring of discord.raw_models.RawScheduledEventSubscription:22 #: ../../docstring of discord.AuthorizingIntegrationOwners.guild:4 #: c721db13a7b146019d639a9f3f834bf5 -#: 9dd1e8c3b999410fa6625ba6f279c7c7 -#: 9dd1e8c3b999410fa6625ba6f279c7c7 -#: 9dd1e8c3b999410fa6625ba6f279c7c7 +#: c721db13a7b146019d639a9f3f834bf5 +#: c721db13a7b146019d639a9f3f834bf5 +#: c721db13a7b146019d639a9f3f834bf5 msgid "Optional[:class:`Guild`]" msgstr "" @@ -6241,7 +6568,7 @@ msgstr "" #: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMetadata:49 #: ../../../discord/message.py:docstring of discord.message.Message:218 #: bc296a912770482a81cf365b4076d957 -#: 465b6273c1434cdf84d1bf9d0bec35d1 +#: bc296a912770482a81cf365b4076d957 msgid "Optional[:class:`InteractionMetadata`]" msgstr "" @@ -6254,9 +6581,10 @@ msgstr "" #: ../../../discord/guild.py:docstring of discord.guild.Guild.get_thread:10 #: ../../../discord/message.py:docstring of discord.message.Message:226 #: d8d7b5cabb804112945544dd9fce00a3 -#: aac45b2defac480591d4ff80dd368aa8 -#: aac45b2defac480591d4ff80dd368aa8 -#: aac45b2defac480591d4ff80dd368aa8 +#: d8d7b5cabb804112945544dd9fce00a3 +#: d8d7b5cabb804112945544dd9fce00a3 +#: d8d7b5cabb804112945544dd9fce00a3 +#: d8d7b5cabb804112945544dd9fce00a3 msgid "Optional[:class:`Thread`]" msgstr "" @@ -6280,6 +6608,16 @@ msgstr "" msgid "Optional[:class:`MessageCall`]" msgstr "" +#: ../../../discord/message.py:docstring of discord.message.Message:246 +#: 976df015627c468c81e129d00a058565 +msgid "The snapshots attached to this message, if applicable." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message:250 +#: 4229c74086434a8da37f74044d1d1104 +msgid "Optional[List[:class:`MessageSnapshots`]]" +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." @@ -6347,13 +6685,13 @@ 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." +msgid "In the case of :attr:`MessageType.default` and :attr:`MessageType.reply`\\, this just returns the regular :attr:`Message.content`, and forwarded messages will display the original message's content from :attr:`Message.snapshots`. 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 +#: f3ebcd5f2ae04e4995b614f305c52ccf msgid "Deletes the message." msgstr "" @@ -6380,7 +6718,7 @@ msgstr "" #: ../../../discord/interactions.py:docstring of discord.interactions.InteractionMessage.delete:10 #: ../../../discord/message.py:docstring of discord.message.Message.delete:20 #: 31dae9bdaac8430bab6b0a5bad06b2c3 -#: f075f7ddf459448486db289bb7a664c8 +#: 31dae9bdaac8430bab6b0a5bad06b2c3 msgid "You do not have proper permissions to delete the message." msgstr "" @@ -6396,14 +6734,14 @@ msgstr "" #: 11626a89e9754d98b9e406dee995ee11 #: 918b2eb266e64d8b92a504fe13d28665 #: 918b2eb266e64d8b92a504fe13d28665 -#: 120db33a3735472ab0570bbc976c4428 +#: 11626a89e9754d98b9e406dee995ee11 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 +#: 6ed53c62bf794126a8bcd24d3fd2a19e msgid "Edits the message." msgstr "" @@ -6452,9 +6790,9 @@ msgstr "" #: ../../../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 +#: 37250a2ca1734906b0f17639a4ca5a55 +#: 37250a2ca1734906b0f17639a4ca5a55 +#: 37250a2ca1734906b0f17639a4ca5a55 msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." msgstr "" @@ -6468,9 +6806,9 @@ msgstr "" #: ../../../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 +#: a865ae969b7e4cd1aa10292adaa53422 +#: a865ae969b7e4cd1aa10292adaa53422 +#: a865ae969b7e4cd1aa10292adaa53422 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 "" @@ -6479,9 +6817,9 @@ msgstr "" #: ../../../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 +#: 66bd52e02f594816b9a3876ee0003e20 +#: 66bd52e02f594816b9a3876ee0003e20 +#: 66bd52e02f594816b9a3876ee0003e20 msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." msgstr "" @@ -6618,7 +6956,7 @@ msgstr "" #: 1aa5ee02625744fb8125add13b1e3df3 #: 1aa5ee02625744fb8125add13b1e3df3 #: 1aa5ee02625744fb8125add13b1e3df3 -msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +msgid "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." msgstr "" #: ../../../discord/message.py:docstring of discord.message.Message.add_reaction:7 @@ -6772,6 +7110,7 @@ msgstr "" #: b76d73bb2eec453fa791730f2896373e #: b76d73bb2eec453fa791730f2896373e #: b76d73bb2eec453fa791730f2896373e +#: b76d73bb2eec453fa791730f2896373e msgid "The name of the thread." msgstr "" @@ -6781,6 +7120,7 @@ msgstr "" #: d4ed5bbfc3cd43088a3b6e8715f45654 #: d4ed5bbfc3cd43088a3b6e8715f45654 #: d4ed5bbfc3cd43088a3b6e8715f45654 +#: d4ed5bbfc3cd43088a3b6e8715f45654 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 "" @@ -6811,6 +7151,7 @@ msgstr "" #: ac637d19fb1d403d95c9d2561056cdc5 #: ac637d19fb1d403d95c9d2561056cdc5 #: ac637d19fb1d403d95c9d2561056cdc5 +#: ac637d19fb1d403d95c9d2561056cdc5 msgid "You do not have permissions to create a thread." msgstr "" @@ -6829,16 +7170,30 @@ msgstr "" msgid "A shortcut method to :meth:`.abc.Messageable.send` to reply to the :class:`.Message`." msgstr "" +#: ../../../discord/message.py:docstring of discord.message.Message.forward_to:13 #: ../../../discord/message.py:docstring of discord.message.Message.reply:9 #: 8fb0c77645f547c6872c4b243378a15d +#: 8fb0c77645f547c6872c4b243378a15d msgid ":class:`.Message`" msgstr "" +#: ../../../discord/message.py:docstring of discord.message.Message.forward_to:17 #: ../../../discord/message.py:docstring of discord.message.Message.reply:13 #: 407cc6ed96864a86a0c521ed428b7511 +#: 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.forward_to:3 +#: fbd67ff4c215400ea4a271748c5dc77c +msgid "A shortcut method to :meth:`.abc.Messageable.send` to forward the :class:`.Message` to a channel." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.forward_to:9 +#: f884e37b37a34004b7a60715f9c7e323 +msgid "The channel to forward this to." +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." @@ -6882,11 +7237,21 @@ msgid "Whether replying using the message reference should raise :class:`HTTPExc msgstr "" #: ../../../discord/message.py:docstring of discord.message.Message.to_reference:12 +#: f7c3557ed02049ffa29494923a1632a1 +msgid "The type of message reference. Defaults to a reply. .. versionadded:: 2.7" +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:12 +#: bc8530e934df4b92844df9fc397447a6 +msgid "The type of message reference. Defaults to a reply." +msgstr "" + +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:17 #: 8a8ab09da0a9465bb681ee6462a156b6 msgid "The reference to this message." msgstr "" -#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:13 +#: ../../../discord/message.py:docstring of discord.message.Message.to_reference:18 #: f06595a3a15743dcbeae344ccd5daf42 msgid ":class:`~discord.MessageReference`" msgstr "" @@ -6954,10 +7319,8 @@ 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 -#: d0fdab02f7ff4c81b105f060099ea6dd -msgid "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" +msgid "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]" msgstr "" #: ../../../discord/reaction.py:docstring of discord.reaction.Reaction:34 @@ -7164,78 +7527,142 @@ msgstr "" msgid "Returns the URL for the SKU." msgstr "" +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions:1 +#: 024d66d0841244cab9d49a97deb4c5e5 +msgid "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions:6 +#: e985008dbcff48aca12f0100d929a58b +msgid "The user for which to retrieve subscriptions." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions:9 +#: 19c5cfcf169d466a949ae4cad69dd539 +msgid "Retrieves subscriptions before this date or object. If a datetime 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/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions:14 +#: 960251d52e934e4c92c9bd0a0aa77ea8 +msgid "Retrieve subscriptions after this date or object. If a datetime 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/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions:19 +#: fb2eba26c34c411ca8bbe737728d0a39 +msgid "The number of subscriptions to retrieve. If ``None``, retrieves all subscriptions." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions:22 +#: 4c69159877084830ad00ea3485e639ae +msgid ":class:`Subscription` -- A subscription that the user has for this SKU." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions:24 +#: aa2b527516c44c569aff79684995a1ba +msgid "Getting the subscriptions failed." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions:25 +#: 71a9a557b42348ec8e3746a3f51ea658 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.bans:41 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_members:35 +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions:34 +#: 081c6429caa04e0a8c5e5dbf3e7662c7 +#: 081c6429caa04e0a8c5e5dbf3e7662c7 +#: 081c6429caa04e0a8c5e5dbf3e7662c7 +msgid "Flattening into a list ::" +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.SKU.fetch_subscriptions:39 +#: 0d272e8551554a528b510633e63e660b +msgid "All parameters except for ``user`` are optional." +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 +#: 27baecc3276a41b28300eb5732e444c8 +msgid "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:10 +#: b6afb38f8d2e49ebb42b29492db03440 +msgid "`See the Discord changelog. `_" +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:14 #: 474393e263ed49ceadcdb9df979b1e80 msgid "The entitlement's ID." msgstr "" -#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:13 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:20 #: e22b12906d11423b92816daccc7bbee6 msgid "The ID of the SKU this entitlement is for." msgstr "" -#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:19 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:26 #: fcc6d115692f4a39ad0cd1665c40aded msgid "The ID of the application this entitlement belongs to." msgstr "" -#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:25 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:32 #: 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 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:34 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:64 #: 6cb0d709a1ce4db0ac68dcdb6166f2fc #: 6cb0d709a1ce4db0ac68dcdb6166f2fc msgid "Union[:class:`int`, :class:`MISSING`]" msgstr "" -#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:31 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:38 #: 6127f165c1f342a69f6e0693dc75a9f9 msgid "The type of entitlement." msgstr "" -#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:33 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:40 #: 7d438bff37c749b3950ffe589d702f9f msgid ":class:`EntitlementType`" msgstr "" -#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:37 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:44 #: eeed4145d06f42de87ad7d9fa099ee64 msgid "Whether the entitlement has been deleted." msgstr "" -#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:43 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:50 #: 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 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:52 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:58 #: c2010b24b8dd4c6d88d0ecd78719e628 #: c2010b24b8dd4c6d88d0ecd78719e628 msgid "Union[:class:`datetime.datetime`, :class:`MISSING`]" msgstr "" -#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:49 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:56 #: 455f169162d3445d83c04197602e6bac msgid "When the entitlement expires." msgstr "" -#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:55 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:62 #: a8a68a11ea664400b47e3c47bb207c13 msgid "The ID of the guild that owns this entitlement." msgstr "" -#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:61 +#: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement:68 #: 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`." +msgid "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.consumable`." msgstr "" #: ../../../discord/monetization.py:docstring of discord.monetization.Entitlement.consume:3 @@ -7245,15 +7672,10 @@ 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`." +msgid "This can only be done on entitlements from an SKU of type :attr:`SKUType.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 "" @@ -7273,7 +7695,138 @@ msgstr "" msgid "Deleting the entitlement failed." msgstr "" -#: ../../api/models.rst:118 +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:1 +#: e6473b15bf1c4aab8d18c91cd7a68623 +msgid "Represents a user making recurring payments for one or more SKUs." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:3 +#: 0cd1ee51866e49e794e1e2aae78f8260 +msgid "Successful payments grant the user access to entitlements associated with the SKU." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:9 +#: 6008728ed3b44140a9d0d21ecc5f3928 +msgid "The subscription's ID." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:15 +#: 390ffbbcdbea4754bbbd4fa8dc55c4a1 +msgid "The ID of the user that owns this subscription." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:21 +#: e22b12906d11423b92816daccc7bbee6 +msgid "The IDs of the SKUs this subscription is for." +msgstr "" + +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:75 +#: ../../../discord/automod.py:docstring of discord.automod.AutoModRule:81 +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:23 +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:29 +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:35 +#: 87c8fe8fea4441edb52f0ea109aaae0a +#: 87c8fe8fea4441edb52f0ea109aaae0a +#: 87c8fe8fea4441edb52f0ea109aaae0a +#: 87c8fe8fea4441edb52f0ea109aaae0a +#: 87c8fe8fea4441edb52f0ea109aaae0a +msgid "List[:class:`int`]" +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:27 +#: bf5e70691eb048d29e5620a2952c0e85 +msgid "The IDs of the entitlements this subscription is for." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:33 +#: 6eeedd965eac44a5b905a06d37c570d7 +msgid "The IDs of the SKUs that the buyer will be subscribed to at renewal." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:39 +#: fc2d5f7de1334ecfa878e4a54efbe2d7 +msgid "The start of the current subscription period." +msgstr "" + +#: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration:75 +#: ../../../discord/invite.py:docstring of discord.invite.Invite:77 +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:41 +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:47 +#: ../../../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 +#: b8e1833f3ac147369e252c5d8801de52 +#: b8e1833f3ac147369e252c5d8801de52 +msgid ":class:`datetime.datetime`" +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:45 +#: 2589e072a10945fd91844cf562e522f8 +msgid "The end of the current subscription period." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:51 +#: 7fa115df6d194b9eaf2c37b4960c54fb +msgid "The status of the subscription." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:53 +#: beaedb41ec2840239f556ef2b031ce7c +msgid ":class:`SubscriptionStatus`" +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:57 +#: aa2b527516c44c569aff79684995a1ba +msgid "When the subscription was canceled." +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.monetization.Subscription:59 +#: b8e1833f3ac147369e252c5d8801de52 +msgid ":class:`datetime.datetime` | ``None``" +msgstr "" + +#: ../../../discord/monetization.py:docstring of discord.Subscription.user:1 +#: 457c653cc8d74125bcd46da778f939b9 +msgid "The user that owns this subscription." +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.AppEmoji:77 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji: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/monetization.py:docstring of discord.Subscription.user:3 +#: ../../../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 +#: cc61dfae294c4579ba596a34ef3fa088 +#: cc61dfae294c4579ba596a34ef3fa088 +msgid "Optional[:class:`User`]" +msgstr "" + +#: ../../api/models.rst:123 #: e844acaaa52845ed85e5fd6814cb0f53 msgid "Guild" msgstr "" @@ -7320,7 +7873,7 @@ msgstr "" #: ../../../discord/guild.py:docstring of discord.guild.Guild:33 #: 258a28d33dbe4186945587d0e306c05b -msgid "Tuple[:class:`Emoji`, ...]" +msgid "Tuple[:class:`GuildEmoji`, ...]" msgstr "" #: ../../../discord/guild.py:docstring of discord.guild.Guild:37 @@ -7541,13 +8094,6 @@ msgstr "" 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 -#: 081c6429caa04e0a8c5e5dbf3e7662c7 -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." @@ -7745,6 +8291,7 @@ msgstr "" #: 3a1180e1deb44b6a8374aee179bde960 #: 3a1180e1deb44b6a8374aee179bde960 #: 3a1180e1deb44b6a8374aee179bde960 +#: 3a1180e1deb44b6a8374aee179bde960 msgid "The ID to search for." msgstr "" @@ -7783,6 +8330,7 @@ msgstr "" #: 6756f4807ebc43bb9fcd4ade90cb9a0c #: 6756f4807ebc43bb9fcd4ade90cb9a0c #: 6756f4807ebc43bb9fcd4ade90cb9a0c +#: 6756f4807ebc43bb9fcd4ade90cb9a0c msgid "Returns a thread with the given ID." msgstr "" @@ -7791,6 +8339,7 @@ msgstr "" #: 0b52a378783845b9a553efe578dab819 #: 0b52a378783845b9a553efe578dab819 #: 0b52a378783845b9a553efe578dab819 +#: 0b52a378783845b9a553efe578dab819 msgid "The returned thread or ``None`` if not found." msgstr "" @@ -8114,6 +8663,7 @@ msgid "The position in the channel list. This is a number that starts at 0. e.g. msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:10 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel.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 @@ -8123,6 +8673,7 @@ msgstr "" #: b12af80947024bd196b707459a1c7ab1 #: b12af80947024bd196b707459a1c7ab1 #: b12af80947024bd196b707459a1c7ab1 +#: b12af80947024bd196b707459a1c7ab1 msgid "The new channel's topic." msgstr "" @@ -8134,6 +8685,7 @@ msgid "Specifies the slowmode rate limit for user in this channel, in seconds. T msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:14 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel.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 @@ -8141,6 +8693,7 @@ msgstr "" #: 6e0e5f25fba64a62b1ac7c005cb3c4aa #: 6e0e5f25fba64a62b1ac7c005cb3c4aa #: 6e0e5f25fba64a62b1ac7c005cb3c4aa +#: 6e0e5f25fba64a62b1ac7c005cb3c4aa msgid "To mark the channel as NSFW or not." msgstr "" @@ -8204,6 +8757,7 @@ msgstr "" #: 4add16d398aa4f518bf3f72e29c63eb3 #: 4add16d398aa4f518bf3f72e29c63eb3 #: 4add16d398aa4f518bf3f72e29c63eb3 +#: 4add16d398aa4f518bf3f72e29c63eb3 msgid "You do not have the proper permissions to create this channel." msgstr "" @@ -8227,6 +8781,7 @@ msgstr "" #: c9330770911546dd87b510a3ebe4cb6e #: c9330770911546dd87b510a3ebe4cb6e #: c9330770911546dd87b510a3ebe4cb6e +#: c9330770911546dd87b510a3ebe4cb6e msgid "Creating the channel failed." msgstr "" @@ -8336,14 +8891,14 @@ 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" +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, 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 #: acba40fd9b99460bb43889ba61c943d4 -msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`Emoji`, snowflake ID, string representation (eg. '')." +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.CategoryChannel.create_forum_channel:8 @@ -8577,38 +9132,54 @@ msgid "Whether the guild should have server invites enabled or disabled." msgstr "" #: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:96 +#: ab83fdbf1e0e4760b895cdc4cf06ee7e +msgid "Whether the guild should be discoverable in the discover tab." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:99 +#: 203e2e85a6de4714bcf5108fc81cba3f +msgid "Whether activity alerts for the guild should be disabled." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:102 +#: 387f2c8ecb814ef79b4d196dc73a9991 +msgid "Whether the guild's user activity feed should be enabled." +msgstr "" + +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:105 #: 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 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:108 #: f2ec2f8365b0482f88522cb620b9f3c2 msgid "You do not have permissions to edit the guild." msgstr "" -#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:100 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:109 #: ../../../discord/integrations.py:docstring of discord.integrations.StreamIntegration.edit:19 #: 7026e8922b26447f903df8f0411dae38 #: 7026e8922b26447f903df8f0411dae38 msgid "Editing the guild failed." msgstr "" -#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:101 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:110 #: 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 +#: ../../../discord/guild.py:docstring of discord.guild.Guild.edit:112 #: 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.MediaChannel:33 #: ../../../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/guild.py:docstring of discord.guild.Guild.edit:114 #: ../../../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 @@ -8633,6 +9204,7 @@ msgstr "" #: 276f56a64f5843658e8be434f64806d5 #: 276f56a64f5843658e8be434f64806d5 #: 276f56a64f5843658e8be434f64806d5 +#: 276f56a64f5843658e8be434f64806d5 msgid ":class:`Guild`" msgstr "" @@ -8799,6 +9371,7 @@ msgstr "" #: 73cd4a54b33f468fbd6598ae6039b5ad #: 73cd4a54b33f468fbd6598ae6039b5ad #: 73cd4a54b33f468fbd6598ae6039b5ad +#: 73cd4a54b33f468fbd6598ae6039b5ad msgid "You do not have proper permissions to get the information." msgstr "" @@ -8819,6 +9392,7 @@ msgstr "" #: e91a22a8592f4d83adfff9b890100c70 #: e91a22a8592f4d83adfff9b890100c70 #: e91a22a8592f4d83adfff9b890100c70 +#: e91a22a8592f4d83adfff9b890100c70 msgid "An error occurred while fetching the information." msgstr "" @@ -8957,6 +9531,7 @@ msgstr "" #: 3224d7c321cc4c78b44b8fc4932f2b89 #: 3224d7c321cc4c78b44b8fc4932f2b89 #: 3224d7c321cc4c78b44b8fc4932f2b89 +#: 3224d7c321cc4c78b44b8fc4932f2b89 msgid "The reason for doing this action. Shows up on the audit log." msgstr "" @@ -9040,6 +9615,8 @@ msgstr "" #: a41a818bb60d4197af2cfa72219eee39 #: a41a818bb60d4197af2cfa72219eee39 #: a41a818bb60d4197af2cfa72219eee39 +#: a41a818bb60d4197af2cfa72219eee39 +#: a41a818bb60d4197af2cfa72219eee39 msgid "Requires :attr:`~.Permissions.manage_webhooks` permissions." msgstr "" @@ -9057,6 +9634,7 @@ msgstr "" #: 7253240c20004a45b527af391c6c7fae #: 7253240c20004a45b527af391c6c7fae #: 7253240c20004a45b527af391c6c7fae +#: 7253240c20004a45b527af391c6c7fae msgid "List[:class:`Webhook`]" msgstr "" @@ -9069,6 +9647,7 @@ msgstr "" #: cfc0d35c673d41278b8b1cd4581fee83 #: cfc0d35c673d41278b8b1cd4581fee83 #: cfc0d35c673d41278b8b1cd4581fee83 +#: cfc0d35c673d41278b8b1cd4581fee83 msgid "You don't have permissions to get the webhooks." msgstr "" @@ -9115,6 +9694,7 @@ msgstr "" #: b4eb1b6da60540cd89dedf2329be357a #: b4eb1b6da60540cd89dedf2329be357a #: b4eb1b6da60540cd89dedf2329be357a +#: b4eb1b6da60540cd89dedf2329be357a msgid "The list of invites that are currently active." msgstr "" @@ -9377,7 +9957,7 @@ msgstr "" #: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emojis:3 #: 7e19d4e700d74093a3cdc5c09aa87a7d -msgid "Retrieves all custom :class:`Emoji`\\s from the guild." +msgid "Retrieves all custom :class:`GuildEmoji`\\s from the guild." msgstr "" #: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emojis:7 @@ -9397,12 +9977,12 @@ msgstr "" #: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emojis:12 #: d20f42179eff44a7a621d7a831ddbe4b -msgid "List[:class:`Emoji`]" +msgid "List[:class:`GuildEmoji`]" msgstr "" #: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emoji:3 #: cc1afd530dcb498eab35fafe4575a8d9 -msgid "Retrieves a custom :class:`Emoji` from the guild." +msgid "Retrieves a custom :class:`GuildEmoji` from the guild." msgstr "" #: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emoji:7 @@ -9410,10 +9990,12 @@ msgstr "" 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/emoji.py:docstring of discord.emoji.AppEmoji:39 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:37 #: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emoji:11 #: 53a1817de08548d2a68fbe1e43614c15 #: 53a1817de08548d2a68fbe1e43614c15 +#: 53a1817de08548d2a68fbe1e43614c15 msgid "The emoji's ID." msgstr "" @@ -9422,13 +10004,13 @@ msgstr "" msgid "The retrieved emoji." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:25 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.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 -#: 37a41037481642b78fafaee019f75015 -msgid ":class:`Emoji`" +#: 2802fcb7a86b474589f5c11ccebdfc55 +#: 1eda185924ee4e90b494cdb8b767c886 +#: 1eda185924ee4e90b494cdb8b767c886 +msgid ":class:`GuildEmoji`" msgstr "" #: ../../../discord/guild.py:docstring of discord.guild.Guild.fetch_emoji:17 @@ -9443,7 +10025,7 @@ msgstr "" #: ../../../discord/guild.py:docstring of discord.guild.Guild.create_custom_emoji:3 #: c19298ed5a9d4c7f94a5ba4c63da6ecf -msgid "Creates a custom :class:`Emoji` for the guild." +msgid "Creates a custom :class:`GuildEmoji` for the guild." msgstr "" #: ../../../discord/guild.py:docstring of discord.guild.Guild.create_custom_emoji:5 @@ -9493,11 +10075,11 @@ msgstr "" #: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_emoji:3 #: 29f350f034fc4530acff6df42f01d8c8 -msgid "Deletes the custom :class:`Emoji` from the guild." +msgid "Deletes the custom :class:`GuildEmoji` 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/emoji.py:docstring of discord.emoji.GuildEmoji.delete:5 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.edit:5 #: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_emoji:5 #: ff6de30aac954fea9e2f208059f9cb4c #: ff6de30aac954fea9e2f208059f9cb4c @@ -9510,24 +10092,26 @@ msgstr "" msgid "The emoji you are deleting." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.delete:9 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.delete:9 #: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_emoji:12 #: 678beeb23b2d4987b952b0071cc7e655 #: 678beeb23b2d4987b952b0071cc7e655 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/emoji.py:docstring of discord.emoji.GuildEmoji.delete:12 #: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_emoji:15 #: d87322ed656a4631bd9fa98caa580e08 #: d87322ed656a4631bd9fa98caa580e08 msgid "You are not allowed to delete emojis." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.delete:13 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji.delete:8 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.delete:13 #: ../../../discord/guild.py:docstring of discord.guild.Guild.delete_emoji:16 #: 595f6eee2e13488f8569abd8053aeeb1 #: 595f6eee2e13488f8569abd8053aeeb1 +#: 595f6eee2e13488f8569abd8053aeeb1 msgid "An error occurred deleting the emoji." msgstr "" @@ -10593,17 +11177,17 @@ msgstr "" msgid "This is identical to :meth:`Client.entitlements` with the ``guild`` parameter." msgstr "" -#: ../../api/models.rst:134 +#: ../../api/models.rst:139 #: fb9668f6a20a4f0bbf8ba6929fd3594b msgid "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." msgstr "" -#: ../../api/models.rst:138 +#: ../../api/models.rst:143 #: 4d8636790bdc471f860037026c9b8f57 msgid "The reason this user was banned." msgstr "" -#: ../../api/models.rst:143 +#: ../../api/models.rst:148 #: 83ffc7d2c2814caa965b59434791892d msgid "The :class:`User` that was banned." msgstr "" @@ -10614,7 +11198,7 @@ msgstr "" #: ../../../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 +#: ../../api/models.rst:150 #: d1bc287ff89b4eea9c60ff6c175ddc51 #: d1bc287ff89b4eea9c60ff6c175ddc51 #: d1bc287ff89b4eea9c60ff6c175ddc51 @@ -11370,25 +11954,6 @@ msgstr "" 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." @@ -11404,6 +11969,9 @@ msgstr "" msgid "Whether the template has unsynced changes." msgstr "" +#: ../../../discord/components.py:docstring of discord.components.Container:37 +#: ../../../discord/components.py:docstring of discord.components.FileComponent:35 +#: ../../../discord/components.py:docstring of discord.components.Thumbnail:29 #: ../../../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 @@ -11414,6 +11982,9 @@ msgstr "" #: ad7ae992e9464d198f1ab9b5ae6b4efa #: ad7ae992e9464d198f1ab9b5ae6b4efa #: ad7ae992e9464d198f1ab9b5ae6b4efa +#: ad7ae992e9464d198f1ab9b5ae6b4efa +#: ad7ae992e9464d198f1ab9b5ae6b4efa +#: ad7ae992e9464d198f1ab9b5ae6b4efa msgid "Optional[:class:`bool`]" msgstr "" @@ -11565,7 +12136,7 @@ msgstr "" msgid "The template url." msgstr "" -#: ../../api/models.rst:166 +#: ../../api/models.rst:171 #: 225faf34ffdd44d1b1e7d780b7711787 msgid "AutoMod" msgstr "" @@ -11659,13 +12230,6 @@ msgstr "" 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." @@ -11922,7 +12486,7 @@ msgstr "" msgid "The total number of unique role and user mentions allowed." msgstr "" -#: ../../api/models.rst:189 +#: ../../api/models.rst:194 #: 30ed9cbe01954df3a16f002ee6bb94c2 msgid "Invites" msgstr "" @@ -12047,6 +12611,7 @@ 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.MediaChannel.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 @@ -12059,12 +12624,14 @@ msgstr "" #: 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.MediaChannel.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 @@ -12078,6 +12645,7 @@ msgstr "" #: d9cb26c43e2f4fdf8263a762822511b3 #: d9cb26c43e2f4fdf8263a762822511b3 #: d9cb26c43e2f4fdf8263a762822511b3 +#: d9cb26c43e2f4fdf8263a762822511b3 msgid "Returns the channel's creation time in UTC." msgstr "" @@ -12221,40 +12789,19 @@ msgstr "" 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`]" +#: ../../../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/invite.py:docstring of discord.invite.Invite:107 @@ -12367,7 +12914,7 @@ msgstr "" msgid "The scheduled event object to link." msgstr "" -#: ../../api/models.rst:207 +#: ../../api/models.rst:212 #: b0b4dba2274847c2bc1e96752ddd4675 msgid "Role" msgstr "" @@ -12448,36 +12995,36 @@ msgid "Multiple roles can have the same position number. As a consequence of thi 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." +#: acd95f70d2cf467092a0fdec7705ec9d +msgid "Indicates if the role is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." msgstr "" -#: ../../../discord/role.py:docstring of discord.role.Role:85 +#: ../../../discord/role.py:docstring of discord.role.Role:87 #: b9bafa1eea5a42449a950ef3b3948003 msgid "Indicates if the role can be mentioned by users." msgstr "" -#: ../../../discord/role.py:docstring of discord.role.Role:91 +#: ../../../discord/role.py:docstring of discord.role.Role:93 #: 90292a8451094a81b831a50845ab0581 msgid "The role tags associated with this role." msgstr "" -#: ../../../discord/role.py:docstring of discord.role.Role:93 +#: ../../../discord/role.py:docstring of discord.role.Role:95 #: ce68cf07f32542ee887cbfe498cd4506 msgid "Optional[:class:`RoleTags`]" msgstr "" -#: ../../../discord/role.py:docstring of discord.role.Role:97 +#: ../../../discord/role.py:docstring of discord.role.Role:99 #: 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 +#: ../../../discord/role.py:docstring of discord.role.Role:108 #: fa704dc55e8b4bc89b983325045fb26e msgid "Extra attributes of the role." msgstr "" -#: ../../../discord/role.py:docstring of discord.role.Role:110 +#: ../../../discord/role.py:docstring of discord.role.Role:112 #: 235c07739380495f822049acb2f71763 msgid ":class:`RoleFlags`" msgstr "" @@ -12498,8 +13045,8 @@ msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the g 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\\``" +#: 57a256a1d1ec47d8bd23a3f5a026fde3 +msgid "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" msgstr "" #: ../../../discord/role.py:docstring of discord.role.Role.is_assignable:1 @@ -12507,6 +13054,27 @@ msgstr "" 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.Role.is_available_for_purchase:1 +#: ../../../discord/role.py:docstring of discord.role.RoleTags.is_available_for_purchase:1 +#: 33a23d7c29004eaaa37ca543e08ac512 +#: 33a23d7c29004eaaa37ca543e08ac512 +msgid "Whether the role is available for purchase." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.is_available_for_purchase:3 +#: ../../../discord/role.py:docstring of discord.role.RoleTags.is_available_for_purchase:3 +#: 3ee6b3f8d1c048f982438c73c203fd20 +#: d4dfc8934fac44858e4bc0b02dc6b489 +msgid "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.Role.is_guild_connections_role:1 +#: ../../../discord/role.py:docstring of discord.role.RoleTags.is_guild_connections_role:1 +#: abaa9e6454b3434897bdb6657fb9c73a +#: abaa9e6454b3434897bdb6657fb9c73a +msgid "Whether the role is a guild connections role. :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." @@ -12654,16 +13222,26 @@ msgstr "" 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 +#: ../../../discord/role.py:docstring of discord.role.RoleTags:9 +#: 382fabd779224b428d4dac3659b03cb7 +msgid "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." +msgstr "" + +#: ../../../discord/role.py:docstring of discord.role.RoleTags:17 #: cefbfbe8367243c9873b7f3e6efd68cf msgid "The bot's user ID that manages this role." msgstr "" -#: ../../../discord/role.py:docstring of discord.role.RoleTags:19 +#: ../../../discord/role.py:docstring of discord.role.RoleTags:23 #: 05a238fa0ee54228891c9067f660ce29 msgid "The integration ID that manages the role." msgstr "" +#: ../../../discord/role.py:docstring of discord.role.RoleTags:29 +#: d1574884bdf44266b4c3364b6f302c7a +msgid "The subscription SKU and listing ID of 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." @@ -12675,11 +13253,11 @@ msgid "Whether the role is the premium subscriber, AKA \"boost\", role for the g msgstr "" #: ../../../discord/role.py:docstring of discord.role.RoleTags.is_integration:1 -#: 8cd2b27c79a1497d9fe2ed01efa457c8 -msgid "Whether the role is managed by an integration." +#: 71708c2052ef460cbf50e18eff7472ff +msgid "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." msgstr "" -#: ../../api/models.rst:220 +#: ../../api/models.rst:225 #: 501c6b29607b4c55ace35858ceb2e513 msgid "Scheduled Event" msgstr "" @@ -13022,7 +13600,7 @@ msgstr "" msgid ":class:`ScheduledEventLocationType`" msgstr "" -#: ../../api/models.rst:231 +#: ../../api/models.rst:236 #: bd728eaba2b94cb59255cd2be9d0a4a5 msgid "Welcome Screen" msgstr "" @@ -13097,7 +13675,12 @@ msgstr "" msgid "The emoji of the channel that is shown on welcome screen." msgstr "" -#: ../../api/models.rst:244 +#: ../../../discord/welcome_screen.py:docstring of discord.welcome_screen.WelcomeScreenChannel:21 +#: d0fdab02f7ff4c81b105f060099ea6dd +msgid "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "" + +#: ../../api/models.rst:249 #: e2ae072aa4324f3fb90878fc5cfbd742 msgid "Onboarding" msgstr "" @@ -13308,7 +13891,7 @@ msgstr "" #: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:27 #: 201b7a7c20b7462080d7ef962f18c186 -msgid "Union[:class:`Emoji`, :class:`PartialEmoji`]" +msgid "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" msgstr "" #: ../../../discord/onboarding.py:docstring of discord.onboarding.PromptOption:31 @@ -13321,7 +13904,7 @@ msgstr "" msgid "The option's description." msgstr "" -#: ../../api/models.rst:262 +#: ../../api/models.rst:267 #: 336df85a4c564d0e9187eaaab07e05fc msgid "Integration" msgstr "" @@ -13580,7 +14163,7 @@ msgstr "" msgid "Syncing the integration failed." msgstr "" -#: ../../api/models.rst:280 +#: ../../api/models.rst:285 #: 9cf29fbd2890454db490e0730bd67152 msgid "Widget" msgstr "" @@ -13785,7 +14368,7 @@ msgstr "" msgid "Returns the member's display name." msgstr "" -#: ../../api/models.rst:299 +#: ../../api/models.rst:304 #: 37c503ce08c645ed80617cb4dae9b391 msgid "Threads" msgstr "" @@ -13912,6 +14495,7 @@ 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.MediaChannel:100 #: ../../../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 @@ -13922,6 +14506,7 @@ msgstr "" #: f03b50bb386e47e88f5080d349b75439 #: f03b50bb386e47e88f5080d349b75439 #: f03b50bb386e47e88f5080d349b75439 +#: f03b50bb386e47e88f5080d349b75439 msgid ":class:`ChannelFlags`" msgstr "" @@ -13934,6 +14519,7 @@ msgstr "" #: ../../../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.MediaChannel.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 @@ -13946,6 +14532,7 @@ msgstr "" #: 4e301d5d8f414b4a8fca6cb4433976e7 #: 4e301d5d8f414b4a8fca6cb4433976e7 #: 4e301d5d8f414b4a8fca6cb4433976e7 +#: 4e301d5d8f414b4a8fca6cb4433976e7 msgid "The channel's Discord type." msgstr "" @@ -13986,13 +14573,15 @@ msgstr "" #: ../../../discord/threads.py:docstring of discord.Thread.applied_tags:3 #: 520a7a4a8aeb471a9616b98069fe4e20 -msgid "This is only available for threads in forum channels." +msgid "This is only available for threads in forum or media channels." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:110 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel:106 #: ../../../discord/threads.py:docstring of discord.Thread.applied_tags:5 #: 22ee64cf3e304d3fa699868a43f6e342 #: 22ee64cf3e304d3fa699868a43f6e342 +#: 22ee64cf3e304d3fa699868a43f6e342 msgid "List[:class:`ForumTag`]" msgstr "" @@ -14002,6 +14591,7 @@ 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.MediaChannel.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 @@ -14013,10 +14603,12 @@ msgstr "" #: 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.MediaChannel.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 @@ -14026,10 +14618,12 @@ msgstr "" #: 086f64f83b2e45448c6e193790788fb9 #: 086f64f83b2e45448c6e193790788fb9 #: 086f64f83b2e45448c6e193790788fb9 +#: 086f64f83b2e45448c6e193790788fb9 msgid "Reliable Fetching" msgstr "" #: ../../../discord/channel.py:docstring of discord.ForumChannel.last_message:8 +#: ../../../discord/channel.py:docstring of discord.MediaChannel.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 @@ -14039,10 +14633,12 @@ msgstr "" #: 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.MediaChannel.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 @@ -14052,10 +14648,12 @@ msgstr "" #: 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.MediaChannel.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 @@ -14081,6 +14679,7 @@ msgstr "" #: 8bb271610b164ef2a44fba616a0bb416 #: 8bb271610b164ef2a44fba616a0bb416 #: 8bb271610b164ef2a44fba616a0bb416 +#: 8bb271610b164ef2a44fba616a0bb416 msgid "Optional[:class:`Message`]" msgstr "" @@ -14133,7 +14732,7 @@ 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\\``" +msgid "Whether the thread is pinned to the top of its parent forum or media channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" msgstr "" #: ../../../discord/threads.py:docstring of discord.threads.Thread.is_private:1 @@ -14176,6 +14775,7 @@ msgstr "" #: 692f32fef56d4dc2a04da0f0d03690c3 #: 692f32fef56d4dc2a04da0f0d03690c3 #: 692f32fef56d4dc2a04da0f0d03690c3 +#: 692f32fef56d4dc2a04da0f0d03690c3 msgid "Handles permission resolution for the :class:`~discord.Member` or :class:`~discord.Role`." msgstr "" @@ -14194,6 +14794,7 @@ msgstr "" #: 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 "" @@ -14207,6 +14808,7 @@ msgstr "" #: 4affbef6d844449eb70b5f03da656576 #: 4affbef6d844449eb70b5f03da656576 #: 4affbef6d844449eb70b5f03da656576 +#: 4affbef6d844449eb70b5f03da656576 msgid "The resolved permissions for the member or role." msgstr "" @@ -14220,6 +14822,7 @@ msgstr "" #: ebe51a2429f948418f2ba027284602e4 #: ebe51a2429f948418f2ba027284602e4 #: ebe51a2429f948418f2ba027284602e4 +#: ebe51a2429f948418f2ba027284602e4 msgid ":class:`~discord.Permissions`" msgstr "" @@ -14237,6 +14840,7 @@ msgstr "" #: efb41e6c99054ced96096e8407c04478 #: efb41e6c99054ced96096e8407c04478 #: efb41e6c99054ced96096e8407c04478 +#: efb41e6c99054ced96096e8407c04478 msgid "Deletes a list of messages. This is similar to :meth:`Message.delete` except it bulk deletes multiple messages." msgstr "" @@ -14249,6 +14853,7 @@ msgstr "" #: 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 "" @@ -14261,6 +14866,7 @@ msgstr "" #: 44d243e208e74dabaf00f2898f37a386 #: 44d243e208e74dabaf00f2898f37a386 #: 44d243e208e74dabaf00f2898f37a386 +#: 44d243e208e74dabaf00f2898f37a386 msgid "You cannot bulk delete more than 100 messages or messages that are older than 14 days old." msgstr "" @@ -14273,6 +14879,7 @@ msgstr "" #: 12ac8c2d1ee24602b36d469637750012 #: 12ac8c2d1ee24602b36d469637750012 #: 12ac8c2d1ee24602b36d469637750012 +#: 12ac8c2d1ee24602b36d469637750012 msgid "You must have the :attr:`~Permissions.manage_messages` permission to use this." msgstr "" @@ -14290,6 +14897,7 @@ msgstr "" #: 258275aa7a7f40928cd773403e9d2750 #: 258275aa7a7f40928cd773403e9d2750 #: 258275aa7a7f40928cd773403e9d2750 +#: 258275aa7a7f40928cd773403e9d2750 msgid "An iterable of messages denoting which ones to bulk delete." msgstr "" @@ -14311,6 +14919,8 @@ msgstr "" #: 8fc880d585134a17a0024216a1164444 #: 8fc880d585134a17a0024216a1164444 #: 8fc880d585134a17a0024216a1164444 +#: 8fc880d585134a17a0024216a1164444 +#: 8fc880d585134a17a0024216a1164444 msgid "The reason for deleting the messages. Shows up on the audit log." msgstr "" @@ -14323,6 +14933,7 @@ msgstr "" #: a1442b5bbdf74f6e8b31ae84a2726b54 #: a1442b5bbdf74f6e8b31ae84a2726b54 #: a1442b5bbdf74f6e8b31ae84a2726b54 +#: a1442b5bbdf74f6e8b31ae84a2726b54 msgid "The number of messages to delete was more than 100." msgstr "" @@ -14340,6 +14951,7 @@ msgstr "" #: 8411b93430f2431482fd0973f5fe5166 #: 8411b93430f2431482fd0973f5fe5166 #: 8411b93430f2431482fd0973f5fe5166 +#: 8411b93430f2431482fd0973f5fe5166 msgid "If single delete, then the message was already deleted." msgstr "" @@ -14352,6 +14964,7 @@ msgstr "" #: 313dc26247974242aaf1193cdd259b8f #: 313dc26247974242aaf1193cdd259b8f #: 313dc26247974242aaf1193cdd259b8f +#: 313dc26247974242aaf1193cdd259b8f msgid "Deleting the messages failed." msgstr "" @@ -14364,6 +14977,7 @@ msgstr "" #: 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 "" @@ -14381,6 +14995,7 @@ msgstr "" #: 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 "" @@ -14393,6 +15008,7 @@ msgstr "" #: 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 "" @@ -14405,6 +15021,7 @@ msgstr "" #: 6e83155f849f4352a4bfa760384b8b9e #: 6e83155f849f4352a4bfa760384b8b9e #: 6e83155f849f4352a4bfa760384b8b9e +#: 6e83155f849f4352a4bfa760384b8b9e msgid "Same as ``before`` in :meth:`history`." msgstr "" @@ -14417,6 +15034,7 @@ msgstr "" #: 7aa18cb895d644e19053e2eec14ee6c0 #: 7aa18cb895d644e19053e2eec14ee6c0 #: 7aa18cb895d644e19053e2eec14ee6c0 +#: 7aa18cb895d644e19053e2eec14ee6c0 msgid "Same as ``after`` in :meth:`history`." msgstr "" @@ -14429,6 +15047,7 @@ msgstr "" #: 083fb0803d4f4b939e1a15944a2584cf #: 083fb0803d4f4b939e1a15944a2584cf #: 083fb0803d4f4b939e1a15944a2584cf +#: 083fb0803d4f4b939e1a15944a2584cf msgid "Same as ``around`` in :meth:`history`." msgstr "" @@ -14441,6 +15060,7 @@ msgstr "" #: 0a6dd8d4b88c4a3e9b3e4e250790250e #: 0a6dd8d4b88c4a3e9b3e4e250790250e #: 0a6dd8d4b88c4a3e9b3e4e250790250e +#: 0a6dd8d4b88c4a3e9b3e4e250790250e msgid "Same as ``oldest_first`` in :meth:`history`." msgstr "" @@ -14453,6 +15073,7 @@ msgstr "" #: 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 "" @@ -14465,6 +15086,7 @@ msgstr "" #: e2aad5ac64c24915bdc0bbe81ec6228f #: e2aad5ac64c24915bdc0bbe81ec6228f #: e2aad5ac64c24915bdc0bbe81ec6228f +#: e2aad5ac64c24915bdc0bbe81ec6228f msgid "The list of messages that were deleted." msgstr "" @@ -14477,6 +15099,7 @@ msgstr "" #: b0c8e3b1df6f47d9a418cb9029926cb7 #: b0c8e3b1df6f47d9a418cb9029926cb7 #: b0c8e3b1df6f47d9a418cb9029926cb7 +#: b0c8e3b1df6f47d9a418cb9029926cb7 msgid "List[:class:`.Message`]" msgstr "" @@ -14489,6 +15112,7 @@ msgstr "" #: 75f5a744aaeb45b9800325ba52e32825 #: 75f5a744aaeb45b9800325ba52e32825 #: 75f5a744aaeb45b9800325ba52e32825 +#: 75f5a744aaeb45b9800325ba52e32825 msgid "You do not have proper permissions to do the actions required." msgstr "" @@ -14501,6 +15125,7 @@ msgstr "" #: 55ac3c5f07e84d59b3459547d1ec5ebb #: 55ac3c5f07e84d59b3459547d1ec5ebb #: 55ac3c5f07e84d59b3459547d1ec5ebb +#: 55ac3c5f07e84d59b3459547d1ec5ebb msgid "Purging the messages failed." msgstr "" @@ -14513,6 +15138,7 @@ msgstr "" #: 67669bca174940f0a790b768a423a88b #: 67669bca174940f0a790b768a423a88b #: 67669bca174940f0a790b768a423a88b +#: 67669bca174940f0a790b768a423a88b msgid "Deleting bot's messages ::" msgstr "" @@ -14563,7 +15189,7 @@ 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." +msgid "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." msgstr "" #: ../../../discord/threads.py:docstring of discord.threads.Thread.edit:40 @@ -14587,6 +15213,7 @@ msgstr "" #: 0be10d93f961436c9de4fab78f0fe327 #: 0be10d93f961436c9de4fab78f0fe327 #: 0be10d93f961436c9de4fab78f0fe327 +#: 0be10d93f961436c9de4fab78f0fe327 msgid ":class:`Thread`" msgstr "" @@ -14792,7 +15419,7 @@ msgstr "" msgid "The thread this member belongs to." msgstr "" -#: ../../api/models.rst:320 +#: ../../api/models.rst:325 #: 74f4a8b9588440d094786e1993d7e7b4 msgid "Stages" msgstr "" @@ -14806,6 +15433,7 @@ msgstr "" #: ../../../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.MediaChannel: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 @@ -14816,6 +15444,7 @@ msgstr "" #: cbc78674793e480aaaf2d52a99574eb8 #: cbc78674793e480aaaf2d52a99574eb8 #: cbc78674793e480aaaf2d52a99574eb8 +#: cbc78674793e480aaaf2d52a99574eb8 msgid "Checks if two channels are equal." msgstr "" @@ -14823,6 +15452,7 @@ msgstr "" #: ../../../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.MediaChannel: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 @@ -14833,12 +15463,14 @@ msgstr "" #: 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.MediaChannel: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 @@ -14848,10 +15480,12 @@ msgstr "" #: 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.MediaChannel: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 @@ -14859,10 +15493,12 @@ msgstr "" #: 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.MediaChannel:25 #: ../../../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 @@ -14870,10 +15506,12 @@ msgstr "" #: 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.MediaChannel:31 #: ../../../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 @@ -14881,10 +15519,12 @@ msgstr "" #: 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.MediaChannel:37 #: ../../../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 @@ -14892,6 +15532,7 @@ msgstr "" #: 10d9af8b3c114f4f9be973e412b03fb3 #: 10d9af8b3c114f4f9be973e412b03fb3 #: 10d9af8b3c114f4f9be973e412b03fb3 +#: 10d9af8b3c114f4f9be973e412b03fb3 msgid "The channel ID." msgstr "" @@ -14901,6 +15542,7 @@ 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.MediaChannel:43 #: ../../../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 @@ -14908,10 +15550,12 @@ msgstr "" #: 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.MediaChannel:59 #: ../../../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 @@ -14919,6 +15563,7 @@ msgstr "" #: 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 "" @@ -14955,6 +15600,7 @@ 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.MediaChannel: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 @@ -14963,6 +15609,7 @@ msgstr "" #: 0e3d32b5c2244ca6a0d83a892a081f8d #: 0e3d32b5c2244ca6a0d83a892a081f8d #: 0e3d32b5c2244ca6a0d83a892a081f8d +#: 0e3d32b5c2244ca6a0d83a892a081f8d msgid "Extra features of the channel." msgstr "" @@ -14993,10 +15640,12 @@ msgstr "" #: 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.MediaChannel.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 @@ -15004,6 +15653,7 @@ msgstr "" #: 0605656b32984ab9a75c79ef67a728b8 #: 0605656b32984ab9a75c79ef67a728b8 #: 0605656b32984ab9a75c79ef67a728b8 +#: 0605656b32984ab9a75c79ef67a728b8 msgid "Fetches the last message from this channel in cache." msgstr "" @@ -15014,6 +15664,7 @@ msgstr "" #: c129d88ab0874303b120799a19d7c0ec #: c129d88ab0874303b120799a19d7c0ec #: c129d88ab0874303b120799a19d7c0ec +#: c129d88ab0874303b120799a19d7c0ec msgid "You do not have proper permissions to delete the messages." msgstr "" @@ -15024,6 +15675,7 @@ msgstr "" #: 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 "" @@ -15034,6 +15686,7 @@ msgstr "" #: 4a1a304024aa4bbb960259df3ba1226e #: 4a1a304024aa4bbb960259df3ba1226e #: 4a1a304024aa4bbb960259df3ba1226e +#: 4a1a304024aa4bbb960259df3ba1226e msgid "Gets the list of webhooks from this channel." msgstr "" @@ -15044,6 +15697,7 @@ msgstr "" #: 85ddcd8c95604e5fb9d65095ba79d614 #: 85ddcd8c95604e5fb9d65095ba79d614 #: 85ddcd8c95604e5fb9d65095ba79d614 +#: 85ddcd8c95604e5fb9d65095ba79d614 msgid "The webhooks for this channel." msgstr "" @@ -15054,6 +15708,7 @@ msgstr "" #: 77801db3060a4d5a90b6e7d0b67b7bc3 #: 77801db3060a4d5a90b6e7d0b67b7bc3 #: 77801db3060a4d5a90b6e7d0b67b7bc3 +#: 77801db3060a4d5a90b6e7d0b67b7bc3 msgid "Creates a webhook for this channel." msgstr "" @@ -15064,6 +15719,7 @@ msgstr "" #: 1ea0953ddb0b4b89b78d9d96a62ccf8f #: 1ea0953ddb0b4b89b78d9d96a62ccf8f #: 1ea0953ddb0b4b89b78d9d96a62ccf8f +#: 1ea0953ddb0b4b89b78d9d96a62ccf8f msgid "Added the ``reason`` keyword-only parameter." msgstr "" @@ -15074,6 +15730,7 @@ msgstr "" #: c3a5508c1b064afc9513a06272a1fd9c #: c3a5508c1b064afc9513a06272a1fd9c #: c3a5508c1b064afc9513a06272a1fd9c +#: c3a5508c1b064afc9513a06272a1fd9c msgid "The webhook's name." msgstr "" @@ -15084,6 +15741,7 @@ msgstr "" #: 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 "" @@ -15094,6 +15752,7 @@ msgstr "" #: 879233ad70174408b4dfc419d65951e2 #: 879233ad70174408b4dfc419d65951e2 #: 879233ad70174408b4dfc419d65951e2 +#: 879233ad70174408b4dfc419d65951e2 msgid "The reason for creating this webhook. Shows up in the audit logs." msgstr "" @@ -15107,6 +15766,8 @@ msgstr "" #: ad33f0ecada7446aa29ccb4cb4652d46 #: ad33f0ecada7446aa29ccb4cb4652d46 #: ad33f0ecada7446aa29ccb4cb4652d46 +#: ad33f0ecada7446aa29ccb4cb4652d46 +#: ad33f0ecada7446aa29ccb4cb4652d46 msgid "The created webhook." msgstr "" @@ -15120,6 +15781,8 @@ msgstr "" #: a1ab293dca0a4d679744b60f873832a7 #: a1ab293dca0a4d679744b60f873832a7 #: a1ab293dca0a4d679744b60f873832a7 +#: a1ab293dca0a4d679744b60f873832a7 +#: a1ab293dca0a4d679744b60f873832a7 msgid ":class:`Webhook`" msgstr "" @@ -15130,6 +15793,7 @@ msgstr "" #: fcad9386059d42feb4e79e5a14931208 #: fcad9386059d42feb4e79e5a14931208 #: fcad9386059d42feb4e79e5a14931208 +#: fcad9386059d42feb4e79e5a14931208 msgid "Creating the webhook failed." msgstr "" @@ -15140,6 +15804,7 @@ msgstr "" #: 81fb2b5fd70b4af792ed7a8d92cbfb55 #: 81fb2b5fd70b4af792ed7a8d92cbfb55 #: 81fb2b5fd70b4af792ed7a8d92cbfb55 +#: 81fb2b5fd70b4af792ed7a8d92cbfb55 msgid "You do not have permissions to create a webhook." msgstr "" @@ -15157,6 +15822,7 @@ msgstr "" #: 713c44f071794ebf9a814632d2c5da11 #: 713c44f071794ebf9a814632d2c5da11 #: 713c44f071794ebf9a814632d2c5da11 +#: 713c44f071794ebf9a814632d2c5da11 msgid "Clones this channel. This creates a channel with the same properties as this channel." msgstr "" @@ -15176,6 +15842,8 @@ msgstr "" #: fa64ba8bf0624293b23cc2cc03daf2b4 #: fa64ba8bf0624293b23cc2cc03daf2b4 #: fa64ba8bf0624293b23cc2cc03daf2b4 +#: fa64ba8bf0624293b23cc2cc03daf2b4 +#: fa64ba8bf0624293b23cc2cc03daf2b4 msgid "You must have the :attr:`~discord.Permissions.manage_channels` permission to do this." msgstr "" @@ -15188,6 +15856,7 @@ msgstr "" #: f1500ea7686647ea9b0c9b51d0928759 #: f1500ea7686647ea9b0c9b51d0928759 #: f1500ea7686647ea9b0c9b51d0928759 +#: f1500ea7686647ea9b0c9b51d0928759 msgid "The name of the new channel. If not provided, defaults to this channel name." msgstr "" @@ -15200,6 +15869,7 @@ msgstr "" #: dc75b4e91a0f4f2a8abef5896e012117 #: dc75b4e91a0f4f2a8abef5896e012117 #: dc75b4e91a0f4f2a8abef5896e012117 +#: dc75b4e91a0f4f2a8abef5896e012117 msgid "The reason for cloning this channel. Shows up on the audit log." msgstr "" @@ -15212,6 +15882,7 @@ msgstr "" #: a01edf3b9cdb4626b6737bfec16c617d #: a01edf3b9cdb4626b6737bfec16c617d #: a01edf3b9cdb4626b6737bfec16c617d +#: a01edf3b9cdb4626b6737bfec16c617d msgid ":class:`.abc.GuildChannel`" msgstr "" @@ -15227,6 +15898,7 @@ 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.MediaChannel.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 @@ -15241,6 +15913,7 @@ msgstr "" #: 3788fffc313c4e17a7031c304b84dbf1 #: 3788fffc313c4e17a7031c304b84dbf1 #: 3788fffc313c4e17a7031c304b84dbf1 +#: 3788fffc313c4e17a7031c304b84dbf1 msgid "You must have the :attr:`~Permissions.manage_channels` permission to use this." msgstr "" @@ -15315,6 +15988,7 @@ 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.MediaChannel.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 @@ -15323,6 +15997,7 @@ msgstr "" #: b2e2f851c87a4d75806ec5d84d91f6a8 #: b2e2f851c87a4d75806ec5d84d91f6a8 #: b2e2f851c87a4d75806ec5d84d91f6a8 +#: b2e2f851c87a4d75806ec5d84d91f6a8 msgid "Edits the channel." msgstr "" @@ -15350,6 +16025,7 @@ msgid "The new channel's name." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:12 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel.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 @@ -15357,10 +16033,12 @@ msgstr "" #: 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.MediaChannel.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 @@ -15368,10 +16046,12 @@ msgstr "" #: 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.MediaChannel.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 @@ -15379,10 +16059,12 @@ msgstr "" #: 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.MediaChannel.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 @@ -15390,11 +16072,13 @@ msgstr "" #: 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.MediaChannel.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 @@ -15403,6 +16087,7 @@ msgstr "" #: e9fbe45828cb4bd19e93296ab98065b3 #: e9fbe45828cb4bd19e93296ab98065b3 #: e9fbe45828cb4bd19e93296ab98065b3 +#: e9fbe45828cb4bd19e93296ab98065b3 msgid "The overwrites to apply to channel permissions. Useful for creating secret channels." msgstr "" @@ -15434,6 +16119,7 @@ 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.MediaChannel.edit:53 #: ../../../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 @@ -15441,10 +16127,12 @@ msgstr "" #: 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.MediaChannel.edit:54 #: ../../../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 @@ -15452,11 +16140,13 @@ msgstr "" #: 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.MediaChannel.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 @@ -15465,11 +16155,13 @@ msgstr "" #: 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.MediaChannel.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 @@ -15478,11 +16170,13 @@ msgstr "" #: 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.MediaChannel.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 @@ -15491,6 +16185,7 @@ msgstr "" #: 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 "" @@ -15560,6 +16255,7 @@ msgstr "" #: 8284b6f7a985425eb7b9096b97fee46f #: 8284b6f7a985425eb7b9096b97fee46f #: 8284b6f7a985425eb7b9096b97fee46f +#: 8284b6f7a985425eb7b9096b97fee46f msgid "Creates an instant invite from a text or voice channel." msgstr "" @@ -15569,6 +16265,7 @@ msgstr "" #: 70c428800cb74bfdb244a446a5c7f7ed #: 70c428800cb74bfdb244a446a5c7f7ed #: 70c428800cb74bfdb244a446a5c7f7ed +#: 70c428800cb74bfdb244a446a5c7f7ed msgid "You must have the :attr:`~discord.Permissions.create_instant_invite` permission to do this." msgstr "" @@ -15580,6 +16277,7 @@ msgstr "" #: 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 "" @@ -15591,6 +16289,7 @@ msgstr "" #: 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 "" @@ -15602,6 +16301,7 @@ msgstr "" #: a639ea144cef4a2d8e7b0b5d1a2db86a #: a639ea144cef4a2d8e7b0b5d1a2db86a #: a639ea144cef4a2d8e7b0b5d1a2db86a +#: a639ea144cef4a2d8e7b0b5d1a2db86a msgid "Denotes that the invite grants temporary membership (i.e. they get kicked after they disconnect). Defaults to ``False``." msgstr "" @@ -15613,6 +16313,7 @@ msgstr "" #: 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 "" @@ -15624,6 +16325,7 @@ msgstr "" #: 3e5d68bfef38424ea4dd2e8dec8ea22e #: 3e5d68bfef38424ea4dd2e8dec8ea22e #: 3e5d68bfef38424ea4dd2e8dec8ea22e +#: 3e5d68bfef38424ea4dd2e8dec8ea22e msgid "The reason for creating this invite. Shows up on the audit log." msgstr "" @@ -15633,6 +16335,7 @@ msgstr "" #: f7c3557ed02049ffa29494923a1632a1 #: f7c3557ed02049ffa29494923a1632a1 #: f7c3557ed02049ffa29494923a1632a1 +#: f7c3557ed02049ffa29494923a1632a1 msgid "The type of target for the voice channel invite, if any. .. versionadded:: 2.0" msgstr "" @@ -15642,6 +16345,7 @@ msgstr "" #: 7856f6d98f9b4686a4aae6e6dc45240f #: 7856f6d98f9b4686a4aae6e6dc45240f #: 7856f6d98f9b4686a4aae6e6dc45240f +#: 7856f6d98f9b4686a4aae6e6dc45240f msgid "The type of target for the voice channel invite, if any." msgstr "" @@ -15651,6 +16355,7 @@ msgstr "" #: 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 "" @@ -15660,6 +16365,7 @@ msgstr "" #: 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 "" @@ -15669,6 +16375,7 @@ msgstr "" #: 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 "" @@ -15678,6 +16385,7 @@ msgstr "" #: 46f587a58bad446fbfa6950cdc349794 #: 46f587a58bad446fbfa6950cdc349794 #: 46f587a58bad446fbfa6950cdc349794 +#: 46f587a58bad446fbfa6950cdc349794 msgid "The id of the embedded application for the invite, required if `target_type` is `TargetType.embedded_application`." msgstr "" @@ -15687,6 +16395,7 @@ msgstr "" #: 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 "" @@ -15696,6 +16405,7 @@ msgstr "" #: fa1870165cd547d0ac1334f32bb75083 #: fa1870165cd547d0ac1334f32bb75083 #: fa1870165cd547d0ac1334f32bb75083 +#: fa1870165cd547d0ac1334f32bb75083 msgid "The scheduled event object to link to the event. Shortcut to :meth:`.Invite.set_scheduled_event`" msgstr "" @@ -15705,6 +16415,7 @@ msgstr "" #: d5fe56ca5d4e4b62bb563b9daab914c9 #: d5fe56ca5d4e4b62bb563b9daab914c9 #: d5fe56ca5d4e4b62bb563b9daab914c9 +#: d5fe56ca5d4e4b62bb563b9daab914c9 msgid "See :meth:`.Invite.set_scheduled_event` for more info on event invite linking." msgstr "" @@ -15716,6 +16427,7 @@ msgstr "" #: ad6d07cc0ecc4daf8e70e62b42c54694 #: ad6d07cc0ecc4daf8e70e62b42c54694 #: ad6d07cc0ecc4daf8e70e62b42c54694 +#: ad6d07cc0ecc4daf8e70e62b42c54694 msgid "The invite that was created." msgstr "" @@ -15727,6 +16439,7 @@ msgstr "" #: a44a756d8ef54c06b9c598b3c5057293 #: a44a756d8ef54c06b9c598b3c5057293 #: a44a756d8ef54c06b9c598b3c5057293 +#: a44a756d8ef54c06b9c598b3c5057293 msgid ":class:`~discord.Invite`" msgstr "" @@ -15738,6 +16451,7 @@ msgstr "" #: c31e3444e11d47d5a0c7c01273e242e2 #: c31e3444e11d47d5a0c7c01273e242e2 #: c31e3444e11d47d5a0c7c01273e242e2 +#: c31e3444e11d47d5a0c7c01273e242e2 msgid "Invite creation failed." msgstr "" @@ -15747,6 +16461,7 @@ msgstr "" #: e7cf9d4d551c4341a736ddfb07f036b8 #: e7cf9d4d551c4341a736ddfb07f036b8 #: e7cf9d4d551c4341a736ddfb07f036b8 +#: e7cf9d4d551c4341a736ddfb07f036b8 msgid "The channel that was passed is a category or an invalid channel." msgstr "" @@ -15756,6 +16471,7 @@ msgstr "" #: 76d4b05d53d24bb89f07ef3ea80937ae #: 76d4b05d53d24bb89f07ef3ea80937ae #: 76d4b05d53d24bb89f07ef3ea80937ae +#: 76d4b05d53d24bb89f07ef3ea80937ae msgid "Deletes the channel." msgstr "" @@ -15765,6 +16481,7 @@ msgstr "" #: 790b7e62afe845a6b6bb0860e617ff2e #: 790b7e62afe845a6b6bb0860e617ff2e #: 790b7e62afe845a6b6bb0860e617ff2e +#: 790b7e62afe845a6b6bb0860e617ff2e msgid "You must have :attr:`~discord.Permissions.manage_channels` permission to use this." msgstr "" @@ -15774,6 +16491,7 @@ msgstr "" #: 8db538d28f594660bf8aa72c650e4d61 #: 8db538d28f594660bf8aa72c650e4d61 #: 8db538d28f594660bf8aa72c650e4d61 +#: 8db538d28f594660bf8aa72c650e4d61 msgid "The reason for deleting this channel. Shows up on the audit log." msgstr "" @@ -15783,6 +16501,7 @@ msgstr "" #: 0bde2d677c4c442d81074ef53bffa892 #: 0bde2d677c4c442d81074ef53bffa892 #: 0bde2d677c4c442d81074ef53bffa892 +#: 0bde2d677c4c442d81074ef53bffa892 msgid "You do not have proper permissions to delete the channel." msgstr "" @@ -15792,6 +16511,7 @@ msgstr "" #: 76703abb28a94196bc3fe2539ff0fd17 #: 76703abb28a94196bc3fe2539ff0fd17 #: 76703abb28a94196bc3fe2539ff0fd17 +#: 76703abb28a94196bc3fe2539ff0fd17 msgid "The channel was not found or was already deleted." msgstr "" @@ -15801,6 +16521,7 @@ msgstr "" #: 2242d4491ce5454f938e820c8e6e0f88 #: 2242d4491ce5454f938e820c8e6e0f88 #: 2242d4491ce5454f938e820c8e6e0f88 +#: 2242d4491ce5454f938e820c8e6e0f88 msgid "Deleting the channel failed." msgstr "" @@ -15810,6 +16531,7 @@ msgstr "" #: dbc4b30c00eb410ebe53ad9b4896990c #: dbc4b30c00eb410ebe53ad9b4896990c #: dbc4b30c00eb410ebe53ad9b4896990c +#: dbc4b30c00eb410ebe53ad9b4896990c msgid "Returns a list of all active instant invites from this channel." msgstr "" @@ -15819,6 +16541,7 @@ msgstr "" #: 5fcbbff57b014ff6a73619b4e701ef56 #: 5fcbbff57b014ff6a73619b4e701ef56 #: 5fcbbff57b014ff6a73619b4e701ef56 +#: 5fcbbff57b014ff6a73619b4e701ef56 msgid "You must have :attr:`~discord.Permissions.manage_channels` to get this information." msgstr "" @@ -15828,6 +16551,7 @@ msgstr "" #: 05cac3b74a5f4adaad5d3d265f4819de #: 05cac3b74a5f4adaad5d3d265f4819de #: 05cac3b74a5f4adaad5d3d265f4819de +#: 05cac3b74a5f4adaad5d3d265f4819de msgid "List[:class:`~discord.Invite`]" msgstr "" @@ -15835,6 +16559,7 @@ msgstr "" #: ../../../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.MediaChannel.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 @@ -15845,6 +16570,7 @@ msgstr "" #: 61992eebcf9d49e5b62a6f71ca4ffa9d #: 61992eebcf9d49e5b62a6f71ca4ffa9d #: 61992eebcf9d49e5b62a6f71ca4ffa9d +#: 61992eebcf9d49e5b62a6f71ca4ffa9d msgid "Returns a URL that allows the client to jump to the channel." msgstr "" @@ -15862,6 +16588,7 @@ msgstr "" #: 928cb0355b304182beda16e7827b0e90 #: 928cb0355b304182beda16e7827b0e90 #: 928cb0355b304182beda16e7827b0e90 +#: 928cb0355b304182beda16e7827b0e90 msgid "A rich interface to help move a channel relative to other channels." msgstr "" @@ -15872,6 +16599,7 @@ msgstr "" #: 62bbf4b228aa4f73963ec11bde6809b4 #: 62bbf4b228aa4f73963ec11bde6809b4 #: 62bbf4b228aa4f73963ec11bde6809b4 +#: 62bbf4b228aa4f73963ec11bde6809b4 msgid "If exact position movement is required, ``edit`` should be used instead." msgstr "" @@ -15882,6 +16610,7 @@ msgstr "" #: 64354ecf425049c18b97220a3cc8b93f #: 64354ecf425049c18b97220a3cc8b93f #: 64354ecf425049c18b97220a3cc8b93f +#: 64354ecf425049c18b97220a3cc8b93f msgid "Voice channels will always be sorted below text channels. This is a Discord limitation." msgstr "" @@ -15892,6 +16621,7 @@ msgstr "" #: 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 "" @@ -15902,6 +16632,7 @@ msgstr "" #: 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 "" @@ -15912,6 +16643,7 @@ msgstr "" #: 1f21d2ba65cc4e88bc94ccc4a533aba5 #: 1f21d2ba65cc4e88bc94ccc4a533aba5 #: 1f21d2ba65cc4e88bc94ccc4a533aba5 +#: 1f21d2ba65cc4e88bc94ccc4a533aba5 msgid "The channel that should be before our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``after``." msgstr "" @@ -15922,6 +16654,7 @@ msgstr "" #: 6f149660295343d2bef512e3122f3cf9 #: 6f149660295343d2bef512e3122f3cf9 #: 6f149660295343d2bef512e3122f3cf9 +#: 6f149660295343d2bef512e3122f3cf9 msgid "The channel that should be after our current channel. This is mutually exclusive with ``beginning``, ``end``, and ``before``." msgstr "" @@ -15932,6 +16665,7 @@ msgstr "" #: 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 "" @@ -15942,6 +16676,7 @@ msgstr "" #: 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 "" @@ -15952,6 +16687,7 @@ msgstr "" #: b43c9a7f761945eaa7ff4de5fc52e741 #: b43c9a7f761945eaa7ff4de5fc52e741 #: b43c9a7f761945eaa7ff4de5fc52e741 +#: b43c9a7f761945eaa7ff4de5fc52e741 msgid "Whether to sync the permissions with the category (if given)." msgstr "" @@ -15962,6 +16698,7 @@ msgstr "" #: e78b0fba71c449c6b22bc68d7a42b8b7 #: e78b0fba71c449c6b22bc68d7a42b8b7 #: e78b0fba71c449c6b22bc68d7a42b8b7 +#: e78b0fba71c449c6b22bc68d7a42b8b7 msgid "The reason for the move." msgstr "" @@ -15972,6 +16709,7 @@ msgstr "" #: eb8261bde35e4cf4b4cd36dcbf3084a6 #: eb8261bde35e4cf4b4cd36dcbf3084a6 #: eb8261bde35e4cf4b4cd36dcbf3084a6 +#: eb8261bde35e4cf4b4cd36dcbf3084a6 msgid "An invalid position was given or a bad mix of arguments was passed." msgstr "" @@ -15982,6 +16720,7 @@ msgstr "" #: ec5967cc04484df9aaaa322214ff2ebf #: ec5967cc04484df9aaaa322214ff2ebf #: ec5967cc04484df9aaaa322214ff2ebf +#: ec5967cc04484df9aaaa322214ff2ebf msgid "You do not have permissions to move the channel." msgstr "" @@ -15991,12 +16730,14 @@ msgstr "" #: 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.MediaChannel.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 @@ -16005,11 +16746,13 @@ msgstr "" #: 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.MediaChannel.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 @@ -16018,11 +16761,13 @@ msgstr "" #: 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.MediaChannel.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 @@ -16031,11 +16776,13 @@ msgstr "" #: 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.MediaChannel.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 @@ -16044,6 +16791,7 @@ msgstr "" #: 83956f5a5333400b902ec3cbf55ef987 #: 83956f5a5333400b902ec3cbf55ef987 #: 83956f5a5333400b902ec3cbf55ef987 +#: 83956f5a5333400b902ec3cbf55ef987 msgid "Dict[Union[:class:`~discord.Role`, :class:`~discord.Member`], :class:`~discord.PermissionOverwrite`]" msgstr "" @@ -16053,6 +16801,7 @@ msgstr "" #: f9b2ad6e19814664ac9b8151811dd122 #: f9b2ad6e19814664ac9b8151811dd122 #: f9b2ad6e19814664ac9b8151811dd122 +#: f9b2ad6e19814664ac9b8151811dd122 msgid "Returns the channel-specific overwrites for a member or a role." msgstr "" @@ -16062,6 +16811,7 @@ msgstr "" #: 424f1b06e4ca49da8f3ae55bd2b5a833 #: 424f1b06e4ca49da8f3ae55bd2b5a833 #: 424f1b06e4ca49da8f3ae55bd2b5a833 +#: 424f1b06e4ca49da8f3ae55bd2b5a833 msgid "The role or user denoting whose overwrite to get." msgstr "" @@ -16071,6 +16821,7 @@ msgstr "" #: 941badf662e24af6bdb04e39a1020079 #: 941badf662e24af6bdb04e39a1020079 #: 941badf662e24af6bdb04e39a1020079 +#: 941badf662e24af6bdb04e39a1020079 msgid "The permission overwrites for this object." msgstr "" @@ -16080,6 +16831,7 @@ msgstr "" #: fc3fff034d7048b592fe35dcd866a631 #: fc3fff034d7048b592fe35dcd866a631 #: fc3fff034d7048b592fe35dcd866a631 +#: fc3fff034d7048b592fe35dcd866a631 msgid ":class:`~discord.PermissionOverwrite`" msgstr "" @@ -16091,6 +16843,7 @@ msgstr "" #: ad61cc31ac914379a2e312de3d43ffe8 #: ad61cc31ac914379a2e312de3d43ffe8 #: ad61cc31ac914379a2e312de3d43ffe8 +#: ad61cc31ac914379a2e312de3d43ffe8 msgid "This function takes into consideration the following cases:" msgstr "" @@ -16102,6 +16855,7 @@ msgstr "" #: a116f87071af41338aeba09a8eb992af #: a116f87071af41338aeba09a8eb992af #: a116f87071af41338aeba09a8eb992af +#: a116f87071af41338aeba09a8eb992af msgid "Guild owner" msgstr "" @@ -16113,6 +16867,7 @@ msgstr "" #: 412081ad6b56428da03c40fe91e46896 #: 412081ad6b56428da03c40fe91e46896 #: 412081ad6b56428da03c40fe91e46896 +#: 412081ad6b56428da03c40fe91e46896 msgid "Guild roles" msgstr "" @@ -16124,6 +16879,7 @@ msgstr "" #: 3d8a5b7caf8449499a5df8e5f52da039 #: 3d8a5b7caf8449499a5df8e5f52da039 #: 3d8a5b7caf8449499a5df8e5f52da039 +#: 3d8a5b7caf8449499a5df8e5f52da039 msgid "Channel overrides" msgstr "" @@ -16135,6 +16891,7 @@ msgstr "" #: f5a7c4f10acd4fc78ace8d9c7ae71a1e #: f5a7c4f10acd4fc78ace8d9c7ae71a1e #: f5a7c4f10acd4fc78ace8d9c7ae71a1e +#: f5a7c4f10acd4fc78ace8d9c7ae71a1e msgid "Member overrides" msgstr "" @@ -16146,6 +16903,7 @@ msgstr "" #: 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 "" @@ -16157,6 +16915,7 @@ msgstr "" #: 7792fc4132114a33a1d0dd6a31c0d67f #: 7792fc4132114a33a1d0dd6a31c0d67f #: 7792fc4132114a33a1d0dd6a31c0d67f +#: 7792fc4132114a33a1d0dd6a31c0d67f msgid "The default role permissions" msgstr "" @@ -16168,6 +16927,7 @@ msgstr "" #: a9f75d8e2445493f8f13f904067552f4 #: a9f75d8e2445493f8f13f904067552f4 #: a9f75d8e2445493f8f13f904067552f4 +#: a9f75d8e2445493f8f13f904067552f4 msgid "The permissions of the role used as a parameter" msgstr "" @@ -16179,6 +16939,7 @@ msgstr "" #: f7edbbec0ac84cbc88a8a26badcac519 #: f7edbbec0ac84cbc88a8a26badcac519 #: f7edbbec0ac84cbc88a8a26badcac519 +#: f7edbbec0ac84cbc88a8a26badcac519 msgid "The default role permission overwrites" msgstr "" @@ -16190,6 +16951,7 @@ msgstr "" #: 6174d926cc1b4b0d99f7af83decc22fe #: 6174d926cc1b4b0d99f7af83decc22fe #: 6174d926cc1b4b0d99f7af83decc22fe +#: 6174d926cc1b4b0d99f7af83decc22fe msgid "The permission overwrites of the role used as a parameter" msgstr "" @@ -16201,11 +16963,13 @@ msgstr "" #: 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.MediaChannel.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 @@ -16214,11 +16978,13 @@ msgstr "" #: 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.MediaChannel.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 @@ -16227,6 +16993,7 @@ msgstr "" #: 981749f5cb0242b8855f2826a6dc6bf4 #: 981749f5cb0242b8855f2826a6dc6bf4 #: 981749f5cb0242b8855f2826a6dc6bf4 +#: 981749f5cb0242b8855f2826a6dc6bf4 msgid "If there is no category then this is ``False``." msgstr "" @@ -16236,6 +17003,7 @@ msgstr "" #: 3a5fa731cfa147c7a0bfaa31890a8fe1 #: 3a5fa731cfa147c7a0bfaa31890a8fe1 #: 3a5fa731cfa147c7a0bfaa31890a8fe1 +#: 3a5fa731cfa147c7a0bfaa31890a8fe1 msgid "Sets the channel specific permission overwrites for a target in the channel." msgstr "" @@ -16245,6 +17013,7 @@ msgstr "" #: 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 "" @@ -16254,6 +17023,7 @@ msgstr "" #: 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 "" @@ -16263,6 +17033,7 @@ msgstr "" #: 764ab65cb31c493594eaa77947707624 #: 764ab65cb31c493594eaa77947707624 #: 764ab65cb31c493594eaa77947707624 +#: 764ab65cb31c493594eaa77947707624 msgid "If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted." msgstr "" @@ -16272,6 +17043,7 @@ msgstr "" #: 146970e2d3814a7188e3cbb525453e55 #: 146970e2d3814a7188e3cbb525453e55 #: 146970e2d3814a7188e3cbb525453e55 +#: 146970e2d3814a7188e3cbb525453e55 msgid "You must have the :attr:`~discord.Permissions.manage_roles` permission to use this." msgstr "" @@ -16281,6 +17053,7 @@ msgstr "" #: 346d7572d6cd45afa3d668860d51d232 #: 346d7572d6cd45afa3d668860d51d232 #: 346d7572d6cd45afa3d668860d51d232 +#: 346d7572d6cd45afa3d668860d51d232 msgid "This method *replaces* the old overwrites with the ones given." msgstr "" @@ -16290,6 +17063,7 @@ msgstr "" #: 637f3a1a21694797a9ac311c64c0c911 #: 637f3a1a21694797a9ac311c64c0c911 #: 637f3a1a21694797a9ac311c64c0c911 +#: 637f3a1a21694797a9ac311c64c0c911 msgid "Setting allow and deny: ::" msgstr "" @@ -16299,6 +17073,7 @@ msgstr "" #: 810d95b1d4994c63862f68887c77e831 #: 810d95b1d4994c63862f68887c77e831 #: 810d95b1d4994c63862f68887c77e831 +#: 810d95b1d4994c63862f68887c77e831 msgid "Deleting overwrites ::" msgstr "" @@ -16308,6 +17083,7 @@ msgstr "" #: dae2ea6fc6544c64bf6008937d45f7d0 #: dae2ea6fc6544c64bf6008937d45f7d0 #: dae2ea6fc6544c64bf6008937d45f7d0 +#: dae2ea6fc6544c64bf6008937d45f7d0 msgid "Using :class:`~discord.PermissionOverwrite` ::" msgstr "" @@ -16317,6 +17093,7 @@ msgstr "" #: 03cfeadeceb24469845f590f9734b5ac #: 03cfeadeceb24469845f590f9734b5ac #: 03cfeadeceb24469845f590f9734b5ac +#: 03cfeadeceb24469845f590f9734b5ac msgid "The member or role to overwrite permissions for." msgstr "" @@ -16326,6 +17103,7 @@ msgstr "" #: dcf66235aaf14217aaf08ce4c7556408 #: dcf66235aaf14217aaf08ce4c7556408 #: dcf66235aaf14217aaf08ce4c7556408 +#: dcf66235aaf14217aaf08ce4c7556408 msgid "The permissions to allow and deny to the target, or ``None`` to delete the overwrite." msgstr "" @@ -16335,6 +17113,7 @@ msgstr "" #: 6f036719a4ef44aeb1c05e3412443113 #: 6f036719a4ef44aeb1c05e3412443113 #: 6f036719a4ef44aeb1c05e3412443113 +#: 6f036719a4ef44aeb1c05e3412443113 msgid "A keyword argument list of permissions to set for ease of use. Cannot be mixed with ``overwrite``." msgstr "" @@ -16344,6 +17123,7 @@ msgstr "" #: 9efb0463f8ca4001ab156472387d2537 #: 9efb0463f8ca4001ab156472387d2537 #: 9efb0463f8ca4001ab156472387d2537 +#: 9efb0463f8ca4001ab156472387d2537 msgid "You do not have permissions to edit channel specific permissions." msgstr "" @@ -16353,6 +17133,7 @@ msgstr "" #: 61bb29fcb29e4916a4342d95e7354727 #: 61bb29fcb29e4916a4342d95e7354727 #: 61bb29fcb29e4916a4342d95e7354727 +#: 61bb29fcb29e4916a4342d95e7354727 msgid "Editing channel specific permissions failed." msgstr "" @@ -16362,6 +17143,7 @@ msgstr "" #: 4e7647606bd44e0b98e6cf273cb2d1ec #: 4e7647606bd44e0b98e6cf273cb2d1ec #: 4e7647606bd44e0b98e6cf273cb2d1ec +#: 4e7647606bd44e0b98e6cf273cb2d1ec msgid "The role or member being edited is not part of the guild." msgstr "" @@ -16371,6 +17153,7 @@ msgstr "" #: eed46e2237c8429cb10297b23b78e9a2 #: eed46e2237c8429cb10297b23b78e9a2 #: eed46e2237c8429cb10297b23b78e9a2 +#: eed46e2237c8429cb10297b23b78e9a2 msgid "The overwrite parameter invalid or the target type was not :class:`~discord.Role` or :class:`~discord.Member`." msgstr "" @@ -16517,7 +17300,7 @@ msgstr "" msgid "Deleting the stage instance failed." msgstr "" -#: ../../api/models.rst:334 +#: ../../api/models.rst:339 #: dd317db3c9cb4a29aeb80d2b10ad338c msgid "Interactions" msgstr "" @@ -16565,15 +17348,13 @@ 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`]]" +msgid "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" msgstr "" #: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:34 @@ -16699,6 +17480,36 @@ msgstr "" msgid "Optional[:class:`InteractionContextType`]" msgstr "" +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:113 +#: 9d152ca0b57c4831a63ac4f3ba694587 +msgid "The command that this interaction belongs to." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:117 +#: bc296a912770482a81cf365b4076d957 +msgid "Optional[:class:`ApplicationCommand`]" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:121 +#: 9d152ca0b57c4831a63ac4f3ba694587 +msgid "The view that this interaction belongs to." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:125 +#: f3f5b79ae0264c59b2b8f18457a33604 +msgid "Optional[:class:`View`]" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:129 +#: 9d152ca0b57c4831a63ac4f3ba694587 +msgid "The modal that this interaction belongs to." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction:133 +#: b70aff860e5a4c0092f8bc6056c6c429 +msgid "Optional[:class:`Modal`]" +msgstr "" + #: ../../../discord/interactions.py:docstring of discord.Interaction.client:1 #: 4464cbbf3555444890e48eaf0e78176d msgid "Returns the client that sent the interaction." @@ -16709,6 +17520,11 @@ msgstr "" msgid "The guild the interaction was sent from." msgstr "" +#: ../../../discord/interactions.py:docstring of discord.Interaction.created_at:1 +#: b017f2694c78454e89e712049f8fc4c0 +msgid "Returns the interaction's creation time in UTC." +msgstr "" + #: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.is_command:1 #: bd66fcea2cc64e7793c0f6867ab2d4f3 msgid "Indicates whether the interaction is an application command." @@ -16719,9 +17535,9 @@ msgstr "" msgid "Indicates whether the interaction is a message component." msgstr "" -#: ../../docstring of discord.Interaction.cached_channel:4 +#: ../../docstring of discord.Interaction.cached_channel:1 #: 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." +msgid "The cached channel from which the interaction was sent. DM channels are not resolved. These are :class:`PartialMessageable` instead." msgstr "" #: ../../../discord/interactions.py:docstring of discord.Interaction.permissions:1 @@ -16734,24 +17550,64 @@ msgstr "" 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." +#: ../../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.is_guild_authorised:1 +#: 6eeedd965eac44a5b905a06d37c570d7 +msgid ":class:`bool`: Checks if the interaction is guild authorised." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.is_guild_authorised:3 +#: c2e51432847743fba93caa703ec89c5d +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.is_user_authorised:1 +#: 26ede07ec91341e19637c9b51fbf2327 +msgid ":class:`bool`: Checks if the interaction is user authorised." +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.is_user_authorised:3 +#: c2e51432847743fba93caa703ec89c5d +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.is_guild_authorized:1 +#: 6eeedd965eac44a5b905a06d37c570d7 +msgid ":class:`bool`: Checks if the interaction is guild authorized." msgstr "" -#: ../../docstring of discord.Interaction.response:1 -#: cad185e4c9f94be694c4f320b7c90829 -msgid "Returns an object responsible for handling responding to the interaction." +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.is_guild_authorized:3 +#: c2e51432847743fba93caa703ec89c5d +msgid "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" 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." +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.is_user_authorized:1 +#: 26ede07ec91341e19637c9b51fbf2327 +msgid ":class:`bool`: Checks if the interaction is user authorized." msgstr "" -#: ../../docstring of discord.Interaction.followup:1 -#: 8fdd84284e2a497bade0d8001a36e09a -msgid "Returns the followup webhook for followup interactions." +#: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.is_user_authorized:3 +#: c2e51432847743fba93caa703ec89c5d +msgid "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" msgstr "" #: ../../../discord/interactions.py:docstring of discord.interactions.Interaction.original_response:3 @@ -17123,11 +17979,9 @@ msgstr "" 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``." +#: d13f7e34dd204807a23d8f242e6cfd40 +msgid "You specified both ``embed`` and ``embeds``, or sent content or embeds with V2 components." msgstr "" #: ../../../discord/interactions.py:docstring of discord.interactions.InteractionResponse.edit_message:3 @@ -17150,6 +18004,11 @@ msgstr "" 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.edit_message:49 +#: e2024a8f3ffb496d9c436a8a62f58ff2 +msgid "You specified both ``embed`` and ``embeds``." +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." @@ -17319,17 +18178,24 @@ msgstr "" 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 "" +#: ../../api/models.rst:372 +#: f81c11da386445dbbb02292e3bc450c1 +msgid "Message Components" +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:" +#: c94a1b5cbea24b01a9797e6870ae5ea4 +msgid "The components supported by Discord in messages are as follows:" msgstr "" #: ../../../discord/components.py:docstring of discord.components.Component:5 +#: ../../../discord/components.py:docstring of discord.components.Container:6 +#: 709fc995d26b4c83ac251992b4d0284c #: 709fc995d26b4c83ac251992b4d0284c msgid ":class:`ActionRow`" msgstr "" @@ -17339,337 +18205,731 @@ msgstr "" msgid ":class:`Button`" msgstr "" -#: ../../../discord/components.py:docstring of discord.components.Component:7 -#: 0c5375d482ec498eaa71bfd03f2a8133 -msgid ":class:`SelectMenu`" +#: ../../../discord/components.py:docstring of discord.components.Component:7 +#: 0c5375d482ec498eaa71bfd03f2a8133 +msgid ":class:`SelectMenu`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component:8 +#: ../../../discord/components.py:docstring of discord.components.Container:8 +#: 0c5375d482ec498eaa71bfd03f2a8133 +#: 0c5375d482ec498eaa71bfd03f2a8133 +msgid ":class:`Section`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component:9 +#: ../../../discord/components.py:docstring of discord.components.Container:7 +#: 8b6a84cc25c349419c31de47c2303d96 +#: 8b6a84cc25c349419c31de47c2303d96 +msgid ":class:`TextDisplay`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component:10 +#: 972be385b13d440092cdccd620111c7a +msgid ":class:`Thumbnail`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component:11 +#: ../../../discord/components.py:docstring of discord.components.Container:9 +#: 6c7e533bdc934532a1a9ed62d9dd677c +#: 6c7e533bdc934532a1a9ed62d9dd677c +msgid ":class:`MediaGallery`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component:12 +#: ../../../discord/components.py:docstring of discord.components.Container:11 +#: c7fa145264a345959a3d9ee21d0d3f9b +#: c7fa145264a345959a3d9ee21d0d3f9b +msgid ":class:`FileComponent`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component:13 +#: ../../../discord/components.py:docstring of discord.components.Container:10 +#: 972be385b13d440092cdccd620111c7a +#: 972be385b13d440092cdccd620111c7a +msgid ":class:`Separator`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component:14 +#: 8eabd9ce697640f598d06c0958ad8883 +msgid ":class:`Container`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component:16 +#: 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:22 +#: 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:24 +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:21 +#: c7fa145264a345959a3d9ee21d0d3f9b +#: c7fa145264a345959a3d9ee21d0d3f9b +#: c7fa145264a345959a3d9ee21d0d3f9b +msgid ":class:`ComponentType`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component:28 +#: dab8f5f51cc74edcbf9388ef88b46108 +msgid "The component's ID. If not provided by the user, it is set sequentially by Discord. The ID `0` is treated as if no ID was provided." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Component.is_v2:1 +#: 52afa1f78ae7497c8060bdb4a963d379 +#: 52afa1f78ae7497c8060bdb4a963d379 +#: 52afa1f78ae7497c8060bdb4a963d379 +#: 52afa1f78ae7497c8060bdb4a963d379 +#: 52afa1f78ae7497c8060bdb4a963d379 +#: 52afa1f78ae7497c8060bdb4a963d379 +#: 52afa1f78ae7497c8060bdb4a963d379 +#: 52afa1f78ae7497c8060bdb4a963d379 +#: 52afa1f78ae7497c8060bdb4a963d379 +#: 52afa1f78ae7497c8060bdb4a963d379 +msgid "Whether this component was introduced in Components V2." +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 +#: ../../../discord/components.py:docstring of discord.components.Container:13 +#: ../../../discord/components.py:docstring of discord.components.FileComponent:5 +#: ../../../discord/components.py:docstring of discord.components.MediaGallery:5 +#: ../../../discord/components.py:docstring of discord.components.Section:5 +#: ../../../discord/components.py:docstring of discord.components.Separator:5 +#: ../../../discord/components.py:docstring of discord.components.TextDisplay:5 +#: ../../../discord/components.py:docstring of discord.components.Thumbnail:5 +#: 93341d8aa4fb44959bf727bb0998ab94 +#: 93341d8aa4fb44959bf727bb0998ab94 +#: 93341d8aa4fb44959bf727bb0998ab94 +#: 93341d8aa4fb44959bf727bb0998ab94 +#: 93341d8aa4fb44959bf727bb0998ab94 +#: 93341d8aa4fb44959bf727bb0998ab94 +#: 93341d8aa4fb44959bf727bb0998ab94 +#: 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.ActionRow.width:1 +#: aeebdd818d504901bd5f56b41ddea95e +msgid "Return the sum of the children's widths." +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 "This class is not useable by end-users; see :class:`discord.ui.Button` instead." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:13 +#: 17316ef8cf2e41eea87856713d44d589 +msgid "The style of the button." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:15 +#: 9b26c0ad72604068a56d44df8deaf10e +msgid ":class:`.ButtonStyle`" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:19 +#: 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:26 +#: dbc3fc6e82d449c498ff55cedadec8f1 +msgid "The URL this button sends you to." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:32 +#: 92ad8e5b06b44eaeb61e9ec6fe198505 +msgid "Whether the button is disabled or not." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:38 +#: cf2143a753e04aaba2c533fd326bcdbd +msgid "The label of the button, if any." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:44 +#: a1bedc695439492f85e0988db64713a1 +msgid "The emoji of the button, if available." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:46 +#: 2f8502a4187e40f597d6496424c5ac3a +msgid "Optional[:class:`PartialEmoji`]" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Button:50 +#: 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 "This class is not useable by end-users; see :class:`discord.ui.Select` instead." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:14 +#: 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:19 +#: 2102950811c74486ab9b1026c9caddb1 +msgid "The select menu's type." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:25 +#: b88d7aba2c9f46f88b681a6b575cb84e +msgid "The ID of the select menu that gets received during an interaction." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:31 +#: c13453267e014bf98fe6f803e5a076c7 +msgid "The placeholder text that is shown if nothing is selected, if any." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:37 +#: 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:44 +#: 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:51 +#: 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:55 +#: d343089d09514315960da0c7bf2b3de2 +msgid "List[:class:`SelectOption`]" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:59 +#: 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:63 +#: 1c0857ba83824e07ae47f6b53750d2fa +msgid "List[:class:`ChannelType`]" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.SelectMenu:67 +#: 4d0bc3e8202f4bea84931cee7392c89d +msgid "Whether the select is disabled or not." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Section:1 +#: 443e4a7e83794c9ca6b03288c36bc0db +msgid "Represents a Section from Components V2." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Section:3 +#: d1b1d6306c5642368f524be77fcabba5 +msgid "This is a component that groups other components together with an additional component to the right as the accessory." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Section:9 +#: fc6946db0ea245a69657a6935ca95a1a +msgid "This class is not useable by end-users; see :class:`discord.ui.Section` instead." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Section:15 +#: 284762119e18477ab2efe9ed5517f6d5 +msgid "The components contained in this section. Currently supports :class:`TextDisplay`." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Section:21 +#: ce9e23d6e762427c8f8036499c6d159f +msgid "The accessory attached to this Section. Currently supports :class:`Button` and :class:`Thumbnail`." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Section:23 +#: ea5ce4db5209427392e12d73651f271b +msgid "Optional[:class:`Component`]" +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.TextDisplay:1 +#: a7dc168070fb49c3a3446ea00d0e15df +msgid "Represents a Text Display from Components V2." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.TextDisplay:3 +#: 3248a4ea4e8c4849a1e3cfd557671f33 +msgid "This is a component that displays text." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.TextDisplay:9 +#: fc6946db0ea245a69657a6935ca95a1a +msgid "This class is not useable by end-users; see :class:`discord.ui.TextDisplay` instead." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.TextDisplay:15 +#: 96484f4d35624bdd83b5e136d83bb9ad +msgid "The component's text content." +msgstr "" + +#: ../../../discord/components.py:docstring of discord.components.Thumbnail:1 +#: 325eccff689b463a930829aa10f85c86 +msgid "Represents a Thumbnail from Components V2." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.Component:9 -#: c058b048558c41e796780dc8fd7e13b3 -msgid "This class is abstract and cannot be instantiated." +#: ../../../discord/components.py:docstring of discord.components.Thumbnail:3 +#: 52afa1f78ae7497c8060bdb4a963d379 +msgid "This is a component that displays media, such as images and videos." 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." +#: ../../../discord/components.py:docstring of discord.components.Thumbnail:9 +#: e84696cb443c46b1a00676610ca02b0d +msgid "This class is not useable by end-users; see :class:`discord.ui.Thumbnail` instead." 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`" +#: ../../../discord/components.py:docstring of discord.components.Thumbnail:15 +#: 941badf662e24af6bdb04e39a1020079 +msgid "The component's underlying media object." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.ActionRow:1 -#: 9f7d8de88aed40a08872c3374e05f049 -msgid "Represents a Discord Bot UI Kit Action Row." +#: ../../../discord/components.py:docstring of discord.components.FileComponent:17 +#: ../../../discord/components.py:docstring of discord.components.Thumbnail:17 +#: 7d438bff37c749b3950ffe589d702f9f +#: 7d438bff37c749b3950ffe589d702f9f +msgid ":class:`UnfurledMediaItem`" 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." +#: ../../../discord/components.py:docstring of discord.components.Thumbnail:21 +#: b83cc1df192e44cfa969e71988e5677c +msgid "The thumbnail's description, up to 1024 characters." 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`." +#: ../../../discord/components.py:docstring of discord.components.Thumbnail:27 +#: 1c3d15b96df6417498447cf15dd2b44c +msgid "Whether the thumbnail has the spoiler overlay." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.ActionRow:17 -#: 3248a4ea4e8c4849a1e3cfd557671f33 -msgid "The children components that this holds, if any." +#: ../../../discord/components.py:docstring of discord.Thumbnail.url:1 +#: cec5a91670184d8594a8168b49e63c77 +msgid "Returns the URL of this thumbnail's underlying media item." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.Button:1 -#: e0b3fcd3375d4bfb8695df0a7104c162 -msgid "Represents a button from the Discord Bot UI Kit." +#: ../../../discord/components.py:docstring of discord.components.MediaGallery:1 +#: 325eccff689b463a930829aa10f85c86 +msgid "Represents a Media Gallery from Components V2." 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." +#: ../../../discord/components.py:docstring of discord.components.MediaGallery:3 +#: 52afa1f78ae7497c8060bdb4a963d379 +msgid "This is a component that displays up to 10 different :class:`MediaGalleryItem` objects." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.Button:14 -#: 17316ef8cf2e41eea87856713d44d589 -msgid "The style of the button." +#: ../../../discord/components.py:docstring of discord.components.MediaGallery:9 +#: fc6946db0ea245a69657a6935ca95a1a +msgid "This class is not useable by end-users; see :class:`discord.ui.MediaGallery` instead." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.Button:16 -#: 9b26c0ad72604068a56d44df8deaf10e -msgid ":class:`.ButtonStyle`" +#: ../../../discord/components.py:docstring of discord.components.MediaGallery:15 +#: 3bb2c4499f774c7db3a93a7a4840b242 +msgid "The media this gallery contains." 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." +#: ../../../discord/components.py:docstring of discord.components.MediaGallery:17 +#: bd86ecd15cc848a8b57ef5dbb7c6f4d4 +msgid "List[:class:`MediaGalleryItem`]" msgstr "" -#: ../../../discord/components.py:docstring of discord.components.Button:27 -#: dbc3fc6e82d449c498ff55cedadec8f1 -msgid "The URL this button sends you to." +#: ../../../discord/components.py:docstring of discord.components.FileComponent:1 +#: 325eccff689b463a930829aa10f85c86 +msgid "Represents a File from Components V2." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.Button:33 -#: 92ad8e5b06b44eaeb61e9ec6fe198505 -msgid "Whether the button is disabled or not." +#: ../../../discord/components.py:docstring of discord.components.FileComponent:3 +#: 5c638f47368d4db5882b325512edf336 +msgid "This component displays a downloadable file in a message." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.Button:39 -#: cf2143a753e04aaba2c533fd326bcdbd -msgid "The label of the button, if any." +#: ../../../discord/components.py:docstring of discord.components.FileComponent:9 +#: fc6946db0ea245a69657a6935ca95a1a +msgid "This class is not useable by end-users; see :class:`discord.ui.File` instead." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.Button:45 -#: a1bedc695439492f85e0988db64713a1 -msgid "The emoji of the button, if available." +#: ../../../discord/components.py:docstring of discord.components.FileComponent:15 +#: 7621b825fc6848199afd96d57cdb3c46 +msgid "The file's media item." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.Button:47 -#: 2f8502a4187e40f597d6496424c5ac3a -msgid "Optional[:class:`PartialEmoji`]" +#: ../../../discord/components.py:docstring of discord.components.FileComponent:21 +#: ca774a304f9a4d4baa6329ce8e864eef +msgid "The file's name." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.Button:51 -#: 76a7eb849b774f21a8d3351ab54c814a -msgid "The ID of the SKU this button refers to." +#: ../../../discord/components.py:docstring of discord.components.FileComponent:27 +#: cad88e03745e4898b486276d5648803c +msgid "The file's size in bytes." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.SelectMenu:1 -#: 6efb83e0de88482cb68cfc583e02da9a -msgid "Represents a select menu from the Discord Bot UI Kit." +#: ../../../discord/components.py:docstring of discord.components.FileComponent:33 +#: ac21dc598e304ef99add56eb017be309 +msgid "Whether the file has the spoiler overlay." 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." +#: ../../../discord/components.py:docstring of discord.components.Separator:1 +#: 325eccff689b463a930829aa10f85c86 +msgid "Represents a Separator from Components V2." 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." +#: ../../../discord/components.py:docstring of discord.components.Separator:3 +#: 52afa1f78ae7497c8060bdb4a963d379 +msgid "This is a component that visually separates components." 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`." +#: ../../../discord/components.py:docstring of discord.components.Separator:9 +#: fc6946db0ea245a69657a6935ca95a1a +msgid "This class is not useable by end-users; see :class:`discord.ui.Separator` instead." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.SelectMenu:20 -#: 2102950811c74486ab9b1026c9caddb1 -msgid "The select menu's type." +#: ../../../discord/components.py:docstring of discord.components.Separator:15 +#: 71708c2052ef460cbf50e18eff7472ff +msgid "Whether the separator will show a horizontal line in addition to vertical spacing." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.SelectMenu:26 -#: b88d7aba2c9f46f88b681a6b575cb84e -msgid "The ID of the select menu that gets received during an interaction." +#: ../../../discord/components.py:docstring of discord.components.Separator:21 +#: 93e6016595cd40a7b1d0dab443a478a8 +msgid "The separator's spacing size." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.SelectMenu:32 -#: c13453267e014bf98fe6f803e5a076c7 -msgid "The placeholder text that is shown if nothing is selected, if any." +#: ../../../discord/components.py:docstring of discord.components.Separator:23 +#: 149351b7df664788a413093688677723 +msgid "Optional[:class:`SeparatorSpacingSize`]" 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." +#: ../../../discord/components.py:docstring of discord.components.Container:1 +#: d4f2fb2b97b0466daffc259ba311fa14 +msgid "Represents a Container from Components V2." 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." +#: ../../../discord/components.py:docstring of discord.components.Container:3 +#: 0f7bbf2e0e7348d5b0454af500605c7f +msgid "This is a component that contains different :class:`Component` objects. It may only contain:" 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`." +#: ../../../discord/components.py:docstring of discord.components.Container:17 +#: fc6946db0ea245a69657a6935ca95a1a +msgid "This class is not useable by end-users; see :class:`discord.ui.Container` instead." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.SelectMenu:56 -#: d343089d09514315960da0c7bf2b3de2 -msgid "List[:class:`SelectOption`]" +#: ../../../discord/components.py:docstring of discord.components.Container:23 +#: 3d2f746f188b48fcaa0c20d7e321d9b1 +msgid "The components contained in this container." 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`." +#: ../../../discord/components.py:docstring of discord.components.Container:29 +#: 851fad41cfa943068fdd9dc3ce016772 +msgid "The accent color of the container." msgstr "" -#: ../../../discord/components.py:docstring of discord.components.SelectMenu:64 -#: 1c0857ba83824e07ae47f6b53750d2fa -msgid "List[:class:`ChannelType`]" +#: ../../../discord/components.py:docstring of discord.components.Container:31 +#: 5e36ab69e24a4e9281fef9f23b4e9417 +msgid "Optional[:class:`Colour`]" msgstr "" -#: ../../../discord/components.py:docstring of discord.components.SelectMenu:68 -#: 4d0bc3e8202f4bea84931cee7392c89d -msgid "Whether the select is disabled or not." +#: ../../../discord/components.py:docstring of discord.components.Container:35 +#: 8f055d7ad1d3409c9bc0a6982a4df3d5 +msgid "Whether the entire container has the spoiler overlay." msgstr "" -#: ../../api/models.rst:389 +#: ../../api/models.rst:439 #: c885c2e7084646b998c51b1c9bafc0aa msgid "Emoji" msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:1 -#: a4f545bdd7dc437c9d245d238586c702 -msgid "Represents a custom emoji." +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:1 +#: 2211977338284dabb4ddd3a5298bc2ee +msgid "Represents a custom emoji in a guild." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:3 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:3 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:3 +#: a3349dfb97b44db9b3ecbbee8e3a01ff #: 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/emoji.py:docstring of discord.emoji.AppEmoji:12 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:10 #: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:12 #: 44bf70fa78894c1daddd55e9d90838e2 #: 44bf70fa78894c1daddd55e9d90838e2 +#: 44bf70fa78894c1daddd55e9d90838e2 msgid "Checks if two emoji are the same." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:14 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:16 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:14 #: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:16 #: d2a07b8aa3ab40839e60c1d979b40ceb #: d2a07b8aa3ab40839e60c1d979b40ceb +#: d2a07b8aa3ab40839e60c1d979b40ceb msgid "Checks if two emoji are not the same." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:18 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:20 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:18 #: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:20 #: 4c8a36b9a18a42cc928f6013bb72307c #: 4c8a36b9a18a42cc928f6013bb72307c +#: 4c8a36b9a18a42cc928f6013bb72307c msgid "Return the emoji's hash." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:22 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:24 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:22 +#: 7cf57bf9d537462a8b495549c81e2242 #: 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/emoji.py:docstring of discord.emoji.AppEmoji:29 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:27 #: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:24 #: 2a7b951e1a5b452d93036b3794628d0d #: 2a7b951e1a5b452d93036b3794628d0d +#: 2a7b951e1a5b452d93036b3794628d0d msgid "Returns the emoji rendered for discord." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:31 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:33 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:31 +#: 14ea0733e1d541da9fea4210dc039209 #: 14ea0733e1d541da9fea4210dc039209 msgid "The name of the emoji." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:43 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:45 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:43 +#: b6e01311a7694deeba97d6ea2b8240e8 #: 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 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:51 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:49 +#: 880bd48f7776420995813479f53ac12a #: 880bd48f7776420995813479f53ac12a msgid "Whether an emoji is animated or not." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:55 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:57 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:55 +#: 69dcc8a19c474fdb8fad0b3391750694 #: 69dcc8a19c474fdb8fad0b3391750694 msgid "If this emoji is managed by a Twitch integration." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:61 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:61 #: a1e8a33a32c64b71bef5731eeaa07cd3 msgid "The guild ID the emoji belongs to." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:67 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:69 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji:67 +#: 33a23d7c29004eaaa37ca543e08ac512 #: 33a23d7c29004eaaa37ca543e08ac512 msgid "Whether the emoji is available for use." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji:73 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji: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 +#: ../../../discord/emoji.py:docstring of discord.GuildEmoji.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 +#: ../../../discord/emoji.py:docstring of discord.GuildEmoji.roles:3 #: d76d5cc472e547e2893bf6d83d18cb1b msgid "If roles is empty, the emoji is unrestricted." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.Emoji.guild:1 +#: ../../../discord/emoji.py:docstring of discord.GuildEmoji.guild:1 #: 04b446a6ff504bf8a407983e47aaeb77 msgid "The guild this emoji belongs to." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.is_usable:1 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.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 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.delete:3 #: 496fefc520c1400a95b50c17283f2426 msgid "Deletes the custom emoji." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:3 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.edit:3 #: aca7f87a81bc40f8855d7c68ddee4b7c msgid "Edits the custom emoji." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:8 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.edit:8 #: 9eeff73ac06d4e61bc1a6e1a62c484b2 msgid "The newly updated emoji is returned." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:12 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji.edit:8 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.edit:12 +#: b1be944c7f23429e8685fd13dcaf8082 #: b1be944c7f23429e8685fd13dcaf8082 msgid "The new emoji name." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:15 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.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 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.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 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.edit:21 #: b2b4c21efd88459db5e27419833f6c0b msgid "You are not allowed to edit emojis." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:22 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji.edit:12 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.edit:22 +#: 29b4b67b766647a38d168494e1cfa898 #: 29b4b67b766647a38d168494e1cfa898 msgid "An error occurred editing the emoji." msgstr "" -#: ../../../discord/emoji.py:docstring of discord.emoji.Emoji.edit:24 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji.edit:14 +#: ../../../discord/emoji.py:docstring of discord.emoji.GuildEmoji.edit:24 +#: 89165b83444e45609f6f4d2352594759 #: 89165b83444e45609f6f4d2352594759 msgid "The newly updated emoji." msgstr "" +#: ../../../discord/emoji.py:docstring of discord.AppEmoji.created_at:1 +#: ../../../discord/emoji.py:docstring of discord.GuildEmoji.created_at:1 +#: 62dffac0a0724a6383eb42c22cd717c4 +#: 62dffac0a0724a6383eb42c22cd717c4 +msgid "Returns the emoji's creation time in UTC." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.AppEmoji.url:1 +#: ../../../discord/emoji.py:docstring of discord.GuildEmoji.url:1 +#: 94a262936d7443e284a5b0bca6175dc3 +#: 94a262936d7443e284a5b0bca6175dc3 +msgid "Returns the URL of the emoji." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:1 +#: a7dc168070fb49c3a3446ea00d0e15df +msgid "Represents a custom emoji from an application." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:63 +#: 7bce4c601b7e4d13af2c0eeb1288ed61 +msgid "The application ID the emoji belongs to, if available." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji:75 +#: f5152bae14734569aeef4a6b6f207e59 +msgid "The user that created the emoji." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.AppEmoji.guild:1 +#: 5cdca06cd89a457fb2fc1187e7a8cad7 +msgid "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.AppEmoji.roles:1 +#: 621f782ce5f14018a13edc57e5d3e1cb +msgid "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji.is_usable:1 +#: 92ad8e5b06b44eaeb61e9ec6fe198505 +msgid "Whether the bot can use this emoji." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji.delete:3 +#: 496fefc520c1400a95b50c17283f2426 +msgid "Deletes the application emoji." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji.delete:5 +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji.edit:5 +#: 9afd0935187a461ab98d15477738fc11 +#: 9afd0935187a461ab98d15477738fc11 +msgid "You must own the emoji to do this." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji.delete:7 +#: d87322ed656a4631bd9fa98caa580e08 +msgid "You are not allowed to delete the emoji." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji.edit:3 +#: aca7f87a81bc40f8855d7c68ddee4b7c +msgid "Edits the application emoji." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji.edit:11 +#: b2b4c21efd88459db5e27419833f6c0b +msgid "You are not allowed to edit the emoji." +msgstr "" + +#: ../../../discord/emoji.py:docstring of discord.emoji.AppEmoji.edit:15 +#: 37a41037481642b78fafaee019f75015 +msgid ":class:`AppEmoji`" +msgstr "" + #: ../../../discord/partial_emoji.py:docstring of discord.partial_emoji.PartialEmoji:1 #: f39d6b6e8b3044fba02ad0bd00f8d7f6 msgid "Represents a \"partial\" emoji." @@ -17784,7 +19044,7 @@ msgstr "" msgid "If this isn't a custom emoji then an empty string is returned" msgstr "" -#: ../../api/models.rst:404 +#: ../../api/models.rst:460 #: a26c3fb538cc4eae85bc9b01ec610081 msgid "Channels" msgstr "" @@ -17795,57 +19055,71 @@ msgid "Represents a Discord text channel." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:47 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel:49 #: ../../../discord/channel.py:docstring of discord.channel.TextChannel:47 #: 28cadf33bcaa4284b510b25b352040ba #: 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.MediaChannel:66 #: ../../../discord/channel.py:docstring of discord.channel.TextChannel:60 #: de489b1b036047c99f633e4585c04d92 #: 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.MediaChannel:73 #: ../../../discord/channel.py:docstring of discord.channel.TextChannel:67 #: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:91 #: 77a34e9892e94686b1a5737a8469fde8 #: 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.MediaChannel:82 #: ../../../discord/channel.py:docstring of discord.channel.TextChannel:76 #: fab80e171db445d78867efd958f0536b #: 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.MediaChannel:86 #: ../../../discord/channel.py:docstring of discord.channel.TextChannel:80 #: 50ed6ace112b45399a2e24de081c9951 #: 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.MediaChannel:92 #: ../../../discord/channel.py:docstring of discord.channel.TextChannel:86 #: 39c3e1849aea42b1a5e44b6b35945813 #: 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.MediaChannel:116 #: ../../../discord/channel.py:docstring of discord.channel.TextChannel:102 #: c03fe611956149aba94e3914962f92df #: c03fe611956149aba94e3914962f92df +#: c03fe611956149aba94e3914962f92df msgid "The initial slowmode delay to set on newly created threads in this channel." msgstr "" @@ -17874,16 +19148,20 @@ 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.MediaChannel.edit:8 #: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:17 #: b736174baf734a728df41ae7c8846701 #: 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.MediaChannel.edit:22 #: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:31 #: 795407065f204ab394d5d71e46f4f9e4 #: 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 "" @@ -17893,9 +19171,11 @@ msgid "Change the type of this text channel. Currently, only conversion between msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:30 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel.edit:30 #: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:43 #: aec9e5551cb74af8b49d87aceac3742b #: 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 "" @@ -17907,9 +19187,11 @@ msgid "The new default slowmode delay in seconds for threads created in this cha msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:33 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel.edit:33 #: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:46 #: a07120a4d00149718bbcb809103cc6a7 #: a07120a4d00149718bbcb809103cc6a7 +#: a07120a4d00149718bbcb809103cc6a7 msgid "The new default slowmode delay in seconds for threads created in this channel." msgstr "" @@ -17924,9 +19206,11 @@ msgid "Optional[:class:`.TextChannel`]" msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:60 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel.edit:52 #: ../../../discord/channel.py:docstring of discord.channel.TextChannel.edit:55 #: 0fc3c3b030404e49b32d2e3452611428 #: 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 "" @@ -17939,6 +19223,7 @@ msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:5 #: fbf735600cc44f92ab131b1a3b735685 #: 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 "" @@ -17966,6 +19251,7 @@ msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:36 #: 0102ac1b4d7c4838bb44d69f8d60d28c #: 0102ac1b4d7c4838bb44d69f8d60d28c +#: 0102ac1b4d7c4838bb44d69f8d60d28c msgid "The reason for creating a new thread. Shows up on the audit log." msgstr "" @@ -17973,6 +19259,7 @@ msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:39 #: fd6df08adf534a90b14c140cbd59529b #: fd6df08adf534a90b14c140cbd59529b +#: fd6df08adf534a90b14c140cbd59529b msgid "The created thread" msgstr "" @@ -17980,128 +19267,151 @@ msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.TextChannel.create_thread:43 #: f3041c1cfd4f4cd0b84d05aec3166d18 #: f3041c1cfd4f4cd0b84d05aec3166d18 +#: f3041c1cfd4f4cd0b84d05aec3166d18 msgid "Starting the thread failed." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:1 #: 53020510c3264070868a136e9d819a55 #: 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 +#: 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 +#: 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 +#: 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 +#: 47e0f3baf0144f1ba8b3c4d5ef0bfe34 msgid "Whether to retrieve private archived threads." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:20 #: 53a32620bfa14fbb874c660624fe5617 #: 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 +#: 7893ab8ad95343709b667196bff9d808 msgid ":class:`Thread` -- The archived threads." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:26 #: 2d87b8ad74d74790955f8a8f7521ae0c #: 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 +#: 00056e8969fc401c9d8d3a593d399d7b msgid "The request to get the archived threads failed." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel._TextChannel.archived_threads:29 #: 2e2ff553e8684e86a18df67eca7e1566 #: 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 +#: dd7fe9e0e5104c1bb97c25dc8254e260 msgid "Follows a channel using a webhook." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:3 #: 20936b5e624649fe9dc85c8cc9da0a31 #: 20936b5e624649fe9dc85c8cc9da0a31 +#: 20936b5e624649fe9dc85c8cc9da0a31 msgid "Only news channels can be followed." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:7 #: 4e6a755a76a24f0dac7823c73d8eeed5 #: 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 +#: 3a6238bf9ce5438aa21950c2d2f44a49 msgid "The channel you would like to follow from." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:16 #: 0e891d00bbcf4a789ddad17a6d35832c #: 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 +#: 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 +#: 6e59b434e5ea44f28ea64487973c3373 msgid "Following the channel failed." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel._TextChannel.follow:25 #: aafe6d980d8c46cd89c2a0d6c857ced5 #: 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.MediaChannel.members:1 #: ../../../discord/channel.py:docstring of discord.TextChannel.members:1 #: d3a81ce636a44a9e88b3eea449b50f70 #: 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.MediaChannel.threads:1 #: ../../../discord/channel.py:docstring of discord.TextChannel.threads:1 #: f4fe0d12fcea454aa752afbccfa50240 #: f4fe0d12fcea454aa752afbccfa50240 +#: f4fe0d12fcea454aa752afbccfa50240 msgid "Returns all the threads that you can see." msgstr "" @@ -18111,57 +19421,77 @@ msgid "Represents a Discord forum channel." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:51 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel:53 +#: 4b34ca608be34c5597336cc69ea91cf2 #: 4b34ca608be34c5597336cc69ea91cf2 msgid ":attr:`guidelines` exists as an alternative to this attribute." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:106 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel:104 +#: b083e6a86b634b1894c54f243b988735 #: b083e6a86b634b1894c54f243b988735 msgid "The set of tags that can be used in a forum channel." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:114 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel:110 +#: cae1b545239a43b6aa72e818246d1b4a #: cae1b545239a43b6aa72e818246d1b4a msgid "The default sort order type used to order posts in this channel." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:118 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel:112 +#: 163ca8890cd8438d88981ac907297672 #: 163ca8890cd8438d88981ac907297672 msgid "Optional[:class:`SortOrder`]" msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:130 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel:122 +#: 79295ddcd99444a28326d80b16bcb8e8 #: 79295ddcd99444a28326d80b16bcb8e8 msgid "The default forum reaction emoji." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel:134 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel:124 +#: 301a6e58f833446e89b741b0196dbd33 #: 301a6e58f833446e89b741b0196dbd33 -msgid "Optional[:class:`str` | :class:`discord.Emoji`]" +msgid "Optional[:class:`str` | :class:`discord.GuildEmoji`]" msgstr "" #: ../../../discord/channel.py:docstring of discord.ForumChannel.guidelines:1 +#: ../../../discord/channel.py:docstring of discord.MediaChannel.guidelines:1 +#: 718249dfc3d4489791382f41a839e150 #: 718249dfc3d4489791382f41a839e150 msgid "The channel's guidelines. An alias of :attr:`topic`." msgstr "" #: ../../../discord/channel.py:docstring of discord.ForumChannel.requires_tag:1 +#: ../../../discord/channel.py:docstring of discord.MediaChannel.requires_tag:1 +#: 8dae47fc78014be6bdc6ca09757b5007 #: 8dae47fc78014be6bdc6ca09757b5007 -msgid "Whether a tag is required to be specified when creating a thread in this forum channel." +msgid "Whether a tag is required to be specified when creating a thread in this forum or media channel." msgstr "" #: ../../../discord/channel.py:docstring of discord.ForumChannel.requires_tag:3 +#: ../../../discord/channel.py:docstring of discord.MediaChannel.requires_tag:3 +#: ef72d447ccb444db82cfbcc3779bc392 #: ef72d447ccb444db82cfbcc3779bc392 msgid "Tags are specified in :attr:`applied_tags`." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.get_tag:1 #: 790f262d27f049caa2b496ed4373523e +#: 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 +#: 193050a1c4bb4382bbbf16fdfabd0435 msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.channel.ForumTag\\` \\| \\:py\\:obj\\:\\`None\\``" msgstr "" @@ -18171,13 +19501,15 @@ msgid "The default sort order type to use to order posts in this channel. .. ve msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:37 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel.edit:35 +#: a743fff2abf44d978975cbef0b68d112 #: 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" +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. ''). .. versionadded:: 2.5" msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:47 @@ -18186,6 +19518,8 @@ 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:47 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel.edit:41 +#: 0b5e325a38434b46b84bf970a8b2c356 #: 0b5e325a38434b46b84bf970a8b2c356 msgid "The set of tags that can be used in this channel. Must be less than `20`." msgstr "" @@ -18196,6 +19530,8 @@ msgid "Whether a tag should be required to be specified when creating a thread i msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.edit:51 +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel.edit:43 +#: 46f1ffe182e64c9ba4a690d9f6460f58 #: 46f1ffe182e64c9ba4a690d9f6460f58 msgid "Whether a tag should be required to be specified when creating a thread in this channel." msgstr "" @@ -18212,24 +19548,58 @@ msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:3 #: 20d73b30bc03404db6cebb419fc013d2 +#: 20d73b30bc03404db6cebb419fc013d2 msgid "Creates a thread in this forum channel." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:32 #: 2b7967c4efa54bc092954aa4b4790943 +#: 2b7967c4efa54bc092954aa4b4790943 msgid "The time to wait before deleting the thread." msgstr "" #: ../../../discord/channel.py:docstring of discord.channel.ForumChannel.create_thread:50 #: fd82b9157d3e4afbbbc2d483895a3773 +#: 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 +#: 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.MediaChannel:1 +#: d6341ad4205a4369988579907602c902 +msgid "Represents a Discord media channel. Subclass of :class:`ForumChannel`." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.MediaChannel.media_download_options_hidden:1 +#: 8dae47fc78014be6bdc6ca09757b5007 +msgid "Whether media download options are hidden in this media channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel.edit:37 +#: acba40fd9b99460bb43889ba61c943d4 +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel.edit:45 +#: 8dae47fc78014be6bdc6ca09757b5007 +msgid "Whether media download options should be hidden in this media channel." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel.edit:48 +#: b15a139dcf17430b9bda24a4052d3504 +msgid "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." +msgstr "" + +#: ../../../discord/channel.py:docstring of discord.channel.MediaChannel.edit:50 +#: 9e006a134f6d4a5c98852ac3f6ee4da7 +msgid "Optional[:class:`.MediaChannel`]" +msgstr "" + #: ../../../discord/channel.py:docstring of discord.channel.VoiceChannel:1 #: 176b5d8e42a149aca568b2ab47d6d85d msgid "Represents a Discord guild voice channel." @@ -18628,7 +19998,7 @@ msgstr "" msgid "Leaving the group failed." msgstr "" -#: ../../api/models.rst:464 +#: ../../api/models.rst:526 #: 209e72461fff4eaeb235cc21aa5f1997 msgid "Stickers" msgstr "" @@ -18947,7 +20317,7 @@ msgstr "" msgid "An error occurred editing the sticker." msgstr "" -#: ../../api/models.rst:492 +#: ../../api/models.rst:554 #: fa3209921266443fb19f43b396c4c0a6 msgid "Events" msgstr "" @@ -19610,7 +20980,7 @@ msgstr "" msgid "The raw data sent by the `gateway `_." msgstr "" -#: ../../api/models.rst:577 +#: ../../api/models.rst:639 #: eae4e206e45a463f80727bc3e3eee504 msgid "Webhooks" msgstr "" diff --git a/docs/build/locales/api/ui_kit.pot b/docs/build/locales/api/ui_kit.pot index 65e400af14..f122061bad 100644 --- a/docs/build/locales/api/ui_kit.pot +++ b/docs/build/locales/api/ui_kit.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -50,34 +50,62 @@ msgstr "" #: beefc8c24f164c63a80136a8c5e5e925 #: 53499c7c38dd43799b5780dfd21b3b02 #: de7bcf10bc5947e99f4931c26c17c8c2 -#: ca073ce612814d8abbb2857a4f7c31cc -#: 68f0e04b65fd43ccad6348c57bad93ba -#: f4f99caceafc4e0b857149cb71c15de8 -#: ffbafb20b66d44b193637453dd85a141 -#: 7075cd32ada643e1afe2b1b1e2540a78 -#: 0fde91581db244e9a38eaa1298517198 -#: e6eacbc6685647afaa993a9e034c2c9e -#: 8ca8779b464a40069954fb8439451723 -#: 196110ed1f174bbc90e8e7f376d23b2d -#: 31274878cbf8429eb4cbbaab562f687a -#: 87b1f760ee304fdcb8d3158dad1f9687 -#: 26b856f134bd43d89d7bd04e9508cec1 -#: 99b19d97768746f6aad0d4c9f04602fc -#: 89289390586d4a4cab63303506125e33 -#: 7c40b29c39174637a4378923ab36d01b +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 #: 0eb33b6aec414778a7e06b676fd526f3 -#: ee24240ba8fe4d32b79a3dbd84647890 -#: 16f62a630b6c42649b13ec913a13f066 -#: 402dffb461e445cba56e4e1afcc98a38 -#: a32d29d036704b3aadf3893a40c1fd58 -#: dce921ab81d64865ba38df542fa4386f -#: dde97b21e9124139901056550166fb09 -#: d1dc3c0514e641c29d06f205b7feefc9 -#: db02240fc27a4c479381b1273800b086 -#: bb7676b81f53410c845e5d60a69a03a4 -#: 3310aa20be5a488690708eb9e3dd0fcc -#: 7f8342f4fa72464f92c9c3cffcfcbda4 -#: a5c25727efd240d7b3b1f5647ed24ce6 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 +#: de7bcf10bc5947e99f4931c26c17c8c2 msgid "Parameters" msgstr "" @@ -103,7 +131,7 @@ 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`." +msgid "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." msgstr "" #: ../../../discord/ui/button.py:docstring of discord.ui.button.Button:28 @@ -116,48 +144,118 @@ msgstr "" #: ../../api/ui_kit.rst:0 #: e5ecb31082e14aa3861296ff5854437a #: e6251a3992ae4babb7e79b06a31ea11d -#: f041071e4093433a9cac0a03ce5ab140 -#: f8f0d423ecf24626a1247f45667e5bfd -#: 9764068d3bfa4df68a9821f82609e559 -#: d36c9dfb2e944d03935e93d529a40227 -#: b1890cceac0449368e45eca0e3cc227a -#: 69ca8cba0b9a411d8e19abd29f7f1ed4 -#: a0b7807032194a53a18ea1511e4f67d3 -#: e6517eae45a3404e899c0bdfabdf3aea -#: 79d2f21642c04d77b8bce27656a52f8f -#: e1405bf6c4334211ba770e0674f150f9 -#: 74e20e420edc4715b4995ab7938b2023 -#: ae8f754f5d1a446e866e9443cd10081d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d #: 4847b534d3c14deba4061b428620b95b +#: e6251a3992ae4babb7e79b06a31ea11d #: 76d49544901349599337569d52510ee9 -#: 48dd419af0df473f93e5e713b7748656 -#: 9b9d0befc3c64fb9bae98aba514956f0 -#: f360a94646744e36b9934341c7885ed7 -#: b96d252eb71246cba2ed7ce0fa575e98 -#: 4d44fb14e809440e8f7f915460300e06 -#: 67269ff08c06462b82bff968f744feea -#: f66852d0a07246dbb596fa01e203d767 +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d #: 787aeffb30b548a38cbe20f0a065de37 -#: 5354adfbc0cb4f498d3e07dc0ed3d63c -#: c8632725e7ca4cb18d9ec87f8986c8b6 -#: 49a56da0430b431f8c729950b9c55006 +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d +#: e6251a3992ae4babb7e79b06a31ea11d 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 +#: ../../../discord/ui/button.py:docstring of discord.ui.button.button:41 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.channel_select:21 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.mentionable_select:19 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.role_select:19 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:58 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.string_select:21 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.user_select:19 #: 8b2126220f0a40489f72fbb6541865ab #: 9d801d79daf4416b8d3f256723d14e9e -#: bedc28aed63d4c35821a3df7a988ceba -#: da524bc45bed4882b24144a6de72d3b3 -#: fd120175bb8541ecb5ca7146883b6156 -#: 15a54ae1a66549eab609150b6dc69f6b -#: 2e9d4fbae0e54c02b65dcc5c67eccab2 +#: 9d801d79daf4416b8d3f256723d14e9e +#: 9d801d79daf4416b8d3f256723d14e9e +#: 9d801d79daf4416b8d3f256723d14e9e +#: 9d801d79daf4416b8d3f256723d14e9e +#: 9d801d79daf4416b8d3f256723d14e9e 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 "" @@ -193,7 +291,7 @@ msgstr "" #: ../../../discord/ui/select.py:docstring of discord.ui.select.select:21 #: cf7265a79f204a609bac4e3eeac79c31 #: 3e3120d48b4f41869c6ac4d4a11ae788 -#: 46f50cc5d1d241dea802bc7c51e5b497 +#: 3e3120d48b4f41869c6ac4d4a11ae788 msgid "The placeholder text that is shown if nothing is selected, if any." msgstr "" @@ -236,6 +334,13 @@ msgstr "" msgid "Whether the select is disabled or not. Defaults to ``False``." msgstr "" +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select:55 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.select:55 +#: 3e0672a1b2d64d418a64a8f5033f2572 +#: 3e0672a1b2d64d418a64a8f5033f2572 +msgid "The select menu's ID." +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`." @@ -274,7 +379,7 @@ 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 +#: 16b83c8a92c745c8b399ffc3a72f0772 msgid "This object must be inherited to create a UI within Discord." msgstr "" @@ -283,11 +388,9 @@ msgstr "" 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." +msgid "Timeout in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. If ``None`` then there is no timeout." msgstr "" #: ../../../discord/ui/view.py:docstring of discord.ui.view.View:17 @@ -297,10 +400,10 @@ msgstr "" #: ../../../discord/ui/view.py:docstring of discord.ui.view.View:0 #: 480fbf0b10fa416d83a78fe20327dbce -#: c0f3dd62da99471bbbb9ef04603415f0 -#: 3bb28eba0b6e4a33bf70e6ec23f7f0ce -#: 869c217ef1fb4f1bb558c0c275307664 -#: 90ac82a2463949f8a34cca59e7616985 +#: 480fbf0b10fa416d83a78fe20327dbce +#: 480fbf0b10fa416d83a78fe20327dbce +#: 480fbf0b10fa416d83a78fe20327dbce +#: 480fbf0b10fa416d83a78fe20327dbce msgid "type" msgstr "" @@ -328,8 +431,8 @@ msgstr "" #: ../../../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 +#: 4d45955820034f44b44354116cd9d1f7 +#: 4d45955820034f44b44354116cd9d1f7 msgid ":class:`bool`" msgstr "" @@ -368,29 +471,88 @@ msgstr "" msgid "The message with components to convert into a view." msgstr "" +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.from_dict:7 #: ../../../discord/ui/view.py:docstring of discord.ui.view.View.from_message:12 #: b159c65de392440fac77f0ec9989f160 +#: b159c65de392440fac77f0ec9989f160 msgid "The timeout of the converted view." msgstr "" #: ../../api/ui_kit.rst:0 #: 28a3de2a47e54084b6f9a9b85e58ffda -#: cebca2833179445fb4e661e106d5cc43 -#: bdf962475cee47d4ae16bdb523f4bdd4 -#: f4f15b52c843401587586464af1f15be +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda +#: 28a3de2a47e54084b6f9a9b85e58ffda msgid "Returns" msgstr "" +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.from_dict:10 #: ../../../discord/ui/view.py:docstring of discord.ui.view.View.from_message:15 #: 64c266a59d7f48e683effda66301b9a2 +#: 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_dict:12 #: ../../../discord/ui/view.py:docstring of discord.ui.view.View.from_message:17 #: 9718cb2e8075430da95c8d900f3ed7d8 +#: 9718cb2e8075430da95c8d900f3ed7d8 msgid ":class:`View`" msgstr "" +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.from_dict:1 +#: c392f64e411a44c39ed13c8cc5125f2a +msgid "Converts a list of component dicts into a :class:`View`." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.from_dict:4 +#: 440ace76c1c843a0a6a9ed83aba2d54c +msgid "The list of components to convert into a view." +msgstr "" + #: ../../../discord/ui/view.py:docstring of discord.ui.view.View.add_item:1 #: d149c73fdd87423abab34ae033ad3bb2 msgid "Adds an item to the view." @@ -403,21 +565,44 @@ msgstr "" #: ../../api/ui_kit.rst:0 #: 024152e81dad464c8dea98a5986784a2 -#: acf1210671c64fe0a94869a2ec5777fd -#: a8beb6c0b45f41f3802af4f176357b18 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 +#: 024152e81dad464c8dea98a5986784a2 msgid "Raises" msgstr "" +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_item:7 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.add_item:7 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.set_accessory:8 #: ../../../discord/ui/view.py:docstring of discord.ui.view.View.add_item:7 #: 0c2448b08bed49c9b3a36391e2dfe223 +#: 0c2448b08bed49c9b3a36391e2dfe223 +#: 0c2448b08bed49c9b3a36391e2dfe223 +#: 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." +msgid "Maximum number of children has been exceeded (40) or the row the item is trying to be added to is full." msgstr "" +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.media_gallery.MediaGallery.add_item:15 #: ../../../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 @@ -428,31 +613,32 @@ msgstr "" #: ../../../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.remove_item:8 #: ../../../discord/ui/view.py:docstring of discord.ui.view.View.stop:6 #: 06d7048de769474a8bb1a6d4a2dc4250 -#: 8a6327ab096844d5ab16d2316f29be99 -#: df7ded422fee4a2f97fa22d4a7adac87 -#: 0f024bf23b354403841f7dde8d71621a -#: fe97129bcb4d4e258ff0beb4c6390702 +#: 06d7048de769474a8bb1a6d4a2dc4250 +#: 06d7048de769474a8bb1a6d4a2dc4250 +#: 06d7048de769474a8bb1a6d4a2dc4250 #: 3c90e45f56914ab3a3afc07c95abbe60 -#: e8a673c7ef7448448155a519934deb7a -#: f0b9b386cb7f440d9ded8cbb48862408 -#: c0e5fc96f0134c3ca7023b6236f2a3fd -#: 5ca2db4b948a4526bbe2f7733e9e1540 -#: c28cd0a90c6243f48951aebe91f5a89c -#: 14e8aec6cbaf4828aec5b04bd5b670b0 +#: 06d7048de769474a8bb1a6d4a2dc4250 +#: 06d7048de769474a8bb1a6d4a2dc4250 +#: 06d7048de769474a8bb1a6d4a2dc4250 +#: 06d7048de769474a8bb1a6d4a2dc4250 +#: 06d7048de769474a8bb1a6d4a2dc4250 +#: 06d7048de769474a8bb1a6d4a2dc4250 +#: 06d7048de769474a8bb1a6d4a2dc4250 +#: 06d7048de769474a8bb1a6d4a2dc4250 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." +#: 536200fe32e54b84acbba439cbf907fd +msgid "Removes an item from the view. If an :class:`int` or :class:`str` is passed, the item will be removed by Item ``id`` or ``custom_id`` respectively." msgstr "" -#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.remove_item:4 -#: 59807342ce744d8d886b5e2235ab0e2b -msgid "The item to remove from the view." +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.remove_item:5 +#: ab49d7efd6404221b72e504c584ff8e6 +msgid "The item, item ``id``, or item ``custom_id`` to remove from the view." msgstr "" #: ../../../discord/ui/view.py:docstring of discord.ui.view.View.clear_items:1 @@ -461,23 +647,27 @@ 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)`." +#: 033e19cef0aa4171b98dc54b06a42afe +msgid "Gets an item from the view. Roughly equal to `utils.get(view.children, ...)`. If an :class:`int` is provided, the item will be retrieved by ``id``, otherwise by ``custom_id``. This method will also search nested items." msgstr "" -#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.get_item:4 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.get_item:6 #: cbb9b6731f96427fb3201cdf6793994c msgid "The custom_id of the item to get" msgstr "" -#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.get_item:7 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.get_item:9 #: 98fa144afc194f7d8515bd447103d0a2 -msgid "The item with the matching ``custom_id`` if it exists." +msgid "The item with the matching ``custom_id`` or ``id`` if it exists." msgstr "" -#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.get_item:8 +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.get_item:10 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.get_item:9 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.get_item:10 #: 3d6d6e176c7f414092ad530cfe34fc1b -msgid "Optional[:class:`Item`]" +#: 3d6d6e176c7f414092ad530cfe34fc1b +#: 3d6d6e176c7f414092ad530cfe34fc1b +msgid "Optional[:class:`Item`]" msgstr "" #: ../../../discord/ui/button.py:docstring of discord.ui.item.Item.callback:1 @@ -490,14 +680,14 @@ msgstr "" #: ../../../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 +#: e983730f42794becb4c575857dd306d4 #: 34fbdd6619144a00b71dc4a9dfbdf301 -#: 69e9487f1d3f4f93adcadb433feb339b -#: e969a0150e5149c3b6be69868a5dcd77 -#: 770fffa13a5f46cca1d7d0a054cb695f -#: 8b341b66e04245dd9e4f5a2f1f5e69eb -#: cca85a1077c94196a7736c41aeb0a7f5 +#: e983730f42794becb4c575857dd306d4 +#: 34fbdd6619144a00b71dc4a9dfbdf301 +#: e983730f42794becb4c575857dd306d4 +#: e983730f42794becb4c575857dd306d4 +#: e983730f42794becb4c575857dd306d4 msgid "|coro|" msgstr "" @@ -529,7 +719,7 @@ 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 +#: 1a432a43d45d41dd97862b1f0f19af7e msgid "The interaction that occurred." msgstr "" @@ -556,14 +746,14 @@ 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 +#: 99e74ef3f5f9466680a35e8deda8f23c 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 +#: 2238043a3f944ee984d06ec6486cb852 msgid "The exception that was raised." msgstr "" @@ -575,7 +765,7 @@ 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 +#: 24dd9c6954ba4b6f8baae26063abdfe1 msgid "The interaction that led to the failure." msgstr "" @@ -595,13 +785,15 @@ 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_components_v2:6 #: ../../../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 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" msgstr "" @@ -620,6 +812,16 @@ msgstr "" 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.is_components_v2:1 +#: a7c94233f3944c7f91a2fddae3d48713 +msgid "Whether the view contains V2 components." +msgstr "" + +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.is_components_v2:3 +#: 293d31404f4f40e18e090ebf37d18faa +msgid "A view containing V2 components cannot be sent alongside message content or embeds." +msgstr "" + #: ../../../discord/ui/view.py:docstring of discord.ui.view.View.wait:1 #: a350e14ae6094bf9a45da3bba4581ba1 msgid "Waits until the view has finished interacting." @@ -636,8 +838,8 @@ msgid "If ``True``, then the view timed out. If ``False`` then the view finished msgstr "" #: ../../../discord/ui/view.py:docstring of discord.ui.view.View.disable_all_items:1 -#: 314de3c4bde54717b2849331287e748e -msgid "Disables all items in the view." +#: d7b6d5871f744324b100f604ccaa833a +msgid "Disables all buttons and select menus in the view." msgstr "" #: ../../../discord/ui/view.py:docstring of discord.ui.view.View.disable_all_items:4 @@ -646,8 +848,8 @@ 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." +#: d7b6d5871f744324b100f604ccaa833a +msgid "Enables all buttons and select menus in the view." msgstr "" #: ../../../discord/ui/view.py:docstring of discord.ui.view.View.enable_all_items:4 @@ -655,41 +857,495 @@ msgstr "" msgid "A list of items in `self.children` to not enable from the view." msgstr "" +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.copy_text:1 +#: 98518e1021d44560b6efc103b9e0993d +msgid "Returns the text of all :class:`~discord.ui.TextDisplay` items in this View. Equivalent to the `Copy Text` option on Discord clients." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.copy_text:5 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.copy_text:5 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.text_display.TextDisplay.copy_text:4 +#: ../../../discord/ui/view.py:docstring of discord.ui.view.View.copy_text:5 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" +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:" +#: 055cf67df1e94d0592bbc5d22013c323 +msgid "The following are the original items:" msgstr "" +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container:5 #: ../../../discord/ui/item.py:docstring of discord.ui.item.Item:5 #: 0b1b92a5722e4ab398df7f16d1135628 +#: 0b1b92a5722e4ab398df7f16d1135628 msgid ":class:`discord.ui.Button`" msgstr "" +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container:6 #: ../../../discord/ui/item.py:docstring of discord.ui.item.Item:6 #: b7356742ae8c4acebf71b6dc048626a3 +#: b7356742ae8c4acebf71b6dc048626a3 msgid ":class:`discord.ui.Select`" msgstr "" +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item:8 +#: 3c9474ceed6944429610eebc2a86a8c2 +msgid "And the following are new items under the \"Components V2\" specification:" +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container:7 +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item:10 +#: 0b1b92a5722e4ab398df7f16d1135628 +#: 0b1b92a5722e4ab398df7f16d1135628 +msgid ":class:`discord.ui.Section`" +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container:8 +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item:11 +#: 0b1b92a5722e4ab398df7f16d1135628 +#: 0b1b92a5722e4ab398df7f16d1135628 +msgid ":class:`discord.ui.TextDisplay`" +msgstr "" + +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item:12 +#: 0b1b92a5722e4ab398df7f16d1135628 +msgid ":class:`discord.ui.Thumbnail`" +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container:9 +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item:13 +#: b7356742ae8c4acebf71b6dc048626a3 +#: b7356742ae8c4acebf71b6dc048626a3 +msgid ":class:`discord.ui.MediaGallery`" +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container:10 +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item:14 +#: b7356742ae8c4acebf71b6dc048626a3 +#: b7356742ae8c4acebf71b6dc048626a3 +msgid ":class:`discord.ui.File`" +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container:11 +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item:15 +#: b7356742ae8c4acebf71b6dc048626a3 +#: b7356742ae8c4acebf71b6dc048626a3 +msgid ":class:`discord.ui.Separator`" +msgstr "" + +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item:16 +#: 0b1b92a5722e4ab398df7f16d1135628 +msgid ":class:`discord.ui.Container`" +msgstr "" + +#: ../../../discord/ui/item.py:docstring of discord.ui.item.Item:20 +#: b2ba368092074ad2bad9d3812f0719ce +msgid "Added V2 Components." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.row:1 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.row:1 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.row:1 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.row:1 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.row:1 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.row:1 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.row:1 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.row:1 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.row:1 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.row:1 +#: 0e7a72fe224642d185c918757f0f0e07 +#: 0e7a72fe224642d185c918757f0f0e07 +#: 0e7a72fe224642d185c918757f0f0e07 +#: 0e7a72fe224642d185c918757f0f0e07 +#: 0e7a72fe224642d185c918757f0f0e07 +#: 0e7a72fe224642d185c918757f0f0e07 +#: 0e7a72fe224642d185c918757f0f0e07 +#: 0e7a72fe224642d185c918757f0f0e07 +#: 0e7a72fe224642d185c918757f0f0e07 +#: 0e7a72fe224642d185c918757f0f0e07 +msgid "Gets or sets the row position of this item within its parent view." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.row:3 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.row:3 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.row:3 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.row:3 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.row:3 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.row:3 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.row:3 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.row:3 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.row:3 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.row:3 +#: 6a953251c3a04c189cbd3bb505c5064d +#: 6a953251c3a04c189cbd3bb505c5064d +#: 6a953251c3a04c189cbd3bb505c5064d +#: 6a953251c3a04c189cbd3bb505c5064d +#: 6a953251c3a04c189cbd3bb505c5064d +#: 6a953251c3a04c189cbd3bb505c5064d +#: 6a953251c3a04c189cbd3bb505c5064d +#: 6a953251c3a04c189cbd3bb505c5064d +#: 6a953251c3a04c189cbd3bb505c5064d +#: 6a953251c3a04c189cbd3bb505c5064d +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 39 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.row:7 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.row:7 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.row:7 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.row:7 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.row:7 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.row:7 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.row:7 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.row:7 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.row:7 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.row:7 +#: 049f4ecfd49145a38a13208975c18f13 +#: 049f4ecfd49145a38a13208975c18f13 +#: 049f4ecfd49145a38a13208975c18f13 +#: 049f4ecfd49145a38a13208975c18f13 +#: 049f4ecfd49145a38a13208975c18f13 +#: 049f4ecfd49145a38a13208975c18f13 +#: 049f4ecfd49145a38a13208975c18f13 +#: 049f4ecfd49145a38a13208975c18f13 +#: 049f4ecfd49145a38a13208975c18f13 +#: 049f4ecfd49145a38a13208975c18f13 +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.id:6 +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.row:8 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.id:6 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.row:8 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.id:6 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.row:8 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.id:6 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.row:8 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.id:6 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.row:8 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.id:6 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.row:8 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.id:6 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.row:8 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.id:6 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.row:8 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.id:6 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.row:8 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.id:6 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.row:8 +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +#: e38547a50c034ab9807a13ecc38ab43a +msgid "Optional[:class:`int`]" +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.row:10 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.row:10 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.row:10 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.row:10 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.row:10 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.row:10 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.row:10 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.row:10 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.row:10 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.row:10 +#: 0199d2a0f84848b48937a4d5853bf651 +#: 0199d2a0f84848b48937a4d5853bf651 +#: 0199d2a0f84848b48937a4d5853bf651 +#: 0199d2a0f84848b48937a4d5853bf651 +#: 0199d2a0f84848b48937a4d5853bf651 +#: 0199d2a0f84848b48937a4d5853bf651 +#: 0199d2a0f84848b48937a4d5853bf651 +#: 0199d2a0f84848b48937a4d5853bf651 +#: 0199d2a0f84848b48937a4d5853bf651 +#: 0199d2a0f84848b48937a4d5853bf651 +msgid "If the row value is not ``None`` and is outside the range [0, 39]." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.width:1 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.width:1 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.width:1 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.width:1 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.width:1 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.width:1 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.width:1 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.width:1 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.width:1 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.width:1 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +msgid "Gets the width of the item in the UI layout." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.width:3 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.width:3 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.width:3 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.width:3 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.width:3 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.width:3 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.width:3 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.width:3 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.width:3 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.width:3 +#: 8e2598b65b2d4b9cb4ed1ca3d26d3d67 +#: 8e2598b65b2d4b9cb4ed1ca3d26d3d67 +#: 8e2598b65b2d4b9cb4ed1ca3d26d3d67 +#: 8e2598b65b2d4b9cb4ed1ca3d26d3d67 +#: 8e2598b65b2d4b9cb4ed1ca3d26d3d67 +#: 8e2598b65b2d4b9cb4ed1ca3d26d3d67 +#: 8e2598b65b2d4b9cb4ed1ca3d26d3d67 +#: 8e2598b65b2d4b9cb4ed1ca3d26d3d67 +#: 8e2598b65b2d4b9cb4ed1ca3d26d3d67 +#: 8e2598b65b2d4b9cb4ed1ca3d26d3d67 +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.width:5 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.width:5 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.width:5 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.width:5 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.width:5 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.width:5 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.width:5 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.width:5 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.width:5 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.width:5 +#: 0841d9930482419a831cb90ca1d54c5f +#: 0841d9930482419a831cb90ca1d54c5f +#: 0841d9930482419a831cb90ca1d54c5f +#: 0841d9930482419a831cb90ca1d54c5f +#: 0841d9930482419a831cb90ca1d54c5f +#: 0841d9930482419a831cb90ca1d54c5f +#: 0841d9930482419a831cb90ca1d54c5f +#: 0841d9930482419a831cb90ca1d54c5f +#: 0841d9930482419a831cb90ca1d54c5f +#: 0841d9930482419a831cb90ca1d54c5f +msgid "The width of the item. Defaults to 1." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.width:6 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.width:6 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.width:6 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.width:6 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.width:6 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.width:6 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.width:6 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.width:6 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.width:6 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.width:6 +#: e7ab5b99207b41528e6ae4e7018d7a60 +#: e7ab5b99207b41528e6ae4e7018d7a60 +#: e7ab5b99207b41528e6ae4e7018d7a60 +#: e7ab5b99207b41528e6ae4e7018d7a60 +#: e7ab5b99207b41528e6ae4e7018d7a60 +#: e7ab5b99207b41528e6ae4e7018d7a60 +#: e7ab5b99207b41528e6ae4e7018d7a60 +#: e7ab5b99207b41528e6ae4e7018d7a60 +#: e7ab5b99207b41528e6ae4e7018d7a60 +#: e7ab5b99207b41528e6ae4e7018d7a60 +msgid ":class:`int`" +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.id:1 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.id:1 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.id:1 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.id:1 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.id:1 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.id:1 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.id:1 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.id:1 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.id:1 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.id:1 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +#: d1f45a3b27da4ba69428076fe7aa9191 +msgid "Gets this item's ID." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.id:3 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.id:3 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.id:3 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.id:3 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.id:3 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.id:3 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.id:3 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.id:3 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.id:3 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.id:3 +#: 27333f7269d84c08960dcadbab1960ab +#: 84e5d559fa8342148f03cd3c50e825dc +#: c2467f1ea20d43948bf10ab3894404cf +#: 61c1e6f7577746b7b5de163c969e0841 +#: 60966c55178543578d48392122d37810 +#: 11902e9d3ece48348b8c0660eda1e7c3 +#: 2011c29e9b164747b92e03ca8e4f7dc4 +#: 7e4af08799644323918727e785d30cbb +#: 00a2a1707ded427a8a675aee688b3563 +#: c60931ba9e3b4c0d99cdf577a20009bc +msgid "This can be set by the user when constructing an Item. If not, Discord will automatically provide one when the View is sent." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.id:5 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.id:5 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.id:5 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.id:5 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.id:5 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.id:5 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.id:5 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.id:5 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.id:5 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.id:5 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +msgid "The ID of this item, or ``None`` if the user didn't set one." +msgstr "" + #: ../../../discord/ui/button.py:docstring of discord.ui.Button.view:1 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.view:1 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.view:1 #: ../../../discord/ui/item.py:docstring of discord.ui.Item.view:1 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.view:1 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.view:1 #: ../../../discord/ui/select.py:docstring of discord.ui.Select.view:1 -#: 82ecd677a8ae42efab9547d6e0c64ca6 -#: 718197200d854b84879705c60c0d53e8 -#: eece3a9744f2405a8e83f30be0252a22 -msgid "The underlying view for this item." +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.view:1 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.view:1 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.view:1 +#: 055cf67df1e94d0592bbc5d22013c323 +#: 055cf67df1e94d0592bbc5d22013c323 +#: 055cf67df1e94d0592bbc5d22013c323 +#: 055cf67df1e94d0592bbc5d22013c323 +#: 055cf67df1e94d0592bbc5d22013c323 +#: 055cf67df1e94d0592bbc5d22013c323 +#: 055cf67df1e94d0592bbc5d22013c323 +#: 055cf67df1e94d0592bbc5d22013c323 +#: 055cf67df1e94d0592bbc5d22013c323 +#: 055cf67df1e94d0592bbc5d22013c323 +msgid "Gets the parent view associated with this item." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.view:3 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.view:3 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.view:3 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.view:3 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.view:3 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.view:3 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.view:3 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.view:3 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.view:3 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.view:3 +#: 313d2dfd0e054186b5309b0bc9593891 +#: 313d2dfd0e054186b5309b0bc9593891 +#: 313d2dfd0e054186b5309b0bc9593891 +#: 313d2dfd0e054186b5309b0bc9593891 +#: 313d2dfd0e054186b5309b0bc9593891 +#: 313d2dfd0e054186b5309b0bc9593891 +#: 313d2dfd0e054186b5309b0bc9593891 +#: 313d2dfd0e054186b5309b0bc9593891 +#: 313d2dfd0e054186b5309b0bc9593891 +#: 313d2dfd0e054186b5309b0bc9593891 +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.view:6 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.view:6 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.view:6 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.view:6 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.view:6 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.view:6 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.view:6 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.view:6 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.view:6 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.view:6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +#: ab49d7efd6404221b72e504c584ff8e6 +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.Button.view:7 +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.view:7 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.view:7 +#: ../../../discord/ui/item.py:docstring of discord.ui.Item.view:7 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.MediaGallery.view:7 +#: ../../../discord/ui/section.py:docstring of discord.ui.Section.view:7 +#: ../../../discord/ui/select.py:docstring of discord.ui.Select.view:7 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.view:7 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.view:7 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.view:7 +#: d6f2e5d5e44c407b8d8bbb9c0b189365 +#: d6f2e5d5e44c407b8d8bbb9c0b189365 +#: d6f2e5d5e44c407b8d8bbb9c0b189365 +#: d6f2e5d5e44c407b8d8bbb9c0b189365 +#: d6f2e5d5e44c407b8d8bbb9c0b189365 +#: d6f2e5d5e44c407b8d8bbb9c0b189365 +#: d6f2e5d5e44c407b8d8bbb9c0b189365 +#: d6f2e5d5e44c407b8d8bbb9c0b189365 +#: d6f2e5d5e44c407b8d8bbb9c0b189365 +#: d6f2e5d5e44c407b8d8bbb9c0b189365 +msgid "Optional[:class:`View`]" 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 +#: 055cf67df1e94d0592bbc5d22013c323 +#: 055cf67df1e94d0592bbc5d22013c323 msgid "The callback associated with this UI item." msgstr "" @@ -697,8 +1353,8 @@ msgstr "" #: ../../../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 +#: 94fcbdc6f4a7448fbbebfa233bf60049 +#: 94fcbdc6f4a7448fbbebfa233bf60049 msgid "This can be overridden by subclasses." msgstr "" @@ -706,8 +1362,8 @@ msgstr "" #: ../../../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 +#: c4a0d0cb7af54912ad4f4e1cfb4aff78 +#: c4a0d0cb7af54912ad4f4e1cfb4aff78 msgid "The interaction that triggered this UI item." msgstr "" @@ -719,7 +1375,7 @@ 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 +#: 3e0672a1b2d64d418a64a8f5033f2572 msgid "The style of the button." msgstr "" @@ -731,14 +1387,14 @@ 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 +#: 47abb7d1e6094637a97fa3df6a95a8e8 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 +#: 1800abfd6ac44f59ae3181e5274b405c msgid "Whether the button is disabled or not." msgstr "" @@ -750,17 +1406,32 @@ 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 +#: 74f13428fd0a40f39ee7531329565abf 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 +#: bf020129ab2a4825b8dfff6074481348 msgid "The ID of the SKU this button refers to." msgstr "" +#: ../../../discord/ui/button.py:docstring of discord.ui.button.Button:28 +#: 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). .. warning:: This parameter does not work with V2 components or with more than 25 items in your view." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.button.Button:36 +#: b0401c9f48cb4a45886573ff700fe478 +msgid "This parameter does not work with V2 components or with more than 25 items in your view." +msgstr "" + +#: ../../../discord/ui/button.py:docstring of discord.ui.button.Button:39 +#: 47abb7d1e6094637a97fa3df6a95a8e8 +msgid "The button's ID." +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." @@ -819,7 +1490,7 @@ 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 +#: 796771ff82554675a187cca6828acb7c msgid "Whether the select is disabled or not." msgstr "" @@ -875,7 +1546,7 @@ 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`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgstr "" #: ../../../discord/ui/select.py:docstring of discord.ui.select.Select.add_option:23 @@ -886,10 +1557,55 @@ 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 +#: 7eff0916811d4ee2b31c189597562605 msgid "The number of options exceeds 25." msgstr "" +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_file:13 +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_gallery:12 +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_item:9 +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_section:18 +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_separator:13 +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_text:10 +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.disable_all_items:7 +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.enable_all_items:7 +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.remove_item:7 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.media_gallery.MediaGallery.append_item:10 +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.add_item:7 +#: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal.remove_item:7 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.add_item:10 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.add_text:12 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.disable_all_items:8 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.enable_all_items:8 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.remove_item:8 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.set_accessory:10 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.set_thumbnail:16 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select.add_option:28 +#: ../../../discord/ui/select.py:docstring of discord.ui.select.Select.append_option:9 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +#: ff0aea3ebb2f44c0874d3d169b0fc412 +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Self\\``" +msgstr "" + #: ../../../discord/ui/select.py:docstring of discord.ui.select.Select.append_option:1 #: 21ff2a9da99b4440929eb12965b39a31 msgid "Appends an option to the select menu." @@ -905,6 +1621,478 @@ msgstr "" 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/section.py:docstring of discord.ui.section.Section:1 +#: e42dbe83104c4d07ba9cf0ef21c7f391 +msgid "Represents a UI section. Sections must have 1-3 (inclusive) items and an accessory set." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section:6 +#: cdbfac06da814f8cbdae3f798005b0aa +msgid "The initial items contained in this section, up to 3. Currently only supports :class:`~discord.ui.TextDisplay`. Sections must have at least 1 item before being sent." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section:11 +#: a7ef7e248a784db3bb28699ee39b83af +msgid "The section's accessory. This is displayed in the top right of the section. Currently only supports :class:`~discord.ui.Button` and :class:`~discord.ui.Thumbnail`. Sections must have an accessory attached before being sent." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_section:15 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section:16 +#: 1a432a43d45d41dd97862b1f0f19af7e +#: 1a432a43d45d41dd97862b1f0f19af7e +msgid "The section's ID." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.add_item:1 +#: d149c73fdd87423abab34ae033ad3bb2 +msgid "Adds an item to the section." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.add_item:4 +#: 651c40af34754b2cbca1243c29182544 +msgid "The item to add to the section." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.add_item:8 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.add_text:10 +#: 3d4f7caeeeee4bf9849176d0b17c48b8 +#: 3d4f7caeeeee4bf9849176d0b17c48b8 +msgid "Maximum number of items has been exceeded (3)." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.remove_item:1 +#: d74ef86db3b84baa83b19399f917aeda +msgid "Removes an item from the section. If an :class:`int` or :class:`str` is passed, the item will be removed by Item ``id`` or ``custom_id`` respectively." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.remove_item:5 +#: 7fd54b986674467abbb28a2ced73f7d5 +msgid "The item, item ``id``, or item ``custom_id`` to remove from the section." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.get_item:1 +#: 1b9bd16ebb134085ba5e1309bcda4b6d +msgid "Get an item from this section. Alias for `utils.get(section.walk_items(), ...)`. If an ``int`` is provided, it will be retrieved by ``id``, otherwise it will check the accessory's ``custom_id``." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.get_item:6 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.get_item:5 +#: cbb9b6731f96427fb3201cdf6793994c +#: cbb9b6731f96427fb3201cdf6793994c +msgid "The id or custom_id of the item to get." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.get_item:8 +#: 98fa144afc194f7d8515bd447103d0a2 +msgid "The item with the matching ``id`` if it exists." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.add_text:1 +#: 2027446701754f3794b31d4a61853116 +msgid "Adds a :class:`TextDisplay` to the section." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.add_text:4 +#: 7eef7bc7f5434d39baab02325cc1ee35 +msgid "The content of the text display." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.add_text:7 +#: ../../../discord/ui/text_display.py:docstring of discord.ui.text_display.TextDisplay:9 +#: 651c40af34754b2cbca1243c29182544 +#: 651c40af34754b2cbca1243c29182544 +msgid "The text display's ID." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.set_accessory:1 +#: a8c107f041ed4021944056e98e4b13ee +msgid "Set an item as the section's :attr:`accessory`." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.set_accessory:4 +#: a57659147dc94f5f9d5929813436f625 +msgid "The item to set as accessory. Currently only supports :class:`~discord.ui.Button` and :class:`~discord.ui.Thumbnail`." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.set_thumbnail:1 +#: 902d5d2743cc4e5d9a150d67d6dbf0c4 +msgid "Sets a :class:`Thumbnail` with the provided URL as the section's :attr:`accessory`." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.set_thumbnail:4 +#: 0dfdf29800e044d89a49e207c803d984 +msgid "The url of the thumbnail." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.set_thumbnail:7 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.description:1 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.thumbnail.Thumbnail:9 +#: 0abfcec6e5a4408a803463cec892a147 +#: 0abfcec6e5a4408a803463cec892a147 +#: 0abfcec6e5a4408a803463cec892a147 +msgid "The thumbnail's description, up to 1024 characters." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.set_thumbnail:10 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.spoiler:1 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.thumbnail.Thumbnail:12 +#: 390e0de65aca4e25bf50e5ae6a456657 +#: 390e0de65aca4e25bf50e5ae6a456657 +#: 390e0de65aca4e25bf50e5ae6a456657 +msgid "Whether the thumbnail has the spoiler overlay. Defaults to ``False``." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.set_thumbnail:13 +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.thumbnail.Thumbnail:15 +#: b419baf4e6a44592b59bfc96271a175e +#: 7c479a76628e4ff788fb5ce892488b81 +msgid "The thumbnail's ID." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.copy_text:1 +#: 01f0168f669d4b0290965d97c05eaa78 +msgid "Returns the text of all :class:`~discord.ui.TextDisplay` items in this section. Equivalent to the `Copy Text` option on Discord clients." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.disable_all_items:1 +#: 4f53fdbd3a59401e9c345f065124710a +msgid "Disables all buttons and select menus in the section. At the moment, this only disables :attr:`accessory` if it is a button." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.disable_all_items:4 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.disable_all_items:5 +#: 4072920264ba4042a24a4149853585d3 +#: 4072920264ba4042a24a4149853585d3 +msgid "A list of items in `self.items` to not disable from the view." +msgstr "" + +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.enable_all_items:1 +#: f3ea6df26b99495cbeb98f4621e76e2a +msgid "Enables all buttons and select menus in the section. At the moment, this only enables :attr:`accessory` if it is a button." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.enable_all_items:4 +#: ../../../discord/ui/section.py:docstring of discord.ui.section.Section.enable_all_items:5 +#: 156efa1c1fbf4918af0b9e99b8099feb +#: 156efa1c1fbf4918af0b9e99b8099feb +msgid "A list of items in `self.items` to not enable from the view." +msgstr "" + +#: ../../../discord/ui/text_display.py:docstring of discord.ui.text_display.TextDisplay:1 +#: 28f795dbc1504eaf89ad7d34f12dab67 +msgid "Represents a UI text display. A message can have up to 4000 characters across all :class:`TextDisplay` objects combined." +msgstr "" + +#: ../../../discord/ui/text_display.py:docstring of discord.ui.text_display.TextDisplay:6 +#: 0abfcec6e5a4408a803463cec892a147 +msgid "The text display's content, up to 4000 characters." +msgstr "" + +#: ../../../discord/ui/text_display.py:docstring of discord.ui.TextDisplay.content:1 +#: b159c65de392440fac77f0ec9989f160 +msgid "The text display's content." +msgstr "" + +#: ../../../discord/ui/text_display.py:docstring of discord.ui.text_display.TextDisplay.copy_text:1 +#: 7c2cbe415a8b40228e186e7c36f51d92 +msgid "Returns the content of this text display. Equivalent to the `Copy Text` option on Discord clients." +msgstr "" + +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.thumbnail.Thumbnail:1 +#: b9270d5d3b734251840a9f06eb712027 +msgid "Represents a UI Thumbnail." +msgstr "" + +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.thumbnail.Thumbnail:6 +#: 184670165d7b4edcaeeba684f7607fdb +msgid "The url of the thumbnail. This can either be an arbitrary URL or an ``attachment://`` URL to work with local files." +msgstr "" + +#: ../../../discord/ui/thumbnail.py:docstring of discord.ui.Thumbnail.url:1 +#: 2b3710a8946a4678a5b387c8fe6eb4ed +msgid "The URL of this thumbnail's media. This can either be an arbitrary URL or an ``attachment://`` URL." +msgstr "" + +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.media_gallery.MediaGallery:1 +#: e2717bcb113c41aea2923e51606df8f2 +msgid "Represents a UI Media Gallery. Galleries may contain up to 10 :class:`MediaGalleryItem` objects." +msgstr "" + +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.media_gallery.MediaGallery:6 +#: 2f917e72a1924778a62c52611093344a +msgid "The initial items contained in this gallery, up to 10." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_gallery:9 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.media_gallery.MediaGallery:9 +#: 2f1d4094ef8f4f019a70fe83b1bf2cab +#: afe7e6ba6afe410da66fbde75de53ea0 +msgid "The gallery's ID." +msgstr "" + +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.media_gallery.MediaGallery.append_item:1 +#: 43bf0998de6443b9951e170b2abfe1dc +msgid "Adds a :attr:`MediaGalleryItem` to the gallery." +msgstr "" + +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.media_gallery.MediaGallery.append_item:4 +#: 24dd9c6954ba4b6f8baae26063abdfe1 +msgid "The gallery item to add to the gallery." +msgstr "" + +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.media_gallery.MediaGallery.append_item:7 +#: 0c2448b08bed49c9b3a36391e2dfe223 +msgid "A :class:`MediaGalleryItem` was not passed." +msgstr "" + +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.media_gallery.MediaGallery.add_item:13 +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.media_gallery.MediaGallery.append_item:8 +#: 3d4f7caeeeee4bf9849176d0b17c48b8 +#: 3d4f7caeeeee4bf9849176d0b17c48b8 +msgid "Maximum number of items has been exceeded (10)." +msgstr "" + +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.media_gallery.MediaGallery.add_item:1 +#: 2027446701754f3794b31d4a61853116 +msgid "Adds a new media item to the gallery." +msgstr "" + +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.media_gallery.MediaGallery.add_item:4 +#: bbc20b8dc2614eefa90d0386f29140ec +msgid "The URL of the media item. This can either be an arbitrary URL or an ``attachment://`` URL." +msgstr "" + +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.media_gallery.MediaGallery.add_item:7 +#: 760c50e112a04650a33bf2c56834b14f +msgid "The media item's description, up to 1024 characters." +msgstr "" + +#: ../../../discord/ui/media_gallery.py:docstring of discord.ui.media_gallery.MediaGallery.add_item:10 +#: 44b3331c42c24dd0871d7b6a7ac96dbe +msgid "Whether the media item has the spoiler overlay." +msgstr "" + +#: ../../../discord/ui/file.py:docstring of discord.ui.file.File:1 +#: 51e6a1596c4a449f9a81c52ebddaa39e +msgid "Represents a UI File." +msgstr "" + +#: ../../../discord/ui/file.py:docstring of discord.ui.file.File:4 +#: f51a89732ddb4b7f8f056e8d62bbfffa +msgid "This component does not show media previews. Use :class:`MediaGallery` for previews instead." +msgstr "" + +#: ../../../discord/ui/file.py:docstring of discord.ui.file.File:9 +#: 65d97d636f5948b7b262fff63683f16d +msgid "The URL of this file. This must be an ``attachment://`` URL referring to a local file used with :class:`~discord.File`." +msgstr "" + +#: ../../../discord/ui/file.py:docstring of discord.ui.file.File:12 +#: acc1711d1e2247a99930ff1d6dc94787 +msgid "Whether this file has the spoiler overlay." +msgstr "" + +#: ../../../discord/ui/file.py:docstring of discord.ui.file.File:15 +#: 7eff0916811d4ee2b31c189597562605 +msgid "The file component's ID." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_file:4 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.url:1 +#: 495795a867504df7b4e8daf02f749e64 +#: a581557192c444938b2d3be47d370596 +msgid "The URL of this file's media. This must be an ``attachment://`` URL that references a :class:`~discord.File`." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_file:7 +#: ../../../discord/ui/file.py:docstring of discord.ui.File.spoiler:1 +#: 390e0de65aca4e25bf50e5ae6a456657 +#: 390e0de65aca4e25bf50e5ae6a456657 +msgid "Whether the file has the spoiler overlay. Defaults to ``False``." +msgstr "" + +#: ../../../discord/ui/file.py:docstring of discord.ui.File.name:1 +#: 3aa00fa1b0524f57b5984d7f80d72c47 +msgid "The name of this file, if provided by Discord." +msgstr "" + +#: ../../../discord/ui/file.py:docstring of discord.ui.File.size:1 +#: ab49d7efd6404221b72e504c584ff8e6 +msgid "The size of this file in bytes, if provided by Discord." +msgstr "" + +#: ../../../discord/ui/separator.py:docstring of discord.ui.separator.Separator:1 +#: d3ed8c14fbc14d40be6691f7709cfe09 +msgid "Represents a UI Separator." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_separator:4 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.divider:1 +#: ../../../discord/ui/separator.py:docstring of discord.ui.separator.Separator:6 +#: 584df796ba3345878a51cb7cbbd2ad12 +#: 584df796ba3345878a51cb7cbbd2ad12 +#: 584df796ba3345878a51cb7cbbd2ad12 +msgid "Whether the separator is a divider. Defaults to ``True``." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_separator:7 +#: ../../../discord/ui/separator.py:docstring of discord.ui.Separator.spacing:1 +#: ../../../discord/ui/separator.py:docstring of discord.ui.separator.Separator:9 +#: 026ef9ab44a84f77b066b67e2a714ff9 +#: 2e459c651fda44a0b719d50abfa4df7f +#: cd8719caae424144aa8f1f2c37fc2374 +msgid "The spacing size of the separator. Defaults to :attr:`~discord.SeparatorSpacingSize.small`." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_separator:10 +#: ../../../discord/ui/separator.py:docstring of discord.ui.separator.Separator:12 +#: 2238043a3f944ee984d06ec6486cb852 +#: 2238043a3f944ee984d06ec6486cb852 +msgid "The separator's ID." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container:1 +#: d3ed8c14fbc14d40be6691f7709cfe09 +msgid "Represents a UI Container." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container:3 +#: 9a2765dfcfb646e084e717be3bed4b85 +msgid "The current items supported are as follows:" +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container:16 +#: 2f917e72a1924778a62c52611093344a +msgid "The initial items in this container." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container:19 +#: 55f2959aafef4d939f2a68b27ef9df0e +msgid "The accent colour of the container. Aliased to ``color`` as well." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container:22 +#: 44b3331c42c24dd0871d7b6a7ac96dbe +msgid "Whether this container has the spoiler overlay." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container:25 +#: 2238043a3f944ee984d06ec6486cb852 +msgid "The container's ID." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_item:1 +#: d149c73fdd87423abab34ae033ad3bb2 +msgid "Adds an item to the container." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_item:4 +#: 651c40af34754b2cbca1243c29182544 +msgid "The item to add to the container." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.remove_item:1 +#: 75dda6574daa47d1af114297c96aa397 +msgid "Removes an item from the container. If an int or str is passed, it will remove by Item :attr:`id` or ``custom_id`` respectively." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.remove_item:4 +#: ab49d7efd6404221b72e504c584ff8e6 +msgid "The item, ``id``, or item ``custom_id`` to remove from the container." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.get_item:1 +#: 8f9b751e4c5643d4b5bef56863405714 +msgid "Get an item from this container. Roughly equivalent to `utils.get(container.items, ...)`. If an ``int`` is provided, the item will be retrieved by ``id``, otherwise by ``custom_id``. This method will also search for nested items." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.get_item:9 +#: 98fa144afc194f7d8515bd447103d0a2 +msgid "The item with the matching ``id`` or ``custom_id`` if it exists." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_section:1 +#: 2027446701754f3794b31d4a61853116 +msgid "Adds a :class:`Section` to the container." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_section:3 +#: 0e6d15c2f7ae4c29986e7dd0f1154f23 +msgid "To append a pre-existing :class:`Section`, use the :meth:`add_item` method, instead." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_section:7 +#: 7ad3ccf42b494faaba9370aacc4ed1b5 +msgid "The items contained in this section, up to 3. Currently only supports :class:`~discord.ui.TextDisplay`." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_section:11 +#: fe6b58511c9044228ea795b7211ea852 +msgid "The section's accessory. This is displayed in the top right of the section. Currently only supports :class:`~discord.ui.Button` and :class:`~discord.ui.Thumbnail`." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_file:1 +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_text:1 +#: 2027446701754f3794b31d4a61853116 +#: 2027446701754f3794b31d4a61853116 +msgid "Adds a :class:`TextDisplay` to the container." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_text:4 +#: 7eef7bc7f5434d39baab02325cc1ee35 +msgid "The content of the TextDisplay" +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_text:7 +#: 651c40af34754b2cbca1243c29182544 +msgid "The text displays' ID." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_gallery:1 +#: 2027446701754f3794b31d4a61853116 +msgid "Adds a :class:`MediaGallery` to the container." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_gallery:3 +#: 0e6d15c2f7ae4c29986e7dd0f1154f23 +msgid "To append a pre-existing :class:`MediaGallery`, use :meth:`add_item` instead." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_gallery:6 +#: 2f917e72a1924778a62c52611093344a +msgid "The media this gallery contains." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_file:10 +#: 90c6e5f8556c495dac0c65908098b956 +msgid "The file's ID." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.add_separator:1 +#: 2027446701754f3794b31d4a61853116 +msgid "Adds a :class:`Separator` to the container." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.copy_text:1 +#: f1c3beea0cf548c9a18ab07a55dd7aca +msgid "Returns the text of all :class:`~discord.ui.TextDisplay` items in this container. Equivalent to the `Copy Text` option on Discord clients." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.Container.spoiler:1 +#: 390e0de65aca4e25bf50e5ae6a456657 +msgid "Whether the container has the spoiler overlay. Defaults to ``False``." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.disable_all_items:1 +#: f3ab0bff303f4ab0bc92ad8e670b876c +msgid "Disables all buttons and select menus in the container." +msgstr "" + +#: ../../../discord/ui/container.py:docstring of discord.ui.container.Container.enable_all_items:1 +#: 2fe7af6c22f2463595f2eccfb44d78d7 +msgid "Enables all buttons and select menus in the container." +msgstr "" + #: ../../../discord/ui/modal.py:docstring of discord.ui.modal.Modal:1 #: b9270d5d3b734251840a9f06eb712027 msgid "Represents a UI Modal dialog." @@ -925,6 +2113,11 @@ msgstr "" 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.Modal:19 +#: 807b8f486b1846ca85e2c78b609a287d +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/modal.py:docstring of discord.ui.Modal.title:1 #: 0dfdf29800e044d89a49e207c803d984 msgid "The title of the modal dialog." @@ -998,14 +2191,14 @@ 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 +#: 46ab89f240c04a70b1772095a8585e87 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 +#: 53336a0409494b719bad7895bab5d8e3 msgid "The ID of the input text field that gets received during an interaction." msgstr "" @@ -1032,7 +2225,7 @@ 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 +#: 584df796ba3345878a51cb7cbbd2ad12 msgid "Whether the input text field is required or not. Defaults to ``True``." msgstr "" @@ -1046,6 +2239,11 @@ msgstr "" 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.id:1 +#: ec574afa04d14576800719412669e05c +msgid "The input text's ID. If not provided by the user, it is set sequentially by Discord." +msgstr "" + #: ../../../discord/ui/input_text.py:docstring of discord.ui.InputText.label:1 #: 53bbbf9910f6434a86d331c806dc2485 msgid "The label of the input text field." diff --git a/docs/build/locales/api/webhooks.pot b/docs/build/locales/api/webhooks.pot index 0f7887abaa..6e1b8a0356 100644 --- a/docs/build/locales/api/webhooks.pot +++ b/docs/build/locales/api/webhooks.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -870,7 +870,7 @@ 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." +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 dispatchable 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 diff --git a/docs/build/locales/changelog.pot b/docs/build/locales/changelog.pot index 212faf6757..6396142541 100644 --- a/docs/build/locales/changelog.pot +++ b/docs/build/locales/changelog.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-11 09:03+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -47,15 +47,15 @@ msgid "⚠️ **This version removes support for Python 3.8.** ⚠️" msgstr "" #: ../../changelog.md:15 -#: ../../changelog.md:90 #: ../../changelog.md:197 -#: ../../changelog.md:457 -#: ../../changelog.md:530 -#: ../../changelog.md:585 -#: ../../changelog.md:601 -#: ../../changelog.md:669 -#: ../../changelog.md:770 -#: ../../changelog.md:859 +#: ../../changelog.md:304 +#: ../../changelog.md:564 +#: ../../changelog.md:637 +#: ../../changelog.md:692 +#: ../../changelog.md:708 +#: ../../changelog.md:776 +#: ../../changelog.md:877 +#: ../../changelog.md:966 #: e8cf33c496dc4074adbbcfbbce555d76 #: e8cf33c496dc4074adbbcfbbce555d76 #: e8cf33c496dc4074adbbcfbbce555d76 @@ -85,34 +85,114 @@ msgid "Added `Member.guild_banner` and `Member.display_banner` properties. ([#25 msgstr "" #: ../../changelog.md:25 +#: 42ed7327fefc4b54872053b06dc3d128 +msgid "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "" + +#: ../../changelog.md:27 +#: ee1185f07728432d90acac5a21dbec45 +msgid "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "" + +#: ../../changelog.md:29 #: ee1185f07728432d90acac5a21dbec45 msgid "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" msgstr "" -#: ../../changelog.md:27 +#: ../../changelog.md:31 #: 7fd8831246324c0ba80b842014371a93 msgid "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" msgstr "" -#: ../../changelog.md:30 -#: ../../changelog.md:63 -#: ../../changelog.md:121 -#: ../../changelog.md:329 -#: ../../changelog.md:444 -#: ../../changelog.md:494 -#: ../../changelog.md:512 -#: ../../changelog.md:523 +#: ../../changelog.md:33 +#: 7556f2bd45294900b546bcc8bc4cc855 +msgid "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" +msgstr "" + +#: ../../changelog.md:36 +#: 4620d311330a4c04b6b2b7b4de078652 +msgid "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" +msgstr "" + +#: ../../changelog.md:38 +#: dd48eb67d9264c6f9c8c34eff1f8dc21 +msgid "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" +msgstr "" + +#: ../../changelog.md:42 +#: dddf1b7b1aba48dfb0f3282e4d0658a2 +msgid "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "" + +#: ../../changelog.md:44 +#: 1acba6757cf74da68c1302cbed5100b5 +msgid "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" +msgstr "" + +#: ../../changelog.md:46 +#: 169dd0974f7f4141bb15b782abd500b7 +msgid "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" +msgstr "" + +#: ../../changelog.md:48 +#: 7869c915b3f14f07a5bf3a4475157805 +msgid "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" +msgstr "" + +#: ../../changelog.md:50 +#: 4f80fa16c23e41c19ad5f98cb4764338 +msgid "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "" + +#: ../../changelog.md:52 +#: 6a993686d0f6440f9058ad662abc3eb7 +msgid "Added `Message.forward_to`, `Message.snapshots`, and other related attributes. ([#2598](https://github.com/Pycord-Development/pycord/pull/2598))" +msgstr "" + +#: ../../changelog.md:54 +#: 878001efd2cc45dead2ee90071cecf01 +msgid "Add missing `Guild` feature flags and `Guild.edit` parameters. ([#2672](https://github.com/Pycord-Development/pycord/pull/2672))" +msgstr "" + +#: ../../changelog.md:56 +#: ade46dafe4b44075b82a661d0516635f +msgid "Added the ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" +msgstr "" + +#: ../../changelog.md:58 +#: ade46dafe4b44075b82a661d0516635f +msgid "Added the ability to pass a `datetime.time` object to `format_dt`. ([#2747](https://github.com/Pycord-Development/pycord/pull/2747))" +msgstr "" + +#: ../../changelog.md:60 +#: f56f60d027c34c1c96d0aae7504b6cfb +msgid "Added conversion to `Member` in `MentionableConverter`. ([#2775](https://github.com/Pycord-Development/pycord/pull/2775))" +msgstr "" + +#: ../../changelog.md:62 +#: 90293effcc9a4c0cbe82b4d50f4e2604 +msgid "Added `discord.Interaction.created_at`. ([#2801](https://github.com/Pycord-Development/pycord/pull/2801))" +msgstr "" + +#: ../../changelog.md:65 +#: ../../changelog.md:170 +#: ../../changelog.md:228 +#: ../../changelog.md:436 #: ../../changelog.md:551 -#: ../../changelog.md:577 -#: ../../changelog.md:590 -#: ../../changelog.md:633 -#: ../../changelog.md:647 -#: ../../changelog.md:654 -#: ../../changelog.md:662 -#: ../../changelog.md:710 -#: ../../changelog.md:816 -#: ../../changelog.md:922 -#: ../../changelog.md:959 +#: ../../changelog.md:601 +#: ../../changelog.md:619 +#: ../../changelog.md:630 +#: ../../changelog.md:658 +#: ../../changelog.md:684 +#: ../../changelog.md:697 +#: ../../changelog.md:740 +#: ../../changelog.md:754 +#: ../../changelog.md:761 +#: ../../changelog.md:769 +#: ../../changelog.md:817 +#: ../../changelog.md:923 +#: ../../changelog.md:1029 +#: ../../changelog.md:1066 #: 25748af9e8d041dc8b2c9e7a88663f4f #: 25748af9e8d041dc8b2c9e7a88663f4f #: 25748af9e8d041dc8b2c9e7a88663f4f @@ -135,50 +215,170 @@ msgstr "" msgid "Fixed" msgstr "" -#: ../../changelog.md:32 +#: ../../changelog.md:67 #: 1579cb6ca4374946ae9d2aa00c6a2a05 msgid "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" msgstr "" -#: ../../changelog.md:34 +#: ../../changelog.md:69 #: 7ae94f40f23e4016ad3583ccfa6c742c msgid "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" msgstr "" -#: ../../changelog.md:36 +#: ../../changelog.md:71 #: 343032650b214f1eb5ffe747555db443 msgid "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" msgstr "" -#: ../../changelog.md:38 +#: ../../changelog.md:73 #: 7c13dbe9d92449f4b9c00b812d03c2df msgid "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" msgstr "" -#: ../../changelog.md:40 +#: ../../changelog.md:75 #: 21ab8865343f4f4a95f4e6fb558290f9 msgid "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" msgstr "" -#: ../../changelog.md:42 +#: ../../changelog.md:77 #: e81f05b83a034f228f9c15b92cb49ffc msgid "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" msgstr "" -#: ../../changelog.md:45 +#: ../../changelog.md:80 #: ab1ed3f8483145bea5b24fad05b5648f -msgid "Fixed commands with `BucketType.cagegory` cooldown causing issues in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" +msgid "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" msgstr "" -#: ../../changelog.md:48 -#: ../../changelog.md:161 -#: ../../changelog.md:287 -#: ../../changelog.md:438 -#: ../../changelog.md:484 -#: ../../changelog.md:561 -#: ../../changelog.md:700 -#: ../../changelog.md:802 +#: ../../changelog.md:82 +#: 0fe082c072ae49f581e23f1910056ed8 +msgid "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" +msgstr "" + +#: ../../changelog.md:84 +#: 7327cd43427e488999e090c78cac0b79 +msgid "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" +msgstr "" + +#: ../../changelog.md:86 +#: d15ec1bf07934c9d86604965290c99bf +msgid "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" +msgstr "" + +#: ../../changelog.md:88 +#: 084a586848d74bfeb5f2ceba591293d0 +msgid "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "" + +#: ../../changelog.md:90 +#: 1aa560acbffb489b9c0495cf0b24c36e +msgid "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" +msgstr "" + +#: ../../changelog.md:92 +#: 5b2283d5d5e640999855ad3042fc5e6b +msgid "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" +msgstr "" + +#: ../../changelog.md:94 +#: 878001efd2cc45dead2ee90071cecf01 +msgid "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "" + +#: ../../changelog.md:96 +#: 7c13dbe9d92449f4b9c00b812d03c2df +msgid "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" +msgstr "" + +#: ../../changelog.md:99 +#: 7ed9c8e2674b4eea8e16efe2e7916c19 +msgid "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" +msgstr "" + +#: ../../changelog.md:102 +#: cc7d5fa68e994d34aa693f5bb2f1ffd0 +msgid "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." +msgstr "" + +#: ../../changelog.md:104 +#: 6e43909d03324ff994e8e0c5521b4ab8 +msgid "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" +msgstr "" + +#: ../../changelog.md:106 +#: d15ec1bf07934c9d86604965290c99bf +msgid "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "" + +#: ../../changelog.md:108 +#: 1579cb6ca4374946ae9d2aa00c6a2a05 +msgid "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" +msgstr "" + +#: ../../changelog.md:110 +#: 3b2c11ddd69145ff9b65a168d5f20f04 +msgid "Fixed `ForumChannel.edit` allowing `default_reaction_emoji` to be `None`. ([#2739](https://github.com/Pycord-Development/pycord/pull/2739))" +msgstr "" + +#: ../../changelog.md:112 +#: 98b7cc4cbd3b4529bd64539cdc0166e7 +msgid "Fixed missing `None` type hints in `Select.__init__`. ([#2746](https://github.com/Pycord-Development/pycord/pull/2746))" +msgstr "" + +#: ../../changelog.md:114 +#: 1addb165c9c3437ca5dca418e2638d46 +msgid "Fixed `TypeError` when using `Flag` with Python 3.11+. ([#2759](https://github.com/Pycord-Development/pycord/pull/2759))" +msgstr "" + +#: ../../changelog.md:116 +#: 7327cd43427e488999e090c78cac0b79 +msgid "Fixed `TypeError` when specifying `thread_name` in `Webhook.send`. ([#2761](https://github.com/Pycord-Development/pycord/pull/2761))" +msgstr "" + +#: ../../changelog.md:118 +#: 8ef80de7fad747f88bcdb50c5d39b51b +msgid "Updated `valid_locales` to support `in` and `es-419`. ([#2767](https://github.com/Pycord-Development/pycord/pull/2767))" +msgstr "" + +#: ../../changelog.md:120 +#: a148a83edd1f4f7b845a87b1a987c516 +msgid "Fixed `Webhook.edit` not working with `attachments=[]`. ([#2779](https://github.com/Pycord-Development/pycord/pull/2779))" +msgstr "" + +#: ../../changelog.md:122 +#: 2eb6e57c0a364efd86ffa8096f540133 +msgid "Fixed GIF-based `Sticker` returning the wrong `url`. ([#2781](https://github.com/Pycord-Development/pycord/pull/2781))" +msgstr "" + +#: ../../changelog.md:124 +#: 12ea4e48fc584a9c87ef676eeacfcd07 +msgid "Fixed `VoiceClient` crashing randomly while receiving audio ([#2800](https://github.com/Pycord-Development/pycord/pull/2800))" +msgstr "" + +#: ../../changelog.md:126 +#: d3b786079fea46bc8786e6b5154c03ed +msgid "Fixed `VoiceClient.connect` failing to do initial connection. ([#2812](https://github.com/Pycord-Development/pycord/pull/2812))" +msgstr "" + +#: ../../changelog.md:128 +#: d15ec1bf07934c9d86604965290c99bf +msgid "Fixed `AttributeError` when printing a File component's `__repr__`. ([#2843](https://github.com/Pycord-Development/pycord/pull/2843))" +msgstr "" + +#: ../../changelog.md:130 +#: 1aa560acbffb489b9c0495cf0b24c36e +msgid "Fixed `TypeError` when using `@option` with certain annotations and along with `channel_types`. ([#2835](https://github.com/Pycord-Development/pycord/pull/2835))" +msgstr "" + +#: ../../changelog.md:133 +#: ../../changelog.md:268 +#: ../../changelog.md:394 +#: ../../changelog.md:545 +#: ../../changelog.md:591 +#: ../../changelog.md:668 +#: ../../changelog.md:807 #: ../../changelog.md:909 +#: ../../changelog.md:1016 #: 6f3f624eef944b38a861d712cf1c2dd3 #: 6f3f624eef944b38a861d712cf1c2dd3 #: 6f3f624eef944b38a861d712cf1c2dd3 @@ -191,1852 +391,1899 @@ msgstr "" msgid "Changed" msgstr "" -#: ../../changelog.md:50 +#: ../../changelog.md:135 #: 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:53 +#: ../../changelog.md:138 #: 9fe0dfdfa63e4ad4b9c4e4043aef28b3 msgid "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" msgstr "" -#: ../../changelog.md:56 -#: ../../changelog.md:623 +#: ../../changelog.md:140 +#: 84fd56364f2e426f8059ab543cf8fa9f +msgid "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "" + +#: ../../changelog.md:142 +#: e81f05b83a034f228f9c15b92cb49ffc +msgid "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" +msgstr "" + +#: ../../changelog.md:145 +#: 2a37ee55e00e4e68b43bcf62c0b6c16b +msgid "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" +msgstr "" + +#: ../../changelog.md:147 +#: 0a54f2b4c9764c26a62124a36810df1f +msgid "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "" + +#: ../../changelog.md:149 +#: c07af9a4c1fd4892ae280f8510c5161f +msgid "Changed the default value of `ApplicationCommand.nsfw` to `False`. ([#2797](https://github.com/Pycord-Development/pycord/pull/2797))" +msgstr "" + +#: ../../changelog.md:151 +#: dddf1b7b1aba48dfb0f3282e4d0658a2 +msgid "Upgraded voice websocket version to v8. ([#2812](https://github.com/Pycord-Development/pycord/pull/2812))" +msgstr "" + +#: ../../changelog.md:154 +#: ../../changelog.md:730 #: 5b535d4b52244097b05ec474ea2121c6 #: 5b535d4b52244097b05ec474ea2121c6 msgid "Deprecated" msgstr "" -#: ../../changelog.md:58 +#: ../../changelog.md:156 #: effae79d201c4ca0a0e3943743dfc1b5 msgid "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" msgstr "" -#: ../../changelog.md:61 +#: ../../changelog.md:158 +#: effae79d201c4ca0a0e3943743dfc1b5 +msgid "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "" + +#: ../../changelog.md:160 +#: effae79d201c4ca0a0e3943743dfc1b5 +msgid "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "" + +#: ../../changelog.md:163 +#: ../../changelog.md:291 +#: ../../changelog.md:429 +#: ../../changelog.md:677 +#: ../../changelog.md:918 +#: cb54f87243e542f6bdc3742c26311fa6 +#: cb54f87243e542f6bdc3742c26311fa6 +#: cb54f87243e542f6bdc3742c26311fa6 +#: cb54f87243e542f6bdc3742c26311fa6 +#: cb54f87243e542f6bdc3742c26311fa6 +msgid "Removed" +msgstr "" + +#: ../../changelog.md:165 +#: 3d4304bdaaab400c8603287757c112a5 +msgid "Removed deprecated support for `Option` in `BridgeCommand`, use `BridgeOption` instead. ([#2731](https://github.com/Pycord-Development/pycord/pull/2731))" +msgstr "" + +#: ../../changelog.md:168 #: 2ea9c95bdc934b7bbbe972ad30512eb5 msgid "[2.6.1] - 2024-09-15" msgstr "" -#: ../../changelog.md:65 +#: ../../changelog.md:172 #: 1a3f1825ed6940388193b1ef07b1dc76 msgid "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" msgstr "" -#: ../../changelog.md:67 +#: ../../changelog.md:174 #: 8b40273b3f334953b36d4e726019a6d1 msgid "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" msgstr "" -#: ../../changelog.md:69 +#: ../../changelog.md:176 #: 9ac720e03f6142e4ac4e0b6de0379c55 msgid "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" msgstr "" -#: ../../changelog.md:71 +#: ../../changelog.md:178 #: e2f55b08f081473c867e0e027c8cf264 msgid "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" msgstr "" -#: ../../changelog.md:74 +#: ../../changelog.md:181 #: 2fb12f31fbda4dd38ac5d75d20c470af msgid "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" msgstr "" -#: ../../changelog.md:77 +#: ../../changelog.md:184 #: 15b4372aa41846c2bfe24bd729e63048 msgid "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" msgstr "" -#: ../../changelog.md:79 +#: ../../changelog.md:186 #: 7869c915b3f14f07a5bf3a4475157805 msgid "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" msgstr "" -#: ../../changelog.md:81 +#: ../../changelog.md:188 #: 2fb12f31fbda4dd38ac5d75d20c470af -msgid "Fixed the `guild` attribute of `Member`s recieved from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" +msgid "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" msgstr "" -#: ../../changelog.md:83 +#: ../../changelog.md:190 #: a148a83edd1f4f7b845a87b1a987c516 -msgid "Fixed `Webhook.send` not including attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" +msgid "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" msgstr "" -#: ../../changelog.md:85 +#: ../../changelog.md:192 #: 98b7cc4cbd3b4529bd64539cdc0166e7 msgid "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" msgstr "" -#: ../../changelog.md:88 +#: ../../changelog.md:195 #: 2ea9c95bdc934b7bbbe972ad30512eb5 msgid "[2.6.0] - 2024-07-09" msgstr "" -#: ../../changelog.md:92 +#: ../../changelog.md:199 #: ee1185f07728432d90acac5a21dbec45 msgid "Added `banner` parameter to `ClientUser.edit`. ([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" msgstr "" -#: ../../changelog.md:94 +#: ../../changelog.md:201 #: d88667c6f5dd4c8789c7f597cbcc5b58 msgid "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com/Pycord-Development/pycord/pull/2390))" msgstr "" -#: ../../changelog.md:96 +#: ../../changelog.md:203 #: 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:98 +#: ../../changelog.md:205 #: 73f8d143b51e4d75ba380e16b08e6dcb msgid "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-Development/pycord/pull/2418))" msgstr "" -#: ../../changelog.md:100 +#: ../../changelog.md:207 #: 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:102 +#: ../../changelog.md:209 #: f56f60d027c34c1c96d0aae7504b6cfb msgid "Added `member` data to the `raw_reaction_remove` event. ([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" msgstr "" -#: ../../changelog.md:104 +#: ../../changelog.md:211 #: f9988dfe7b23484b9ba4809f9bb95d74 msgid "Added `Poll` and all related features. ([#2408](https://github.com/Pycord-Development/pycord/pull/2408))" msgstr "" -#: ../../changelog.md:106 +#: ../../changelog.md:213 #: 9ac720e03f6142e4ac4e0b6de0379c55 msgid "Added `stacklevel` param to `utils.warn_deprecated` and `utils.deprecated`. ([#2450](https://github.com/Pycord-Development/pycord/pull/2450))" msgstr "" -#: ../../changelog.md:108 +#: ../../changelog.md:215 #: a8616b9a932f4606b85de797fc499ba7 msgid "Added support for user-installable applications. ([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" msgstr "" -#: ../../changelog.md:110 +#: ../../changelog.md:217 #: 1c4f1fdcf05c43aba319d2e797df1b3e msgid "Added support for one-time purchases for Discord monetization. ([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" msgstr "" -#: ../../changelog.md:112 +#: ../../changelog.md:219 #: 44550f6f16534a32aae326204a92f827 msgid "Added `Attachment.title`. ([#2486](https://github.com/Pycord-Development/pycord/pull/2486))" msgstr "" -#: ../../changelog.md:114 +#: ../../changelog.md:221 #: fc13286743f845d19a7cab16bf48759f msgid "Added `MemberFlags`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" msgstr "" -#: ../../changelog.md:115 +#: ../../changelog.md:222 #: 90ea693eff9d4606a4c04da0d022efe1 msgid "Added `bypass_verification` parameter to `Member.edit`. ([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" msgstr "" -#: ../../changelog.md:117 +#: ../../changelog.md:224 #: b0e2a36ec1474943ac739d3a17c79296 msgid "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord/pull/2487))" msgstr "" -#: ../../changelog.md:118 +#: ../../changelog.md:225 #: 1acba6757cf74da68c1302cbed5100b5 msgid "Added `MessageCall` information. ([#2488](https://github.com/Pycord-Development/pycord/pull/2488))" msgstr "" -#: ../../changelog.md:123 +#: ../../changelog.md:230 #: 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:125 +#: ../../changelog.md:232 #: 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:128 +#: ../../changelog.md:235 #: 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:130 +#: ../../changelog.md:237 #: 9d69c269ed79425ab60e09f9b5e2ee4b msgid "Fixed `NameError` in some instances of `Interaction`. ([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" msgstr "" -#: ../../changelog.md:132 +#: ../../changelog.md:239 #: 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:134 +#: ../../changelog.md:241 #: 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:136 +#: ../../changelog.md:243 #: 8b40273b3f334953b36d4e726019a6d1 msgid "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" msgstr "" -#: ../../changelog.md:138 +#: ../../changelog.md:245 #: 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:140 +#: ../../changelog.md:247 #: ef1005168cfb44b6b8f2055793ee601d -msgid "Fixed option typehints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgid "Fixed option type hints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" msgstr "" -#: ../../changelog.md:142 +#: ../../changelog.md:249 #: 7869c915b3f14f07a5bf3a4475157805 msgid "Fixed parameter `embed=None` causing `AttributeError` on `PartialMessage.edit`. ([#2446](https://github.com/Pycord-Development/pycord/pull/2446))" msgstr "" -#: ../../changelog.md:144 +#: ../../changelog.md:251 #: 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:146 +#: ../../changelog.md:253 #: 878001efd2cc45dead2ee90071cecf01 msgid "Fixed missing `application_id` in `Entitlement.delete`. ([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" msgstr "" -#: ../../changelog.md:148 +#: ../../changelog.md:255 #: 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:150 +#: ../../changelog.md:257 #: 55d4ea1bd82340bcb8c23812b5179448 msgid "Fixed many inaccurate type hints throughout the library. ([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" msgstr "" -#: ../../changelog.md:152 +#: ../../changelog.md:259 #: 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:154 +#: ../../changelog.md:261 #: 6861ca06f105483bbc97a0928b422c0a msgid "Fixed `remove_application_command` causing issues while reloading extensions. ([#2480](https://github.com/Pycord-Development/pycord/pull/2480))" msgstr "" -#: ../../changelog.md:156 +#: ../../changelog.md:263 #: 0fe082c072ae49f581e23f1910056ed8 msgid "Fixed outdated logic for filtering and sorting audit log entries. ([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" msgstr "" -#: ../../changelog.md:158 +#: ../../changelog.md:265 #: af74ad39a1b34e1fa81b9328b1540ea5 msgid "Further fixed logic when fetching audit logs. ([#2492](https://github.com/Pycord-Development/pycord/pull/2492))" msgstr "" -#: ../../changelog.md:163 +#: ../../changelog.md:270 #: c07af9a4c1fd4892ae280f8510c5161f msgid "Changed the type of `Guild.bitrate_limit` to `int`. ([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" msgstr "" -#: ../../changelog.md:165 +#: ../../changelog.md:272 #: 552325d759394d788ef5af5370590ced -msgid "HTTP requests that fail with a 503 status are now re-tried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgid "HTTP requests that fail with a 503 status are now retried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" msgstr "" -#: ../../changelog.md:167 +#: ../../changelog.md:274 #: 3131b38385834d42af1359ccf1b8e9e8 msgid "`option` decorator now accepts `input_type`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" msgstr "" -#: ../../changelog.md:169 +#: ../../changelog.md:276 #: 38abe22de33943b2b3ff6091e2c3779f msgid "`Option` may be used instead of `BridgeOption` until 2.7. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" msgstr "" -#: ../../changelog.md:171 +#: ../../changelog.md:278 #: 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:173 +#: ../../changelog.md:280 #: 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:176 +#: ../../changelog.md:283 #: 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:178 +#: ../../changelog.md:285 #: 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:181 +#: ../../changelog.md:288 #: 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:184 -#: ../../changelog.md:322 -#: ../../changelog.md:570 -#: ../../changelog.md:811 -#: cb54f87243e542f6bdc3742c26311fa6 -#: cb54f87243e542f6bdc3742c26311fa6 -#: cb54f87243e542f6bdc3742c26311fa6 -#: cb54f87243e542f6bdc3742c26311fa6 -msgid "Removed" -msgstr "" - -#: ../../changelog.md:186 +#: ../../changelog.md:293 #: 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:189 +#: ../../changelog.md:296 #: 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:192 +#: ../../changelog.md:299 #: 4d2440e51f8346a5894152a1e3ac6351 msgid "Removed the `vanity_code` parameter from `Guild.edit`. ([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" msgstr "" -#: ../../changelog.md:195 +#: ../../changelog.md:302 #: 6a0c9c7b35c54520a5ae4547c8382a6e msgid "[2.5.0] - 2024-03-02" msgstr "" -#: ../../changelog.md:199 +#: ../../changelog.md:306 #: 60a5bb23d20a46b29897ff0b90b12c68 msgid "Added method to start bot via async context manager. ([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" msgstr "" -#: ../../changelog.md:201 +#: ../../changelog.md:308 #: 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:203 +#: ../../changelog.md:310 #: 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:206 +#: ../../changelog.md:313 #: 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:208 +#: ../../changelog.md:315 #: 3dc5ef7302d8499f8f3b37132cad769a msgid "Added support for text-related features in `StageChannel`. ([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" msgstr "" -#: ../../changelog.md:210 +#: ../../changelog.md:317 #: b26f8600ddae4ee7adf165d713c4c520 msgid "Added support for one-time event listeners in `Client.listen`. ([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" msgstr "" -#: ../../changelog.md:212 +#: ../../changelog.md:319 #: 4c1d702a0fd34e05b931d0149b6d2e88 msgid "Added `current_page` argument to `Paginator.update()`. ([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" msgstr "" -#: ../../changelog.md:214 +#: ../../changelog.md:321 #: c424e9e7177746638415ee55b969a529 msgid "Added application flag `application_auto_moderation_rule_create_badge`. ([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" msgstr "" -#: ../../changelog.md:216 +#: ../../changelog.md:323 #: 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:219 +#: ../../changelog.md:326 #: af0b802a69904f288b90a992f9990483 msgid "Added `custom_message` to AutoModActionMetadata. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" msgstr "" -#: ../../changelog.md:221 +#: ../../changelog.md:328 #: 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:224 +#: ../../changelog.md:331 #: 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:227 +#: ../../changelog.md:334 #: 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:230 +#: ../../changelog.md:337 #: 9d551823bcc84935a681e5d58adf5111 msgid "Added AutoMod-related models for `AuditLogDiff` enums. ([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" msgstr "" -#: ../../changelog.md:232 +#: ../../changelog.md:339 #: c3f3b5baaf6d4bf3a3deaa582d1444a1 msgid "Added `Interaction.respond` and `Interaction.edit` as shortcut responses. ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" msgstr "" -#: ../../changelog.md:234 +#: ../../changelog.md:341 #: 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:237 +#: ../../changelog.md:344 #: 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:240 +#: ../../changelog.md:347 #: b21a35a76bac4e2d9ae6a07c7a3a696a msgid "Added support for usernames and modified multiple methods accordingly. ([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" msgstr "" -#: ../../changelog.md:242 +#: ../../changelog.md:349 #: 74a9e9832d4c4a6fa8734778209c65e4 msgid "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. ([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" msgstr "" -#: ../../changelog.md:244 +#: ../../changelog.md:351 #: f2ec2163c71c48b9a21d3bd75fff5064 msgid "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" msgstr "" -#: ../../changelog.md:246 +#: ../../changelog.md:353 #: 85eb170585cb42f598e263c7b60a31e0 msgid "Added embedded activities Gartic Phone and Jamspace. ([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" msgstr "" -#: ../../changelog.md:248 +#: ../../changelog.md:355 #: 7959cb02aa124f1b82dc5adbc03e84c5 msgid "Added `bridge.Context` type as a `Union` of subclasses. ([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" msgstr "" -#: ../../changelog.md:250 +#: ../../changelog.md:357 #: 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:252 +#: ../../changelog.md:359 #: 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:255 +#: ../../changelog.md:362 #: 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:257 +#: ../../changelog.md:364 #: 42ed7327fefc4b54872053b06dc3d128 msgid "Added support for custom bot status. ([#2206](https://github.com/Pycord-Development/pycord/pull/2206))" msgstr "" -#: ../../changelog.md:259 +#: ../../changelog.md:366 #: 72df647a50374daa932d83ec54fadbce msgid "Added function `Guild.delete_auto_moderation_rule`. ([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" msgstr "" -#: ../../changelog.md:261 +#: ../../changelog.md:368 #: dddf1b7b1aba48dfb0f3282e4d0658a2 msgid "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-Development/pycord/pull/2112))" msgstr "" -#: ../../changelog.md:263 +#: ../../changelog.md:370 #: 3b2c11ddd69145ff9b65a168d5f20f04 msgid "Added `ForumChannel.default_reaction_emoji` attribute. ([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" msgstr "" -#: ../../changelog.md:265 +#: ../../changelog.md:372 #: 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:268 +#: ../../changelog.md:375 #: 4620d311330a4c04b6b2b7b4de078652 msgid "Added `applied_tags` parameter to `Webhook.send` method. ([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" msgstr "" -#: ../../changelog.md:270 +#: ../../changelog.md:377 #: 90293effcc9a4c0cbe82b4d50f4e2604 msgid "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-Development/pycord/pull/2131))" msgstr "" -#: ../../changelog.md:272 +#: ../../changelog.md:379 #: f1c971d407c9454c85b3b93e5be66b65 msgid "Added support for guild onboarding related features. ([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" msgstr "" -#: ../../changelog.md:274 +#: ../../changelog.md:381 #: 4f80fa16c23e41c19ad5f98cb4764338 msgid "Added support for monetization related objects and events. ([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" msgstr "" -#: ../../changelog.md:276 +#: ../../changelog.md:383 #: 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:278 +#: ../../changelog.md:385 #: 4d570b6175b846b7b096d02a18bf1053 msgid "Added `invitable` and `slowmode_delay` to `Thread` creation methods. ([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" msgstr "" -#: ../../changelog.md:280 +#: ../../changelog.md:387 #: 6e961ffbbb9c4e43a860891df7ed6fa5 msgid "Added support for voice channel statuses. ([#2368](https://github.com/Pycord-Development/pycord/pull/2368))" msgstr "" -#: ../../changelog.md:282 +#: ../../changelog.md:389 #: ee841b6b671d4856b893970d196abd64 msgid "Added `enforce_nonce` parameter for message sending. ([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" msgstr "" -#: ../../changelog.md:284 +#: ../../changelog.md:391 #: 2608a06bd147422aa67260fc397061b3 msgid "Added audit log support for voice channel status. ([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" msgstr "" -#: ../../changelog.md:289 +#: ../../changelog.md:396 #: 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:292 +#: ../../changelog.md:399 #: 3f5b3c8765174ac6aaefd7493e389482 msgid "Changed `ffmpeg` output suppression when recording voice channels. ([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" msgstr "" -#: ../../changelog.md:294 +#: ../../changelog.md:401 #: 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:296 +#: ../../changelog.md:403 #: 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:298 +#: ../../changelog.md:405 #: 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:301 +#: ../../changelog.md:408 #: 97745879546247a08a47059715774c5b msgid "Changed `DMChannel.recipients` to potentially be `None`. ([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" msgstr "" -#: ../../changelog.md:303 +#: ../../changelog.md:410 #: 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:307 +#: ../../changelog.md:414 #: 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:310 +#: ../../changelog.md:417 #: 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:313 +#: ../../changelog.md:420 #: 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:315 +#: ../../changelog.md:422 #: 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:317 +#: ../../changelog.md:424 #: 3bab78924e3d402698ce98a72ddc2c78 msgid "Replaced `orjson` features with `msgspec` in the codebase. ([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" msgstr "" -#: ../../changelog.md:319 +#: ../../changelog.md:426 #: ca59a473432d434ca872411f9c66003d msgid "`BridgeOption` must now be used for arguments in bridge commands. ([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" msgstr "" -#: ../../changelog.md:324 +#: ../../changelog.md:431 #: 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:326 +#: ../../changelog.md:433 #: 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:331 +#: ../../changelog.md:438 #: 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:334 +#: ../../changelog.md:441 #: 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:336 +#: ../../changelog.md:443 #: 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:339 +#: ../../changelog.md:446 #: 26359420acd84d13b7ec8078c585de73 msgid "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. ([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" msgstr "" -#: ../../changelog.md:341 +#: ../../changelog.md:448 #: 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:343 +#: ../../changelog.md:450 #: 18befe9e39544595a7a2036d48d19470 msgid "Fixed boolean converter breaking for Bridge Commands. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" msgstr "" -#: ../../changelog.md:345 +#: ../../changelog.md:452 #: 084a586848d74bfeb5f2ceba591293d0 msgid "Fixed bridge command options not working. ([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" msgstr "" -#: ../../changelog.md:347 +#: ../../changelog.md:454 #: 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:349 +#: ../../changelog.md:456 #: a3a4c596689748fe814636d674727419 msgid "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" msgstr "" -#: ../../changelog.md:351 +#: ../../changelog.md:458 #: 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:354 +#: ../../changelog.md:461 #: fae4d3fe283e4ea396db05e19418ce5d msgid "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com/Pycord-Development/pycord/pull/2048))" msgstr "" -#: ../../changelog.md:356 +#: ../../changelog.md:463 #: eaf24d26663f4e6380db8ad8f0172cbe msgid "Fixed the `individual` slash command synchronization method. ([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" msgstr "" -#: ../../changelog.md:358 +#: ../../changelog.md:465 #: 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:360 +#: ../../changelog.md:467 #: 47c28724914e4fc9a18709531f47c88d msgid "Fixed major `TypeError` when an `AuditLogEntry` has no user. ([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" msgstr "" -#: ../../changelog.md:362 +#: ../../changelog.md:469 #: 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:364 +#: ../../changelog.md:471 #: a148a83edd1f4f7b845a87b1a987c516 msgid "Fixed `before_invoke` not being run for `SlashCommandGroup`. ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" msgstr "" -#: ../../changelog.md:366 +#: ../../changelog.md:473 #: 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))" +msgid "Fixed `AttributeError` when accessing a `Select` object's values when it has not been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" msgstr "" -#: ../../changelog.md:368 +#: ../../changelog.md:475 #: 1770b0d4e2994906acfa30119c7eb482 msgid "Fixed `before_invoke` being run twice for slash subcommands. ([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" msgstr "" -#: ../../changelog.md:370 +#: ../../changelog.md:477 #: df13f489e5fa4cc48904626e021c027d msgid "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" msgstr "" -#: ../../changelog.md:372 +#: ../../changelog.md:479 #: 269b54a1fd2744a7866a615c72ace4a8 msgid "Fixed `Thread.applied_tags` not being updated. ([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" msgstr "" -#: ../../changelog.md:374 +#: ../../changelog.md:481 #: 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))" +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:377 +#: ../../changelog.md:484 #: 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:379 +#: ../../changelog.md:486 #: 2b542989e4474b1497f08ac6f19f99ed msgid "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. ([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" msgstr "" -#: ../../changelog.md:381 +#: ../../changelog.md:488 #: b5e55bb544e94272b3397bbc0e072ec3 msgid "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com/Pycord-Development/pycord/pull/2185))" msgstr "" -#: ../../changelog.md:383 +#: ../../changelog.md:490 #: 3de52ce55e8b41e2a5815592bb6257ec msgid "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`." msgstr "" -#: ../../changelog.md:385 +#: ../../changelog.md:492 #: 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:387 +#: ../../changelog.md:494 #: 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:389 +#: ../../changelog.md:496 #: c17344409e9f492a8fd6b8c55ed614aa msgid "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. ([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" msgstr "" -#: ../../changelog.md:391 +#: ../../changelog.md:498 #: 12ea4e48fc584a9c87ef676eeacfcd07 msgid "Fixed `ffmpeg` being terminated prematurely when piping audio stream. ([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" msgstr "" -#: ../../changelog.md:393 +#: ../../changelog.md:500 #: 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:395 +#: ../../changelog.md:502 #: 7327cd43427e488999e090c78cac0b79 msgid "Fixed `AttributeError` when running permission checks without the `bot` scope. ([#2113](https://github.com/Pycord-Development/pycord/issues/2113))" msgstr "" -#: ../../changelog.md:397 +#: ../../changelog.md:504 #: 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))" +msgid "Fixed `Option` not working on bridge commands because `ext.commands.Command` does not recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" msgstr "" -#: ../../changelog.md:399 +#: ../../changelog.md:506 #: 8f18e8d005b1496387f152f3df8662b7 msgid "Fixed offset-aware tasks causing `TypeError` when being prepared. ([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" msgstr "" -#: ../../changelog.md:401 +#: ../../changelog.md:508 #: d15ec1bf07934c9d86604965290c99bf msgid "Fixed `AttributeError` when serializing commands with `Annotated` type hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" msgstr "" -#: ../../changelog.md:403 +#: ../../changelog.md:510 #: 2eb6e57c0a364efd86ffa8096f540133 msgid "Fixed `Intents.all()` returning the wrong value. ([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" msgstr "" -#: ../../changelog.md:405 +#: ../../changelog.md:512 #: 5b2283d5d5e640999855ad3042fc5e6b msgid "Fixed `AuditLogIterator` not respecting the `after` parameter. ([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" msgstr "" -#: ../../changelog.md:407 +#: ../../changelog.md:514 #: d3b786079fea46bc8786e6b5154c03ed msgid "Fixed `AttributeError` when failing to establish initial websocket connection. ([#2301](https://github.com/Pycord-Development/pycord/pull/2301))" msgstr "" -#: ../../changelog.md:409 +#: ../../changelog.md:516 #: b25e60c5a037415e80243abad7f9df8f msgid "Fixed `AttributeError` caused by `command.cog` being `MISSING`. ([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" msgstr "" -#: ../../changelog.md:411 +#: ../../changelog.md:518 #: 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:413 +#: ../../changelog.md:520 #: 17ed8177c40a476fb48f4d90f37837c7 msgid "Fixed `AttributeError` when comparing application commands with non-command objects. ([#2299](https://github.com/Pycord-Development/pycord/issues/2299))" msgstr "" -#: ../../changelog.md:415 +#: ../../changelog.md:522 #: 5114e2e8307349088415bbbee6af60e4 msgid "Fixed `AttributeError` when copying groups on startup. ([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" msgstr "" -#: ../../changelog.md:417 +#: ../../changelog.md:524 #: 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:420 +#: ../../changelog.md:527 #: 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:422 +#: ../../changelog.md:529 #: 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:424 +#: ../../changelog.md:531 #: 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:426 +#: ../../changelog.md:533 #: 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:429 +#: ../../changelog.md:536 #: 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:431 +#: ../../changelog.md:538 #: 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:433 +#: ../../changelog.md:540 #: 8ef80de7fad747f88bcdb50c5d39b51b msgid "Fixed enum to support stringified annotations. ([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" msgstr "" -#: ../../changelog.md:436 +#: ../../changelog.md:543 #: b4456318b5c84fd28244fb8d7f496360 msgid "[2.4.1] - 2023-03-20" msgstr "" -#: ../../changelog.md:440 +#: ../../changelog.md:547 #: 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:446 +#: ../../changelog.md:553 #: 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:448 +#: ../../changelog.md:555 #: 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:451 +#: ../../changelog.md:558 #: 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:455 +#: ../../changelog.md:562 #: c101984320c34ce99992f9fe847e0e88 msgid "[2.4.0] - 2023-02-10" msgstr "" -#: ../../changelog.md:459 +#: ../../changelog.md:566 #: 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:462 +#: ../../changelog.md:569 #: 7fd8831246324c0ba80b842014371a93 msgid "Added missing `image` parameter to `Guild.create_scheduled_event()` method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" msgstr "" -#: ../../changelog.md:464 +#: ../../changelog.md:571 #: 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:468 +#: ../../changelog.md:575 #: 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:472 +#: ../../changelog.md:579 #: f5ee939eced64359a65e9e63f4c50556 msgid "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" msgstr "" -#: ../../changelog.md:474 +#: ../../changelog.md:581 #: ee535bdbc1cd4d558c6fa469a5b0d528 msgid "Added new `suppress_notifications` to `MessageFlags`. ([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" msgstr "" -#: ../../changelog.md:476 +#: ../../changelog.md:583 #: fa69515bb7074d55a6b5abe0177aac95 msgid "Added GIF sticker format type to the `StickerFormatType` enum. ([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" msgstr "" -#: ../../changelog.md:478 +#: ../../changelog.md:585 #: 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:481 +#: ../../changelog.md:588 #: 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:486 +#: ../../changelog.md:593 #: 571ca9ff303e4bd994e1179a0cadb5b3 msgid "Changed `EmbeddedActivity` values to update accordingly with the new activities. ([#1859](https://github.com/Pycord-Development/pycord/pull/1859))" msgstr "" -#: ../../changelog.md:488 +#: ../../changelog.md:595 #: 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:491 +#: ../../changelog.md:598 #: 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:496 +#: ../../changelog.md:603 #: 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))" +msgid "Fixed bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files did not 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:500 +#: ../../changelog.md:607 #: 8818ab33e8604db2877b20c041af6723 msgid "Fixed bridge groups missing the `parent` attribute. ([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" msgstr "" -#: ../../changelog.md:502 +#: ../../changelog.md:609 #: 9fe0dfdfa63e4ad4b9c4e4043aef28b3 msgid "Fixed issues with creating auto moderation rules. ([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" msgstr "" -#: ../../changelog.md:505 +#: ../../changelog.md:612 #: ea5b04755aae4a53a625348b5d5f945d msgid "[2.3.3] - 2023-02-10" msgstr "" -#: ../../changelog.md:507 +#: ../../changelog.md:614 #: 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:510 +#: ../../changelog.md:617 #: aeae11c1ec9e4f4ca20b998880bc4e5b msgid "[2.3.2] - 2022-12-03" msgstr "" -#: ../../changelog.md:514 +#: ../../changelog.md:621 #: 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:516 +#: ../../changelog.md:623 #: 7b22f35de99640918b24cf129a8708a1 msgid "Fixed an `AttributeError` in select relating to the select type. ([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" msgstr "" -#: ../../changelog.md:518 +#: ../../changelog.md:625 #: b940bd229d2b4e6891eec2561e8e815c msgid "Fixed `Thread.applied_tags` always returning an empty list. ([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" msgstr "" -#: ../../changelog.md:521 +#: ../../changelog.md:628 #: 1b92099482524c32940e7b2962f78c68 msgid "[2.3.1] - 2022-11-27" msgstr "" -#: ../../changelog.md:525 +#: ../../changelog.md:632 #: 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:528 +#: ../../changelog.md:635 #: eeb4225156bc403cb9430c14142f0030 msgid "[2.3.0] - 2022-11-23" msgstr "" -#: ../../changelog.md:532 +#: ../../changelog.md:639 #: 1f69a42547d7413d81ac3be425763eca msgid "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com/Pycord-Development/pycord/pull/1676))" msgstr "" -#: ../../changelog.md:534 +#: ../../changelog.md:641 #: faba5859b8964373ba18f34a5830b58a msgid "Python 3.11 support. ([#1680](https://github.com/Pycord-Development/pycord/pull/1680))" msgstr "" -#: ../../changelog.md:535 +#: ../../changelog.md:642 #: 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:538 +#: ../../changelog.md:645 #: 99a675fe67cf47bd8552026dcb0d7680 msgid "Added support for age-restricted (NSFW) commands. ([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" msgstr "" -#: ../../changelog.md:540 +#: ../../changelog.md:647 #: ee8b90ba67724d46a3efd5335b0a029a msgid "New flags: `PublicUserFlags.active_developer` & `ApplicationFlags.active`. ([#1776](https://github.com/Pycord-Development/pycord/pull/1776))" msgstr "" -#: ../../changelog.md:542 +#: ../../changelog.md:649 #: 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:544 +#: ../../changelog.md:651 #: 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:546 +#: ../../changelog.md:653 #: 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:548 +#: ../../changelog.md:655 #: 2a37ee55e00e4e68b43bcf62c0b6c16b msgid "Updated `Guild.features` to include new and previously missing features. ([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" msgstr "" -#: ../../changelog.md:553 +#: ../../changelog.md:660 #: b96a634b3523470b9c6321bfe1d0d386 msgid "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-Development/pycord/pull/1695))" msgstr "" -#: ../../changelog.md:555 +#: ../../changelog.md:662 #: cc90297f0d5b47c7b04fcc3561b2ee44 msgid "Fix audit log overwrite type always resulting in `None`. ([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" msgstr "" -#: ../../changelog.md:557 +#: ../../changelog.md:664 #: 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:563 +#: ../../changelog.md:670 #: 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:566 +#: ../../changelog.md:673 #: 7421d3fe662f4595af3381037136c502 msgid "`get_application_command()` now supports retrieving subcommands and subcommand groups. ([#1678](https://github.com/Pycord-Development/pycord/pull/1678))" msgstr "" -#: ../../changelog.md:572 +#: ../../changelog.md:679 #: 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:575 +#: ../../changelog.md:682 #: a11bd7aede7844c6b417faeae902549d msgid "[2.2.2] - 2022-10-05" msgstr "" -#: ../../changelog.md:579 +#: ../../changelog.md:686 #: 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:583 +#: ../../changelog.md:690 #: 804d49d35a1a4950bb1844cb14422c04 msgid "[2.2.1] - 2022-10-05" msgstr "" -#: ../../changelog.md:587 +#: ../../changelog.md:694 #: 96fc9a6acc3d412eb0e4fe8e93e6bce4 msgid "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" msgstr "" -#: ../../changelog.md:592 +#: ../../changelog.md:699 #: 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:594 +#: ../../changelog.md:701 #: cdff853f73034e329f46051f2eee14d5 msgid "Fixed broken `cog` and `parent` attributes on commands in cogs. ([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" msgstr "" -#: ../../changelog.md:596 +#: ../../changelog.md:703 #: 6e43909d03324ff994e8e0c5521b4ab8 msgid "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com/Pycord-Development/pycord/pull/1672))" msgstr "" -#: ../../changelog.md:599 +#: ../../changelog.md:706 #: 7c216775f43c4a4283eada7e4c5566be msgid "[2.2.0] - 2022-10-02" msgstr "" -#: ../../changelog.md:603 +#: ../../changelog.md:710 #: 887646ff61cc484c8fb5a1b77f4705b3 msgid "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-Development/pycord/pull/1613))" msgstr "" -#: ../../changelog.md:605 +#: ../../changelog.md:712 #: 1cab4dd437fc47059e14c6622b309200 msgid "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com/Pycord-Development/pycord/pull/1587))" msgstr "" -#: ../../changelog.md:607 +#: ../../changelog.md:714 #: 628dc16b78d7462d9e752a6fd5c34f0d msgid "`proxy` and `proxy_auth` params to many Webhook-related methods. ([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" msgstr "" -#: ../../changelog.md:609 +#: ../../changelog.md:716 #: 62fc2f7a9b7647efb0eaeabe6e18b131 msgid "`delete_message_seconds` parameter in ban methods. ([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" msgstr "" -#: ../../changelog.md:611 +#: ../../changelog.md:718 #: 86674d77e2244a8f9a2273474845bc45 msgid "New `View.get_item()` method. ([#1659](https://github.com/Pycord-Development/pycord/pull/1659))" msgstr "" -#: ../../changelog.md:613 +#: ../../changelog.md:720 #: eaa5c0bba1a24094995e8bb0a52b7ca0 msgid "Permissions support for bridge commands. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" msgstr "" -#: ../../changelog.md:615 +#: ../../changelog.md:722 #: f3da627f546c4aebadcf3322597750da msgid "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-Development/pycord/pull/1642))" msgstr "" -#: ../../changelog.md:617 +#: ../../changelog.md:724 #: 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:619 +#: ../../changelog.md:726 #: 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:625 +#: ../../changelog.md:732 #: 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:628 +#: ../../changelog.md:735 #: 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:635 +#: ../../changelog.md:742 #: 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:638 +#: ../../changelog.md:745 #: e24fad332ee74561882cb0fe5683d373 msgid "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-Development/pycord/pull/1624))" msgstr "" -#: ../../changelog.md:640 +#: ../../changelog.md:747 #: 1658154957934f93aea580480a93f06d msgid "Removed unnecessary instance check in autocomplete. ([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" msgstr "" -#: ../../changelog.md:642 +#: ../../changelog.md:749 #: 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:645 +#: ../../changelog.md:752 #: 2dd2c8f954934bb593bf96a65aaf49ce msgid "[2.1.3] - 2022-09-06" msgstr "" -#: ../../changelog.md:649 +#: ../../changelog.md:756 #: f97d21f188914b99a02eddf404a430d9 msgid "Fix TypeError in `process_application_commands`. ([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" msgstr "" -#: ../../changelog.md:652 +#: ../../changelog.md:759 #: 20f3c230725b4f879eaf13fe8fab8861 msgid "[2.1.2] - 2022-09-06" msgstr "" -#: ../../changelog.md:656 +#: ../../changelog.md:763 #: 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:660 +#: ../../changelog.md:767 #: 439fb1afd83545f8b5d955600ad11510 msgid "[2.1.1] - 2022-08-25" msgstr "" -#: ../../changelog.md:664 +#: ../../changelog.md:771 #: e74d531343704a3faafa44b907a76e3f msgid "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-Development/pycord/pull/1592))" msgstr "" -#: ../../changelog.md:667 +#: ../../changelog.md:774 #: d08ad13239c7439cbbd09aae4a16c23d msgid "[2.1.0] - 2022-08-25" msgstr "" -#: ../../changelog.md:671 +#: ../../changelog.md:778 #: 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:673 +#: ../../changelog.md:780 #: 59b42b5316384e81b6ef5f2cfeee36ff msgid "A `disable_on_timeout` kwarg in the `View` constructor. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" msgstr "" -#: ../../changelog.md:675 +#: ../../changelog.md:782 #: 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:678 +#: ../../changelog.md:785 #: 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:681 +#: ../../changelog.md:788 #: 5a44482095724e8c854fb0dac8a1b688 msgid "A new `fetch_application` method in the `Client` object. ([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" msgstr "" -#: ../../changelog.md:683 +#: ../../changelog.md:790 #: f384ae7bd39d4645a038b219cc5e3d41 msgid "New `on_check_failure` event method for the `View` class. ([#799](https://github.com/Pycord-Development/pycord/pull/799))" msgstr "" -#: ../../changelog.md:685 +#: ../../changelog.md:792 #: 84fd56364f2e426f8059ab543cf8fa9f msgid "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com/Pycord-Development/pycord/pull/1552))" msgstr "" -#: ../../changelog.md:687 +#: ../../changelog.md:794 #: 116daae4f3be479d91f71c1dfb2e158e msgid "Support for command groups with bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" msgstr "" -#: ../../changelog.md:689 +#: ../../changelog.md:796 #: aa264304900847509610971067c61d13 msgid "Support for `Attachment` type options for bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" msgstr "" -#: ../../changelog.md:691 +#: ../../changelog.md:798 #: f3a1898c5fb94d22ad268c1b80c06956 msgid "`is_app` property for `BridgeContext` to better differentiate context types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" msgstr "" -#: ../../changelog.md:693 +#: ../../changelog.md:800 #: 6bbb2d7903f94ccf928e6d4a39d6181c msgid "Support for localization on bridge commands. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" msgstr "" -#: ../../changelog.md:695 +#: ../../changelog.md:802 #: bf536e2d15b34745aa6202fefc7ecb86 msgid "A `filter_params` helper function in `discord.utils`. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" msgstr "" -#: ../../changelog.md:697 +#: ../../changelog.md:804 #: e9a5cb929d2a400996754846071ec5b6 msgid "Support for `InteractionMessage` via the `message` property of `View`. ([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" msgstr "" -#: ../../changelog.md:702 +#: ../../changelog.md:809 #: 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:705 +#: ../../changelog.md:812 #: 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:707 +#: ../../changelog.md:814 #: 1656bec918854d6297b74bb1e35a904f msgid "`commands.has_permissions()` check now returns `True` in DM channels. ([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" msgstr "" -#: ../../changelog.md:712 +#: ../../changelog.md:819 #: a16756bd1a69469ab4a723abc6249124 msgid "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on `Option._invoke`. ([#1490](https://github.com/Pycord-Development/pycord/pull/1490))" msgstr "" -#: ../../changelog.md:714 +#: ../../changelog.md:821 #: 22c69d421a4e44b5a09e1885e5b1db36 msgid "Fix type issues in `options.py` ([#1473](https://github.com/Pycord-Development/pycord/pull/1473))" msgstr "" -#: ../../changelog.md:716 +#: ../../changelog.md:823 #: 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:718 +#: ../../changelog.md:825 #: c18c8cdfbd014c69bef54df5485b077e msgid "Large code/documentation cleanup & minor bug fixes. ([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" msgstr "" -#: ../../changelog.md:720 +#: ../../changelog.md:827 #: 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:722 +#: ../../changelog.md:829 #: 74ba25ff24a7407f928e6a503cd7731a msgid "Fix `load_extensions` parameters not being passed through correctly. ([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" msgstr "" -#: ../../changelog.md:724 +#: ../../changelog.md:831 #: 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:727 +#: ../../changelog.md:834 #: 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:729 +#: ../../changelog.md:836 #: 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:731 +#: ../../changelog.md:838 #: 203cde94f8b84494a4910014cfd9cb86 msgid "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-Development/pycord/pull/1550))" msgstr "" -#: ../../changelog.md:733 +#: ../../changelog.md:840 #: 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:735 +#: ../../changelog.md:842 #: 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:737 +#: ../../changelog.md:844 #: db74b72ec1cb4f2ca20c8ec590aecc57 msgid "Avoid unnecessary calls to `sync_commands` during runtime. ([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" msgstr "" -#: ../../changelog.md:739 +#: ../../changelog.md:846 #: 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:741 +#: ../../changelog.md:848 #: e8f97a297155469dad5bf1c0065f7248 msgid "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com/Pycord-Development/pycord/pull/1573))" msgstr "" -#: ../../changelog.md:743 +#: ../../changelog.md:850 #: 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:746 +#: ../../changelog.md:853 #: 6f46f75334964b6e803da39b08058134 msgid "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. ([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" msgstr "" -#: ../../changelog.md:748 +#: ../../changelog.md:855 #: f8eb486c25734047862d39115603e056 msgid "Apply `cog_check` method to `ApplicationCommand` invocations. ([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" msgstr "" -#: ../../changelog.md:750 +#: ../../changelog.md:857 #: 98838fe24b00482b90f84b4aeef38bdf msgid "Fix `Interaction.edit_original_message()` using `ConnectionState` instead of `InteractionMessageState`. ([#1565](https://github.com/Pycord-Development/pycord/pull/1565))" msgstr "" -#: ../../changelog.md:753 +#: ../../changelog.md:860 #: 1a3f1825ed6940388193b1ef07b1dc76 msgid "Fix required parameters validation error. ([#1589](https://github.com/Pycord-Development/pycord/pull/1589))" msgstr "" -#: ../../changelog.md:756 -#: ../../changelog.md:763 +#: ../../changelog.md:863 +#: ../../changelog.md:870 #: 4b8d0071a17948a789b4a3850b4cfd3e #: 4b8d0071a17948a789b4a3850b4cfd3e msgid "Security" msgstr "" -#: ../../changelog.md:758 +#: ../../changelog.md:865 #: 595d6f7ff4074370b90bec1e9625132b msgid "Improved fix for application-based bots without the bot scope ([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" msgstr "" -#: ../../changelog.md:761 +#: ../../changelog.md:868 #: 0cd65ab173c0451bb9ae1ba3fb40b232 msgid "[2.0.1] - 2022-08-16" msgstr "" -#: ../../changelog.md:765 +#: ../../changelog.md:872 #: ee4dccbc90654cbcb8d0c05f33e124bd msgid "Fix for application-based bots without the bot scope ([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" msgstr "" -#: ../../changelog.md:768 +#: ../../changelog.md:875 #: 97414cf074d2496da5acf484c69838a0 msgid "[2.0.0] - 2022-07-08" msgstr "" -#: ../../changelog.md:772 +#: ../../changelog.md:879 #: f926a09ced2d481492984936a41f6dc7 msgid "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" msgstr "" -#: ../../changelog.md:774 +#: ../../changelog.md:881 #: 1ecb7fa75dff41449dde4615b6e710bf msgid "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com/Pycord-Development/pycord/pull/1379))" msgstr "" -#: ../../changelog.md:776 +#: ../../changelog.md:883 #: 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:778 +#: ../../changelog.md:885 #: 825af1ddcde1480883171e981e1da9cb msgid "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-Development/pycord/pull/1440))" msgstr "" -#: ../../changelog.md:780 +#: ../../changelog.md:887 #: 98bfc9d190a748579e55cb74c092cc50 msgid "A shortcut `jump_url` property to users. ([#1444](https://github.com/Pycord-Development/pycord/pull/1444))" msgstr "" -#: ../../changelog.md:782 +#: ../../changelog.md:889 #: 63e71264efce40bc9ac3f7f177759671 msgid "Ability for webhooks to create forum posts. ([#1405](https://github.com/Pycord-Development/pycord/pull/1405))" msgstr "" -#: ../../changelog.md:784 +#: ../../changelog.md:891 #: 583f0a83c644415fbd248eee5f5d8fc5 msgid "New `message` property to `View` ([#1446](https://github.com/Pycord-Development/pycord/pull/1446))" msgstr "" -#: ../../changelog.md:786 +#: ../../changelog.md:893 #: 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:788 +#: ../../changelog.md:895 #: d30d886bcbdc4227805bd6ddb03ba9ae msgid "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" msgstr "" -#: ../../changelog.md:790 +#: ../../changelog.md:897 #: eaf48b5278cf458da58e8d6c74d872d5 msgid "A `starting_message` property to `Thread`. ([#1447](https://github.com/Pycord-Development/pycord/pull/1447))" msgstr "" -#: ../../changelog.md:792 +#: ../../changelog.md:899 #: 618f1139d2854adb9498024de569eae4 msgid "An `app_permissions` property to `Interaction` and `ApplicationContext`. ([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" msgstr "" -#: ../../changelog.md:794 +#: ../../changelog.md:901 #: 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:796 +#: ../../changelog.md:903 #: bcd876b3c5524167af08b9c49fc9461d msgid "Support for AutoMod ([#1316](https://github.com/Pycord-Development/pycord/pull/1316))" msgstr "" -#: ../../changelog.md:797 +#: ../../changelog.md:904 #: 8963ace1487b41d689eaed24f1cbf62f msgid "Support for `min_length` and `max_length` kwargs in `Option`. ([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" msgstr "" -#: ../../changelog.md:799 +#: ../../changelog.md:906 #: 8768c70fc00d4e31b7a80d6b00075daa msgid "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-Development/pycord/pull/1434))" msgstr "" -#: ../../changelog.md:804 +#: ../../changelog.md:911 #: ee060919f00041db8b5be55cafb2c8c8 msgid "Updated to new sticker limit for premium guilds. ([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" msgstr "" -#: ../../changelog.md:806 +#: ../../changelog.md:913 #: dc5c99a601e643378a95fd67cc096a3a msgid "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" msgstr "" -#: ../../changelog.md:808 +#: ../../changelog.md:915 #: 8c2807db86ce44949802e774add43122 msgid "Updated deprecated IDENTIFY packet connection properties. ([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" msgstr "" -#: ../../changelog.md:813 +#: ../../changelog.md:920 #: 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:818 +#: ../../changelog.md:925 #: 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:820 +#: ../../changelog.md:927 #: c7e8ed3ea27249a3ba3139f4749fe67f msgid "Fix `repr(ScheduledEventLocation)` raising TypeError. ([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" msgstr "" -#: ../../changelog.md:822 +#: ../../changelog.md:929 #: 138b4b66eaaa464cbd8b470b39dfe3cf msgid "Fix `repr(TextChannel)` raising AttributeError. ([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" msgstr "" -#: ../../changelog.md:824 +#: ../../changelog.md:931 #: 83f10b99afb54627877654d2f7d13542 msgid "Fix application command validation. ([#1372](https://github.com/Pycord-Development/pycord/pull/1372))" msgstr "" -#: ../../changelog.md:826 +#: ../../changelog.md:933 #: f5ed697972464eef896be8d20a91d41f msgid "Fix scheduled event `cover` property raising AttributeError. ([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" msgstr "" -#: ../../changelog.md:828 +#: ../../changelog.md:935 #: 718f4fb72ad84abbb9e6433b4106c70a msgid "Fix `SlashCommandGroup` treating optional arguments as required. ([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" msgstr "" -#: ../../changelog.md:830 +#: ../../changelog.md:937 #: 3af4499fd5724a2bbab36758855eefba msgid "Fix `remove_application_command` not always removing commands. ([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" msgstr "" -#: ../../changelog.md:832 +#: ../../changelog.md:939 #: 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:834 +#: ../../changelog.md:941 #: 879a1e7ca8194078b8b54e0d9399b4b4 msgid "Fix incorrect activities and permissions on `Interaction` and `Option` objects. ([#1365](https://github.com/Pycord-Development/pycord/pull/1365))" msgstr "" -#: ../../changelog.md:836 +#: ../../changelog.md:943 #: 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:838 +#: ../../changelog.md:945 #: 980b8f6131b547259c6e3243f776160f msgid "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. ([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" msgstr "" -#: ../../changelog.md:840 +#: ../../changelog.md:947 #: 1579cb6ca4374946ae9d2aa00c6a2a05 msgid "Fix enum options not setting `input_type` to a SlashCommandOptionType. ([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" msgstr "" -#: ../../changelog.md:842 +#: ../../changelog.md:949 #: 1addb165c9c3437ca5dca418e2638d46 msgid "Fixed TypeError when using thread options. ([#1427](https://github.com/Pycord-Development/pycord/pull/1427))" msgstr "" -#: ../../changelog.md:844 +#: ../../changelog.md:951 #: d4ea2324cedb4d729a6e016ed9914ed1 msgid "Allow voice channels in PartialMessage. ([#1441](https://github.com/Pycord-Development/pycord/pull/1441))" msgstr "" -#: ../../changelog.md:846 +#: ../../changelog.md:953 #: d965df96de2444d2a3da4bac5f41fa32 msgid "Fixed `AuditLogAction.target_type` for application command permission updates. ([#1445](https://github.com/Pycord-Development/pycord/pull/1445))" msgstr "" -#: ../../changelog.md:848 +#: ../../changelog.md:955 #: a426447d83a0416b82a2ad38cf28f165 msgid "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" msgstr "" -#: ../../changelog.md:850 +#: ../../changelog.md:957 #: 8f82c1560e2a4beca1d49b51032693c7 msgid "Update `thread.members` on `thread.fetch_members`. ([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" msgstr "" -#: ../../changelog.md:852 +#: ../../changelog.md:959 #: 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))" +msgid "Fix the error when Discord does not send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" msgstr "" -#: ../../changelog.md:854 +#: ../../changelog.md:961 #: 448ef13918d4482281df46bd975272f7 -msgid "Fix AttributeError when voice client `play()` function isn't completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgid "Fix AttributeError when voice client `play()` function is not completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" msgstr "" -#: ../../changelog.md:857 +#: ../../changelog.md:964 #: dbcf3c4d21c14c479387995847602e95 msgid "[2.0.0-rc.1] - 2022-05-17" msgstr "" -#: ../../changelog.md:861 +#: ../../changelog.md:968 #: 71808897a05a4d3791bc6f9dac867d50 msgid "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com/Pycord-Development/pycord/pull/1245))" msgstr "" -#: ../../changelog.md:863 +#: ../../changelog.md:970 #: 1666cc8af144493294f14e435b91e247 msgid "New `reason` kwarg to `Thread.delete_messages`. ([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" msgstr "" -#: ../../changelog.md:865 +#: ../../changelog.md:972 #: 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:868 +#: ../../changelog.md:975 #: 65fefed9ae734de68d3bf2484df13eee msgid "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-Development/pycord/pull/1258))" msgstr "" -#: ../../changelog.md:870 +#: ../../changelog.md:977 #: e51f6c5505f84ed69127a68178587f84 msgid "An `EmbedField` object. ([#1181](https://github.com/Pycord-Development/pycord/pull/1181))" msgstr "" -#: ../../changelog.md:872 +#: ../../changelog.md:979 #: 3b7406b62a0941a398ac7fdd33ea2a0b msgid "Option names and descriptions are now validated locally. ([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" msgstr "" -#: ../../changelog.md:874 +#: ../../changelog.md:981 #: 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:877 +#: ../../changelog.md:984 #: 6d7c1c2574e84c82aa22abf622baf28d msgid "Support providing option channel types as a list. ([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" msgstr "" -#: ../../changelog.md:879 +#: ../../changelog.md:986 #: e7e85506316f4046a79bf1bee7c0213e msgid "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-Development/pycord/pull/1282))" msgstr "" -#: ../../changelog.md:881 +#: ../../changelog.md:988 #: 20413647edf3450886b175cd2f53edc2 msgid "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-Development/pycord/pull/1288))" msgstr "" -#: ../../changelog.md:883 +#: ../../changelog.md:990 #: d29d910018724595a72b329b086dae1b msgid "Implement `None` check for check_guilds. ([#1291](https://github.com/Pycord-Development/pycord/pull/1291))" msgstr "" -#: ../../changelog.md:885 +#: ../../changelog.md:992 #: 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:887 +#: ../../changelog.md:994 #: 715f3642c43e4b818b36ac879254a1ad msgid "A new `files` parameter to `Page` object. ([#1300](https://github.com/Pycord-Development/pycord/pull/1300))" msgstr "" -#: ../../changelog.md:889 +#: ../../changelog.md:996 #: 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:892 +#: ../../changelog.md:999 #: a1b658522e74433b8248a8632c132c83 msgid "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com/Pycord-Development/pycord/pull/1317))" msgstr "" -#: ../../changelog.md:894 +#: ../../changelog.md:1001 #: 45b48efa33e2445ea77ca5d350cbc1f7 msgid "Support for Permissions v2. ([#1328](https://github.com/Pycord-Development/pycord/pull/1328))" msgstr "" -#: ../../changelog.md:896 +#: ../../changelog.md:1003 #: 9201af3619a241128b9361d32485948e msgid "Allow using Enum to specify option choices. ([#1292](https://github.com/Pycord-Development/pycord/pull/1292))" msgstr "" -#: ../../changelog.md:898 +#: ../../changelog.md:1005 #: bd0157bc4b0f4b8f8628064afc16fae9 msgid "The `file` and `files` parameters to `InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-Development/pycord/pull/1340))" msgstr "" -#: ../../changelog.md:900 +#: ../../changelog.md:1007 #: 6e19fe31455347129e5a8bc95d7b3572 msgid "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-Development/pycord/pull/1348))" msgstr "" -#: ../../changelog.md:902 +#: ../../changelog.md:1009 #: 99861fea2ef74154a4150f91fa8eef16 msgid "Forum channels support. ([#1249](https://github.com/Pycord-Development/pycord/pull/1249))" msgstr "" -#: ../../changelog.md:904 +#: ../../changelog.md:1011 #: 0a54f2b4c9764c26a62124a36810df1f msgid "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-Development/pycord/pull/1274))" msgstr "" -#: ../../changelog.md:906 +#: ../../changelog.md:1013 #: 99d5ef66098a46d3a923357f8a26c740 msgid "Support event covers for audit logs. ([#1355](https://github.com/Pycord-Development/pycord/pull/1355))" msgstr "" -#: ../../changelog.md:911 +#: ../../changelog.md:1018 #: 3fc4ac26224f413589a65d539f172b72 msgid "Removed implicit defer call in `View`. ([#1260](https://github.com/Pycord-Development/pycord/pull/1260))" msgstr "" -#: ../../changelog.md:913 +#: ../../changelog.md:1020 #: c6ba3c12853545738f571c0366063c82 msgid "`Option` class and usage were rewritten. ([#1251](https://github.com/Pycord-Development/pycord/pull/1251))" msgstr "" -#: ../../changelog.md:915 +#: ../../changelog.md:1022 #: 916c6e9e2e524421870ac2ad12af1c1b msgid "`description` argument of `PageGroup` is now optional. ([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" msgstr "" -#: ../../changelog.md:917 +#: ../../changelog.md:1024 #: 8d7dea175fb24794a355b13007c92e01 msgid "Allow `Modal.children` to be set on initialization. ([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" msgstr "" -#: ../../changelog.md:919 +#: ../../changelog.md:1026 #: eb953d6d30db42809fb6a250571f29b1 msgid "Renamed `delete_exiting` to `delete_existing` (typo). ([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" msgstr "" -#: ../../changelog.md:924 +#: ../../changelog.md:1031 #: 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:926 +#: ../../changelog.md:1033 #: 6a79d4a32b634bd3a7b74c101fa54a7e msgid "Fix channel parsing in slash command invocations. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" msgstr "" -#: ../../changelog.md:928 +#: ../../changelog.md:1035 #: 05aa589e0a9a469d96f811423c1b3bd2 msgid "Make the channel `position` attribute optional. ([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" msgstr "" -#: ../../changelog.md:930 +#: ../../changelog.md:1037 #: 3da23a6d6d4b4324a36f0b33cc59f82e msgid "Fix `PaginatorMenu` to use interaction routes for updates. ([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" msgstr "" -#: ../../changelog.md:932 +#: ../../changelog.md:1039 #: d463353b612449e89a9a7015a794e5e2 msgid "Fix `PartialMessage.edit()` behavior when `content` is `None`. ([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" msgstr "" -#: ../../changelog.md:934 +#: ../../changelog.md:1041 #: 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:936 +#: ../../changelog.md:1043 #: 7d105926ee684e439657e29d1a57156a msgid "Fix `process_application_commands` command not found fallback. ([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" msgstr "" -#: ../../changelog.md:938 +#: ../../changelog.md:1045 #: 54b42e8bc31145a9a8831d96c1c7a836 msgid "Fix interaction response race condition. ([#1039](https://github.com/Pycord-Development/pycord/pull/1039))" msgstr "" -#: ../../changelog.md:940 +#: ../../changelog.md:1047 #: 5797d5a4023d458aa6eaefe95fdcbe70 msgid "Remove voice client when the bot disconnects. ([#1273](https://github.com/Pycord-Development/pycord/pull/1273))" msgstr "" -#: ../../changelog.md:942 +#: ../../changelog.md:1049 #: 98b7cc4cbd3b4529bd64539cdc0166e7 msgid "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com/Pycord-Development/pycord/pull/1250))" msgstr "" -#: ../../changelog.md:944 +#: ../../changelog.md:1051 #: 89cd1c71990c439c8187661846e4817c msgid "`Context.me` returns ClientUser when guilds intent is absent. ([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" msgstr "" -#: ../../changelog.md:946 +#: ../../changelog.md:1053 #: 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:948 +#: ../../changelog.md:1055 #: fec7f8bc5c1c40638b2c7541a613f3b3 msgid "Improved validation regex for command names & options. ([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" msgstr "" -#: ../../changelog.md:950 +#: ../../changelog.md:1057 #: 1b22b1b48af64ab082e28d5be38e9470 msgid "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com/Pycord-Development/pycord/pull/1323))" msgstr "" -#: ../../changelog.md:952 +#: ../../changelog.md:1059 #: 109809acf2d545559ad5bd7c1d9d668d msgid "Multiple fixes and enhancements for `PageGroup` handling. ([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" msgstr "" -#: ../../changelog.md:954 +#: ../../changelog.md:1061 #: c648e6fc6f44425195f326fb578e61d3 msgid "Make `TextChannel._get_channel` async. ([#1358](https://github.com/Pycord-Development/pycord/pull/1358))" msgstr "" -#: ../../changelog.md:957 +#: ../../changelog.md:1064 #: 7de5791d77fa4367bcc58a2b9db9f7dc msgid "[2.0.0-beta.7] - 2022-04-09" msgstr "" -#: ../../changelog.md:961 +#: ../../changelog.md:1068 #: 681f7f806d614707ae86fcc2e8c3042e msgid "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-Development/pycord/pull/1240))" msgstr "" -#: ../../changelog.md:1000 +#: ../../changelog.md:1107 #: c3d9893dfd4c43e1af3405c2b96d7e8a msgid "Older Versions" msgstr "" -#: ../../changelog.md:1002 +#: ../../changelog.md:1109 #: f2ab2347b52c49258384ff69cb70c6ce msgid "A changelog for versions prior to v2.0 can be found [here](old_changelog.rst)." msgstr "" diff --git a/docs/build/locales/ext/bridge/api.pot b/docs/build/locales/ext/bridge/api.pot index f6e420812d..1b4fb1d08f 100644 --- a/docs/build/locales/ext/bridge/api.pot +++ b/docs/build/locales/ext/bridge/api.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 23:44+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -72,7 +72,6 @@ msgstr "" #: d414290a24964ae2827a233b80f9d820 #: 2712df298b134b468aa30aa758768e1d #: ecc99c5f64b747e49d92d73c86da310a -#: ecc99c5f64b747e49d92d73c86da310a msgid "Parameters" msgstr "" @@ -231,12 +230,14 @@ 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 +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.bridge_option:0 #: c199030b71784af6aa7369b62ea3c70a #: 530c706f8f2d4cde86d4b9959a708cf9 #: 0dcaa4de42d7417ab675d15d95c0545e #: fcd3136ef9a54e679fb18bae06554cee #: 3233f6d67e434cb4930d286b1cedbf93 #: 695ca16e39234b53a145ba1a621e6ef6 +#: c102617394d14eb786c58ca83d415312 msgid "type" msgstr "" @@ -658,12 +659,32 @@ msgstr "" #: ../../ext/bridge/api.rst:162 #: be07208f849b4f75afd5cb572c0a4830 -msgid "Option" +msgid "Options" msgstr "" #: ../../ext/bridge/api.rst:165 -#: 0b5ee756992f4209aeb8020d1f811b80 -msgid "BridgeOption" +#: 1f60901eac6a457aa7223e42c10cd93f +msgid "Shortcut Decorators" +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.bridge_option:1 +#: 69b358da5f70406084f5cf2e5739a26c +msgid "A decorator that can be used instead of typehinting :class:`.BridgeOption`." +msgstr "" + +#: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.bridge_option:7 +#: 4ec148203eee4759923f7f7b020f695f +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/ext/bridge/core.py:docstring of discord.ext.bridge.core.bridge_option:10 +#: 91b7ac886f874e52a683d4c29e70b140 +msgid ":class:`str`" +msgstr "" + +#: ../../ext/bridge/api.rst:170 +#: ce259b63f70742b7a14bfb05534ee558 +msgid "Objects" msgstr "" #: ../../../discord/ext/bridge/core.py:docstring of discord.ext.bridge.core.BridgeOption:1 diff --git a/docs/build/locales/ext/commands/api.pot b/docs/build/locales/ext/commands/api.pot index a527fa034a..898ff1a6d0 100644 --- a/docs/build/locales/ext/commands/api.pot +++ b/docs/build/locales/ext/commands/api.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -141,21 +141,21 @@ msgstr "" #: 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 @@ -293,9 +293,9 @@ msgstr "" #: af2f1296905749558682b61c1f7363ae #: af2f1296905749558682b61c1f7363ae #: af2f1296905749558682b61c1f7363ae -#: 028c17ce435547ffae49bfe544b27746 #: af2f1296905749558682b61c1f7363ae -#: e56be582fd2f43eb94adef4955c9abc0 +#: af2f1296905749558682b61c1f7363ae +#: af2f1296905749558682b61c1f7363ae #: af2f1296905749558682b61c1f7363ae #: 8eca1380293a4e09adb2fe3078136d93 #: af2f1296905749558682b61c1f7363ae @@ -351,68 +351,54 @@ msgstr "" #: 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 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 @@ -426,34 +412,33 @@ msgstr "" #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 -#: cd224adfd8e945a795b92654c0537e46 -#: 634b9b9ff2e24fdd91b9e3cd5b880d80 -#: 5b1a773778e843eea6be076e295ca033 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 -#: 440b7315543740c799170efcdd4c8f0e #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 -#: e979a2cb64c144f08aaf2803550cb543 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 -#: 102f67d17332471589053ba459ce6673 -#: 3dbc0c3d62ea4dd1817205318f484376 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 @@ -468,10 +453,10 @@ msgstr "" #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 -#: 0376d1f3354048868ddfbd60acc27c3f -#: 37a692f9433046b2adc05d7f464911ab #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 @@ -488,7 +473,6 @@ msgstr "" #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 -#: d18243f289de4f3aa562ec83d726eb9c #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 @@ -497,6 +481,7 @@ msgstr "" #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 @@ -521,10 +506,12 @@ msgstr "" #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 @@ -562,6 +549,7 @@ msgstr "" #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 @@ -569,12 +557,29 @@ msgstr "" #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 @@ -582,6 +587,7 @@ msgstr "" #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 +#: e532d59c72474f99b0c1ce7c2be358e2 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 #: 3750ee9874a649329aece5d76398dd35 @@ -620,75 +626,80 @@ msgstr "" #: fd688e2c9468425f8650382857f2fe9a #: 0aaa7547a84144fc98f8383462258a5d #: 227204ee62a54c638c2f8b9a91f21145 -#: db8e0299f4d5440f9756cf07c76ff3d2 -#: 3a49aabda5f543efb7eef2d44dc0035e -#: 081141882b5340b1a80561ca9111ae72 -#: 3cf4e4f8fc3944a4b6b9f023fcb9e6e1 -#: 00e100a89db949b995244b5d7ea5c0e0 -#: 0d7bea2ab09344bda3df67dcce3ccdeb -#: 5f1237616e624c018af062a4d89f032c -#: e20c74a6209b4f6ba2e2c83d146ec9b9 -#: 1604d3c4c756481bb44124fe1ee7d611 -#: b49c0073b56340ec9b78c3636e71e85c -#: db7ea1055966404583fc0cb0b2c4d74f -#: 2d00ed43b7e24723b1c4d6801312bdce -#: f601fd2e0ec94ce3a040c5466afdf390 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 #: 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 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 +#: 227204ee62a54c638c2f8b9a91f21145 msgid "Raises" msgstr "" @@ -756,10 +767,10 @@ msgstr "" #: 6a9a9b160ee24cf4bfd1c63a997e9b6d #: 2f0dc352e6954dfd855ac44d79767155 #: 6e75c57ecbba458cbf5f3669a2924ab2 -#: d64565eb8c0f49fabf5ba8ebd0408016 -#: d64565eb8c0f49fabf5ba8ebd0408016 -#: d64565eb8c0f49fabf5ba8ebd0408016 -#: d64565eb8c0f49fabf5ba8ebd0408016 +#: 6e75c57ecbba458cbf5f3669a2924ab2 +#: 6e75c57ecbba458cbf5f3669a2924ab2 +#: 6e75c57ecbba458cbf5f3669a2924ab2 +#: 6e75c57ecbba458cbf5f3669a2924ab2 msgid "Example" msgstr "" @@ -785,97 +796,101 @@ msgstr "" #: 3befc35084eb4ca69d1eae3463158861 #: dfe2da6e0d804d72b6ac73f14963c8f2 #: 8e90d2f15b4941d98f8df75ea6d1f6f7 -#: 98009cff8e324960b08e4c96846a22ab -#: ad5f35b147574d30a0a839258b537e52 -#: 63cdadc9d8aa4bfabd4c2ebf92943762 -#: e7bb28eb3fa44f87a1b2e6c2b6fd300f -#: 6913a08768f04878a8aae3849f2adbcb -#: 2fccd0b36926425aa78d42b9de69dd3f -#: 5112301599a2461ab64d607e13e31a0c -#: a7e906d78e604e498c0790b35695e171 -#: f4e36f6415c74fc8a5a3d6a231c6612a -#: b6a1edaf8c42494ba5a9e62d8f3d7a0a -#: d0d2c521ec0e46899e9c57882edc2983 -#: 40cd0e3b914a4a93ba95b1043d54fb57 -#: 21b6898829444dfdb4d7580f4b8e8d68 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 #: 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 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 #: 21f49b5974d544ffa30d029b89640d48 #: 21f49b5974d544ffa30d029b89640d48 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 msgid "Returns" msgstr "" @@ -903,190 +918,201 @@ msgstr "" #: 5c50e685ec2041e597da308a07641a2c #: 4c5fd8c24f5b4ad28a6e1aae56787d18 #: 844194587e244cf2b26a421da5ef2919 -#: 83f96d62a16b4d479ab2c81dd1f136f5 -#: 410437ffc3e04b40a383df209d8b16f3 -#: cd347a646db3434e925a1c1ee2047412 -#: 13f3ffb767a74f8e9e764aa5a74a089a -#: 631a53d5fb644b1dbbe93c6614a7c4f2 -#: b45285c94435415aa6a5322e8781abbd -#: 5636ea5552c544f5b61e1173aabbd424 -#: efde8f14120541b68759499f509605ce +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 #: f4e246fdf7f2458baa9253a36a4045e0 -#: 123b5e5640914f0c8b4e3046caba82cd -#: 747e9c0cdf2f4e9bb919c9dc427e2cc2 -#: 9014a07ae4274d518383c0faced251e7 -#: 0d5178bf994b44cf926dcc67b591b256 -#: cc0179f647c24dc9a5287080d1c62d99 -#: 198305646666451196d990dc353636ba -#: 0e729c9e43cf4805bafb0bab9cc41897 -#: aa13bf25f19340fc931e80e3daed2919 -#: 55536d0434d84487aa4b5a9de46e940b -#: b46102d67b324fd8a3c1c4ae247fa8b3 -#: 6cbefb296dbe48689f75969f7d94f823 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 #: 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 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 #: fc5da63fdcca41d5a4742949f05235c9 #: fc5da63fdcca41d5a4742949f05235c9 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 #: fc5da63fdcca41d5a4742949f05235c9 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 #: fc5da63fdcca41d5a4742949f05235c9 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 +#: 844194587e244cf2b26a421da5ef2919 msgid "Return type" msgstr "" @@ -1217,6 +1243,7 @@ msgstr "" #: ../../../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_emoji:11 #: ../../../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 @@ -1247,39 +1274,40 @@ msgstr "" #: 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 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" msgstr "" @@ -1438,6 +1466,16 @@ msgstr "" msgid "The allowed mention configuration." msgstr "" +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.app_emojis:1 +#: 1538eaf30f75407ab466133776dbc71e +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.app_emojis:5 +#: 37c64c1f6261438891a797a6a574ac89 +msgid "This is only available if `cache_app_emojis` is ``True``." +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`." @@ -1483,9 +1521,13 @@ msgstr "" #: ../../../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_emoji: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_emoji: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_emoji:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_emojis: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 @@ -1500,6 +1542,8 @@ msgstr "" #: ../../../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.on_modal_error:1 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.on_view_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 @@ -1514,6 +1558,7 @@ msgstr "" #: ../../../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.forward_to: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 @@ -1554,91 +1599,98 @@ msgstr "" #: ../../../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 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 #: 62c513a80a3c4ec5b566f2dfe95621cb +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 +#: 25dea9a1072d49a4a52f17e137de72c3 msgid "|coro|" msgstr "" @@ -1736,8 +1788,8 @@ msgstr "" #: ../../../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 +#: 585e5854876b422d856c9a7d7f4f3745 +#: 585e5854876b422d856c9a7d7f4f3745 msgid "A unique set of commands without aliases that are registered." msgstr "" @@ -1786,6 +1838,43 @@ msgstr "" msgid ":class:`.DMChannel`" msgstr "" +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_emoji:3 +#: 39474d78af2f441d818ba1b7ccdeccd0 +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_emoji:5 +#: 67f8e1eafadb4329933ed24dc95a313c +msgid "There is currently a limit of 2000 emojis per application." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_emoji:8 +#: cad7e9188975461bab6898228488e849 +msgid "The emoji name. Must be at least 2 characters." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_emoji:11 +#: 75d40bc85a17414a943100275453e7b5 +msgid "The :term:`py:bytes-like object` representing the image data to use. Only JPG, PNG and GIF images are supported." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_emoji:15 +#: 4d5298f99ee649468bc32cbb48858423 +msgid "An error occurred creating an emoji." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_emoji:17 +#: e62f5010bdd14887b34428f27772f090 +msgid "The created emoji." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.create_emoji:18 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_emoji:10 +#: ddd2ee7b903d4405b001c528caddc533 +#: ddd2ee7b903d4405b001c528caddc533 +msgid ":class:`AppEmoji`" +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`." @@ -1799,14 +1888,14 @@ 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 +#: 70182e1186984166914ebe5256fd2312 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 +#: 46500bc4b09146558d44dcee21047fca 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 "" @@ -1818,7 +1907,7 @@ 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 +#: e95710966abe488e8ce4970bd2f35160 msgid "The slash command group that was created." msgstr "" @@ -1860,7 +1949,7 @@ 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 +#: 97536bb06f8049b5837ac583ff2dce33 msgid ":class:`.Guild`" msgstr "" @@ -1874,6 +1963,21 @@ msgstr "" msgid "Invalid icon image format given. Must be PNG or JPG." msgstr "" +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.delete_emoji:3 +#: 39474d78af2f441d818ba1b7ccdeccd0 +msgid "Deletes the custom :class:`AppEmoji` from the application." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.delete_emoji:6 +#: c5cc8c5449904509b773a938723d081b +msgid "The emoji you are deleting." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.delete_emoji:9 +#: 4d5298f99ee649468bc32cbb48858423 +msgid "An error occurred deleting the emoji." +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." @@ -1909,6 +2013,11 @@ msgstr "" msgid "The emojis that the connected client has." msgstr "" +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.emojis:5 +#: ea92aef62ae14860a92b74b19f31e2fd +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +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." @@ -1959,15 +2068,15 @@ msgstr "" #: ../../../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 +#: db580d1226264744a222ffee4584ffd4 +#: db580d1226264744a222ffee4584ffd4 +#: db580d1226264744a222ffee4584ffd4 +#: db580d1226264744a222ffee4584ffd4 +#: db580d1226264744a222ffee4584ffd4 +#: db580d1226264744a222ffee4584ffd4 +#: db580d1226264744a222ffee4584ffd4 +#: db580d1226264744a222ffee4584ffd4 +#: db580d1226264744a222ffee4584ffd4 msgid "Yields" msgstr "" @@ -1988,41 +2097,41 @@ 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.fetch_guilds:41 #: ../../../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 +#: 3321eb8445bb48ffb68d9cb74a155012 +#: 3321eb8445bb48ffb68d9cb74a155012 +#: 3321eb8445bb48ffb68d9cb74a155012 +#: 3321eb8445bb48ffb68d9cb74a155012 +#: 3321eb8445bb48ffb68d9cb74a155012 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 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:42 +#: 9c43804aa1e84f4db26daf70ceda2518 +#: 9c43804aa1e84f4db26daf70ceda2518 #: 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 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:47 +#: 843417dafe404d64bc7fa228cb7035a1 #: 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 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:52 +#: f3a460b6dbc644f1a519e478316d2ace +#: f3a460b6dbc644f1a519e478316d2ace #: f3a460b6dbc644f1a519e478316d2ace -#: 890c3220aa92482a88d9eb963d89a73f -#: 828a83477bcd4a6481593e689e4c7a6e msgid "All parameters are optional." msgstr "" @@ -2101,6 +2210,51 @@ msgstr "" msgid "You do not have permission to fetch this channel." msgstr "" +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_emoji:3 +#: 39474d78af2f441d818ba1b7ccdeccd0 +msgid "Retrieves a custom :class:`AppEmoji` from the application." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_emoji:6 +#: d7510512f1274c79ad9b92b41e15793a +msgid "The emoji's ID." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_emoji:9 +#: 16bd71de63f54315b81153e65c2efa00 +msgid "The retrieved emoji." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_emoji:12 +#: fa27d36619154f23b87e1454acdd2c5f +msgid "The emoji requested could not be found." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_emoji:13 +#: 4d5298f99ee649468bc32cbb48858423 +msgid "An error occurred fetching the emoji." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_emojis:3 +#: 39474d78af2f441d818ba1b7ccdeccd0 +msgid "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_emojis:5 +#: 4d5298f99ee649468bc32cbb48858423 +msgid "An error occurred fetching the emojis." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_emojis:7 +#: 75e503161f364fa5a593ca4873cec071 +msgid "The retrieved emojis." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_emojis:8 +#: 0722f1eb0d854e748d5363eedae8ec27 +msgid "List[:class:`AppEmoji`]" +msgstr "" + #: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guild:3 #: de71bd64cf04416ea9bf2abe61ff72ef msgid "Retrieves a :class:`.Guild` from an ID." @@ -2177,16 +2331,21 @@ msgid "Retrieve guilds after this date or object. If a datetime is provided, it msgstr "" #: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:29 +#: 3b20121f198d4f388ed94fe5e12cdba9 +msgid "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:35 #: 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 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:37 #: 15f4a4f866324c7ba489cd589b442544 msgid "Getting the guilds failed." msgstr "" -#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:32 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.fetch_guilds:38 #: 75ee4f3a774e4d8f987a57c3125133f5 msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" msgstr "" @@ -2289,7 +2448,7 @@ 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 +#: f85d9e595c1d4f359d02d7b2baf0b555 msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" msgstr "" @@ -2501,16 +2660,21 @@ 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 +#: 72d83d8cefd0467bbfcf9ddc6b6a47cf msgid "This is equivalent to: ::" msgstr "" -#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_channels:11 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_channels:8 +#: d1219c96be1d44378e6cc2e7e6537aaa +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_channels:13 #: 32d5a41f29ab4eab83ff4181703345a6 msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "" -#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_channels:15 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_channels:17 #: 9860d3eda1264a0c8df1f138ffe0bb12 msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." msgstr "" @@ -2525,6 +2689,11 @@ msgstr "" msgid ":class:`.Member` -- A member the client can see." msgstr "" +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_all_members:12 +#: 7d0a457d06344339819fc176a73566c2 +msgid ":sphinx_autodoc_typehints_type:`Generator\\[Member\\]`" +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." @@ -2796,8 +2965,8 @@ 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`]" +#: 36582766bdc1404fba01c7e34a7d291e +msgid "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgstr "" #: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.get_guild:1 @@ -2964,6 +3133,11 @@ msgstr "" msgid "Returns a user with the given ID." msgstr "" +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.guild_emojis:1 +#: 1538eaf30f75407ab466133776dbc71e +msgid "The :class:`~discord.GuildEmoji` that the connected client has." +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." @@ -3044,11 +3218,11 @@ msgid "This can be useful to know when deciding whether you should query members 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." +#: fdffefaa1e9b44859d2ce1db6bcea167 +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgstr "" -#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.latency:3 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.Bot.latency:4 #: 68a27c5f06f046589b9966084c427b86 msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "" @@ -3267,6 +3441,33 @@ msgstr "" 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.client.Client.on_modal_error:3 +#: 4bd84969508349538a18e4462fc68a75 +msgid "The default modal error handler provided by the client. The default implementation prints the traceback to stderr." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.on_modal_error:6 +#: a95fc73d1af4455db17072682a05e1f1 +msgid "This only fires for a modal if you did not define its :func:`~discord.ui.Modal.on_error`." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.on_modal_error:12 +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.on_view_error:13 +#: 7d0a457d06344339819fc176a73566c2 +#: 7d0a457d06344339819fc176a73566c2 +msgid ":sphinx_autodoc_typehints_type:`None`" +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.on_view_error:3 +#: 62a23463e67743778ff5b5ffda0e1cb5 +msgid "The default view error handler provided by the client." +msgstr "" + +#: ../../../discord/ext/commands/bot.py:docstring of discord.client.Client.on_view_error:5 +#: 5401cf8b6fca4120bce2806abf520d45 +msgid "This only fires for a view if you did not define its :func:`~discord.ui.View.on_error`." +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." @@ -3903,24 +4104,29 @@ msgstr "" msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." msgstr "" +#: ../../../discord/ext/commands/bot.py:docstring of discord.bot.ApplicationCommandMixin.walk_application_commands:6 +#: 9624b70cfbee4ca3af484bcf68e4e8ab +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + #: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:1 #: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:1 -#: 1456f4943caa4b34a8e69f60b5a07808 -#: 1456f4943caa4b34a8e69f60b5a07808 -#: 1456f4943caa4b34a8e69f60b5a07808 -msgid "An iterator that recursively walks through all commands and subcommands." +#: 9ab1b0a34851422dab23e9815b835095 +#: 9ab1b0a34851422dab23e9815b835095 +#: 9ab1b0a34851422dab23e9815b835095 +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" msgstr "" -#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:3 -#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:3 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:5 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:5 #: 49f59fb863cd4209bd0f1f4182299127 #: 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 +#: ../../../discord/ext/commands/bot.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:8 +#: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.GroupMixin.walk_commands:8 #: c046361221d6494fa948452872c5775c #: c046361221d6494fa948452872c5775c #: c046361221d6494fa948452872c5775c @@ -4154,7 +4360,7 @@ msgstr "" #: ../../../discord/ext/commands/core.py:docstring of discord.ext.commands.core.Command:34 #: 2fa587e86d45443b9e8de44d3a40adb3 #: 2fa587e86d45443b9e8de44d3a40adb3 -#: 1cae6d584b4042669667b6b5b19e8ca7 +#: 2fa587e86d45443b9e8de44d3a40adb3 #: 2fa587e86d45443b9e8de44d3a40adb3 #: 2fa587e86d45443b9e8de44d3a40adb3 #: 2fa587e86d45443b9e8de44d3a40adb3 @@ -4738,6 +4944,11 @@ msgstr "" msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "" +#: ../../../discord/ext/commands/cog.py:docstring of discord.ext.commands.cog.Cog.walk_commands:6 +#: 9624b70cfbee4ca3af484bcf68e4e8ab +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + #: ../../../discord/ext/commands/cog.py:docstring of discord.ext.commands.cog.Cog.get_commands:1 #: e903471dee0946f698493b70bbd6bfff msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." @@ -5052,10 +5263,15 @@ msgstr "" #: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.filter_commands:20 #: 9f05a77eef2445268d540b4f9653f322 +msgid "A tuple of command types to exclude from the filter." +msgstr "" + +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.filter_commands:23 +#: 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 +#: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.filter_commands:24 #: 0722f1eb0d854e748d5363eedae8ec27 msgid "List[:class:`Command`]" msgstr "" @@ -5112,11 +5328,11 @@ msgstr "" #: ../../../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 +#: 221263475094489f990e402ae86805f6 +#: 221263475094489f990e402ae86805f6 #: 221263475094489f990e402ae86805f6 #: 221263475094489f990e402ae86805f6 msgid "You can override this method to customise the behaviour." @@ -5166,9 +5382,9 @@ msgstr "" #: ../../../discord/ext/commands/help.py:docstring of discord.ext.commands.help.HelpCommand.send_group_help:15 #: bb2b8cf7f8da4ab498331b3d6bfb0f42 #: bb2b8cf7f8da4ab498331b3d6bfb0f42 -#: 1a16d349e6b147ea8072bbe46e99443b -#: 145f3f00a2854c308de39ac9f2935d3d -#: 44d8a4471f8d46199d03cf08d9d852fb +#: bb2b8cf7f8da4ab498331b3d6bfb0f42 +#: bb2b8cf7f8da4ab498331b3d6bfb0f42 +#: bb2b8cf7f8da4ab498331b3d6bfb0f42 msgid "You can access the invocation context with :attr:`HelpCommand.context`." msgstr "" @@ -5202,9 +5418,9 @@ msgstr "" #: ../../../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 +#: 8733bb9051b04e2f91d902a402af6929 +#: 8733bb9051b04e2f91d902a402af6929 +#: 8733bb9051b04e2f91d902a402af6929 msgid "It should be noted that this method does not return anything -- rather the actual message sending should be done inside this method. Well-behaved subclasses should use :meth:`get_destination` to know where to send, as this is a customisation point for other users." msgstr "" @@ -5845,7 +6061,7 @@ msgstr "" #: 9624b70cfbee4ca3af484bcf68e4e8ab #: 9624b70cfbee4ca3af484bcf68e4e8ab #: 9624b70cfbee4ca3af484bcf68e4e8ab -#: 641aba9d9e1242ee81b39f49ea575ac7 +#: 9624b70cfbee4ca3af484bcf68e4e8ab #: 9624b70cfbee4ca3af484bcf68e4e8ab #: 9624b70cfbee4ca3af484bcf68e4e8ab msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]`" @@ -6298,9 +6514,11 @@ 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.forward_to:13 #: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reply:9 #: e1bc43a7b22b49f7bb9f4ba8e292f620 #: 6c79017c8b06446498c3190155904db2 +#: 6c79017c8b06446498c3190155904db2 msgid ":class:`.Message`" msgstr "" @@ -6612,6 +6830,45 @@ msgstr "" msgid "The result of the help command, if any." 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.forward_to:12 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reply:8 +#: 07908514f89544cd8fadb56e8b84c9ea +#: 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.forward_to:15 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reply:11 +#: 44cfdba165a2496f86c393e4ff002312 +#: 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.forward_to:16 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reply:12 +#: 1baacf7f645a4a3e98b1d53ae7e82fa4 +#: 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.forward_to:17 +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.reply:13 +#: dd5c11c9c7f04d8da2c0fcf683585cbd +#: 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.can_send:1 #: 2f8ba1ce6e854c78bb794c8d818a52fc msgid "Returns a :class:`bool` indicating whether you have the permissions to send the object(s)." @@ -6664,6 +6921,16 @@ msgstr "" msgid "Retrieving the message failed." msgstr "" +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.forward_to:3 +#: 666fc58fd984426b9fc3697183d98530 +msgid "A shortcut method to :meth:`.abc.Messageable.send` to forward the :class:`.Message` to a channel." +msgstr "" + +#: ../../../discord/ext/commands/context.py:docstring of discord.ext.commands.context.Context.forward_to:9 +#: 9605ca58dc7540ba809f5b9944de8e93 +msgid "The channel to forward this to." +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." @@ -6689,37 +6956,6 @@ msgstr "" 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." @@ -6797,12 +7033,12 @@ 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" +msgid "A reference to the :class:`~discord.Message` being replied to or forwarded. This can be created using :meth:`~discord.Message.to_reference`. When replying, you can control whether 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``." +msgid "A reference to the :class:`~discord.Message` being replied to or forwarded. This can be created using :meth:`~discord.Message.to_reference`. When replying, you can control whether 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 @@ -7654,8 +7890,8 @@ msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colo msgstr "" #: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter:1 -#: 5fe8c3fcda8a4f62af280c4d6ab3397a -msgid "Converts to a :class:`~discord.Emoji`." +#: 6b7a74325383465caf8f1f009428b33b +msgid "Converts to a :class:`~discord.GuildEmoji`." msgstr "" #: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.EmojiConverter:3 @@ -7677,7 +7913,7 @@ 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\\``" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" msgstr "" #: ../../../discord/ext/commands/converter.py:docstring of discord.ext.commands.converter.PartialEmojiConverter:1 diff --git a/docs/build/locales/ext/commands/commands.pot b/docs/build/locales/ext/commands/commands.pot index 0afa8a047f..03f596e925 100644 --- a/docs/build/locales/ext/commands/commands.pot +++ b/docs/build/locales/ext/commands/commands.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"POT-Creation-Date: 2025-02-24 14:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -463,7 +463,7 @@ msgstr "" #: ../../ext/commands/commands.rst:440 #: 60107320d7654b6a9154ea6e51181a3d #: dd3916f6d6e54dfbb9f2094c34b320b8 -msgid ":class:`Emoji`" +msgid ":class:`GuildEmoji`" msgstr "" #: ../../ext/commands/commands.rst:398 diff --git a/docs/build/locales/ext/pages/index.pot b/docs/build/locales/ext/pages/index.pot index ec4a6a37c5..2a8d1aba91 100644 --- a/docs/build/locales/ext/pages/index.pot +++ b/docs/build/locales/ext/pages/index.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -69,23 +69,24 @@ msgstr "" #: 6bf63b66304d4c34b3dee842785b34c1 #: 341e6342cd654d72a002d8bc1bbf025a #: c6df38aa49414da5a6de205f703db624 -#: 655fc98117b74364b87cb5d49111b23f -#: 13ad2f1d0c7641d59bec5738903ebd38 -#: 6e0c755cc95c460dacb7bb287f7856fc -#: 0e9e89efe9e643c3acc962e0648c89a5 -#: 34ba1e0e3f634a529e2461c1c8d10b16 -#: 4ebe1f73ecfe4d27aff3c7e8aca24bfd -#: 09ddd6dd6d764f9d8afa0a4291730274 +#: c6df38aa49414da5a6de205f703db624 +#: c6df38aa49414da5a6de205f703db624 +#: c6df38aa49414da5a6de205f703db624 +#: c6df38aa49414da5a6de205f703db624 +#: c6df38aa49414da5a6de205f703db624 +#: c6df38aa49414da5a6de205f703db624 +#: c6df38aa49414da5a6de205f703db624 #: 4c13c6d74aac47ba8b3ab6fc503d4c08 -#: c1d3f802b5e54055a23682050656d600 -#: d5bca9a9f4e3404884791ef3d4aca196 -#: f2a2b2cd04354ce2b4dbcb6e77dd1bd1 -#: 5a2d03e908f5498ca371e47073d60077 -#: 148f4b586e154d7b9784cf4e6149b19c -#: 0ee33849feaa4e1c9b968a1b176c4840 -#: 075fafed1a384290b249cd03322da598 -#: dbf01b3b2c5841ba9be4972edf38c752 -#: 5d6bf83ea6804891811293d85965e471 +#: c6df38aa49414da5a6de205f703db624 +#: c6df38aa49414da5a6de205f703db624 +#: c6df38aa49414da5a6de205f703db624 +#: c6df38aa49414da5a6de205f703db624 +#: c6df38aa49414da5a6de205f703db624 +#: c6df38aa49414da5a6de205f703db624 +#: c6df38aa49414da5a6de205f703db624 +#: c6df38aa49414da5a6de205f703db624 +#: c6df38aa49414da5a6de205f703db624 +#: c6df38aa49414da5a6de205f703db624 msgid "Parameters" msgstr "" @@ -117,8 +118,8 @@ msgstr "" #: 0ac477cf619c420fafdaac5b6a1fbd18 #: cfc9f4305077455fad6922d274bc383d #: 0e2e6db2218f41dc81c2bbdf0354cbe4 -#: b2df49c3af9a4c74bb099b83349ddcfc -#: 5d024d19341544b2a7a40d0969eef03e +#: 0e2e6db2218f41dc81c2bbdf0354cbe4 +#: 0e2e6db2218f41dc81c2bbdf0354cbe4 msgid "|coro|" msgstr "" @@ -152,19 +153,32 @@ msgstr "" #: 2aef4bef743e42c6b10dc7dc409dddee #: 44df48e0960e411391d8959fd9d11450 #: b17d3a717a7c43bfbf6a28db9c9e8847 -#: 371cb60b44484310bd22f6a9197741e9 -#: 0df6b7d0cf984f17843c219c54453fdd -#: 20aa4fd3a1ba4a329e930300f1bfec70 -#: 08830e24540a4075a566ce6b6055bf58 -#: 1f00671156554ebb8b1e8e178a7e76bb -#: 38bb18eb66264addb0e210e066903922 -#: abda4ea8404f4fd1b6ff60b850d9f36b +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 #: a97d7cfc0d8547fba1a07c473d6aa220 -#: 68cd1cac42dd4ab384b9d993fd5b3d3d -#: 8b422ca21de24735a81d7c356e107d08 -#: 4d583655849d4c3eae271f096ea6e32a +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 #: d5396ed79c0a49578511de018e0b2963 -#: 1562ad6d689b4e78a93104700ab3429f +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 +#: b17d3a717a7c43bfbf6a28db9c9e8847 msgid "Return type" msgstr "" @@ -334,7 +348,7 @@ msgstr "" #: 5ab60fb665a04f979c0831942086c3de #: 370e4876a6f44d2fb97522e2d6436744 #: 6463e465ccd0446d997680daed481da6 -#: 25f5deaf82234969896d2ff9af594576 +#: 6463e465ccd0446d997680daed481da6 msgid "type" msgstr "" @@ -358,8 +372,16 @@ msgstr "" 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.PaginatorButton.id:6 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.row:8 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.id:6 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.row:8 #: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.pagination.Paginator:70 #: 9427ff2e436a432290830b7a5ed07653 +#: 6a06163b053143819ff1b3f107885c50 +#: 6a06163b053143819ff1b3f107885c50 +#: 6a06163b053143819ff1b3f107885c50 +#: 6a06163b053143819ff1b3f107885c50 msgid "Optional[:class:`int`]" msgstr "" @@ -368,10 +390,14 @@ msgstr "" msgid "A zero-indexed value showing the current page number." msgstr "" +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.width:6 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.width:6 #: ../../../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 +#: f24f43ef85fc4fa49db3873d9f486199 +#: f24f43ef85fc4fa49db3873d9f486199 msgid ":class:`int`" msgstr "" @@ -454,7 +480,7 @@ msgstr "" #: ../../../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.remove_item:8 #: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.stop:6 #: 68e2cc93f0e6490b8f2f6cee4790cba9 #: 718868e38cac43a586cfbd4a6305d236 @@ -463,11 +489,11 @@ msgstr "" #: 3c63f3adb2364adead3012e035129ebc #: a7be2bff8d9e4794b701800978b38389 #: 128c5298c9494f91a4b3f649fa6df996 -#: 948ff3860b7449e189966372f0999657 -#: 1b99936247fa444d8f760ffecb3bfbeb -#: 73506917c2ae4d10839ac863f15c0649 -#: b6e8b71f2e914b7aa52f4bf5895f9498 -#: e7e7b98e6e7b4408b492675432ece6e4 +#: 128c5298c9494f91a4b3f649fa6df996 +#: 128c5298c9494f91a4b3f649fa6df996 +#: 128c5298c9494f91a4b3f649fa6df996 +#: 128c5298c9494f91a4b3f649fa6df996 +#: 128c5298c9494f91a4b3f649fa6df996 msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" msgstr "" @@ -532,10 +558,19 @@ msgstr "" #: 60cad8cd26d448e497604cad7a23855a #: 9d3a83013ff043eda39a19a8533e2db2 #: 071b3f2f83194ecb863f34a81f2b7318 -#: 5b58697a956a4cf4a58ce5a800e4deb1 -#: afe45ade9581404fbe8fb11422546746 -#: 7194b0de3a6c48f09395740786c65dfe -#: b76f2a1bbef34d9e922ff8ccd944e554 +#: 071b3f2f83194ecb863f34a81f2b7318 +#: 071b3f2f83194ecb863f34a81f2b7318 +#: 071b3f2f83194ecb863f34a81f2b7318 +#: 071b3f2f83194ecb863f34a81f2b7318 +#: 071b3f2f83194ecb863f34a81f2b7318 +#: 071b3f2f83194ecb863f34a81f2b7318 +#: 071b3f2f83194ecb863f34a81f2b7318 +#: 071b3f2f83194ecb863f34a81f2b7318 +#: 071b3f2f83194ecb863f34a81f2b7318 +#: 071b3f2f83194ecb863f34a81f2b7318 +#: 071b3f2f83194ecb863f34a81f2b7318 +#: 071b3f2f83194ecb863f34a81f2b7318 +#: 071b3f2f83194ecb863f34a81f2b7318 msgid "Returns" msgstr "" @@ -722,7 +757,9 @@ msgstr "" #: ../../ext/pages/index.rst:0 #: db25be38ef7749eab275cfcf7ce4fb30 #: b67cd9be980a4fdf8e179a3825ce7070 -#: 9f2e580e981742ac800ab0c0ffa636e3 +#: b67cd9be980a4fdf8e179a3825ce7070 +#: b67cd9be980a4fdf8e179a3825ce7070 +#: b67cd9be980a4fdf8e179a3825ce7070 msgid "Raises" msgstr "" @@ -733,7 +770,7 @@ 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." +msgid "Maximum number of children has been exceeded (40) 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 @@ -741,9 +778,19 @@ msgstr "" msgid "Removes all items from the view." msgstr "" +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.copy_text:1 +#: 4ea1206a52154d8a98623bbc44bf5b10 +msgid "Returns the text of all :class:`~discord.ui.TextDisplay` items in this View. Equivalent to the `Copy Text` option on Discord clients." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.copy_text:5 +#: 47016b19dd1741b1a063b2f5068dd3ec +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" +msgstr "" + #: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.disable_all_items:1 -#: 1a4ac6f032f5427aab3f14952bb0a9ae -msgid "Disables all items in the view." +#: f55070f9c63b4f438d22e271d923e292 +msgid "Disables all buttons and select menus in the view." msgstr "" #: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.disable_all_items:4 @@ -787,8 +834,8 @@ 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." +#: f55070f9c63b4f438d22e271d923e292 +msgid "Enables all buttons and select menus in the view." msgstr "" #: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.enable_all_items:4 @@ -796,70 +843,98 @@ msgstr "" 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 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.from_dict: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." +msgid "Converts a list of component dicts into a :class:`View`." msgstr "" -#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.from_message:9 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.from_dict:4 #: 5e13e4d3661642fd8e02726cc001660a -msgid "The message with components to convert into a view." +msgid "The list of components to convert into a view." msgstr "" +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.from_dict:7 #: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.from_message:12 #: 1830d4b99a8e451d8fc931733f8bfd68 +#: 1830d4b99a8e451d8fc931733f8bfd68 msgid "The timeout of the converted view." msgstr "" +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.from_dict:10 #: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.from_message:15 #: 9bc9774d4bd74c418de1d9b36c3c5c8a +#: 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_dict:12 #: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.from_message:17 #: 086f552dd0d342c290385bf3bdf985ab +#: 086f552dd0d342c290385bf3bdf985ab msgid ":class:`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.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)`." +#: 0edf0b73952c4797b9000ba28a6a0d73 +msgid "Gets an item from the view. Roughly equal to `utils.get(view.children, ...)`. If an :class:`int` is provided, the item will be retrieved by ``id``, otherwise by ``custom_id``. This method will also search nested items." msgstr "" -#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.get_item:4 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.get_item:6 #: 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 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.get_item:9 #: d3278dd56b5e4104b98070ea85764693 -msgid "The item with the matching ``custom_id`` if it exists." +msgid "The item with the matching ``custom_id`` or ``id`` if it exists." msgstr "" -#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.get_item:8 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.get_item:10 #: 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." +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.is_components_v2:1 +#: 8fcb089aef584d57b8d0165e8a22048e +msgid "Whether the view contains V2 components." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.is_components_v2:3 +#: 7f50de30b8c64c9fa3ff21e4563bd2d9 +msgid "A view containing V2 components cannot be sent alongside message content or embeds." msgstr "" +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.is_components_v2:6 #: ../../../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 +#: 47016b19dd1741b1a063b2f5068dd3ec +#: 47016b19dd1741b1a063b2f5068dd3ec +#: 47016b19dd1741b1a063b2f5068dd3ec msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" 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_finished:1 #: 37860b521c8143f3833fb4beb0a1a2ea msgid "Whether the view has finished interacting." @@ -906,13 +981,13 @@ 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." +#: 9a689abf00984f59a28e68742549c79f +msgid "Removes an item from the view. If an :class:`int` or :class:`str` is passed, the item will be removed by Item ``id`` or ``custom_id`` respectively." msgstr "" -#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.remove_item:4 -#: 13af2b65c7a6448b89c506d4b733b44a -msgid "The item to remove from the view." +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.remove_item:5 +#: 7a8937a2dbb54965a590f68e98627806 +msgid "The item, item ``id``, or item ``custom_id`` to remove from the view." msgstr "" #: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.view.View.stop:1 @@ -1023,7 +1098,7 @@ 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 +#: 65b16c206cc54c01a115ae6dd829d2c1 msgid ":class:`Paginator`" msgstr "" @@ -1067,6 +1142,55 @@ msgstr "" 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.id:1 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.id:1 +#: dda9b3885e0a4250979ffbca77e592f9 +#: dda9b3885e0a4250979ffbca77e592f9 +msgid "Gets this item's ID." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.id:3 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.id:3 +#: 3a44bc197ba140eab665419a5cc8a9bf +#: 3f5e6fc33b7146e7a1fbb8721fec1f32 +msgid "This can be set by the user when constructing an Item. If not, Discord will automatically provide one when the View is sent." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.id:5 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.id:5 +#: 7a8937a2dbb54965a590f68e98627806 +#: 7a8937a2dbb54965a590f68e98627806 +msgid "The ID of this item, or ``None`` if the user didn't set one." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.row:1 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.row:1 +#: dd9f54893efb4676bdf90fd27986561d +#: dd9f54893efb4676bdf90fd27986561d +msgid "Gets or sets the row position of this item within its parent view." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.row:3 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.row:3 +#: ddd63fd900d9470383dfa2a87694928d +#: ddd63fd900d9470383dfa2a87694928d +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 39 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.row:7 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.row:7 +#: 23221f1b8cac42baa39792993a1eb4f3 +#: 23221f1b8cac42baa39792993a1eb4f3 +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.row:10 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.row:10 +#: ddbceb2510a84338bc7582315e3cd972 +#: ddbceb2510a84338bc7582315e3cd972 +msgid "If the row value is not ``None`` and is outside the range [0, 39]." +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." @@ -1079,9 +1203,51 @@ 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." +#: 624fd0e7e2b94fa4afe0a2a37d896c6c +#: 624fd0e7e2b94fa4afe0a2a37d896c6c +msgid "Gets the parent view associated with this item." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.view:3 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.view:3 +#: de1896f184794a4aad8b50b0a376c468 +#: de1896f184794a4aad8b50b0a376c468 +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.view:6 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.view:6 +#: 7a8937a2dbb54965a590f68e98627806 +#: 7a8937a2dbb54965a590f68e98627806 +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.view:7 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.view:7 +#: ec07a9dea875411c92d7312aeba8aec1 +#: ec07a9dea875411c92d7312aeba8aec1 +msgid "Optional[:class:`View`]" +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.width:1 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.width:1 +#: dea0f3e5ef3c4c6ea0067ef707954f13 +#: dea0f3e5ef3c4c6ea0067ef707954f13 +msgid "Gets the width of the item in the UI layout." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.width:3 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.width:3 +#: f37e3f782a9d4a16bb3e8d35ea49d26d +#: f37e3f782a9d4a16bb3e8d35ea49d26d +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "" + +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorButton.width:5 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ext.pages.PaginatorMenu.width:5 +#: c87c8240e5dd4ff69d19866fc6522c5f +#: c87c8240e5dd4ff69d19866fc6522c5f +msgid "The width of the item. Defaults to 1." msgstr "" #: ../../ext/pages/index.rst:321 @@ -1131,7 +1297,7 @@ 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`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgstr "" #: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.select.Select.add_option:23 @@ -1142,10 +1308,17 @@ 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 +#: 8aa241191edb441496f0c1bd02fe0da0 msgid "The number of options exceeds 25." msgstr "" +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.select.Select.add_option:28 +#: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.select.Select.append_option:9 +#: 47016b19dd1741b1a063b2f5068dd3ec +#: 47016b19dd1741b1a063b2f5068dd3ec +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Self\\``" +msgstr "" + #: ../../../discord/ext/pages/pagination.py:docstring of discord.ui.select.Select.append_option:1 #: bafa80d0afd248d4b54b80365d46b82a msgid "Appends an option to the select menu." diff --git a/docs/build/locales/faq.pot b/docs/build/locales/faq.pot index ea6ef50322..7f2302bc18 100644 --- a/docs/build/locales/faq.pot +++ b/docs/build/locales/faq.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"POT-Creation-Date: 2025-02-24 14:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -276,7 +276,7 @@ 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." +msgid "For custom emoji, you should pass an instance of :class:`GuildEmoji` or :class:`AppEmoji`. 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 diff --git a/docs/build/locales/installing.pot b/docs/build/locales/installing.pot index 82075ae96a..0b2fc94b26 100644 --- a/docs/build/locales/installing.pot +++ b/docs/build/locales/installing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"POT-Creation-Date: 2025-02-24 14:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,7 +33,7 @@ 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." +msgid "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." msgstr "" #: ../../installing.rst:23 diff --git a/docs/conf.py b/docs/conf.py index e0bdfa834a..7cd2e28dfd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -487,10 +487,19 @@ def write_new(): r"https://packages.debian.org/.*", ] +linkcheck_exclude_documents = [ + r".*/migrating_to_v1.*", + r".*/migrating_to_v2.*", + r".*/old_changelog.*", + r"migrating_to_v1.*", + r"migrating_to_v2.*", + r"old_changelog.*", +] + linkcheck_anchors_ignore_for_url = [r"https://github.com/Delitefully/DiscordLists"] modindex_common_prefix = ["discord."] -# suppress_warnings = ['autosectionlabel.*'] +suppress_warnings = ["autosectionlabel.*"] myst_enable_extensions = [ "amsmath", "attrs_inline", diff --git a/docs/ext/bridge/api.rst b/docs/ext/bridge/api.rst index 370b2f3c5d..63fe6d18c0 100644 --- a/docs/ext/bridge/api.rst +++ b/docs/ext/bridge/api.rst @@ -159,7 +159,7 @@ BridgeContext Subclasses Alias of :data:`typing.Union` [ :class:`.BridgeExtContext`, :class:`.BridgeApplicationContext` ] for typing convenience. Options ------- +------- Shortcut Decorators ~~~~~~~~~~~~~~~~~~~ diff --git a/docs/installing.rst b/docs/installing.rst index d5a0fda813..430a7478c8 100644 --- a/docs/installing.rst +++ b/docs/installing.rst @@ -13,8 +13,8 @@ in creating applications that utilise the Discord API. Prerequisites ------------- -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. +Pycord works with Python 3.9 or higher. Support for earlier versions of Python +is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported. .. _installing: diff --git a/docs/locales/de/LC_MESSAGES/api/abcs.po b/docs/locales/de/LC_MESSAGES/api/abcs.po index d1eed931c1..8992f3bf0b 100644 --- a/docs/locales/de/LC_MESSAGES/api/abcs.po +++ b/docs/locales/de/LC_MESSAGES/api/abcs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/api/application_commands.po b/docs/locales/de/LC_MESSAGES/api/application_commands.po index ee950c0b7a..f1e2c1e350 100644 --- a/docs/locales/de/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/de/LC_MESSAGES/api/application_commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -311,6 +311,9 @@ msgstr "The location where this command can be used. Cannot be set if this is a msgid "Set[:class:`InteractionContextType`]" msgstr "Set[:class:`InteractionContextType`]" +msgid "The type of the None singleton." +msgstr "The type of the None singleton." + msgid "Creates a copy of this command." msgstr "Creates a copy of this command." @@ -362,6 +365,9 @@ msgstr "Yields" msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Creates a copy of this command group." msgstr "Creates a copy of this command group." @@ -848,6 +854,24 @@ 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 ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Represents context for a slash command's option autocomplete." msgstr "Represents context for a slash command's option autocomplete." diff --git a/docs/locales/de/LC_MESSAGES/api/application_info.po b/docs/locales/de/LC_MESSAGES/api/application_info.po index 31922fca86..aa54ca1f2a 100644 --- a/docs/locales/de/LC_MESSAGES/api/application_info.po +++ b/docs/locales/de/LC_MESSAGES/api/application_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -62,9 +62,6 @@ 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 `_." @@ -89,6 +86,36 @@ 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 "The approximate count of guilds to which the app has been added, if any." +msgstr "The approximate count of guilds to which the app has been added, if any." + +msgid "The approximate count of users who have installed the application, if any." +msgstr "The approximate count of users who have installed the application, if any." + +msgid "The list of redirect URIs for the application, if set." +msgstr "The list of redirect URIs for the application, if set." + +msgid "The interactions endpoint URL for the application, if set." +msgstr "The interactions endpoint URL for the application, if set." + +msgid "The role connection verification URL for the application, if set." +msgstr "The role connection verification URL for the application, if set." + +msgid "The settings for the application's default in-app authorization link, if set." +msgstr "The settings for the application's default in-app authorization link, if set." + +msgid "Optional[List[:class:`AppInstallParams`]]" +msgstr "Optional[List[:class:`AppInstallParams`]]" + +msgid "The list of tags describing the content and functionality of the app, if set." +msgstr "The list of tags describing the content and functionality of the app, if set." + +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." + +msgid "The default custom authorization URL for the application, if set." +msgstr "The default custom authorization URL for the application, if set." + msgid "Parameters" msgstr "Parameters" @@ -104,9 +131,30 @@ 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 "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 "It currently returns an empty string." +msgstr "It currently returns an empty string." + 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 the settings for the custom authorization URL of an application." +msgstr "Represents the settings for the custom authorization URL of an application." + +msgid "The list of OAuth2 scopes for adding the application to a guild." +msgstr "The list of OAuth2 scopes for adding the application to a guild." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The permissions to request for the bot role in the guild." +msgstr "The permissions to request for the bot role in the guild." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + msgid "Represents an application team for a bot provided by Discord." msgstr "Represents an application team for a bot provided by Discord." diff --git a/docs/locales/de/LC_MESSAGES/api/async_iter.po b/docs/locales/de/LC_MESSAGES/api/async_iter.po index b322381f39..17ca22b162 100644 --- a/docs/locales/de/LC_MESSAGES/api/async_iter.po +++ b/docs/locales/de/LC_MESSAGES/api/async_iter.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/api/audit_logs.po b/docs/locales/de/LC_MESSAGES/api/audit_logs.po index 05c56e27c2..da02dbd35f 100644 --- a/docs/locales/de/LC_MESSAGES/api/audit_logs.po +++ b/docs/locales/de/LC_MESSAGES/api/audit_logs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/api/clients.po b/docs/locales/de/LC_MESSAGES/api/clients.po index e4b8f95258..50f8605e7e 100644 --- a/docs/locales/de/LC_MESSAGES/api/clients.po +++ b/docs/locales/de/LC_MESSAGES/api/clients.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -257,6 +257,12 @@ msgstr "The coroutine to register as the post-invoke hook." msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -893,8 +968,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -986,6 +1061,9 @@ msgstr "A shortcut decorator that initializes the provided subclass of :class:`. 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 :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1028,8 +1106,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1406,6 +1484,9 @@ msgstr "An iterator that recursively walks through all application commands and msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." @@ -1499,6 +1580,15 @@ msgstr "Whether to enable events that are useful only for debugging gateway rela 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 "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" + +msgid "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." + +msgid "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." +msgstr "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." + 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``." @@ -1526,6 +1616,9 @@ msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used 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 "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 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." diff --git a/docs/locales/de/LC_MESSAGES/api/cogs.po b/docs/locales/de/LC_MESSAGES/api/cogs.po index 9449613e48..433cfc9750 100644 --- a/docs/locales/de/LC_MESSAGES/api/cogs.po +++ b/docs/locales/de/LC_MESSAGES/api/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -56,6 +56,9 @@ msgstr "Yields" msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." diff --git a/docs/locales/de/LC_MESSAGES/api/data_classes.po b/docs/locales/de/LC_MESSAGES/api/data_classes.po index bc1c9d6327..c5e9f3fb51 100644 --- a/docs/locales/de/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/de/LC_MESSAGES/api/data_classes.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -296,8 +296,8 @@ 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:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`GuildSticker`" msgstr ":class:`GuildSticker`" @@ -803,8 +803,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." msgid "Whether the websocket is currently rate limited." msgstr "Whether the websocket is currently rate limited." @@ -926,6 +926,9 @@ msgstr ":meth:`VoiceChannel.get_partial_message`" msgid ":meth:`StageChannel.get_partial_message`" msgstr ":meth:`StageChannel.get_partial_message`" +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.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." @@ -941,8 +944,8 @@ 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 "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" msgid "The message ID." msgstr "The message ID." @@ -1031,8 +1034,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1682,8 +1685,8 @@ 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 "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" msgid "Represents a poll answer object." msgstr "Represents a poll answer object." @@ -2039,6 +2042,9 @@ msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum 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 "Returns ``True`` if the embedded media download options are hidden for the media channel posts." +msgstr "Returns ``True`` if the embedded media download options are hidden for the media channel posts." + msgid "Wraps up the Discord SKU flags." msgstr "Wraps up the Discord SKU flags." @@ -2594,6 +2600,9 @@ msgstr ":attr:`view_audit_log`" msgid ":attr:`view_guild_insights`" msgstr ":attr:`view_guild_insights`" +msgid ":attr:`view_creator_monetization_analytics`" +msgstr ":attr:`view_creator_monetization_analytics`" + msgid ":attr:`manage_guild`" msgstr ":attr:`manage_guild`" @@ -2624,6 +2633,9 @@ msgstr "A factory method that creates a :class:`Permissions` with all \"General\ 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 "Added :attr:`view_creator_monetization_analytics` permission." +msgstr "Added :attr:`view_creator_monetization_analytics` permission." + 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\\)`" @@ -2810,6 +2822,15 @@ msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in 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 user can view creator monetization (role subscription) analytics." +msgstr "Returns ``True`` if a user can view creator monetization (role subscription) analytics." + +msgid "Returns ``True`` if a user can use the soundboard in a voice channel." +msgstr "Returns ``True`` if a user can use the soundboard in a voice channel." + +msgid "Returns ``True`` if a user can use external soundboard sounds in a voice channel." +msgstr "Returns ``True`` if a user can use external soundboard sounds in a voice channel." + msgid "Returns ``True`` if a member can send voice messages." msgstr "Returns ``True`` if a member can send voice messages." diff --git a/docs/locales/de/LC_MESSAGES/api/enums.po b/docs/locales/de/LC_MESSAGES/api/enums.po index b12fa4f3a2..bc214e5db0 100644 --- a/docs/locales/de/LC_MESSAGES/api/enums.po +++ b/docs/locales/de/LC_MESSAGES/api/enums.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -974,8 +974,8 @@ 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 "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` 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." @@ -1769,3 +1769,15 @@ 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." +msgid "Represents a subscription's status." +msgstr "Represents a subscription's status." + +msgid "The subscription is active and is scheduled to renew." +msgstr "The subscription is active and is scheduled to renew." + +msgid "The subscription is active but will not renew." +msgstr "The subscription is active but will not renew." + +msgid "The subscription is inactive and the subscription owner is not being charged." +msgstr "The subscription is inactive and the subscription owner is not being charged." + diff --git a/docs/locales/de/LC_MESSAGES/api/events.po b/docs/locales/de/LC_MESSAGES/api/events.po index 3de9f161c1..97baa1dd7c 100644 --- a/docs/locales/de/LC_MESSAGES/api/events.po +++ b/docs/locales/de/LC_MESSAGES/api/events.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -293,33 +293,6 @@ msgstr "This is only for the messages sent from the client WebSocket. The voice 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" @@ -392,8 +365,8 @@ 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 "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." @@ -791,6 +764,60 @@ 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 "Monetization" +msgstr "Monetization" + +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 cancelled." +msgstr "Called when a user's subscription to an Entitlement is cancelled." + +msgid "Before October 1, 2024, this event was called when a user's subscription was renewed." +msgstr "Before October 1, 2024, this event was called when a user's subscription was renewed." + +msgid "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." +msgstr "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + +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 "Called when a subscription is created for the application." +msgstr "Called when a subscription is created for the application." + +msgid "The subscription that was created." +msgstr "The subscription that was created." + +msgid "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." +msgstr "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." + +msgid "The subscription that was updated." +msgstr "The subscription that was updated." + +msgid "Called when a subscription has been deleted." +msgstr "Called when a subscription has been deleted." + +msgid "The subscription that was deleted." +msgstr "The subscription that was deleted." + msgid "Scheduled Events" msgstr "Scheduled Events" diff --git a/docs/locales/de/LC_MESSAGES/api/exceptions.po b/docs/locales/de/LC_MESSAGES/api/exceptions.po index 1840bc94e8..9d41e4317b 100644 --- a/docs/locales/de/LC_MESSAGES/api/exceptions.po +++ b/docs/locales/de/LC_MESSAGES/api/exceptions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/api/index.po b/docs/locales/de/LC_MESSAGES/api/index.po index 80efb62166..bca668d351 100644 --- a/docs/locales/de/LC_MESSAGES/api/index.po +++ b/docs/locales/de/LC_MESSAGES/api/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/api/models.po b/docs/locales/de/LC_MESSAGES/api/models.po index 9c71559652..2cb953bd0b 100644 --- a/docs/locales/de/LC_MESSAGES/api/models.po +++ b/docs/locales/de/LC_MESSAGES/api/models.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -1202,6 +1202,9 @@ msgstr "If provided, the number of seconds to wait in the background before dele 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 was not found." +msgstr "The message was not found." + msgid "Editing the message failed." msgstr "Editing the message failed." @@ -1268,8 +1271,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1445,8 +1448,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :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." @@ -1568,9 +1571,45 @@ msgstr ":class:`SKUFlags`" msgid "Returns the URL for the SKU." msgstr "Returns the URL for the SKU." +msgid "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." + +msgid "The user for which to retrieve subscriptions." +msgstr "The user for which to retrieve subscriptions." + +msgid "Retrieves subscriptions before this date or object. If a datetime 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 subscriptions before this date or object. If a datetime 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 subscriptions after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve subscriptions after this date or object. If a datetime 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 subscriptions to retrieve. If ``None``, retrieves all subscriptions." +msgstr "The number of subscriptions to retrieve. If ``None``, retrieves all subscriptions." + +msgid ":class:`Subscription` -- A subscription that the user has for this SKU." +msgstr ":class:`Subscription` -- A subscription that the user has for this SKU." + +msgid "Getting the subscriptions failed." +msgstr "Getting the subscriptions failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters except for ``user`` are optional." +msgstr "All parameters except for ``user`` are optional." + msgid "Represents a Discord entitlement." msgstr "Represents a Discord entitlement." +msgid "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." +msgstr "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + msgid "The entitlement's ID." msgstr "The entitlement's ID." @@ -1607,17 +1646,14 @@ 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 "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.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 "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." +msgstr "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." msgid "Consuming the entitlement failed." msgstr "Consuming the entitlement failed." @@ -1631,6 +1667,57 @@ msgstr "A test entitlement is an entitlement that was created using :meth:`Guild msgid "Deleting the entitlement failed." msgstr "Deleting the entitlement failed." +msgid "Represents a user making recurring payments for one or more SKUs." +msgstr "Represents a user making recurring payments for one or more SKUs." + +msgid "Successful payments grant the user access to entitlements associated with the SKU." +msgstr "Successful payments grant the user access to entitlements associated with the SKU." + +msgid "The subscription's ID." +msgstr "The subscription's ID." + +msgid "The ID of the user that owns this subscription." +msgstr "The ID of the user that owns this subscription." + +msgid "The IDs of the SKUs this subscription is for." +msgstr "The IDs of the SKUs this subscription is for." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the entitlements this subscription is for." +msgstr "The IDs of the entitlements this subscription is for." + +msgid "The IDs of the SKUs that the buyer will be subscribed to at renewal." +msgstr "The IDs of the SKUs that the buyer will be subscribed to at renewal." + +msgid "The start of the current subscription period." +msgstr "The start of the current subscription period." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The end of the current subscription period." +msgstr "The end of the current subscription period." + +msgid "The status of the subscription." +msgstr "The status of the subscription." + +msgid ":class:`SubscriptionStatus`" +msgstr ":class:`SubscriptionStatus`" + +msgid "When the subscription was canceled." +msgstr "When the subscription was canceled." + +msgid ":class:`datetime.datetime` | ``None``" +msgstr ":class:`datetime.datetime` | ``None``" + +msgid "The user that owns this subscription." +msgstr "The user that owns this subscription." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + msgid "Guild" msgstr "Guild" @@ -1658,8 +1745,8 @@ 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 "Tuple[:class:`GuildEmoji`, ...]" +msgstr "Tuple[:class:`GuildEmoji`, ...]" msgid "All stickers that the guild owns." msgstr "All stickers that the guild owns." @@ -1781,9 +1868,6 @@ 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." @@ -2141,11 +2225,11 @@ 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:`GuildEmoji`, 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:`GuildEmoji`, 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 "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." msgid ":class:`ForumChannel`" msgstr ":class:`ForumChannel`" @@ -2657,8 +2741,8 @@ 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 "Retrieves all custom :class:`GuildEmoji`\\s from the guild." +msgstr "Retrieves all custom :class:`GuildEmoji`\\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." @@ -2669,11 +2753,11 @@ msgstr "An error occurred fetching the emojis." msgid "The retrieved emojis." msgstr "The retrieved emojis." -msgid "List[:class:`Emoji`]" -msgstr "List[:class:`Emoji`]" +msgid "List[:class:`GuildEmoji`]" +msgstr "List[:class:`GuildEmoji`]" -msgid "Retrieves a custom :class:`Emoji` from the guild." -msgstr "Retrieves a custom :class:`Emoji` from the guild." +msgid "Retrieves a custom :class:`GuildEmoji` from the guild." +msgstr "Retrieves a custom :class:`GuildEmoji` 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." @@ -2684,8 +2768,8 @@ msgstr "The emoji's ID." msgid "The retrieved emoji." msgstr "The retrieved emoji." -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid "The emoji requested could not be found." msgstr "The emoji requested could not be found." @@ -2693,8 +2777,8 @@ 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 "Creates a custom :class:`GuildEmoji` for the guild." +msgstr "Creates a custom :class:`GuildEmoji` 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." @@ -2723,8 +2807,8 @@ 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 "Deletes the custom :class:`GuildEmoji` from the guild." +msgstr "Deletes the custom :class:`GuildEmoji` 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." @@ -3446,6 +3530,15 @@ msgstr "For regular members this is just their avatar, but if they have a guild 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 member's display banner." +msgstr "Returns the member's display banner." + +msgid "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." +msgstr "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild banner the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild banner 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." @@ -3737,9 +3830,6 @@ 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." @@ -3890,9 +3980,6 @@ 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." @@ -4199,9 +4286,6 @@ msgstr "How many times the invite can be used. A value of ``0`` indicates that i 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." @@ -4316,8 +4400,8 @@ msgstr "The position of the role. This number is usually positive. The bottom ro 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 is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." +msgstr "Indicates if the role is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." msgid "Indicates if the role can be mentioned by users." msgstr "Indicates if the role can be mentioned by users." @@ -4346,12 +4430,21 @@ msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typeh 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 guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :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 "Whether the role is available for purchase." +msgstr "Whether the role is available for purchase." + +msgid "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Returns the role's permissions." msgstr "Returns the role's permissions." @@ -4439,20 +4532,26 @@ msgstr "A role tag is a piece of extra information attached to a managed role th 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 "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." +msgstr "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." + 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 "The subscription SKU and listing ID of the role." +msgstr "The subscription SKU and listing ID of 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 "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." msgid "Scheduled Event" msgstr "Scheduled Event" @@ -4694,6 +4793,9 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" + msgid "Onboarding" msgstr "Onboarding" @@ -4811,8 +4913,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" msgid "The option's title." msgstr "The option's title." @@ -5189,8 +5291,8 @@ msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the 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 "This is only available for threads in forum or media channels." +msgstr "This is only available for threads in forum or media channels." msgid "List[:class:`ForumTag`]" msgstr "List[:class:`ForumTag`]" @@ -5240,8 +5342,8 @@ 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 pinned to the top of its parent forum or media channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum or media 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." @@ -5381,8 +5483,8 @@ msgstr "The new duration in minutes before a thread is automatically archived fo 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 "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." 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" @@ -6131,8 +6233,8 @@ 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 "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" msgid "The ID of the channel the interaction was sent from." msgstr "The ID of the channel the interaction was sent from." @@ -6197,8 +6299,8 @@ 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 cached channel from which the interaction was sent. DM channels are not resolved. These are :class:`PartialMessageable` instead." +msgstr "The cached channel from which the interaction was sent. DM channels are not resolved. 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." @@ -6218,6 +6320,30 @@ msgstr "A response can only be done once. If secondary messages need to be sent, msgid "Returns the followup webhook for followup interactions." msgstr "Returns the followup webhook for followup interactions." +msgid ":class:`bool`: Checks if the interaction is guild authorised." +msgstr ":class:`bool`: Checks if the interaction is guild authorised." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorised." +msgstr ":class:`bool`: Checks if the interaction is user authorised." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is guild authorized." +msgstr ":class:`bool`: Checks if the interaction is guild authorized." + +msgid "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorized." +msgstr ":class:`bool`: Checks if the interaction is user authorized." + +msgid "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Fetches the original interaction response message associated with the interaction." msgstr "Fetches the original interaction response message associated with the interaction." @@ -6629,8 +6755,8 @@ msgstr "Whether the select is disabled or not." msgid "Emoji" msgstr "Emoji" -msgid "Represents a custom emoji." -msgstr "Represents a custom emoji." +msgid "Represents a custom emoji in a guild." +msgstr "Represents a custom emoji in a guild." 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``." @@ -6671,12 +6797,6 @@ 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." @@ -6716,6 +6836,48 @@ msgstr "An error occurred editing the emoji." msgid "The newly updated emoji." msgstr "The newly updated emoji." +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 "Represents a custom emoji from an application." +msgstr "Represents a custom emoji from an application." + +msgid "The application ID the emoji belongs to, if available." +msgstr "The application ID the emoji belongs to, if available." + +msgid "The user that created the emoji." +msgstr "The user that created the emoji." + +msgid "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." +msgstr "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." + +msgid "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." +msgstr "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." + +msgid "Whether the bot can use this emoji." +msgstr "Whether the bot can use this emoji." + +msgid "Deletes the application emoji." +msgstr "Deletes the application emoji." + +msgid "You must own the emoji to do this." +msgstr "You must own the emoji to do this." + +msgid "You are not allowed to delete the emoji." +msgstr "You are not allowed to delete the emoji." + +msgid "Edits the application emoji." +msgstr "Edits the application emoji." + +msgid "You are not allowed to edit the emoji." +msgstr "You are not allowed to edit the emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + msgid "Represents a \"partial\" emoji." msgstr "Represents a \"partial\" emoji." @@ -6953,14 +7115,14 @@ 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 "Optional[:class:`str` | :class:`discord.GuildEmoji`]" +msgstr "Optional[:class:`str` | :class:`discord.GuildEmoji`]" 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 "Whether a tag is required to be specified when creating a thread in this forum or media channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum or media channel." msgid "Tags are specified in :attr:`applied_tags`." msgstr "Tags are specified in :attr:`applied_tags`." @@ -6977,8 +7139,8 @@ msgstr "The default sort order type to use to order posts in this channel. .. v 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 default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, 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:`GuildEmoji`, 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" @@ -7010,6 +7172,24 @@ 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 media channel. Subclass of :class:`ForumChannel`." +msgstr "Represents a Discord media channel. Subclass of :class:`ForumChannel`." + +msgid "Whether media download options are hidden in this media channel." +msgstr "Whether media download options are hidden in this media channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." + +msgid "Whether media download options should be hidden in this media channel." +msgstr "Whether media download options should be hidden in this media channel." + +msgid "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.MediaChannel`]" +msgstr "Optional[:class:`.MediaChannel`]" + msgid "Represents a Discord guild voice channel." msgstr "Represents a Discord guild voice channel." diff --git a/docs/locales/de/LC_MESSAGES/api/sinks.po b/docs/locales/de/LC_MESSAGES/api/sinks.po index c041d54623..fe7d7f63fa 100644 --- a/docs/locales/de/LC_MESSAGES/api/sinks.po +++ b/docs/locales/de/LC_MESSAGES/api/sinks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/api/ui_kit.po b/docs/locales/de/LC_MESSAGES/api/ui_kit.po index 0e374cd9d7..ed8d39153f 100644 --- a/docs/locales/de/LC_MESSAGES/api/ui_kit.po +++ b/docs/locales/de/LC_MESSAGES/api/ui_kit.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -44,8 +44,8 @@ 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 emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." 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)." @@ -122,8 +122,8 @@ 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 in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. 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." @@ -317,8 +317,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" msgid "The callback associated with this UI item." msgstr "The callback associated with this UI item." @@ -419,8 +455,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." @@ -449,6 +485,9 @@ 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 "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 "The title of the modal dialog." msgstr "The title of the modal dialog." diff --git a/docs/locales/de/LC_MESSAGES/api/utils.po b/docs/locales/de/LC_MESSAGES/api/utils.po index c59ea4f08e..b93009f4b4 100644 --- a/docs/locales/de/LC_MESSAGES/api/utils.po +++ b/docs/locales/de/LC_MESSAGES/api/utils.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -407,18 +407,24 @@ msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` 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 "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" + +msgid "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." + 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 "With filter parameter:" +msgstr "With filter parameter:" + 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." @@ -446,6 +452,9 @@ 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 "Example" +msgstr "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." diff --git a/docs/locales/de/LC_MESSAGES/api/version_info.po b/docs/locales/de/LC_MESSAGES/api/version_info.po index a57036beac..e0f9d9bc6d 100644 --- a/docs/locales/de/LC_MESSAGES/api/version_info.po +++ b/docs/locales/de/LC_MESSAGES/api/version_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/api/voice.po b/docs/locales/de/LC_MESSAGES/api/voice.po index ce04e5fda5..8441b7e5e9 100644 --- a/docs/locales/de/LC_MESSAGES/api/voice.po +++ b/docs/locales/de/LC_MESSAGES/api/voice.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -215,6 +215,12 @@ msgstr "You are not connected." msgid "Encoding the data failed." msgstr "Encoding the data failed." +msgid "Returns the elapsed time of the playing audio." +msgstr "Returns the elapsed time of the playing audio." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" + msgid "A class that represents the Discord voice protocol." msgstr "A class that represents the Discord voice protocol." @@ -380,11 +386,11 @@ msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` i 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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 "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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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." diff --git a/docs/locales/de/LC_MESSAGES/api/webhooks.po b/docs/locales/de/LC_MESSAGES/api/webhooks.po index c6f477ed90..de99e2a6b0 100644 --- a/docs/locales/de/LC_MESSAGES/api/webhooks.po +++ b/docs/locales/de/LC_MESSAGES/api/webhooks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/changelog.po b/docs/locales/de/LC_MESSAGES/changelog.po index 29a1ffefe4..02e1e7e5bc 100644 --- a/docs/locales/de/LC_MESSAGES/changelog.po +++ b/docs/locales/de/LC_MESSAGES/changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -26,8 +26,122 @@ 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 "⚠️ **This version removes support for Python 3.8.** ⚠️" +msgstr "⚠️ **This version removes support for Python 3.8.** ⚠️" + +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 "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" +msgstr "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" + +msgid "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" +msgstr "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" + +msgid "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" +msgstr "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" + +msgid "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" +msgstr "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" + +msgid "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" +msgstr "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" + +msgid "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" +msgstr "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" + +msgid "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" +msgstr "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" + +msgid "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" +msgstr "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" + +msgid "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" +msgstr "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" + +msgid "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" +msgstr "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" +msgstr "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" + +msgid "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" +msgstr "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" + +msgid "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" +msgstr "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" + +msgid "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" +msgstr "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" + +msgid "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" +msgstr "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" + +msgid "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" +msgstr "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" + +msgid "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" +msgstr "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" + +msgid "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" +msgstr "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" + +msgid "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" +msgstr "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" + +msgid "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" +msgstr "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" + +msgid "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" +msgstr "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" + +msgid "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" +msgstr "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" + +msgid "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" +msgstr "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" + +msgid "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" +msgstr "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" + +msgid "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." +msgstr "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." + +msgid "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" +msgstr "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" + +msgid "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" +msgstr "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" msgid "Changed" msgstr "Changed" @@ -35,14 +149,65 @@ 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 "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" -msgid "Added" -msgstr "Added" +msgid "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" -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 "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" +msgstr "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" + +msgid "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" +msgstr "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" + +msgid "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "[2.6.1] - 2024-09-15" +msgstr "[2.6.1] - 2024-09-15" + +msgid "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" +msgstr "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" + +msgid "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" +msgstr "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" + +msgid "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" +msgstr "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" + +msgid "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" +msgstr "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" + +msgid "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" +msgstr "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" msgid "[2.6.0] - 2024-07-09" msgstr "[2.6.0] - 2024-07-09" @@ -92,9 +257,6 @@ msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord 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))" @@ -119,8 +281,8 @@ msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#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 option type hints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option type hints 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))" @@ -152,8 +314,8 @@ msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.co 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 "HTTP requests that fail with a 503 status are now retried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now retried. ([#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))" @@ -401,8 +563,8 @@ msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ( 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 `AttributeError` when accessing a `Select` object's values when it has not been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it has not 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))" @@ -413,8 +575,8 @@ msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://gi 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 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))" @@ -446,8 +608,8 @@ msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. 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 `Option` not working on bridge commands because `ext.commands.Command` does not recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` does not 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))" @@ -554,8 +716,8 @@ msgstr "Advanced version info is now stored as a dict in `version_info.advanced` 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 bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files did not 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 did not 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))" @@ -686,9 +848,6 @@ msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` funct 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))" @@ -959,11 +1118,11 @@ msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://gith 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 the error when Discord does not send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord does not 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 "Fix AttributeError when voice client `play()` function is not completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function is not 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" diff --git a/docs/locales/de/LC_MESSAGES/cogs.po b/docs/locales/de/LC_MESSAGES/cogs.po index d3b99d560a..559c916357 100644 --- a/docs/locales/de/LC_MESSAGES/cogs.po +++ b/docs/locales/de/LC_MESSAGES/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/discord.po b/docs/locales/de/LC_MESSAGES/discord.po index 1d84eae006..6f318a8fd6 100644 --- a/docs/locales/de/LC_MESSAGES/discord.po +++ b/docs/locales/de/LC_MESSAGES/discord.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/ext/bridge/api.po b/docs/locales/de/LC_MESSAGES/ext/bridge/api.po index c8f2bfa309..dde94f73f2 100644 --- a/docs/locales/de/LC_MESSAGES/ext/bridge/api.po +++ b/docs/locales/de/LC_MESSAGES/ext/bridge/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -353,14 +353,23 @@ 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 "Options" +msgstr "Options" -msgid "Option" -msgstr "Option" +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" -msgid "BridgeOption" -msgstr "BridgeOption" +msgid "A decorator that can be used instead of typehinting :class:`.BridgeOption`." +msgstr "A decorator that can be used instead of typehinting :class:`.BridgeOption`." + +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 ":class:`str`" +msgstr ":class:`str`" + +msgid "Objects" +msgstr "Objects" 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." diff --git a/docs/locales/de/LC_MESSAGES/ext/bridge/index.po b/docs/locales/de/LC_MESSAGES/ext/bridge/index.po index e7423367ec..63d25479d5 100644 --- a/docs/locales/de/LC_MESSAGES/ext/bridge/index.po +++ b/docs/locales/de/LC_MESSAGES/ext/bridge/index.po @@ -1,21 +1,21 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 `_." +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 index f94e10656c..14303e4f59 100644 --- a/docs/locales/de/LC_MESSAGES/ext/commands/api.po +++ b/docs/locales/de/LC_MESSAGES/ext/commands/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -269,6 +269,12 @@ msgstr "The view is not persistent. A persistent view has no timeout and all msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -920,8 +995,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -1019,6 +1094,9 @@ msgstr "Optional[:class:`.GuildSticker`]" msgid "Returns a user with the given ID." msgstr "Returns a user with the given ID." +msgid "The :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1064,8 +1142,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1505,8 +1583,11 @@ msgstr "An iterator that recursively walks through all application commands and 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" msgid "Duplicates due to aliases are no longer returned" msgstr "Duplicates due to aliases are no longer returned" @@ -1928,6 +2009,9 @@ msgstr "An iterator that recursively walks through this cog's commands and subco msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." @@ -2108,6 +2192,9 @@ 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 tuple of command types to exclude from the filter." +msgstr "A tuple of command types to exclude from the filter." + msgid "A list of commands that passed the filter." msgstr "A list of commands that passed the filter." @@ -3371,8 +3458,8 @@ 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 "Converts to a :class:`~discord.GuildEmoji`." +msgstr "Converts to a :class:`~discord.GuildEmoji`." 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." @@ -3383,8 +3470,8 @@ 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" msgid "Converts to a :class:`~discord.PartialEmoji`." msgstr "Converts to a :class:`~discord.PartialEmoji`." diff --git a/docs/locales/de/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/de/LC_MESSAGES/ext/commands/cogs.po index b6bdcd19af..3c3bdcf691 100644 --- a/docs/locales/de/LC_MESSAGES/ext/commands/cogs.po +++ b/docs/locales/de/LC_MESSAGES/ext/commands/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/ext/commands/commands.po b/docs/locales/de/LC_MESSAGES/ext/commands/commands.po index 6e0198a0a9..6e243eb982 100644 --- a/docs/locales/de/LC_MESSAGES/ext/commands/commands.po +++ b/docs/locales/de/LC_MESSAGES/ext/commands/commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -266,8 +266,8 @@ msgstr ":class:`Game`" msgid ":class:`Colour`" msgstr ":class:`Colour`" -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`PartialEmoji`" msgstr ":class:`PartialEmoji`" diff --git a/docs/locales/de/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/de/LC_MESSAGES/ext/commands/extensions.po index aefcfd5e04..1d605e8e3f 100644 --- a/docs/locales/de/LC_MESSAGES/ext/commands/extensions.po +++ b/docs/locales/de/LC_MESSAGES/ext/commands/extensions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/ext/commands/index.po b/docs/locales/de/LC_MESSAGES/ext/commands/index.po index 201036b377..57a313ebef 100644 --- a/docs/locales/de/LC_MESSAGES/ext/commands/index.po +++ b/docs/locales/de/LC_MESSAGES/ext/commands/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/ext/pages/index.po b/docs/locales/de/LC_MESSAGES/ext/pages/index.po index 30b0c29ee7..fccb0b2b36 100644 --- a/docs/locales/de/LC_MESSAGES/ext/pages/index.po +++ b/docs/locales/de/LC_MESSAGES/ext/pages/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -536,14 +536,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + 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 "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." msgid "PaginatorMenu" msgstr "PaginatorMenu" @@ -572,8 +602,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." diff --git a/docs/locales/de/LC_MESSAGES/ext/tasks/index.po b/docs/locales/de/LC_MESSAGES/ext/tasks/index.po index beb1ad9f67..5ca39205f0 100644 --- a/docs/locales/de/LC_MESSAGES/ext/tasks/index.po +++ b/docs/locales/de/LC_MESSAGES/ext/tasks/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/faq.po b/docs/locales/de/LC_MESSAGES/faq.po index 5326557f7a..343fdb35fa 100644 --- a/docs/locales/de/LC_MESSAGES/faq.po +++ b/docs/locales/de/LC_MESSAGES/faq.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -161,8 +161,8 @@ 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 "For custom emoji, you should pass an instance of :class:`GuildEmoji` or :class:`AppEmoji`. 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:`GuildEmoji` or :class:`AppEmoji`. 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>``." diff --git a/docs/locales/de/LC_MESSAGES/index.po b/docs/locales/de/LC_MESSAGES/index.po index 5d0647120b..ab8ca4ab4b 100644 --- a/docs/locales/de/LC_MESSAGES/index.po +++ b/docs/locales/de/LC_MESSAGES/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/installing.po b/docs/locales/de/LC_MESSAGES/installing.po index 2f0e4d81c5..4b5225dcdf 100644 --- a/docs/locales/de/LC_MESSAGES/installing.po +++ b/docs/locales/de/LC_MESSAGES/installing.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -20,32 +20,32 @@ msgstr "Dies ist die Dokumentation für Pycord, eine Bibliothek für Python, die 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 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 "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." +msgstr "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." msgid "Installing" -msgstr "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 "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 "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 "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 "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 "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 "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 `_" @@ -57,37 +57,37 @@ 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:" +msgstr "Für ein Debian-basiertes System erhält der folgende Befehl folgende Abhängigkeiten:" msgid "Remember to check your permissions!" -msgstr "Remember to check your permissions!" +msgstr "Denken Sie daran, Ihre Berechtigungen zu überprüfen!" msgid "Virtual Environments" -msgstr "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 "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 "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 "However, for the quick and dirty:" +msgstr "Aber für die Schnellen und Schmutzigen:" msgid "Go to your project's working directory:" -msgstr "Go to your project's working directory:" +msgstr "Gehen Sie zum Arbeitsverzeichnis Ihres Projekts:" msgid "Activate the virtual environment:" -msgstr "Activate the virtual environment:" +msgstr "Aktivieren Sie die virtuelle Umgebung:" msgid "On Windows you activate it with:" -msgstr "On Windows you activate it with:" +msgstr "Auf Windows aktivieren Sie diese mit:" msgid "Use pip like usual:" -msgstr "Use pip like usual:" +msgstr "Pip wie üblich verwenden:" msgid "Congratulations. You now have a virtual environment all set up." -msgstr "Congratulations. You now have a virtual environment all set up." +msgstr "Glückwunsch. Sie haben nun eine virtuelle Umgebung eingerichtet." msgid "Basic Concepts" msgstr "Basic Concepts" diff --git a/docs/locales/de/LC_MESSAGES/intents.po b/docs/locales/de/LC_MESSAGES/intents.po index 036ca6dbac..5b8548adc9 100644 --- a/docs/locales/de/LC_MESSAGES/intents.po +++ b/docs/locales/de/LC_MESSAGES/intents.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/logging.po b/docs/locales/de/LC_MESSAGES/logging.po index e9058e99e9..6fa60f29cb 100644 --- a/docs/locales/de/LC_MESSAGES/logging.po +++ b/docs/locales/de/LC_MESSAGES/logging.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/migrating_to_v1.po b/docs/locales/de/LC_MESSAGES/migrating_to_v1.po index ba2c21442b..fef2da452e 100644 --- a/docs/locales/de/LC_MESSAGES/migrating_to_v1.po +++ b/docs/locales/de/LC_MESSAGES/migrating_to_v1.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/migrating_to_v2.po b/docs/locales/de/LC_MESSAGES/migrating_to_v2.po index 41ef72997c..227dc45b7e 100644 --- a/docs/locales/de/LC_MESSAGES/migrating_to_v2.po +++ b/docs/locales/de/LC_MESSAGES/migrating_to_v2.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/old_changelog.po b/docs/locales/de/LC_MESSAGES/old_changelog.po index 21e169d5d4..b790838a9d 100644 --- a/docs/locales/de/LC_MESSAGES/old_changelog.po +++ b/docs/locales/de/LC_MESSAGES/old_changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -1208,8 +1208,8 @@ msgstr "|commands| Extensions that fail internally due to ImportError will no lo 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| Allow converters from custom extension packages. (:dpy-issue:`2369`, 2374)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, 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`)" diff --git a/docs/locales/de/LC_MESSAGES/quickstart.po b/docs/locales/de/LC_MESSAGES/quickstart.po index 21a2adf607..ef90f16283 100644 --- a/docs/locales/de/LC_MESSAGES/quickstart.po +++ b/docs/locales/de/LC_MESSAGES/quickstart.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/de/LC_MESSAGES/version_guarantees.po b/docs/locales/de/LC_MESSAGES/version_guarantees.po index 1258e1e7e9..c58d9c6297 100644 --- a/docs/locales/de/LC_MESSAGES/version_guarantees.po +++ b/docs/locales/de/LC_MESSAGES/version_guarantees.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/en/LC_MESSAGES/api/abcs.po b/docs/locales/en/LC_MESSAGES/api/abcs.po index bf133d6e16..1c1358b207 100644 --- a/docs/locales/en/LC_MESSAGES/api/abcs.po +++ b/docs/locales/en/LC_MESSAGES/api/abcs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../api/abcs.rst:4 eba096c79e094bb18465d6e9ff3678cf msgid "Abstract Base Classes" @@ -1057,10 +1057,10 @@ 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 " +"A reference to the :class:`~discord.Message` being replied to or " +"forwarded. This can be created using " +":meth:`~discord.Message.to_reference`. When replying, you can control " +"whether 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" @@ -1068,10 +1068,10 @@ 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 " +"A reference to the :class:`~discord.Message` being replied to or " +"forwarded. This can be created using " +":meth:`~discord.Message.to_reference`. When replying, you can control " +"whether 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 "" @@ -1243,3 +1243,30 @@ msgid "" "fail :func:`isinstance`/:func:`issubclass` checks." msgstr "" +#~ 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 "" + +#~ 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 "" + diff --git a/docs/locales/en/LC_MESSAGES/api/application_commands.po b/docs/locales/en/LC_MESSAGES/api/application_commands.po index 0d7f65abfe..76d7cb1b71 100644 --- a/docs/locales/en/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/en/LC_MESSAGES/api/application_commands.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-12 14:51+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../api/application_commands.rst:4 b5bef56dc22e4024907f0ad2189496f0 msgid "Application Commands" @@ -52,11 +52,9 @@ msgid "" msgstr "" #: ../../api/application_commands.rst 0b368aa254aa4b86a89105ba0e327415 -#: 235625d33ce645a7b043c3677e586ff9 2f82411ffec84c53bcd002c61cacf0de -#: 36bdb8c4ce3245f58c14273b19fd5d62 52bf2928121f4472b33d87c293c520da -#: 54d966885d634d83990edfce5e98bd30 62e059169acd42789ad242cd2083fa36 -#: 64675ca2cf37474fb4db23c7d15af9ab 7226b11745ba4ebd82c9da2a758ffeb5 -#: 9dfd81ba143848a1a20bebc948d1df16 a0e267ca8cbb4cdc92ee405b3a8b5906 +#: 2f82411ffec84c53bcd002c61cacf0de 54d966885d634d83990edfce5e98bd30 +#: 62e059169acd42789ad242cd2083fa36 64675ca2cf37474fb4db23c7d15af9ab +#: 7226b11745ba4ebd82c9da2a758ffeb5 9dfd81ba143848a1a20bebc948d1df16 #: aea96c3c11354ac09ca840e760f27c54 c14ee1b991e847c999bf9442dbe40e1d #: cad84173c056435d98f90e7005c27b55 eb72f0aca1244dea81410658346315d8 msgid "Parameters" @@ -69,13 +67,11 @@ msgstr "" #: ../../api/application_commands.rst 10183c9a2d6e45fc9ffd212a67c67ee5 #: 254924570d314fcfad7eec28414aa754 34f6fc248eea4c0486bab68b1ebdd1c5 -#: 466e0a2592dd47b6a53225e7c79ec12b 53ceb21104a641c484d4b8e7645d7b6d -#: 661e5de699854673aba3514ac463b12e 7bfccaa86ce54a64bf7d92ec6a576066 +#: 53ceb21104a641c484d4b8e7645d7b6d 7bfccaa86ce54a64bf7d92ec6a576066 #: 8b31e5c89bc94600b0402b4043851360 8f97231c3b074c83a4e0b711360aa13a -#: 9381c2802da0445eb460cb72496ecd58 96f7f9fedd3e4084838b9340c26d3781 -#: a2184453371145008ab8edb2bebc1828 b0facd7208864b9190e27e037ea8aa7b -#: c55cfd8217574ea6877c770ca4d590e1 c8daf70be35f4fcfaafc3aca82447190 -#: c99f60322d564ed586c09436e487f125 +#: 9381c2802da0445eb460cb72496ecd58 a2184453371145008ab8edb2bebc1828 +#: b0facd7208864b9190e27e037ea8aa7b c55cfd8217574ea6877c770ca4d590e1 +#: c8daf70be35f4fcfaafc3aca82447190 c99f60322d564ed586c09436e487f125 msgid "Return type" msgstr "" @@ -156,10 +152,9 @@ msgstr "" #: ../../api/application_commands.rst 1cb924fd415e4ddc9496206f971ced35 #: 1f9a0fed83444d2d8cc1cb8f25d4f832 35882ccb7511412fa8a02fe91cb6a83c -#: 3de69d0bb23d41e1bdf1fc7ec71268b0 48a171e781d247f4be4cd083cd7b649a -#: 51571b876dcd4446b30ec38ef632db2c af727a1e0df74d818b684591442a53cb -#: be9cd2081e584a819bf1549f7325376d d2b91ddf551d443299606af43f270971 -#: dacfb5c6315c4fd8abe70b44fde4055d e860e3aa9c454db6bed32e3b32b70bf2 +#: 48a171e781d247f4be4cd083cd7b649a af727a1e0df74d818b684591442a53cb +#: be9cd2081e584a819bf1549f7325376d dacfb5c6315c4fd8abe70b44fde4055d +#: e860e3aa9c454db6bed32e3b32b70bf2 msgid "Returns" msgstr "" @@ -269,9 +264,8 @@ msgstr "" msgid "A boolean indicating if the command is on cooldown." msgstr "" -#: 1cd0f7372eb94a76a4c4eb766a807d99 1d938773f96a4ec29acb39fe95a085e1 -#: 469210f5cf914546997454d384d9029d 5f86ec376bce414983af08e853bde10c -#: 6c64647e98224b3580a97a6971e0460f +#: 1cd0f7372eb94a76a4c4eb766a807d99 469210f5cf914546997454d384d9029d +#: 5f86ec376bce414983af08e853bde10c 6c64647e98224b3580a97a6971e0460f #: discord.commands.core.ApplicationCommand.is_on_cooldown:12 #: discord.commands.core.MessageCommand:31 #: discord.commands.core.MessageCommand:38 @@ -450,23 +444,18 @@ msgid "" "decorator or functional interface." msgstr "" -#: 3d0e2ed16525455d96c8cb1edadb5bc9 67aaf53865d34b4eab081611d1af6dda -#: discord.commands.core.MessageCommand:8 discord.commands.core.SlashCommand:10 +#: 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 +#: 105bde31bfd1417f987e4b7508657466 1d48447ce4dd4b40b0a9168a6c0a741d #: 65589f4eefce486783298b62563c29e6 69ca3d2c2367457d80020171f7956f20 -#: 78fbd9eecfff4a74921c5676a3badb3f 7e705d84c94d4d27988a51bd99c66d40 -#: 82d9281a794342ca80ecedb36ce845e8 8d8e59d3422e4073b73af34dec59df56 -#: 90b11fa54ccf460eb6ef527c265a5be3 94eb1b4764b941a09dbf0a90e5abab6d -#: a1abbc14d2b2467da83e741de3dfdf76 a2e513d5b07b4dfaaa4d578776fe3d5b -#: b033a7a3b7224e2ca5d25b6b39f19909 b458a250a6b34994b97107d1e2913f34 +#: 7e705d84c94d4d27988a51bd99c66d40 82d9281a794342ca80ecedb36ce845e8 +#: 8d8e59d3422e4073b73af34dec59df56 a1abbc14d2b2467da83e741de3dfdf76 +#: a2e513d5b07b4dfaaa4d578776fe3d5b b458a250a6b34994b97107d1e2913f34 #: b880b344500049db96d5e21f275c6531 cc22d99cfe4343559ceb67784268ad07 #: cfb0e3fdd30c4752aa18bb3bb3051aa8 d346586079e040aeaa3ce95efc7de925 #: da86647139e241c9b5091ecda8d8a7a3 discord.commands.context.ApplicationContext @@ -476,12 +465,11 @@ msgstr "" #: discord.commands.options.Option discord.commands.options.OptionChoice #: discord.commands.options.option f2e9e70af4b14850a489ad1bc26923a7 #: f422915c4028467f9272f041e90ac356 f4d4ca31df8b4d2196f56fbf4bb71e61 -#: fa5207c6c9a346c4a604a81b19fa4efc fe884d1963e24986a26db506c9fe20dd of +#: fe884d1963e24986a26db506c9fe20dd of msgid "type" msgstr "" -#: 49221d04f03b4b12a9d0c0a9c637ef9a b2ced8f32ef84169b7d0feed3cfdffb8 -#: discord.commands.core.MessageCommand:10 +#: 49221d04f03b4b12a9d0c0a9c637ef9a 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 @@ -509,23 +497,23 @@ msgstr "" msgid "The description for the command." msgstr "" -#: 219ed0b9b95f4158a6f0a49a5ce2decb 457e3625a42542f28892b83df6b3d440 -#: 4c502354c8d74bf7b7c8f98c11b6a5bd discord.commands.core.SlashCommand:24 +#: 219ed0b9b95f4158a6f0a49a5ce2decb 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 +#: 64a250a8f0ac40d4aecc323b2ac9a050 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 +#: a8524dff9e6d4ac8a3a4b6229ad12e63 c586c88145e24838a7a0f08feae5b3db +#: discord.commands.core.MessageCommand:22 #: discord.commands.core.SlashCommand:30 #: discord.commands.core.SlashCommandGroup:22 #: discord.commands.core.UserCommand:22 of @@ -556,12 +544,12 @@ msgstr "" msgid "Returns a string that allows you to mention the slash command." msgstr "" -#: 243e82cb8df04a368273abf6f3e337e6 90c2f3e57f6b4b12a2db96f0229f59a6 -#: aedee1abd900459caa0824d9395135f2 discord.commands.core.MessageCommand:26 +#: 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 +#: discord.commands.core.UserCommand:26 of msgid "Whether the command should only be usable inside a guild." msgstr "" @@ -571,8 +559,7 @@ msgstr "" msgid "Use the :attr:`contexts` parameter instead." msgstr "" -#: 3f98034506304fa5adcbcb706311be39 6d50a38d0a17491a8badbba7e2e94860 -#: a1c4ecc9455b4ba4bf4c25be0df33521 c1b7134cf52d42c2950bd14e6152aed8 +#: 3f98034506304fa5adcbcb706311be39 a1c4ecc9455b4ba4bf4c25be0df33521 #: discord.commands.core.MessageCommand:35 #: discord.commands.core.SlashCommand:62 #: discord.commands.core.SlashCommandGroup:42 @@ -583,8 +570,7 @@ msgid "" "intending to be listed in the App Directory cannot have NSFW commands." msgstr "" -#: 4093e966648f402ab9e9a3821479bc17 59b49969a86549fe97fef27fa01c037d -#: 6b3bc7e04f3640fbbc49a1f5f1444291 d0cf02f6c33d40f480e6dcdfa59e5bed +#: 4093e966648f402ab9e9a3821479bc17 6b3bc7e04f3640fbbc49a1f5f1444291 #: discord.commands.core.MessageCommand:42 #: discord.commands.core.SlashCommand:69 #: discord.commands.core.SlashCommandGroup:49 @@ -593,8 +579,8 @@ msgstr "" msgid "The default permissions a member needs to be able to run the command." msgstr "" -#: 128da93392f74a34b75d9da47a07e5d3 5fd417671e594f12bbdb4eebee581649 -#: c8f15213fe404ecc80f0efbad85ce25f discord.commands.core.MessageCommand:44 +#: 128da93392f74a34b75d9da47a07e5d3 c8f15213fe404ecc80f0efbad85ce25f +#: discord.commands.core.MessageCommand:44 #: discord.commands.core.SlashCommand:71 #: discord.commands.core.SlashCommandGroup:51 #: discord.commands.core.UserCommand:44 of @@ -615,8 +601,7 @@ msgstr "" msgid "Optional[:class:`Cog`]" msgstr "" -#: 0b88f443adf9434cab24c10d11dd4d90 1d352bc3635141cda4848e4fb7e0973e -#: 99e057769f604564828ec66970d09051 d9d5c1770b794a5aa348922c71a848cd +#: 0b88f443adf9434cab24c10d11dd4d90 99e057769f604564828ec66970d09051 #: discord.commands.core.MessageCommand:54 #: discord.commands.core.SlashCommand:81 #: discord.commands.core.SlashCommandGroup:55 @@ -631,8 +616,7 @@ msgid "" ":func:`.on_application_command_error` event." msgstr "" -#: 67af798da00f47a391dffbdf1d1b782b ad45d2349ec14cf6a18c5b8b7dc2a062 -#: discord.commands.core.MessageCommand:61 +#: ad45d2349ec14cf6a18c5b8b7dc2a062 discord.commands.core.MessageCommand:61 #: discord.commands.core.SlashCommand:88 #: discord.commands.core.SlashCommandGroup:62 #: discord.commands.core.UserCommand:61 ec1f97a3576f474d878bf3caa4bef5f8 of @@ -655,9 +639,8 @@ msgstr "" msgid "Optional[:class:`~discord.ext.commands.Cooldown`]" msgstr "" -#: 21ed930c27b2453195f0faa34f14457e 4c7491a6786349beb7d12103568687d9 -#: 6e99029583a841a9ab1d74653b3b85ac 808dd134efa0495ea9b213fcf9b366a3 -#: 8aeea10a4b16406bb4fabc8f5e266f29 discord.commands.core.MessageCommand:72 +#: 4c7491a6786349beb7d12103568687d9 6e99029583a841a9ab1d74653b3b85ac +#: 808dd134efa0495ea9b213fcf9b366a3 discord.commands.core.MessageCommand:72 #: discord.commands.core.SlashCommand:99 #: discord.commands.core.SlashCommandGroup:66 #: discord.commands.core.SlashCommandGroup.create_subgroup:27 @@ -671,7 +654,7 @@ msgstr "" #: 023e1e7e67f84b929dedc87e98bf488f 7897fe9f532240669b41fd64f8d327df #: 7f013ded205c49e4a449eb1a8356e3b8 94ef4db9991241619146371c2d241eec -#: 9fb8440c83b64b5da889a607e563f44c discord.commands.core.MessageCommand:75 +#: discord.commands.core.MessageCommand:75 #: discord.commands.core.SlashCommand:102 #: discord.commands.core.SlashCommand:109 #: discord.commands.core.SlashCommandGroup:69 @@ -682,9 +665,8 @@ msgstr "" msgid "Dict[:class:`str`, :class:`str`]" msgstr "" -#: 232bbcc643034214afd2c8bf7793034c 465be0fc2ca64e46ab11324883be8c39 -#: 9f23516b8763437599e6707336f93a13 b589efc99cfc492e9e2d1b0070562e2c -#: discord.commands.core.SlashCommand:106 +#: 465be0fc2ca64e46ab11324883be8c39 9f23516b8763437599e6707336f93a13 +#: b589efc99cfc492e9e2d1b0070562e2c discord.commands.core.SlashCommand:106 #: discord.commands.core.SlashCommandGroup:73 #: discord.commands.core.SlashCommandGroup.create_subgroup:30 of msgid "" @@ -704,8 +686,8 @@ msgid "" "account. Unapplicable for guild commands." msgstr "" -#: 667c0fef77a5473cb31b94fd02113660 6eb640cae00c453a89aab91f7b489f5b -#: bde9fd66a882485c806403a935a2799b discord.commands.core.MessageCommand:81 +#: 667c0fef77a5473cb31b94fd02113660 bde9fd66a882485c806403a935a2799b +#: discord.commands.core.MessageCommand:81 #: discord.commands.core.SlashCommand:117 #: discord.commands.core.SlashCommandGroup:84 #: discord.commands.core.UserCommand:81 of @@ -721,19 +703,21 @@ 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 +#: discord.commands.core.UserCommand:87 e4cf9dee7685447693343bc155de82b8 of msgid "Set[:class:`InteractionContextType`]" msgstr "" -#: 31d87139a8b540bc9e1c77b8b1829f09 discord.commands.core.MessageCommand.copy:1 +#: discord.SlashCommand.cog:1 f0a5c570cc0640daaab5e1d358b07b15 of +msgid "The type of the None singleton." +msgstr "" + +#: 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 +#: a8105025c5e2494aa3f98b742ce48850 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." @@ -778,14 +762,12 @@ msgstr "" 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 @@ -794,7 +776,7 @@ msgid "" "a guild command. This will be a global command if ``None`` is passed." msgstr "" -#: 0097a80d2c364ccea8530212bdc8538a 50bd9f43948a48cda18b0348eeacf075 +#: 50bd9f43948a48cda18b0348eeacf075 #: discord.commands.core.SlashCommandGroup.create_subgroup:34 #: discord.commands.core.SlashCommandGroup.subgroup:17 of msgid "The slash command group that was created." @@ -833,6 +815,15 @@ msgid "" "command or slash command group from the group." msgstr "" +#: 62d15681b0ef40fabaa8a66ccb17f7c1 +#: discord.commands.core.SlashCommandGroup.walk_commands:6 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\" +" \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| " +"\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, " +"\\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + #: 2030810b53b74013855efa8e43381af4 #: discord.commands.core.SlashCommandGroup.copy:1 of msgid "Creates a copy of this command group." @@ -1130,18 +1121,6 @@ msgstr "" 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 @@ -1195,6 +1174,11 @@ msgid "" " \\\\\\(\\`\\`T\\`\\`\\)`" msgstr "" +#: d6f68d1b5a754d4faff41bef78e15ad3 discord.ApplicationContext.command:1 +#: discord.AutocompleteContext.command:1 of +msgid "The command that this context belongs to." +msgstr "" + #: ../../docstring b609dea40cc743b08e49d5c7be8c7bcb #: discord.ApplicationContext.channel:1 of msgid "" @@ -1439,9 +1423,11 @@ msgstr "" msgid "Sending the message failed." msgstr "" -#: a0f75187304f404fb792a05b68249126 discord.ApplicationContext.send_response:51 +#: c6b8b47999374b87931c77b60a96a2d4 discord.ApplicationContext.send_response:51 #: of -msgid "You specified both ``embed`` and ``embeds``." +msgid "" +"You specified both ``embed`` and ``embeds``, or sent content or embeds " +"with V2 components." msgstr "" #: 0a737ffed25c468a8fa88b66f105c037 discord.ApplicationContext.edit:55 @@ -1627,9 +1613,9 @@ msgstr "" 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." +"with this webhook when giving it a dispatchable 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 @@ -1798,6 +1784,48 @@ msgid "" "does not exist." msgstr "" +#: 27773616d4ce4d9b82783152b70268e7 +#: discord.commands.context.ApplicationContext.is_guild_authorised:1 of +msgid "" +":class:`bool`: Checks if the invoked command is guild-installed. This is " +"a shortcut for :meth:`Interaction.is_guild_authorised`." +msgstr "" + +#: 27854a581be54d2ca5e020fb0355b768 +#: discord.commands.context.ApplicationContext.is_guild_authorised:4 of +msgid "" +"There is an alias for this called :meth:`.is_guild_authorized`. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 7c5843df10734082b20d87652eedb730 +#: discord.commands.context.ApplicationContext.is_user_authorised:1 of +msgid "" +":class:`bool`: Checks if the invoked command is user-installed. This is a" +" shortcut for :meth:`Interaction.is_user_authorised`." +msgstr "" + +#: c1c6d413f39c498698c17bed484de46f +#: discord.commands.context.ApplicationContext.is_user_authorised:4 of +msgid "" +"There is an alias for this called :meth:`.is_user_authorized`. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 6d0f7b6360b144369463f617bf6fda74 +#: discord.commands.context.ApplicationContext.is_guild_authorized:1 of +msgid "" +":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: a672117d3103480d961a778b53df95e7 +#: discord.commands.context.ApplicationContext.is_user_authorized:1 of +msgid "" +":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + #: 48def13f6174498892c7611747545cd9 #: discord.commands.context.AutocompleteContext:1 of msgid "Represents context for a slash command's option autocomplete." @@ -1816,34 +1844,52 @@ msgid "The interaction object that invoked the autocomplete." msgstr "" #: 59a530105ac6485197b9bf2cefe8e50a -#: discord.commands.context.AutocompleteContext:27 of +#: discord.commands.context.AutocompleteContext:21 of msgid "The option the user is currently typing." msgstr "" #: 326327f43433488a8304984c578d455b -#: discord.commands.context.AutocompleteContext:29 of +#: discord.commands.context.AutocompleteContext:23 of msgid ":class:`.Option`" msgstr "" #: 59f72990e3c14649938ce6341ee0005f -#: discord.commands.context.AutocompleteContext:33 of +#: discord.commands.context.AutocompleteContext:27 of msgid "The content of the focused option." msgstr "" #: 58801cfd58d44239a96812222e3aa822 -#: discord.commands.context.AutocompleteContext:35 of +#: discord.commands.context.AutocompleteContext:29 of msgid ":class:`.str`" msgstr "" #: 4c4055bc1b5242568ae0246a1a990d13 -#: discord.commands.context.AutocompleteContext:39 of +#: discord.commands.context.AutocompleteContext:33 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 +#: discord.commands.context.AutocompleteContext:35 of msgid "Dict[:class:`str`, Any]" msgstr "" +#~ msgid ":class:`.ApplicationCommand`" +#~ msgstr "" + +#~ msgid "You specified both ``embed`` and ``embeds``." +#~ msgstr "" + +#~ 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 "" + diff --git a/docs/locales/en/LC_MESSAGES/api/clients.po b/docs/locales/en/LC_MESSAGES/api/clients.po index 1bb8199023..d20fe7481c 100644 --- a/docs/locales/en/LC_MESSAGES/api/clients.po +++ b/docs/locales/en/LC_MESSAGES/api/clients.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-12 14:51+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../api/clients.rst:4 723ac37bda644d2181cb3df9c4c833f9 msgid "Client Objects" @@ -142,20 +142,11 @@ msgstr "" 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 +#: ../../api/clients.rst 383b7b70518e4373a487cda57b5af7e9 +#: 3cb58a3abe1b42c1819b2852310d653a 7a83a9a6026f4952ac18057feeedb044 +#: ad2dc10d548c40968eb973127142a32b cd605e7e5962488ab3e2441535990042 +#: d26b63e1b0dd4241989d229e204c2df0 discord.client.Client.wait_for +#: e6969df24be54c1da77efc157913d736 of msgid "Returns" msgstr "" @@ -167,31 +158,16 @@ msgid "" ":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 +#: ../../api/clients.rst 49511cb9a7ad486a880ef83bf2b1b2e5 +#: 554f6802f4174ca49a08c4f404762728 5572b6fc69b947b6b4a38b5a3a0919fd +#: 6587a9a35be04d6ebd805391f1cfaeae 679603f71c3842ceb9ab9301877e0a68 +#: 755dcc201bf14875a0f66b9268ab8006 80db389f7eb84893ab0b237312ef5b00 +#: a135a1aad44744079848b59aa8959a9b b5a22ed2f79040b2a8deb95f91416849 #: 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 +#: discord.client.Client.wait_for fef47654c88e403dad85dc4284b5a5ab of msgid "Return type" msgstr "" @@ -229,22 +205,12 @@ msgid "" "intended." msgstr "" -#: ../../api/clients.rst 00e6bd39c7fa4184844b6f7e7afcc5ef -#: 0a5f7aa535f24ca794e3c8734d4caf5f 2666501d112943b8b6641e0ee36d76ed -#: 2bb0d55c9f1e4b3489bd47b620ca3883 378fed9230884b5e9680753fe70c3989 -#: 3888f66b0d7d4eb7bfc805f9807a41d7 4727e7dbff374a62b8a56c79dc66082d -#: 51511a34fb6745aab1ca324ba180e340 5333ac2171494bb08f73a1fad01039bf -#: 5dedee9ffe954a98b442886bf9d3ad82 5fe56a006d574708abe19ebbaf839261 -#: 6ab72d7126304941a2843cd3f79e15bc 6c9daf6bb4464e6cbc2c184b3ccea998 +#: ../../api/clients.rst 4727e7dbff374a62b8a56c79dc66082d +#: 51511a34fb6745aab1ca324ba180e340 6ab72d7126304941a2843cd3f79e15bc #: 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 +#: ad56de6ed3ee40d4b537dfd9f8bcc2c4 be57f62d640d498db3acc576e8c69090 +#: discord.client.Client.entitlements discord.client.Client.fetch_guilds +#: discord.client.Client.wait_for f7d3143efeea400d85cc0fcf45b1e15b of msgid "Raises" msgstr "" @@ -255,35 +221,22 @@ msgstr "" 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 +#: 24b2a7241cb049de8a09e3130bf59982 40c782af18fa4b6d95ff04ed328711de +#: 4b54c577282844ab83de80cfe4c6af2e 8afe70b1dc3e415bbcb3587ae113f646 +#: 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 +#: ../../api/clients.rst 17352eb8d90a471c86796deec5f40361 +#: 197545f9c6ed4c5da3e235134e4fe25a 3200a85e4002416db55ed3790af21f4e +#: 3a0cbb5f03924ae4b02a402fe8156523 3c6cba4ba69e43249df187fcaeb5f207 +#: 8bf1ef24b9714c1c8e0436865b442e9a 99d7d45c973e4cab836405c222bbdf74 +#: a03bb4ec204c4867b740eb2c4bc3d398 discord.client.Client.entitlements +#: discord.client.Client.fetch_guilds discord.client.Client.wait_for +#: f706cf333c1a47f1a2976aa784a20ba9 ff5108bb0b184c7082382a51ee4ba248 of msgid "Parameters" msgstr "" @@ -437,10 +390,8 @@ msgstr "" 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 @@ -452,16 +403,16 @@ msgstr "" #: 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.client.Client.delete_emoji:11 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 +#: f96cd92a798a4613a4949f67c608e4ba of msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" msgstr "" @@ -605,6 +556,16 @@ msgstr "" msgid "The allowed mention configuration." msgstr "" +#: b39bab7b652b4d4f98cf18b2b9db6484 discord.Bot.app_emojis:1 +#: discord.Client.app_emojis:1 of +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "" + +#: 062738f2100e4c61908d1e90957795c7 d771fad779b94086a9f24278c89e38f4 +#: discord.Bot.app_emojis:5 discord.Client.app_emojis:5 of +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "" + #: 3a6bb0789c0c46faa50beb35215a0bb9 #: discord.bot.ApplicationCommandMixin.application_command:1 of msgid "" @@ -612,36 +573,25 @@ msgid "" "internal command list via :meth:`~.Bot.add_application_command`." msgstr "" -#: 8b07e863b4da42b087185fe66a4e4782 dfae6e3bc62e49a09c2ee43781c23646 -#: discord.Bot.application_flags:1 discord.Client.application_flags:1 of +#: 8b07e863b4da42b087185fe66a4e4782 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 +#: 7b81e6817aa3453dadfa039d5908f380 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 +#: 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 +#: 41081b0ab799472fa6aa72c01266cc77 #: discord.bot.ApplicationCommandMixin.get_application_context:1 #: discord.bot.ApplicationCommandMixin.get_autocomplete_context:1 #: discord.bot.ApplicationCommandMixin.get_desynced_commands:1 @@ -656,8 +606,10 @@ msgstr "" #: 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.create_emoji:1 discord.client.Client.create_guild:1 +#: discord.client.Client.delete_emoji:1 discord.client.Client.delete_invite:1 +#: discord.client.Client.fetch_channel:1 discord.client.Client.fetch_emoji:1 +#: discord.client.Client.fetch_emojis: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 @@ -667,37 +619,33 @@ msgstr "" #: 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.on_error:1 discord.client.Client.on_modal_error:1 +#: discord.client.Client.on_view_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 +#: discord.shard.AutoShardedClient.connect:1 of msgid "|coro|" msgstr "" -#: 47b37eeb523444a7aaecac9c8064ced9 5983dcd0486b4523ae227931a10b1302 -#: discord.client.Client.application_info:3 of +#: 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 +#: 507ab57eb4464568979b8f115e241575 discord.client.Client.application_info:5 of msgid "The bot's application information." msgstr "" -#: 0101829855214ceca48fda193d62fa4a 0abb1cb53f1d41c38d3ba45f1d0d3a03 -#: discord.client.Client.application_info:6 of +#: 0101829855214ceca48fda193d62fa4a discord.client.Client.application_info:6 of msgid ":class:`.AppInfo`" msgstr "" -#: 3aa370c5983e445f88dd18e9eadbd873 60dcff8b7cff446797963d62c8f9728b -#: discord.client.Client.application_info:8 of +#: 3aa370c5983e445f88dd18e9eadbd873 discord.client.Client.application_info:8 of msgid "Retrieving the information failed somehow." msgstr "" -#: 3e6d7812bab8419d863e5278f50532a6 70cb703484a24211b5f015b6c98489ed +#: 70cb703484a24211b5f015b6c98489ed #: discord.client.Client.before_identify_hook:3 of msgid "" "A hook that is called before IDENTIFYing a session. This is useful if you" @@ -705,18 +653,17 @@ msgid "" "IDENTIFYing clients." msgstr "" -#: 345f1f0857334a8486719a08ce7b4812 #: discord.client.Client.before_identify_hook:7 #: e8ac04bf158e41c38b39991bab6fb822 of msgid "The default implementation sleeps for 5 seconds." msgstr "" -#: 0b6319a9e67d414e87249e03d6d63397 8445119bcdba4f689bdc7ce8bc1d16ef +#: 0b6319a9e67d414e87249e03d6d63397 #: discord.client.Client.before_identify_hook:12 of msgid "The shard ID that requested being IDENTIFY'd" msgstr "" -#: 2301c3d3f9404ea495a8d7650bf54425 b5e6a835da3141a995d994af7efdd383 +#: 2301c3d3f9404ea495a8d7650bf54425 #: discord.client.Client.before_identify_hook:15 of msgid "Whether this IDENTIFY is the first initial IDENTIFY." msgstr "" @@ -742,37 +689,32 @@ msgstr "" msgid "The coroutine to register as the pre-invoke hook." msgstr "" -#: 26517c7b15d54b3f8695eb62fbc85109 cba36eb2890e435fa097ddab61040300 -#: discord.Bot.cached_messages:1 discord.Client.cached_messages:1 of +#: 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 +#: 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 +#: 6c8a13b6a2374d07bde689acfab480b4 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 +#: 3abff02da97142be826bc2c4e6ca6170 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 +#: 135d8da50bfe441ba19fe730e3461b60 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 +#: 39e909d604eb4a8c8eae94680b0f85d5 discord.client.Client.change_presence:22 #: discord.shard.AutoShardedClient.change_presence:10 of msgid "Removed the ``afk`` keyword-only parameter." msgstr "" @@ -811,21 +753,19 @@ msgid "" "being invoked once per :meth:`.Bot.invoke` call." msgstr "" -#: 46113f3b59ba48888dae66daa428f6a2 664b2b67ec6147ed94b53e0140acb9ef -#: discord.client.Client.clear:1 of +#: 46113f3b59ba48888dae66daa428f6a2 discord.client.Client.clear:1 of msgid "Clears the internal state of the bot." msgstr "" -#: a37bc673a1b54d709b8017883bfa408f b2e236d83dc34d8bb26a73a49b01369e -#: discord.client.Client.clear:3 of +#: 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 +#: 78ac357893eb41058d331fbd7e21f8bf discord.client.Client.close:3 +#: discord.shard.AutoShardedClient.close:3 of msgid "Closes the connection to Discord." msgstr "" @@ -833,8 +773,8 @@ msgstr "" msgid "A read-only mapping of cog name to cog." msgstr "" -#: 2e2b4b77bc7549c0a05965d9694ef840 9b1145547fdc4c8b85b1fdffccd05849 -#: discord.client.Client.connect:3 discord.shard.AutoShardedClient.connect:3 of +#: 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 " @@ -842,8 +782,8 @@ msgid "" "WebSocket connection is terminated." msgstr "" -#: 01fe01284ae748c8b1eddfddd1d73e21 6baf64d2338545519040319cd1847544 -#: discord.client.Client.connect:9 discord.shard.AutoShardedClient.connect:9 of +#: 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 " @@ -852,46 +792,72 @@ msgid "" msgstr "" #: 4f24dc57384346d0856e8fdac0a91c7a discord.client.Client.connect:15 -#: discord.shard.AutoShardedClient.connect:15 e065be27c22342a28fae8bfee39dc5f6 -#: of +#: discord.shard.AutoShardedClient.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 "" -#: 1656a53ca10c491688df2509c3c5ff71 c36b8e522ef8432ab9d32865a6f89cda -#: discord.client.Client.connect:16 discord.shard.AutoShardedClient.connect:16 -#: of +#: 1656a53ca10c491688df2509c3c5ff71 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 +#: 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 +#: 0be38552dc6d4508b568215162fbc247 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 +#: 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 +#: d6fa64d947654bf7becf7fad301f0fb9 discord.client.Client.create_dm:14 of msgid "The channel that was created." msgstr "" -#: 4ee54b2c76694caabfe0fde5d1cd1696 78267be3de4d4d789cc656e991f10e17 -#: discord.client.Client.create_dm:15 of +#: 4ee54b2c76694caabfe0fde5d1cd1696 discord.client.Client.create_dm:15 of msgid ":class:`.DMChannel`" msgstr "" +#: c6993c8ace9a402dbd8a19399cff355a discord.client.Client.create_emoji:3 of +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "" + +#: 04f4999d06504127abb524ae05e6bef4 discord.client.Client.create_emoji:5 +#: f602d4b2cc6842a19adea1a6fcd9e034 of +msgid "There is currently a limit of 2000 emojis per application." +msgstr "" + +#: 7d847ee8a4554a5da695f22ce3d5313c discord.client.Client.create_emoji:8 of +msgid "The emoji name. Must be at least 2 characters." +msgstr "" + +#: 62b9a65381f34c1bac438c5fd2c7ba6f discord.client.Client.create_emoji:11 of +msgid "" +"The :term:`py:bytes-like object` representing the image data to use. Only" +" JPG, PNG and GIF images are supported." +msgstr "" + +#: 2a7626f94ccf4dd6a346424f2bc46c3b 743ce386005549e5aa392fe07d92ad7e +#: discord.client.Client.create_emoji:15 of +msgid "An error occurred creating an emoji." +msgstr "" + +#: a272e12723b0440e8cdd4b64dd581be0 discord.client.Client.create_emoji:17 of +msgid "The created emoji." +msgstr "" + +#: 0101829855214ceca48fda193d62fa4a discord.client.Client.create_emoji:18 +#: discord.client.Client.fetch_emoji:10 of +msgid ":class:`AppEmoji`" +msgstr "" + #: a20efe6647144d72911f1a64c5ddacdc #: discord.bot.ApplicationCommandMixin.create_group:1 of msgid "" @@ -905,13 +871,13 @@ msgstr "" msgid "The name of the group to create." msgstr "" -#: 69af3206fe804f5ea844fa3e65c9cb7c a58e962af7324b1b9e2e450d359efb44 +#: 69af3206fe804f5ea844fa3e65c9cb7c #: discord.bot.ApplicationCommandMixin.create_group:10 #: discord.bot.ApplicationCommandMixin.group:10 of msgid "The description of the group to create." msgstr "" -#: 017330dc607446c2a51ad9824d9b6642 1013a998dd0644bf8b8ed20ec4161d3f +#: 017330dc607446c2a51ad9824d9b6642 #: discord.bot.ApplicationCommandMixin.create_group:13 #: discord.bot.ApplicationCommandMixin.group:13 of msgid "" @@ -924,156 +890,150 @@ msgstr "" 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 +#: 3b97fc8c08714dc0bf7cbe2a88d0fcab discord.client.Client.create_guild:3 of msgid "Creates a :class:`.Guild`." msgstr "" -#: 1ac9ef86b0a64b3ab8e6552798c01c97 8524eb9f26414048b1952e19fc192260 -#: discord.client.Client.create_guild:5 of +#: 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 +#: bfd43e9bd0f34e918327fc339e37937b discord.client.Client.create_guild:8 of msgid "The name of the guild." msgstr "" -#: 62b9a65381f34c1bac438c5fd2c7ba6f a9d50329ac804b2697f42d86f92f69d1 -#: discord.client.Client.create_guild:11 of +#: 62b9a65381f34c1bac438c5fd2c7ba6f 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 +#: 0722a839383b4001aa95fb0d76912f04 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 +#: 352fe566629842ad9d6ff7432397522e 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 +#: 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 +#: ac312b1700ba40e3ab5989b9c39cdc00 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 +#: 6fa7e508b0cf4b958775cf91dac4ba35 discord.client.Client.create_guild:24 of msgid "Guild creation failed." msgstr "" -#: 2d01c286352d4eeba440b3662378cc26 6a0a9f3ed5d14cd1b00a6fef49d5debe -#: discord.client.Client.create_guild:25 of +#: 2d01c286352d4eeba440b3662378cc26 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 +#: c6993c8ace9a402dbd8a19399cff355a discord.client.Client.delete_emoji:3 of +msgid "Deletes the custom :class:`AppEmoji` from the application." +msgstr "" + +#: 79ce9e3cdd1f42a0bbdd9b54d0263d2c discord.client.Client.delete_emoji:6 of +msgid "The emoji you are deleting." +msgstr "" + +#: 1c85bc449adf413483d92b5ca9136cfa discord.client.Client.delete_emoji:9 +#: ea862460293d4b07aa6764d066c3a2d0 of +msgid "An error occurred deleting the emoji." +msgstr "" + +#: 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 +#: 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 +#: 98207a40e1a94e19afe49b181675d48a discord.client.Client.delete_invite:9 of msgid "The invite to revoke." msgstr "" -#: 5e90c550889a4b5d9c88e6d7d7dd19bf d5b48d7d2a60458e8a2839ed8faa7b5d -#: discord.client.Client.delete_invite:12 of +#: 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 +#: 34eee7d0a7914a7a9232644c1582c652 discord.client.Client.delete_invite:13 of msgid "The invite is invalid or expired." msgstr "" -#: 770d782d0e98456da7aa346f121d5ae6 discord.client.Client.delete_invite:14 -#: e12571e8018b4226a23231a3d292f435 of +#: 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 +#: 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 +#: 6872f8c9608949fab7ac89cb5072f36d discord.Bot.emojis:5 +#: discord.Client.emojis:5 of +msgid "" +"This only includes the application's emojis if `cache_app_emojis` is " +"``True``." +msgstr "" + +#: 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 +#: 523b5670abb24b5e88f9d7f04d5a0a9f 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 +#: 47234f44f4bd4ceeb41bdc775a227c15 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 +#: 0326acb773754d438a4581ed32136b6d 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 +#: 830e0935ff744a0ea9a2a540a4a27ed3 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 +#: 98a71d0d914f4fe8b2324c24a917aa28 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 "" -#: 2effddfbbd1e45178440ec2b43ef9195 c9ef4370de624686b6d2148b7bb52dbc -#: discord.client.Client.entitlements:27 of +#: 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 +#: 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 @@ -1081,42 +1041,35 @@ msgstr "" msgid "Yields" msgstr "" -#: bba8b3a4dfed4c12acdea2989e9b7777 discord.client.Client.entitlements:34 -#: fd477cb2f68542529b5f28246bd2cddc of +#: discord.client.Client.entitlements:34 fd477cb2f68542529b5f28246bd2cddc of msgid ":class:`.Entitlement` -- The application's entitlements." msgstr "" -#: 2d3a2a0f88ba4346a292f010fcfac590 54a21db6d48b45ffa3147e2a18bcda3e -#: discord.client.Client.entitlements:36 of +#: 2d3a2a0f88ba4346a292f010fcfac590 discord.client.Client.entitlements:36 of msgid "Retrieving the entitlements failed." msgstr "" -#: 862c6912d2294e34a06faddbf7ff0269 9ab70875d2f847f99751826f9b4fd448 -#: discord.client.Client.entitlements:37 of +#: 862c6912d2294e34a06faddbf7ff0269 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 +#: 7c8cb90e915a42688bb8e0ac08a56b44 discord.client.Client.entitlements:40 +#: discord.client.Client.fetch_guilds:41 discord.client.Client.wait_for:42 of msgid "Examples" msgstr "" -#: 4fcb97767a904beb9ef44f190efbd53a 6a66fb7c4171403a94a25a3808826652 -#: df4744ea792246c2a87e26f7a1105f81 discord.client.Client.entitlements:41 -#: discord.client.Client.fetch_guilds:36 of +#: 4fcb97767a904beb9ef44f190efbd53a discord.client.Client.entitlements:41 +#: discord.client.Client.fetch_guilds:42 of msgid "Usage ::" msgstr "" -#: 0eae2453da7c4316a4e3c6d00c680cb1 3a17f85d5c5540cf8b980d8e82b60252 #: 5b7cc08b85db4b84ae5e9195194d36ba discord.client.Client.entitlements:46 -#: discord.client.Client.fetch_guilds:41 of +#: discord.client.Client.fetch_guilds:47 of msgid "Flattening into a list ::" msgstr "" -#: 48fa76c559f4449a95854d789559492f af1413448fd64215ad8a510b736adb91 #: ce984edfb81a40f88475e5d768a64ec9 discord.client.Client.entitlements:50 -#: discord.client.Client.fetch_guilds:46 of +#: discord.client.Client.fetch_guilds:52 of msgid "All parameters are optional." msgstr "" @@ -1124,204 +1077,221 @@ msgstr "" msgid "A read-only mapping of extension name to extension." msgstr "" -#: aafc1168e05f45dfacd0f151bfd0bd27 c6993c8ace9a402dbd8a19399cff355a -#: discord.client.Client.fetch_application:1 of +#: 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 +#: cdfbd078a7e34b39bc30d2f5d3db7fef 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 +#: 330746db683542c0bf43295ce8a60ecb discord.client.Client.fetch_application:8 +#: of msgid "The application information." msgstr "" -#: 7529d87e05374082bd884b1d1f4ce463 80da38d28f7a4058a9a443c380f15e07 -#: discord.client.Client.fetch_application:9 of +#: 80da38d28f7a4058a9a443c380f15e07 discord.client.Client.fetch_application:9 +#: of msgid ":class:`.PartialAppInfo`" msgstr "" -#: 496dda7098054bb98c52eea3c43b204e discord.client.Client.fetch_application:11 -#: fdfab0a8ac644e918e2b868f0b80ea8a of +#: 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 +#: 6f5bdf2b2be6487f8cd5cd5d7201e238 discord.client.Client.fetch_application:12 +#: of msgid "Retrieving the application failed." msgstr "" -#: 6a10ca6084f846de8fe3fc9c5f78d62b 709c0c6eedd44918b90f6dffa9b47f23 -#: discord.client.Client.fetch_channel:3 of +#: 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 +#: 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 +#: a9141c92c30443dab13cd3bfdfb3221b discord.client.Client.fetch_channel:11 of msgid "The channel from the ID." msgstr "" -#: discord.client.Client.fetch_channel:12 e0c5c0a3312d4c5bbb8ef19d1e2f15e1 -#: fa37228bc5f741968a08a26bfccb5ca5 of +#: discord.client.Client.fetch_channel:12 e0c5c0a3312d4c5bbb8ef19d1e2f15e1 of msgid "" "Union[:class:`.abc.GuildChannel`, :class:`.abc.PrivateChannel`, " ":class:`.Thread`]" msgstr "" -#: 220028234d2c4c72a8866cef69f6cedd a6c6384d2bd8410393e2acd36f1996a9 -#: discord.client.Client.fetch_channel:14 of +#: 220028234d2c4c72a8866cef69f6cedd 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 +#: 7b7c1cd63b90442e9e3e142aff758d8f discord.client.Client.fetch_channel:15 of msgid "Retrieving the channel failed." msgstr "" -#: 97eac6521e9a4e9dbc6cc6ecbfb97238 a254f2aa7f5441fca4eb306f79aa1b44 -#: discord.client.Client.fetch_channel:16 of +#: 97eac6521e9a4e9dbc6cc6ecbfb97238 discord.client.Client.fetch_channel:16 of msgid "Invalid Channel ID." msgstr "" -#: 9d2a8c5a46854947a7a140aff9f4179f d4920f83bc284b55b50a4c8f62cd4180 -#: discord.client.Client.fetch_channel:17 of +#: 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 +#: c6993c8ace9a402dbd8a19399cff355a discord.client.Client.fetch_emoji:3 of +msgid "Retrieves a custom :class:`AppEmoji` from the application." +msgstr "" + +#: 06cf0595cc3f498c8e8f41b354e358d8 discord.client.Client.fetch_emoji:6 of +msgid "The emoji's ID." +msgstr "" + +#: 98207a40e1a94e19afe49b181675d48a discord.client.Client.fetch_emoji:9 of +msgid "The retrieved emoji." +msgstr "" + +#: discord.client.Client.fetch_emoji:12 e5a4d1d3aaf040398c8c0a5ac1e6dc2d of +msgid "The emoji requested could not be found." +msgstr "" + +#: 93b617ce45a047109131fd5c50b58243 b863b5ab9f294d39841d1e57a8cd00f8 +#: discord.client.Client.fetch_emoji:13 of +msgid "An error occurred fetching the emoji." +msgstr "" + +#: c6993c8ace9a402dbd8a19399cff355a discord.client.Client.fetch_emojis:3 of +msgid "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "" + +#: 02bc2b83e6184eb2b71db6efe7e331a2 af44be4f67084ac48d3f3df89bf28261 +#: discord.client.Client.fetch_emojis:5 of +msgid "An error occurred fetching the emojis." +msgstr "" + +#: 5eba8aff592647dbb428a36b08475afc discord.client.Client.fetch_emojis:7 of +msgid "The retrieved emojis." +msgstr "" + +#: 00d7fd8a5ae747b7a60a6c550b8c741d discord.client.Client.fetch_emojis:8 of +msgid "List[:class:`AppEmoji`]" +msgstr "" + +#: 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 +#: 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 +#: 232c4e056e1641d2b6f4f6aec6a485ec 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 +#: 0edc6723fbc942dfba36ab15f4771dc3 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 +#: 3c5f0d5b44a34c12b46639235faa7ad0 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 +#: 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 +#: 13441326e09f4c41a4b70ace65d3685a discord.client.Client.fetch_guild:25 of msgid "The guild from the ID." msgstr "" -#: 18b98d33672748fab571d1592086006c 7d2046b6b57942f7a30996be5edff639 -#: discord.client.Client.fetch_guild:28 of +#: 18b98d33672748fab571d1592086006c 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 +#: ab6c8c5386cc4638a941c7e10d2114f6 discord.client.Client.fetch_guild:29 of msgid "Getting the guild failed." msgstr "" -#: 1747a97606b54d0aa85ee82fec200e5d 680b55c43a404490948ccf8c75056fe5 -#: discord.client.Client.fetch_guilds:1 of +#: 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 +#: 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 +#: 7b2ca8d29ccd472dbfe3bb09ee67cd31 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 +#: 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 +#: 2e80267839e44327b92ec76be0aaf427 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 +#: dde1d08cc27a42afa6456baeab1c4824 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 "" -#: d8cf0096c4ea46e0ae7da1145a0b557d discord.client.Client.fetch_guilds:29 -#: fc6f82145b034ece99cbf37f683ceff5 of +#: 3c5f0d5b44a34c12b46639235faa7ad0 discord.client.Client.fetch_guilds:29 of +msgid "" +"Whether to include member count information in guilds. This fills the " +":attr:`.Guild.approximate_member_count` and " +":attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "" + +#: d8cf0096c4ea46e0ae7da1145a0b557d discord.client.Client.fetch_guilds:35 of msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr "" -#: 2f4a72e1186a46d9aa54d22b75e640a3 5803c971ecee4e8385d297fa6b5f134c -#: discord.client.Client.fetch_guilds:31 of +#: 2f4a72e1186a46d9aa54d22b75e640a3 discord.client.Client.fetch_guilds:37 of msgid "Getting the guilds failed." msgstr "" -#: discord.client.Client.fetch_guilds:32 f43bf45acca54549a46eb8b112d02268 -#: f8744a77885f4d189fc280ec89e87d2c of +#: discord.client.Client.fetch_guilds:38 f8744a77885f4d189fc280ec89e87d2c of msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" msgstr "" -#: 8a4dcd58e0b2419aa0e9ecf1b6c7363e acc5f4a6a0f647dc9f8b5eaf7c539fdb -#: discord.client.Client.fetch_invite:3 of +#: 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 +#: 163cd0bf1a67459a89e9cdb0c6c757aa 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 " @@ -1329,333 +1299,288 @@ msgid "" "respectively." msgstr "" -#: 116f686fb5054484a467357d6d0a399a 2c47a87fed924f02ba4dbce127a2d89d -#: discord.client.Client.fetch_invite:12 of +#: 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 +#: 21da813826c74acbb3eedef11175e8f1 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 +#: 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 +#: 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 +#: 2cb15eb196524b68889c66edffb272a2 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 +#: 18b09b5aff7a4f39b50d78b9acb653fc 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 +#: 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 +#: 1c9f38c89b6f4c17aede743f8c65d8aa discord.client.Client.fetch_invite:34 of msgid "The invite from the URL/ID." msgstr "" -#: 05420965d65349869d9a3fcceff2515e 33169fa919a54f519ff847e567556f48 -#: discord.client.Client.fetch_invite:35 of +#: 05420965d65349869d9a3fcceff2515e discord.client.Client.fetch_invite:35 of msgid ":class:`.Invite`" msgstr "" -#: a22701bb7d2f44fca24ebafd0027a019 discord.client.Client.fetch_invite:37 -#: fe1ada1d25bf4ad7bc00b849f6fa88a9 of +#: 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 +#: a5f9c6c8318341df9f815544e2b2fc05 discord.client.Client.fetch_invite:38 of msgid "Getting the invite failed." msgstr "" -#: 1c2eae88e474467a8ef8fbe7cf172242 b369cce5013e4d698043f69c944f8a66 +#: b369cce5013e4d698043f69c944f8a66 #: discord.client.Client.fetch_premium_sticker_packs:3 of msgid "Retrieves all available premium sticker packs." msgstr "" -#: 4f91c0955a5547a393f8bca43c79326f c3ebd2de351c47589c35c91351a05cc8 +#: 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 +#: discord.client.Client.fetch_premium_sticker_packs:10 of msgid "Retrieving the sticker packs failed." msgstr "" -#: 3f0dc3bdc3194ca39b848651a262fd94 9424f8645549490aad4b3df67690028b +#: 9424f8645549490aad4b3df67690028b #: discord.client.Client.fetch_role_connection_metadata_records:3 of msgid "Fetches the bot's role connection metadata records." msgstr "" -#: 99df7df48d45437faa412b04790f7587 a739439997df43e7b7db808923acb79d +#: 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 +#: 68218a4bf26b4b38b1c806c7aa61f661 discord.client.Client.fetch_skus:3 of msgid "Fetches the bot's SKUs." msgstr "" -#: 06cf0595cc3f498c8e8f41b354e358d8 discord.client.Client.fetch_skus:7 -#: fb544d3f176e4037a777cec7dac26453 of +#: 06cf0595cc3f498c8e8f41b354e358d8 discord.client.Client.fetch_skus:7 of msgid "The bot's SKUs." msgstr "" -#: 043327feba3d4c899a4b9e27f3ae1372 b637e44776da4185981f78109a57a53a -#: discord.client.Client.fetch_skus:8 of +#: 043327feba3d4c899a4b9e27f3ae1372 discord.client.Client.fetch_skus:8 of msgid "List[:class:`.SKU`]" msgstr "" -#: 7a3e45f29a644f32b777d11a18579ede 88b901ccfaa14a67aadcb8840bdee24c +#: 7a3e45f29a644f32b777d11a18579ede #: discord.client.Client.fetch_stage_instance:3 of msgid "Gets a :class:`.StageInstance` for a stage channel id." msgstr "" -#: 4e6dc6fe1ef94a269f031a4a1e4b99aa 69ca285e4a1b4e8797cec962961cc055 +#: 69ca285e4a1b4e8797cec962961cc055 #: discord.client.Client.fetch_stage_instance:8 of msgid "The stage channel ID." msgstr "" -#: 7c7c97b654ed4a66a971dda8a270dcbf a15055de9ad647d4b7ef7e393ca47f72 +#: 7c7c97b654ed4a66a971dda8a270dcbf #: discord.client.Client.fetch_stage_instance:11 of msgid "The stage instance from the stage channel ID." msgstr "" -#: 87fb14043d8046d19381949784b89592 8e0d484c75f44292bf2e50c355f77b5b +#: 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 +#: discord.client.Client.fetch_stage_instance:15 of msgid "Getting the stage instance failed." msgstr "" -#: 584ac55387214bf0bc7655da6f2792e0 958332531bf34b229232649aaad19cef -#: discord.client.Client.fetch_sticker:3 of +#: 584ac55387214bf0bc7655da6f2792e0 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 +#: a84b7eec831d41849ecdc43cee32ae28 discord.client.Client.fetch_sticker:7 of msgid "The sticker you requested." msgstr "" -#: b838a91ed61b4d37be246951b8564208 discord.client.Client.fetch_sticker:8 -#: ee98d910070249a2afbc06c51832ab92 of +#: b838a91ed61b4d37be246951b8564208 discord.client.Client.fetch_sticker:8 of msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" msgstr "" -#: 50d8785227d54d73b68c6649c6fc793f a3bd0412032a451d944d5040250df9a4 -#: discord.client.Client.fetch_sticker:10 of +#: 50d8785227d54d73b68c6649c6fc793f discord.client.Client.fetch_sticker:10 of msgid "Retrieving the sticker failed." msgstr "" -#: a5926e5321024d8da72afc86559c5181 a914b8b74dff428b8217376bb44ee280 -#: discord.client.Client.fetch_sticker:11 of +#: a914b8b74dff428b8217376bb44ee280 discord.client.Client.fetch_sticker:11 of msgid "Invalid sticker ID." msgstr "" -#: daba7a12d12e483dabb22f3082560e2d dbd91692e99f41089c24f3a1b016abe3 -#: discord.client.Client.fetch_template:3 of +#: 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 +#: 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 +#: 20002ad14d4a4ebeb50f9d4b42e9bb59 discord.client.Client.fetch_template:9 of msgid "The template from the URL/code." msgstr "" -#: 25aa61a5f6704f76bd0e63fe07fd5344 discord.client.Client.fetch_template:10 -#: f8e660d6df844ff9b6e8ca42e45a6db4 of +#: discord.client.Client.fetch_template:10 f8e660d6df844ff9b6e8ca42e45a6db4 of msgid ":class:`.Template`" msgstr "" -#: 35c845de13e349a9bd817308bd8210bb bbb4e3d039e24824b2e96290ede33879 -#: discord.client.Client.fetch_template:12 of +#: 35c845de13e349a9bd817308bd8210bb discord.client.Client.fetch_template:12 of msgid "The template is invalid." msgstr "" -#: 1e8fc158e4c74b9fa63f4cd6822c9190 de39096b310c4930ba085499cc501be9 -#: discord.client.Client.fetch_template:13 of +#: 1e8fc158e4c74b9fa63f4cd6822c9190 discord.client.Client.fetch_template:13 of msgid "Getting the template failed." msgstr "" -#: 6afa0c679eaf409a8736e07f05fb7c6d discord.client.Client.fetch_user:3 -#: fc5e27dfd5df4f1083a2ce78905f137f of +#: 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 +#: 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 +#: 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 +#: discord.client.Client.fetch_user:16 f331d997dda74b7e9506f9f0858875f4 of msgid "The user you requested." msgstr "" -#: 84fbf23886304607b5223e4f3e827432 c58aaed5b9274c23be1a82dd7b9c79c2 -#: discord.client.Client.fetch_user:17 of +#: 84fbf23886304607b5223e4f3e827432 discord.client.Client.fetch_user:17 of msgid ":class:`~discord.User`" msgstr "" -#: 1f026a4e35c84df8b91a677e61429aad af069677ce5a4d60af85cdbbc1d89063 -#: discord.client.Client.fetch_user:19 of +#: 1f026a4e35c84df8b91a677e61429aad 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 +#: a7894ada30514c09917ba342ff6307bf discord.client.Client.fetch_user:20 of msgid "Fetching the user failed." msgstr "" -#: 449315d17af4479895749d1fc700a3f7 7b5c3de0d5bc490583eed2148fe3adf2 -#: discord.client.Client.fetch_webhook:3 of +#: 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 +#: 79ce9e3cdd1f42a0bbdd9b54d0263d2c discord.client.Client.fetch_webhook:5 of msgid "The webhook you requested." msgstr "" -#: 0f9acb4de476421b8b66cafaad9e8d13 c9bfd966d85e4f17a319e5b0e2f717cc -#: discord.client.Client.fetch_webhook:6 of +#: 0f9acb4de476421b8b66cafaad9e8d13 discord.client.Client.fetch_webhook:6 of msgid ":class:`.Webhook`" msgstr "" -#: 78c27258634f42bf842727095db62ee5 9383dddb8c9d4a9c96d2e2bde714702a -#: discord.client.Client.fetch_webhook:8 of +#: 78c27258634f42bf842727095db62ee5 discord.client.Client.fetch_webhook:8 of msgid "Retrieving the webhook failed." msgstr "" -#: 1d2f993cc43b4a0985c6521221c59f63 6c4a19c3d6534ae4849f4b219aab45e7 -#: discord.client.Client.fetch_webhook:9 of +#: 6c4a19c3d6534ae4849f4b219aab45e7 discord.client.Client.fetch_webhook:9 of msgid "Invalid webhook ID." msgstr "" -#: 38afa3e69538483c9aa15498beaf378e dc3889164ad64b9b8a46fbe38f466076 -#: discord.client.Client.fetch_webhook:10 of +#: 38afa3e69538483c9aa15498beaf378e 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 +#: 8b4ef3067a554f3dbd79ec87d454e563 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 +#: 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 +#: 81d3c19143e44cf2b6c178fc3d2fcc77 discord.client.Client.fetch_widget:10 of msgid "The ID of the guild." msgstr "" -#: 44fbd4d628244841a9214142b84ff39d discord.client.Client.fetch_widget:13 -#: e741791aa8f74923af5883745587ff8c of +#: 44fbd4d628244841a9214142b84ff39d discord.client.Client.fetch_widget:13 of msgid "The guild's widget." msgstr "" -#: d8bc6239ad544978978964d975b88cf8 discord.client.Client.fetch_widget:14 -#: e89b25c5d0d24a838d657f9ba08a43b5 of +#: d8bc6239ad544978978964d975b88cf8 discord.client.Client.fetch_widget:14 of msgid ":class:`.Widget`" msgstr "" -#: aca5c6cbb697464b90cc953011ed05bc discord.client.Client.fetch_widget:16 -#: e8fabc52771b436b8e0a6c27db844e38 of +#: aca5c6cbb697464b90cc953011ed05bc discord.client.Client.fetch_widget:16 of msgid "The widget for this guild is disabled." msgstr "" -#: 2f27c3a6ee12429694a5b67441deb3bd 6c887b61d6214bbc89a3071595e17351 -#: discord.client.Client.fetch_widget:17 of +#: 6c887b61d6214bbc89a3071595e17351 discord.client.Client.fetch_widget:17 of msgid "Retrieving the widget failed." msgstr "" -#: b886abcab97a46f3940f4064094180e2 discord.client.Client.get_all_channels:1 -#: f32d5942653b4aeea1d89478304ac5c4 of +#: b886abcab97a46f3940f4064094180e2 discord.client.Client.get_all_channels:1 of msgid "" "A generator that retrieves every :class:`.abc.GuildChannel` the client " "can 'access'." msgstr "" -#: 5004a72d009b4ad48da460e3f0226d5e d5dfb16bdaa1458bb44264187f4ee38c -#: discord.client.Client.get_all_channels:3 +#: 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 +#: 954c934a3ae542bd8e48d65c6872c37f discord.client.Client.get_all_channels:8 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\" +" \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, " +"\\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + +#: 14df624bee0b4d23b1f9088155d3e882 discord.client.Client.get_all_channels:13 #: of msgid "" "Just because you receive a :class:`.abc.GuildChannel` does not mean that " @@ -1663,7 +1588,7 @@ msgid "" ":meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "" -#: 5eab19fe94124dbcab31f439d0973160 discord.client.Client.get_all_channels:15 +#: 5eab19fe94124dbcab31f439d0973160 discord.client.Client.get_all_channels:17 #: of msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." msgstr "" @@ -1676,6 +1601,10 @@ msgstr "" msgid ":class:`.Member` -- A member the client can see." msgstr "" +#: c811a0a6a91d4b8c98daa60d8f8c78b9 discord.client.Client.get_all_members:12 of +msgid ":sphinx_autodoc_typehints_type:`Generator\\[Member\\]`" +msgstr "" + #: c0e500eca4654493bcbde640ebc18e15 #: discord.bot.ApplicationCommandMixin.get_application_command:1 of msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -1877,8 +1806,8 @@ msgstr "" msgid "The custom emoji or ``None`` if not found." msgstr "" -#: 00d7fd8a5ae747b7a60a6c550b8c741d discord.client.Client.get_emoji:8 of -msgid "Optional[:class:`.Emoji`]" +#: b838a91ed61b4d37be246951b8564208 discord.client.Client.get_emoji:8 of +msgid "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgstr "" #: c69d0ea814a84230941d413794f573c9 discord.client.Client.get_guild:1 of @@ -2026,6 +1955,11 @@ msgid "" "decorated class if ``None`` is passed." msgstr "" +#: b39bab7b652b4d4f98cf18b2b9db6484 discord.Bot.guild_emojis:1 +#: discord.Client.guild_emojis:1 of +msgid "The :class:`~discord.GuildEmoji` that the connected client has." +msgstr "" + #: 2f2a3e8f246c4f30b877af0e3e88001b discord.Bot.guilds:1 #: discord.Client.guilds:1 of msgid "The guilds that the connected client is a member of." @@ -2100,13 +2034,16 @@ msgid "" ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" msgstr "" -#: c5ab6840e90349f19ce335c373c2303d discord.AutoShardedClient.latency:1 +#: 19a5ab09684e42629fda01fdb8529cd7 b833b064d3654341ac190b5824bd6b24 #: discord.Bot.latency:1 discord.Client.latency:1 of -msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgid "" +"Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If " +"no websocket is present, this returns ``nan``, and if no heartbeat has " +"been received yet, this returns ``float('inf')``." msgstr "" -#: 421f8b497847440fbd6dbe4be0a01720 discord.Bot.latency:3 -#: discord.Client.latency:3 of +#: 421f8b497847440fbd6dbe4be0a01720 discord.Bot.latency:4 +#: discord.Client.latency:4 of msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "" @@ -2327,6 +2264,36 @@ msgid "" ":func:`~discord.on_error` for more details." msgstr "" +#: discord.client.Client.on_modal_error:3 f264d63d90574060bc9b34715a2e5075 +#: fb14025cdc964e5796fa74884c5d87b8 of +msgid "" +"The default modal error handler provided by the client. The default " +"implementation prints the traceback to stderr." +msgstr "" + +#: 054f9eb286a249488d4516a6c9a77bbf 788863ce342a4c6fa188aae5c62ad4ae +#: discord.client.Client.on_modal_error:6 of +msgid "" +"This only fires for a modal if you did not define its " +":func:`~discord.ui.Modal.on_error`." +msgstr "" + +#: c811a0a6a91d4b8c98daa60d8f8c78b9 discord.client.Client.on_modal_error:12 +#: discord.client.Client.on_view_error:13 of +msgid ":sphinx_autodoc_typehints_type:`None`" +msgstr "" + +#: 57179a6f7b13404b8d698521898a6d9c discord.client.Client.on_view_error:3 of +msgid "The default view error handler provided by the client." +msgstr "" + +#: 4b5db7ec08f94c5ab1f87f667b240f70 discord.client.Client.on_view_error:5 +#: f101d9263c01410e8ef9263e0b8c3b0e of +msgid "" +"This only fires for a view if you did not define its " +":func:`~discord.ui.View.on_error`." +msgstr "" + #: 0ddbaefb41734b77ad0d3ad0792c3d18 discord.Bot.persistent_views:1 #: discord.Client.persistent_views:1 of msgid "A sequence of persistent views added to the client." @@ -2866,6 +2833,15 @@ msgid "" "list of application commands." msgstr "" +#: 92a9bc95fa124cc2a6481b3544402054 +#: discord.bot.ApplicationCommandMixin.walk_application_commands:6 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\" +" " +"\\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\," +" \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + #: 61133e69adc34f46b680972b64aba970 discord.bot.AutoShardedBot:1 of msgid "" "This is similar to :class:`.Bot` except that it is inherited from " @@ -3062,17 +3038,41 @@ msgid "" "events, this must be set to ``True``. Defaults to ``False``." msgstr "" -#: c72989c35e494798868c418761624dc3 discord.client.Client:85 of +#: d81d99c5eb134726bc4295710867d447 discord.client.Client:82 of +msgid "" +"Whether to automatically fetch and cache the application's emojis on " +"startup and when fetching. Defaults to ``False``. .. warning:: " +"There are no events related to application emojis - if any are " +"created/deleted on the Developer Dashboard while the client is " +"running, the cache will not be updated until you manually run " +":func:`fetch_emojis`. .. versionadded:: 2.7" +msgstr "" + +#: discord.client.Client:82 e475177db885429080f0ae2b78b72aea of +msgid "" +"Whether to automatically fetch and cache the application's emojis on " +"startup and when fetching. Defaults to ``False``." +msgstr "" + +#: 2777d76119cf4da09f43cec0ac6ce08d discord.client.Client:86 of +msgid "" +"There are no events related to application emojis - if any are " +"created/deleted on the Developer Dashboard while the client is running, " +"the cache will not be updated until you manually run " +":func:`fetch_emojis`." +msgstr "" + +#: c72989c35e494798868c418761624dc3 discord.client.Client:95 of msgid "" "The WebSocket gateway the client is currently connected to. Could be " "``None``." msgstr "" -#: bfdaca2ce94b47c491227ce955d6ef14 discord.client.Client:89 of +#: bfdaca2ce94b47c491227ce955d6ef14 discord.client.Client:99 of msgid "The event loop that the client uses for asynchronous operations." msgstr "" -#: 49f2ebafe64e46af80bdc5670f75ec65 discord.client.Client:91 of +#: 49f2ebafe64e46af80bdc5670f75ec65 discord.client.Client:101 of msgid ":class:`asyncio.AbstractEventLoop`" msgstr "" @@ -3115,6 +3115,10 @@ msgstr "" msgid "An optional list of shard_ids to launch the shards with." msgstr "" +#: c5ab6840e90349f19ce335c373c2303d discord.AutoShardedClient.latency:1 of +msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +msgstr "" + #: 45591084a7f244f081d9f18faeb96673 discord.AutoShardedClient.latency:3 of msgid "" "This operates similarly to :meth:`Client.latency` except it uses the " @@ -3191,3 +3195,12 @@ msgid "" ":rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" msgstr "" +#~ msgid "Optional[:class:`.Emoji`]" +#~ msgstr "" + +#~ msgid "" +#~ ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\" +#~ " \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, " +#~ "\\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +#~ msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/cogs.po b/docs/locales/en/LC_MESSAGES/api/cogs.po index 2a23c3ba6b..97199b65d7 100644 --- a/docs/locales/en/LC_MESSAGES/api/cogs.po +++ b/docs/locales/en/LC_MESSAGES/api/cogs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-12 14:51+0000\n" +"POT-Creation-Date: 2025-02-24 14:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../api/cogs.rst:4 5374666c885c4434b06da0a8790fecdb msgid "Cogs" @@ -94,6 +94,14 @@ msgid "" "cog." msgstr "" +#: 37ca252417a04d0f9a6d189f27bf99a5 discord.cog.Cog.walk_commands:6 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\" +" " +"\\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\," +" \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + #: 483845d65d544491a23375ed5d92e183 discord.cog.Cog.get_listeners:1 of msgid "" "Returns a :class:`list` of (name, function) listener pairs that are " diff --git a/docs/locales/en/LC_MESSAGES/api/data_classes.po b/docs/locales/en/LC_MESSAGES/api/data_classes.po index 6519631f57..c09f3d5d96 100644 --- a/docs/locales/en/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/en/LC_MESSAGES/api/data_classes.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 23:44+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../api/data_classes.rst:6 0a78c32f65ce438ea508fc4e400c8264 msgid "Data Classes" @@ -82,27 +82,12 @@ msgstr "" msgid "The ID of the object." msgstr "" -#: ../../docstring 022ca6f62fc649d3babfa503e9a7527d -#: 07a6ab3ef7b647039bcefeda19b570d7 0945efcada3240758eff2c695d616f32 -#: 0a9f06d333124df0aae9049074965a81 0b6bdc9f79764717a733eb7a5958f520 -#: 0ba8abd38afb4d208cbc471b1d0baa5e 0d8cf03e305c441a937b9d418b558488 -#: 10706bbef0c04fe0bc85c95ac3cdaa67 1b41ad05a49849278911c3e2f57c8e5d -#: 240d3aad39f04f92b476f6ba0e75007f 2842d4409acc41a2964ac2c83972b347 -#: 2d431f876ab54a9ba881a6e21b29e517 308a58630c4e48c2acc2d2a709e660fd -#: 37389512c06c42c1b0ba531669e662b5 3cde02c1afdd471284767db5f3c67801 -#: 45420bc3f5e249dd8ef820bdb4863ddc 530e6956dbfa465a8855e5b8b2e6529f -#: 54d86a1d1b3d4c87b667471e1a7d424f 5d194e2b41154c9abe702d59bd5d87b8 -#: 5d20cdf35cf44064b8c208f270ffa578 674e78410f3641199148d66412633ac2 -#: 6c4d566dbc03451c823e41e2f0cb5dd1 6db56029d8d0485abf50e5258830aff5 -#: 6e2e7aa2a7c449a99e8f05fdfee3dc1a 723831052aca4c2d94163331d498fab4 -#: 74d5fdba4b784f47b2373e8c543a62b3 756b428ff3f9484e91ab6d231993be61 -#: 8011db96a73b497495b8da7fd21bc04e 80c538be47764e71bee2f99f7603a06c -#: 83632daae24b47c8b698763bdf3d970f 859d68d0649d49978f9dc52e463ae367 -#: 95e6b772d9f5492787b72ae79a2f21ba af2b5a1b3db74038a31df759ea7c8813 -#: c06aab6000c143bc9084e6898cd79330 c0b5a0d23eb144df849ae21e56e1c8cf +#: ../../docstring 0b6bdc9f79764717a733eb7a5958f520 +#: 0d8cf03e305c441a937b9d418b558488 3cde02c1afdd471284767db5f3c67801 +#: 45420bc3f5e249dd8ef820bdb4863ddc 6c4d566dbc03451c823e41e2f0cb5dd1 +#: 723831052aca4c2d94163331d498fab4 756b428ff3f9484e91ab6d231993be61 #: d04be24516744c6cb0d8a75985d21242 d658a315c6b74568a6988f7cbfd0bfd5 -#: df0fb4b2f1aa45beb6b6920a8e335e0c discord.ApplicationFlags.active -#: discord.ApplicationFlags.app_commands_badge +#: discord.ApplicationFlags.active discord.ApplicationFlags.app_commands_badge #: discord.ApplicationFlags.application_auto_moderation_rule_create_badge #: discord.ApplicationFlags.embedded #: discord.ApplicationFlags.gateway_guild_members @@ -116,7 +101,8 @@ msgstr "" #: 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.AttachmentFlags.is_thumbnail +#: discord.ChannelFlags.hide_media_download_options discord.ChannelFlags.pinned #: discord.ChannelFlags.require_tag #: discord.Intents.auto_moderation_configuration #: discord.Intents.auto_moderation_execution discord.Intents.bans @@ -137,7 +123,8 @@ msgstr "" #: 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.has_snapshot discord.MessageFlags.has_thread +#: discord.MessageFlags.is_components_v2 discord.MessageFlags.is_crossposted #: discord.MessageFlags.is_voice_message discord.MessageFlags.loading #: discord.MessageFlags.source_message_deleted #: discord.MessageFlags.suppress_embeds @@ -169,10 +156,13 @@ msgstr "" #: discord.Permissions.use_application_commands #: discord.Permissions.use_external_apps #: discord.Permissions.use_external_emojis +#: discord.Permissions.use_external_sounds #: discord.Permissions.use_external_stickers -#: discord.Permissions.use_slash_commands +#: discord.Permissions.use_slash_commands discord.Permissions.use_soundboard #: discord.Permissions.use_voice_activation discord.Permissions.view_audit_log -#: discord.Permissions.view_channel discord.Permissions.view_guild_insights +#: discord.Permissions.view_channel +#: discord.Permissions.view_creator_monetization_analytics +#: discord.Permissions.view_guild_insights #: discord.PublicUserFlags.active_developer #: discord.PublicUserFlags.bot_http_interactions #: discord.PublicUserFlags.bug_hunter @@ -195,8 +185,8 @@ msgstr "" #: 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.components.SelectOption discord.components.UnfurledMediaItem +#: 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 @@ -208,38 +198,30 @@ msgstr "" #: 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 -#: e4011bea52634c7ba64aef6135dffbd2 e6bfdc42ce134a04bfb90118a9947aa3 -#: ea47348b77604cd6bf327c57b7ff3d6d f15f5916f3c44904946502c7f1bc41b0 -#: f2c8b1fc5b0349b3b47cf0bf7adfa959 f4b5a29e047f49c391e8f8314e7befd1 -#: ffb6921ba007446f9ef96812b7f54ea6 of +#: discord.poll.PollResults discord.shard.ShardInfo of msgid "type" msgstr "" -#: 0a3305279543462d880226cdad446ec5 47963b10a3744670a53e06986a02d383 -#: 6674934795ef4e7c9fb97e9e9883e91e 787271a8ad0043a4b44cc5a717c8b26b -#: 83ced52f44bb4a1c95f0962207ce50dc 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:42 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 of +#: 0a3305279543462d880226cdad446ec5 787271a8ad0043a4b44cc5a717c8b26b +#: 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:26 discord.message.PartialMessage:42 +#: 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 of msgid ":class:`int`" msgstr "" #: ../../api/data_classes.rst 17d3622dc479450a9951e9f01f4e961e -#: 41838a50196b4f6281147969c43977d0 62c0635de0e14e85b11eb228a093d50b -#: 89e6520d4ff047f18dee15ce511b202d b5ea8629223b4b5b93a1742e5a53077e -#: bc227baf3a35408b8f5380ffa74958b7 d463224bd212438b803261a9fa1b966a -#: discord.poll.Poll.add_answer discord.poll.PollAnswer.voters -#: e10fd84d147f4b71b2d38959065e253c ed60de7fca634eb19790777106f69830 of +#: 62c0635de0e14e85b11eb228a093d50b bc227baf3a35408b8f5380ffa74958b7 +#: d463224bd212438b803261a9fa1b966a discord.poll.Poll.add_answer +#: discord.poll.PollAnswer.voters e10fd84d147f4b71b2d38959065e253c of msgid "Parameters" msgstr "" @@ -259,15 +241,18 @@ msgstr "" msgid "Returns the increment id that made the snowflake." msgstr "" -#: 0d8b907771e64532af760f81f51e6054 discord.components.SelectOption:1 of +#: 0d8b907771e64532af760f81f51e6054 303f5f553a71428285d200852504cec9 +#: discord.components.SelectOption:1 of msgid "Represents a :class:`discord.SelectMenu`'s option." msgstr "" -#: 836aee37573f4fb99a2e2ba8cd2ac24e discord.components.SelectOption:3 of +#: 836aee37573f4fb99a2e2ba8cd2ac24e 8d9e3b5226b84a4d9a95bccfb7d8ccc5 +#: discord.components.SelectOption:3 of msgid "These can be created by users." msgstr "" -#: b0f1217cfaff4c189043c1907c804416 discord.components.SelectOption:9 of +#: b0f1217cfaff4c189043c1907c804416 c56b411c300a4ce08a3948b4da36a990 +#: discord.components.SelectOption:9 of msgid "" "The label of the option. This is displayed to users. Can only be up to " "100 characters." @@ -276,26 +261,29 @@ msgstr "" #: 05be8ec42ca842988501f59cc34e4060 bf029a45ccb14764ab8bb9e4b6849d2a #: 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 fc861202507f4454976c8563dc3bc383 of +#: discord.components.UnfurledMediaItem:11 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 +#: fc861202507f4454976c8563dc3bc383 of msgid ":class:`str`" msgstr "" -#: 579e6accca914c3998466750119550fe discord.components.SelectOption:16 of +#: 11123714def448fdbeccc9ee4f80c118 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 +#: c56b411c300a4ce08a3948b4da36a990 df26f5a7b24d4b6d906959574c93288e +#: discord.components.SelectOption:24 of msgid "" "An additional description of the option, if any. Can only be up to 100 " "characters." @@ -312,25 +300,13 @@ msgstr "" msgid "Optional[:class:`str`]" msgstr "" -#: 5c9b407cffa7482394bcebc4fc8cd412 discord.components.SelectOption:31 of +#: 5c9b407cffa7482394bcebc4fc8cd412 discord.components.SelectOption:31 +#: e588f36be137417db4a513b55beb6351 of msgid "Whether this option is selected by default." msgstr "" -#: ../../docstring 034f5658560a46a48f6392d1a929bbd7 -#: 161aa3465ff54b8eabe605b3e1effc75 1bd2fe7cfa7442648f6b9c5bd3d60b3e -#: 1c9bcfbfabcf4447af13173772e0dba3 2c1c87d5592e4e8ba6d282a4981aaf31 -#: 326278ce171e46fb892074ec17d63e86 3461eb669bf74f97b82aada9d35a05ef -#: 46fa3239adde4e4e8c329454531c38d3 4925fccfa0a940c8a56591683e21bb9b -#: 5e77c1cbf15f4edbace963555bada8f4 655b339bafc8433e9aaab4de0ce88be5 -#: 7186fd1920ad48c08b8c0b576bf3e70b 7423abc3cc524d34a8f85edbe0dc35c9 -#: 77ec92f62db14901a099b1dd6847dc2c 7cdf2f906ed044deb6012048150da019 -#: 7ff8f88daaf64e81ae8e54a9a098fba8 8131de1784d84c66a45d155df88cf3cd -#: 8b13ad081fb949e7830bf07869b61edd 97e4820420da426a91acebda9917aa78 -#: a1a7cfe5e59a4d34b6c36e5fde156571 ae44222339b04401be8bde84be82516c -#: b152bbcee768493eaedb1704b92055be b65935e7a9214a36aba1ec7fc7c90e2a -#: b9f49cf9cee747048835891d1c7f70f5 c66087222b144b77bfe3590882bb094c -#: ced24460a70040d8b61a4ad0d6c78aed d45426a29b06438e91f2dd515ab9a26b -#: d50186c464354e00bb33065cbbc894ca discord.ApplicationFlags.active:6 +#: ../../docstring 46fa3239adde4e4e8c329454531c38d3 +#: discord.ApplicationFlags.active:6 #: discord.ApplicationFlags.app_commands_badge:6 #: discord.ApplicationFlags.application_auto_moderation_rule_create_badge:5 #: discord.ApplicationFlags.embedded:3 @@ -345,8 +321,9 @@ msgstr "" #: 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.AttachmentFlags.is_thumbnail:3 +#: discord.ChannelFlags.hide_media_download_options:5 +#: 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 @@ -367,7 +344,9 @@ msgstr "" #: 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.has_snapshot:5 discord.MessageFlags.has_thread:5 +#: discord.MessageFlags.is_components_v2: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 @@ -401,10 +380,13 @@ msgstr "" #: discord.Permissions.use_application_commands:5 #: discord.Permissions.use_external_apps:8 #: discord.Permissions.use_external_emojis:5 +#: discord.Permissions.use_external_sounds:5 #: discord.Permissions.use_external_stickers:5 #: discord.Permissions.use_slash_commands:5 +#: discord.Permissions.use_soundboard:5 #: discord.Permissions.use_voice_activation:3 #: discord.Permissions.view_audit_log:3 discord.Permissions.view_channel:3 +#: discord.Permissions.view_creator_monetization_analytics:5 #: discord.Permissions.view_guild_insights:5 #: discord.PublicUserFlags.active_developer:5 #: discord.PublicUserFlags.bot_http_interactions:5 @@ -430,18 +412,39 @@ msgstr "" #: 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.mentions.AllowedMentions:40 discord.message.MessageReference:41 #: discord.permissions.PermissionOverwrite.is_empty:7 discord.poll.Poll:27 #: discord.poll.PollAnswerCount:22 discord.poll.PollResults:9 -#: e1c1e64874eb4dc4b81588e9d084845b e29fe4fdd9ad421295dee23fa82019b0 -#: f2a5f2887dcb45bfb3ec1a4a0aeb18d8 fd16e79e95744fbbb4d1bb67b2d04fbe of +#: e1c1e64874eb4dc4b81588e9d084845b e29fe4fdd9ad421295dee23fa82019b0 of msgid ":class:`bool`" msgstr "" -#: 83b108a10aa446cdb6eebaab379b4174 discord.SelectOption.emoji:1 of +#: 804bbf20fe6c4418a6f03780ed6e383d 83b108a10aa446cdb6eebaab379b4174 +#: discord.SelectOption.emoji:1 of msgid "The emoji of the option, if available." msgstr "" +#: 7356eae6e80c48cabddc24248342e844 discord.components.UnfurledMediaItem:1 of +msgid "Represents an Unfurled Media Item used in Components V2." +msgstr "" + +#: 815a8f8542054043b415faafbdbedde0 discord.components.UnfurledMediaItem:3 of +msgid "" +"This is used as an underlying component for other media-based components " +"such as :class:`Thumbnail`, :class:`FileComponent`, and " +":class:`MediaGalleryItem`." +msgstr "" + +#: 092b6ba6ce244e53b6ce5f7e4e9500c1 discord.components.UnfurledMediaItem:9 of +msgid "" +"The URL of this media item. This can either be an arbitrary URL or an " +"``attachment://`` URL to work with local files." +msgstr "" + +#: 5b063163bfaf4930af9d387ef066d6ec discord.UnfurledMediaItem.url:1 of +msgid "Returns this media item's url." +msgstr "" + #: discord.flags.Intents:1 e2e452e939b041f88f583aded7ed5bad of msgid "Wraps up a Discord gateway intent flag." msgstr "" @@ -453,9 +456,8 @@ msgid "" "were regular bools." msgstr "" -#: 99d045cffa884713a159060bf7b59130 c7ccca30986e43fd8e10beb3bd9d8656 -#: discord.flags.Intents:7 discord.flags.MemberCacheFlags:12 -#: discord.flags.SystemChannelFlags:7 of +#: 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." @@ -468,17 +470,15 @@ msgid "" "keyword argument of :class:`Client`." msgstr "" -#: 2723da96d9724f13aedb5348870ab7f6 4e9fe61ccd1549e88739285bf3dafd88 -#: discord.flags.AttachmentFlags:7 discord.flags.Intents:20 -#: discord.flags.MemberCacheFlags:23 discord.flags.MessageFlags:9 -#: discord.flags.SystemChannelFlags:14 of +#: 4e9fe61ccd1549e88739285bf3dafd88 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 "" -#: b6e33c093a6446c4b0db0d86d7eea46a c5b62a3820524bdaa7ffdc764a11c059 -#: discord.flags.AttachmentFlags:10 discord.flags.Intents:23 -#: discord.flags.MemberCacheFlags:26 discord.flags.MessageFlags:12 -#: discord.flags.SystemChannelFlags:17 of +#: c5b62a3820524bdaa7ffdc764a11c059 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 "" @@ -487,74 +487,67 @@ msgstr "" #: 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 of +#: discord.flags.SKUFlags:13 discord.flags.SystemChannelFlags:20 of msgid "Adds two flags together. Equivalent to ``x | y``." msgstr "" -#: 0c17b2ad55124b1aaae336d3932a00a5 1cc0f99d2ad34188a3d109ca5ea135bd -#: 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 of +#: 1cc0f99d2ad34188a3d109ca5ea135bd 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 of msgid "Subtracts two flags from each other." msgstr "" -#: 8682d8d121804ca78190744b3a59c4d3 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 of +#: 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 of msgid "Returns the union of two flags. Equivalent to ``x + y``." msgstr "" -#: 1958adb42308499f8545a94033c83764 1aa74630c59244a680d6c45bac4a40d4 -#: 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 of +#: 1aa74630c59244a680d6c45bac4a40d4 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 of msgid "Returns the intersection of two flags." msgstr "" -#: 0c0d4ae9593340cc9d83a5f1bf9ae314 3f25fb08cab5411e97b911287fb3d991 -#: 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 of +#: 0c0d4ae9593340cc9d83a5f1bf9ae314 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 of msgid "Returns the inverse of a flag." msgstr "" -#: 115cbdc73ead48389591b9c18de16c6e 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 of +#: 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 of msgid "Return the flag's hash." msgstr "" -#: 7204b8ea3a9241949e0f987e6f8c8665 a99a094ce4fa417f968709af699b5323 -#: discord.flags.Intents:44 discord.flags.MemberCacheFlags:47 -#: discord.flags.MessageFlags:33 discord.flags.SystemChannelFlags:38 of +#: a99a094ce4fa417f968709af699b5323 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 "" -#: 82101dd125534b129f6f38b3b3ed2e27 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 -#: f54fefdc28274d45b023ba51349e495a of +#: 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 f54fefdc28274d45b023ba51349e495a of msgid "" "The raw value. You should query flags via the properties rather than " "using this raw value." @@ -565,16 +558,12 @@ msgid "A factory method that creates a :class:`Intents` with everything enabled. msgstr "" #: ../../api/data_classes.rst 06117d4991d64482ab3bd74ddd051afa -#: 2a6fff9cfbc140eea62eb86587d99e12 2aaf29a75ce048e59ab4aa068f89270e -#: 2c65699780f042bda30498eb6d195ca1 387a935c6db343558a4e1062dc05e80b -#: 3a69766c2ab349738d5ae59cbd70517b 3d9d7f31e3fd426c91b7da7fe211b099 -#: 4cec06d96aa540ca837c06faf1eda4aa 7afd0d20cf2940e4a0493121eb555c29 -#: discord.poll.Poll.add_answer discord.poll.PollAnswer.voters of +#: 4cec06d96aa540ca837c06faf1eda4aa discord.poll.Poll.add_answer +#: discord.poll.PollAnswer.voters of msgid "Return type" msgstr "" -#: 20a24ced6c2f40ae97a379aac52fc31e 93072a21a8ac4f6d9051e897557acc8f -#: 946b7c87c7b64016bc9465fb66cea03d discord.flags.Intents.all:4 +#: 93072a21a8ac4f6d9051e897557acc8f 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 "" @@ -593,18 +582,7 @@ msgstr "" 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 +#: ../../docstring 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 @@ -616,9 +594,7 @@ msgstr "" #: 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 +#: discord.Intents.webhooks:3 f1b1d51dfc7e4692a37d5bca93905b4d of msgid "This corresponds to the following events:" msgstr "" @@ -657,14 +633,7 @@ msgstr "" msgid ":func:`on_guild_channel_pins_update`" msgstr "" -#: ../../docstring 30ce97bdd3094300a532b98ec1cf3943 -#: 31267a3f10444da2957257d6241062ac 335c852a9e4240d680003e46d01a9eb7 -#: 3d3cd245adcd4796a84d8cd0f0748f62 50006f2a61b848848d0dff60895afc77 -#: 516dddd73b2b476b82835e700c169f71 529dd704424742a38b07f200180a2068 -#: 64ea6e41a88c47cba252c5bd01944e1c 7723e1b62423446184c4541de3f89248 -#: 7945f47d88904d9a834c708ec69ca085 b1141125c5b647c18492031a0447fb6d -#: b7a36d6a3daa4dd582d6ae4a5dee5f3a cfe6c3251c0f4e13a904e56454fbaa4a -#: d6181ea2e5ab4d45aeabb348df9f2c88 deaad94c71c94871817abb4286d2bcef +#: ../../docstring cfe6c3251c0f4e13a904e56454fbaa4a #: 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 @@ -802,8 +771,7 @@ msgid "" "`." msgstr "" -#: ../../docstring 5f0bed46e9fd446fa11f769c2e18134d -#: a144ff86320b4e09b37cff189bb3174c discord.Intents.members:30 +#: ../../docstring a144ff86320b4e09b37cff189bb3174c discord.Intents.members:30 #: discord.Intents.presences:17 of msgid "" "This intent is privileged, meaning that bots in over 100 guilds that " @@ -815,8 +783,7 @@ msgstr "" msgid "Alias of :attr:`.moderation`." msgstr "" -#: ../../docstring 27a0c56e0c79468d9c88cabbab69f321 -#: bc8f8e325af24de382cf5ea080f4c8ef discord.Intents.bans:3 +#: ../../docstring 27a0c56e0c79468d9c88cabbab69f321 discord.Intents.bans:3 #: discord.Intents.emojis:3 of msgid "Changed to an alias." msgstr "" @@ -841,14 +808,10 @@ msgstr "" msgid ":func:`on_member_unban`" msgstr "" -#: ../../docstring 20164eb2064e41b7b194bcf624744b12 -#: 49e0cca02c174ab0b3af1016f00bb680 a9a3db3038a7485ca7c791f1c7782ae9 -#: b9863a675003490b89043c31dbf28eff bbcdb3c184584751b4fce179030f686b -#: c8d84c681fd142bf88e6ff7b096647b2 discord.Intents.dm_typing:9 +#: ../../docstring bbcdb3c184584751b4fce179030f686b 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 +#: discord.Intents.typing:9 discord.Intents.webhooks:7 of msgid "" "This does not correspond to any attributes or classes in the library in " "terms of cache." @@ -875,7 +838,7 @@ msgstr "" #: ../../docstring 8d522dd4ec834c5e834a8a3a1d82637a #: discord.Intents.emojis_and_stickers:12 of -msgid ":class:`Emoji`" +msgid ":class:`GuildEmoji`" msgstr "" #: ../../docstring 310d885187c7483da2962fd12d7a1274 @@ -1087,8 +1050,7 @@ msgstr "" msgid ":func:`on_raw_message_edit` (both guilds and DMs)" msgstr "" -#: ../../docstring 131678d976fa4452a3c6274c4a114015 -#: 3a20c463f48c465d92f7b983f9414c0f 4cc0d56ddc4341339bbabe226cfff4ea +#: ../../docstring 3a20c463f48c465d92f7b983f9414c0f #: 6f70df5e3a324290889232d0395e7f0f discord.Intents.dm_messages:15 #: discord.Intents.guild_messages:15 discord.Intents.messages:15 #: discord.message.PartialMessage.end_poll:8 @@ -1118,26 +1080,23 @@ msgstr "" #: ../../docstring 3bdf1873d5a74fbea1e77e2f6675beba #: discord.Intents.dm_messages:21 discord.Intents.guild_messages:21 -#: discord.Intents.messages:21 f674049e077048a98e3783c5fb184729 -#: fc0283f014bc4a5b9324a679e0833a98 of +#: discord.Intents.messages:21 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 +#: discord.Intents.reactions:7 of msgid ":func:`on_reaction_add` (both guilds and DMs)" msgstr "" -#: ../../docstring 7ef5737b80aa46ff8b63044455a72240 -#: bc06530511074b05bd24b74d33bc9ff1 discord.Intents.messages:24 +#: ../../docstring 7ef5737b80aa46ff8b63044455a72240 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 +#: ../../docstring 642521a6775f42d986de623796667074 discord.Intents.messages:25 #: discord.Intents.reactions:9 of msgid ":func:`on_reaction_clear` (both guilds and DMs)" msgstr "" @@ -1204,21 +1163,18 @@ msgstr "" msgid ":meth:`Client.get_poll` (only for guilds)" msgstr "" -#: ../../docstring 0f9dd91ef1a649588b0c988cd620e899 -#: c8df715cc6f3485fb0be9c491e646337 discord.Intents.guild_messages:23 -#: discord.Intents.guild_reactions:7 of +#: ../../docstring 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 +#: 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 +#: discord.Intents.guild_messages:25 discord.Intents.guild_reactions:9 of msgid ":func:`on_reaction_clear` (only for guilds)" msgstr "" @@ -1230,32 +1186,27 @@ msgid "" msgstr "" #: ../../docstring a137ba63f3c846b3bd5d57a7bf96e78c -#: d177535ebad849a4baae6d17fa3e786b discord.Intents.guild_messages:30 -#: discord.Intents.message_content:5 of +#: 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 +#: ../../docstring 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 +#: discord.Intents.guild_messages:32 discord.Intents.message_content:7 of msgid ":attr:`Message.attachments`" msgstr "" -#: ../../docstring 323a68adf77442f680a96f59bea295e3 -#: 9dc7fe52d32942078f6af7ec79f3d42b discord.Intents.guild_messages:33 -#: discord.Intents.message_content:8 of +#: ../../docstring 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 +#: discord.Intents.guild_messages:34 discord.Intents.message_content:9 of msgid ":attr:`Message.poll`" msgstr "" @@ -1322,20 +1273,17 @@ msgid ":meth:`Client.get_poll` (only for DMs)" msgstr "" #: ../../docstring 589df8506c3445e5bb27a3f7c0e1eb13 -#: c93500c986124c1392636208ff6c21bf discord.Intents.dm_messages:23 -#: discord.Intents.dm_reactions:7 of +#: 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 +#: discord.Intents.dm_messages:24 discord.Intents.dm_reactions:8 of msgid ":func:`on_reaction_remove` (only for DMs)" msgstr "" -#: ../../docstring 7551821d00e94b5783620a188bf47757 -#: 85eb129e0b244960ab86b6367da8d207 discord.Intents.dm_messages:25 -#: discord.Intents.dm_reactions:9 of +#: ../../docstring 85eb129e0b244960ab86b6367da8d207 +#: discord.Intents.dm_messages:25 discord.Intents.dm_reactions:9 of msgid ":func:`on_reaction_clear` (only for DMs)" msgstr "" @@ -1431,10 +1379,8 @@ msgstr "" 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 +#: ../../docstring 8d8207f6f69441fba7d0f03fa6f9ff53 discord.Intents.dm_typing:1 +#: discord.Intents.guild_typing:1 discord.Intents.typing:1 of msgid "Whether guild and direct message typing related events are enabled." msgstr "" @@ -1711,11 +1657,9 @@ msgid "" "not started yet." msgstr "" -#: 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 +#: c99851f342584595848427fb38375fa3 discord.activity.Activity:16 +#: discord.message.MessageReference:20 discord.message.MessageReference:32 +#: discord.poll.Poll.total_votes:4 discord.shard.ShardInfo:18 of msgid "Optional[:class:`int`]" msgstr "" @@ -1723,7 +1667,7 @@ msgstr "" msgid "Whether the shard connection is currently closed." msgstr "" -#: 58d0f572132547b7a1dbaf2927806124 9aca5fcb17de43ee849174bf0bd5a3f7 +#: 9aca5fcb17de43ee849174bf0bd5a3f7 #: discord.permissions.Permissions.is_strict_subset:5 #: discord.permissions.Permissions.is_strict_superset:5 #: discord.permissions.Permissions.is_subset:5 @@ -1732,14 +1676,14 @@ msgstr "" msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" msgstr "" -#: 2d31939098494f0489e8a053303107d7 336386f348c2475b83c479b3376548af -#: 61d3fe2200f04894857f7a6b254fed20 7b6aba613fd1494aa813bfbe67e79186 +#: 336386f348c2475b83c479b3376548af 7b6aba613fd1494aa813bfbe67e79186 #: 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.Message.forward_to: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 of @@ -1757,7 +1701,6 @@ msgid "If the shard is already disconnected this does nothing." msgstr "" #: 2aeb0522710e4223920fd1c621bb6bb9 682dc42cdccd42f3a7f85235164dfb67 -#: 6ab82dd262114586ae1460ec0ef8949f 937a7163bad44cc0b251d6ab47e83b23 #: 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 @@ -1778,10 +1721,11 @@ msgstr "" msgid "Connects a shard. If the shard is already connected this does nothing." msgstr "" -#: a1f36fed4af44c01a9019cc4415319a2 discord.ShardInfo.latency:1 of +#: 77a9f6e52669457f8060e59f51444378 discord.ShardInfo.latency:1 of msgid "" "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for " -"this shard." +"this shard. If no heartbeat has been received yet this returns " +"``float('inf')``." msgstr "" #: 17a313ff1c1c4f18989340eb1c290ed9 discord.shard.ShardInfo.is_ws_ratelimited:1 @@ -1797,7 +1741,7 @@ msgid "" ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" msgstr "" -#: ../../api/data_classes.rst:40 e4e4b4653ed64e5bb6d330ca5bee9fe8 +#: ../../api/data_classes.rst:50 e4e4b4653ed64e5bb6d330ca5bee9fe8 msgid "Message" msgstr "" @@ -1825,8 +1769,8 @@ msgid "" "the message content." msgstr "" -#: 481cf58f03144feda8cabc58d0c1e2ee 530c33a7c302431cbd3d33ded378f0ba -#: discord.mentions.AllowedMentions:21 discord.mentions.AllowedMentions:31 of +#: 530c33a7c302431cbd3d33ded378f0ba discord.mentions.AllowedMentions:21 +#: discord.mentions.AllowedMentions:31 of msgid "Union[:class:`bool`, List[:class:`abc.Snowflake`]]" msgstr "" @@ -1869,28 +1813,38 @@ msgstr "" msgid "This class can now be constructed by users." msgstr "" -#: 64f0d504dd97408ca19d5fe84a0df71b discord.message.MessageReference:10 of +#: c5ee817b12ad456c9205ed5834d32a57 discord.message.MessageReference:10 of +msgid "" +"The type of message reference. If this is not provided, assume the " +"default behavior (i.e., reply)." +msgstr "" + +#: 5ed3d2c88b4d4d4a96d200c1bf406751 discord.message.MessageReference:14 of +msgid "Optional[:class:`~discord.MessageReferenceType`]" +msgstr "" + +#: 64f0d504dd97408ca19d5fe84a0df71b discord.message.MessageReference:18 of msgid "The id of the message referenced." msgstr "" -#: b3465d0402d0442e829de7d9fc0c70fb discord.message.MessageReference:16 of +#: b3465d0402d0442e829de7d9fc0c70fb discord.message.MessageReference:24 of msgid "The channel id of the message referenced." msgstr "" -#: 850b11222cbb40e28037b71bde8dd57f discord.message.MessageReference:22 of +#: 850b11222cbb40e28037b71bde8dd57f discord.message.MessageReference:30 of msgid "The guild id of the message referenced." msgstr "" -#: discord.message.MessageReference:28 +#: discord.message.MessageReference:36 #: discord.message.MessageReference.from_message:9 -#: ea0f2d067e6b4d12b130bbafb1face58 f161b3d6b9624e51af155755e2347428 of +#: 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 +#: discord.message.MessageReference:45 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 " @@ -1899,13 +1853,13 @@ msgid "" " deleted then this will be of type :class:`DeletedReferencedMessage`." msgstr "" -#: b515d831ed234923be2b9bf7f76b9ae3 discord.message.MessageReference:43 of +#: b515d831ed234923be2b9bf7f76b9ae3 discord.message.MessageReference:51 of msgid "" "Currently, this is mainly the replied to message when a user replies to a" " message." msgstr "" -#: 19036d2129714259ad50409d11530f07 discord.message.MessageReference:47 of +#: 19036d2129714259ad50409d11530f07 discord.message.MessageReference:55 of msgid "Optional[Union[:class:`Message`, :class:`DeletedReferencedMessage`]]" msgstr "" @@ -1929,18 +1883,31 @@ msgid "" "not fetch the message. .. versionadded:: 1.7" msgstr "" -#: ../../api/data_classes.rst ec698da13c7a4164a882b6d5a0868fe2 -#: f298076f2da34bc6b0148276f66f26f5 +#: 9d87e15db2c9447c9e88885a3e0c7f97 +#: discord.message.MessageReference.from_message:15 of +msgid "" +"The type of reference to create. Defaults to " +":attr:`MessageReferenceType.default` (reply). .. versionadded:: 2.7" +msgstr "" + +#: 0de7e18170c04f9fa198616b291658b1 +#: discord.message.MessageReference.from_message:15 of +msgid "" +"The type of reference to create. Defaults to " +":attr:`MessageReferenceType.default` (reply)." +msgstr "" + +#: ../../api/data_classes.rst f298076f2da34bc6b0148276f66f26f5 msgid "Returns" msgstr "" #: 7440176a49d948b3838d6425ad4d9117 -#: discord.message.MessageReference.from_message:15 of +#: discord.message.MessageReference.from_message:20 of msgid "A reference to the message." msgstr "" #: b558b9254e9b4404829ca2f6328601fb -#: discord.message.MessageReference.from_message:16 of +#: discord.message.MessageReference.from_message:21 of msgid ":class:`MessageReference`" msgstr "" @@ -2173,7 +2140,9 @@ msgstr "" #: 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`." +msgid "" +"The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an " +":class:`AppEmoji`." msgstr "" #: de4aa6f9efb64b64878511d76ccf83ff discord.message.Message.add_reaction:7 of @@ -2295,28 +2264,43 @@ msgid "" ":class:`.Message`." msgstr "" -#: 0432f057bc24436ab0c9162af0b56320 discord.message.Message.reply:8 of +#: 0432f057bc24436ab0c9162af0b56320 discord.message.Message.forward_to:12 +#: discord.message.Message.reply:8 of msgid "The message that was sent." msgstr "" -#: 815203ab4dd9447daab77ae359e85c30 discord.message.Message.reply:9 of +#: 815203ab4dd9447daab77ae359e85c30 discord.message.Message.forward_to:13 +#: discord.message.Message.reply:9 of msgid ":class:`.Message`" msgstr "" -#: d7a8c5afd03e4ba18c9c5bc654aaa52f discord.message.Message.reply:11 of +#: d7a8c5afd03e4ba18c9c5bc654aaa52f discord.message.Message.forward_to:15 +#: discord.message.Message.reply:11 of msgid "Sending the message failed." msgstr "" -#: discord.message.Message.reply:12 f58e37c02b9346ac8affda2006377756 of +#: discord.message.Message.forward_to:16 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 +#: 2b6ec3e3ab574a20ae37d4d118fb1267 discord.message.Message.forward_to:17 +#: discord.message.Message.reply:13 of msgid "" "The ``files`` list is not of the appropriate size, or you specified " "both ``file`` and ``files``." msgstr "" +#: 6a803b20f30b41499a3154208e1cddbd discord.message.Message.forward_to:3 of +msgid "" +"A shortcut method to :meth:`.abc.Messageable.send` to forward the " +":class:`.Message` to a channel." +msgstr "" + +#: 935d9c5a268d4132998d5ab2b779a4a0 discord.message.Message.forward_to:9 of +msgid "The channel to forward this to." +msgstr "" + #: 303f5f553a71428285d200852504cec9 discord.message.Message.to_reference:1 of msgid "Creates a :class:`~discord.MessageReference` from the current message." msgstr "" @@ -2335,11 +2319,19 @@ msgid "" "not fetch the message." msgstr "" -#: ba9e9d761df54e83b387bd4522433122 discord.message.Message.to_reference:12 of +#: 689db2ebc4e949cbad070710a8741095 discord.message.Message.to_reference:12 of +msgid "The type of message reference. Defaults to a reply. .. versionadded:: 2.7" +msgstr "" + +#: 293efff145294d2eb01067636aec1ced discord.message.Message.to_reference:12 of +msgid "The type of message reference. Defaults to a reply." +msgstr "" + +#: ba9e9d761df54e83b387bd4522433122 discord.message.Message.to_reference:17 of msgid "The reference to this message." msgstr "" -#: 5ed3d2c88b4d4d4a96d200c1bf406751 discord.message.Message.to_reference:13 of +#: 5ed3d2c88b4d4d4a96d200c1bf406751 discord.message.Message.to_reference:18 of msgid ":class:`~discord.MessageReference`" msgstr "" @@ -2532,7 +2524,7 @@ msgstr "" msgid "Whether the attachment is a spoiler." msgstr "" -#: ../../api/data_classes.rst:68 5672173d06bd46829384d84e99bed65e +#: ../../api/data_classes.rst:78 5672173d06bd46829384d84e99bed65e msgid "Embed" msgstr "" @@ -3055,7 +3047,7 @@ msgstr "" msgid "The URL of the provider." msgstr "" -#: ../../api/data_classes.rst:102 646f8ad2d43d4dce987005a50de9a4cf +#: ../../api/data_classes.rst:112 646f8ad2d43d4dce987005a50de9a4cf msgid "Poll" msgstr "" @@ -3220,7 +3212,9 @@ msgid "" msgstr "" #: b006fb5c6c854d799f871d8884228162 discord.poll.PollMedia:15 of -msgid "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" +msgid "" +"Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, " +":class:`PartialEmoji`, :class:`str`]]" msgstr "" #: cf9a1a1afdf34f12bf876e33bccf7739 discord.poll.PollAnswer:1 of @@ -3346,7 +3340,7 @@ msgstr "" msgid "The total number of votes on this poll." msgstr "" -#: ../../api/data_classes.rst:132 43ab35acc0f9434b8e53132a073d8d22 +#: ../../api/data_classes.rst:142 43ab35acc0f9434b8e53132a073d8d22 msgid "Flags" msgstr "" @@ -3691,6 +3685,18 @@ msgstr "" msgid "Returns ``True`` if this message is a voice message." msgstr "" +#: ../../docstring discord.MessageFlags.is_components_v2:1 +#: e59991780d57460db3e98a50cf7bdf3a of +msgid "" +"Returns ``True`` if this message has v2 components. This flag disables " +"sending `content`, `embed`, and `embeds`." +msgstr "" + +#: ../../docstring 649ea51ce00e42e1ad43640c7458e6b0 +#: discord.MessageFlags.has_snapshot:1 of +msgid "Returns ``True`` if this message has a snapshot from message forwarding." +msgstr "" + #: 8dc3ce8bf77f4a4684ab876af0ddf039 discord.flags.AttachmentFlags:1 of msgid "Wraps up the Discord Attachment flags." msgstr "" @@ -3850,6 +3856,13 @@ msgid "" "thread in a :class:`ForumChannel`." msgstr "" +#: ../../docstring dd01266c445141a097c673b102981c4d +#: discord.ChannelFlags.hide_media_download_options:1 of +msgid "" +"Returns ``True`` if the embedded media download options are hidden for " +"the media channel posts." +msgstr "" + #: 32012591b7c94fc08af1f60088606c64 discord.flags.SKUFlags:1 of msgid "Wraps up the Discord SKU flags." msgstr "" @@ -3933,7 +3946,7 @@ msgid "" ":class:`~discord.OnboardingPrompt`." msgstr "" -#: ../../api/data_classes.rst:185 4d2438b9745240cd93782603979ee00b +#: ../../api/data_classes.rst:195 4d2438b9745240cd93782603979ee00b msgid "Colour" msgstr "" @@ -4260,7 +4273,7 @@ msgid "" "\"amoled\"." msgstr "" -#: ../../api/data_classes.rst:193 9905f7d99ac846c088e3402bdc9a380a +#: ../../api/data_classes.rst:203 9905f7d99ac846c088e3402bdc9a380a msgid "Activity" msgstr "" @@ -4511,8 +4524,8 @@ msgstr "" msgid "Returns the game's name." msgstr "" -#: 60ec9c34573a4bfd974edad2940fc120 710eb25609234a2eab35dd6ef26a8672 -#: discord.activity.Game:24 discord.activity.Game:29 of +#: 710eb25609234a2eab35dd6ef26a8672 discord.activity.Game:24 +#: discord.activity.Game:29 of msgid "The game's name." msgstr "" @@ -4644,7 +4657,7 @@ msgstr "" msgid "It always returns :attr:`ActivityType.custom`." msgstr "" -#: ../../api/data_classes.rst:221 60d410b462c140fd9d5d5d85a0ca55ef +#: ../../api/data_classes.rst:231 60d410b462c140fd9d5d5d85a0ca55ef msgid "Permissions" msgstr "" @@ -4797,45 +4810,50 @@ msgstr "" msgid ":attr:`view_guild_insights`" msgstr "" -#: 7b554c4be8944c03a6ef76c5b73eede5 +#: 9233959505d54774aefa37968742a69c #: discord.permissions.Permissions.all_channel:10 of +msgid ":attr:`view_creator_monetization_analytics`" +msgstr "" + +#: 7b554c4be8944c03a6ef76c5b73eede5 +#: discord.permissions.Permissions.all_channel:11 of msgid ":attr:`manage_guild`" msgstr "" #: 7f33532c524d48eeb208f2f316ac7879 -#: discord.permissions.Permissions.all_channel:11 of +#: discord.permissions.Permissions.all_channel:12 of msgid ":attr:`change_nickname`" msgstr "" #: 606ad5d3e5084e568298891c3b0588e7 -#: discord.permissions.Permissions.all_channel:12 of +#: discord.permissions.Permissions.all_channel:13 of msgid ":attr:`manage_nicknames`" msgstr "" #: 48fc50f3db1a4049aa6ed259c0016e20 -#: discord.permissions.Permissions.all_channel:13 of +#: discord.permissions.Permissions.all_channel:14 of msgid ":attr:`kick_members`" msgstr "" -#: discord.permissions.Permissions.all_channel:14 +#: discord.permissions.Permissions.all_channel:15 #: e7d64bc06aef4cc7837d72e3051db957 of msgid ":attr:`ban_members`" msgstr "" #: c502768910914af6a4de9d4bbf12a158 -#: discord.permissions.Permissions.all_channel:15 of +#: discord.permissions.Permissions.all_channel:16 of msgid ":attr:`administrator`" msgstr "" #: 58e62e0ef9144695b99159ad964e9797 -#: discord.permissions.Permissions.all_channel:17 of +#: discord.permissions.Permissions.all_channel:18 of msgid "" "Added :attr:`stream`, :attr:`priority_speaker` and " ":attr:`use_slash_commands` permissions." msgstr "" #: 1ac70319723b451d9c8b3252e52b6e79 -#: discord.permissions.Permissions.all_channel:20 of +#: discord.permissions.Permissions.all_channel:21 of msgid "" "Added :attr:`create_public_threads`, :attr:`create_private_threads`, " ":attr:`manage_threads`, :attr:`use_external_stickers`, " @@ -4862,6 +4880,11 @@ msgid "" "of the general permissions." msgstr "" +#: 58e62e0ef9144695b99159ad964e9797 discord.permissions.Permissions.general:11 +#: of +msgid "Added :attr:`view_creator_monetization_analytics` permission." +msgstr "" + #: 454540f845e641959058f28badf30ad5 #: discord.permissions.Permissions.membership:1 of msgid "" @@ -5217,6 +5240,25 @@ msgstr "" msgid "Returns ``True`` if a user can moderate members (timeout)." msgstr "" +#: ../../docstring 19b7f1d6020a42598e0f34f2792209d2 +#: discord.Permissions.view_creator_monetization_analytics:1 of +msgid "" +"Returns ``True`` if a user can view creator monetization (role " +"subscription) analytics." +msgstr "" + +#: ../../docstring discord.Permissions.use_soundboard:1 +#: ee7d230c69a64cf6bd2fe7b2832f656a of +msgid "Returns ``True`` if a user can use the soundboard in a voice channel." +msgstr "" + +#: ../../docstring discord.Permissions.use_external_sounds:1 +#: ee7d230c69a64cf6bd2fe7b2832f656a of +msgid "" +"Returns ``True`` if a user can use external soundboard sounds in a voice " +"channel." +msgstr "" + #: ../../docstring 21e49f2607d948d1aac14cf0bde7222d #: discord.Permissions.send_voice_messages:1 of msgid "Returns ``True`` if a member can send voice messages." @@ -5333,7 +5375,7 @@ msgstr "" msgid "A list of key/value pairs to bulk update with." msgstr "" -#: ../../api/data_classes.rst:234 9b867a9572674a3a8c8653b44c9f9b72 +#: ../../api/data_classes.rst:244 9b867a9572674a3a8c8653b44c9f9b72 msgid "Application Role Connections" msgstr "" @@ -5373,7 +5415,7 @@ msgid "" "valid locales." msgstr "" -#: 246b61db68854beb9cb72d12dc9cfd40 4f3b424badea44d289a8fba4635a8270 +#: 246b61db68854beb9cb72d12dc9cfd40 #: discord.application_role_connection.ApplicationRoleConnectionMetadata:23 of msgid "" "The description localizations for this metadata field. The values of this" @@ -5388,3 +5430,18 @@ msgstr "" #~ ":class:`StageChannel`]" #~ msgstr "" +#~ msgid ":class:`Emoji`" +#~ msgstr "" + +#~ msgid "" +#~ "Measures latency between a HEARTBEAT and" +#~ " a HEARTBEAT_ACK in seconds for this" +#~ " shard." +#~ msgstr "" + +#~ msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +#~ msgstr "" + +#~ msgid "Optional[Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]]" +#~ msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/enums.po b/docs/locales/en/LC_MESSAGES/api/enums.po index 51a00f2498..de7337e361 100644 --- a/docs/locales/en/LC_MESSAGES/api/enums.po +++ b/docs/locales/en/LC_MESSAGES/api/enums.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-13 10:18+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../api/enums.rst:7 62a3a42200714266a982a184b801615b msgid "Enumerations" @@ -1548,7 +1548,7 @@ msgstr "" #: 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." +" :class:`GuildEmoji` or :class:`Object` with the emoji ID." msgstr "" #: ../../api/enums.rst:1201 68f03695f66b4169a03ed9c1dc80389f @@ -2789,6 +2789,36 @@ msgstr "" msgid "The interaction is in a private DM or group DM channel." msgstr "" +#: ../../api/enums.rst:2507 01f2e91f4fb944b997dd5067e60a8289 +msgid "Represents a subscription's status." +msgstr "" + +#: ../../api/enums.rst:2513 08e8ab3b99434be989a53c61cc38f780 +msgid "The subscription is active and is scheduled to renew." +msgstr "" + +#: ../../api/enums.rst:2517 778b0c4eee34445e9b6374dde9251089 +msgid "The subscription is active but will not renew." +msgstr "" + +#: ../../api/enums.rst:2521 da88c67afa8d45e8965b9e7defd425cb +msgid "" +"The subscription is inactive and the subscription owner is not being " +"charged." +msgstr "" + +#: ../../api/enums.rst:2526 df2d552101134de0b37f9bc3f1fe64a5 +msgid "Represents the padding size around a separator component." +msgstr "" + +#: ../../api/enums.rst:2532 5d1855c5f1104662bfa445de38ae412d +msgid "The separator uses small padding." +msgstr "" + +#: ../../api/enums.rst:2536 7974579a64184f3f94acaca0d00878aa +msgid "The separator uses large padding." +msgstr "" + #~ msgid "" #~ "Represents a component based interaction, " #~ "i.e. using the Discord Bot UI Kit." @@ -2797,3 +2827,10 @@ msgstr "" #~ msgid "Represents a modal based interaction." #~ msgstr "" +#~ msgid "" +#~ "When this is the action, the type" +#~ " of :attr:`~AuditLogEntry.target` is the " +#~ ":class:`Emoji` or :class:`Object` with the " +#~ "emoji ID." +#~ msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/events.po b/docs/locales/en/LC_MESSAGES/api/events.po index a6dca11baf..c50324cbe7 100644 --- a/docs/locales/en/LC_MESSAGES/api/events.po +++ b/docs/locales/en/LC_MESSAGES/api/events.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"POT-Creation-Date: 2025-02-24 14:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../api/events.rst:6 b2b93f092885467db7bfd392648d888f msgid "Event Reference" @@ -61,52 +61,24 @@ msgstr "" msgid "Called when an application command is received." msgstr "" -#: ../../api/events.rst 0450b87209e04abf999c6d16346f74ad -#: 0d00d17e652745278bde98e5a9baac57 0d3719138c324b9b86dfd4e1f7c983c2 +#: ../../api/events.rst 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 +#: 17839a738d044231b7bb90c4f01bdc9b 349abfcdf56240438f5690772fe0a18d +#: 450ea7dd8b0742b6a95034bc736a0b26 47834821ad7340b2a0c1b302cf59221a +#: 4f354ed77ba74f58a8bfe8f9e4523bc8 69f16d3ebdce40d299735d1b99859fc4 +#: 69f826f1232a4d53a56d0d5f09d6091a 6dab0c0a2e24494ab8395fce18a6640a #: 73dad0dff0974575a4f932f888e57e50 743a2e37a02c4c5fb8f7dd22c8217882 #: 78208569a83144aa920b951012b5ce70 78efea9536c547dea9bcf4f0fb904c57 -#: 80f30be1218d4627ac862062d98f65b9 81c162aa46b14ab0a333ed9962606f0a -#: 8432d53ccc6b4c218b0be97b5c783d06 847adddbea6a47e4b9b7e13a7f352ad5 +#: 81c162aa46b14ab0a333ed9962606f0a 8432d53ccc6b4c218b0be97b5c783d06 #: 8ae7a130296f41c286012b115ac400f6 8f134176570e4223ac70dfaf54649fd3 -#: 8f50058a92a84b47a4211733aacacd7e 900882c0284c4bc4a079c467bf577de2 -#: 962d87d49ce14c0ea1cceabda7c9cc2d 96b417dff47e45afba7e2b6cd8b168f6 -#: 99b1f8fedb1a4fab9e06d830c354345b 99b97506806e4f40b1382cef723cca78 -#: 9a16c00d4a624d2aa7e42be17f5e9e41 9ac90eb414af4d83b9c363cc85e04e26 -#: 9d17e39474da4efb97dc8dba285d4e27 a2a4098c99f44db3990a9980266e23aa +#: 900882c0284c4bc4a079c467bf577de2 96b417dff47e45afba7e2b6cd8b168f6 +#: 99b1f8fedb1a4fab9e06d830c354345b 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 +#: b04fccd185f843d1aca16ec4a414e75c be24ecbc72b54a3390c05a17b44d15b6 +#: cf1af74adcc940c6b88151caa220ceb0 d057103729ff4f3b8dbe93fe0bc1262e +#: e3455443ac954b88b181ebe074279d1a f19251d202354981b849ab1942b91951 +#: f4f36adbe07941dbb50a3375686a7f96 fb18645345c14733936ee43bac2428ab #: fe865df5dd99489498c73d866ac670dc msgid "Parameters" msgstr "" @@ -173,22 +145,14 @@ msgid "" " 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 +#: ../../api/events.rst:126 ../../api/events.rst:574 ../../api/events.rst:669 +#: ../../api/events.rst:808 ../../api/events.rst:821 ../../api/events.rst:874 +#: ../../api/events.rst:901 ../../api/events.rst:926 ../../api/events.rst:963 +#: ../../api/events.rst:995 ../../api/events.rst:1018 ../../api/events.rst:1043 +#: ../../api/events.rst:1170 ../../api/events.rst:1194 +#: ../../api/events.rst:1293 ../../api/events.rst:1320 +#: ../../api/events.rst:1354 2c7f1cc4edff4bc29e8b8268e06aa93e #: 6214e4ff9d514cadbf5a0815af3cccaa 6b8bd14634da4b118afbfe9e49e3beb1 -#: 6bea76946d334a7996bd35f353135667 776fe87242094fc881ad350436325a2a -#: 7c6afb134ff248edbef99cd378aeac64 83f294fe23f6474ba62680e79b9ecfee -#: 940bd659eeb745b2b753faf7238ee8fe 97da3d1b88d84c68a282dfdb9f98fbb3 -#: ac6d84c776ef4acaa1b57da19160c5d3 b5f3a3acf81442c49df4b0db70f59a29 -#: cebb871f992f4011aea78bd0c12995fb msgid "The raw event payload data." msgstr "" @@ -285,13 +249,10 @@ msgstr "" 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 +#: ../../api/events.rst:203 ../../api/events.rst:753 ../../api/events.rst:776 +#: ../../api/events.rst:793 ../../api/events.rst:806 ../../api/events.rst:819 +#: ../../api/events.rst:846 ../../api/events.rst:872 +#: cb3213b1115949de9bb856d6d491d2ac e55034f9969343d990011bfeb8b17ce5 msgid "This requires :attr:`Intents.messages` to be enabled." msgstr "" @@ -325,19 +286,13 @@ msgid "" 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 +#: ../../api/events.rst:420 ../../api/events.rst:439 ../../api/events.rst:453 +#: ../../api/events.rst:467 ../../api/events.rst:476 ../../api/events.rst:517 +#: ../../api/events.rst:1233 ../../api/events.rst:1246 +#: ../../api/events.rst:1259 ../../api/events.rst:1281 +#: ../../api/events.rst:1329 ../../api/events.rst:1350 +#: 3ad5cbd41ddb4c8e847d8f8ac5f8c3e6 5d355f08e7f145bc97271086b10d0260 +#: f28de120c204470e8efc2483a3ec3ec3 f9ffac6969464760865bea86217e862e msgid "This requires :attr:`Intents.guilds` to be enabled." msgstr "" @@ -576,261 +531,220 @@ msgid "" "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 +#: ../../api/events.rst:414 4dfcfdb6c0064ac3b4f73a5d1c00da93 msgid "Guilds" msgstr "" -#: ../../api/events.rst:453 20311648994641ae8ff17f72b5da9d99 +#: ../../api/events.rst:417 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 +#: ../../api/events.rst:422 ea6e535b185f4d968990adf6893c7de0 msgid "The guild that was joined." msgstr "" -#: ../../api/events.rst:463 070a63745b6849fbbeab2bf0a1b4e515 +#: ../../api/events.rst:427 070a63745b6849fbbeab2bf0a1b4e515 msgid "Called when a :class:`Guild` is removed from the :class:`Client`." msgstr "" -#: ../../api/events.rst:465 5d6cba70019f45f3ad96f5ec0a2594cc +#: ../../api/events.rst:429 5d6cba70019f45f3ad96f5ec0a2594cc msgid "This happens through, but not limited to, these circumstances:" msgstr "" -#: ../../api/events.rst:467 51b0d21974c1475a806ed37c3782ff11 +#: ../../api/events.rst:431 51b0d21974c1475a806ed37c3782ff11 msgid "The client got banned." msgstr "" -#: ../../api/events.rst:468 ff9e9e053e6049889fca38347497fb96 +#: ../../api/events.rst:432 ff9e9e053e6049889fca38347497fb96 msgid "The client got kicked." msgstr "" -#: ../../api/events.rst:469 1ed4f7c318cb43ce8b62cb081fe6a0b1 +#: ../../api/events.rst:433 1ed4f7c318cb43ce8b62cb081fe6a0b1 msgid "The client left the guild." msgstr "" -#: ../../api/events.rst:470 ec3900333c3f461bb2ad0cc95bc5ef2d +#: ../../api/events.rst:434 ec3900333c3f461bb2ad0cc95bc5ef2d msgid "The client or the guild owner deleted the guild." msgstr "" -#: ../../api/events.rst:472 c09fcb5ca235482a9dee894607af5aa1 +#: ../../api/events.rst:436 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 +#: ../../api/events.rst:441 a83039edb3ba4814a286c7e322c10728 msgid "The guild that got removed." msgstr "" -#: ../../api/events.rst:482 1e90656c38f64056af4b1e544753df18 +#: ../../api/events.rst:446 1e90656c38f64056af4b1e544753df18 msgid "Called when a :class:`Guild` is updated, for example:" msgstr "" -#: ../../api/events.rst:484 422f145b8062401c84f76756bb9820e2 +#: ../../api/events.rst:448 422f145b8062401c84f76756bb9820e2 msgid "Changed name" msgstr "" -#: ../../api/events.rst:485 cbab865be7764aefa53002b353147cda +#: ../../api/events.rst:449 cbab865be7764aefa53002b353147cda msgid "Changed AFK channel" msgstr "" -#: ../../api/events.rst:486 deebcf9e947142edbdbcb28d9c54c4a6 +#: ../../api/events.rst:450 deebcf9e947142edbdbcb28d9c54c4a6 msgid "Changed AFK timeout" msgstr "" -#: ../../api/events.rst:487 e5891580f33b405da90cd749c059cb8f +#: ../../api/events.rst:451 e5891580f33b405da90cd749c059cb8f msgid "etc." msgstr "" -#: ../../api/events.rst:491 a8cffe8722014b508fe234b456e99add +#: ../../api/events.rst:455 a8cffe8722014b508fe234b456e99add msgid "The guild prior to being updated." msgstr "" -#: ../../api/events.rst:493 09559bb331d54c818d9456c9e50dccc8 +#: ../../api/events.rst:457 09559bb331d54c818d9456c9e50dccc8 msgid "The guild after being updated." msgstr "" -#: ../../api/events.rst:499 4926a01720844942bb4fbe2214b41d5d +#: ../../api/events.rst:463 4926a01720844942bb4fbe2214b41d5d msgid "Called when a :class:`Guild` creates or deletes a :class:`Role`." msgstr "" -#: ../../api/events.rst:501 26919d02a3764b4bb306d4b2bb402aac +#: ../../api/events.rst:465 26919d02a3764b4bb306d4b2bb402aac msgid "To get the guild it belongs to, use :attr:`Role.guild`." msgstr "" -#: ../../api/events.rst:505 1ff07f75468541b38b5b8945ccec0b63 +#: ../../api/events.rst:469 1ff07f75468541b38b5b8945ccec0b63 msgid "The role that was created or deleted." msgstr "" -#: ../../api/events.rst:510 f7dd6519c06844c08e5241b1559491a5 +#: ../../api/events.rst:474 f7dd6519c06844c08e5241b1559491a5 msgid "Called when a :class:`Role` is changed guild-wide." msgstr "" -#: ../../api/events.rst:514 f1b5a9b9b024439d9ed75c18e938f390 +#: ../../api/events.rst:478 f1b5a9b9b024439d9ed75c18e938f390 msgid "The updated role's old info." msgstr "" -#: ../../api/events.rst:516 1ff66a23bf0d491cb53e831bae382c88 +#: ../../api/events.rst:480 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`." +#: ../../api/events.rst:485 8cbae07e47ba4cdebe69ec4076d665f9 +msgid "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." msgstr "" -#: ../../api/events.rst:523 ../../api/events.rst:536 -#: 7d54c1f8e6e74a72b35f12482d5961b4 f67a33188bb34272a8889e369b01d223 +#: ../../api/events.rst:487 ../../api/events.rst:500 +#: 7d54c1f8e6e74a72b35f12482d5961b4 msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." msgstr "" -#: ../../api/events.rst:525 73965f3cab494980aa9dd819ffd29c0b +#: ../../api/events.rst:489 73965f3cab494980aa9dd819ffd29c0b msgid "The guild who got their emojis updated." msgstr "" -#: ../../api/events.rst:527 fe7eb70f2c4a42d88b47e0e0c2137c58 +#: ../../api/events.rst:491 fe7eb70f2c4a42d88b47e0e0c2137c58 msgid "A list of emojis before the update." msgstr "" -#: ../../api/events.rst:529 0b5a5ffd3b384bb8b875fd343f7d22a6 +#: ../../api/events.rst:493 0b5a5ffd3b384bb8b875fd343f7d22a6 msgid "A list of emojis after the update." msgstr "" -#: ../../api/events.rst:534 7b8bb01b2d34498da90bd94b2c350575 +#: ../../api/events.rst:498 7b8bb01b2d34498da90bd94b2c350575 msgid "Called when a :class:`Guild` adds or removes a sticker." msgstr "" -#: ../../api/events.rst:540 1fae23769a4342888fab8d136a77ec99 +#: ../../api/events.rst:504 1fae23769a4342888fab8d136a77ec99 msgid "The guild who got their stickers updated." msgstr "" -#: ../../api/events.rst:542 b36c6dcfc18940f9abb2e0f888efff66 +#: ../../api/events.rst:506 b36c6dcfc18940f9abb2e0f888efff66 msgid "A list of stickers before the update." msgstr "" -#: ../../api/events.rst:544 cd05518a2d924fd68974c2f5ea934b34 +#: ../../api/events.rst:508 cd05518a2d924fd68974c2f5ea934b34 msgid "A list of stickers after the update." msgstr "" -#: ../../api/events.rst:550 3c8f786f39b7401bb26040a54f057dc1 +#: ../../api/events.rst:514 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 +#: ../../api/events.rst:519 c35fb39492e5426aa2d9ea96218afa36 msgid "The guild that has changed availability." msgstr "" -#: ../../api/events.rst:560 6b348d1a6bcb4fd483811fb2f1f365d5 +#: ../../api/events.rst:524 6b348d1a6bcb4fd483811fb2f1f365d5 msgid "" "Called whenever a webhook is created, modified, or removed from a guild " "channel." msgstr "" -#: ../../api/events.rst:562 a4440117ae634b6681222e5129783348 +#: ../../api/events.rst:526 a4440117ae634b6681222e5129783348 msgid "This requires :attr:`Intents.webhooks` to be enabled." msgstr "" -#: ../../api/events.rst:564 e31dea0d4cf244af992bdf2f321a7013 +#: ../../api/events.rst:528 e31dea0d4cf244af992bdf2f321a7013 msgid "The channel that had its webhooks updated." msgstr "" -#: ../../api/events.rst:568 4c52e96a47324217a4defdba08ed9919 +#: ../../api/events.rst:532 4c52e96a47324217a4defdba08ed9919 msgid "Integrations" msgstr "" -#: ../../api/events.rst:571 a6000695a11241f1b80ace12ef5bd409 +#: ../../api/events.rst:535 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 +#: ../../api/events.rst:537 ../../api/events.rst:548 ../../api/events.rst:559 +#: ../../api/events.rst:570 a5ca1990b43345bebb2c1cb83f07bb00 +#: b5b38af536e54fbe8712c1ed8deb7547 msgid "This requires :attr:`Intents.integrations` to be enabled." msgstr "" -#: ../../api/events.rst:577 7cd3123072c84da0b5786b9c2dceed48 +#: ../../api/events.rst:541 7cd3123072c84da0b5786b9c2dceed48 msgid "The guild that had its integrations updated." msgstr "" -#: ../../api/events.rst:582 c09a7f4e3d20488fa04c4baa6e222d0c +#: ../../api/events.rst:546 c09a7f4e3d20488fa04c4baa6e222d0c msgid "Called when an integration is created." msgstr "" -#: ../../api/events.rst:588 ../../api/events.rst:599 -#: 060f67ac9b304260a34915be922f68c1 7f9c50d99dd24e9fac1bc3fee804ca53 +#: ../../api/events.rst:552 ../../api/events.rst:563 +#: 7f9c50d99dd24e9fac1bc3fee804ca53 msgid "The integration that was created." msgstr "" -#: ../../api/events.rst:593 184033097d74474fb4d5a9e187a0eb1b +#: ../../api/events.rst:557 184033097d74474fb4d5a9e187a0eb1b msgid "Called when an integration is updated." msgstr "" -#: ../../api/events.rst:604 da531782f86c4b52b37c365448ee9f07 +#: ../../api/events.rst:568 da531782f86c4b52b37c365448ee9f07 msgid "Called when an integration is deleted." msgstr "" -#: ../../api/events.rst:614 cfb2b057b0c1472cb4d3eee5331ae7ae +#: ../../api/events.rst:578 cfb2b057b0c1472cb4d3eee5331ae7ae msgid "Interactions" msgstr "" -#: ../../api/events.rst:617 53db6b926a804818a95dc3ff07ce5e99 +#: ../../api/events.rst:581 53db6b926a804818a95dc3ff07ce5e99 msgid "Called when an interaction happened." msgstr "" -#: ../../api/events.rst:619 3ebdd96f98e9443a8d255dc81f17e869 +#: ../../api/events.rst:583 3ebdd96f98e9443a8d255dc81f17e869 msgid "" "This currently happens due to application command invocations or " "components being used." msgstr "" -#: ../../api/events.rst:623 2689cfaa9dd24275b9870faf19ad2f56 +#: ../../api/events.rst:587 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 " @@ -838,234 +752,230 @@ msgid "" "experience." msgstr "" -#: ../../api/events.rst:629 5036e83617bf4ba58f9fcb428bc0680d +#: ../../api/events.rst:593 5036e83617bf4ba58f9fcb428bc0680d msgid "The interaction data." msgstr "" -#: ../../api/events.rst:633 6973c117b78e4a2ebc6825aacb60698c +#: ../../api/events.rst:597 6973c117b78e4a2ebc6825aacb60698c msgid "Invites" msgstr "" -#: ../../api/events.rst:636 ae71ea8985fa469282da5f31bdaf7446 +#: ../../api/events.rst:600 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 +#: ../../api/events.rst:607 ../../api/events.rst:624 +#: 812b6d18d5a946d9bf0784367bb3affd 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 +#: ../../api/events.rst:610 ../../api/events.rst:630 +#: 3cf7be58f5b4432ca452bf28c48129e9 msgid "This requires :attr:`Intents.invites` to be enabled." msgstr "" -#: ../../api/events.rst:648 088d046716804d73b129d0bf49e473bb +#: ../../api/events.rst:612 088d046716804d73b129d0bf49e473bb msgid "The invite that was created." msgstr "" -#: ../../api/events.rst:653 dab222e69c2c439887152238901a2947 +#: ../../api/events.rst:617 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 +#: ../../api/events.rst:627 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 +#: ../../api/events.rst:632 2af6321a181640749c67d39cf154ad77 msgid "The invite that was deleted." msgstr "" -#: ../../api/events.rst:672 cc2adb6fe784475a94c0c0e32b9bac4c +#: ../../api/events.rst:636 cc2adb6fe784475a94c0c0e32b9bac4c msgid "Members/Users" msgstr "" -#: ../../api/events.rst:675 59e3a422d23b4ebe987e2ae3ec18c6dc +#: ../../api/events.rst:639 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 +#: ../../api/events.rst:641 ../../api/events.rst:654 ../../api/events.rst:665 +#: ../../api/events.rst:684 ../../api/events.rst:740 ../../api/events.rst:1303 +#: ../../api/events.rst:1316 8c500bf67b4947efbccd591b47e807d3 msgid "This requires :attr:`Intents.members` to be enabled." msgstr "" -#: ../../api/events.rst:679 51b1cf557f3b4b28a31d47b008c958e5 +#: ../../api/events.rst:643 51b1cf557f3b4b28a31d47b008c958e5 msgid "The member who joined." msgstr "" -#: ../../api/events.rst:684 4bdb0182507c45c8b03ae52c0d7fe188 +#: ../../api/events.rst:648 4bdb0182507c45c8b03ae52c0d7fe188 msgid "Called when a :class:`Member` leaves a :class:`Guild`." msgstr "" -#: ../../api/events.rst:686 659720c167f64e42b9d9d1052d9709a6 +#: ../../api/events.rst:650 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 +#: ../../api/events.rst:656 3fd5f443082f4f50ab9d14d965e5906c msgid "The member who left." msgstr "" -#: ../../api/events.rst:697 bfd4357c25b649b89eb3bf3b2f0cc0c6 +#: ../../api/events.rst:661 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 +#: ../../api/events.rst:674 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 +#: ../../api/events.rst:676 ../../api/events.rst:695 ../../api/events.rst:733 +#: 9c0d0062f4524f09afc01922b6880478 msgid "This is called when one or more of the following things change:" msgstr "" -#: ../../api/events.rst:714 636b715442114d74b10fffcb5ea1f423 +#: ../../api/events.rst:678 636b715442114d74b10fffcb5ea1f423 msgid "nickname" msgstr "" -#: ../../api/events.rst:715 72c18648ea0441579e75a0809dda2be0 +#: ../../api/events.rst:679 72c18648ea0441579e75a0809dda2be0 msgid "roles" msgstr "" -#: ../../api/events.rst:716 32412ad2806a4c19a0b79bd9de971467 +#: ../../api/events.rst:680 32412ad2806a4c19a0b79bd9de971467 msgid "pending" msgstr "" -#: ../../api/events.rst:717 23c7215831354f6eaa85e8cfa1a70f3e +#: ../../api/events.rst:681 23c7215831354f6eaa85e8cfa1a70f3e msgid "communication_disabled_until" msgstr "" -#: ../../api/events.rst:718 dfb5abcb569a43c7acb95e5da9c81b39 +#: ../../api/events.rst:682 dfb5abcb569a43c7acb95e5da9c81b39 msgid "timed_out" msgstr "" -#: ../../api/events.rst:722 ../../api/events.rst:740 -#: 3c202860a49f49fe90fce486a871deb3 725047654176421eb19576468343096f +#: ../../api/events.rst:686 ../../api/events.rst:704 +#: 725047654176421eb19576468343096f msgid "The updated member's old info." msgstr "" -#: ../../api/events.rst:724 ../../api/events.rst:742 -#: 4a04609fc50046328661598fbb671487 efbf85ad83644356bf043efa7cd58731 +#: ../../api/events.rst:688 ../../api/events.rst:706 +#: 4a04609fc50046328661598fbb671487 msgid "The updated member's updated info." msgstr "" -#: ../../api/events.rst:729 1dee8a81bb94444cb7bc2ddf2fab5117 +#: ../../api/events.rst:693 1dee8a81bb94444cb7bc2ddf2fab5117 msgid "Called when a :class:`Member` updates their presence." msgstr "" -#: ../../api/events.rst:733 1a275606817640eb8e06ee192f0f607b +#: ../../api/events.rst:697 1a275606817640eb8e06ee192f0f607b msgid "status" msgstr "" -#: ../../api/events.rst:734 9f977430a74e4863afee82b21fcbf311 +#: ../../api/events.rst:698 9f977430a74e4863afee82b21fcbf311 msgid "activity" msgstr "" -#: ../../api/events.rst:736 765cb25bca1e473d8f12775b7c880b4f +#: ../../api/events.rst:700 765cb25bca1e473d8f12775b7c880b4f msgid "" "This requires :attr:`Intents.presences` and :attr:`Intents.members` to be" " enabled." msgstr "" -#: ../../api/events.rst:747 a4a83d5acfa848f298585ef71e363a26 +#: ../../api/events.rst:711 a4a83d5acfa848f298585ef71e363a26 msgid "Called when a :class:`Member` changes their :class:`VoiceState`." msgstr "" -#: ../../api/events.rst:749 ../../api/events.rst:1177 -#: 0c77a95ffd774442b4de3a3305b391f4 79633923465b40b68645223137732d3e +#: ../../api/events.rst:713 ../../api/events.rst:1213 +#: 0c77a95ffd774442b4de3a3305b391f4 msgid "" "The following, but not limited to, examples illustrate when this event is" " called:" msgstr "" -#: ../../api/events.rst:751 2bdb0897344a4989a02198ce2b493750 +#: ../../api/events.rst:715 2bdb0897344a4989a02198ce2b493750 msgid "A member joins a voice or stage channel." msgstr "" -#: ../../api/events.rst:752 a2d0ec0a66f44b798dbfdf16e54cf5f4 +#: ../../api/events.rst:716 a2d0ec0a66f44b798dbfdf16e54cf5f4 msgid "A member leaves a voice or stage channel." msgstr "" -#: ../../api/events.rst:753 906d40a6e6c54fa48a691ea0742aefcd +#: ../../api/events.rst:717 906d40a6e6c54fa48a691ea0742aefcd msgid "A member is muted or deafened by their own accord." msgstr "" -#: ../../api/events.rst:754 bae40f0b39be405a95122a36592e4a53 +#: ../../api/events.rst:718 bae40f0b39be405a95122a36592e4a53 msgid "A member is muted or deafened by a guild administrator." msgstr "" -#: ../../api/events.rst:756 1c7f2baeafaf4301bfd220ebeb3936ea +#: ../../api/events.rst:720 1c7f2baeafaf4301bfd220ebeb3936ea msgid "This requires :attr:`Intents.voice_states` to be enabled." msgstr "" -#: ../../api/events.rst:758 0da0ec4c5bc04aaab41c2ad70e357a81 +#: ../../api/events.rst:722 0da0ec4c5bc04aaab41c2ad70e357a81 msgid "The member whose voice states changed." msgstr "" -#: ../../api/events.rst:760 3b6875267fcb48fea947ebbc069ac8e3 +#: ../../api/events.rst:724 3b6875267fcb48fea947ebbc069ac8e3 msgid "The voice state prior to the changes." msgstr "" -#: ../../api/events.rst:762 88099f60004742219109afd6e44eadff +#: ../../api/events.rst:726 88099f60004742219109afd6e44eadff msgid "The voice state after the changes." msgstr "" -#: ../../api/events.rst:767 525d8057d8ac440b9f12215a99861567 +#: ../../api/events.rst:731 525d8057d8ac440b9f12215a99861567 msgid "Called when a :class:`User` updates their profile." msgstr "" -#: ../../api/events.rst:771 f8f87a7c98ed4b2f928b30556b4fa7b7 +#: ../../api/events.rst:735 f8f87a7c98ed4b2f928b30556b4fa7b7 msgid "avatar" msgstr "" -#: ../../api/events.rst:772 599d96b1a33b4f199c8d33b53feb03be +#: ../../api/events.rst:736 599d96b1a33b4f199c8d33b53feb03be msgid "username" msgstr "" -#: ../../api/events.rst:773 e0ee257c4fb84b0d9c81e54f1137853d +#: ../../api/events.rst:737 e0ee257c4fb84b0d9c81e54f1137853d msgid "discriminator" msgstr "" -#: ../../api/events.rst:774 32ad7813f11149efa7fa506c96845ed4 +#: ../../api/events.rst:738 32ad7813f11149efa7fa506c96845ed4 msgid "global_name" msgstr "" -#: ../../api/events.rst:778 b7fa74d14bdc43d68246734145009b99 +#: ../../api/events.rst:742 b7fa74d14bdc43d68246734145009b99 msgid "The updated user's old info." msgstr "" -#: ../../api/events.rst:780 9ba6bc5b6bbb4eaea29046092573c451 +#: ../../api/events.rst:744 9ba6bc5b6bbb4eaea29046092573c451 msgid "The updated user's updated info." msgstr "" -#: ../../api/events.rst:784 7abff70b9dca4670aa6d4733ba79f565 +#: ../../api/events.rst:748 7abff70b9dca4670aa6d4733ba79f565 msgid "Messages" msgstr "" -#: ../../api/events.rst:787 82baa07e4f7c4be7b944e0382240ef7e +#: ../../api/events.rst:751 82baa07e4f7c4be7b944e0382240ef7e msgid "Called when a :class:`Message` is created and sent." msgstr "" -#: ../../api/events.rst:793 e221d3668fa64676b963ba741fcd5174 +#: ../../api/events.rst:757 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 " @@ -1074,11 +984,11 @@ msgid "" "problem." msgstr "" -#: ../../api/events.rst:799 192f3d3b79e047c4b51ec51f981e33b7 +#: ../../api/events.rst:763 192f3d3b79e047c4b51ec51f981e33b7 msgid "The current message." msgstr "" -#: ../../api/events.rst:804 7b25830b67764d73a3031060cc579689 +#: ../../api/events.rst:768 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 " @@ -1086,17 +996,17 @@ msgid "" "participating in high traffic guilds." msgstr "" -#: ../../api/events.rst:809 ad4a7fb8f74444bb8d146c990732bb91 +#: ../../api/events.rst:773 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 +#: ../../api/events.rst:778 a428153671394c76966c2a2f9024abcf msgid "The deleted message." msgstr "" -#: ../../api/events.rst:819 095b22a1f2f24220ac745a7a4fdc391c +#: ../../api/events.rst:783 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 " @@ -1107,43 +1017,43 @@ msgid "" "guilds." msgstr "" -#: ../../api/events.rst:826 26e2709b7f5540ec85c1bb0c0a606eb3 +#: ../../api/events.rst:790 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 +#: ../../api/events.rst:795 9ce00566593447c492ca1278f8511426 msgid "The messages that have been deleted." msgstr "" -#: ../../api/events.rst:836 10a8f337e50f4b8d898d4a2a2d6d795e +#: ../../api/events.rst:800 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 +#: ../../api/events.rst:803 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 +#: ../../api/events.rst:813 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 +#: ../../api/events.rst:816 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 +#: ../../api/events.rst:826 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" @@ -1151,61 +1061,61 @@ msgid "" "client is participating in high traffic guilds." msgstr "" -#: ../../api/events.rst:867 2824fa05ca1a4c06892fcc7588ddd6d8 +#: ../../api/events.rst:831 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 +#: ../../api/events.rst:834 9335cc2da527455584f33d3799b39d7d msgid "The following non-exhaustive cases trigger this event:" msgstr "" -#: ../../api/events.rst:872 53861c9cc0f64565af31bcc8356d1596 +#: ../../api/events.rst:836 53861c9cc0f64565af31bcc8356d1596 msgid "A message has been pinned or unpinned." msgstr "" -#: ../../api/events.rst:873 308d8ed1000e42cf94bd6253c7eee766 +#: ../../api/events.rst:837 308d8ed1000e42cf94bd6253c7eee766 msgid "The message content has been changed." msgstr "" -#: ../../api/events.rst:874 066a5520d3c14022b153532fb10de9ca +#: ../../api/events.rst:838 066a5520d3c14022b153532fb10de9ca msgid "The message has received an embed." msgstr "" -#: ../../api/events.rst:876 0af62deae9b743988d34523a50c3d13a +#: ../../api/events.rst:840 0af62deae9b743988d34523a50c3d13a msgid "" "For performance reasons, the embed server does not do this in a " "\"consistent\" manner." msgstr "" -#: ../../api/events.rst:878 b0864434abef4d4f9c3b7fb53099a72e +#: ../../api/events.rst:842 b0864434abef4d4f9c3b7fb53099a72e msgid "The message's embeds were suppressed or unsuppressed." msgstr "" -#: ../../api/events.rst:879 0f327a0f417a439eab5204a3f58142bb +#: ../../api/events.rst:843 0f327a0f417a439eab5204a3f58142bb msgid "A call message has received an update to its participants or ending time." msgstr "" -#: ../../api/events.rst:880 497e563c063242e7b911450f5531d398 +#: ../../api/events.rst:844 497e563c063242e7b911450f5531d398 msgid "A poll has ended and the results have been finalized." msgstr "" -#: ../../api/events.rst:884 d43cb6b0601a480684fa45bddbf78ded +#: ../../api/events.rst:848 d43cb6b0601a480684fa45bddbf78ded msgid "The previous version of the message." msgstr "" -#: ../../api/events.rst:886 7a7d3bc5be514a42acadd0236c90968a +#: ../../api/events.rst:850 7a7d3bc5be514a42acadd0236c90968a msgid "The current version of the message." msgstr "" -#: ../../api/events.rst:891 dd5375656537461f878930425fd44d9e +#: ../../api/events.rst:855 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 +#: ../../api/events.rst:858 acb34759c383410297e89a9ab9014412 msgid "" "If the message is found in the message cache, it can be accessed via " ":attr:`RawMessageUpdateEvent.cached_message`. The cached message " @@ -1217,14 +1127,14 @@ msgid "" "was modified." msgstr "" -#: ../../api/events.rst:900 ae06f1f32c284364a9fcc8766cd567cc +#: ../../api/events.rst:864 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 +#: ../../api/events.rst:867 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 " @@ -1233,11 +1143,11 @@ msgid "" "Discord embed server." msgstr "" -#: ../../api/events.rst:914 407e56cbd8894cc7bfead844affa902e +#: ../../api/events.rst:878 407e56cbd8894cc7bfead844affa902e msgid "Polls" msgstr "" -#: ../../api/events.rst:917 a9b8e9767e884d369172fb6ab1841177 +#: ../../api/events.rst:881 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" @@ -1245,34 +1155,32 @@ msgid "" ":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 +#: ../../api/events.rst:885 ../../api/events.rst:899 ../../api/events.rst:910 +#: ../../api/events.rst:924 cf97ca5ad27a4e5fbbe4f583cc89dc60 msgid "This requires :attr:`Intents.polls` to be enabled." msgstr "" -#: ../../api/events.rst:923 ../../api/events.rst:948 -#: 258ead003f2243f494b187adccae34fa ff747bd5556c4a8d9167ea03a335f344 +#: ../../api/events.rst:887 ../../api/events.rst:912 +#: 258ead003f2243f494b187adccae34fa msgid "The current state of the poll." msgstr "" -#: ../../api/events.rst:925 57e5c2cd8fde48a285c0585219a834ef +#: ../../api/events.rst:889 57e5c2cd8fde48a285c0585219a834ef msgid "The user who added the vote." msgstr "" -#: ../../api/events.rst:927 ../../api/events.rst:952 -#: 90a34ed5976846189bfc2190e990abdf b9bc568e4f2143f2b176e85afef48e8e +#: ../../api/events.rst:891 ../../api/events.rst:916 +#: 90a34ed5976846189bfc2190e990abdf msgid "The answer that was voted." msgstr "" -#: ../../api/events.rst:932 ee4f3182cf624af0b171db60500aa13a +#: ../../api/events.rst:896 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 +#: ../../api/events.rst:906 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 " @@ -1280,22 +1188,22 @@ msgid "" ":func:`on_raw_poll_vote_remove` instead." msgstr "" -#: ../../api/events.rst:950 5f583e96e69c4434b86aa5855a38a645 +#: ../../api/events.rst:914 5f583e96e69c4434b86aa5855a38a645 msgid "The user who removed the vote." msgstr "" -#: ../../api/events.rst:957 5679d90e3b9043f8824042c0a86c634b +#: ../../api/events.rst:921 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 +#: ../../api/events.rst:930 1e6beea08c6545e1956f072b67cf94c0 msgid "Reactions" msgstr "" -#: ../../api/events.rst:969 2259c8a34d124723a84253786909f8d4 +#: ../../api/events.rst:933 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 " @@ -1303,23 +1211,20 @@ msgid "" ":func:`on_raw_reaction_add` instead." msgstr "" -#: ../../api/events.rst:975 0c4a10e8c65043cb8ad5b2aa8740c0f9 +#: ../../api/events.rst:939 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 +#: ../../api/events.rst:941 ../../api/events.rst:961 ../../api/events.rst:993 +#: ../../api/events.rst:1004 ../../api/events.rst:1016 +#: ../../api/events.rst:1027 ../../api/events.rst:1039 +#: d254e7018b894d5da0d9ab3310487581 msgid "This requires :attr:`Intents.reactions` to be enabled." msgstr "" -#: ../../api/events.rst:981 ba7506ec538a430493d6a2010d86c710 +#: ../../api/events.rst:945 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" @@ -1328,54 +1233,54 @@ msgid "" " enable the members intent." msgstr "" -#: ../../api/events.rst:987 ../../api/events.rst:1019 -#: 09d780eee4834c02bccf9c957d6a8cf6 367f92343bc64207970e6a72c687716d +#: ../../api/events.rst:951 ../../api/events.rst:983 +#: 367f92343bc64207970e6a72c687716d msgid "The current state of the reaction." msgstr "" -#: ../../api/events.rst:989 ../../api/events.rst:1021 -#: 6e25ca528d3649428e675864d9383bf7 b19a600ee7604f58ae7c7dae8826a694 +#: ../../api/events.rst:953 ../../api/events.rst:985 +#: b19a600ee7604f58ae7c7dae8826a694 msgid "The user who added the reaction." msgstr "" -#: ../../api/events.rst:994 c55e19feffcb41368d0fc845e8ae8880 +#: ../../api/events.rst:958 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 +#: ../../api/events.rst:968 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 +#: ../../api/events.rst:974 602b41b73b974da69daf8f4af20d682b msgid "To get the message being reacted, access it via :attr:`Reaction.message`." msgstr "" -#: ../../api/events.rst:1012 f0e3d9f9640149579db72c4d79b4b9b7 +#: ../../api/events.rst:976 f0e3d9f9640149579db72c4d79b4b9b7 msgid "" "This requires both :attr:`Intents.reactions` and :attr:`Intents.members` " "to be enabled." msgstr "" -#: ../../api/events.rst:1016 3e9d3eacd60d4aa38b1c604cfbc3af0c +#: ../../api/events.rst:980 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 +#: ../../api/events.rst:990 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 +#: ../../api/events.rst:1000 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 " @@ -1383,22 +1288,22 @@ msgid "" ":func:`on_raw_reaction_clear` instead." msgstr "" -#: ../../api/events.rst:1042 957dda2d335345a6a9873f634958c021 +#: ../../api/events.rst:1006 957dda2d335345a6a9873f634958c021 msgid "The message that had its reactions cleared." msgstr "" -#: ../../api/events.rst:1044 07322cdc6b664f13af8dca1e2b91081b +#: ../../api/events.rst:1008 07322cdc6b664f13af8dca1e2b91081b msgid "The reactions that were removed." msgstr "" -#: ../../api/events.rst:1049 0e10554d194944c49499801e107242a0 +#: ../../api/events.rst:1013 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 +#: ../../api/events.rst:1023 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 " @@ -1406,171 +1311,250 @@ msgid "" ":func:`on_raw_reaction_clear_emoji` instead." msgstr "" -#: ../../api/events.rst:1067 dfa4f0b46a1048fb9196d4cab53e7e96 +#: ../../api/events.rst:1031 dfa4f0b46a1048fb9196d4cab53e7e96 msgid "The reaction that got cleared." msgstr "" -#: ../../api/events.rst:1072 fa250169bf22484892b7b04838eb6a62 +#: ../../api/events.rst:1036 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 +#: ../../api/events.rst:1047 4c52e96a47324217a4defdba08ed9919 +msgid "Monetization" +msgstr "" + +#: ../../api/events.rst:1050 c4bda84ba80d4f6b82e53d44e2704b60 +msgid "Called when a user subscribes to an SKU." +msgstr "" + +#: ../../api/events.rst:1054 ec2ef743271140fca72f11b8f28b55f2 +msgid "The entitlement that was created as a result of the subscription." +msgstr "" + +#: ../../api/events.rst:1059 072d6e76c4bb492ebf7fc48e64a58def +msgid "Called when a user's subscription to an Entitlement is cancelled." +msgstr "" + +#: ../../api/events.rst:1065 0e5c7574cf1641eb92588ee42cf949c8 +msgid "" +"Before October 1, 2024, this event was called when a user's subscription " +"was renewed." +msgstr "" + +#: ../../api/events.rst:1067 438a722423d44ce8914d0be34b1600cb +msgid "" +"Entitlements that no longer follow this behavior will have a type of " +":attr:`EntitlementType.purchase`. Those that follow the old behavior will" +" have a type of :attr:`EntitlementType.application_subscription`." +msgstr "" + +#: ../../api/events.rst:1070 0a0768b592be40a89c28b086a2229aa1 +msgid "" +"`See the Discord changelog. `_" +msgstr "" + +#: ../../api/events.rst:1072 79720b0dadf04f179a625168706790b9 +msgid "The entitlement that was updated." +msgstr "" + +#: ../../api/events.rst:1077 1d13e1996ca641bcb26d6179d19e09e7 +msgid "Called when a user's entitlement is deleted." +msgstr "" + +#: ../../api/events.rst:1079 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:1084 bf621f37de124bcbb5cce9859564f2d1 +msgid "This is not called when a user's subscription is cancelled." +msgstr "" + +#: ../../api/events.rst:1088 9dbb179c32b54a398dc87524d5bbaef8 +msgid "The entitlement that was deleted." +msgstr "" + +#: ../../api/events.rst:1093 070a63745b6849fbbeab2bf0a1b4e515 +msgid "Called when a subscription is created for the application." +msgstr "" + +#: ../../api/events.rst:1097 7f9c50d99dd24e9fac1bc3fee804ca53 +msgid "The subscription that was created." +msgstr "" + +#: ../../api/events.rst:1102 0e3eb0e978f147ee8ac9f2ad8b364954 +msgid "" +"Called when a subscription has been updated. This could be a renewal, " +"cancellation, or other payment related update." +msgstr "" + +#: ../../api/events.rst:1106 7f9c50d99dd24e9fac1bc3fee804ca53 +msgid "The subscription that was updated." +msgstr "" + +#: ../../api/events.rst:1111 da531782f86c4b52b37c365448ee9f07 +msgid "Called when a subscription has been deleted." +msgstr "" + +#: ../../api/events.rst:1115 7f9c50d99dd24e9fac1bc3fee804ca53 +msgid "The subscription that was deleted." +msgstr "" + +#: ../../api/events.rst:1119 35ea4a4f51b14096be194c1b45b9980e msgid "Scheduled Events" msgstr "" -#: ../../api/events.rst:1086 92289345aa99456e8fccb0d2bedcc037 +#: ../../api/events.rst:1122 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 +#: ../../api/events.rst:1124 ../../api/events.rst:1133 +#: ../../api/events.rst:1144 ../../api/events.rst:1155 +#: ../../api/events.rst:1168 ../../api/events.rst:1179 +#: ../../api/events.rst:1192 397fd90fe30649a59c540215efdd33f2 msgid "This requires :attr:`Intents.scheduled_events` to be enabled." msgstr "" -#: ../../api/events.rst:1090 df55f40708a14557bca10e280cadffcd +#: ../../api/events.rst:1126 df55f40708a14557bca10e280cadffcd msgid "The newly created scheduled event." msgstr "" -#: ../../api/events.rst:1095 3003cf8ca0d9419d9d22b0f170953af8 +#: ../../api/events.rst:1131 3003cf8ca0d9419d9d22b0f170953af8 msgid "Called when a scheduled event is updated." msgstr "" -#: ../../api/events.rst:1099 f4adbcfb52fd47f483e7dcff7ef80d89 +#: ../../api/events.rst:1135 f4adbcfb52fd47f483e7dcff7ef80d89 msgid "The old scheduled event." msgstr "" -#: ../../api/events.rst:1101 dd0e692f4c5a4846b85c3503724118c9 +#: ../../api/events.rst:1137 dd0e692f4c5a4846b85c3503724118c9 msgid "The updated scheduled event." msgstr "" -#: ../../api/events.rst:1106 a5186e52c5b5474589a4e4fce901f851 +#: ../../api/events.rst:1142 a5186e52c5b5474589a4e4fce901f851 msgid "Called when a scheduled event is deleted." msgstr "" -#: ../../api/events.rst:1110 30ee4a060f724db18a7e1b6d5dae9c6f +#: ../../api/events.rst:1146 30ee4a060f724db18a7e1b6d5dae9c6f msgid "The deleted scheduled event." msgstr "" -#: ../../api/events.rst:1115 fabb729a4b424d468699c4b45e7f928c +#: ../../api/events.rst:1151 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 +#: ../../api/events.rst:1157 65b1bb809e964351ab01b21f5d03bce1 msgid "The scheduled event subscribed to." msgstr "" -#: ../../api/events.rst:1123 1d1f095f702e4d1cba2e0300dfb1d7cd +#: ../../api/events.rst:1159 1d1f095f702e4d1cba2e0300dfb1d7cd msgid "The member who subscribed." msgstr "" -#: ../../api/events.rst:1128 0e3eb0e978f147ee8ac9f2ad8b364954 +#: ../../api/events.rst:1164 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 +#: ../../api/events.rst:1175 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 +#: ../../api/events.rst:1181 7fa34a768768480d8411a6b67d092bf9 msgid "The scheduled event unsubscribed from." msgstr "" -#: ../../api/events.rst:1147 ca841d99fac740dc81c93bccf1047b92 +#: ../../api/events.rst:1183 ca841d99fac740dc81c93bccf1047b92 msgid "The member who unsubscribed." msgstr "" -#: ../../api/events.rst:1152 42dbcfa7372c454aa0641aba41689b96 +#: ../../api/events.rst:1188 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 +#: ../../api/events.rst:1198 fdab4d3cb6594493937e482cf6f3a3cd msgid "Stage Instances" msgstr "" -#: ../../api/events.rst:1166 5e4de8c9a02d40568f53b22e2928b78b +#: ../../api/events.rst:1202 5e4de8c9a02d40568f53b22e2928b78b msgid "" "Called when a :class:`StageInstance` is created or deleted for a " ":class:`StageChannel`." msgstr "" -#: ../../api/events.rst:1170 4362791ab4114db28b8dd19f7ef7ef07 +#: ../../api/events.rst:1206 4362791ab4114db28b8dd19f7ef7ef07 msgid "The stage instance that was created or deleted." msgstr "" -#: ../../api/events.rst:1175 885999ae3cce4971a022991fe5ae4fcd +#: ../../api/events.rst:1211 885999ae3cce4971a022991fe5ae4fcd msgid "Called when a :class:`StageInstance` is updated." msgstr "" -#: ../../api/events.rst:1179 cf4fabc871504d3c8c5ef7cf2452c119 +#: ../../api/events.rst:1215 cf4fabc871504d3c8c5ef7cf2452c119 msgid "The topic is changed." msgstr "" -#: ../../api/events.rst:1180 6f32d000266b4d3480e3e484435b15a8 +#: ../../api/events.rst:1216 6f32d000266b4d3480e3e484435b15a8 msgid "The privacy level is changed." msgstr "" -#: ../../api/events.rst:1184 0330580b863a4796b086995635979c2c +#: ../../api/events.rst:1220 0330580b863a4796b086995635979c2c msgid "The stage instance before the update." msgstr "" -#: ../../api/events.rst:1186 e2d1b23c3728472291d4c10ad1e01549 +#: ../../api/events.rst:1222 e2d1b23c3728472291d4c10ad1e01549 msgid "The stage instance after the update." msgstr "" -#: ../../api/events.rst:1190 17f76be0c525474bb937f182666eecd1 +#: ../../api/events.rst:1226 17f76be0c525474bb937f182666eecd1 msgid "Threads" msgstr "" -#: ../../api/events.rst:1193 5b3f3d40701149f19d64a98a31e8adc5 +#: ../../api/events.rst:1229 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 +#: ../../api/events.rst:1231 ../../api/events.rst:1244 +#: ../../api/events.rst:1257 ../../api/events.rst:1279 +#: 423b8f3188c34015b3769ffa0fcab9ca msgid "Note that you can get the guild from :attr:`Thread.guild`." msgstr "" -#: ../../api/events.rst:1201 5ec02873673f4719852827e4a4fc1fd5 +#: ../../api/events.rst:1237 5ec02873673f4719852827e4a4fc1fd5 msgid "The thread that got joined." msgstr "" -#: ../../api/events.rst:1206 59bfa1563ad747e98d7057340d442f09 +#: ../../api/events.rst:1242 59bfa1563ad747e98d7057340d442f09 msgid "Called whenever a thread is created." msgstr "" -#: ../../api/events.rst:1214 dfb084bf5ccd42c29d6b55512463bf9f +#: ../../api/events.rst:1250 dfb084bf5ccd42c29d6b55512463bf9f msgid "The thread that got created." msgstr "" -#: ../../api/events.rst:1219 8c4ff18149944315a69630439fd143b6 +#: ../../api/events.rst:1255 8c4ff18149944315a69630439fd143b6 msgid "" "Called whenever a thread is removed. This is different from a thread " "being deleted." msgstr "" -#: ../../api/events.rst:1227 e603d6dd1e314cbcbd72c972a610957c +#: ../../api/events.rst:1263 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 " @@ -1578,54 +1562,54 @@ msgid "" "a thread." msgstr "" -#: ../../api/events.rst:1234 22b7be80106949e8ac757cfca635aa77 +#: ../../api/events.rst:1270 22b7be80106949e8ac757cfca635aa77 msgid "The thread that got removed." msgstr "" -#: ../../api/events.rst:1239 31254204062147f58ec2e17d16079cd6 +#: ../../api/events.rst:1275 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 +#: ../../api/events.rst:1285 c836cd8213994a84b0e2a036731f5f51 msgid "The thread that got deleted." msgstr "" -#: ../../api/events.rst:1254 bca48653dfbd43498473f0a6031eb84b +#: ../../api/events.rst:1290 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 +#: ../../api/events.rst:1299 7a457e60855f40f1a930b8e3039c0c99 msgid "Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`." msgstr "" -#: ../../api/events.rst:1265 258b46c075964405929ecf4a53efca46 +#: ../../api/events.rst:1301 258b46c075964405929ecf4a53efca46 msgid "" "You can get the thread a member belongs in by accessing " ":attr:`ThreadMember.thread`." msgstr "" -#: ../../api/events.rst:1271 3768dbfed1414b8bbc6b887601538d2d +#: ../../api/events.rst:1307 3768dbfed1414b8bbc6b887601538d2d msgid "The member who joined or left." msgstr "" -#: ../../api/events.rst:1277 5db932fbff93400397baddb4e85e642d +#: ../../api/events.rst:1313 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 +#: ../../api/events.rst:1327 ../../api/events.rst:1345 +#: 0b546f8438b44009bacd6b97af0d4b28 msgid "Called whenever a thread is updated." msgstr "" -#: ../../api/events.rst:1295 0df795db76f04dcaa3d951202f9797f4 +#: ../../api/events.rst:1331 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. " @@ -1633,100 +1617,112 @@ msgid "" "internal cache." msgstr "" -#: ../../api/events.rst:1301 73530b47c0c14ea596341620dbb70d97 +#: ../../api/events.rst:1337 73530b47c0c14ea596341620dbb70d97 msgid "The updated thread's old info." msgstr "" -#: ../../api/events.rst:1303 e4ad496582ca4ac58d49cb868450344f +#: ../../api/events.rst:1339 e4ad496582ca4ac58d49cb868450344f msgid "The updated thread's new info." msgstr "" -#: ../../api/events.rst:1311 21b1f36456ed41fcb1da52570c551b1a +#: ../../api/events.rst:1347 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 +#: ../../api/events.rst:1358 1060458a9a7a4da09c743728271e7d05 msgid "Typing" msgstr "" -#: ../../api/events.rst:1325 36ddd6002ec044c082db85e340ffd365 +#: ../../api/events.rst:1361 36ddd6002ec044c082db85e340ffd365 msgid "Called when someone begins typing a message." msgstr "" -#: ../../api/events.rst:1327 d7bdd9fa230e405d81dbef6cd1a0d7e6 +#: ../../api/events.rst:1363 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 +#: ../../api/events.rst:1367 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 +#: ../../api/events.rst:1370 ../../api/events.rst:1387 +#: f4c7ce967027460c941934be2c781d19 msgid "This requires :attr:`Intents.typing` to be enabled." msgstr "" -#: ../../api/events.rst:1336 6bd9c433daea4c2e8516e44a45101692 +#: ../../api/events.rst:1372 6bd9c433daea4c2e8516e44a45101692 msgid "The location where the typing originated from." msgstr "" -#: ../../api/events.rst:1338 f0f1ef599c534a958cf8278f9d26283d +#: ../../api/events.rst:1374 f0f1ef599c534a958cf8278f9d26283d msgid "The user that started typing." msgstr "" -#: ../../api/events.rst:1340 3f0964e9777347c394ba677711de264d +#: ../../api/events.rst:1376 3f0964e9777347c394ba677711de264d msgid "When the typing started as an aware datetime in UTC." msgstr "" -#: ../../api/events.rst:1345 022f547d6ee849aa9405bdbea72c23b1 +#: ../../api/events.rst:1381 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 +#: ../../api/events.rst:1384 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 +#: ../../api/events.rst:1389 dadfbe18822e4f56a787d7eee475f016 msgid "The raw typing payload." msgstr "" -#: ../../api/events.rst:1358 72cc8acd59874ea7a93625ae002a2026 +#: ../../api/events.rst:1394 72cc8acd59874ea7a93625ae002a2026 msgid "Voice Channel Status Update" msgstr "" -#: ../../api/events.rst:1361 faf876de35744e14972adcc55c9f6413 +#: ../../api/events.rst:1397 faf876de35744e14972adcc55c9f6413 msgid "Called when someone updates a voice channel status." msgstr "" -#: ../../api/events.rst:1365 c82e605cb0a14ccfba06f997667f1f06 +#: ../../api/events.rst:1401 c82e605cb0a14ccfba06f997667f1f06 msgid "The channel where the voice channel status update originated from." msgstr "" -#: ../../api/events.rst:1367 17c48469e42a4a4ba626198df396e32d +#: ../../api/events.rst:1403 17c48469e42a4a4ba626198df396e32d msgid "The old voice channel status." msgstr "" -#: ../../api/events.rst:1369 cada34ee29ff4e7eb0d6d6c47797ec4d +#: ../../api/events.rst:1405 cada34ee29ff4e7eb0d6d6c47797ec4d msgid "The new voice channel status." msgstr "" -#: ../../api/events.rst:1374 52dd6b5033a0412b9bba7a8a156f8e4f +#: ../../api/events.rst:1410 52dd6b5033a0412b9bba7a8a156f8e4f msgid "Called when someone updates a voice channels status." msgstr "" -#: ../../api/events.rst:1378 1bb0b4ef346543ad92c14dd99a025211 +#: ../../api/events.rst:1414 1bb0b4ef346543ad92c14dd99a025211 msgid "The raw voice channel status update payload." msgstr "" +#~ msgid "Entitlements" +#~ msgstr "" + +#~ msgid "" +#~ "Called when a user's subscription to " +#~ "an Entitlement is renewed for the " +#~ "next billing period." +#~ msgstr "" + +#~ msgid "Called when a :class:`Guild` adds or removes an :class:`Emoji`." +#~ msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/models.po b/docs/locales/en/LC_MESSAGES/api/models.po index 77873fca57..a49b51e551 100644 --- a/docs/locales/en/LC_MESSAGES/api/models.po +++ b/docs/locales/en/LC_MESSAGES/api/models.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-11 09:03+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../api/models.rst:6 38e0de79b9364f9192187f5cafbf86e6 msgid "Discord Models" @@ -75,32 +75,22 @@ msgstr "" 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 2a4d60ac337a46c0bed1bc26c226038f -#: 2c7f28585a7445caa3375c657bfa10fe 47cf29f45d094211a6159f29fd08d82d -#: 6836891e883c423481ebac9ffd750fa1 7c47ce6d35854eabae233cb4388c1b7c -#: 7cc43cf3dd184cd686b8bf1ec6c776c2 7eeef0117d73468bbf069e0735089439 -#: 8183ff58df9b4e73bc33a30fb382eb7b 868a9098949744cf9fcf7c6f42e516f7 -#: 883bef32346f462e98c0bdec679b1efc 9b463aa7bf23454dbdca8aa23cc8539b -#: 9d168ece95784b269773220dae484295 a24c93013f654f39aec619169aee3ffd -#: b168fffcce71401eb693e9e18b66c905 b22c89b9409f45538c044c97893adb19 -#: bb58123a93434a7d923686db2691d9bf be92e79b8562492497e0d816d28b3038 -#: c2cf03ff152a4746a445c6e09c4ecf4d c46eadcf6cc141368f08bb53bfa5ea54 -#: c7ef03b91163401782f9a92f6ce2c03d c831fa537f414a13a0b6020ed358e961 -#: cf2ef7aba94a4080be66ea0480c20921 d2e07740ec32449eb410f0bdef8452b3 -#: de160c5eabbc4424aa90922d81f49f99 discord.abc.Messageable.history +#: 594c0f99676c49e082bb82c19c0f7d6e discord.asset.Asset:23 of +msgid "Returns the asset's url's hash." +msgstr "" + +#: discord.asset.Asset:25 e2124f67ec9f4267908985a925d278ed of +msgid "This is equivalent to hash(:attr:`url`)." +msgstr "" + +#: ../../api/models.rst b168fffcce71401eb693e9e18b66c905 +#: c831fa537f414a13a0b6020ed358e961 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.monetization.SKU.fetch_subscriptions discord.reaction.Reaction.users #: discord.scheduled_events.ScheduledEvent.subscribers -#: discord.threads.Thread.purge e4bba7ea10be4e9ea126e3aa6e9ad74a -#: faad64e33270420d9540268e1052426c of +#: discord.threads.Thread.purge of msgid "Parameters" msgstr "" @@ -116,38 +106,23 @@ msgstr "" msgid "Returns whether the asset is animated." msgstr "" -#: ../../api/models.rst 0309d5bc75b4441c897a10094b96ac4a -#: 0640e492b57342b5a13994bcb5450a85 0ad9dd6e25d24167a508024ae35d87da -#: 0c09c04ca6c24f37b7befefc1e27c108 16749d2b71db4335acddc773be0d2f0a -#: 19c515ba3ce24f398e966d395a7bab86 261deaa002874837a2c0c7f43b420d08 -#: 2862e3ccc6274017a74b9196f3154985 350fcc488876465bad13a5796135bdf2 -#: 407ca03640e945a485ddf6039c4290d7 4bd018c62f114816b1848122761f0c79 -#: 4f8209b09da140ffa3202f93b7b6bf97 506e955535214cac83087478241a0b1b -#: 522f4898e55c4556a060f6a8f63bdcd5 536e3251a836422fac526839f75dc3c3 -#: 5987f3ee200f4d81a08e1d344e30d1d7 5aa46d39cf93485795e2b3966ca802e2 -#: 668a7f8b61594196a848b31c1eb2f132 6a593fc9f66142829114c6c0fed61c9b -#: 86bfec4746ab4883a54583e29dafe33d 8f1345380b4e4342a090f0d5cd984869 -#: 9fbc068a17a84765ab1cdd7a4092661d a19f99d9ba494816a26f530dcd4d3024 -#: b4bd8df1935644ce9c0489c8542cd1af bac9870e0e33411ba53fb5c16935ecb0 -#: c6a7d99157e3423285c53b00b65eef1b ca57d95ea26c4194994d202c3ff3ec2a -#: cbcd88ced77f4597bfb0d4fd48bf4f58 cd8afe5f874a4ed893d57cd0f29bb9a6 -#: dda4d63fbd664297808f901fc4957b29 discord.abc.Messageable.history +#: ../../api/models.rst 8f1345380b4e4342a090f0d5cd984869 +#: cbcd88ced77f4597bfb0d4fd48bf4f58 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.monetization.SKU.fetch_subscriptions discord.reaction.Reaction.users #: discord.scheduled_events.ScheduledEvent.subscribers -#: discord.threads.Thread.purge e819402188e744ca884c8ba6b1a852d5 -#: f31cbc6d18c4492d8d39476d33e60215 of +#: discord.threads.Thread.purge of msgid "Return type" msgstr "" -#: 1264fee836bb466f89b4f893c7bf697a 1fad9e42f9844177a0e09f9e5f6e4592 -#: b3d373e32ad24fc09945543962ca1e3a discord.asset.Asset.is_animated:4 +#: 1fad9e42f9844177a0e09f9e5f6e4592 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.channel._TextChannel.is_nsfw:4 discord.components.Component.is_v2:4 +#: discord.emoji.AppEmoji.is_usable:4 #: discord.interactions.Interaction.is_command:4 #: discord.interactions.Interaction.is_component:4 #: discord.interactions.InteractionResponse.is_done:6 @@ -156,7 +131,7 @@ msgstr "" #: 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_integration:5 #: 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 @@ -167,8 +142,8 @@ msgstr "" 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 +#: daa2f1c92cda42ddae693df8ce5553ce discord.asset.Asset.replace:4 +#: discord.asset.Asset.with_size:4 of msgid "The new size of the asset." msgstr "" @@ -184,21 +159,10 @@ msgid "" "either 'webp', 'jpeg', 'jpg', or 'png'." msgstr "" -#: ../../api/models.rst 0996753e5e124f77b30e61a42df820c1 -#: 0a5c812ff0c04eea82c6fa3bb63067e0 0edeaf6b803640c28054b2e619ddd802 -#: 1d273c9af8b04078a7f814a612b7af22 25f5699c89f544419e402558052f5325 -#: 27f96ff5ae5b4e83ab6648c6154d02e1 362375f37b194a349214ed5fc7c0f203 -#: 433e78d93a284222b29b7c5c27f30975 4db57c6eb2ff45e683de729c56067875 -#: 51d0460ea52747fe85f7df2cb0591858 57f07e810e7a4586855dc28481b0158a -#: 5b7671b931944b139d39fd1e649e4371 647c16affa9946b1954e30a98d48817e -#: 76becbf11cbf44e694d2b1ae7e64f923 83705baf8a864eec9f13163564e7cf6f -#: 86821b65aab74584ad8c55849a601d14 9f601fe77c824a16b0956178e383143e -#: b2f1da5ff55c4a3b9346d3b6e1f1adaf c9b9dc712a914abf8f2219351eeff240 -#: d158caf1186e48c8a38e8020bc046db6 d49a124f37e64f348e59d79ea1e601dc -#: d8969dd93df444019b67ca16bb4ef691 discord.channel.StageChannel.purge -#: discord.channel.VoiceChannel.purge discord.channel._TextChannel.purge -#: discord.threads.Thread.purge ecd9fdca3e544014953f89c1e94c68f0 -#: f88c908a6f4c41fabacd70ad58cdf52a of +#: ../../api/models.rst 57f07e810e7a4586855dc28481b0158a +#: discord.channel.StageChannel.purge discord.channel.VoiceChannel.purge +#: discord.channel._TextChannel.purge discord.threads.Thread.purge +#: ecd9fdca3e544014953f89c1e94c68f0 of msgid "Returns" msgstr "" @@ -206,33 +170,20 @@ msgstr "" 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 +#: 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 05260df1bd954c5caa25ff09f602f59d -#: 08e736d0ebcb4f969f5b6c1e9b37778c 2472859665d2470bb065bfc0b93027e1 -#: 3c681436fcb64600ad5b441e2331589b 3df56f6e1f9a4a4999cbaaf11a1cd473 -#: 44b8d1766516447fb8c88325249d39b0 5298538313c0410689ffa672c5266090 -#: 699b6b4ff6544f7faeeb9f52f295dba8 6b49644c0a984cefa8ad37bd37e25c6c -#: 6c88abffe12448c7999d0268dd98391d 6e2bbeaa9dbf4d0095fcab664be6f5ad -#: 6f136f8c5e6d4b7088fce1fed9753458 8448a10ed39946c9814070a5a8747f5b -#: a093e145386d4741a3c32f63e3d1b3b7 a747b811291345929a132043b534d8f7 -#: acf65750771442a785e04917545d20bc b8530b14839d4c8c8d553f5ecd20f041 -#: c2ea625207034985b0c360f2a82bcb33 c68960e6aa504d848baa9d228f79b622 -#: d80bc37cab244a838dc6b22f210108fd 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.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.monetization.SKU.fetch_subscriptions discord.reaction.Reaction.users #: discord.scheduled_events.ScheduledEvent.subscribers -#: discord.threads.Thread.purge e0eacc7163104667a12355c978c322ca -#: f5bccbd888d048908de44bba82b6968a fb44d6093f9241de967bd1a6a92c87d8 -#: fb7a0c154ac948c6bb5db13e5ec9280f of +#: discord.threads.Thread.purge fb7a0c154ac948c6bb5db13e5ec9280f of msgid "Raises" msgstr "" @@ -244,7 +195,6 @@ msgstr "" 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." @@ -285,17 +235,10 @@ msgstr "" msgid "The asset had an invalid format." msgstr "" -#: 0ca18e9a7adf4b6f9bfcce46aa9e3c6f 16bc1d11ba1242fcaaa2d5f3a231382b -#: 3db17b50b5c94a2e910ca4e66e1a92d6 5d4f482bbf7846e59a2374c6ee3eb3ad -#: 6ca83568bdad40798ecbdd6239c77a81 704cb3891c8f40fd82c41a6e73d45468 -#: 7ad00ffb5bab447ca72c6844703a96e9 81253fd018124062b2e6978ba7f46e1c -#: 867ac713660943d69dbd98f2164d01b6 97d7c3ed4fdb465b963224edb1f96c40 -#: a228bf8cd1194556b2d999730fc00b47 a5c07649e5ae469886fe90f590944332 -#: b41df4171ce3487289ea11713cb69daf b7eba1a9a94b4abca974be4cda3b9439 -#: bf7d7300665a42d4b2d8623f113713f2 c126483eaf8f483ea012ef62bb4ca9a5 -#: 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 +#: 867ac713660943d69dbd98f2164d01b6 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 @@ -309,7 +252,7 @@ msgstr "" #: 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.MediaChannel.edit:1 discord.channel.StageChannel.clone:1 #: discord.channel.StageChannel.create_instance:1 #: discord.channel.StageChannel.create_webhook:1 #: discord.channel.StageChannel.delete_messages:1 @@ -327,7 +270,8 @@ msgstr "" #: 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.emoji.AppEmoji.delete:1 discord.emoji.AppEmoji.edit:1 +#: discord.emoji.GuildEmoji.delete:1 discord.emoji.GuildEmoji.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 @@ -389,9 +333,10 @@ msgstr "" #: 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.message.Message.forward_to: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 @@ -419,55 +364,48 @@ msgstr "" #: 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 -#: e9daf36896ce457cbddfeb00139760dd ff88a521f3414956bb0ae0fb0241dcbc of +#: discord.widget.Widget.fetch_invite:1 e9daf36896ce457cbddfeb00139760dd of msgid "|coro|" msgstr "" -#: 0a45793fa09947b5b76f788948db618b 4dcd15b67bf147479ba86c1113f22610 -#: discord.asset.AssetMixin.read:3 discord.partial_emoji.PartialEmoji.read:3 of +#: 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 +#: 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 +#: 2d8757c0cd4949059cba01c2a5b8f8f6 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 +#: 4401ecb89712474fb7bfe8e694cbfee2 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 +#: 4cbc6c1c6cba4159a0d4a5b6c0d718b8 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 "" @@ -476,40 +414,38 @@ msgid "" "used instead." msgstr "" -#: 046ad38efb79459fbf2a3ecd8b279567 148b8fad8702458e82dda1d1d36058f9 -#: c4ec62dcfb8546f5b32ef163c4e401e4 discord.asset.AssetMixin.save:11 +#: 046ad38efb79459fbf2a3ecd8b279567 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 +#: aede6c3b17ae4ee08ab6dafed6701d9a discord.asset.AssetMixin.save:15 #: discord.message.Attachment.save:23 of msgid "The number of bytes written." msgstr "" -#: 42faf5a34414420fa7c8b306f914946c 5191b22157d04bf4bc0a54a5f2b92103 -#: 5f353ab23d4e42d19a2257f9ead36a65 60c6d421be604ba494cc3d95066a7282 -#: 66016977cc094ded920608f03478efe9 6b01df183fb34aff8d8ff8f39fcd123f -#: 940c35d806714f3490c1706f2b5e9387 a29ea8b8246a43af9b40003208bbc391 +#: 42faf5a34414420fa7c8b306f914946c 940c35d806714f3490c1706f2b5e9387 #: cf2159859c6247b487751085c8eca2ab 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.channel.GroupChannel:51 discord.channel.MediaChannel:39 +#: discord.channel.MediaChannel:78 discord.channel.MediaChannel:94 +#: 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.Component:31 +#: discord.components.FileComponent:29 discord.components.SelectMenu:40 +#: discord.components.SelectMenu:47 discord.emoji.AppEmoji:41 +#: discord.emoji.GuildEmoji:39 discord.emoji.GuildEmoji: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 @@ -520,11 +456,12 @@ msgstr "" #: 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:30 discord.message.Attachment:36 #: 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.monetization.Entitlement:16 discord.monetization.Entitlement:22 +#: discord.monetization.Entitlement:28 discord.monetization.SKU:9 +#: discord.monetization.SKU:21 discord.monetization.Subscription:11 +#: discord.monetization.Subscription:17 discord.onboarding.OnboardingPrompt:9 #: discord.onboarding.PromptOption:9 #: discord.raw_models.AutoModActionExecutionEvent:15 #: discord.raw_models.AutoModActionExecutionEvent:29 @@ -578,7 +515,7 @@ msgstr "" #: 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 +#: discord.widget.WidgetMember:25 of msgid ":class:`int`" msgstr "" @@ -619,8 +556,8 @@ msgstr "" msgid "When the user started listening in UTC." msgstr "" -#: 2198a9c9e1f54df38b83ca3b1209747b 66c0095a60a34c59a3390d2c9df00d73 -#: discord.Spotify.color:1 discord.Spotify.colour:1 of +#: 66c0095a60a34c59a3390d2c9df00d73 discord.Spotify.color:1 +#: discord.Spotify.colour:1 of msgid "Returns the Spotify integration colour, as a :class:`Colour`." msgstr "" @@ -694,49 +631,25 @@ msgstr "" msgid "Indicates if the user is currently deafened by the guild." msgstr "" -#: ../../api/models.rst ../../docstring 022d0104c2db48bc9630f70a4304365e -#: 02722029b4644ccbb2826596fdd7d4f2 03a5eb78e95e41108576c4db355fe914 -#: 03e71a7ef3c74ac7aeab4c072e40f78d 06df0be9e38d4672b7997b4b6bed681c -#: 095f7ca30ce74014962ea2b3236a9c3a 09eec61105ed4161b45e3ffdafd48bb1 -#: 0d3d1607e68844609eed1db5d315d17c 0d7fa3aefcb74cbda495ff8a7ba6fbc6 -#: 176e4886bf9f4105b2c77ab49bff6956 1b2606ff5e8b4524989753c9ad467b97 -#: 1bdb2cabcf67495ebdc667608c720a06 22065b2145c345fcbc326d89075ec35b -#: 22ac68d587fe4abc9f96441f06046dd9 272747f7539542f3b8a44148c72e26ea -#: 2a608fc04cba49d98e1f1ddaeb64d63c 2cfabf5b7fef435e84dfb3fc2787f1ac -#: 338106e55c8240eab14065502b864dfc 35a8b82808b8453db119ab7ba0ebcdd1 -#: 495f29871fc9457e9d2309a9a716f0d5 4ab61677a7bb4b46a38295c13b89b84c -#: 4dee2a1342b24edcbb70f7c373b370a3 4e47f55a759e4da2818894aa503b7ee5 -#: 5d2422bd8d6c40aaa09875550353f8d8 614ea7004bc04ea0b4e031051f813524 -#: 655791b8ec334318a71371e38c2748ad 69cefcf03e884ac7b5fc11b7d1d29cf3 -#: 6d94e4d6b4274516b6b9f993418424ab 7693963e34644ca1bd2effa6f88d8b9e -#: 77b5c1a970774a8ebeabdf892fe59af6 784be10dac3d459faa6de5dc766fca6b -#: 7a27fafabfe045e1830b6e6d3c6728b6 7c45525c2a804ee983410a85d2856c72 -#: 7e3d3537787f4909a3f533956a0b2114 8387e2278a404919af843b93e8115ab7 -#: 9173191c27e6484794007b6452c643b8 998a56ee903a43baa0dcd25155351a0b -#: 9cfa3c015b574cc9879d457ec5fb2607 9f597ce69b054fe48d2922e85db0c3af -#: a79f925772d5431288f420c483672dff a7eb34de6a7544ba80ac451d76e97de2 -#: a854241a48da4657ac4191293b46900d a90d060620ea4f589990c3d137e2fd63 -#: ab173d33d46744e6a0cb8b961e49e23d abb9957168004deb9b0b16726211ec29 -#: ad846a914f534e62aa1a0fa410b7ffb3 b2584d98803a488da58a6cfeeb4ff514 -#: b337c6dc8c414befa7850e212ce7d7eb b89ba10007ff47f0a80093f54be43e16 -#: b99c99a9aae44872b07a6e5714355931 ba3676ed311e42e99fd2a599b2467dba -#: bc3aa6d4529e45068a1e542de6b4fb17 bee43d44de1540dd8308d7840112e7ea -#: bf0d57cc45cc4633bb0cc7df070c4418 c265aacd65f544b7b53d69cd86c1a6c9 -#: c776312038584368bc9ecec0c0ad8dbf d1bbad3b31bd49bfaea28fbc02d6c4ab -#: d4b6e88a914c4f039e215ddeec921bd5 d7244d7c36304984b34b1f7bc9f77171 -#: da073de05b9e4f528d3dc81a9e6ac777 discord.AuthorizingIntegrationOwners.guild +#: ../../api/models.rst ../../docstring 09eec61105ed4161b45e3ffdafd48bb1 +#: 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.Subscription.user 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.MediaChannel 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.components.Container discord.components.FileComponent +#: discord.components.MediaGallery discord.components.Section +#: discord.components.SelectMenu discord.components.Separator +#: discord.components.TextDisplay discord.components.Thumbnail +#: discord.emoji.AppEmoji discord.emoji.GuildEmoji discord.guild.Guild #: discord.integrations.BotIntegration discord.integrations.Integration #: discord.integrations.IntegrationAccount #: discord.integrations.IntegrationApplication @@ -747,9 +660,9 @@ msgstr "" #: 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.monetization.SKU discord.monetization.Subscription +#: 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 @@ -779,33 +692,22 @@ msgstr "" #: discord.welcome_screen.WelcomeScreen #: discord.welcome_screen.WelcomeScreenChannel discord.widget.Widget #: discord.widget.WidgetChannel discord.widget.WidgetMember -#: e18c8d576865486dbf7e1e5055f5ce7c e4ebc8ba68aa48d1ad1e4703697409ce -#: ea5702097679494cbc117ca53b79b9d1 ebfd2a17c7c64a649b40a97c0397f08d -#: f40b4138a7f643cdad4ff34785e7a1a6 f619d28bcac54b87b9826c65caaa95d4 -#: f893de4cfff14b6fad708001d112c886 f8d9a7bee8654e418338d5153f0346e0 -#: fc1703444c8e43aeb6b207c0f0770564 fd31d6e51ff848fbaa774b695fb45f96 -#: fdd925840fb24e89b0f94205c0acc9fb of +#: f40b4138a7f643cdad4ff34785e7a1a6 of msgid "type" msgstr "" -#: 086298bde6d3427996bb79be49ab9aec 105352a161e5411ba6f61e2fc15386f2 -#: 1073ecfb4a744835bbfaeda3378c9886 11c2f9ea736642a693a9574bc0b22721 -#: 12dadc55d4ba4391961b514f8a8f42cb 200ce5183d284487b83477bba2b7c24f -#: 3033e6f13ed54783b7677f34108bf609 4003d244e62a42b7ab7815a5cfe25417 -#: 55766eb1c16d48b9a0c2abbf506e9b9e 5fa3865947e547d3861918f336602cc1 -#: 60abce50c46249439a7420028aa5b862 6afc41742da04070adb35652a57c9da3 -#: 789166acd786435a96c38745c7816111 7e4e194346944a07bc961f3e35ff72bd -#: 91ee58c33d2848ed8446bec74e5c8c94 94f78f94eef14c5eab8e517a73ffd096 -#: 975fd0fa469044a8a9710bc449dee9bc 9c07a12592d74668bddd9fa2ad17b925 -#: ae2156faa6f64461abb53909ccabe94a c0f57792bcc94fe6a59671a5e2fb01b3 -#: c553482c64d74d31a199dacf7d704993 df0105c172b14940b0ce5d8fb044beee +#: 55766eb1c16d48b9a0c2abbf506e9b9e 91ee58c33d2848ed8446bec74e5c8c94 #: 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.channel.MediaChannel:88 discord.channel.TextChannel:82 +#: discord.components.Button:34 discord.components.SelectMenu:69 +#: discord.components.Separator:17 discord.emoji.AppEmoji:47 +#: discord.emoji.AppEmoji:53 discord.emoji.AppEmoji:59 +#: discord.emoji.AppEmoji:71 discord.emoji.GuildEmoji:45 +#: discord.emoji.GuildEmoji:51 discord.emoji.GuildEmoji:57 +#: discord.emoji.GuildEmoji: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 @@ -813,10 +715,10 @@ msgstr "" #: 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.member.VoiceState:67 discord.message.Attachment:92 #: 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.message.Message:138 discord.monetization.Entitlement:46 +#: discord.monetization.Entitlement:72 discord.onboarding.Onboarding:15 #: discord.onboarding.OnboardingPrompt:33 #: discord.onboarding.OnboardingPrompt:39 #: discord.onboarding.OnboardingPrompt:45 discord.partial_emoji.PartialEmoji:38 @@ -824,14 +726,13 @@ msgstr "" #: 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.role.Role:59 discord.role.Role:83 discord.role.Role:89 #: 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 of +#: discord.user.User:61 discord.widget.WidgetMember:43 of msgid ":class:`bool`" msgstr "" @@ -874,10 +775,10 @@ msgstr "" 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 +#: 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 "" @@ -935,99 +836,82 @@ msgstr "" 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 +#: 14d2bfd03a6e469d8ee65a8d101afb5f 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 +#: 0384c1134c80472eac35ba53c22d90ff discord.abc.Messageable.can_send:6 of msgid "An invalid type has been passed." msgstr "" -#: 0dec3dbb162842d78a61e2d1f4a0da1d 25b6541bc41841ccbf8b1649f85a1f9d -#: 5d3bd874ef084f87ab4ac6c6d08cb08a discord.abc.Messageable.fetch_message:3 of +#: 0dec3dbb162842d78a61e2d1f4a0da1d 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 +#: 4ae78ba5a69f45d4a4ae83d62b4802f3 discord.abc.Messageable.fetch_message:6 of msgid "The message ID to look for." msgstr "" -#: 11df635629de48ef8f9d38590f9f8676 c2f7f6b8b80e4041818f55005ce8b67a -#: discord.abc.Messageable.fetch_message:9 e18b1b81cff840a99be2aaac63a6f05e of +#: c2f7f6b8b80e4041818f55005ce8b67a discord.abc.Messageable.fetch_message:9 of msgid "The message asked for." msgstr "" -#: 0e44b08a661a4e4cb8977253c1a1fce1 54db8105f8b44c2cb4f23b1d50d1686f -#: 6e0a7e5d3ecd440881fcaf5c610130f0 discord.abc.Messageable.fetch_message:10 -#: discord.abc.Messageable.send:100 e0e1920c1d0342bab09dc720dc295044 -#: eeb551cbf2bc4573a7518a774f0ab3e2 of +#: 0e44b08a661a4e4cb8977253c1a1fce1 discord.abc.Messageable.fetch_message:10 +#: discord.abc.Messageable.send:100 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 +#: 1c4b5de6d0084edfb0c36ddc586cd125 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 +#: 1e046de530f5431fa8a01caec3544a8a discord.abc.Messageable.fetch_message:14 of msgid "Retrieving the message failed." msgstr "" -#: 34a4d40c3a264dc996c94056170a151d a2b5b9f3f9864954a6c95353f0840647 -#: d62bbb3b47734dc5a98c28915226ceb7 discord.abc.Messageable.history:1 of +#: a2b5b9f3f9864954a6c95353f0840647 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 +#: 1e013f815e324252ba499008afce7129 discord.abc.Messageable.history:3 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 +#: 62c477d54eab4eb5b3303b8b364c89c4 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 +#: ad959063203140e2a8fec35d19f3b2c1 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 +#: aacb6953371648ccb5e72a11bdaabbe0 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 "" -#: 94944dd5859741c495b946a77434e4b3 da844572f0ee4e3db1ab88bc0ae53ace -#: ddf1d1beab504636ab1745bb2a90b04f discord.abc.Messageable.history:21 of +#: da844572f0ee4e3db1ab88bc0ae53ace 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," @@ -1036,115 +920,102 @@ msgid "" "return at most limit + 1 messages." msgstr "" -#: 2158e52532114f00b4b65cd0423df2af 2bf2f78c9c8f4a729d8f42921b489c38 -#: 5755a7ad7f454b7cac7a362f9721ba8b discord.abc.Messageable.history:28 of +#: 2158e52532114f00b4b65cd0423df2af 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 "" -#: 27a00c698a184861a3e79a26f6bebd2e 978ec7ef1794400e84a2dba4651a187b -#: a56a4e26f11646db9973fb9a82041c86 c7f12b2d61ff4ddeac3d4e82b620a453 +#: 978ec7ef1794400e84a2dba4651a187b a56a4e26f11646db9973fb9a82041c86 #: 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.monetization.SKU.fetch_subscriptions 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 +#: discord.abc.Messageable.history:35 f2f1efc2d20a4530b8075de51578d2a5 of msgid "The request to get message history failed." msgstr "" -#: 3e3b6a5f5b8c4f55ae00cb8003b37981 71713b3b7da14660975590d847fa9ea1 -#: discord.abc.Messageable.history:36 ed437085f8744eecbf24ae254b3e43af of +#: 71713b3b7da14660975590d847fa9ea1 discord.abc.Messageable.history:36 of msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.HistoryIterator\\``" msgstr "" #: 25bd697769214744832fa1612bc8518a 966fbbaa61a846aa9b633dbfc1ee5c60 -#: ad7ad919296e43aa91303b7877fb6571 discord.abc.GuildChannel.set_permissions:25 +#: 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.guild.Guild.fetch_members:29 +#: discord.monetization.SKU.fetch_subscriptions:28 +#: discord.reaction.Reaction.users:27 #: discord.scheduled_events.ScheduledEvent.subscribers:38 #: discord.threads.Thread.purge:48 of msgid "Examples" msgstr "" -#: 51b8dfbb15bb43ef95c144c7a5d3f6ba 745ca57186c14e1785a2e80ce870df80 -#: 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 -#: f95b2fa403dc4f92a794b30158d2f431 of +#: 51b8dfbb15bb43ef95c144c7a5d3f6ba discord.abc.Messageable.history:40 +#: discord.guild.Guild.bans:36 discord.guild.Guild.fetch_members:30 +#: discord.monetization.SKU.fetch_subscriptions:29 +#: discord.reaction.Reaction.users:28 +#: discord.scheduled_events.ScheduledEvent.subscribers:39 of msgid "Usage ::" msgstr "" -#: 154df22c3326437ebd9a4d0421852b9e 976781fce2904a7ea929a7f179bad61a -#: ab788cd1146c42759b597d948a21f602 discord.abc.Messageable.history:47 +#: 154df22c3326437ebd9a4d0421852b9e 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 -#: discord.abc.Messageable.history:52 discord.guild.Guild.bans:16 -#: discord.guild.Guild.fetch_members:10 discord.member.Member.edit:35 -#: f55d483d8f7243539066e1a0a2e89189 of +#: 4e0136f8359346d6ae9e6d3eb61aa0d7 discord.abc.Messageable.history:52 +#: discord.guild.Guild.bans:16 discord.guild.Guild.fetch_members:10 +#: discord.member.Member.edit:35 of msgid "All parameters are optional." msgstr "" -#: 4f0650134f1040c6b9ae6622883f8748 8ca3f84c6e354ac5a6abcc0bf696e629 -#: dc000ded9dd346c096a38a8956dfdc6a discord.abc.Messageable.pins:3 of +#: 4f0650134f1040c6b9ae6622883f8748 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 +#: 5219c84db278497aafcba6d6e944b9fc 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 +#: 549042b4685847aba193e422e7789a14 discord.abc.Messageable.pins:11 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 +#: 2bc50ccd657f46209917f5d9f4099650 discord.abc.Messageable.pins:14 of msgid "Retrieving the pinned messages failed." msgstr "" -#: 2a04455df66145088795dfb431c2b0e9 66d2246603944b76b2b9c3683d1e1363 -#: discord.abc.Messageable.send:3 ed69aa77f03b4955bbe3d5671c0e8088 of +#: 2a04455df66145088795dfb431c2b0e9 discord.abc.Messageable.send:3 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 " @@ -1152,8 +1023,7 @@ msgid "" "the ``embed`` parameter must be provided." msgstr "" -#: 70aab3326d8f44e7bacd069c736a0420 724dcfafc4784a6e9190169d5b4ff6fc -#: ac929a3b993642c4959eb60a184fa042 discord.abc.Messageable.send:9 of +#: 70aab3326d8f44e7bacd069c736a0420 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 " @@ -1162,8 +1032,7 @@ msgid "" " an exception**." msgstr "" -#: 12384d2719ae45da97444ff82dc4f2d6 5d8119f4a9344fd8bb519aebe2645bff -#: 71fcdcc413ae47cb8f3aee3a55f10402 discord.abc.Messageable.send:14 of +#: 5d8119f4a9344fd8bb519aebe2645bff 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 " @@ -1172,69 +1041,58 @@ msgid "" "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 +#: 6af57bec404e422082a79e523a309932 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 +#: 06f3de9c7238498a8af9d93d7325365a discord.abc.Messageable.send:29 #: discord.channel.ForumChannel.create_thread:23 -#: discord.interactions.InteractionResponse.send_message:36 -#: e16b27219fda4529824444922c14f332 of +#: discord.interactions.InteractionResponse.send_message:36 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 +#: 55c2f9866dc74139b0feab43272e038d 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 +#: 0682ef24bd354948b962042a67084324 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 +#: ab8ae4adffea4ea1ad666e6619212c31 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 +#: 75b7f2ddb4c744648d05f3e322561b4c 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 +#: 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`." @@ -1245,11 +1103,10 @@ msgid "" "used instead. .. versionadded:: 1.4" msgstr "" -#: 1ff05d97ab3c410cbfab12ff72fc439a 76e68b02a3534b59bb633ccfab46cc5b -#: d8b69682b7294cac8417eaa4662fb1fb discord.abc.Messageable.send:49 +#: 76e68b02a3534b59bb633ccfab46cc5b discord.abc.Messageable.send:49 #: discord.channel.ForumChannel.create_thread:39 #: discord.interactions.InteractionResponse.edit_message:40 -#: discord.message.Message.edit:46 f47f15229801436fa9101633e7c271e3 of +#: 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`." @@ -1260,77 +1117,67 @@ msgid "" "used instead." msgstr "" -#: 12ae0cd2debd436ba454389a57dd9578 2aa113aa350843c58a84928aff36e57e -#: 4637e02b33794bb39d8bbf9635ea207f discord.abc.Messageable.send:59 of +#: 2aa113aa350843c58a84928aff36e57e 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 " +"A reference to the :class:`~discord.Message` being replied to or " +"forwarded. This can be created using " +":meth:`~discord.Message.to_reference`. When replying, you can control " +"whether 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 +#: 6e42ff8967e144e3ae89f80e28a26b06 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 " +"A reference to the :class:`~discord.Message` being replied to or " +"forwarded. This can be created using " +":meth:`~discord.Message.to_reference`. When replying, you can control " +"whether 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 +#: 27c40492605d46f4b6d1ec39f44617cb discord.abc.Messageable.send:68 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 +#: aaeebba9d9a64174b83aa7be6aae9540 discord.abc.Messageable.send:68 of msgid "" "If set, overrides the :attr:`~discord.AllowedMentions.replied_user` " "attribute of ``allowed_mentions``." msgstr "" -#: 34faeb47cd6d48c5bbd1a5beafac4e49 bd4855af588b4e1988b99aac83ede6de -#: cf005a229e6e4514a0a1788d1edc0f3e discord.abc.Messageable.send:73 +#: bd4855af588b4e1988b99aac83ede6de 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.abc.Messageable.send:76 #: discord.channel.ForumChannel.create_thread:20 -#: f103ebfe04b44e86849a58ad2e1e0dfe f324a93551a240b98f56ccda5ac85d13 of +#: f103ebfe04b44e86849a58ad2e1e0dfe of msgid "A list of embeds to upload. Must be a maximum of 10." msgstr "" -#: 4fb386188eb34f18a71304f7add2e62b b1d45afa98b64e6fa0ac204136beeb14 -#: discord.abc.Messageable.send:81 fef9be1b0ddc4247beb8c8dbc4822665 of +#: b1d45afa98b64e6fa0ac204136beeb14 discord.abc.Messageable.send:81 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 +#: 50a1e07e506e41859f67cc406b77ce5b discord.abc.Messageable.send:81 +#: discord.channel.ForumChannel.create_thread:29 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 @@ -1339,53 +1186,45 @@ msgstr "" msgid "Whether to suppress embeds for the message." msgstr "" -#: 1bfc49ed975b4dd6803c578b5a1b9a11 7b98f69bb68f41769f08d7f4087f8aca -#: 98f82715cfdd4551a4255c4314e32cf3 discord.abc.Messageable.send:89 of +#: 1bfc49ed975b4dd6803c578b5a1b9a11 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 +#: 1f656b33b85f44f1b8d7ef979f3fb091 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 +#: b141ceeb37ae4582a08741b71a2246bd 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 +#: d267e037031c49eb8e18cccf60f0c73f discord.abc.Messageable.send:94 +#: discord.interactions.InteractionResponse.send_message:42 of msgid "The poll to send." msgstr "" -#: 3a4f436feb9b4de4a168d2d5a14fbb8d 4e9295f65811429bad49c668d0b4d63c -#: 529869019b26467eabd9b22c54f8a337 discord.abc.Messageable.send:99 -#: discord.message.Message.reply:8 of +#: 3a4f436feb9b4de4a168d2d5a14fbb8d discord.abc.Messageable.send:99 +#: discord.message.Message.forward_to:12 discord.message.Message.reply:8 of msgid "The message that was sent." msgstr "" -#: 27d01e18735f42969e57b866ee44ac34 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 +#: discord.message.Message.forward_to:15 discord.message.Message.reply:11 +#: e115079242b5446f93fb52a4a2929591 of msgid "Sending the message failed." msgstr "" -#: 11607a716ca841198785219e0ca22b26 653f7d3602144d8e976bf3697fca85f6 #: ae8d9e25950748d7b741fcc4d782933b discord.abc.Messageable.send:103 -#: discord.message.Message.reply:12 of +#: discord.message.Message.forward_to:16 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 +#: 604cb5ce8f63403583ed85ead7908ba4 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 " @@ -1394,19 +1233,16 @@ msgid "" ":class:`~discord.PartialMessage`." msgstr "" -#: 0256a90926ae4ba39c97264975e6f972 433a232ac737443cadd8e5f32c10aea4 -#: da262d70dc734e058487c9d9d7fb55da discord.abc.Messageable.trigger_typing:3 of +#: 433a232ac737443cadd8e5f32c10aea4 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 +#: 10bacd45da084132bd3fef9ed8d250ca discord.abc.Messageable.trigger_typing:5 of msgid "" "*Typing* indicator will go away after 10 seconds, or after a message is " "sent." msgstr "" -#: 27bc06838ac848c3b0fe0336815bbeac 75890795eb3141649ba62f2337421e6d #: 86bbc2437e30463eba135081562d8883 9b4d5894f2f7434e8f7a6db8d32e038b #: discord.abc.GuildChannel.delete:16 discord.abc.GuildChannel.move:51 #: discord.abc.Messageable.trigger_typing:8 @@ -1415,9 +1251,9 @@ msgstr "" #: 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.emoji.AppEmoji.delete:11 discord.emoji.GuildEmoji.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 @@ -1442,7 +1278,7 @@ msgstr "" #: 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.consume:10 #: discord.monetization.Entitlement.delete:10 #: discord.reaction.Reaction.remove:19 discord.role.Role.delete:15 #: discord.scheduled_events.ScheduledEvent.delete:9 @@ -1453,34 +1289,30 @@ msgstr "" msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" msgstr "" -#: 0d3a00bc83d3498495522af06e5f9829 507759ccb3074f54855e48e5f971d798 -#: 82ac5b60c6c54cc69673118552352f27 discord.abc.Messageable.typing:1 of +#: 507759ccb3074f54855e48e5f971d798 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 +#: 8a9ffc24518f4de293cc4b65774a51d8 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 +#: a9a905b97c2a48ebbf86176eaeee6469 discord.abc.Messageable.typing:12 #: discord.guild.Guild.bulk_ban:10 of msgid "Example Usage: ::" msgstr "" -#: 715e396d169947279c18eb2f259bd903 9b14b15d4eb74f3f82993eca73ef83e5 +#: 715e396d169947279c18eb2f259bd903 #: discord.channel.DMChannel.get_partial_message:1 #: discord.channel.PartialMessageable.get_partial_message:1 #: discord.channel.StageChannel.get_partial_message:1 @@ -1490,7 +1322,7 @@ msgstr "" msgid "Creates a :class:`PartialMessage` from the message ID." msgstr "" -#: 67179488c7744e83bfcf423722415b13 823983a7d48b436491e7c7d6c382dd49 +#: 67179488c7744e83bfcf423722415b13 #: discord.channel.DMChannel.get_partial_message:3 #: discord.channel.PartialMessageable.get_partial_message:3 #: discord.channel.StageChannel.get_partial_message:3 @@ -1502,7 +1334,7 @@ msgid "" "without doing an unnecessary API call." msgstr "" -#: 843df377ee7c4084b88787836abc669e 98efec157ebb473c808aae14f50e6d61 +#: 843df377ee7c4084b88787836abc669e #: discord.channel.DMChannel.get_partial_message:9 #: discord.channel.PartialMessageable.get_partial_message:7 #: discord.channel.StageChannel.get_partial_message:9 @@ -1512,7 +1344,7 @@ msgstr "" msgid "The message ID to create a partial message for." msgstr "" -#: 02f2a7118c294c018c9461a938ec529b 6f2827dab3174ceba9c167c94f8e8b01 +#: 6f2827dab3174ceba9c167c94f8e8b01 #: discord.channel.DMChannel.get_partial_message:12 #: discord.channel.PartialMessageable.get_partial_message:10 #: discord.channel.StageChannel.get_partial_message:12 @@ -1522,7 +1354,7 @@ msgstr "" msgid "The partial message." msgstr "" -#: 125d07572d5c4fa4bafff84e471385ed 5d6e1bf5a673406c9a939d94eda6212d +#: 125d07572d5c4fa4bafff84e471385ed #: discord.channel.DMChannel.get_partial_message:13 #: discord.channel.PartialMessageable.get_partial_message:11 #: discord.channel.StageChannel.get_partial_message:13 @@ -1540,42 +1372,39 @@ msgstr "" msgid "Represents your Discord user." msgstr "" -#: 8528f633c43f4dfba2b972dc62785542 bb87a910467b4f62bb1f394dd32e6575 -#: discord.user.ClientUser:7 discord.user.User:7 of +#: 8528f633c43f4dfba2b972dc62785542 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 +#: 85c8883463c64892b2d113641e57cfc0 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 +#: 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 +#: 1add853063144abda929fa08b980265c 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 +#: df577759b9bb40b891e952c0fc8d7856 discord.user.ClientUser:23 +#: discord.user.User:23 of msgid "The user's username." msgstr "" -#: 23e632a55bcf4949b35edf2b13661d83 34f8a3e93d424eff88254983dd3736a7 -#: 3a3a7e1226884523b0ba2364ba0ceaf7 67c2d7ad9e4f432590e0941a54d9e9be -#: 6ab9e38fee2f4f6cb94faa9a8b05a91c 829531878901473f909b329033e932a3 -#: 8cdd313032d24f41a003933efa33756e 956a1abeaf574fbfba3816ea1bfa1d1b -#: b181e837ebe24f42aed74532d371c2d6 cd70408c99084152b7be0bcf7f009b7e -#: d8bb4e332f9e4288aa8952e99c0043df discord.SKU.url:3 +#: b181e837ebe24f42aed74532d371c2d6 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.channel.MediaChannel:27 discord.channel.StageChannel:27 +#: discord.channel.TextChannel:25 discord.channel.VoiceChannel:25 +#: discord.components.FileComponent:23 discord.components.TextDisplay:17 +#: discord.emoji.AppEmoji:35 discord.emoji.GuildEmoji: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 @@ -1589,8 +1418,8 @@ msgstr "" #: 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.Attachment:54 discord.message.Attachment:70 +#: discord.message.Attachment:78 discord.message.Attachment:132 #: discord.message.Message:43 discord.monetization.SKU:27 #: discord.monetization.SKU:33 discord.onboarding.OnboardingPrompt:21 #: discord.onboarding.PromptOption:33 @@ -1616,17 +1445,17 @@ msgstr "" #: 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 of +#: discord.widget.WidgetMember:37 of msgid ":class:`str`" msgstr "" -#: 7d59402a16e54f61a97fdc966dfa756c db789a3e10764d59b4328ce02560ff1f -#: discord.user.ClientUser:29 discord.user.User:29 of +#: 7d59402a16e54f61a97fdc966dfa756c 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 +#: 4fe49248ca6a4cf19931a37f31753734 discord.user.ClientUser:35 +#: discord.user.User:35 of msgid "The user's discriminator. This is given when the username has conflicts." msgstr "" @@ -1637,17 +1466,17 @@ msgid "" msgstr "" #: ced530d2472048d0a529cf1cf1c91d86 discord.user.ClientUser:45 -#: discord.user.User:45 f5d700742ed5457cbd1652439db6a54f of +#: discord.user.User:45 of msgid "The user's global name." msgstr "" -#: 6f1c81c727e7490db10e1647ddc6868b 855b4c1de89b43c29aea9b3c7d9b52cd -#: discord.user.ClientUser:53 discord.user.User:53 of +#: 6f1c81c727e7490db10e1647ddc6868b 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 +#: discord.user.ClientUser:59 discord.user.User:59 +#: e5ec8e04dabb4b16903f766258769106 of msgid "" "Specifies if the user is a system user (i.e. represents Discord " "officially)." @@ -1661,23 +1490,22 @@ msgstr "" msgid "The IETF language tag used to identify the language the user is using." msgstr "" -#: ../../api/models.rst:140 7a2d9ca6781d4f33b2f9fa33a78e4bcc -#: 7c77b2ea3750497e96dc19203a13f276 9c465eb7704a47f9811d7160f3bd5935 -#: cdc5ce07494d46818ca2ced81397e2b3 dc1d35b84de04aa694c7b09e76c9f5ab +#: ../../api/models.rst:145 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.channel.MediaChannel:55 discord.channel.StageChannel:45 +#: discord.channel.TextChannel:49 discord.channel.VoiceChannel:106 +#: discord.components.Button:22 discord.components.Button:28 +#: discord.components.Button:40 discord.components.SelectMenu:27 +#: discord.components.SelectMenu:33 discord.components.Thumbnail:23 #: 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.member.Member:54 discord.message.Attachment:63 +#: discord.message.Attachment:84 discord.message.Attachment:100 +#: discord.message.Attachment:116 discord.onboarding.PromptOption:39 #: discord.partial_emoji.PartialEmoji:32 #: discord.raw_models.RawAuditLogEntryEvent:39 -#: discord.raw_models.RawVoiceChannelStatusUpdateEvent:21 discord.role.Role:102 +#: discord.raw_models.RawVoiceChannelStatusUpdateEvent:21 discord.role.Role:104 #: discord.scheduled_events.ScheduledEvent:39 discord.user.ClientUser:75 #: discord.widget.WidgetMember:55 discord.widget.WidgetMember:61 #: f2fec74b5ab74ff4b1cab4cf1a188256 of @@ -1749,108 +1577,92 @@ msgstr "" msgid "Wrong image format passed for ``avatar`` or ``banner``." msgstr "" -#: 5d42054d5da84f4fbd5c7a1c1f650136 6a0f951102c042f1967a6cc3fb063826 -#: 6ab96fcf4f29436e858954fbce53796b discord.ClientUser.accent_color:1 +#: 6a0f951102c042f1967a6cc3fb063826 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 +#: 98620bb2a1034ce2a564fe642e2417c6 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 +#: 5b13b7de5a524b0aaf9cc1784c3e14eb 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 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 +#: c59947f63fe941bf84cf9f07cdfe2593 discord.ClientUser.accent_colour:1 +#: discord.User.accent_colour:1 discord.WidgetMember.accent_colour:1 of msgid "Returns the user's accent colour, if applicable." msgstr "" -#: 04e4c72d96d64ecd921c375be4339ac8 6b7360e798ae481c9c1808160c5bb033 -#: a090b4fb330747bd92cc59742138225c discord.ClientUser.accent_colour:3 +#: 04e4c72d96d64ecd921c375be4339ac8 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 +#: 501c4f6cbdbf42769fff2a35d112d118 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 +#: 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 +#: 0d50a75dd5aa40f4a61fc98fd5b2e577 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 +#: 9cec23c320d8469ea36f43da369ed102 discord.ClientUser.colour:1 +#: discord.User.colour:1 discord.WidgetMember.colour:1 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 +#: 8221e054b3a6494e9dcbb094d3c44517 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 +#: 224eea430fc345f5baaceb1fd1705c4a 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 " @@ -1858,62 +1670,53 @@ msgid "" "discriminator." msgstr "" -#: 3c9e57b8c879411eb7b0a5bce8837eaa 613adc4ebb9d487bb1c10b1b831c265a -#: 91a80ca04f9845d782a0aec709e6342d discord.ClientUser.display_avatar:1 +#: 3c9e57b8c879411eb7b0a5bce8837eaa 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 +#: 590fc14655784aab8f2ee70767655abb 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 +#: 8f7489e0344546199a8c5c066f41a5c2 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 +#: 93632cb243b348e9956831b21bdc22a9 discord.ClientUser.public_flags:1 +#: discord.User.public_flags:1 discord.WidgetMember.public_flags:1 of msgid "The publicly available flags the user has." msgstr "" @@ -1945,13 +1748,12 @@ msgstr "" msgid "This will only return mutual guilds within the client's internal cache." msgstr "" -#: 463038c5ef3f43cd807215436ae90bd7 5d3cf60bddbc4c6fad29b9c300b60469 +#: 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 "" @@ -1959,8 +1761,7 @@ msgid "" "people." msgstr "" -#: 34c3db924cfe4afba20d42849d8a1d7b 7f0c8d792b204d7eb76a4f9cdbbc9b4a -#: discord.channel.CategoryChannel.clone:19 +#: 34c3db924cfe4afba20d42849d8a1d7b 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 @@ -1968,33 +1769,32 @@ msgstr "" msgid "The channel that was created." msgstr "" -#: 827186088d1d4f689ad318127cf593a4 b6cefe350c984fc3b0fdd3b0b59ea5e6 +#: 827186088d1d4f689ad318127cf593a4 #: discord.member.flatten_user..generate_function..general:9 #: discord.user.User.create_dm:9 of msgid ":class:`.DMChannel`" msgstr "" -#: 6f3a14dd55e94eff97233f7cdb9ddded ad1e53c4d8a74c90aea9eac9056fa9a8 +#: 6f3a14dd55e94eff97233f7cdb9ddded #: 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 +#: 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 +#: 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 @@ -2002,7 +1802,7 @@ msgstr "" msgid ":class:`Entitlement`" msgstr "" -#: 024d66d0841244cab9d49a97deb4c5e5 ae059b12f7be4225823a1ebe75b9caa2 +#: ae059b12f7be4225823a1ebe75b9caa2 #: discord.member.flatten_user..generate_function..general:1 #: discord.user.User.entitlements:1 of msgid "" @@ -2012,21 +1812,19 @@ msgstr "" #: 73ee380e8eaa49b1985d9e76d0ce3011 #: discord.member.flatten_user..generate_function..general:3 -#: discord.user.User.entitlements:3 e10285f0eb4f48e8b6564c9263859412 of +#: discord.user.User.entitlements:3 of msgid "" "This is identical to :meth:`Client.entitlements` with the ``user`` " "parameter." msgstr "" -#: 191945eb971249b586dd09f0a363f167 8a837858c9c74dd78408d01365b40b96 -#: discord.guild.Guild.entitlements:8 +#: 191945eb971249b586dd09f0a363f167 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 +#: 6aa172e940f144f98ef4d69e388b7e00 discord.guild.Guild.entitlements:11 #: discord.member.flatten_user..generate_function..general:11 #: discord.user.User.entitlements:11 of msgid "" @@ -2035,8 +1833,7 @@ msgid "" "it is assumed to be local time." msgstr "" -#: 3be018fd0820429f800ddf00c58423ea 960251d52e934e4c92c9bd0a0aa77ea8 -#: discord.guild.Guild.entitlements:16 +#: 3be018fd0820429f800ddf00c58423ea discord.guild.Guild.entitlements:16 #: discord.member.flatten_user..generate_function..general:16 #: discord.user.User.entitlements:16 of msgid "" @@ -2045,8 +1842,7 @@ msgid "" "is assumed to be local time." msgstr "" -#: 2f95d22d8cda40e587765c256f57bfe6 ccc5662bbccc488a8bd98f228735b700 -#: discord.guild.Guild.entitlements:21 +#: 2f95d22d8cda40e587765c256f57bfe6 discord.guild.Guild.entitlements:21 #: discord.member.flatten_user..generate_function..general:21 #: discord.user.User.entitlements:21 of msgid "" @@ -2054,8 +1850,7 @@ msgid "" "entitlement, which may be slow. Defaults to ``100``." msgstr "" -#: 45683405846449d59048c3085f095887 cb8af2a165a445fa87148c0efa867904 -#: discord.guild.Guild.entitlements:26 +#: cb8af2a165a445fa87148c0efa867904 discord.guild.Guild.entitlements:26 #: discord.member.flatten_user..generate_function..general:26 #: discord.user.User.entitlements:26 of msgid "" @@ -2063,22 +1858,21 @@ msgid "" "Defaults to ``False``." msgstr "" -#: 2fcb0d10765c4c01b53a633d1e7749f0 c089af58b0c7402cb4dee2dcb39632a4 -#: discord.guild.Guild.entitlements:30 +#: 2fcb0d10765c4c01b53a633d1e7749f0 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 +#: 4477dcd6cf974b189ffa8308bef5b349 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 +#: add5fc2b3b474b48963f5e2d57af8ad3 discord.guild.Guild.entitlements:34 +#: discord.user.User.entitlements:34 of msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.EntitlementIterator\\``" msgstr "" @@ -2102,44 +1896,49 @@ msgstr "" 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." +#: 48caa2a52a4144049a492c2f01a7eff0 discord.message.Attachment:19 of +msgid "Returns the attachment's unique identifier." +msgstr "" + +#: cf3459c60a5448888d44092d532857cb discord.message.Attachment:21 of +msgid "This is equivalent to :attr:`id`." msgstr "" -#: 0c575e35aef5425b94a0dff90e2e0231 discord.message.Attachment:21 of +#: 0c575e35aef5425b94a0dff90e2e0231 discord.message.Attachment:23 of msgid "Attachment can now be cast to :class:`str` and is hashable." msgstr "" -#: 8c174bbfd44147ecb1d712933fa3aa4e discord.message.Attachment:26 of +#: 8c174bbfd44147ecb1d712933fa3aa4e discord.message.Attachment:28 of msgid "The attachment ID." msgstr "" -#: cad88e03745e4898b486276d5648803c discord.message.Attachment:32 of +#: cad88e03745e4898b486276d5648803c discord.message.Attachment:34 of msgid "The attachment size in bytes." msgstr "" -#: a2938bf7c9b44e4e9bca2663a729afaf discord.message.Attachment:38 of +#: a2938bf7c9b44e4e9bca2663a729afaf discord.message.Attachment:40 of msgid "The attachment's height, in pixels. Only applicable to images and videos." msgstr "" -#: 32bfaad9dc0e42aba5a769f9c2139168 4eda47990854400088b81bf7ad06b60b #: 8a0504dbcaec4f5ca2890730091a5b6a 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.ForumChannel:126 discord.channel.MediaChannel:45 +#: discord.channel.MediaChannel:62 discord.channel.MediaChannel:69 +#: discord.channel.MediaChannel:118 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.channel.VoiceChannel:87 discord.components.Button:52 +#: discord.emoji.AppEmoji:65 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.invite.Invite:116 discord.message.Attachment:42 +#: discord.message.Attachment:48 discord.message.Message:126 #: discord.partial_emoji.PartialEmoji:44 #: discord.raw_models.AutoModActionExecutionEvent:53 #: discord.raw_models.AutoModActionExecutionEvent:66 @@ -2153,75 +1952,76 @@ msgstr "" #: 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.raw_models.RawTypingEvent:27 discord.role.RoleTags:19 +#: discord.role.RoleTags:25 discord.role.RoleTags:33 +#: discord.scheduled_events.ScheduledEvent:70 #: discord.scheduled_events.ScheduledEvent:78 discord.threads.Thread:61 -#: f50b8fb8640844a6933c62864952effb f55fe32c1fb5446182de1835f38e3e5f of +#: f50b8fb8640844a6933c62864952effb of msgid "Optional[:class:`int`]" msgstr "" -#: 5ef4f4ec93704176ab793181a849f05f discord.message.Attachment:44 of +#: 5ef4f4ec93704176ab793181a849f05f discord.message.Attachment:46 of msgid "The attachment's width, in pixels. Only applicable to images and videos." msgstr "" -#: 1578fbf5297d4be08834fd1ee5ef1fe5 discord.message.Attachment:50 of +#: 1578fbf5297d4be08834fd1ee5ef1fe5 discord.message.Attachment:52 of msgid "The attachment's filename." msgstr "" -#: 958d5b5f3b08410aa5055b2450fc39f1 discord.message.Attachment:56 of +#: 958d5b5f3b08410aa5055b2450fc39f1 discord.message.Attachment:58 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 +#: discord.message.Attachment:67 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 +#: 992e18f11a9c4994b41a6e9c411d60de discord.message.Attachment:74 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 +#: 3afcc47a746b41ef962d8970c735e85c discord.message.Attachment:82 of msgid "The attachment's `media type `_." msgstr "" -#: 1bc86b04dd0e4e3ab62f5abb1fa5a191 discord.message.Attachment:86 of +#: 1bc86b04dd0e4e3ab62f5abb1fa5a191 discord.message.Attachment:88 of msgid "Whether the attachment is ephemeral or not." msgstr "" -#: 3f39cbfb9d7b4acdbbbbb44af1a4a044 discord.message.Attachment:94 of +#: 3f39cbfb9d7b4acdbbbbb44af1a4a044 discord.message.Attachment:96 of msgid "The attachment's description." msgstr "" -#: 41a146e92e5c4b14b97610c414598c5f discord.message.Attachment:102 of +#: 41a146e92e5c4b14b97610c414598c5f discord.message.Attachment:104 of msgid "The duration of the audio file (currently for voice messages)." msgstr "" -#: 5e36ab69e24a4e9281fef9f23b4e9417 discord.message.Attachment:106 of +#: 5e36ab69e24a4e9281fef9f23b4e9417 discord.message.Attachment:108 of msgid "Optional[:class:`float`]" msgstr "" -#: discord.message.Attachment:110 eff44c3749674e1fbbf4b67f51584aa1 of +#: discord.message.Attachment:112 eff44c3749674e1fbbf4b67f51584aa1 of msgid "" "The base64 encoded bytearray representing a sampled waveform (currently " "for voice messages)." msgstr "" -#: 8d72571d6ca849d6a35b59f075db944f discord.message.Attachment:118 of +#: 8d72571d6ca849d6a35b59f075db944f discord.message.Attachment:120 of msgid "Extra attributes of the attachment." msgstr "" -#: ab0f888b90cd441e98e12a4233f6a5ca discord.message.Attachment:122 of +#: ab0f888b90cd441e98e12a4233f6a5ca discord.message.Attachment:124 of msgid ":class:`AttachmentFlags`" msgstr "" -#: discord.message.Attachment:126 eb66ce493d6144a692880c2d020256d8 of +#: discord.message.Attachment:128 eb66ce493d6144a692880c2d020256d8 of msgid "The unique signature of this attachment's instance." msgstr "" @@ -2241,8 +2041,7 @@ msgstr "" msgid "Saves this attachment into a file-like object." msgstr "" -#: 2b5ead79700145a382d76f44023473e0 7aa4f610913d4f9b9a7d74ae16d69eb5 -#: abdf57698eb34d8982ba647f6da17306 discord.message.Attachment.read:8 +#: 2b5ead79700145a382d76f44023473e0 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" @@ -2257,7 +2056,6 @@ msgstr "" 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." @@ -2271,13 +2069,13 @@ msgstr "" msgid "The contents of the attachment." msgstr "" -#: 4db1799592a342b69f4dff05cb3399aa 50fc85816460419987fd4b9d6f35c1e0 -#: discord.message.Attachment.read:19 discord.message.Attachment.to_file:27 of +#: 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 +#: 852f492f157c49a49a538a015d3dc7f6 discord.message.Attachment.read:20 +#: discord.message.Attachment.to_file:28 of msgid "You do not have permissions to access this attachment" msgstr "" @@ -2519,8 +2317,8 @@ msgstr "" msgid "``party_id``: The party ID associated with the party." msgstr "" -#: 11c75525785d4c429178a7a718d68f80 discord.message.Message:164 -#: discord.message.Message:178 f3f5b79ae0264c59b2b8f18457a33604 of +#: discord.message.Message:164 discord.message.Message:178 +#: f3f5b79ae0264c59b2b8f18457a33604 of msgid "Optional[:class:`dict`]" msgstr "" @@ -2564,8 +2362,9 @@ msgstr "" msgid "A list of components in the message." msgstr "" -#: 67814d733bdf4049865a606a8b8f8cc5 84f37565d5b54049bca37476a10434b3 -#: discord.components.ActionRow:19 discord.message.Message:194 of +#: 67814d733bdf4049865a606a8b8f8cc5 discord.components.ActionRow:19 +#: discord.components.Container:25 discord.components.Section:17 +#: discord.message.Message:194 of msgid "List[:class:`Component`]" msgstr "" @@ -2573,8 +2372,7 @@ msgstr "" msgid "The guild that the message belongs to, if applicable." msgstr "" -#: ../../docstring 9dd1e8c3b999410fa6625ba6f279c7c7 -#: c721db13a7b146019d639a9f3f834bf5 +#: ../../docstring c721db13a7b146019d639a9f3f834bf5 #: discord.AuthorizingIntegrationOwners.guild:4 discord.message.Message:200 #: discord.raw_models.AutoModActionExecutionEvent:35 #: discord.raw_models.RawScheduledEventSubscription:22 of @@ -2597,8 +2395,8 @@ msgstr "" msgid "The interaction metadata associated with the message, if applicable." msgstr "" -#: 465b6273c1434cdf84d1bf9d0bec35d1 bc296a912770482a81cf365b4076d957 -#: discord.interactions.InteractionMetadata:49 discord.message.Message:218 of +#: bc296a912770482a81cf365b4076d957 discord.interactions.InteractionMetadata:49 +#: discord.message.Message:218 of msgid "Optional[:class:`InteractionMetadata`]" msgstr "" @@ -2606,9 +2404,8 @@ msgstr "" msgid "The thread created from this message, if applicable." msgstr "" -#: aac45b2defac480591d4ff80dd368aa8 d8d7b5cabb804112945544dd9fce00a3 -#: discord.channel._TextChannel.get_thread:10 discord.guild.Guild.get_thread:10 -#: discord.message.Message:226 of +#: d8d7b5cabb804112945544dd9fce00a3 discord.channel._TextChannel.get_thread:10 +#: discord.guild.Guild.get_thread:10 discord.message.Message:226 of msgid "Optional[:class:`Thread`]" msgstr "" @@ -2628,6 +2425,14 @@ msgstr "" msgid "Optional[:class:`MessageCall`]" msgstr "" +#: 976df015627c468c81e129d00a058565 discord.message.Message:246 of +msgid "The snapshots attached to this message, if applicable." +msgstr "" + +#: 4229c74086434a8da37f74044d1d1104 discord.message.Message:250 of +msgid "Optional[List[:class:`MessageSnapshots`]]" +msgstr "" + #: ../../docstring d59d70f0cbd743578391ed22b87a8517 #: discord.Message.raw_mentions:1 of msgid "" @@ -2712,11 +2517,11 @@ msgstr "" 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." +":attr:`Message.content`, and forwarded messages will display the original" +" message's content from :attr:`Message.snapshots`. 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." @@ -2745,7 +2550,7 @@ msgstr "" #: 31dae9bdaac8430bab6b0a5bad06b2c3 #: discord.interactions.InteractionMessage.delete:10 -#: discord.message.Message.delete:20 f075f7ddf459448486db289bb7a664c8 of +#: discord.message.Message.delete:20 of msgid "You do not have proper permissions to delete the message." msgstr "" @@ -2753,8 +2558,7 @@ msgstr "" msgid "The message was deleted already" msgstr "" -#: 11626a89e9754d98b9e406dee995ee11 120db33a3735472ab0570bbc976c4428 -#: 918b2eb266e64d8b92a504fe13d28665 +#: 11626a89e9754d98b9e406dee995ee11 918b2eb266e64d8b92a504fe13d28665 #: discord.interactions.Interaction.delete_original_message:3 #: discord.interactions.Interaction.delete_original_response:13 #: discord.interactions.InteractionMessage.delete:12 @@ -2762,7 +2566,7 @@ msgstr "" msgid "Deleting the message failed." msgstr "" -#: 6ed53c62bf794126a8bcd24d3fd2a19e 99ff3a0b34044b0aa7c00d20adca1974 +#: 6ed53c62bf794126a8bcd24d3fd2a19e #: discord.interactions.InteractionMessage.edit:3 #: discord.message.Message.edit:3 of msgid "Edits the message." @@ -2810,7 +2614,7 @@ msgstr "" msgid "New files to add to the message." msgstr "" -#: 30fc507352f2434c88bf8dae92a030f3 37250a2ca1734906b0f17639a4ca5a55 +#: 37250a2ca1734906b0f17639a4ca5a55 #: discord.interactions.Interaction.edit_original_response:29 #: discord.interactions.InteractionMessage.edit:23 #: discord.interactions.InteractionResponse.edit_message:24 @@ -2828,7 +2632,7 @@ msgid "" ":attr:`~.Permissions.manage_messages`." msgstr "" -#: 1b1c8d98c40d4a1db673aba02af8ab84 a865ae969b7e4cd1aa10292adaa53422 +#: a865ae969b7e4cd1aa10292adaa53422 #: discord.interactions.Interaction.edit_original_response:41 #: discord.interactions.InteractionMessage.edit:35 #: discord.interactions.InteractionResponse.edit_message:32 @@ -2839,7 +2643,7 @@ msgid "" "silently ignored." msgstr "" -#: 14c5970e926b4bdba9cf225c428573be 66bd52e02f594816b9a3876ee0003e20 +#: 66bd52e02f594816b9a3876ee0003e20 #: discord.interactions.Interaction.edit_original_response:37 #: discord.interactions.InteractionMessage.edit:31 #: discord.interactions.InteractionResponse.edit_message:28 @@ -2967,7 +2771,9 @@ msgstr "" #: 1aa5ee02625744fb8125add13b1e3df3 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`." +msgid "" +"The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an " +":class:`AppEmoji`." msgstr "" #: 0664e6f74ec5451ab9265738e4ebaa40 discord.message.Message.add_reaction:7 of @@ -3156,16 +2962,28 @@ msgid "" ":class:`.Message`." msgstr "" -#: 8fb0c77645f547c6872c4b243378a15d discord.message.Message.reply:9 of +#: 8fb0c77645f547c6872c4b243378a15d discord.message.Message.forward_to:13 +#: discord.message.Message.reply:9 of msgid ":class:`.Message`" msgstr "" -#: 407cc6ed96864a86a0c521ed428b7511 discord.message.Message.reply:13 of +#: 407cc6ed96864a86a0c521ed428b7511 discord.message.Message.forward_to:17 +#: discord.message.Message.reply:13 of msgid "" "The ``files`` list is not of the appropriate size, or you specified " "both ``file`` and ``files``." msgstr "" +#: discord.message.Message.forward_to:3 fbd67ff4c215400ea4a271748c5dc77c of +msgid "" +"A shortcut method to :meth:`.abc.Messageable.send` to forward the " +":class:`.Message` to a channel." +msgstr "" + +#: discord.message.Message.forward_to:9 f884e37b37a34004b7a60715f9c7e323 of +msgid "The channel to forward this to." +msgstr "" + #: 3dafec6926db4c4d81092ac287d3d107 discord.message.Message.end_poll:3 of msgid "" "Immediately ends the poll associated with this message. Only doable by " @@ -3207,11 +3025,19 @@ msgid "" "not fetch the message." msgstr "" -#: 8a8ab09da0a9465bb681ee6462a156b6 discord.message.Message.to_reference:12 of +#: discord.message.Message.to_reference:12 f7c3557ed02049ffa29494923a1632a1 of +msgid "The type of message reference. Defaults to a reply. .. versionadded:: 2.7" +msgstr "" + +#: bc8530e934df4b92844df9fc397447a6 discord.message.Message.to_reference:12 of +msgid "The type of message reference. Defaults to a reply." +msgstr "" + +#: 8a8ab09da0a9465bb681ee6462a156b6 discord.message.Message.to_reference:17 of msgid "The reference to this message." msgstr "" -#: discord.message.Message.to_reference:13 f06595a3a15743dcbeae344ccd5daf42 of +#: discord.message.Message.to_reference:18 f06595a3a15743dcbeae344ccd5daf42 of msgid ":class:`~discord.MessageReference`" msgstr "" @@ -3278,9 +3104,10 @@ msgstr "" msgid "The reaction emoji. May be a custom emoji, or a unicode emoji." msgstr "" -#: d0fdab02f7ff4c81b105f060099ea6dd discord.reaction.Reaction:30 -#: discord.welcome_screen.WelcomeScreenChannel:21 of -msgid "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" +#: d0fdab02f7ff4c81b105f060099ea6dd discord.reaction.Reaction:30 of +msgid "" +"Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, " +":class:`str`]" msgstr "" #: 2c4aa0d7cbbb4f988a1a6fc2f1c7f688 discord.reaction.Reaction:34 of @@ -3466,65 +3293,139 @@ msgstr "" msgid "Returns the URL for the SKU." msgstr "" +#: 024d66d0841244cab9d49a97deb4c5e5 +#: discord.monetization.SKU.fetch_subscriptions:1 of +msgid "" +"Returns an :class:`.AsyncIterator` that enables fetching the SKU's " +"subscriptions." +msgstr "" + +#: discord.monetization.SKU.fetch_subscriptions:6 +#: e985008dbcff48aca12f0100d929a58b of +msgid "The user for which to retrieve subscriptions." +msgstr "" + +#: 19c5cfcf169d466a949ae4cad69dd539 +#: discord.monetization.SKU.fetch_subscriptions:9 of +msgid "" +"Retrieves subscriptions before this date or object. If a datetime is " +"provided, it is recommended to use a UTC-aware datetime. If the datetime " +"is naive, it is assumed to be local time." +msgstr "" + +#: 960251d52e934e4c92c9bd0a0aa77ea8 +#: discord.monetization.SKU.fetch_subscriptions:14 of +msgid "" +"Retrieve subscriptions after this date or object. If a datetime 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.monetization.SKU.fetch_subscriptions:19 +#: fb2eba26c34c411ca8bbe737728d0a39 of +msgid "" +"The number of subscriptions to retrieve. If ``None``, retrieves all " +"subscriptions." +msgstr "" + +#: 4c69159877084830ad00ea3485e639ae +#: discord.monetization.SKU.fetch_subscriptions:22 of +msgid ":class:`Subscription` -- A subscription that the user has for this SKU." +msgstr "" + +#: aa2b527516c44c569aff79684995a1ba +#: discord.monetization.SKU.fetch_subscriptions:24 of +msgid "Getting the subscriptions failed." +msgstr "" + +#: 71a9a557b42348ec8e3746a3f51ea658 +#: discord.monetization.SKU.fetch_subscriptions:25 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" +msgstr "" + +#: 081c6429caa04e0a8c5e5dbf3e7662c7 discord.guild.Guild.bans:41 +#: discord.guild.Guild.fetch_members:35 +#: discord.monetization.SKU.fetch_subscriptions:34 of +msgid "Flattening into a list ::" +msgstr "" + +#: 0d272e8551554a528b510633e63e660b +#: discord.monetization.SKU.fetch_subscriptions:39 of +msgid "All parameters except for ``user`` are optional." +msgstr "" + #: discord.monetization.Entitlement:1 f90050e635304cceb060faed27c18428 of msgid "Represents a Discord entitlement." msgstr "" -#: 474393e263ed49ceadcdb9df979b1e80 discord.monetization.Entitlement:7 of +#: 27baecc3276a41b28300eb5732e444c8 discord.monetization.Entitlement:7 of +msgid "" +"As of October 1, 2024, entitlements that have been purchased will have " +"``ends_at`` set to ``None`` unless the parent :class:`Subscription` has " +"been cancelled." +msgstr "" + +#: b6afb38f8d2e49ebb42b29492db03440 discord.monetization.Entitlement:10 of +msgid "" +"`See the Discord changelog. `_" +msgstr "" + +#: 474393e263ed49ceadcdb9df979b1e80 discord.monetization.Entitlement:14 of msgid "The entitlement's ID." msgstr "" -#: discord.monetization.Entitlement:13 e22b12906d11423b92816daccc7bbee6 of +#: discord.monetization.Entitlement:20 e22b12906d11423b92816daccc7bbee6 of msgid "The ID of the SKU this entitlement is for." msgstr "" -#: discord.monetization.Entitlement:19 fcc6d115692f4a39ad0cd1665c40aded of +#: discord.monetization.Entitlement:26 fcc6d115692f4a39ad0cd1665c40aded of msgid "The ID of the application this entitlement belongs to." msgstr "" -#: 390ffbbcdbea4754bbbd4fa8dc55c4a1 discord.monetization.Entitlement:25 of +#: 390ffbbcdbea4754bbbd4fa8dc55c4a1 discord.monetization.Entitlement:32 of msgid "The ID of the user that owns this entitlement." msgstr "" -#: 6cb0d709a1ce4db0ac68dcdb6166f2fc discord.monetization.Entitlement:27 -#: discord.monetization.Entitlement:57 of +#: 6cb0d709a1ce4db0ac68dcdb6166f2fc discord.monetization.Entitlement:34 +#: discord.monetization.Entitlement:64 of msgid "Union[:class:`int`, :class:`MISSING`]" msgstr "" -#: 6127f165c1f342a69f6e0693dc75a9f9 discord.monetization.Entitlement:31 of +#: 6127f165c1f342a69f6e0693dc75a9f9 discord.monetization.Entitlement:38 of msgid "The type of entitlement." msgstr "" -#: 7d438bff37c749b3950ffe589d702f9f discord.monetization.Entitlement:33 of +#: 7d438bff37c749b3950ffe589d702f9f discord.monetization.Entitlement:40 of msgid ":class:`EntitlementType`" msgstr "" -#: discord.monetization.Entitlement:37 eeed4145d06f42de87ad7d9fa099ee64 of +#: discord.monetization.Entitlement:44 eeed4145d06f42de87ad7d9fa099ee64 of msgid "Whether the entitlement has been deleted." msgstr "" -#: discord.monetization.Entitlement:43 e426dda4c7484e6c94320a0b89169497 of +#: discord.monetization.Entitlement:50 e426dda4c7484e6c94320a0b89169497 of msgid "When the entitlement starts." msgstr "" -#: c2010b24b8dd4c6d88d0ecd78719e628 discord.monetization.Entitlement:45 -#: discord.monetization.Entitlement:51 of +#: c2010b24b8dd4c6d88d0ecd78719e628 discord.monetization.Entitlement:52 +#: discord.monetization.Entitlement:58 of msgid "Union[:class:`datetime.datetime`, :class:`MISSING`]" msgstr "" -#: 455f169162d3445d83c04197602e6bac discord.monetization.Entitlement:49 of +#: 455f169162d3445d83c04197602e6bac discord.monetization.Entitlement:56 of msgid "When the entitlement expires." msgstr "" -#: a8a68a11ea664400b47e3c47bb207c13 discord.monetization.Entitlement:55 of +#: a8a68a11ea664400b47e3c47bb207c13 discord.monetization.Entitlement:62 of msgid "The ID of the guild that owns this entitlement." msgstr "" -#: 75e64b3cc68246fd9a86531d95c85d6e discord.monetization.Entitlement:61 of +#: 75e64b3cc68246fd9a86531d95c85d6e discord.monetization.Entitlement:68 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`." +"``False`` for entitlements that are not from an SKU of type " +":attr:`SKUType.consumable`." msgstr "" #: 7007221d52574f1ab5ad1b0a27d15876 discord.monetization.Entitlement.consume:3 @@ -3535,16 +3436,11 @@ 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." +"This can only be done on entitlements from an SKU of type " +":attr:`SKUType.consumable`." msgstr "" -#: discord.monetization.Entitlement.consume:8 fb894fb00daa46e8b8dae1d812d0c7b9 +#: discord.monetization.Entitlement.consume:7 fb894fb00daa46e8b8dae1d812d0c7b9 #: of msgid "Consuming the entitlement failed." msgstr "" @@ -3567,7 +3463,90 @@ msgstr "" msgid "Deleting the entitlement failed." msgstr "" -#: ../../api/models.rst:118 e844acaaa52845ed85e5fd6814cb0f53 +#: discord.monetization.Subscription:1 e6473b15bf1c4aab8d18c91cd7a68623 of +msgid "Represents a user making recurring payments for one or more SKUs." +msgstr "" + +#: 0cd1ee51866e49e794e1e2aae78f8260 discord.monetization.Subscription:3 of +msgid "" +"Successful payments grant the user access to entitlements associated with" +" the SKU." +msgstr "" + +#: 6008728ed3b44140a9d0d21ecc5f3928 discord.monetization.Subscription:9 of +msgid "The subscription's ID." +msgstr "" + +#: 390ffbbcdbea4754bbbd4fa8dc55c4a1 discord.monetization.Subscription:15 of +msgid "The ID of the user that owns this subscription." +msgstr "" + +#: discord.monetization.Subscription:21 e22b12906d11423b92816daccc7bbee6 of +msgid "The IDs of the SKUs this subscription is for." +msgstr "" + +#: 87c8fe8fea4441edb52f0ea109aaae0a discord.automod.AutoModRule:75 +#: discord.automod.AutoModRule:81 discord.monetization.Subscription:23 +#: discord.monetization.Subscription:29 discord.monetization.Subscription:35 of +msgid "List[:class:`int`]" +msgstr "" + +#: bf5e70691eb048d29e5620a2952c0e85 discord.monetization.Subscription:27 of +msgid "The IDs of the entitlements this subscription is for." +msgstr "" + +#: 6eeedd965eac44a5b905a06d37c570d7 discord.monetization.Subscription:33 of +msgid "The IDs of the SKUs that the buyer will be subscribed to at renewal." +msgstr "" + +#: discord.monetization.Subscription:39 fc2d5f7de1334ecfa878e4a54efbe2d7 of +msgid "The start of the current subscription period." +msgstr "" + +#: b8e1833f3ac147369e252c5d8801de52 discord.integrations.StreamIntegration:75 +#: discord.invite.Invite:77 discord.monetization.Subscription:41 +#: discord.monetization.Subscription:47 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 "" + +#: 2589e072a10945fd91844cf562e522f8 discord.monetization.Subscription:45 of +msgid "The end of the current subscription period." +msgstr "" + +#: 7fa115df6d194b9eaf2c37b4960c54fb discord.monetization.Subscription:51 of +msgid "The status of the subscription." +msgstr "" + +#: beaedb41ec2840239f556ef2b031ce7c discord.monetization.Subscription:53 of +msgid ":class:`SubscriptionStatus`" +msgstr "" + +#: aa2b527516c44c569aff79684995a1ba discord.monetization.Subscription:57 of +msgid "When the subscription was canceled." +msgstr "" + +#: b8e1833f3ac147369e252c5d8801de52 discord.monetization.Subscription:59 of +msgid ":class:`datetime.datetime` | ``None``" +msgstr "" + +#: 457c653cc8d74125bcd46da778f939b9 discord.Subscription.user:1 of +msgid "The user that owns this subscription." +msgstr "" + +#: ../../docstring cc61dfae294c4579ba596a34ef3fa088 +#: discord.AuthorizingIntegrationOwners.user:4 discord.Subscription.user:3 +#: discord.channel.DMChannel:27 discord.channel.GroupChannel:43 +#: discord.emoji.AppEmoji:77 discord.emoji.GuildEmoji: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 "" + +#: ../../api/models.rst:123 e844acaaa52845ed85e5fd6814cb0f53 msgid "Guild" msgstr "" @@ -3604,7 +3583,7 @@ msgid "All emojis that the guild owns." msgstr "" #: 258a28d33dbe4186945587d0e306c05b discord.guild.Guild:33 of -msgid "Tuple[:class:`Emoji`, ...]" +msgid "Tuple[:class:`GuildEmoji`, ...]" msgstr "" #: 93bac270df3c4e049e8b16b766fedea4 discord.guild.Guild:37 of @@ -3807,11 +3786,6 @@ msgstr "" msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.MemberIterator\\``" msgstr "" -#: 081c6429caa04e0a8c5e5dbf3e7662c7 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 " @@ -4295,7 +4269,7 @@ msgid "" msgstr "" #: b12af80947024bd196b707459a1c7ab1 discord.channel.ForumChannel.edit:10 -#: discord.channel.TextChannel.edit:19 +#: discord.channel.MediaChannel.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 @@ -4310,7 +4284,7 @@ msgid "" msgstr "" #: 6e0e5f25fba64a62b1ac7c005cb3c4aa discord.channel.ForumChannel.edit:14 -#: discord.channel.TextChannel.edit:23 +#: discord.channel.MediaChannel.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." @@ -4463,7 +4437,7 @@ msgstr "" #: 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. " +"the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. " "''). .. versionadded:: v2.5" msgstr "" @@ -4471,7 +4445,7 @@ msgstr "" #: 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. " +"the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. " "'')." msgstr "" @@ -4702,37 +4676,49 @@ msgstr "" msgid "Whether the guild should have server invites enabled or disabled." msgstr "" -#: 226196ae337f47ba9ed1b2641b83f3df discord.guild.Guild.edit:96 of +#: ab83fdbf1e0e4760b895cdc4cf06ee7e discord.guild.Guild.edit:96 of +msgid "Whether the guild should be discoverable in the discover tab." +msgstr "" + +#: 203e2e85a6de4714bcf5108fc81cba3f discord.guild.Guild.edit:99 of +msgid "Whether activity alerts for the guild should be disabled." +msgstr "" + +#: 387f2c8ecb814ef79b4d196dc73a9991 discord.guild.Guild.edit:102 of +msgid "Whether the guild's user activity feed should be enabled." +msgstr "" + +#: 226196ae337f47ba9ed1b2641b83f3df discord.guild.Guild.edit:105 of msgid "The reason for editing this guild. Shows up on the audit log." msgstr "" -#: discord.guild.Guild.edit:99 f2ec2f8365b0482f88522cb620b9f3c2 of +#: discord.guild.Guild.edit:108 f2ec2f8365b0482f88522cb620b9f3c2 of msgid "You do not have permissions to edit the guild." msgstr "" -#: 7026e8922b26447f903df8f0411dae38 discord.guild.Guild.edit:100 +#: 7026e8922b26447f903df8f0411dae38 discord.guild.Guild.edit:109 #: discord.integrations.StreamIntegration.edit:19 of msgid "Editing the guild failed." msgstr "" -#: ae815105c2f445988a7245f534d3ec20 discord.guild.Guild.edit:101 of +#: ae815105c2f445988a7245f534d3ec20 discord.guild.Guild.edit:110 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 +#: cf020628c49b457ab63b2155e49a9aa1 discord.guild.Guild.edit:112 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 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.channel.ForumChannel:31 discord.channel.MediaChannel:33 +#: discord.channel.StageChannel:33 discord.channel.TextChannel:31 +#: discord.channel.VoiceChannel:31 discord.guild.Guild.edit:114 +#: 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 @@ -5348,7 +5334,7 @@ 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." +msgid "Retrieves all custom :class:`GuildEmoji`\\s from the guild." msgstr "" #: 0e34069b5d51441ab8c457a52f2d4c01 discord.guild.Guild.fetch_emojis:7 of @@ -5366,11 +5352,11 @@ msgid "The retrieved emojis." msgstr "" #: d20f42179eff44a7a621d7a831ddbe4b discord.guild.Guild.fetch_emojis:12 of -msgid "List[:class:`Emoji`]" +msgid "List[:class:`GuildEmoji`]" msgstr "" #: cc1afd530dcb498eab35fafe4575a8d9 discord.guild.Guild.fetch_emoji:3 of -msgid "Retrieves a custom :class:`Emoji` from the guild." +msgid "Retrieves a custom :class:`GuildEmoji` from the guild." msgstr "" #: 20deca88487948c09b27806328bb2663 discord.guild.Guild.fetch_emoji:7 of @@ -5379,8 +5365,8 @@ msgid "" ":attr:`emojis` instead." msgstr "" -#: 53a1817de08548d2a68fbe1e43614c15 discord.emoji.Emoji:37 -#: discord.guild.Guild.fetch_emoji:11 of +#: 53a1817de08548d2a68fbe1e43614c15 discord.emoji.AppEmoji:39 +#: discord.emoji.GuildEmoji:37 discord.guild.Guild.fetch_emoji:11 of msgid "The emoji's ID." msgstr "" @@ -5388,10 +5374,10 @@ msgstr "" msgid "The retrieved emoji." msgstr "" -#: 1eb1e8a92e454d7bbee3b5e9541f84fd 37a41037481642b78fafaee019f75015 -#: discord.emoji.Emoji.edit:25 discord.guild.Guild.create_custom_emoji:29 +#: 1eda185924ee4e90b494cdb8b767c886 2802fcb7a86b474589f5c11ccebdfc55 +#: discord.emoji.GuildEmoji.edit:25 discord.guild.Guild.create_custom_emoji:29 #: discord.guild.Guild.fetch_emoji:15 of -msgid ":class:`Emoji`" +msgid ":class:`GuildEmoji`" msgstr "" #: 7dca8307be0f46d9bc1484bffd2db96e discord.guild.Guild.fetch_emoji:17 of @@ -5404,7 +5390,7 @@ msgstr "" #: c19298ed5a9d4c7f94a5ba4c63da6ecf discord.guild.Guild.create_custom_emoji:3 #: of -msgid "Creates a custom :class:`Emoji` for the guild." +msgid "Creates a custom :class:`GuildEmoji` for the guild." msgstr "" #: 67653b1edbe444cfa63bdb3f8dd142ee discord.guild.Guild.create_custom_emoji:5 @@ -5462,10 +5448,10 @@ msgid "The created emoji." msgstr "" #: 29f350f034fc4530acff6df42f01d8c8 discord.guild.Guild.delete_emoji:3 of -msgid "Deletes the custom :class:`Emoji` from the guild." +msgid "Deletes the custom :class:`GuildEmoji` from the guild." msgstr "" -#: discord.emoji.Emoji.delete:5 discord.emoji.Emoji.edit:5 +#: discord.emoji.GuildEmoji.delete:5 discord.emoji.GuildEmoji.edit:5 #: discord.guild.Guild.delete_emoji:5 ff6de30aac954fea9e2f208059f9cb4c of msgid "You must have :attr:`~Permissions.manage_emojis` permission to do this." msgstr "" @@ -5474,18 +5460,18 @@ msgstr "" msgid "The emoji you are deleting." msgstr "" -#: 678beeb23b2d4987b952b0071cc7e655 discord.emoji.Emoji.delete:9 +#: 678beeb23b2d4987b952b0071cc7e655 discord.emoji.GuildEmoji.delete:9 #: discord.guild.Guild.delete_emoji:12 of msgid "The reason for deleting this emoji. Shows up on the audit log." msgstr "" -#: d87322ed656a4631bd9fa98caa580e08 discord.emoji.Emoji.delete:12 +#: d87322ed656a4631bd9fa98caa580e08 discord.emoji.GuildEmoji.delete:12 #: discord.guild.Guild.delete_emoji:15 of msgid "You are not allowed to delete emojis." msgstr "" -#: 595f6eee2e13488f8569abd8053aeeb1 discord.emoji.Emoji.delete:13 -#: discord.guild.Guild.delete_emoji:16 of +#: 595f6eee2e13488f8569abd8053aeeb1 discord.emoji.AppEmoji.delete:8 +#: discord.emoji.GuildEmoji.delete:13 discord.guild.Guild.delete_emoji:16 of msgid "An error occurred deleting the emoji." msgstr "" @@ -6436,19 +6422,19 @@ msgid "" "parameter." msgstr "" -#: ../../api/models.rst:134 fb9668f6a20a4f0bbf8ba6929fd3594b +#: ../../api/models.rst:139 fb9668f6a20a4f0bbf8ba6929fd3594b msgid "A namedtuple which represents a ban returned from :meth:`~Guild.bans`." msgstr "" -#: ../../api/models.rst:138 4d8636790bdc471f860037026c9b8f57 +#: ../../api/models.rst:143 4d8636790bdc471f860037026c9b8f57 msgid "The reason this user was banned." msgstr "" -#: ../../api/models.rst:143 83ffc7d2c2814caa965b59434791892d +#: ../../api/models.rst:148 83ffc7d2c2814caa965b59434791892d msgid "The :class:`User` that was banned." msgstr "" -#: ../../api/models.rst:145 d1bc287ff89b4eea9c60ff6c175ddc51 +#: ../../api/models.rst:150 d1bc287ff89b4eea9c60ff6c175ddc51 #: discord.integrations.BotIntegration:39 discord.integrations.Integration:45 #: discord.integrations.StreamIntegration:63 #: discord.interactions.InteractionMetadata:23 @@ -7152,14 +7138,6 @@ msgstr "" 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." @@ -7174,9 +7152,11 @@ msgstr "" 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 +#: ad7ae992e9464d198f1ab9b5ae6b4efa discord.components.Container:37 +#: discord.components.FileComponent:35 discord.components.Thumbnail:29 +#: 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 "" @@ -7307,7 +7287,7 @@ msgstr "" msgid "The template url." msgstr "" -#: ../../api/models.rst:166 225faf34ffdd44d1b1e7d780b7711787 +#: ../../api/models.rst:171 225faf34ffdd44d1b1e7d780b7711787 msgid "AutoMod" msgstr "" @@ -7383,11 +7363,6 @@ msgstr "" 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 "" @@ -7630,7 +7605,7 @@ msgstr "" msgid "The total number of unique role and user mentions allowed." msgstr "" -#: ../../api/models.rst:189 30ed9cbe01954df3a16f002ee6bb94c2 +#: ../../api/models.rst:194 30ed9cbe01954df3a16f002ee6bb94c2 msgid "Invites" msgstr "" @@ -7729,17 +7704,18 @@ 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 +#: discord.ForumChannel.mention:1 discord.MediaChannel.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 +#: discord.MediaChannel.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 "" @@ -7872,15 +7848,6 @@ msgstr "" 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 "" @@ -7986,7 +7953,7 @@ msgstr "" msgid "The scheduled event object to link." msgstr "" -#: ../../api/models.rst:207 b0b4dba2274847c2bc1e96752ddd4675 +#: ../../api/models.rst:212 b0b4dba2274847c2bc1e96752ddd4675 msgid "Role" msgstr "" @@ -8057,35 +8024,37 @@ msgid "" "themselves." msgstr "" -#: 71708c2052ef460cbf50e18eff7472ff discord.role.Role:78 of +#: acd95f70d2cf467092a0fdec7705ec9d discord.role.Role:78 of msgid "" -"Indicates if the role is managed by the guild through some form of " -"integrations such as Twitch." +"Indicates if the role is managed by the guild. This is true if any of " +":meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, " +":meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is " +"``True``." msgstr "" -#: b9bafa1eea5a42449a950ef3b3948003 discord.role.Role:85 of +#: b9bafa1eea5a42449a950ef3b3948003 discord.role.Role:87 of msgid "Indicates if the role can be mentioned by users." msgstr "" -#: 90292a8451094a81b831a50845ab0581 discord.role.Role:91 of +#: 90292a8451094a81b831a50845ab0581 discord.role.Role:93 of msgid "The role tags associated with this role." msgstr "" -#: ce68cf07f32542ee887cbfe498cd4506 discord.role.Role:93 of +#: ce68cf07f32542ee887cbfe498cd4506 discord.role.Role:95 of msgid "Optional[:class:`RoleTags`]" msgstr "" -#: 6b477dc220bf4cd0affb1801794c7c46 discord.role.Role:97 of +#: 6b477dc220bf4cd0affb1801794c7c46 discord.role.Role:99 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 +#: discord.role.Role:108 fa704dc55e8b4bc89b983325045fb26e of msgid "Extra attributes of the role." msgstr "" -#: 235c07739380495f822049acb2f71763 discord.role.Role:110 of +#: 235c07739380495f822049acb2f71763 discord.role.Role:112 of msgid ":class:`RoleFlags`" msgstr "" @@ -8107,9 +8076,10 @@ msgid "" ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" msgstr "" -#: adc96808a0f849419bffb0291dfcf2e1 discord.role.Role.is_integration:1 of +#: 57a256a1d1ec47d8bd23a3f5a026fde3 discord.role.Role.is_integration:1 of msgid "" -"Whether the role is managed by an integration. :rtype: " +"Whether the guild manages the role through some form of integrations such" +" as Twitch or through guild subscriptions. :rtype: " ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" msgstr "" @@ -8119,6 +8089,30 @@ msgid "" ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" msgstr "" +#: 33a23d7c29004eaaa37ca543e08ac512 +#: discord.role.Role.is_available_for_purchase:1 +#: discord.role.RoleTags.is_available_for_purchase:1 of +msgid "Whether the role is available for purchase." +msgstr "" + +#: 3ee6b3f8d1c048f982438c73c203fd20 d4dfc8934fac44858e4bc0b02dc6b489 +#: discord.role.Role.is_available_for_purchase:3 +#: discord.role.RoleTags.is_available_for_purchase:3 of +msgid "" +"Returns ``True`` if the role is available for purchase, and ``False`` if " +"it is not available for purchase or if the role is not linked to a guild " +"subscription. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: abaa9e6454b3434897bdb6657fb9c73a +#: discord.role.Role.is_guild_connections_role:1 +#: discord.role.RoleTags.is_guild_connections_role:1 of +msgid "" +"Whether the role is a guild connections role. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + #: 7902c3504ac24ac0a24155bd9bcbce40 discord.Role.permissions:1 of msgid "Returns the role's permissions." msgstr "" @@ -8252,14 +8246,28 @@ msgid "" ":class:`Role` and :class:`Guild` classes as well." msgstr "" -#: cefbfbe8367243c9873b7f3e6efd68cf discord.role.RoleTags:13 of +#: 382fabd779224b428d4dac3659b03cb7 discord.role.RoleTags:9 of +msgid "" +"Role tags are a fairly complex topic, since it's usually hard to " +"determine which role tag combination represents which role type. We aim " +"to improve the documentation / introduce new attributes in future. For " +"the meantime read `this `_ if you need detailed information about how role tags " +"work." +msgstr "" + +#: cefbfbe8367243c9873b7f3e6efd68cf discord.role.RoleTags:17 of msgid "The bot's user ID that manages this role." msgstr "" -#: 05a238fa0ee54228891c9067f660ce29 discord.role.RoleTags:19 of +#: 05a238fa0ee54228891c9067f660ce29 discord.role.RoleTags:23 of msgid "The integration ID that manages the role." msgstr "" +#: d1574884bdf44266b4c3364b6f302c7a discord.role.RoleTags:29 of +msgid "The subscription SKU and listing ID of the role." +msgstr "" + #: 32f901508cfe434eaa834608ef0a2813 discord.role.RoleTags.is_bot_managed:1 of msgid "Whether the role is associated with a bot." msgstr "" @@ -8271,11 +8279,13 @@ msgid "" "guild." msgstr "" -#: 8cd2b27c79a1497d9fe2ed01efa457c8 discord.role.RoleTags.is_integration:1 of -msgid "Whether the role is managed by an integration." +#: 71708c2052ef460cbf50e18eff7472ff discord.role.RoleTags.is_integration:1 of +msgid "" +"Whether the guild manages the role through some form of integrations such" +" as Twitch or through guild subscriptions." msgstr "" -#: ../../api/models.rst:220 501c6b29607b4c55ace35858ceb2e513 +#: ../../api/models.rst:225 501c6b29607b4c55ace35858ceb2e513 msgid "Scheduled Event" msgstr "" @@ -8651,7 +8661,7 @@ msgstr "" msgid ":class:`ScheduledEventLocationType`" msgstr "" -#: ../../api/models.rst:231 bd728eaba2b94cb59255cd2be9d0a4a5 +#: ../../api/models.rst:236 bd728eaba2b94cb59255cd2be9d0a4a5 msgid "Welcome Screen" msgstr "" @@ -8721,7 +8731,12 @@ msgstr "" msgid "The emoji of the channel that is shown on welcome screen." msgstr "" -#: ../../api/models.rst:244 e2ae072aa4324f3fb90878fc5cfbd742 +#: d0fdab02f7ff4c81b105f060099ea6dd +#: discord.welcome_screen.WelcomeScreenChannel:21 of +msgid "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "" + +#: ../../api/models.rst:249 e2ae072aa4324f3fb90878fc5cfbd742 msgid "Onboarding" msgstr "" @@ -8901,7 +8916,7 @@ msgid "The emoji displayed with the option." msgstr "" #: 201b7a7c20b7462080d7ef962f18c186 discord.onboarding.PromptOption:27 of -msgid "Union[:class:`Emoji`, :class:`PartialEmoji`]" +msgid "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" msgstr "" #: d5adad86add84b7980b126a6cd5977bf discord.onboarding.PromptOption:31 of @@ -8912,7 +8927,7 @@ msgstr "" msgid "The option's description." msgstr "" -#: ../../api/models.rst:262 336df85a4c564d0e9187eaaab07e05fc +#: ../../api/models.rst:267 336df85a4c564d0e9187eaaab07e05fc msgid "Integration" msgstr "" @@ -9156,7 +9171,7 @@ msgstr "" msgid "Syncing the integration failed." msgstr "" -#: ../../api/models.rst:280 9cf29fbd2890454db490e0730bd67152 +#: ../../api/models.rst:285 9cf29fbd2890454db490e0730bd67152 msgid "Widget" msgstr "" @@ -9330,7 +9345,7 @@ msgstr "" msgid "Returns the member's display name." msgstr "" -#: ../../api/models.rst:299 37c503ce08c645ed80617cb4dae9b391 +#: ../../api/models.rst:304 37c503ce08c645ed80617cb4dae9b391 msgid "Threads" msgstr "" @@ -9447,9 +9462,9 @@ 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 +#: discord.channel.MediaChannel:100 discord.channel.StageChannel:93 +#: discord.channel.TextChannel:98 discord.channel.VoiceChannel:114 +#: discord.threads.Thread:136 f03b50bb386e47e88f5080d349b75439 of msgid ":class:`ChannelFlags`" msgstr "" @@ -9462,9 +9477,9 @@ 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 +#: discord.GroupChannel.type:1 discord.MediaChannel.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 "" @@ -9502,11 +9517,11 @@ 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." +msgid "This is only available for threads in forum or media channels." msgstr "" #: 22ee64cf3e304d3fa699868a43f6e342 discord.Thread.applied_tags:5 -#: discord.channel.ForumChannel:110 of +#: discord.channel.ForumChannel:110 discord.channel.MediaChannel:106 of msgid "List[:class:`ForumTag`]" msgstr "" @@ -9515,21 +9530,23 @@ 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 +#: discord.MediaChannel.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 +#: discord.MediaChannel.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 +#: discord.MediaChannel.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 " @@ -9537,8 +9554,9 @@ msgid "" 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 +#: discord.MediaChannel.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 "" @@ -9546,9 +9564,10 @@ msgstr "" #: 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.MediaChannel.last_message:14 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 @@ -9597,8 +9616,9 @@ 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\\``" +"Whether the thread is pinned to the top of its parent forum or media " +"channel. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" msgstr "" #: 1e601881276b4c0f8d04536a4d310638 discord.threads.Thread.is_private:1 of @@ -9916,7 +9936,7 @@ 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." +"of a forum or media channel." msgstr "" #: 0da7c0a3c631463692bb26a46134936a discord.threads.Thread.edit:40 of @@ -10113,7 +10133,7 @@ msgstr "" msgid "The thread this member belongs to." msgstr "" -#: ../../api/models.rst:320 74f4a8b9588440d094786e1993d7e7b4 +#: ../../api/models.rst:325 74f4a8b9588440d094786e1993d7e7b4 msgid "Stages" msgstr "" @@ -10123,46 +10143,48 @@ 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 +#: discord.channel.GroupChannel:7 discord.channel.MediaChannel: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 +#: discord.channel.GroupChannel:11 discord.channel.MediaChannel: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 +#: discord.channel.MediaChannel: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 +#: discord.channel.MediaChannel: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 +#: discord.channel.MediaChannel:25 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 +#: discord.channel.ForumChannel:29 discord.channel.MediaChannel:31 +#: 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 +#: discord.channel.MediaChannel:37 discord.channel.StageChannel:37 +#: discord.channel.TextChannel:35 discord.channel.VoiceChannel:35 of msgid "The channel ID." msgstr "" @@ -10171,14 +10193,14 @@ 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 +#: discord.channel.MediaChannel:43 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 +#: discord.channel.MediaChannel:59 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 " @@ -10211,8 +10233,9 @@ 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 +#: discord.channel.ForumChannel:98 discord.channel.MediaChannel:98 +#: discord.channel.StageChannel:89 discord.channel.TextChannel:94 +#: discord.channel.VoiceChannel:110 of msgid "Extra features of the channel." msgstr "" @@ -10242,8 +10265,8 @@ 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 +#: discord.MediaChannel.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 "" @@ -10393,7 +10416,7 @@ msgid "Create a stage instance." msgstr "" #: 3788fffc313c4e17a7031c304b84dbf1 discord.channel.CategoryChannel.edit:5 -#: discord.channel.ForumChannel.edit:5 +#: discord.channel.ForumChannel.edit:5 discord.channel.MediaChannel.edit:5 #: discord.channel.StageChannel.create_instance:5 #: discord.channel.StageChannel.edit:5 discord.channel.TextChannel.edit:5 #: discord.channel.VoiceChannel.edit:5 @@ -10477,8 +10500,9 @@ 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 +#: discord.channel.ForumChannel.edit:3 discord.channel.MediaChannel.edit:3 +#: discord.channel.StageChannel.edit:3 discord.channel.TextChannel.edit:3 +#: discord.channel.VoiceChannel.edit:3 of msgid "Edits the channel." msgstr "" @@ -10500,34 +10524,35 @@ 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 +#: discord.channel.MediaChannel.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 +#: discord.channel.MediaChannel.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 +#: discord.channel.MediaChannel.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 +#: discord.channel.MediaChannel.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 +#: discord.channel.MediaChannel.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." @@ -10560,33 +10585,36 @@ msgstr "" 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 +#: discord.channel.ForumChannel.edit:61 discord.channel.MediaChannel.edit:53 +#: 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 +#: discord.channel.ForumChannel.edit:62 discord.channel.MediaChannel.edit:54 +#: 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 +#: discord.ForumChannel.category:1 discord.MediaChannel.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 +#: discord.ForumChannel.category:3 discord.MediaChannel.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 +#: discord.ForumChannel.changed_roles:1 discord.MediaChannel.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." @@ -10809,8 +10837,9 @@ 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 +#: discord.GroupChannel.jump_url:1 discord.MediaChannel.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 "" @@ -10910,14 +10939,16 @@ 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 +#: discord.ForumChannel.overwrites:1 discord.MediaChannel.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 +#: discord.ForumChannel.overwrites:3 discord.MediaChannel.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 " @@ -10925,14 +10956,16 @@ msgid "" msgstr "" #: cf5f4a1ff74146fb903c23deb37c3299 discord.CategoryChannel.overwrites:7 -#: discord.ForumChannel.overwrites:7 discord.StageChannel.overwrites:7 -#: discord.TextChannel.overwrites:7 discord.VoiceChannel.overwrites:7 of +#: discord.ForumChannel.overwrites:7 discord.MediaChannel.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 +#: discord.ForumChannel.overwrites:8 discord.MediaChannel.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`]" @@ -11031,6 +11064,7 @@ msgstr "" #: 5afc09453dd94d4aa2b35273e549c663 #: discord.CategoryChannel.permissions_synced:1 #: discord.ForumChannel.permissions_synced:1 +#: discord.MediaChannel.permissions_synced:1 #: discord.StageChannel.permissions_synced:1 #: discord.TextChannel.permissions_synced:1 #: discord.VoiceChannel.permissions_synced:1 of @@ -11042,6 +11076,7 @@ msgstr "" #: 981749f5cb0242b8855f2826a6dc6bf4 #: discord.CategoryChannel.permissions_synced:4 #: discord.ForumChannel.permissions_synced:4 +#: discord.MediaChannel.permissions_synced:4 #: discord.StageChannel.permissions_synced:4 #: discord.TextChannel.permissions_synced:4 #: discord.VoiceChannel.permissions_synced:4 of @@ -11272,7 +11307,7 @@ msgstr "" msgid "Deleting the stage instance failed." msgstr "" -#: ../../api/models.rst:334 dd317db3c9cb4a29aeb80d2b10ad338c +#: ../../api/models.rst:339 dd317db3c9cb4a29aeb80d2b10ad338c msgid "Interactions" msgstr "" @@ -11309,16 +11344,14 @@ msgstr "" msgid "The guild ID the interaction was sent from." msgstr "" -#: ../../docstring 6592055219f343cb9bdd6913260e9096 -#: da78be11664f477fa8875f0a7b3cf40d discord.Interaction.cached_channel:1 -#: discord.interactions.Interaction:28 of +#: 6592055219f343cb9bdd6913260e9096 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`]]" +":class:`Thread`, :class:`PartialMessageable`]]" msgstr "" #: d4988af767804657b320108c5d7b3467 discord.interactions.Interaction:34 of @@ -11412,6 +11445,30 @@ msgstr "" msgid "Optional[:class:`InteractionContextType`]" msgstr "" +#: 9d152ca0b57c4831a63ac4f3ba694587 discord.interactions.Interaction:113 of +msgid "The command that this interaction belongs to." +msgstr "" + +#: bc296a912770482a81cf365b4076d957 discord.interactions.Interaction:117 of +msgid "Optional[:class:`ApplicationCommand`]" +msgstr "" + +#: 9d152ca0b57c4831a63ac4f3ba694587 discord.interactions.Interaction:121 of +msgid "The view that this interaction belongs to." +msgstr "" + +#: discord.interactions.Interaction:125 f3f5b79ae0264c59b2b8f18457a33604 of +msgid "Optional[:class:`View`]" +msgstr "" + +#: 9d152ca0b57c4831a63ac4f3ba694587 discord.interactions.Interaction:129 of +msgid "The modal that this interaction belongs to." +msgstr "" + +#: b70aff860e5a4c0092f8bc6056c6c429 discord.interactions.Interaction:133 of +msgid "Optional[:class:`Modal`]" +msgstr "" + #: 4464cbbf3555444890e48eaf0e78176d discord.Interaction.client:1 of msgid "Returns the client that sent the interaction." msgstr "" @@ -11420,6 +11477,10 @@ msgstr "" msgid "The guild the interaction was sent from." msgstr "" +#: b017f2694c78454e89e712049f8fc4c0 discord.Interaction.created_at:1 of +msgid "Returns the interaction's creation time in UTC." +msgstr "" + #: bd66fcea2cc64e7793c0f6867ab2d4f3 #: discord.interactions.Interaction.is_command:1 of msgid "Indicates whether the interaction is an application command." @@ -11431,11 +11492,10 @@ msgid "Indicates whether the interaction is a message component." msgstr "" #: ../../docstring 2059802134ba4fd1847a6c6046b12b09 -#: discord.Interaction.cached_channel:4 of +#: discord.Interaction.cached_channel:1 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." +"The cached channel from which the interaction was sent. DM channels are " +"not resolved. These are :class:`PartialMessageable` instead." msgstr "" #: 38c0562356cc42cd894edfbccb261023 discord.Interaction.permissions:1 of @@ -11474,6 +11534,54 @@ msgstr "" msgid "Returns the followup webhook for followup interactions." msgstr "" +#: 6eeedd965eac44a5b905a06d37c570d7 +#: discord.interactions.Interaction.is_guild_authorised:1 of +msgid ":class:`bool`: Checks if the interaction is guild authorised." +msgstr "" + +#: c2e51432847743fba93caa703ec89c5d +#: discord.interactions.Interaction.is_guild_authorised:3 of +msgid "" +"There is an alias for this called :meth:`.is_guild_authorized`. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 26ede07ec91341e19637c9b51fbf2327 +#: discord.interactions.Interaction.is_user_authorised:1 of +msgid ":class:`bool`: Checks if the interaction is user authorised." +msgstr "" + +#: c2e51432847743fba93caa703ec89c5d +#: discord.interactions.Interaction.is_user_authorised:3 of +msgid "" +"There is an alias for this called :meth:`.is_user_authorized`. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 6eeedd965eac44a5b905a06d37c570d7 +#: discord.interactions.Interaction.is_guild_authorized:1 of +msgid ":class:`bool`: Checks if the interaction is guild authorized." +msgstr "" + +#: c2e51432847743fba93caa703ec89c5d +#: discord.interactions.Interaction.is_guild_authorized:3 of +msgid "" +"There is an alias for this called :meth:`.is_guild_authorised`. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + +#: 26ede07ec91341e19637c9b51fbf2327 +#: discord.interactions.Interaction.is_user_authorized:1 of +msgid ":class:`bool`: Checks if the interaction is user authorized." +msgstr "" + +#: c2e51432847743fba93caa703ec89c5d +#: discord.interactions.Interaction.is_user_authorized:3 of +msgid "" +"There is an alias for this called :meth:`.is_user_authorised`. :rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "" + #: 2de1a112cdb84a6f9936002cc8f558aa #: discord.interactions.Interaction.original_response:3 of msgid "" @@ -11863,10 +11971,11 @@ msgstr "" 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``." +#: d13f7e34dd204807a23d8f242e6cfd40 +#: discord.interactions.InteractionResponse.send_message:51 of +msgid "" +"You specified both ``embed`` and ``embeds``, or sent content or embeds " +"with V2 components." msgstr "" #: bf8a8d7d68404c6c8dc528e78ef7571b @@ -11895,6 +12004,11 @@ msgid "" "cannot be mixed with the ``file`` parameter." msgstr "" +#: discord.interactions.InteractionResponse.edit_message:49 +#: e2024a8f3ffb496d9c436a8a62f58ff2 of +msgid "You specified both ``embed`` and ``embeds``." +msgstr "" + #: 32c68b7cc33841258ae96c0c02aa2da0 #: discord.interactions.InteractionResponse.send_autocomplete_result:1 of msgid "|coro| Responds to this interaction by sending the autocomplete choices." @@ -12095,15 +12209,20 @@ msgid "" "is not in cache, or if :attr:`guild_id` is ``0`` or ``None``." msgstr "" +#: ../../api/models.rst:372 f81c11da386445dbbb02292e3bc450c1 +msgid "Message Components" +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:" +#: c94a1b5cbea24b01a9797e6870ae5ea4 discord.components.Component:3 of +msgid "The components supported by Discord in messages are as follows:" msgstr "" -#: 709fc995d26b4c83ac251992b4d0284c discord.components.Component:5 of +#: 709fc995d26b4c83ac251992b4d0284c discord.components.Component:5 +#: discord.components.Container:6 of msgid ":class:`ActionRow`" msgstr "" @@ -12115,20 +12234,63 @@ msgstr "" msgid ":class:`SelectMenu`" msgstr "" -#: c058b048558c41e796780dc8fd7e13b3 discord.components.Component:9 of +#: 0c5375d482ec498eaa71bfd03f2a8133 discord.components.Component:8 +#: discord.components.Container:8 of +msgid ":class:`Section`" +msgstr "" + +#: 8b6a84cc25c349419c31de47c2303d96 discord.components.Component:9 +#: discord.components.Container:7 of +msgid ":class:`TextDisplay`" +msgstr "" + +#: 972be385b13d440092cdccd620111c7a discord.components.Component:10 of +msgid ":class:`Thumbnail`" +msgstr "" + +#: 6c7e533bdc934532a1a9ed62d9dd677c discord.components.Component:11 +#: discord.components.Container:9 of +msgid ":class:`MediaGallery`" +msgstr "" + +#: c7fa145264a345959a3d9ee21d0d3f9b discord.components.Component:12 +#: discord.components.Container:11 of +msgid ":class:`FileComponent`" +msgstr "" + +#: 972be385b13d440092cdccd620111c7a discord.components.Component:13 +#: discord.components.Container:10 of +msgid ":class:`Separator`" +msgstr "" + +#: 8eabd9ce697640f598d06c0958ad8883 discord.components.Component:14 of +msgid ":class:`Container`" +msgstr "" + +#: c058b048558c41e796780dc8fd7e13b3 discord.components.Component:16 of msgid "This class is abstract and cannot be instantiated." msgstr "" -#: discord.components.ActionRow:11 discord.components.Component:15 +#: discord.components.ActionRow:11 discord.components.Component:22 #: f81c11da386445dbbb02292e3bc450c1 of msgid "The type of component." msgstr "" #: c7fa145264a345959a3d9ee21d0d3f9b discord.components.ActionRow:13 -#: discord.components.Component:17 discord.components.SelectMenu:22 of +#: discord.components.Component:24 discord.components.SelectMenu:21 of msgid ":class:`ComponentType`" msgstr "" +#: dab8f5f51cc74edcbf9388ef88b46108 discord.components.Component:28 of +msgid "" +"The component's ID. If not provided by the user, it is set sequentially " +"by Discord. The ID `0` is treated as if no ID was provided." +msgstr "" + +#: 52afa1f78ae7497c8060bdb4a963d379 discord.components.Component.is_v2:1 of +msgid "Whether this component was introduced in Components V2." +msgstr "" + #: 9f7d8de88aed40a08872c3374e05f049 discord.components.ActionRow:1 of msgid "Represents a Discord Bot UI Kit Action Row." msgstr "" @@ -12138,7 +12300,10 @@ 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 +#: discord.components.Button:3 discord.components.Container:13 +#: discord.components.FileComponent:5 discord.components.MediaGallery:5 +#: discord.components.Section:5 discord.components.Separator:5 +#: discord.components.TextDisplay:5 discord.components.Thumbnail:5 of msgid "This inherits from :class:`Component`." msgstr "" @@ -12146,51 +12311,55 @@ msgstr "" msgid "The children components that this holds, if any." msgstr "" +#: aeebdd818d504901bd5f56b41ddea95e discord.ActionRow.width:1 of +msgid "Return the sum of the children's widths." +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." +"This class is not useable by end-users; see :class:`discord.ui.Button` " +"instead." msgstr "" -#: 17316ef8cf2e41eea87856713d44d589 discord.components.Button:14 of +#: 17316ef8cf2e41eea87856713d44d589 discord.components.Button:13 of msgid "The style of the button." msgstr "" -#: 9b26c0ad72604068a56d44df8deaf10e discord.components.Button:16 of +#: 9b26c0ad72604068a56d44df8deaf10e discord.components.Button:15 of msgid ":class:`.ButtonStyle`" msgstr "" -#: 3e0bad6d875e4b708e06d95b7bc848df discord.components.Button:20 of +#: 3e0bad6d875e4b708e06d95b7bc848df discord.components.Button:19 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 +#: dbc3fc6e82d449c498ff55cedadec8f1 discord.components.Button:26 of msgid "The URL this button sends you to." msgstr "" -#: 92ad8e5b06b44eaeb61e9ec6fe198505 discord.components.Button:33 of +#: 92ad8e5b06b44eaeb61e9ec6fe198505 discord.components.Button:32 of msgid "Whether the button is disabled or not." msgstr "" -#: cf2143a753e04aaba2c533fd326bcdbd discord.components.Button:39 of +#: cf2143a753e04aaba2c533fd326bcdbd discord.components.Button:38 of msgid "The label of the button, if any." msgstr "" -#: a1bedc695439492f85e0988db64713a1 discord.components.Button:45 of +#: a1bedc695439492f85e0988db64713a1 discord.components.Button:44 of msgid "The emoji of the button, if available." msgstr "" -#: 2f8502a4187e40f597d6496424c5ac3a discord.components.Button:47 of +#: 2f8502a4187e40f597d6496424c5ac3a discord.components.Button:46 of msgid "Optional[:class:`PartialEmoji`]" msgstr "" -#: 76a7eb849b774f21a8d3351ab54c814a discord.components.Button:51 of +#: 76a7eb849b774f21a8d3351ab54c814a discord.components.Button:50 of msgid "The ID of the SKU this button refers to." msgstr "" @@ -12206,11 +12375,11 @@ 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." +"This class is not useable by end-users; see :class:`discord.ui.Select` " +"instead." msgstr "" -#: 1f0a74344d894d50bbcf2e95bba368ca discord.components.SelectMenu:15 of +#: 1f0a74344d894d50bbcf2e95bba368ca discord.components.SelectMenu:14 of msgid "" "Added support for :attr:`ComponentType.user_select`, " ":attr:`ComponentType.role_select`, " @@ -12218,192 +12387,456 @@ msgid "" ":attr:`ComponentType.channel_select`." msgstr "" -#: 2102950811c74486ab9b1026c9caddb1 discord.components.SelectMenu:20 of +#: 2102950811c74486ab9b1026c9caddb1 discord.components.SelectMenu:19 of msgid "The select menu's type." msgstr "" -#: b88d7aba2c9f46f88b681a6b575cb84e discord.components.SelectMenu:26 of +#: b88d7aba2c9f46f88b681a6b575cb84e discord.components.SelectMenu:25 of msgid "The ID of the select menu that gets received during an interaction." msgstr "" -#: c13453267e014bf98fe6f803e5a076c7 discord.components.SelectMenu:32 of +#: c13453267e014bf98fe6f803e5a076c7 discord.components.SelectMenu:31 of msgid "The placeholder text that is shown if nothing is selected, if any." msgstr "" -#: 3fdc6cc88eee4898b8468f5a5a44e7d2 discord.components.SelectMenu:38 of +#: 3fdc6cc88eee4898b8468f5a5a44e7d2 discord.components.SelectMenu:37 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 +#: 33a222b1a7e9441f86f5ce875be10c72 discord.components.SelectMenu:44 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 +#: d4e8136b7e634c6daa20e200a532bc0d discord.components.SelectMenu:51 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 +#: d343089d09514315960da0c7bf2b3de2 discord.components.SelectMenu:55 of msgid "List[:class:`SelectOption`]" msgstr "" -#: 5352d7de29a64f59834df1c06284439b discord.components.SelectMenu:60 of +#: 5352d7de29a64f59834df1c06284439b discord.components.SelectMenu:59 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 +#: 1c0857ba83824e07ae47f6b53750d2fa discord.components.SelectMenu:63 of msgid "List[:class:`ChannelType`]" msgstr "" -#: 4d0bc3e8202f4bea84931cee7392c89d discord.components.SelectMenu:68 of +#: 4d0bc3e8202f4bea84931cee7392c89d discord.components.SelectMenu:67 of msgid "Whether the select is disabled or not." msgstr "" -#: ../../api/models.rst:389 c885c2e7084646b998c51b1c9bafc0aa +#: 443e4a7e83794c9ca6b03288c36bc0db discord.components.Section:1 of +msgid "Represents a Section from Components V2." +msgstr "" + +#: d1b1d6306c5642368f524be77fcabba5 discord.components.Section:3 of +msgid "" +"This is a component that groups other components together with an " +"additional component to the right as the accessory." +msgstr "" + +#: discord.components.Section:9 fc6946db0ea245a69657a6935ca95a1a of +msgid "" +"This class is not useable by end-users; see :class:`discord.ui.Section` " +"instead." +msgstr "" + +#: 284762119e18477ab2efe9ed5517f6d5 discord.components.Section:15 of +msgid "" +"The components contained in this section. Currently supports " +":class:`TextDisplay`." +msgstr "" + +#: ce9e23d6e762427c8f8036499c6d159f discord.components.Section:21 of +msgid "" +"The accessory attached to this Section. Currently supports " +":class:`Button` and :class:`Thumbnail`." +msgstr "" + +#: discord.components.Section:23 ea5ce4db5209427392e12d73651f271b of +msgid "Optional[:class:`Component`]" +msgstr "" + +#: a7dc168070fb49c3a3446ea00d0e15df discord.components.TextDisplay:1 of +msgid "Represents a Text Display from Components V2." +msgstr "" + +#: 3248a4ea4e8c4849a1e3cfd557671f33 discord.components.TextDisplay:3 of +msgid "This is a component that displays text." +msgstr "" + +#: discord.components.TextDisplay:9 fc6946db0ea245a69657a6935ca95a1a of +msgid "" +"This class is not useable by end-users; see " +":class:`discord.ui.TextDisplay` instead." +msgstr "" + +#: 96484f4d35624bdd83b5e136d83bb9ad discord.components.TextDisplay:15 of +msgid "The component's text content." +msgstr "" + +#: 325eccff689b463a930829aa10f85c86 discord.components.Thumbnail:1 of +msgid "Represents a Thumbnail from Components V2." +msgstr "" + +#: 52afa1f78ae7497c8060bdb4a963d379 discord.components.Thumbnail:3 of +msgid "This is a component that displays media, such as images and videos." +msgstr "" + +#: discord.components.Thumbnail:9 e84696cb443c46b1a00676610ca02b0d of +msgid "" +"This class is not useable by end-users; see :class:`discord.ui.Thumbnail`" +" instead." +msgstr "" + +#: 941badf662e24af6bdb04e39a1020079 discord.components.Thumbnail:15 of +msgid "The component's underlying media object." +msgstr "" + +#: 7d438bff37c749b3950ffe589d702f9f discord.components.FileComponent:17 +#: discord.components.Thumbnail:17 of +msgid ":class:`UnfurledMediaItem`" +msgstr "" + +#: b83cc1df192e44cfa969e71988e5677c discord.components.Thumbnail:21 of +msgid "The thumbnail's description, up to 1024 characters." +msgstr "" + +#: 1c3d15b96df6417498447cf15dd2b44c discord.components.Thumbnail:27 of +msgid "Whether the thumbnail has the spoiler overlay." +msgstr "" + +#: cec5a91670184d8594a8168b49e63c77 discord.Thumbnail.url:1 of +msgid "Returns the URL of this thumbnail's underlying media item." +msgstr "" + +#: 325eccff689b463a930829aa10f85c86 discord.components.MediaGallery:1 of +msgid "Represents a Media Gallery from Components V2." +msgstr "" + +#: 52afa1f78ae7497c8060bdb4a963d379 discord.components.MediaGallery:3 of +msgid "" +"This is a component that displays up to 10 different " +":class:`MediaGalleryItem` objects." +msgstr "" + +#: discord.components.MediaGallery:9 fc6946db0ea245a69657a6935ca95a1a of +msgid "" +"This class is not useable by end-users; see " +":class:`discord.ui.MediaGallery` instead." +msgstr "" + +#: 3bb2c4499f774c7db3a93a7a4840b242 discord.components.MediaGallery:15 of +msgid "The media this gallery contains." +msgstr "" + +#: bd86ecd15cc848a8b57ef5dbb7c6f4d4 discord.components.MediaGallery:17 of +msgid "List[:class:`MediaGalleryItem`]" +msgstr "" + +#: 325eccff689b463a930829aa10f85c86 discord.components.FileComponent:1 of +msgid "Represents a File from Components V2." +msgstr "" + +#: 5c638f47368d4db5882b325512edf336 discord.components.FileComponent:3 of +msgid "This component displays a downloadable file in a message." +msgstr "" + +#: discord.components.FileComponent:9 fc6946db0ea245a69657a6935ca95a1a of +msgid "" +"This class is not useable by end-users; see :class:`discord.ui.File` " +"instead." +msgstr "" + +#: 7621b825fc6848199afd96d57cdb3c46 discord.components.FileComponent:15 of +msgid "The file's media item." +msgstr "" + +#: ca774a304f9a4d4baa6329ce8e864eef discord.components.FileComponent:21 of +msgid "The file's name." +msgstr "" + +#: cad88e03745e4898b486276d5648803c discord.components.FileComponent:27 of +msgid "The file's size in bytes." +msgstr "" + +#: ac21dc598e304ef99add56eb017be309 discord.components.FileComponent:33 of +msgid "Whether the file has the spoiler overlay." +msgstr "" + +#: 325eccff689b463a930829aa10f85c86 discord.components.Separator:1 of +msgid "Represents a Separator from Components V2." +msgstr "" + +#: 52afa1f78ae7497c8060bdb4a963d379 discord.components.Separator:3 of +msgid "This is a component that visually separates components." +msgstr "" + +#: discord.components.Separator:9 fc6946db0ea245a69657a6935ca95a1a of +msgid "" +"This class is not useable by end-users; see :class:`discord.ui.Separator`" +" instead." +msgstr "" + +#: 71708c2052ef460cbf50e18eff7472ff discord.components.Separator:15 of +msgid "" +"Whether the separator will show a horizontal line in addition to vertical" +" spacing." +msgstr "" + +#: 93e6016595cd40a7b1d0dab443a478a8 discord.components.Separator:21 of +msgid "The separator's spacing size." +msgstr "" + +#: 149351b7df664788a413093688677723 discord.components.Separator:23 of +msgid "Optional[:class:`SeparatorSpacingSize`]" +msgstr "" + +#: d4f2fb2b97b0466daffc259ba311fa14 discord.components.Container:1 of +msgid "Represents a Container from Components V2." +msgstr "" + +#: 0f7bbf2e0e7348d5b0454af500605c7f discord.components.Container:3 of +msgid "" +"This is a component that contains different :class:`Component` objects. " +"It may only contain:" +msgstr "" + +#: discord.components.Container:17 fc6946db0ea245a69657a6935ca95a1a of +msgid "" +"This class is not useable by end-users; see :class:`discord.ui.Container`" +" instead." +msgstr "" + +#: 3d2f746f188b48fcaa0c20d7e321d9b1 discord.components.Container:23 of +msgid "The components contained in this container." +msgstr "" + +#: 851fad41cfa943068fdd9dc3ce016772 discord.components.Container:29 of +msgid "The accent color of the container." +msgstr "" + +#: 5e36ab69e24a4e9281fef9f23b4e9417 discord.components.Container:31 of +msgid "Optional[:class:`Colour`]" +msgstr "" + +#: 8f055d7ad1d3409c9bc0a6982a4df3d5 discord.components.Container:35 of +msgid "Whether the entire container has the spoiler overlay." +msgstr "" + +#: ../../api/models.rst:439 c885c2e7084646b998c51b1c9bafc0aa msgid "Emoji" msgstr "" -#: a4f545bdd7dc437c9d245d238586c702 discord.emoji.Emoji:1 of -msgid "Represents a custom emoji." +#: 2211977338284dabb4ddd3a5298bc2ee discord.emoji.GuildEmoji:1 of +msgid "Represents a custom emoji in a guild." msgstr "" -#: a3349dfb97b44db9b3ecbbee8e3a01ff discord.emoji.Emoji:3 of +#: a3349dfb97b44db9b3ecbbee8e3a01ff discord.emoji.AppEmoji:3 +#: discord.emoji.GuildEmoji: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 +#: 44bf70fa78894c1daddd55e9d90838e2 discord.emoji.AppEmoji:12 +#: discord.emoji.GuildEmoji: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 +#: d2a07b8aa3ab40839e60c1d979b40ceb discord.emoji.AppEmoji:16 +#: discord.emoji.GuildEmoji: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 +#: 4c8a36b9a18a42cc928f6013bb72307c discord.emoji.AppEmoji:20 +#: discord.emoji.GuildEmoji:18 discord.partial_emoji.PartialEmoji:20 of msgid "Return the emoji's hash." msgstr "" -#: 7cf57bf9d537462a8b495549c81e2242 discord.emoji.Emoji:22 of +#: 7cf57bf9d537462a8b495549c81e2242 discord.emoji.AppEmoji:24 +#: discord.emoji.GuildEmoji: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 +#: 2a7b951e1a5b452d93036b3794628d0d discord.emoji.AppEmoji:29 +#: discord.emoji.GuildEmoji:27 discord.partial_emoji.PartialEmoji:24 of msgid "Returns the emoji rendered for discord." msgstr "" -#: 14ea0733e1d541da9fea4210dc039209 discord.emoji.Emoji:31 of +#: 14ea0733e1d541da9fea4210dc039209 discord.emoji.AppEmoji:33 +#: discord.emoji.GuildEmoji:31 of msgid "The name of the emoji." msgstr "" -#: b6e01311a7694deeba97d6ea2b8240e8 discord.emoji.Emoji:43 of +#: b6e01311a7694deeba97d6ea2b8240e8 discord.emoji.AppEmoji:45 +#: discord.emoji.GuildEmoji:43 of msgid "" "If colons are required to use this emoji in the client (:PJSalt: vs " "PJSalt)." msgstr "" -#: 880bd48f7776420995813479f53ac12a discord.emoji.Emoji:49 of +#: 880bd48f7776420995813479f53ac12a discord.emoji.AppEmoji:51 +#: discord.emoji.GuildEmoji:49 of msgid "Whether an emoji is animated or not." msgstr "" -#: 69dcc8a19c474fdb8fad0b3391750694 discord.emoji.Emoji:55 of +#: 69dcc8a19c474fdb8fad0b3391750694 discord.emoji.AppEmoji:57 +#: discord.emoji.GuildEmoji:55 of msgid "If this emoji is managed by a Twitch integration." msgstr "" -#: a1e8a33a32c64b71bef5731eeaa07cd3 discord.emoji.Emoji:61 of +#: a1e8a33a32c64b71bef5731eeaa07cd3 discord.emoji.GuildEmoji:61 of msgid "The guild ID the emoji belongs to." msgstr "" -#: 33a23d7c29004eaaa37ca543e08ac512 discord.emoji.Emoji:67 of +#: 33a23d7c29004eaaa37ca543e08ac512 discord.emoji.AppEmoji:69 +#: discord.emoji.GuildEmoji:67 of msgid "Whether the emoji is available for use." msgstr "" -#: db162171483149d08942625fc5b9ac36 discord.emoji.Emoji:73 of +#: db162171483149d08942625fc5b9ac36 discord.emoji.GuildEmoji: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 +#: 5dfaa3531d0646b0bf85c2b34e72fb67 discord.GuildEmoji.roles:1 of msgid "A :class:`list` of roles that is allowed to use this emoji." msgstr "" -#: d76d5cc472e547e2893bf6d83d18cb1b discord.Emoji.roles:3 of +#: d76d5cc472e547e2893bf6d83d18cb1b discord.GuildEmoji.roles:3 of msgid "If roles is empty, the emoji is unrestricted." msgstr "" -#: 04b446a6ff504bf8a407983e47aaeb77 discord.Emoji.guild:1 of +#: 04b446a6ff504bf8a407983e47aaeb77 discord.GuildEmoji.guild:1 of msgid "The guild this emoji belongs to." msgstr "" -#: a9a8d25d86ae4c3496bc37cd89b9ea7d discord.emoji.Emoji.is_usable:1 of +#: a9a8d25d86ae4c3496bc37cd89b9ea7d discord.emoji.GuildEmoji.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 +#: 496fefc520c1400a95b50c17283f2426 discord.emoji.GuildEmoji.delete:3 of msgid "Deletes the custom emoji." msgstr "" -#: aca7f87a81bc40f8855d7c68ddee4b7c discord.emoji.Emoji.edit:3 of +#: aca7f87a81bc40f8855d7c68ddee4b7c discord.emoji.GuildEmoji.edit:3 of msgid "Edits the custom emoji." msgstr "" -#: 9eeff73ac06d4e61bc1a6e1a62c484b2 discord.emoji.Emoji.edit:8 of +#: 9eeff73ac06d4e61bc1a6e1a62c484b2 discord.emoji.GuildEmoji.edit:8 of msgid "The newly updated emoji is returned." msgstr "" -#: b1be944c7f23429e8685fd13dcaf8082 discord.emoji.Emoji.edit:12 of +#: b1be944c7f23429e8685fd13dcaf8082 discord.emoji.AppEmoji.edit:8 +#: discord.emoji.GuildEmoji.edit:12 of msgid "The new emoji name." msgstr "" -#: 7a765fb4a9714da9b98d6d67185e6ad0 discord.emoji.Emoji.edit:15 of +#: 7a765fb4a9714da9b98d6d67185e6ad0 discord.emoji.GuildEmoji.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 +#: 9a6b2a99c62d43668117ae80889fa7d7 discord.emoji.GuildEmoji.edit:18 of msgid "The reason for editing this emoji. Shows up on the audit log." msgstr "" -#: b2b4c21efd88459db5e27419833f6c0b discord.emoji.Emoji.edit:21 of +#: b2b4c21efd88459db5e27419833f6c0b discord.emoji.GuildEmoji.edit:21 of msgid "You are not allowed to edit emojis." msgstr "" -#: 29b4b67b766647a38d168494e1cfa898 discord.emoji.Emoji.edit:22 of +#: 29b4b67b766647a38d168494e1cfa898 discord.emoji.AppEmoji.edit:12 +#: discord.emoji.GuildEmoji.edit:22 of msgid "An error occurred editing the emoji." msgstr "" -#: 89165b83444e45609f6f4d2352594759 discord.emoji.Emoji.edit:24 of +#: 89165b83444e45609f6f4d2352594759 discord.emoji.AppEmoji.edit:14 +#: discord.emoji.GuildEmoji.edit:24 of msgid "The newly updated emoji." msgstr "" +#: 62dffac0a0724a6383eb42c22cd717c4 discord.AppEmoji.created_at:1 +#: discord.GuildEmoji.created_at:1 of +msgid "Returns the emoji's creation time in UTC." +msgstr "" + +#: 94a262936d7443e284a5b0bca6175dc3 discord.AppEmoji.url:1 +#: discord.GuildEmoji.url:1 of +msgid "Returns the URL of the emoji." +msgstr "" + +#: a7dc168070fb49c3a3446ea00d0e15df discord.emoji.AppEmoji:1 of +msgid "Represents a custom emoji from an application." +msgstr "" + +#: 7bce4c601b7e4d13af2c0eeb1288ed61 discord.emoji.AppEmoji:63 of +msgid "The application ID the emoji belongs to, if available." +msgstr "" + +#: discord.emoji.AppEmoji:75 f5152bae14734569aeef4a6b6f207e59 of +msgid "The user that created the emoji." +msgstr "" + +#: 5cdca06cd89a457fb2fc1187e7a8cad7 discord.AppEmoji.guild:1 of +msgid "" +"The guild this emoji belongs to. This is always `None` for " +":class:`AppEmoji`." +msgstr "" + +#: 621f782ce5f14018a13edc57e5d3e1cb discord.AppEmoji.roles:1 of +msgid "" +"A :class:`list` of roles that is allowed to use this emoji. This is " +"always empty for :class:`AppEmoji`." +msgstr "" + +#: 92ad8e5b06b44eaeb61e9ec6fe198505 discord.emoji.AppEmoji.is_usable:1 of +msgid "Whether the bot can use this emoji." +msgstr "" + +#: 496fefc520c1400a95b50c17283f2426 discord.emoji.AppEmoji.delete:3 of +msgid "Deletes the application emoji." +msgstr "" + +#: 9afd0935187a461ab98d15477738fc11 discord.emoji.AppEmoji.delete:5 +#: discord.emoji.AppEmoji.edit:5 of +msgid "You must own the emoji to do this." +msgstr "" + +#: d87322ed656a4631bd9fa98caa580e08 discord.emoji.AppEmoji.delete:7 of +msgid "You are not allowed to delete the emoji." +msgstr "" + +#: aca7f87a81bc40f8855d7c68ddee4b7c discord.emoji.AppEmoji.edit:3 of +msgid "Edits the application emoji." +msgstr "" + +#: b2b4c21efd88459db5e27419833f6c0b discord.emoji.AppEmoji.edit:11 of +msgid "You are not allowed to edit the emoji." +msgstr "" + +#: 37a41037481642b78fafaee019f75015 discord.emoji.AppEmoji.edit:15 of +msgid ":class:`AppEmoji`" +msgstr "" + #: discord.partial_emoji.PartialEmoji:1 f39d6b6e8b3044fba02ad0bd00f8d7f6 of msgid "Represents a \"partial\" emoji." msgstr "" @@ -12511,7 +12944,7 @@ msgstr "" msgid "If this isn't a custom emoji then an empty string is returned" msgstr "" -#: ../../api/models.rst:404 a26c3fb538cc4eae85bc9b01ec610081 +#: ../../api/models.rst:460 a26c3fb538cc4eae85bc9b01ec610081 msgid "Channels" msgstr "" @@ -12520,19 +12953,20 @@ msgid "Represents a Discord text channel." msgstr "" #: 28cadf33bcaa4284b510b25b352040ba discord.channel.ForumChannel:47 -#: discord.channel.TextChannel:47 of +#: discord.channel.MediaChannel:49 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 +#: discord.channel.MediaChannel:66 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 +#: discord.channel.MediaChannel:73 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" @@ -12541,26 +12975,28 @@ msgid "" msgstr "" #: discord.channel.CategoryChannel:50 discord.channel.ForumChannel:80 -#: discord.channel.TextChannel:76 fab80e171db445d78867efd958f0536b of +#: discord.channel.MediaChannel:82 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 +#: discord.channel.ForumChannel:84 discord.channel.MediaChannel:86 +#: 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 +#: discord.channel.MediaChannel:92 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 +#: discord.channel.MediaChannel:116 discord.channel.TextChannel:102 of msgid "" "The initial slowmode delay to set on newly created threads in this " "channel." @@ -12584,12 +13020,12 @@ msgid "The ``type`` keyword-only parameter was added." msgstr "" #: b736174baf734a728df41ae7c8846701 discord.channel.ForumChannel.edit:8 -#: discord.channel.TextChannel.edit:17 of +#: discord.channel.MediaChannel.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 +#: discord.channel.MediaChannel.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`." @@ -12604,7 +13040,7 @@ msgid "" msgstr "" #: aec9e5551cb74af8b49d87aceac3742b discord.channel.ForumChannel.edit:30 -#: discord.channel.TextChannel.edit:43 of +#: discord.channel.MediaChannel.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``." @@ -12618,7 +13054,7 @@ msgid "" msgstr "" #: a07120a4d00149718bbcb809103cc6a7 discord.channel.ForumChannel.edit:33 -#: discord.channel.TextChannel.edit:46 of +#: discord.channel.MediaChannel.edit:33 discord.channel.TextChannel.edit:46 of msgid "" "The new default slowmode delay in seconds for threads created in this " "channel." @@ -12635,7 +13071,7 @@ msgid "Optional[:class:`.TextChannel`]" msgstr "" #: 0fc3c3b030404e49b32d2e3452611428 discord.channel.ForumChannel.edit:60 -#: discord.channel.TextChannel.edit:55 of +#: discord.channel.MediaChannel.edit:52 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." @@ -12804,12 +13240,12 @@ msgid "You do not have the permissions to create a webhook." msgstr "" #: d3a81ce636a44a9e88b3eea449b50f70 discord.ForumChannel.members:1 -#: discord.TextChannel.members:1 of +#: discord.MediaChannel.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 +#: discord.ForumChannel.threads:1 discord.MediaChannel.threads:1 +#: discord.TextChannel.threads:1 f4fe0d12fcea454aa752afbccfa50240 of msgid "Returns all the threads that you can see." msgstr "" @@ -12817,41 +13253,50 @@ msgstr "" msgid "Represents a Discord forum channel." msgstr "" -#: 4b34ca608be34c5597336cc69ea91cf2 discord.channel.ForumChannel:51 of +#: 4b34ca608be34c5597336cc69ea91cf2 discord.channel.ForumChannel:51 +#: discord.channel.MediaChannel:53 of msgid ":attr:`guidelines` exists as an alternative to this attribute." msgstr "" -#: b083e6a86b634b1894c54f243b988735 discord.channel.ForumChannel:106 of +#: b083e6a86b634b1894c54f243b988735 discord.channel.ForumChannel:106 +#: discord.channel.MediaChannel:104 of msgid "The set of tags that can be used in a forum channel." msgstr "" -#: cae1b545239a43b6aa72e818246d1b4a discord.channel.ForumChannel:114 of +#: cae1b545239a43b6aa72e818246d1b4a discord.channel.ForumChannel:114 +#: discord.channel.MediaChannel:110 of msgid "The default sort order type used to order posts in this channel." msgstr "" -#: 163ca8890cd8438d88981ac907297672 discord.channel.ForumChannel:118 of +#: 163ca8890cd8438d88981ac907297672 discord.channel.ForumChannel:118 +#: discord.channel.MediaChannel:112 of msgid "Optional[:class:`SortOrder`]" msgstr "" -#: 79295ddcd99444a28326d80b16bcb8e8 discord.channel.ForumChannel:130 of +#: 79295ddcd99444a28326d80b16bcb8e8 discord.channel.ForumChannel:130 +#: discord.channel.MediaChannel:122 of msgid "The default forum reaction emoji." msgstr "" -#: 301a6e58f833446e89b741b0196dbd33 discord.channel.ForumChannel:134 of -msgid "Optional[:class:`str` | :class:`discord.Emoji`]" +#: 301a6e58f833446e89b741b0196dbd33 discord.channel.ForumChannel:134 +#: discord.channel.MediaChannel:124 of +msgid "Optional[:class:`str` | :class:`discord.GuildEmoji`]" msgstr "" -#: 718249dfc3d4489791382f41a839e150 discord.ForumChannel.guidelines:1 of +#: 718249dfc3d4489791382f41a839e150 discord.ForumChannel.guidelines:1 +#: discord.MediaChannel.guidelines:1 of msgid "The channel's guidelines. An alias of :attr:`topic`." msgstr "" -#: 8dae47fc78014be6bdc6ca09757b5007 discord.ForumChannel.requires_tag:1 of +#: 8dae47fc78014be6bdc6ca09757b5007 discord.ForumChannel.requires_tag:1 +#: discord.MediaChannel.requires_tag:1 of msgid "" "Whether a tag is required to be specified when creating a thread in this " -"forum channel." +"forum or media channel." msgstr "" -#: discord.ForumChannel.requires_tag:3 ef72d447ccb444db82cfbcc3779bc392 of +#: discord.ForumChannel.requires_tag:3 discord.MediaChannel.requires_tag:3 +#: ef72d447ccb444db82cfbcc3779bc392 of msgid "Tags are specified in :attr:`applied_tags`." msgstr "" @@ -12873,14 +13318,15 @@ msgid "" "versionadded:: 2.3" msgstr "" -#: a743fff2abf44d978975cbef0b68d112 discord.channel.ForumChannel.edit:37 of +#: a743fff2abf44d978975cbef0b68d112 discord.channel.ForumChannel.edit:37 +#: discord.channel.MediaChannel.edit:35 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. " +"the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. " "''). .. versionadded:: 2.5" msgstr "" @@ -12890,7 +13336,8 @@ msgid "" " .. versionadded:: 2.3" msgstr "" -#: 0b5e325a38434b46b84bf970a8b2c356 discord.channel.ForumChannel.edit:47 of +#: 0b5e325a38434b46b84bf970a8b2c356 discord.channel.ForumChannel.edit:47 +#: discord.channel.MediaChannel.edit:41 of msgid "The set of tags that can be used in this channel. Must be less than `20`." msgstr "" @@ -12900,7 +13347,8 @@ msgid "" "in this channel. .. versionadded:: 2.3" msgstr "" -#: 46f1ffe182e64c9ba4a690d9f6460f58 discord.channel.ForumChannel.edit:51 of +#: 46f1ffe182e64c9ba4a690d9f6460f58 discord.channel.ForumChannel.edit:51 +#: discord.channel.MediaChannel.edit:43 of msgid "" "Whether a tag should be required to be specified when creating a thread " "in this channel." @@ -12941,6 +13389,36 @@ msgid "" "the forum channel's default slowmode is used." msgstr "" +#: d6341ad4205a4369988579907602c902 discord.channel.MediaChannel:1 of +msgid "Represents a Discord media channel. Subclass of :class:`ForumChannel`." +msgstr "" + +#: 8dae47fc78014be6bdc6ca09757b5007 +#: discord.MediaChannel.media_download_options_hidden:1 of +msgid "Whether media download options are hidden in this media channel." +msgstr "" + +#: acba40fd9b99460bb43889ba61c943d4 discord.channel.MediaChannel.edit:37 of +msgid "" +"The default reaction emoji. Can be a unicode emoji or a custom emoji in " +"the forms: :class:`GuildEmoji`, snowflake ID, string representation " +"(e.g., '')." +msgstr "" + +#: 8dae47fc78014be6bdc6ca09757b5007 discord.channel.MediaChannel.edit:45 of +msgid "Whether media download options should be hidden in this media channel." +msgstr "" + +#: b15a139dcf17430b9bda24a4052d3504 discord.channel.MediaChannel.edit:48 of +msgid "" +"The newly edited media channel. If the edit was only positional then " +"``None`` is returned instead." +msgstr "" + +#: 9e006a134f6d4a5c98852ac3f6ee4da7 discord.channel.MediaChannel.edit:50 of +msgid "Optional[:class:`.MediaChannel`]" +msgstr "" + #: 176b5d8e42a149aca568b2ab47d6d85d discord.channel.VoiceChannel:1 of msgid "Represents a Discord guild voice channel." msgstr "" @@ -13315,7 +13793,7 @@ msgstr "" msgid "Leaving the group failed." msgstr "" -#: ../../api/models.rst:464 209e72461fff4eaeb235cc21aa5f1997 +#: ../../api/models.rst:526 209e72461fff4eaeb235cc21aa5f1997 msgid "Stickers" msgstr "" @@ -13555,7 +14033,7 @@ msgstr "" msgid "An error occurred editing the sticker." msgstr "" -#: ../../api/models.rst:492 fa3209921266443fb19f43b396c4c0a6 +#: ../../api/models.rst:554 fa3209921266443fb19f43b396c4c0a6 msgid "Events" msgstr "" @@ -14281,7 +14759,7 @@ msgid "" "status-update>`_." msgstr "" -#: ../../api/models.rst:577 eae4e206e45a463f80727bc3e3eee504 +#: ../../api/models.rst:639 eae4e206e45a463f80727bc3e3eee504 msgid "Webhooks" msgstr "" @@ -14311,3 +14789,186 @@ msgstr "" #~ "glossary>`_." #~ msgstr "" +#~ msgid "The emoji may be a unicode emoji or a custom guild :class:`Emoji`." +#~ msgstr "" + +#~ msgid "Union[:class:`Emoji`, :class:`PartialEmoji`, :class:`str`]" +#~ msgstr "" + +#~ 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 "" + +#~ msgid "" +#~ "This can only be done on " +#~ "entitlements of type " +#~ ":attr:`EntitlementType.consumable`." +#~ msgstr "" + +#~ msgid "The entitlement is not consumable." +#~ msgstr "" + +#~ msgid "Tuple[:class:`Emoji`, ...]" +#~ msgstr "" + +#~ 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 "" + +#~ 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 "" + +#~ msgid "Retrieves all custom :class:`Emoji`\\s from the guild." +#~ msgstr "" + +#~ msgid "List[:class:`Emoji`]" +#~ msgstr "" + +#~ msgid "Retrieves a custom :class:`Emoji` from the guild." +#~ msgstr "" + +#~ msgid ":class:`Emoji`" +#~ msgstr "" + +#~ msgid "Creates a custom :class:`Emoji` for the guild." +#~ msgstr "" + +#~ msgid "Deletes the custom :class:`Emoji` from the guild." +#~ msgstr "" + +#~ msgid "" +#~ "Indicates if the role is managed " +#~ "by the guild through some form of" +#~ " integrations such as Twitch." +#~ msgstr "" + +#~ msgid "" +#~ "Whether the role is managed by an" +#~ " integration. :rtype: " +#~ ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +#~ msgstr "" + +#~ msgid "Whether the role is managed by an integration." +#~ msgstr "" + +#~ msgid "Union[:class:`Emoji`, :class:`PartialEmoji`]" +#~ msgstr "" + +#~ msgid "This is only available for threads in forum channels." +#~ msgstr "" + +#~ msgid "" +#~ "Whether the thread is pinned to " +#~ "the top of its parent forum " +#~ "channel. :rtype: " +#~ ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +#~ msgstr "" + +#~ msgid "" +#~ "Whether to pin the thread or not." +#~ " This only works if the thread " +#~ "is part of a forum." +#~ msgstr "" + +#~ msgid "" +#~ "Optional[Union[:class:`abc.GuildChannel`, " +#~ ":class:`abc.PrivateChannel`, :class:`Thread`]]" +#~ msgstr "" + +#~ 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 "" + +#~ msgid "Represents a custom emoji." +#~ msgstr "" + +#~ msgid "Optional[:class:`str` | :class:`discord.Emoji`]" +#~ msgstr "" + +#~ msgid "" +#~ "Whether a tag is required to be" +#~ " specified when creating a thread in" +#~ " this forum channel." +#~ msgstr "" + +#~ 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 "" + +#~ msgid "Returns the hash of the asset." +#~ msgstr "" + +#~ 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 "" + +#~ 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 "" + +#~ msgid "Returns the hash of the attachment." +#~ msgstr "" + +#~ 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 "" + +#~ msgid "Currently, the only components supported by Discord are:" +#~ msgstr "" + +#~ msgid "" +#~ "The user constructible and usable type" +#~ " to create a button is " +#~ ":class:`discord.ui.Button` not this one." +#~ msgstr "" + +#~ msgid "" +#~ "The user constructible and usable type" +#~ " to create a select menu is " +#~ ":class:`discord.ui.Select` not this one." +#~ msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/ui_kit.po b/docs/locales/en/LC_MESSAGES/api/ui_kit.po index 7802407342..3a8854a861 100644 --- a/docs/locales/en/LC_MESSAGES/api/ui_kit.po +++ b/docs/locales/en/LC_MESSAGES/api/ui_kit.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../api/ui_kit.rst:4 cef9c4161ab944be895b73e34a1e959e msgid "Bot UI Kit" @@ -51,21 +51,8 @@ msgid "" 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 +#: 53499c7c38dd43799b5780dfd21b3b02 beefc8c24f164c63a80136a8c5e5e925 +#: de7bcf10bc5947e99f4931c26c17c8c2 msgid "Parameters" msgstr "" @@ -90,7 +77,8 @@ 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`." +":class:`.PartialEmoji` or a full :class:`GuildEmoji` or " +":class:`AppEmoji`." msgstr "" #: 7226675e37a14baba12bf447b1d4a11e c7feafdb9ed34fceaaf137f89a8fad12 @@ -105,29 +93,16 @@ msgid "" 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 +#: 76d49544901349599337569d52510ee9 787aeffb30b548a38cbe20f0a065de37 +#: e5ecb31082e14aa3861296ff5854437a e6251a3992ae4babb7e79b06a31ea11d 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 +#: discord.ui.button.button:41 discord.ui.select.channel_select:21 +#: discord.ui.select.mentionable_select:19 discord.ui.select.role_select:19 +#: discord.ui.select.select:58 discord.ui.select.string_select:21 +#: discord.ui.select.user_select:19 of msgid "" ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\" " \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ " @@ -182,9 +157,9 @@ msgid "" ":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 +#: 3e3120d48b4f41869c6ac4d4a11ae788 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 "" @@ -235,6 +210,11 @@ msgstr "" msgid "Whether the select is disabled or not. Defaults to ``False``." msgstr "" +#: 3e0672a1b2d64d418a64a8f5033f2572 discord.ui.select.Select:55 +#: discord.ui.select.select:55 of +msgid "The select menu's ID." +msgstr "" + #: 17e132379dad4798922af2a9271f7996 discord.ui.select.string_select:1 of msgid "" "A shortcut for :meth:`discord.ui.select` with select type " @@ -274,7 +254,7 @@ msgid "Represents a UI view." msgstr "" #: 16b83c8a92c745c8b399ffc3a72f0772 discord.ui.modal.Modal:3 -#: discord.ui.view.View:3 ef81e6ce764b40beb46714a774f98ce0 of +#: discord.ui.view.View:3 of msgid "This object must be inherited to create a UI within Discord." msgstr "" @@ -282,11 +262,10 @@ msgstr "" msgid "The initial items attached to this view." msgstr "" -#: 447ce0fa50bb4a4b82ed7747b529452c 807b8f486b1846ca85e2c78b609a287d -#: discord.ui.modal.Modal:19 discord.ui.view.View:11 of +#: 807b8f486b1846ca85e2c78b609a287d 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." +"accepting input. Defaults to 180.0. If ``None`` then there is no timeout." msgstr "" #: 880d25828d79404c9b741921ea68a63e discord.ui.view.View:17 of @@ -295,9 +274,7 @@ msgid "" "input. If ``None`` then there is no timeout." msgstr "" -#: 3bb28eba0b6e4a33bf70e6ec23f7f0ce 480fbf0b10fa416d83a78fe20327dbce -#: 869c217ef1fb4f1bb558c0c275307664 90ac82a2463949f8a34cca59e7616985 -#: c0f3dd62da99471bbbb9ef04603415f0 discord.ui.view.View of +#: 480fbf0b10fa416d83a78fe20327dbce discord.ui.view.View of msgid "type" msgstr "" @@ -319,8 +296,7 @@ msgid "" "``False``." msgstr "" -#: 4d45955820034f44b44354116cd9d1f7 81901a6370e14b888c56185b26f75c5c -#: a20a4215e0ea431eb8fb5f8afaff44f3 discord.ui.view.View:32 +#: 4d45955820034f44b44354116cd9d1f7 discord.ui.view.View:32 #: discord.ui.view.View.interaction_check:23 discord.ui.view.View.wait:8 of msgid ":class:`bool`" msgstr "" @@ -361,26 +337,35 @@ msgstr "" msgid "The message with components to convert into a view." msgstr "" -#: b159c65de392440fac77f0ec9989f160 discord.ui.view.View.from_message:12 of +#: b159c65de392440fac77f0ec9989f160 discord.ui.view.View.from_dict:7 +#: 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 +#: 64c266a59d7f48e683effda66301b9a2 discord.ui.view.View.from_dict:10 +#: 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 +#: 9718cb2e8075430da95c8d900f3ed7d8 discord.ui.view.View.from_dict:12 +#: discord.ui.view.View.from_message:17 of msgid ":class:`View`" msgstr "" +#: c392f64e411a44c39ed13c8cc5125f2a discord.ui.view.View.from_dict:1 of +msgid "Converts a list of component dicts into a :class:`View`." +msgstr "" + +#: 440ace76c1c843a0a6a9ed83aba2d54c discord.ui.view.View.from_dict:4 of +msgid "The list of components to convert into a view." +msgstr "" + #: d149c73fdd87423abab34ae033ad3bb2 discord.ui.view.View.add_item:1 of msgid "Adds an item to the view." msgstr "" @@ -390,74 +375,75 @@ 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 +#: 0c2448b08bed49c9b3a36391e2dfe223 discord.ui.container.Container.add_item:7 +#: discord.ui.section.Section.add_item:7 +#: discord.ui.section.Section.set_accessory:8 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" +"Maximum number of children has been exceeded (40) 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 +#: 06d7048de769474a8bb1a6d4a2dc4250 3c90e45f56914ab3a3afc07c95abbe60 +#: discord.ui.media_gallery.MediaGallery.add_item:15 +#: 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 +#: discord.ui.view.View.on_timeout:6 discord.ui.view.View.remove_item:8 +#: discord.ui.view.View.stop:6 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." +#: 536200fe32e54b84acbba439cbf907fd discord.ui.view.View.remove_item:1 of +msgid "" +"Removes an item from the view. If an :class:`int` or :class:`str` is " +"passed, the item will be removed by Item ``id`` or ``custom_id`` " +"respectively." msgstr "" -#: 59807342ce744d8d886b5e2235ab0e2b discord.ui.view.View.remove_item:4 of -msgid "The item to remove from the view." +#: ab49d7efd6404221b72e504c584ff8e6 discord.ui.view.View.remove_item:5 of +msgid "The item, item ``id``, or item ``custom_id`` 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 +#: 033e19cef0aa4171b98dc54b06a42afe 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)`." +"Gets an item from the view. Roughly equal to `utils.get(view.children, " +"...)`. If an :class:`int` is provided, the item will be retrieved by " +"``id``, otherwise by ``custom_id``. This method will also search nested " +"items." msgstr "" -#: cbb9b6731f96427fb3201cdf6793994c discord.ui.view.View.get_item:4 of +#: cbb9b6731f96427fb3201cdf6793994c discord.ui.view.View.get_item:6 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." +#: 98fa144afc194f7d8515bd447103d0a2 discord.ui.view.View.get_item:9 of +msgid "The item with the matching ``custom_id`` or ``id`` if it exists." msgstr "" -#: 3d6d6e176c7f414092ad530cfe34fc1b discord.ui.view.View.get_item:8 of +#: 3d6d6e176c7f414092ad530cfe34fc1b discord.ui.container.Container.get_item:10 +#: discord.ui.section.Section.get_item:9 discord.ui.view.View.get_item:10 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 +#: 24255cea69ed481396a70f77f164a517 34fbdd6619144a00b71dc4a9dfbdf301 +#: 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 e983730f42794becb4c575857dd306d4 of msgid "|coro|" msgstr "" @@ -490,8 +476,7 @@ msgid "" "failure and :meth:`on_error` is called." msgstr "" -#: 1a432a43d45d41dd97862b1f0f19af7e 79b0908f8b1e4c90a0dbb2d347d1dd8c -#: discord.ui.view.View.interaction_check:19 +#: 1a432a43d45d41dd97862b1f0f19af7e discord.ui.view.View.interaction_check:19 #: discord.ui.view.View.on_check_failure:6 of msgid "The interaction that occurred." msgstr "" @@ -520,13 +505,13 @@ msgid "" ":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 +#: 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 +#: 2238043a3f944ee984d06ec6486cb852 discord.ui.modal.Modal.on_error:8 +#: discord.ui.view.View.on_error:9 of msgid "The exception that was raised." msgstr "" @@ -534,8 +519,8 @@ msgstr "" 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 +#: 24dd9c6954ba4b6f8baae26063abdfe1 discord.ui.modal.Modal.on_error:11 +#: discord.ui.view.View.on_error:15 of msgid "The interaction that led to the failure." msgstr "" @@ -551,10 +536,9 @@ msgstr "" 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 +#: discord.ui.modal.Modal.wait:4 discord.ui.view.View.is_components_v2:6 +#: discord.ui.view.View.is_dispatching:4 discord.ui.view.View.is_finished:4 +#: discord.ui.view.View.is_persistent:7 ff0aea3ebb2f44c0874d3d169b0fc412 of msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" msgstr "" @@ -572,6 +556,16 @@ msgid "" " :attr:`timeout` set to ``None``." msgstr "" +#: a7c94233f3944c7f91a2fddae3d48713 discord.ui.view.View.is_components_v2:1 of +msgid "Whether the view contains V2 components." +msgstr "" + +#: 293d31404f4f40e18e090ebf37d18faa discord.ui.view.View.is_components_v2:3 of +msgid "" +"A view containing V2 components cannot be sent alongside message content " +"or embeds." +msgstr "" + #: a350e14ae6094bf9a45da3bba4581ba1 discord.ui.view.View.wait:1 of msgid "Waits until the view has finished interacting." msgstr "" @@ -588,55 +582,250 @@ msgid "" " normally." msgstr "" -#: 314de3c4bde54717b2849331287e748e discord.ui.view.View.disable_all_items:1 of -msgid "Disables all items in the view." +#: d7b6d5871f744324b100f604ccaa833a discord.ui.view.View.disable_all_items:1 of +msgid "Disables all buttons and select menus 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." +#: d7b6d5871f744324b100f604ccaa833a discord.ui.view.View.enable_all_items:1 of +msgid "Enables all buttons and select menus 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 "" +#: 98518e1021d44560b6efc103b9e0993d discord.ui.view.View.copy_text:1 of +msgid "" +"Returns the text of all :class:`~discord.ui.TextDisplay` items in this " +"View. Equivalent to the `Copy Text` option on Discord clients." +msgstr "" + +#: discord.ui.container.Container.copy_text:5 +#: discord.ui.section.Section.copy_text:5 +#: discord.ui.text_display.TextDisplay.copy_text:4 +#: discord.ui.view.View.copy_text:5 ff0aea3ebb2f44c0874d3d169b0fc412 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" +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:" +#: 055cf67df1e94d0592bbc5d22013c323 discord.ui.item.Item:3 of +msgid "The following are the original items:" msgstr "" -#: 0b1b92a5722e4ab398df7f16d1135628 discord.ui.item.Item:5 of +#: 0b1b92a5722e4ab398df7f16d1135628 discord.ui.container.Container:5 +#: discord.ui.item.Item:5 of msgid ":class:`discord.ui.Button`" msgstr "" -#: b7356742ae8c4acebf71b6dc048626a3 discord.ui.item.Item:6 of +#: b7356742ae8c4acebf71b6dc048626a3 discord.ui.container.Container:6 +#: 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." +#: 3c9474ceed6944429610eebc2a86a8c2 discord.ui.item.Item:8 of +msgid "And the following are new items under the \"Components V2\" specification:" +msgstr "" + +#: 0b1b92a5722e4ab398df7f16d1135628 discord.ui.container.Container:7 +#: discord.ui.item.Item:10 of +msgid ":class:`discord.ui.Section`" +msgstr "" + +#: 0b1b92a5722e4ab398df7f16d1135628 discord.ui.container.Container:8 +#: discord.ui.item.Item:11 of +msgid ":class:`discord.ui.TextDisplay`" +msgstr "" + +#: 0b1b92a5722e4ab398df7f16d1135628 discord.ui.item.Item:12 of +msgid ":class:`discord.ui.Thumbnail`" +msgstr "" + +#: b7356742ae8c4acebf71b6dc048626a3 discord.ui.container.Container:9 +#: discord.ui.item.Item:13 of +msgid ":class:`discord.ui.MediaGallery`" +msgstr "" + +#: b7356742ae8c4acebf71b6dc048626a3 discord.ui.container.Container:10 +#: discord.ui.item.Item:14 of +msgid ":class:`discord.ui.File`" +msgstr "" + +#: b7356742ae8c4acebf71b6dc048626a3 discord.ui.container.Container:11 +#: discord.ui.item.Item:15 of +msgid ":class:`discord.ui.Separator`" +msgstr "" + +#: 0b1b92a5722e4ab398df7f16d1135628 discord.ui.item.Item:16 of +msgid ":class:`discord.ui.Container`" +msgstr "" + +#: b2ba368092074ad2bad9d3812f0719ce discord.ui.item.Item:20 of +msgid "Added V2 Components." +msgstr "" + +#: 0e7a72fe224642d185c918757f0f0e07 discord.ui.Button.row:1 +#: discord.ui.Container.row:1 discord.ui.File.row:1 discord.ui.Item.row:1 +#: discord.ui.MediaGallery.row:1 discord.ui.Section.row:1 +#: discord.ui.Select.row:1 discord.ui.Separator.row:1 +#: discord.ui.TextDisplay.row:1 discord.ui.Thumbnail.row:1 of +msgid "Gets or sets the row position of this item within its parent view." msgstr "" -#: 055cf67df1e94d0592bbc5d22013c323 c8cd5c6c52b2432086a54d8ebaf9dade -#: discord.ui.item.Item.callback:3 e3934636086a444ea2d8e67a258834cb of +#: 6a953251c3a04c189cbd3bb505c5064d discord.ui.Button.row:3 +#: discord.ui.Container.row:3 discord.ui.File.row:3 discord.ui.Item.row:3 +#: discord.ui.MediaGallery.row:3 discord.ui.Section.row:3 +#: discord.ui.Select.row:3 discord.ui.Separator.row:3 +#: discord.ui.TextDisplay.row:3 discord.ui.Thumbnail.row:3 of +msgid "" +"The row position determines the vertical placement of the item in the UI." +" The value must be an integer between 0 and 39 (inclusive), or ``None`` " +"to indicate that no specific row is set." +msgstr "" + +#: 049f4ecfd49145a38a13208975c18f13 discord.ui.Button.row:7 +#: discord.ui.Container.row:7 discord.ui.File.row:7 discord.ui.Item.row:7 +#: discord.ui.MediaGallery.row:7 discord.ui.Section.row:7 +#: discord.ui.Select.row:7 discord.ui.Separator.row:7 +#: discord.ui.TextDisplay.row:7 discord.ui.Thumbnail.row:7 of +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "" + +#: discord.ui.Button.id:6 discord.ui.Button.row:8 discord.ui.Container.id:6 +#: discord.ui.Container.row:8 discord.ui.File.id:6 discord.ui.File.row:8 +#: discord.ui.Item.id:6 discord.ui.Item.row:8 discord.ui.MediaGallery.id:6 +#: discord.ui.MediaGallery.row:8 discord.ui.Section.id:6 +#: discord.ui.Section.row:8 discord.ui.Select.id:6 discord.ui.Select.row:8 +#: discord.ui.Separator.id:6 discord.ui.Separator.row:8 +#: discord.ui.TextDisplay.id:6 discord.ui.TextDisplay.row:8 +#: discord.ui.Thumbnail.id:6 discord.ui.Thumbnail.row:8 +#: e38547a50c034ab9807a13ecc38ab43a of +msgid "Optional[:class:`int`]" +msgstr "" + +#: 0199d2a0f84848b48937a4d5853bf651 discord.ui.Button.row:10 +#: discord.ui.Container.row:10 discord.ui.File.row:10 discord.ui.Item.row:10 +#: discord.ui.MediaGallery.row:10 discord.ui.Section.row:10 +#: discord.ui.Select.row:10 discord.ui.Separator.row:10 +#: discord.ui.TextDisplay.row:10 discord.ui.Thumbnail.row:10 of +msgid "If the row value is not ``None`` and is outside the range [0, 39]." +msgstr "" + +#: d1f45a3b27da4ba69428076fe7aa9191 discord.ui.Button.width:1 +#: discord.ui.Container.width:1 discord.ui.File.width:1 discord.ui.Item.width:1 +#: discord.ui.MediaGallery.width:1 discord.ui.Section.width:1 +#: discord.ui.Select.width:1 discord.ui.Separator.width:1 +#: discord.ui.TextDisplay.width:1 discord.ui.Thumbnail.width:1 of +msgid "Gets the width of the item in the UI layout." +msgstr "" + +#: 8e2598b65b2d4b9cb4ed1ca3d26d3d67 discord.ui.Button.width:3 +#: discord.ui.Container.width:3 discord.ui.File.width:3 discord.ui.Item.width:3 +#: discord.ui.MediaGallery.width:3 discord.ui.Section.width:3 +#: discord.ui.Select.width:3 discord.ui.Separator.width:3 +#: discord.ui.TextDisplay.width:3 discord.ui.Thumbnail.width:3 of +msgid "" +"The width determines how much horizontal space this item occupies within " +"its row." +msgstr "" + +#: 0841d9930482419a831cb90ca1d54c5f discord.ui.Button.width:5 +#: discord.ui.Container.width:5 discord.ui.File.width:5 discord.ui.Item.width:5 +#: discord.ui.MediaGallery.width:5 discord.ui.Section.width:5 +#: discord.ui.Select.width:5 discord.ui.Separator.width:5 +#: discord.ui.TextDisplay.width:5 discord.ui.Thumbnail.width:5 of +msgid "The width of the item. Defaults to 1." +msgstr "" + +#: discord.ui.Button.width:6 discord.ui.Container.width:6 +#: discord.ui.File.width:6 discord.ui.Item.width:6 +#: discord.ui.MediaGallery.width:6 discord.ui.Section.width:6 +#: discord.ui.Select.width:6 discord.ui.Separator.width:6 +#: discord.ui.TextDisplay.width:6 discord.ui.Thumbnail.width:6 +#: e7ab5b99207b41528e6ae4e7018d7a60 of +msgid ":class:`int`" +msgstr "" + +#: d1f45a3b27da4ba69428076fe7aa9191 discord.ui.Button.id:1 +#: discord.ui.Container.id:1 discord.ui.File.id:1 discord.ui.Item.id:1 +#: discord.ui.MediaGallery.id:1 discord.ui.Section.id:1 discord.ui.Select.id:1 +#: discord.ui.Separator.id:1 discord.ui.TextDisplay.id:1 +#: discord.ui.Thumbnail.id:1 of +msgid "Gets this item's ID." +msgstr "" + +#: 00a2a1707ded427a8a675aee688b3563 11902e9d3ece48348b8c0660eda1e7c3 +#: 2011c29e9b164747b92e03ca8e4f7dc4 27333f7269d84c08960dcadbab1960ab +#: 60966c55178543578d48392122d37810 61c1e6f7577746b7b5de163c969e0841 +#: 7e4af08799644323918727e785d30cbb 84e5d559fa8342148f03cd3c50e825dc +#: c2467f1ea20d43948bf10ab3894404cf c60931ba9e3b4c0d99cdf577a20009bc +#: discord.ui.Button.id:3 discord.ui.Container.id:3 discord.ui.File.id:3 +#: discord.ui.Item.id:3 discord.ui.MediaGallery.id:3 discord.ui.Section.id:3 +#: discord.ui.Select.id:3 discord.ui.Separator.id:3 discord.ui.TextDisplay.id:3 +#: discord.ui.Thumbnail.id:3 of +msgid "" +"This can be set by the user when constructing an Item. If not, Discord " +"will automatically provide one when the View is sent." +msgstr "" + +#: ab49d7efd6404221b72e504c584ff8e6 discord.ui.Button.id:5 +#: discord.ui.Container.id:5 discord.ui.File.id:5 discord.ui.Item.id:5 +#: discord.ui.MediaGallery.id:5 discord.ui.Section.id:5 discord.ui.Select.id:5 +#: discord.ui.Separator.id:5 discord.ui.TextDisplay.id:5 +#: discord.ui.Thumbnail.id:5 of +msgid "The ID of this item, or ``None`` if the user didn't set one." +msgstr "" + +#: 055cf67df1e94d0592bbc5d22013c323 discord.ui.Button.view:1 +#: discord.ui.Container.view:1 discord.ui.File.view:1 discord.ui.Item.view:1 +#: discord.ui.MediaGallery.view:1 discord.ui.Section.view:1 +#: discord.ui.Select.view:1 discord.ui.Separator.view:1 +#: discord.ui.TextDisplay.view:1 discord.ui.Thumbnail.view:1 of +msgid "Gets the parent view associated with this item." +msgstr "" + +#: 313d2dfd0e054186b5309b0bc9593891 discord.ui.Button.view:3 +#: discord.ui.Container.view:3 discord.ui.File.view:3 discord.ui.Item.view:3 +#: discord.ui.MediaGallery.view:3 discord.ui.Section.view:3 +#: discord.ui.Select.view:3 discord.ui.Separator.view:3 +#: discord.ui.TextDisplay.view:3 discord.ui.Thumbnail.view:3 of +msgid "" +"The view refers to the container that holds this item. This is typically " +"set automatically when the item is added to a view." +msgstr "" + +#: ab49d7efd6404221b72e504c584ff8e6 discord.ui.Button.view:6 +#: discord.ui.Container.view:6 discord.ui.File.view:6 discord.ui.Item.view:6 +#: discord.ui.MediaGallery.view:6 discord.ui.Section.view:6 +#: discord.ui.Select.view:6 discord.ui.Separator.view:6 +#: discord.ui.TextDisplay.view:6 discord.ui.Thumbnail.view:6 of +msgid "" +"The parent view of this item, or ``None`` if the item is not attached to " +"any view." +msgstr "" + +#: d6f2e5d5e44c407b8d8bbb9c0b189365 discord.ui.Button.view:7 +#: discord.ui.Container.view:7 discord.ui.File.view:7 discord.ui.Item.view:7 +#: discord.ui.MediaGallery.view:7 discord.ui.Section.view:7 +#: discord.ui.Select.view:7 discord.ui.Separator.view:7 +#: discord.ui.TextDisplay.view:7 discord.ui.Thumbnail.view:7 of +msgid "Optional[:class:`View`]" +msgstr "" + +#: 055cf67df1e94d0592bbc5d22013c323 discord.ui.item.Item.callback:3 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 "" @@ -645,8 +834,8 @@ msgstr "" msgid "Represents a UI button." msgstr "" -#: 3e0672a1b2d64d418a64a8f5033f2572 5f26973a49434bcf9f88e06a44a7629c -#: discord.ui.Button.style:1 discord.ui.button.Button:6 of +#: 3e0672a1b2d64d418a64a8f5033f2572 discord.ui.Button.style:1 +#: discord.ui.button.Button:6 of msgid "The style of the button." msgstr "" @@ -657,12 +846,12 @@ msgid "" msgstr "" #: 47abb7d1e6094637a97fa3df6a95a8e8 discord.ui.Button.url:1 -#: discord.ui.button.Button:13 f2929e3d104a48f08a200c52f438e072 of +#: discord.ui.button.Button:13 of msgid "The URL this button sends you to." msgstr "" -#: 1800abfd6ac44f59ae3181e5274b405c 2eb02a2f95694738aa23bf512070f586 -#: discord.ui.Button.disabled:1 discord.ui.button.Button:16 of +#: 1800abfd6ac44f59ae3181e5274b405c discord.ui.Button.disabled:1 +#: discord.ui.button.Button:16 of msgid "Whether the button is disabled or not." msgstr "" @@ -670,16 +859,38 @@ msgstr "" 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 +#: 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 +#: discord.ui.button.Button:25 of msgid "The ID of the SKU this button refers to." msgstr "" +#: c7feafdb9ed34fceaaf137f89a8fad12 discord.ui.button.Button:28 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). .. warning:: This " +"parameter does not work with V2 components or with more than 25 items in " +"your view." +msgstr "" + +#: b0401c9f48cb4a45886573ff700fe478 discord.ui.button.Button:36 of +msgid "" +"This parameter does not work with V2 components or with more than 25 " +"items in your view." +msgstr "" + +#: 47abb7d1e6094637a97fa3df6a95a8e8 discord.ui.button.Button:39 of +msgid "The button's ID." +msgstr "" + #: discord.ui.Button.custom_id:1 e6884781decb43808438d3e9817dd29b of msgid "The ID of the button that gets received during an interaction." msgstr "" @@ -739,8 +950,8 @@ msgid "" " selects of type :attr:`discord.ComponentType.channel_select`." msgstr "" -#: 6ccb04df725844a182a2639c2457b4b5 796771ff82554675a187cca6828acb7c -#: discord.ui.Select.disabled:1 discord.ui.select.Select:45 of +#: 796771ff82554675a187cca6828acb7c discord.ui.Select.disabled:1 +#: discord.ui.select.Select:45 of msgid "Whether the select is disabled or not." msgstr "" @@ -796,7 +1007,7 @@ msgstr "" 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`." +":class:`.PartialEmoji`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgstr "" #: 27eb750afa664a6ea5cf41996fc3cacc discord.ui.select.Select.add_option:23 of @@ -804,10 +1015,33 @@ 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 +#: discord.ui.select.Select.append_option:7 of msgid "The number of options exceeds 25." msgstr "" +#: discord.ui.container.Container.add_file:13 +#: discord.ui.container.Container.add_gallery:12 +#: discord.ui.container.Container.add_item:9 +#: discord.ui.container.Container.add_section:18 +#: discord.ui.container.Container.add_separator:13 +#: discord.ui.container.Container.add_text:10 +#: discord.ui.container.Container.disable_all_items:7 +#: discord.ui.container.Container.enable_all_items:7 +#: discord.ui.container.Container.remove_item:7 +#: discord.ui.media_gallery.MediaGallery.append_item:10 +#: discord.ui.modal.Modal.add_item:7 discord.ui.modal.Modal.remove_item:7 +#: discord.ui.section.Section.add_item:10 +#: discord.ui.section.Section.add_text:12 +#: discord.ui.section.Section.disable_all_items:8 +#: discord.ui.section.Section.enable_all_items:8 +#: discord.ui.section.Section.remove_item:8 +#: discord.ui.section.Section.set_accessory:10 +#: discord.ui.section.Section.set_thumbnail:16 +#: discord.ui.select.Select.add_option:28 +#: discord.ui.select.Select.append_option:9 ff0aea3ebb2f44c0874d3d169b0fc412 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Self\\``" +msgstr "" + #: 21ff2a9da99b4440929eb12965b39a31 discord.ui.select.Select.append_option:1 of msgid "Appends an option to the select menu." msgstr "" @@ -826,6 +1060,475 @@ msgid "" "``None`` if the select has not been interacted with yet." msgstr "" +#: discord.ui.section.Section:1 e42dbe83104c4d07ba9cf0ef21c7f391 of +msgid "" +"Represents a UI section. Sections must have 1-3 (inclusive) items and an " +"accessory set." +msgstr "" + +#: cdbfac06da814f8cbdae3f798005b0aa discord.ui.section.Section:6 of +msgid "" +"The initial items contained in this section, up to 3. Currently only " +"supports :class:`~discord.ui.TextDisplay`. Sections must have at least 1 " +"item before being sent." +msgstr "" + +#: a7ef7e248a784db3bb28699ee39b83af discord.ui.section.Section:11 of +msgid "" +"The section's accessory. This is displayed in the top right of the " +"section. Currently only supports :class:`~discord.ui.Button` and " +":class:`~discord.ui.Thumbnail`. Sections must have an accessory attached " +"before being sent." +msgstr "" + +#: 1a432a43d45d41dd97862b1f0f19af7e +#: discord.ui.container.Container.add_section:15 discord.ui.section.Section:16 +#: of +msgid "The section's ID." +msgstr "" + +#: d149c73fdd87423abab34ae033ad3bb2 discord.ui.section.Section.add_item:1 of +msgid "Adds an item to the section." +msgstr "" + +#: 651c40af34754b2cbca1243c29182544 discord.ui.section.Section.add_item:4 of +msgid "The item to add to the section." +msgstr "" + +#: 3d4f7caeeeee4bf9849176d0b17c48b8 discord.ui.section.Section.add_item:8 +#: discord.ui.section.Section.add_text:10 of +msgid "Maximum number of items has been exceeded (3)." +msgstr "" + +#: d74ef86db3b84baa83b19399f917aeda discord.ui.section.Section.remove_item:1 of +msgid "" +"Removes an item from the section. If an :class:`int` or :class:`str` is " +"passed, the item will be removed by Item ``id`` or ``custom_id`` " +"respectively." +msgstr "" + +#: 7fd54b986674467abbb28a2ced73f7d5 discord.ui.section.Section.remove_item:5 of +msgid "The item, item ``id``, or item ``custom_id`` to remove from the section." +msgstr "" + +#: 1b9bd16ebb134085ba5e1309bcda4b6d discord.ui.section.Section.get_item:1 of +msgid "" +"Get an item from this section. Alias for `utils.get(section.walk_items()," +" ...)`. If an ``int`` is provided, it will be retrieved by ``id``, " +"otherwise it will check the accessory's ``custom_id``." +msgstr "" + +#: cbb9b6731f96427fb3201cdf6793994c discord.ui.container.Container.get_item:6 +#: discord.ui.section.Section.get_item:5 of +msgid "The id or custom_id of the item to get." +msgstr "" + +#: 98fa144afc194f7d8515bd447103d0a2 discord.ui.section.Section.get_item:8 of +msgid "The item with the matching ``id`` if it exists." +msgstr "" + +#: 2027446701754f3794b31d4a61853116 discord.ui.section.Section.add_text:1 of +msgid "Adds a :class:`TextDisplay` to the section." +msgstr "" + +#: 7eef7bc7f5434d39baab02325cc1ee35 discord.ui.section.Section.add_text:4 of +msgid "The content of the text display." +msgstr "" + +#: 651c40af34754b2cbca1243c29182544 discord.ui.section.Section.add_text:7 +#: discord.ui.text_display.TextDisplay:9 of +msgid "The text display's ID." +msgstr "" + +#: a8c107f041ed4021944056e98e4b13ee discord.ui.section.Section.set_accessory:1 +#: of +msgid "Set an item as the section's :attr:`accessory`." +msgstr "" + +#: a57659147dc94f5f9d5929813436f625 discord.ui.section.Section.set_accessory:4 +#: of +msgid "" +"The item to set as accessory. Currently only supports " +":class:`~discord.ui.Button` and :class:`~discord.ui.Thumbnail`." +msgstr "" + +#: 902d5d2743cc4e5d9a150d67d6dbf0c4 discord.ui.section.Section.set_thumbnail:1 +#: of +msgid "" +"Sets a :class:`Thumbnail` with the provided URL as the section's " +":attr:`accessory`." +msgstr "" + +#: 0dfdf29800e044d89a49e207c803d984 discord.ui.section.Section.set_thumbnail:4 +#: of +msgid "The url of the thumbnail." +msgstr "" + +#: 0abfcec6e5a4408a803463cec892a147 discord.ui.Thumbnail.description:1 +#: discord.ui.section.Section.set_thumbnail:7 discord.ui.thumbnail.Thumbnail:9 +#: of +msgid "The thumbnail's description, up to 1024 characters." +msgstr "" + +#: 390e0de65aca4e25bf50e5ae6a456657 discord.ui.Thumbnail.spoiler:1 +#: discord.ui.section.Section.set_thumbnail:10 +#: discord.ui.thumbnail.Thumbnail:12 of +msgid "Whether the thumbnail has the spoiler overlay. Defaults to ``False``." +msgstr "" + +#: 7c479a76628e4ff788fb5ce892488b81 b419baf4e6a44592b59bfc96271a175e +#: discord.ui.section.Section.set_thumbnail:13 +#: discord.ui.thumbnail.Thumbnail:15 of +msgid "The thumbnail's ID." +msgstr "" + +#: 01f0168f669d4b0290965d97c05eaa78 discord.ui.section.Section.copy_text:1 of +msgid "" +"Returns the text of all :class:`~discord.ui.TextDisplay` items in this " +"section. Equivalent to the `Copy Text` option on Discord clients." +msgstr "" + +#: 4f53fdbd3a59401e9c345f065124710a +#: discord.ui.section.Section.disable_all_items:1 of +msgid "" +"Disables all buttons and select menus in the section. At the moment, this" +" only disables :attr:`accessory` if it is a button." +msgstr "" + +#: 4072920264ba4042a24a4149853585d3 +#: discord.ui.container.Container.disable_all_items:4 +#: discord.ui.section.Section.disable_all_items:5 of +msgid "A list of items in `self.items` to not disable from the view." +msgstr "" + +#: discord.ui.section.Section.enable_all_items:1 +#: f3ea6df26b99495cbeb98f4621e76e2a of +msgid "" +"Enables all buttons and select menus in the section. At the moment, this " +"only enables :attr:`accessory` if it is a button." +msgstr "" + +#: 156efa1c1fbf4918af0b9e99b8099feb +#: discord.ui.container.Container.enable_all_items:4 +#: discord.ui.section.Section.enable_all_items:5 of +msgid "A list of items in `self.items` to not enable from the view." +msgstr "" + +#: 28f795dbc1504eaf89ad7d34f12dab67 discord.ui.text_display.TextDisplay:1 of +msgid "" +"Represents a UI text display. A message can have up to 4000 characters " +"across all :class:`TextDisplay` objects combined." +msgstr "" + +#: 0abfcec6e5a4408a803463cec892a147 discord.ui.text_display.TextDisplay:6 of +msgid "The text display's content, up to 4000 characters." +msgstr "" + +#: b159c65de392440fac77f0ec9989f160 discord.ui.TextDisplay.content:1 of +msgid "The text display's content." +msgstr "" + +#: 7c2cbe415a8b40228e186e7c36f51d92 +#: discord.ui.text_display.TextDisplay.copy_text:1 of +msgid "" +"Returns the content of this text display. Equivalent to the `Copy Text` " +"option on Discord clients." +msgstr "" + +#: b9270d5d3b734251840a9f06eb712027 discord.ui.thumbnail.Thumbnail:1 of +msgid "Represents a UI Thumbnail." +msgstr "" + +#: 184670165d7b4edcaeeba684f7607fdb discord.ui.thumbnail.Thumbnail:6 of +msgid "" +"The url of the thumbnail. This can either be an arbitrary URL or an " +"``attachment://`` URL to work with local files." +msgstr "" + +#: 2b3710a8946a4678a5b387c8fe6eb4ed discord.ui.Thumbnail.url:1 of +msgid "" +"The URL of this thumbnail's media. This can either be an arbitrary URL or" +" an ``attachment://`` URL." +msgstr "" + +#: discord.ui.media_gallery.MediaGallery:1 e2717bcb113c41aea2923e51606df8f2 of +msgid "" +"Represents a UI Media Gallery. Galleries may contain up to 10 " +":class:`MediaGalleryItem` objects." +msgstr "" + +#: 2f917e72a1924778a62c52611093344a discord.ui.media_gallery.MediaGallery:6 of +msgid "The initial items contained in this gallery, up to 10." +msgstr "" + +#: 2f1d4094ef8f4f019a70fe83b1bf2cab afe7e6ba6afe410da66fbde75de53ea0 +#: discord.ui.container.Container.add_gallery:9 +#: discord.ui.media_gallery.MediaGallery:9 of +msgid "The gallery's ID." +msgstr "" + +#: 43bf0998de6443b9951e170b2abfe1dc +#: discord.ui.media_gallery.MediaGallery.append_item:1 of +msgid "Adds a :attr:`MediaGalleryItem` to the gallery." +msgstr "" + +#: 24dd9c6954ba4b6f8baae26063abdfe1 +#: discord.ui.media_gallery.MediaGallery.append_item:4 of +msgid "The gallery item to add to the gallery." +msgstr "" + +#: 0c2448b08bed49c9b3a36391e2dfe223 +#: discord.ui.media_gallery.MediaGallery.append_item:7 of +msgid "A :class:`MediaGalleryItem` was not passed." +msgstr "" + +#: 3d4f7caeeeee4bf9849176d0b17c48b8 +#: discord.ui.media_gallery.MediaGallery.add_item:13 +#: discord.ui.media_gallery.MediaGallery.append_item:8 of +msgid "Maximum number of items has been exceeded (10)." +msgstr "" + +#: 2027446701754f3794b31d4a61853116 +#: discord.ui.media_gallery.MediaGallery.add_item:1 of +msgid "Adds a new media item to the gallery." +msgstr "" + +#: bbc20b8dc2614eefa90d0386f29140ec +#: discord.ui.media_gallery.MediaGallery.add_item:4 of +msgid "" +"The URL of the media item. This can either be an arbitrary URL or an " +"``attachment://`` URL." +msgstr "" + +#: 760c50e112a04650a33bf2c56834b14f +#: discord.ui.media_gallery.MediaGallery.add_item:7 of +msgid "The media item's description, up to 1024 characters." +msgstr "" + +#: 44b3331c42c24dd0871d7b6a7ac96dbe +#: discord.ui.media_gallery.MediaGallery.add_item:10 of +msgid "Whether the media item has the spoiler overlay." +msgstr "" + +#: 51e6a1596c4a449f9a81c52ebddaa39e discord.ui.file.File:1 of +msgid "Represents a UI File." +msgstr "" + +#: discord.ui.file.File:4 f51a89732ddb4b7f8f056e8d62bbfffa of +msgid "" +"This component does not show media previews. Use :class:`MediaGallery` " +"for previews instead." +msgstr "" + +#: 65d97d636f5948b7b262fff63683f16d discord.ui.file.File:9 of +msgid "" +"The URL of this file. This must be an ``attachment://`` URL referring to " +"a local file used with :class:`~discord.File`." +msgstr "" + +#: acc1711d1e2247a99930ff1d6dc94787 discord.ui.file.File:12 of +msgid "Whether this file has the spoiler overlay." +msgstr "" + +#: 7eff0916811d4ee2b31c189597562605 discord.ui.file.File:15 of +msgid "The file component's ID." +msgstr "" + +#: 495795a867504df7b4e8daf02f749e64 a581557192c444938b2d3be47d370596 +#: discord.ui.File.url:1 discord.ui.container.Container.add_file:4 of +msgid "" +"The URL of this file's media. This must be an ``attachment://`` URL that " +"references a :class:`~discord.File`." +msgstr "" + +#: 390e0de65aca4e25bf50e5ae6a456657 discord.ui.File.spoiler:1 +#: discord.ui.container.Container.add_file:7 of +msgid "Whether the file has the spoiler overlay. Defaults to ``False``." +msgstr "" + +#: 3aa00fa1b0524f57b5984d7f80d72c47 discord.ui.File.name:1 of +msgid "The name of this file, if provided by Discord." +msgstr "" + +#: ab49d7efd6404221b72e504c584ff8e6 discord.ui.File.size:1 of +msgid "The size of this file in bytes, if provided by Discord." +msgstr "" + +#: d3ed8c14fbc14d40be6691f7709cfe09 discord.ui.separator.Separator:1 of +msgid "Represents a UI Separator." +msgstr "" + +#: 584df796ba3345878a51cb7cbbd2ad12 discord.ui.Separator.divider:1 +#: discord.ui.container.Container.add_separator:4 +#: discord.ui.separator.Separator:6 of +msgid "Whether the separator is a divider. Defaults to ``True``." +msgstr "" + +#: 026ef9ab44a84f77b066b67e2a714ff9 2e459c651fda44a0b719d50abfa4df7f +#: cd8719caae424144aa8f1f2c37fc2374 discord.ui.Separator.spacing:1 +#: discord.ui.container.Container.add_separator:7 +#: discord.ui.separator.Separator:9 of +msgid "" +"The spacing size of the separator. Defaults to " +":attr:`~discord.SeparatorSpacingSize.small`." +msgstr "" + +#: 2238043a3f944ee984d06ec6486cb852 +#: discord.ui.container.Container.add_separator:10 +#: discord.ui.separator.Separator:12 of +msgid "The separator's ID." +msgstr "" + +#: d3ed8c14fbc14d40be6691f7709cfe09 discord.ui.container.Container:1 of +msgid "Represents a UI Container." +msgstr "" + +#: 9a2765dfcfb646e084e717be3bed4b85 discord.ui.container.Container:3 of +msgid "The current items supported are as follows:" +msgstr "" + +#: 2f917e72a1924778a62c52611093344a discord.ui.container.Container:16 of +msgid "The initial items in this container." +msgstr "" + +#: 55f2959aafef4d939f2a68b27ef9df0e discord.ui.container.Container:19 of +msgid "The accent colour of the container. Aliased to ``color`` as well." +msgstr "" + +#: 44b3331c42c24dd0871d7b6a7ac96dbe discord.ui.container.Container:22 of +msgid "Whether this container has the spoiler overlay." +msgstr "" + +#: 2238043a3f944ee984d06ec6486cb852 discord.ui.container.Container:25 of +msgid "The container's ID." +msgstr "" + +#: d149c73fdd87423abab34ae033ad3bb2 discord.ui.container.Container.add_item:1 +#: of +msgid "Adds an item to the container." +msgstr "" + +#: 651c40af34754b2cbca1243c29182544 discord.ui.container.Container.add_item:4 +#: of +msgid "The item to add to the container." +msgstr "" + +#: 75dda6574daa47d1af114297c96aa397 +#: discord.ui.container.Container.remove_item:1 of +msgid "" +"Removes an item from the container. If an int or str is passed, it will " +"remove by Item :attr:`id` or ``custom_id`` respectively." +msgstr "" + +#: ab49d7efd6404221b72e504c584ff8e6 +#: discord.ui.container.Container.remove_item:4 of +msgid "The item, ``id``, or item ``custom_id`` to remove from the container." +msgstr "" + +#: 8f9b751e4c5643d4b5bef56863405714 discord.ui.container.Container.get_item:1 +#: of +msgid "" +"Get an item from this container. Roughly equivalent to " +"`utils.get(container.items, ...)`. If an ``int`` is provided, the item " +"will be retrieved by ``id``, otherwise by ``custom_id``. This method will" +" also search for nested items." +msgstr "" + +#: 98fa144afc194f7d8515bd447103d0a2 discord.ui.container.Container.get_item:9 +#: of +msgid "The item with the matching ``id`` or ``custom_id`` if it exists." +msgstr "" + +#: 2027446701754f3794b31d4a61853116 +#: discord.ui.container.Container.add_section:1 of +msgid "Adds a :class:`Section` to the container." +msgstr "" + +#: 0e6d15c2f7ae4c29986e7dd0f1154f23 +#: discord.ui.container.Container.add_section:3 of +msgid "" +"To append a pre-existing :class:`Section`, use the :meth:`add_item` " +"method, instead." +msgstr "" + +#: 7ad3ccf42b494faaba9370aacc4ed1b5 +#: discord.ui.container.Container.add_section:7 of +msgid "" +"The items contained in this section, up to 3. Currently only supports " +":class:`~discord.ui.TextDisplay`." +msgstr "" + +#: discord.ui.container.Container.add_section:11 +#: fe6b58511c9044228ea795b7211ea852 of +msgid "" +"The section's accessory. This is displayed in the top right of the " +"section. Currently only supports :class:`~discord.ui.Button` and " +":class:`~discord.ui.Thumbnail`." +msgstr "" + +#: 2027446701754f3794b31d4a61853116 discord.ui.container.Container.add_file:1 +#: discord.ui.container.Container.add_text:1 of +msgid "Adds a :class:`TextDisplay` to the container." +msgstr "" + +#: 7eef7bc7f5434d39baab02325cc1ee35 discord.ui.container.Container.add_text:4 +#: of +msgid "The content of the TextDisplay" +msgstr "" + +#: 651c40af34754b2cbca1243c29182544 discord.ui.container.Container.add_text:7 +#: of +msgid "The text displays' ID." +msgstr "" + +#: 2027446701754f3794b31d4a61853116 +#: discord.ui.container.Container.add_gallery:1 of +msgid "Adds a :class:`MediaGallery` to the container." +msgstr "" + +#: 0e6d15c2f7ae4c29986e7dd0f1154f23 +#: discord.ui.container.Container.add_gallery:3 of +msgid "" +"To append a pre-existing :class:`MediaGallery`, use :meth:`add_item` " +"instead." +msgstr "" + +#: 2f917e72a1924778a62c52611093344a +#: discord.ui.container.Container.add_gallery:6 of +msgid "The media this gallery contains." +msgstr "" + +#: 90c6e5f8556c495dac0c65908098b956 discord.ui.container.Container.add_file:10 +#: of +msgid "The file's ID." +msgstr "" + +#: 2027446701754f3794b31d4a61853116 +#: discord.ui.container.Container.add_separator:1 of +msgid "Adds a :class:`Separator` to the container." +msgstr "" + +#: discord.ui.container.Container.copy_text:1 f1c3beea0cf548c9a18ab07a55dd7aca +#: of +msgid "" +"Returns the text of all :class:`~discord.ui.TextDisplay` items in this " +"container. Equivalent to the `Copy Text` option on Discord clients." +msgstr "" + +#: 390e0de65aca4e25bf50e5ae6a456657 discord.ui.Container.spoiler:1 of +msgid "Whether the container has the spoiler overlay. Defaults to ``False``." +msgstr "" + +#: discord.ui.container.Container.disable_all_items:1 +#: f3ab0bff303f4ab0bc92ad8e670b876c of +msgid "Disables all buttons and select menus in the container." +msgstr "" + +#: 2fe7af6c22f2463595f2eccfb44d78d7 +#: discord.ui.container.Container.enable_all_items:1 of +msgid "Enables all buttons and select menus in the container." +msgstr "" + #: b9270d5d3b734251840a9f06eb712027 discord.ui.modal.Modal:1 of msgid "Represents a UI Modal dialog." msgstr "" @@ -844,6 +1547,12 @@ msgid "" " be 100 characters or fewer." msgstr "" +#: 807b8f486b1846ca85e2c78b609a287d discord.ui.modal.Modal:19 of +msgid "" +"Timeout in seconds from last interaction with the UI before no longer " +"accepting input. If ``None`` then there is no timeout." +msgstr "" + #: 0dfdf29800e044d89a49e207c803d984 discord.ui.Modal.title:1 of msgid "The title of the modal dialog." msgstr "" @@ -904,13 +1613,13 @@ msgstr "" msgid "Represents a UI text input field." msgstr "" -#: 391f2a60ad1a446b9b869244f8074585 46ab89f240c04a70b1772095a8585e87 -#: discord.ui.InputText.style:1 discord.ui.input_text.InputText:6 of +#: 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 +#: 53336a0409494b719bad7895bab5d8e3 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 "" @@ -936,8 +1645,8 @@ msgid "" "and 4000." msgstr "" -#: 3c95c7168cee4a3ca835e439caf1363f 584df796ba3345878a51cb7cbbd2ad12 -#: discord.ui.InputText.required:1 discord.ui.input_text.InputText:28 of +#: 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 "" @@ -957,6 +1666,12 @@ msgid "" "must be between 0 and 4 (i.e. zero indexed)." msgstr "" +#: discord.ui.InputText.id:1 ec574afa04d14576800719412669e05c of +msgid "" +"The input text's ID. If not provided by the user, it is set sequentially " +"by Discord." +msgstr "" + #: 53bbbf9910f6434a86d331c806dc2485 discord.ui.InputText.label:1 of msgid "The label of the input text field." msgstr "" @@ -977,3 +1692,64 @@ msgstr "" msgid "The value entered in the text field." msgstr "" +#~ msgid "" +#~ "The emoji of the button. This can" +#~ " be in string form or a " +#~ ":class:`.PartialEmoji` or a full " +#~ ":class:`.Emoji`." +#~ msgstr "" + +#~ msgid "The underlying view for this item." +#~ msgstr "" + +#~ 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 "" + +#~ msgid "" +#~ "Maximum number of children has been " +#~ "exceeded (25) or the row the " +#~ "item is trying to be added to " +#~ "is full." +#~ msgstr "" + +#~ msgid "Removes an item from the view." +#~ msgstr "" + +#~ msgid "The item to remove from the view." +#~ msgstr "" + +#~ msgid "" +#~ "Get an item from the view with " +#~ "the given custom ID. Alias for " +#~ "`utils.get(view.children, custom_id=custom_id)`." +#~ msgstr "" + +#~ msgid "The item with the matching ``custom_id`` if it exists." +#~ msgstr "" + +#~ msgid "Disables all items in the view." +#~ msgstr "" + +#~ msgid "Enables all items in the view." +#~ msgstr "" + +#~ msgid "The current UI items supported are:" +#~ msgstr "" + +#~ msgid "" +#~ "The row position determines the vertical" +#~ " placement of the item in the " +#~ "UI. The value must be an integer" +#~ " between 0 and 4 (inclusive), or " +#~ "``None`` to indicate that no specific" +#~ " row is set." +#~ msgstr "" + +#~ msgid "If the row value is not ``None`` and is outside the range [0, 4]." +#~ msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/api/webhooks.po b/docs/locales/en/LC_MESSAGES/api/webhooks.po index a72fffd831..cbd54171df 100644 --- a/docs/locales/en/LC_MESSAGES/api/webhooks.po +++ b/docs/locales/en/LC_MESSAGES/api/webhooks.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../api/webhooks.rst:4 9e237853b6974d7a8ff25dfe852a6d11 msgid "Webhook Support" @@ -770,9 +770,9 @@ msgstr "" 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." +"with this webhook when giving it a dispatchable 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 @@ -1280,3 +1280,15 @@ msgid "" "This blocks the thread." msgstr "" +#~ 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 "" + diff --git a/docs/locales/en/LC_MESSAGES/changelog.po b/docs/locales/en/LC_MESSAGES/changelog.po index b9a10c6cf6..436c1ba302 100644 --- a/docs/locales/en/LC_MESSAGES/changelog.po +++ b/docs/locales/en/LC_MESSAGES/changelog.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-11 09:03+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../changelog.md:1 538c3900cdf645fb81a5016feccfc3f1 msgid "Changelog" @@ -49,10 +49,10 @@ msgstr "" msgid "⚠️ **This version removes support for Python 3.8.** ⚠️" msgstr "" -#: ../../changelog.md:15 ../../changelog.md:90 ../../changelog.md:197 -#: ../../changelog.md:457 ../../changelog.md:530 ../../changelog.md:585 -#: ../../changelog.md:601 ../../changelog.md:669 ../../changelog.md:770 -#: ../../changelog.md:859 e8cf33c496dc4074adbbcfbbce555d76 +#: ../../changelog.md:15 ../../changelog.md:197 ../../changelog.md:304 +#: ../../changelog.md:564 ../../changelog.md:637 ../../changelog.md:692 +#: ../../changelog.md:708 ../../changelog.md:776 ../../changelog.md:877 +#: ../../changelog.md:966 e8cf33c496dc4074adbbcfbbce555d76 msgid "Added" msgstr "" @@ -77,63 +77,164 @@ msgid "" "([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" msgstr "" -#: ../../changelog.md:25 ee1185f07728432d90acac5a21dbec45 +#: ../../changelog.md:25 42ed7327fefc4b54872053b06dc3d128 +msgid "" +"Added support for Application Emojis. ([#2501](https://github.com/Pycord-" +"Development/pycord/pull/2501))" +msgstr "" + +#: ../../changelog.md:27 ee1185f07728432d90acac5a21dbec45 +msgid "" +"Added `cache_app_emojis` parameter to `Client`. " +"([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "" + +#: ../../changelog.md:29 ee1185f07728432d90acac5a21dbec45 msgid "" "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com" "/Pycord-Development/pycord/pull/2587/))" msgstr "" -#: ../../changelog.md:27 7fd8831246324c0ba80b842014371a93 +#: ../../changelog.md:31 7fd8831246324c0ba80b842014371a93 msgid "" "Added optional `filter` parameter to `utils.basic_autocomplete()`. " "([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" msgstr "" -#: ../../changelog.md:30 ../../changelog.md:63 ../../changelog.md:121 -#: ../../changelog.md:329 ../../changelog.md:444 ../../changelog.md:494 -#: ../../changelog.md:512 ../../changelog.md:523 ../../changelog.md:551 -#: ../../changelog.md:577 ../../changelog.md:590 ../../changelog.md:633 -#: ../../changelog.md:647 ../../changelog.md:654 ../../changelog.md:662 -#: ../../changelog.md:710 ../../changelog.md:816 ../../changelog.md:922 -#: ../../changelog.md:959 25748af9e8d041dc8b2c9e7a88663f4f +#: ../../changelog.md:33 7556f2bd45294900b546bcc8bc4cc855 +msgid "" +"Added role tags: `subscription_listing_id`, `guild_connections`, and " +"`available_for_purchase`. ([#2606](https://github.com/Pycord-" +"Development/pycord/pull/2606))" +msgstr "" + +#: ../../changelog.md:36 4620d311330a4c04b6b2b7b4de078652 +msgid "" +"Added missing `with_counts` parameter to `fetch_guilds` method. " +"([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" +msgstr "" + +#: ../../changelog.md:38 dd48eb67d9264c6f9c8c34eff1f8dc21 +msgid "" +"Added the following missing permissions: `Permissions.use_soundboard`, " +"`Permissions.use_external_sounds`, and " +"`Permissions.view_creator_monetization_analytics`. " +"([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" +msgstr "" + +#: ../../changelog.md:42 dddf1b7b1aba48dfb0f3282e4d0658a2 +msgid "" +"Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-" +"Development/pycord/pull/2641))" +msgstr "" + +#: ../../changelog.md:44 1acba6757cf74da68c1302cbed5100b5 +msgid "" +"Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-" +"Development/pycord/pull/2670))" +msgstr "" + +#: ../../changelog.md:46 169dd0974f7f4141bb15b782abd500b7 +msgid "" +"Added helper methods to determine the authorizing party of an " +"`Interaction`. ([#2659](https://github.com/Pycord-" +"Development/pycord/pull/2659))" +msgstr "" + +#: ../../changelog.md:48 7869c915b3f14f07a5bf3a4475157805 +msgid "" +"Added `VoiceMessage` subclass of `File` to allow voice messages to be " +"sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" +msgstr "" + +#: ../../changelog.md:50 4f80fa16c23e41c19ad5f98cb4764338 +msgid "" +"Added new `Subscription` object and related methods/events. " +"([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "" + +#: ../../changelog.md:52 6a993686d0f6440f9058ad662abc3eb7 +msgid "" +"Added `Message.forward_to`, `Message.snapshots`, and other related " +"attributes. ([#2598](https://github.com/Pycord-" +"Development/pycord/pull/2598))" +msgstr "" + +#: ../../changelog.md:54 878001efd2cc45dead2ee90071cecf01 +msgid "" +"Add missing `Guild` feature flags and `Guild.edit` parameters. " +"([#2672](https://github.com/Pycord-Development/pycord/pull/2672))" +msgstr "" + +#: ../../changelog.md:56 ade46dafe4b44075b82a661d0516635f +msgid "" +"Added the ability to change the API's base URL with `Route.API_BASE_URL`." +" ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" +msgstr "" + +#: ../../changelog.md:58 ade46dafe4b44075b82a661d0516635f +msgid "" +"Added the ability to pass a `datetime.time` object to `format_dt`. " +"([#2747](https://github.com/Pycord-Development/pycord/pull/2747))" +msgstr "" + +#: ../../changelog.md:60 f56f60d027c34c1c96d0aae7504b6cfb +msgid "" +"Added conversion to `Member` in `MentionableConverter`. " +"([#2775](https://github.com/Pycord-Development/pycord/pull/2775))" +msgstr "" + +#: ../../changelog.md:62 90293effcc9a4c0cbe82b4d50f4e2604 +msgid "" +"Added `discord.Interaction.created_at`. ([#2801](https://github.com" +"/Pycord-Development/pycord/pull/2801))" +msgstr "" + +#: ../../changelog.md:65 ../../changelog.md:170 ../../changelog.md:228 +#: ../../changelog.md:436 ../../changelog.md:551 ../../changelog.md:601 +#: ../../changelog.md:619 ../../changelog.md:630 ../../changelog.md:658 +#: ../../changelog.md:684 ../../changelog.md:697 ../../changelog.md:740 +#: ../../changelog.md:754 ../../changelog.md:761 ../../changelog.md:769 +#: ../../changelog.md:817 ../../changelog.md:923 ../../changelog.md:1029 +#: ../../changelog.md:1066 25748af9e8d041dc8b2c9e7a88663f4f msgid "Fixed" msgstr "" -#: ../../changelog.md:32 1579cb6ca4374946ae9d2aa00c6a2a05 +#: ../../changelog.md:67 1579cb6ca4374946ae9d2aa00c6a2a05 msgid "" "Fixed `Enum` options not setting the correct type when only one choice is" " available. ([#2577](https://github.com/Pycord-" "Development/pycord/pull/2577))" msgstr "" -#: ../../changelog.md:34 7ae94f40f23e4016ad3583ccfa6c742c +#: ../../changelog.md:69 7ae94f40f23e4016ad3583ccfa6c742c msgid "" "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with " "documentation. ([#2581](https://github.com/Pycord-" "Development/pycord/pull/2581))" msgstr "" -#: ../../changelog.md:36 343032650b214f1eb5ffe747555db443 +#: ../../changelog.md:71 343032650b214f1eb5ffe747555db443 msgid "" "Fixed a possible bug where audio would play too fast at the beginning of " "audio files. ([#2584](https://github.com/Pycord-" "Development/pycord/pull/2584))" msgstr "" -#: ../../changelog.md:38 7c13dbe9d92449f4b9c00b812d03c2df +#: ../../changelog.md:73 7c13dbe9d92449f4b9c00b812d03c2df msgid "" "Fixed paginator not responding when using `Paginator.edit()` with default" " parameters. ([#2594](https://github.com/Pycord-" "Development/pycord/pull/2594))" msgstr "" -#: ../../changelog.md:40 21ab8865343f4f4a95f4e6fb558290f9 +#: ../../changelog.md:75 21ab8865343f4f4a95f4e6fb558290f9 msgid "" "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. " "([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" msgstr "" -#: ../../changelog.md:42 e81f05b83a034f228f9c15b92cb49ffc +#: ../../changelog.md:77 e81f05b83a034f228f9c15b92cb49ffc msgid "" "Fixed `Guild.create_test_entitlement()` and " "`User.create_test_entitlement()` using the guild/user ID instead of the " @@ -141,660 +242,869 @@ msgid "" "Development/pycord/pull/2595))" msgstr "" -#: ../../changelog.md:45 ab1ed3f8483145bea5b24fad05b5648f +#: ../../changelog.md:80 ab1ed3f8483145bea5b24fad05b5648f msgid "" -"Fixed commands with `BucketType.cagegory` cooldown causing issues in " -"private channels. ([#2603](https://github.com/Pycord-" +"Fixed `BucketType.category` cooldown commands not functioning correctly " +"in private channels. ([#2603](https://github.com/Pycord-" "Development/pycord/pull/2603))" msgstr "" -#: ../../changelog.md:48 ../../changelog.md:161 ../../changelog.md:287 -#: ../../changelog.md:438 ../../changelog.md:484 ../../changelog.md:561 -#: ../../changelog.md:700 ../../changelog.md:802 ../../changelog.md:909 +#: ../../changelog.md:82 0fe082c072ae49f581e23f1910056ed8 +msgid "" +"Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. " +"([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" +msgstr "" + +#: ../../changelog.md:84 7327cd43427e488999e090c78cac0b79 +msgid "" +"Fixed `TypeError` when passing `skus` parameter in " +"`Client.entitlements()`. ([#2627](https://github.com/Pycord-" +"Development/pycord/issues/2627))" +msgstr "" + +#: ../../changelog.md:86 d15ec1bf07934c9d86604965290c99bf +msgid "" +"Fixed `AttributeError` when sending polls with `PartialWebook`. " +"([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" +msgstr "" + +#: ../../changelog.md:88 084a586848d74bfeb5f2ceba591293d0 +msgid "" +"Fixed editing `ForumChannel` flags not working. " +"([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "" + +#: ../../changelog.md:90 1aa560acbffb489b9c0495cf0b24c36e +msgid "" +"Fixed `AttributeError` when accessing `Member.guild_permissions` for user" +" installed apps. ([#2650](https://github.com/Pycord-" +"Development/pycord/pull/2650))" +msgstr "" + +#: ../../changelog.md:92 5b2283d5d5e640999855ad3042fc5e6b +msgid "" +"Fixed type annotations of cached properties. ([#2635](https://github.com" +"/Pycord-Development/pycord/issues/2635))" +msgstr "" + +#: ../../changelog.md:94 878001efd2cc45dead2ee90071cecf01 +msgid "" +"Fixed malformed properties in `Interaction.channel`. " +"([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "" + +#: ../../changelog.md:96 7c13dbe9d92449f4b9c00b812d03c2df +msgid "" +"Fixed an error when responding non-ephemerally with a `Paginator` to an " +"ephemerally deferred interaction. ([#2661](https://github.com/Pycord-" +"Development/pycord/pull/2661))" +msgstr "" + +#: ../../changelog.md:99 7ed9c8e2674b4eea8e16efe2e7916c19 +msgid "" +"Fixed attachment metadata being set incorrectly in interaction responses " +"causing the metadata to be ignored by Discord. " +"([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" +msgstr "" + +#: ../../changelog.md:102 cc7d5fa68e994d34aa693f5bb2f1ffd0 +msgid "" +"Fixed unexpected backoff behavior in the handling of task failures " +"([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." +msgstr "" + +#: ../../changelog.md:104 6e43909d03324ff994e8e0c5521b4ab8 +msgid "" +"Fixed `BridgeCommand` duplicate in default help command. " +"([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" +msgstr "" + +#: ../../changelog.md:106 d15ec1bf07934c9d86604965290c99bf +msgid "" +"Fixed `AttributeError` when trying to consume a consumable entitlement. " +"([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "" + +#: ../../changelog.md:108 1579cb6ca4374946ae9d2aa00c6a2a05 +msgid "" +"Fixed `Subscription.renewal_sku_ids` not accepting `None` from the " +"received payload. ([#2709](https://github.com/Pycord-" +"Development/pycord/pull/2709))" +msgstr "" + +#: ../../changelog.md:110 3b2c11ddd69145ff9b65a168d5f20f04 +msgid "" +"Fixed `ForumChannel.edit` allowing `default_reaction_emoji` to be `None`." +" ([#2739](https://github.com/Pycord-Development/pycord/pull/2739))" +msgstr "" + +#: ../../changelog.md:112 98b7cc4cbd3b4529bd64539cdc0166e7 +msgid "" +"Fixed missing `None` type hints in `Select.__init__`. " +"([#2746](https://github.com/Pycord-Development/pycord/pull/2746))" +msgstr "" + +#: ../../changelog.md:114 1addb165c9c3437ca5dca418e2638d46 +msgid "" +"Fixed `TypeError` when using `Flag` with Python 3.11+. " +"([#2759](https://github.com/Pycord-Development/pycord/pull/2759))" +msgstr "" + +#: ../../changelog.md:116 7327cd43427e488999e090c78cac0b79 +msgid "" +"Fixed `TypeError` when specifying `thread_name` in `Webhook.send`. " +"([#2761](https://github.com/Pycord-Development/pycord/pull/2761))" +msgstr "" + +#: ../../changelog.md:118 8ef80de7fad747f88bcdb50c5d39b51b +msgid "" +"Updated `valid_locales` to support `in` and `es-419`. " +"([#2767](https://github.com/Pycord-Development/pycord/pull/2767))" +msgstr "" + +#: ../../changelog.md:120 a148a83edd1f4f7b845a87b1a987c516 +msgid "" +"Fixed `Webhook.edit` not working with `attachments=[]`. " +"([#2779](https://github.com/Pycord-Development/pycord/pull/2779))" +msgstr "" + +#: ../../changelog.md:122 2eb6e57c0a364efd86ffa8096f540133 +msgid "" +"Fixed GIF-based `Sticker` returning the wrong `url`. " +"([#2781](https://github.com/Pycord-Development/pycord/pull/2781))" +msgstr "" + +#: ../../changelog.md:124 12ea4e48fc584a9c87ef676eeacfcd07 +msgid "" +"Fixed `VoiceClient` crashing randomly while receiving audio " +"([#2800](https://github.com/Pycord-Development/pycord/pull/2800))" +msgstr "" + +#: ../../changelog.md:126 d3b786079fea46bc8786e6b5154c03ed +msgid "" +"Fixed `VoiceClient.connect` failing to do initial connection. " +"([#2812](https://github.com/Pycord-Development/pycord/pull/2812))" +msgstr "" + +#: ../../changelog.md:128 d15ec1bf07934c9d86604965290c99bf +msgid "" +"Fixed `AttributeError` when printing a File component's `__repr__`. " +"([#2843](https://github.com/Pycord-Development/pycord/pull/2843))" +msgstr "" + +#: ../../changelog.md:130 1aa560acbffb489b9c0495cf0b24c36e +msgid "" +"Fixed `TypeError` when using `@option` with certain annotations and along" +" with `channel_types`. ([#2835](https://github.com/Pycord-" +"Development/pycord/pull/2835))" +msgstr "" + +#: ../../changelog.md:133 ../../changelog.md:268 ../../changelog.md:394 +#: ../../changelog.md:545 ../../changelog.md:591 ../../changelog.md:668 +#: ../../changelog.md:807 ../../changelog.md:909 ../../changelog.md:1016 #: 6f3f624eef944b38a861d712cf1c2dd3 msgid "Changed" msgstr "" -#: ../../changelog.md:50 dd5ffa5028be44a282b2ac8924972f1f +#: ../../changelog.md:135 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:53 9fe0dfdfa63e4ad4b9c4e4043aef28b3 +#: ../../changelog.md:138 9fe0dfdfa63e4ad4b9c4e4043aef28b3 msgid "" "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com" "/Pycord-Development/pycord/pull/2521))" msgstr "" -#: ../../changelog.md:56 ../../changelog.md:623 +#: ../../changelog.md:140 84fd56364f2e426f8059ab543cf8fa9f +msgid "" +"`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com" +"/Pycord-Development/pycord/pull/2501))" +msgstr "" + +#: ../../changelog.md:142 e81f05b83a034f228f9c15b92cb49ffc +msgid "" +"Replaced audioop (deprecated module) implementation of " +"`PCMVolumeTransformer.read` method with a pure Python equivalent. " +"([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" +msgstr "" + +#: ../../changelog.md:145 2a37ee55e00e4e68b43bcf62c0b6c16b +msgid "" +"Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following " +"Discord's API changes. ([#2671](https://github.com/Pycord-" +"Development/pycord/pull/2671))" +msgstr "" + +#: ../../changelog.md:147 0a54f2b4c9764c26a62124a36810df1f +msgid "" +"`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com" +"/Pycord-Development/pycord/pull/2564))" +msgstr "" + +#: ../../changelog.md:149 c07af9a4c1fd4892ae280f8510c5161f +msgid "" +"Changed the default value of `ApplicationCommand.nsfw` to `False`. " +"([#2797](https://github.com/Pycord-Development/pycord/pull/2797))" +msgstr "" + +#: ../../changelog.md:151 dddf1b7b1aba48dfb0f3282e4d0658a2 +msgid "" +"Upgraded voice websocket version to v8. ([#2812](https://github.com" +"/Pycord-Development/pycord/pull/2812))" +msgstr "" + +#: ../../changelog.md:154 ../../changelog.md:730 #: 5b535d4b52244097b05ec474ea2121c6 msgid "Deprecated" msgstr "" -#: ../../changelog.md:58 effae79d201c4ca0a0e3943743dfc1b5 +#: ../../changelog.md:156 effae79d201c4ca0a0e3943743dfc1b5 msgid "" "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. " "([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" msgstr "" -#: ../../changelog.md:61 2ea9c95bdc934b7bbbe972ad30512eb5 +#: ../../changelog.md:158 effae79d201c4ca0a0e3943743dfc1b5 +msgid "" +"Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com" +"/Pycord-Development/pycord/pull/2501))" +msgstr "" + +#: ../../changelog.md:160 effae79d201c4ca0a0e3943743dfc1b5 +msgid "" +"Deprecated `Interaction.cached_channel` in favor of " +"`Interaction.channel`. ([#2658](https://github.com/Pycord-" +"Development/pycord/pull/2658))" +msgstr "" + +#: ../../changelog.md:163 ../../changelog.md:291 ../../changelog.md:429 +#: ../../changelog.md:677 ../../changelog.md:918 +#: cb54f87243e542f6bdc3742c26311fa6 +msgid "Removed" +msgstr "" + +#: ../../changelog.md:165 3d4304bdaaab400c8603287757c112a5 +msgid "" +"Removed deprecated support for `Option` in `BridgeCommand`, use " +"`BridgeOption` instead. ([#2731](https://github.com/Pycord-" +"Development/pycord/pull/2731))" +msgstr "" + +#: ../../changelog.md:168 2ea9c95bdc934b7bbbe972ad30512eb5 msgid "[2.6.1] - 2024-09-15" msgstr "" -#: ../../changelog.md:65 1a3f1825ed6940388193b1ef07b1dc76 +#: ../../changelog.md:172 1a3f1825ed6940388193b1ef07b1dc76 msgid "" "Fixed premature garbage collection of tasks. ([#2510](https://github.com" "/Pycord-Development/pycord/pull/2510))" msgstr "" -#: ../../changelog.md:67 8b40273b3f334953b36d4e726019a6d1 +#: ../../changelog.md:174 8b40273b3f334953b36d4e726019a6d1 msgid "" "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. " "([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" msgstr "" -#: ../../changelog.md:69 9ac720e03f6142e4ac4e0b6de0379c55 +#: ../../changelog.md:176 9ac720e03f6142e4ac4e0b6de0379c55 msgid "" "Fixed missing `stacklevel` parameter in `warn_deprecated` function call " "inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-" "Development/pycord/pull/2500))" msgstr "" -#: ../../changelog.md:71 e2f55b08f081473c867e0e027c8cf264 +#: ../../changelog.md:178 e2f55b08f081473c867e0e027c8cf264 msgid "" "Fixed the type hint in `ConnectionState._polls` to reflect actual " "behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com" "/Pycord-Development/pycord/pull/2500))" msgstr "" -#: ../../changelog.md:74 2fb12f31fbda4dd38ac5d75d20c470af +#: ../../changelog.md:181 2fb12f31fbda4dd38ac5d75d20c470af msgid "" "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and " "`RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-" "Development/pycord/pull/2500))" msgstr "" -#: ../../changelog.md:77 15b4372aa41846c2bfe24bd729e63048 +#: ../../changelog.md:184 15b4372aa41846c2bfe24bd729e63048 msgid "" "Fixed the type of `ForumChannel.default_sort_order`, changing it from " "`int` to `SortOrder`. ([#2500](https://github.com/Pycord-" "Development/pycord/pull/2500))" msgstr "" -#: ../../changelog.md:79 7869c915b3f14f07a5bf3a4475157805 +#: ../../changelog.md:186 7869c915b3f14f07a5bf3a4475157805 msgid "" "Fixed `PartialMessage` causing errors when created from " "`PartialMessageable`. ([#2568](https://github.com/Pycord-" "Development/pycord/pull/2500))" msgstr "" -#: ../../changelog.md:81 2fb12f31fbda4dd38ac5d75d20c470af +#: ../../changelog.md:188 2fb12f31fbda4dd38ac5d75d20c470af msgid "" -"Fixed the `guild` attribute of `Member`s recieved from a `UserCommand` " +"Fixed the `guild` attribute of `Member`s received from a `UserCommand` " "being `None`. ([#2573](https://github.com/Pycord-" "Development/pycord/pull/2573))" msgstr "" -#: ../../changelog.md:83 a148a83edd1f4f7b845a87b1a987c516 +#: ../../changelog.md:190 a148a83edd1f4f7b845a87b1a987c516 msgid "" -"Fixed `Webhook.send` not including attachment data. " +"Fixed `Webhook.send`, which did not include attachment data. " "([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" msgstr "" -#: ../../changelog.md:85 98b7cc4cbd3b4529bd64539cdc0166e7 +#: ../../changelog.md:192 98b7cc4cbd3b4529bd64539cdc0166e7 msgid "" "Fixed inverted type hints in `CheckAnyFailure`. " "([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" msgstr "" -#: ../../changelog.md:88 2ea9c95bdc934b7bbbe972ad30512eb5 +#: ../../changelog.md:195 2ea9c95bdc934b7bbbe972ad30512eb5 msgid "[2.6.0] - 2024-07-09" msgstr "" -#: ../../changelog.md:92 ee1185f07728432d90acac5a21dbec45 +#: ../../changelog.md:199 ee1185f07728432d90acac5a21dbec45 msgid "" "Added `banner` parameter to `ClientUser.edit`. " "([#2396](https://github.com/Pycord-Development/pycord/pull/2396))" msgstr "" -#: ../../changelog.md:94 d88667c6f5dd4c8789c7f597cbcc5b58 +#: ../../changelog.md:201 d88667c6f5dd4c8789c7f597cbcc5b58 msgid "" "Added `user` argument to `Paginator.edit`. ([#2390](https://github.com" "/Pycord-Development/pycord/pull/2390))" msgstr "" -#: ../../changelog.md:96 9e482633187e4f5c8fa1c1970503e1e5 +#: ../../changelog.md:203 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:98 73f8d143b51e4d75ba380e16b08e6dcb +#: ../../changelog.md:205 73f8d143b51e4d75ba380e16b08e6dcb msgid "" "Added `Guild.search_members`. ([#2418](https://github.com/Pycord-" "Development/pycord/pull/2418))" msgstr "" -#: ../../changelog.md:100 479db9f659c0426e8a65b42d3e86c344 +#: ../../changelog.md:207 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:102 f56f60d027c34c1c96d0aae7504b6cfb +#: ../../changelog.md:209 f56f60d027c34c1c96d0aae7504b6cfb msgid "" "Added `member` data to the `raw_reaction_remove` event. " "([#2412](https://github.com/Pycord-Development/pycord/pull/2412))" msgstr "" -#: ../../changelog.md:104 f9988dfe7b23484b9ba4809f9bb95d74 +#: ../../changelog.md:211 f9988dfe7b23484b9ba4809f9bb95d74 msgid "" "Added `Poll` and all related features. ([#2408](https://github.com" "/Pycord-Development/pycord/pull/2408))" msgstr "" -#: ../../changelog.md:106 9ac720e03f6142e4ac4e0b6de0379c55 +#: ../../changelog.md:213 9ac720e03f6142e4ac4e0b6de0379c55 msgid "" "Added `stacklevel` param to `utils.warn_deprecated` and " "`utils.deprecated`. ([#2450](https://github.com/Pycord-" "Development/pycord/pull/2450))" msgstr "" -#: ../../changelog.md:108 a8616b9a932f4606b85de797fc499ba7 +#: ../../changelog.md:215 a8616b9a932f4606b85de797fc499ba7 msgid "" "Added support for user-installable applications. " "([#2409](https://github.com/Pycord-Development/pycord/pull/2409))" msgstr "" -#: ../../changelog.md:110 1c4f1fdcf05c43aba319d2e797df1b3e +#: ../../changelog.md:217 1c4f1fdcf05c43aba319d2e797df1b3e msgid "" "Added support for one-time purchases for Discord monetization. " "([#2438](https://github.com/Pycord-Development/pycord/pull/2438))" msgstr "" -#: ../../changelog.md:112 44550f6f16534a32aae326204a92f827 +#: ../../changelog.md:219 44550f6f16534a32aae326204a92f827 msgid "" "Added `Attachment.title`. ([#2486](https://github.com/Pycord-" "Development/pycord/pull/2486))" msgstr "" -#: ../../changelog.md:114 fc13286743f845d19a7cab16bf48759f +#: ../../changelog.md:221 fc13286743f845d19a7cab16bf48759f msgid "" "Added `MemberFlags`. ([#2489](https://github.com/Pycord-" "Development/pycord/pull/2489))" msgstr "" -#: ../../changelog.md:115 90ea693eff9d4606a4c04da0d022efe1 +#: ../../changelog.md:222 90ea693eff9d4606a4c04da0d022efe1 msgid "" "Added `bypass_verification` parameter to `Member.edit`. " "([#2489](https://github.com/Pycord-Development/pycord/pull/2489))" msgstr "" -#: ../../changelog.md:117 b0e2a36ec1474943ac739d3a17c79296 +#: ../../changelog.md:224 b0e2a36ec1474943ac739d3a17c79296 msgid "" "Added `RoleFlags`. ([#2487](https://github.com/Pycord-" "Development/pycord/pull/2487))" msgstr "" -#: ../../changelog.md:118 1acba6757cf74da68c1302cbed5100b5 +#: ../../changelog.md:225 1acba6757cf74da68c1302cbed5100b5 msgid "" "Added `MessageCall` information. ([#2488](https://github.com/Pycord-" "Development/pycord/pull/2488))" msgstr "" -#: ../../changelog.md:123 7ae94f40f23e4016ad3583ccfa6c742c +#: ../../changelog.md:230 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:125 4b405ed8d3174be9b4285624ed111389 +#: ../../changelog.md:232 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:128 21ab8865343f4f4a95f4e6fb558290f9 +#: ../../changelog.md:235 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:130 9d69c269ed79425ab60e09f9b5e2ee4b +#: ../../changelog.md:237 9d69c269ed79425ab60e09f9b5e2ee4b msgid "" "Fixed `NameError` in some instances of `Interaction`. " "([#2402](https://github.com/Pycord-Development/pycord/pull/2402))" msgstr "" -#: ../../changelog.md:132 7c13dbe9d92449f4b9c00b812d03c2df +#: ../../changelog.md:239 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:134 e2f55b08f081473c867e0e027c8cf264 +#: ../../changelog.md:241 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:136 8b40273b3f334953b36d4e726019a6d1 +#: ../../changelog.md:243 8b40273b3f334953b36d4e726019a6d1 msgid "" "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. " "([#2407](https://github.com/Pycord-Development/pycord/pull/2407))" msgstr "" -#: ../../changelog.md:138 384fcb271c8a4306af44212e2fe7c84d +#: ../../changelog.md:245 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:140 ef1005168cfb44b6b8f2055793ee601d +#: ../../changelog.md:247 ef1005168cfb44b6b8f2055793ee601d msgid "" -"Fixed option typehints being ignored when using `parameter_name`. " +"Fixed option type hints being ignored when using `parameter_name`. " "([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" msgstr "" -#: ../../changelog.md:142 7869c915b3f14f07a5bf3a4475157805 +#: ../../changelog.md:249 7869c915b3f14f07a5bf3a4475157805 msgid "" "Fixed parameter `embed=None` causing `AttributeError` on " "`PartialMessage.edit`. ([#2446](https://github.com/Pycord-" "Development/pycord/pull/2446))" msgstr "" -#: ../../changelog.md:144 2ca84f4587674ad0afe6b33699c76e45 +#: ../../changelog.md:251 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:146 878001efd2cc45dead2ee90071cecf01 +#: ../../changelog.md:253 878001efd2cc45dead2ee90071cecf01 msgid "" "Fixed missing `application_id` in `Entitlement.delete`. " "([#2458](https://github.com/Pycord-Development/pycord/pull/2458))" msgstr "" -#: ../../changelog.md:148 ab1ed3f8483145bea5b24fad05b5648f +#: ../../changelog.md:255 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:150 55d4ea1bd82340bcb8c23812b5179448 +#: ../../changelog.md:257 55d4ea1bd82340bcb8c23812b5179448 msgid "" "Fixed many inaccurate type hints throughout the library. " "([#2457](https://github.com/Pycord-Development/pycord/pull/2457))" msgstr "" -#: ../../changelog.md:152 447daa976adc419590670e36e28bb3e7 +#: ../../changelog.md:259 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:154 6861ca06f105483bbc97a0928b422c0a +#: ../../changelog.md:261 6861ca06f105483bbc97a0928b422c0a msgid "" "Fixed `remove_application_command` causing issues while reloading " "extensions. ([#2480](https://github.com/Pycord-" "Development/pycord/pull/2480))" msgstr "" -#: ../../changelog.md:156 0fe082c072ae49f581e23f1910056ed8 +#: ../../changelog.md:263 0fe082c072ae49f581e23f1910056ed8 msgid "" "Fixed outdated logic for filtering and sorting audit log entries. " "([#2371](https://github.com/Pycord-Development/pycord/pull/2371))" msgstr "" -#: ../../changelog.md:158 af74ad39a1b34e1fa81b9328b1540ea5 +#: ../../changelog.md:265 af74ad39a1b34e1fa81b9328b1540ea5 msgid "" "Further fixed logic when fetching audit logs. ([#2492](https://github.com" "/Pycord-Development/pycord/pull/2492))" msgstr "" -#: ../../changelog.md:163 c07af9a4c1fd4892ae280f8510c5161f +#: ../../changelog.md:270 c07af9a4c1fd4892ae280f8510c5161f msgid "" "Changed the type of `Guild.bitrate_limit` to `int`. " "([#2387](https://github.com/Pycord-Development/pycord/pull/2387))" msgstr "" -#: ../../changelog.md:165 552325d759394d788ef5af5370590ced +#: ../../changelog.md:272 552325d759394d788ef5af5370590ced msgid "" -"HTTP requests that fail with a 503 status are now re-tried. " +"HTTP requests that fail with a 503 status are now retried. " "([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" msgstr "" -#: ../../changelog.md:167 3131b38385834d42af1359ccf1b8e9e8 +#: ../../changelog.md:274 3131b38385834d42af1359ccf1b8e9e8 msgid "" "`option` decorator now accepts `input_type`. ([#2417](https://github.com" "/Pycord-Development/pycord/pull/2417))" msgstr "" -#: ../../changelog.md:169 38abe22de33943b2b3ff6091e2c3779f +#: ../../changelog.md:276 38abe22de33943b2b3ff6091e2c3779f msgid "" "`Option` may be used instead of `BridgeOption` until 2.7. " "([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" msgstr "" -#: ../../changelog.md:171 b9cb2502b6574133b0e491e40833d831 +#: ../../changelog.md:278 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:173 8824c580ff8d4c56916af84ce8747115 +#: ../../changelog.md:280 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:176 effae79d201c4ca0a0e3943743dfc1b5 +#: ../../changelog.md:283 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:178 e81f05b83a034f228f9c15b92cb49ffc +#: ../../changelog.md:285 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:181 0edc039bb53f4074aa6c2ef293fea3ec +#: ../../changelog.md:288 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:184 ../../changelog.md:322 ../../changelog.md:570 -#: ../../changelog.md:811 cb54f87243e542f6bdc3742c26311fa6 -msgid "Removed" -msgstr "" - -#: ../../changelog.md:186 3d4304bdaaab400c8603287757c112a5 +#: ../../changelog.md:293 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:189 313a2244ebdf459f93aaf6f06a33ba51 +#: ../../changelog.md:296 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:192 4d2440e51f8346a5894152a1e3ac6351 +#: ../../changelog.md:299 4d2440e51f8346a5894152a1e3ac6351 msgid "" "Removed the `vanity_code` parameter from `Guild.edit`. " "([#2491](https://github.com/Pycord-Development/pycord/pull/2491))" msgstr "" -#: ../../changelog.md:195 6a0c9c7b35c54520a5ae4547c8382a6e +#: ../../changelog.md:302 6a0c9c7b35c54520a5ae4547c8382a6e msgid "[2.5.0] - 2024-03-02" msgstr "" -#: ../../changelog.md:199 60a5bb23d20a46b29897ff0b90b12c68 +#: ../../changelog.md:306 60a5bb23d20a46b29897ff0b90b12c68 msgid "" "Added method to start bot via async context manager. " "([#1801](https://github.com/Pycord-Development/pycord/pull/1801))" msgstr "" -#: ../../changelog.md:201 41d21b3f7d62487ab79ebdd02c96a138 +#: ../../changelog.md:308 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:203 7556f2bd45294900b546bcc8bc4cc855 +#: ../../changelog.md:310 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:206 f83032a1921645c2b52208a2cd0d80f5 +#: ../../changelog.md:313 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:208 3dc5ef7302d8499f8f3b37132cad769a +#: ../../changelog.md:315 3dc5ef7302d8499f8f3b37132cad769a msgid "" "Added support for text-related features in `StageChannel`. " "([#1936](https://github.com/Pycord-Development/pycord/pull/1936))" msgstr "" -#: ../../changelog.md:210 b26f8600ddae4ee7adf165d713c4c520 +#: ../../changelog.md:317 b26f8600ddae4ee7adf165d713c4c520 msgid "" "Added support for one-time event listeners in `Client.listen`. " "([#1957](https://github.com/Pycord-Development/pycord/pull/1957))" msgstr "" -#: ../../changelog.md:212 4c1d702a0fd34e05b931d0149b6d2e88 +#: ../../changelog.md:319 4c1d702a0fd34e05b931d0149b6d2e88 msgid "" "Added `current_page` argument to `Paginator.update()`. " "([#1983](https://github.com/Pycord-Development/pycord/pull/1983))" msgstr "" -#: ../../changelog.md:214 c424e9e7177746638415ee55b969a529 +#: ../../changelog.md:321 c424e9e7177746638415ee55b969a529 msgid "" "Added application flag `application_auto_moderation_rule_create_badge`. " "([#1992](https://github.com/Pycord-Development/pycord/pull/1992))" msgstr "" -#: ../../changelog.md:216 40bb9fff0d8f40258b28fc994bd31db7 +#: ../../changelog.md:323 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:219 af0b802a69904f288b90a992f9990483 +#: ../../changelog.md:326 af0b802a69904f288b90a992f9990483 msgid "" "Added `custom_message` to AutoModActionMetadata. " "([#2029](https://github.com/Pycord-Development/pycord/pull/2029))" msgstr "" -#: ../../changelog.md:221 15c6731b295e4b0b8cd7e1340c6ea545 +#: ../../changelog.md:328 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:224 07bdc41bd4bd46c58757b555174359fc +#: ../../changelog.md:331 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:227 cb7c3646df2f43cda8a3b34f6d418af1 +#: ../../changelog.md:334 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:230 9d551823bcc84935a681e5d58adf5111 +#: ../../changelog.md:337 9d551823bcc84935a681e5d58adf5111 msgid "" "Added AutoMod-related models for `AuditLogDiff` enums. " "([#2030](https://github.com/Pycord-Development/pycord/pull/2030))" msgstr "" -#: ../../changelog.md:232 c3f3b5baaf6d4bf3a3deaa582d1444a1 +#: ../../changelog.md:339 c3f3b5baaf6d4bf3a3deaa582d1444a1 msgid "" "Added `Interaction.respond` and `Interaction.edit` as shortcut responses." " ([#2026](https://github.com/Pycord-Development/pycord/pull/2026))" msgstr "" -#: ../../changelog.md:234 6b5e8bebd67e407cb1bac3eba6d5726b +#: ../../changelog.md:341 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:237 00f359112aa840c6816d75ab0587ad80 +#: ../../changelog.md:344 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:240 b21a35a76bac4e2d9ae6a07c7a3a696a +#: ../../changelog.md:347 b21a35a76bac4e2d9ae6a07c7a3a696a msgid "" "Added support for usernames and modified multiple methods accordingly. " "([#2042](https://github.com/Pycord-Development/pycord/pull/2042))" msgstr "" -#: ../../changelog.md:242 74a9e9832d4c4a6fa8734778209c65e4 +#: ../../changelog.md:349 74a9e9832d4c4a6fa8734778209c65e4 msgid "" "Added `icon` and `unicode_emoji` arguments to `Guild.create_role`. " "([#2086](https://github.com/Pycord-Development/pycord/pull/2086))" msgstr "" -#: ../../changelog.md:244 f2ec2163c71c48b9a21d3bd75fff5064 +#: ../../changelog.md:351 f2ec2163c71c48b9a21d3bd75fff5064 msgid "" "Added `cooldown` and `max_concurrency` attributes to `SlashCommandGroup`." " ([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" msgstr "" -#: ../../changelog.md:246 85eb170585cb42f598e263c7b60a31e0 +#: ../../changelog.md:353 85eb170585cb42f598e263c7b60a31e0 msgid "" "Added embedded activities Gartic Phone and Jamspace. " "([#2102](https://github.com/Pycord-Development/pycord/pull/2102))" msgstr "" -#: ../../changelog.md:248 7959cb02aa124f1b82dc5adbc03e84c5 +#: ../../changelog.md:355 7959cb02aa124f1b82dc5adbc03e84c5 msgid "" "Added `bridge.Context` type as a `Union` of subclasses. " "([#2106](https://github.com/Pycord-Development/pycord/pull/2106))" msgstr "" -#: ../../changelog.md:250 ade46dafe4b44075b82a661d0516635f +#: ../../changelog.md:357 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:252 62effd5e105647abaa72932b226b2ce3 +#: ../../changelog.md:359 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:255 343032650b214f1eb5ffe747555db443 +#: ../../changelog.md:362 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:257 42ed7327fefc4b54872053b06dc3d128 +#: ../../changelog.md:364 42ed7327fefc4b54872053b06dc3d128 msgid "" "Added support for custom bot status. ([#2206](https://github.com/Pycord-" "Development/pycord/pull/2206))" msgstr "" -#: ../../changelog.md:259 72df647a50374daa932d83ec54fadbce +#: ../../changelog.md:366 72df647a50374daa932d83ec54fadbce msgid "" "Added function `Guild.delete_auto_moderation_rule`. " "([#2153](https://github.com/Pycord-Development/pycord/pull/2153))" msgstr "" -#: ../../changelog.md:261 dddf1b7b1aba48dfb0f3282e4d0658a2 +#: ../../changelog.md:368 dddf1b7b1aba48dfb0f3282e4d0658a2 msgid "" "Added `VoiceChannel.slowmode_delay`. ([#2112](https://github.com/Pycord-" "Development/pycord/pull/2112))" msgstr "" -#: ../../changelog.md:263 3b2c11ddd69145ff9b65a168d5f20f04 +#: ../../changelog.md:370 3b2c11ddd69145ff9b65a168d5f20f04 msgid "" "Added `ForumChannel.default_reaction_emoji` attribute. " "([#2178](https://github.com/Pycord-Development/pycord/pull/2178))" msgstr "" -#: ../../changelog.md:265 199637891bab425183cc270c18b0a5db +#: ../../changelog.md:372 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:268 4620d311330a4c04b6b2b7b4de078652 +#: ../../changelog.md:375 4620d311330a4c04b6b2b7b4de078652 msgid "" "Added `applied_tags` parameter to `Webhook.send` method. " "([#2322](https://github.com/Pycord-Development/pycord/pull/2322))" msgstr "" -#: ../../changelog.md:270 90293effcc9a4c0cbe82b4d50f4e2604 +#: ../../changelog.md:377 90293effcc9a4c0cbe82b4d50f4e2604 msgid "" "Added `User.avatar_decoration`. ([#2131](https://github.com/Pycord-" "Development/pycord/pull/2131))" msgstr "" -#: ../../changelog.md:272 f1c971d407c9454c85b3b93e5be66b65 +#: ../../changelog.md:379 f1c971d407c9454c85b3b93e5be66b65 msgid "" "Added support for guild onboarding related features. " "([#2127](https://github.com/Pycord-Development/pycord/pull/2127))" msgstr "" -#: ../../changelog.md:274 4f80fa16c23e41c19ad5f98cb4764338 +#: ../../changelog.md:381 4f80fa16c23e41c19ad5f98cb4764338 msgid "" "Added support for monetization related objects and events. " "([#2273](https://github.com/Pycord-Development/pycord/pull/2273))" msgstr "" -#: ../../changelog.md:276 5a3c464362f34da28e03de42a50c57e9 +#: ../../changelog.md:383 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:278 4d570b6175b846b7b096d02a18bf1053 +#: ../../changelog.md:385 4d570b6175b846b7b096d02a18bf1053 msgid "" "Added `invitable` and `slowmode_delay` to `Thread` creation methods. " "([#2350](https://github.com/Pycord-Development/pycord/pull/2350))" msgstr "" -#: ../../changelog.md:280 6e961ffbbb9c4e43a860891df7ed6fa5 +#: ../../changelog.md:387 6e961ffbbb9c4e43a860891df7ed6fa5 msgid "" "Added support for voice channel statuses. ([#2368](https://github.com" "/Pycord-Development/pycord/pull/2368))" msgstr "" -#: ../../changelog.md:282 ee841b6b671d4856b893970d196abd64 +#: ../../changelog.md:389 ee841b6b671d4856b893970d196abd64 msgid "" "Added `enforce_nonce` parameter for message sending. " "([#2370](https://github.com/Pycord-Development/pycord/pull/2370))" msgstr "" -#: ../../changelog.md:284 2608a06bd147422aa67260fc397061b3 +#: ../../changelog.md:391 2608a06bd147422aa67260fc397061b3 msgid "" "Added audit log support for voice channel status. " "([#2373](https://github.com/Pycord-Development/pycord/pull/2373))" msgstr "" -#: ../../changelog.md:289 62c9fe1681134e18a42748c961355bce +#: ../../changelog.md:396 62c9fe1681134e18a42748c961355bce msgid "" "Changed default for all `name_localizations` and " "`description_localizations` attributes from being `None` to being " @@ -802,38 +1112,38 @@ msgid "" "Development/pycord/pull/1866))" msgstr "" -#: ../../changelog.md:292 3f5b3c8765174ac6aaefd7493e389482 +#: ../../changelog.md:399 3f5b3c8765174ac6aaefd7493e389482 msgid "" "Changed `ffmpeg` output suppression when recording voice channels. " "([#1993](https://github.com/Pycord-Development/pycord/pull/1993))" msgstr "" -#: ../../changelog.md:294 13ea43a34662409ebbeff058009c3b87 +#: ../../changelog.md:401 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:296 f55ea4e73a9c4391a525b1222242d5f5 +#: ../../changelog.md:403 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:298 67638ee2ed544e56b98bc22db8fea02a +#: ../../changelog.md:405 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:301 97745879546247a08a47059715774c5b +#: ../../changelog.md:408 97745879546247a08a47059715774c5b msgid "" "Changed `DMChannel.recipients` to potentially be `None`. " "([#2025](https://github.com/Pycord-Development/pycord/pull/2025))" msgstr "" -#: ../../changelog.md:303 7088fa09f41846e5892a329b6bcd8349 +#: ../../changelog.md:410 7088fa09f41846e5892a329b6bcd8349 msgid "" "Changed the behavior to store `view.message` when receiving a component " "interaction, while also changing `view.message` not to be set when " @@ -841,411 +1151,411 @@ msgid "" "([#2036](https://github.com/Pycord-Development/pycord/pull/2036))" msgstr "" -#: ../../changelog.md:307 ef5d6a731203421cbcc58f074cd546f0 +#: ../../changelog.md:414 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:310 64963eb32d2d4c1c9c9ffee138a09b38 +#: ../../changelog.md:417 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:313 89f503d44fe24e02b7b7b79a544e6188 +#: ../../changelog.md:420 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:315 56adce95538e45d49665b92cda9b9641 +#: ../../changelog.md:422 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:317 3bab78924e3d402698ce98a72ddc2c78 +#: ../../changelog.md:424 3bab78924e3d402698ce98a72ddc2c78 msgid "" "Replaced `orjson` features with `msgspec` in the codebase. " "([#2170](https://github.com/Pycord-Development/pycord/pull/2170))" msgstr "" -#: ../../changelog.md:319 ca59a473432d434ca872411f9c66003d +#: ../../changelog.md:426 ca59a473432d434ca872411f9c66003d msgid "" "`BridgeOption` must now be used for arguments in bridge commands. " "([#2252](https://github.com/Pycord-Development/pycord/pull/2252))" msgstr "" -#: ../../changelog.md:324 4e49791b54b244ee933a82f9e04437e2 +#: ../../changelog.md:431 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:326 ca26e991f22d4e3d8c6e230f0539ed50 +#: ../../changelog.md:433 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:331 0b59939241624a3193186fcb744f65f7 +#: ../../changelog.md:438 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:334 1d99b367a7c04345a26271b2bf0023e2 +#: ../../changelog.md:441 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:336 7ed9c8e2674b4eea8e16efe2e7916c19 +#: ../../changelog.md:443 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:339 26359420acd84d13b7ec8078c585de73 +#: ../../changelog.md:446 26359420acd84d13b7ec8078c585de73 msgid "" "Fixed `None` being handled incorrectly for avatar in `ClientUser.edit`. " "([#1994](https://github.com/Pycord-Development/pycord/pull/1994))" msgstr "" -#: ../../changelog.md:341 579b45e396024f64912f08f8cfca16ec +#: ../../changelog.md:448 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:343 18befe9e39544595a7a2036d48d19470 +#: ../../changelog.md:450 18befe9e39544595a7a2036d48d19470 msgid "" "Fixed boolean converter breaking for Bridge Commands. " "([#1999](https://github.com/Pycord-Development/pycord/pull/1999))" msgstr "" -#: ../../changelog.md:345 084a586848d74bfeb5f2ceba591293d0 +#: ../../changelog.md:452 084a586848d74bfeb5f2ceba591293d0 msgid "" "Fixed bridge command options not working. ([#1999](https://github.com" "/Pycord-Development/pycord/pull/1999))" msgstr "" -#: ../../changelog.md:347 83b3c68f47754e73ab88708fc8a2ffb2 +#: ../../changelog.md:454 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:349 a3a4c596689748fe814636d674727419 +#: ../../changelog.md:456 a3a4c596689748fe814636d674727419 msgid "" "Fixed `TypeError` in `AutoModRule`. ([#2029](https://github.com/Pycord-" "Development/pycord/pull/2029))" msgstr "" -#: ../../changelog.md:351 1b761f69f40f462b8e4ef9190b7fc1d6 +#: ../../changelog.md:458 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:354 fae4d3fe283e4ea396db05e19418ce5d +#: ../../changelog.md:461 fae4d3fe283e4ea396db05e19418ce5d msgid "" "Fixed unloading of cogs with bridge commands. ([#2048](https://github.com" "/Pycord-Development/pycord/pull/2048))" msgstr "" -#: ../../changelog.md:356 eaf24d26663f4e6380db8ad8f0172cbe +#: ../../changelog.md:463 eaf24d26663f4e6380db8ad8f0172cbe msgid "" "Fixed the `individual` slash command synchronization method. " "([#1925](https://github.com/Pycord-Development/pycord/pull/1925))" msgstr "" -#: ../../changelog.md:358 84c4af7114434feaa1fecfd718dc694c +#: ../../changelog.md:465 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:360 47c28724914e4fc9a18709531f47c88d +#: ../../changelog.md:467 47c28724914e4fc9a18709531f47c88d msgid "" "Fixed major `TypeError` when an `AuditLogEntry` has no user. " "([#2079](https://github.com/Pycord-Development/pycord/pull/2079))" msgstr "" -#: ../../changelog.md:362 1e8ecddada0440e8b28a3c9be07f3423 +#: ../../changelog.md:469 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:364 a148a83edd1f4f7b845a87b1a987c516 +#: ../../changelog.md:471 a148a83edd1f4f7b845a87b1a987c516 msgid "" "Fixed `before_invoke` not being run for `SlashCommandGroup`. " "([#2091](https://github.com/Pycord-Development/pycord/pull/2091))" msgstr "" -#: ../../changelog.md:366 1aa560acbffb489b9c0495cf0b24c36e +#: ../../changelog.md:473 1aa560acbffb489b9c0495cf0b24c36e msgid "" "Fixed `AttributeError` when accessing a `Select` object's values when it " -"hasn't been interacted with. ([#2104](https://github.com/Pycord-" +"has not been interacted with. ([#2104](https://github.com/Pycord-" "Development/pycord/pull/2104))" msgstr "" -#: ../../changelog.md:368 1770b0d4e2994906acfa30119c7eb482 +#: ../../changelog.md:475 1770b0d4e2994906acfa30119c7eb482 msgid "" "Fixed `before_invoke` being run twice for slash subcommands. " "([#2139](https://github.com/Pycord-Development/pycord/pull/2139))" msgstr "" -#: ../../changelog.md:370 df13f489e5fa4cc48904626e021c027d +#: ../../changelog.md:477 df13f489e5fa4cc48904626e021c027d msgid "" "Fixed `Guild._member_count` sometimes not being set. " "([#2145](https://github.com/Pycord-Development/pycord/pull/2145))" msgstr "" -#: ../../changelog.md:372 269b54a1fd2744a7866a615c72ace4a8 +#: ../../changelog.md:479 269b54a1fd2744a7866a615c72ace4a8 msgid "" "Fixed `Thread.applied_tags` not being updated. " "([#2146](https://github.com/Pycord-Development/pycord/pull/2146))" msgstr "" -#: ../../changelog.md:374 86b89f547c6b4a358f432cf4d398f640 +#: ../../changelog.md:481 86b89f547c6b4a358f432cf4d398f640 msgid "" -"Fixed type hinting of `author` property of `ApplicationContext` to " +"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:377 2fb12f31fbda4dd38ac5d75d20c470af +#: ../../changelog.md:484 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:379 2b542989e4474b1497f08ac6f19f99ed +#: ../../changelog.md:486 2b542989e4474b1497f08ac6f19f99ed msgid "" "Fixed `ScheduledEvent.creator_id` returning `str` instead of `int`. " "([#2162](https://github.com/Pycord-Development/pycord/pull/2162))" msgstr "" -#: ../../changelog.md:381 b5e55bb544e94272b3397bbc0e072ec3 +#: ../../changelog.md:488 b5e55bb544e94272b3397bbc0e072ec3 msgid "" "Fixed `_bytes_to_base64_data` not defined. ([#2185](https://github.com" "/Pycord-Development/pycord/pull/2185))" msgstr "" -#: ../../changelog.md:383 3de52ce55e8b41e2a5815592bb6257ec +#: ../../changelog.md:490 3de52ce55e8b41e2a5815592bb6257ec msgid "" "Fixed inaccurate `Union` type hint of `values` argument of " "`basic_autocomplete` to include `Iterable[OptionChoice]`." msgstr "" -#: ../../changelog.md:385 8fa8ea140ced4a4fa64c9d534c7f71d0 +#: ../../changelog.md:492 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:387 cc7d5fa68e994d34aa693f5bb2f1ffd0 +#: ../../changelog.md:494 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:389 c17344409e9f492a8fd6b8c55ed614aa +#: ../../changelog.md:496 c17344409e9f492a8fd6b8c55ed614aa msgid "" "Fixed `DMChannel.recipient` and `User.dm_channel` being `None`. " "([#2219](https://github.com/Pycord-Development/pycord/pull/2219))" msgstr "" -#: ../../changelog.md:391 12ea4e48fc584a9c87ef676eeacfcd07 +#: ../../changelog.md:498 12ea4e48fc584a9c87ef676eeacfcd07 msgid "" "Fixed `ffmpeg` being terminated prematurely when piping audio stream. " "([#2240](https://github.com/Pycord-Development/pycord/pull/2240))" msgstr "" -#: ../../changelog.md:393 9c6fac01828f43d9a61aee72f31c1792 +#: ../../changelog.md:500 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:395 7327cd43427e488999e090c78cac0b79 +#: ../../changelog.md:502 7327cd43427e488999e090c78cac0b79 msgid "" "Fixed `AttributeError` when running permission checks without the `bot` " "scope. ([#2113](https://github.com/Pycord-" "Development/pycord/issues/2113))" msgstr "" -#: ../../changelog.md:397 d458144f63124e12a6e0d9f8f9cb952b +#: ../../changelog.md:504 d458144f63124e12a6e0d9f8f9cb952b msgid "" "Fixed `Option` not working on bridge commands because " -"`ext.commands.Command` doesn't recognize them. " +"`ext.commands.Command` does not recognize them. " "([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" msgstr "" -#: ../../changelog.md:399 8f18e8d005b1496387f152f3df8662b7 +#: ../../changelog.md:506 8f18e8d005b1496387f152f3df8662b7 msgid "" "Fixed offset-aware tasks causing `TypeError` when being prepared. " "([#2271](https://github.com/Pycord-Development/pycord/pull/2271))" msgstr "" -#: ../../changelog.md:401 d15ec1bf07934c9d86604965290c99bf +#: ../../changelog.md:508 d15ec1bf07934c9d86604965290c99bf msgid "" "Fixed `AttributeError` when serializing commands with `Annotated` type " "hints. ([#2243](https://github.com/Pycord-Development/pycord/pull/2243))" msgstr "" -#: ../../changelog.md:403 2eb6e57c0a364efd86ffa8096f540133 +#: ../../changelog.md:510 2eb6e57c0a364efd86ffa8096f540133 msgid "" "Fixed `Intents.all()` returning the wrong value. " "([#2257](https://github.com/Pycord-Development/pycord/issues/2257))" msgstr "" -#: ../../changelog.md:405 5b2283d5d5e640999855ad3042fc5e6b +#: ../../changelog.md:512 5b2283d5d5e640999855ad3042fc5e6b msgid "" "Fixed `AuditLogIterator` not respecting the `after` parameter. " "([#2295](https://github.com/Pycord-Development/pycord/issues/2295))" msgstr "" -#: ../../changelog.md:407 d3b786079fea46bc8786e6b5154c03ed +#: ../../changelog.md:514 d3b786079fea46bc8786e6b5154c03ed msgid "" "Fixed `AttributeError` when failing to establish initial websocket " "connection. ([#2301](https://github.com/Pycord-" "Development/pycord/pull/2301))" msgstr "" -#: ../../changelog.md:409 b25e60c5a037415e80243abad7f9df8f +#: ../../changelog.md:516 b25e60c5a037415e80243abad7f9df8f msgid "" "Fixed `AttributeError` caused by `command.cog` being `MISSING`. " "([#2303](https://github.com/Pycord-Development/pycord/issues/2303))" msgstr "" -#: ../../changelog.md:411 c5f685e545da4356aeb4de2f2f183a84 +#: ../../changelog.md:518 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:413 17ed8177c40a476fb48f4d90f37837c7 +#: ../../changelog.md:520 17ed8177c40a476fb48f4d90f37837c7 msgid "" "Fixed `AttributeError` when comparing application commands with non-" "command objects. ([#2299](https://github.com/Pycord-" "Development/pycord/issues/2299))" msgstr "" -#: ../../changelog.md:415 5114e2e8307349088415bbbee6af60e4 +#: ../../changelog.md:522 5114e2e8307349088415bbbee6af60e4 msgid "" "Fixed `AttributeError` when copying groups on startup. " "([#2331](https://github.com/Pycord-Development/pycord/issues/2331))" msgstr "" -#: ../../changelog.md:417 25663b9a9dd74370984ab38a6e476f27 +#: ../../changelog.md:524 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:420 2541f029d7454ba394deb4a01dde2485 +#: ../../changelog.md:527 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:422 c9faa78167bc4750a0684c8cbbd64895 +#: ../../changelog.md:529 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:424 1658273ee130473d997c5e510ecbc0fa +#: ../../changelog.md:531 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:426 d8a3e43d20754ef092f3f8d19b138f0d +#: ../../changelog.md:533 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:429 099b69ec664541e0a8052975795d65e4 +#: ../../changelog.md:536 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:431 80ef1c27fc7b4fa48c2db376d01949dd +#: ../../changelog.md:538 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:433 8ef80de7fad747f88bcdb50c5d39b51b +#: ../../changelog.md:540 8ef80de7fad747f88bcdb50c5d39b51b msgid "" "Fixed enum to support stringified annotations. " "([#2367](https://github.com/Pycord-Development/pycord/pull/2367))" msgstr "" -#: ../../changelog.md:436 b4456318b5c84fd28244fb8d7f496360 +#: ../../changelog.md:543 b4456318b5c84fd28244fb8d7f496360 msgid "[2.4.1] - 2023-03-20" msgstr "" -#: ../../changelog.md:440 c8c94e0963114de48a89fd2659fc7763 +#: ../../changelog.md:547 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:446 abf8d94bacef493cb4fe23a98730bc28 +#: ../../changelog.md:553 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:448 2cdfa2779b0e4b8f9ab4144401a89802 +#: ../../changelog.md:555 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:451 aaf94f670e8340a5b177fe6ae162358b +#: ../../changelog.md:558 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:455 c101984320c34ce99992f9fe847e0e88 +#: ../../changelog.md:562 c101984320c34ce99992f9fe847e0e88 msgid "[2.4.0] - 2023-02-10" msgstr "" -#: ../../changelog.md:459 617814850e83401ebf06752624c50095 +#: ../../changelog.md:566 617814850e83401ebf06752624c50095 msgid "" "Added new AutoMod trigger metadata properties `regex_patterns`, " "`allow_list`, and `mention_total_limit`; and added the `mention_spam` " @@ -1253,13 +1563,13 @@ msgid "" "Development/pycord/pull/1809))" msgstr "" -#: ../../changelog.md:462 7fd8831246324c0ba80b842014371a93 +#: ../../changelog.md:569 7fd8831246324c0ba80b842014371a93 msgid "" "Added missing `image` parameter to `Guild.create_scheduled_event()` " "method. ([#1831](https://github.com/Pycord-Development/pycord/pull/1831))" msgstr "" -#: ../../changelog.md:464 b33dbeef25f54b92a273ab153577e67e +#: ../../changelog.md:571 b33dbeef25f54b92a273ab153577e67e msgid "" "New `ApplicationRoleConnectionMetadata` class for application role " "connection metadata, along with the " @@ -1268,7 +1578,7 @@ msgid "" "([#1791](https://github.com/Pycord-Development/pycord/pull/1791))" msgstr "" -#: ../../changelog.md:468 dd48eb67d9264c6f9c8c34eff1f8dc21 +#: ../../changelog.md:575 dd48eb67d9264c6f9c8c34eff1f8dc21 msgid "" "Added new message types, `role_subscription_purchase`, " "`interaction_premium_upsell`, `stage_start`, `stage_end`, " @@ -1277,335 +1587,335 @@ msgid "" "/Pycord-Development/pycord/pull/1852))" msgstr "" -#: ../../changelog.md:472 f5ee939eced64359a65e9e63f4c50556 +#: ../../changelog.md:579 f5ee939eced64359a65e9e63f4c50556 msgid "" "Added new `EmbeddedActivity` values. ([#1859](https://github.com/Pycord-" "Development/pycord/pull/1859))" msgstr "" -#: ../../changelog.md:474 ee535bdbc1cd4d558c6fa469a5b0d528 +#: ../../changelog.md:581 ee535bdbc1cd4d558c6fa469a5b0d528 msgid "" "Added new `suppress_notifications` to `MessageFlags`. " "([#1912](https://github.com/Pycord-Development/pycord/pull/1912))" msgstr "" -#: ../../changelog.md:476 fa69515bb7074d55a6b5abe0177aac95 +#: ../../changelog.md:583 fa69515bb7074d55a6b5abe0177aac95 msgid "" "Added GIF sticker format type to the `StickerFormatType` enum. " "([#1915](https://github.com/Pycord-Development/pycord/pull/1915))" msgstr "" -#: ../../changelog.md:478 17096d6218ec43a3bbef7cb4f25eead2 +#: ../../changelog.md:585 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:481 9f7c5aed80f847d0ba8cec2331f54a86 +#: ../../changelog.md:588 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:486 571ca9ff303e4bd994e1179a0cadb5b3 +#: ../../changelog.md:593 571ca9ff303e4bd994e1179a0cadb5b3 msgid "" "Changed `EmbeddedActivity` values to update accordingly with the new " "activities. ([#1859](https://github.com/Pycord-" "Development/pycord/pull/1859))" msgstr "" -#: ../../changelog.md:488 464da00a553d4cfa9819fc2f0f8e848f +#: ../../changelog.md:595 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:491 39533606d2e9446793b556a39247934e +#: ../../changelog.md:598 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:496 416058062bb045498b964ebab56acb3a +#: ../../changelog.md:603 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 " +"were causing an `AttributeError`, and `io.BytesIO` files did not 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:500 8818ab33e8604db2877b20c041af6723 +#: ../../changelog.md:607 8818ab33e8604db2877b20c041af6723 msgid "" "Fixed bridge groups missing the `parent` attribute. " "([#1823](https://github.com/Pycord-Development/pycord/pull/1823))" msgstr "" -#: ../../changelog.md:502 9fe0dfdfa63e4ad4b9c4e4043aef28b3 +#: ../../changelog.md:609 9fe0dfdfa63e4ad4b9c4e4043aef28b3 msgid "" "Fixed issues with creating auto moderation rules. " "([#1822](https://github.com/Pycord-Development/pycord/pull/1822))" msgstr "" -#: ../../changelog.md:505 ea5b04755aae4a53a625348b5d5f945d +#: ../../changelog.md:612 ea5b04755aae4a53a625348b5d5f945d msgid "[2.3.3] - 2023-02-10" msgstr "" -#: ../../changelog.md:507 a66717a0773c4de7be264d65696be04e +#: ../../changelog.md:614 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:510 aeae11c1ec9e4f4ca20b998880bc4e5b +#: ../../changelog.md:617 aeae11c1ec9e4f4ca20b998880bc4e5b msgid "[2.3.2] - 2022-12-03" msgstr "" -#: ../../changelog.md:514 c49932aeab584576ad0d13c3a8073143 +#: ../../changelog.md:621 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:516 7b22f35de99640918b24cf129a8708a1 +#: ../../changelog.md:623 7b22f35de99640918b24cf129a8708a1 msgid "" "Fixed an `AttributeError` in select relating to the select type. " "([#1814](https://github.com/Pycord-Development/pycord/pull/1814))" msgstr "" -#: ../../changelog.md:518 b940bd229d2b4e6891eec2561e8e815c +#: ../../changelog.md:625 b940bd229d2b4e6891eec2561e8e815c msgid "" "Fixed `Thread.applied_tags` always returning an empty list. " "([#1817](https://github.com/Pycord-Development/pycord/pull/1817))" msgstr "" -#: ../../changelog.md:521 1b92099482524c32940e7b2962f78c68 +#: ../../changelog.md:628 1b92099482524c32940e7b2962f78c68 msgid "[2.3.1] - 2022-11-27" msgstr "" -#: ../../changelog.md:525 25bce91323db4cbea6c7e706497a5fbb +#: ../../changelog.md:632 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:528 eeb4225156bc403cb9430c14142f0030 +#: ../../changelog.md:635 eeb4225156bc403cb9430c14142f0030 msgid "[2.3.0] - 2022-11-23" msgstr "" -#: ../../changelog.md:532 1f69a42547d7413d81ac3be425763eca +#: ../../changelog.md:639 1f69a42547d7413d81ac3be425763eca msgid "" "New brief Attribute to BridgeSlashCommand. ([#1676](https://github.com" "/Pycord-Development/pycord/pull/1676))" msgstr "" -#: ../../changelog.md:534 faba5859b8964373ba18f34a5830b58a +#: ../../changelog.md:641 faba5859b8964373ba18f34a5830b58a msgid "" "Python 3.11 support. ([#1680](https://github.com/Pycord-" "Development/pycord/pull/1680))" msgstr "" -#: ../../changelog.md:535 b5eceae1a70b4eb08fd9c86ed7d3e253 +#: ../../changelog.md:642 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:538 99a675fe67cf47bd8552026dcb0d7680 +#: ../../changelog.md:645 99a675fe67cf47bd8552026dcb0d7680 msgid "" "Added support for age-restricted (NSFW) commands. " "([#1775](https://github.com/Pycord-Development/pycord/pull/1775))" msgstr "" -#: ../../changelog.md:540 ee8b90ba67724d46a3efd5335b0a029a +#: ../../changelog.md:647 ee8b90ba67724d46a3efd5335b0a029a msgid "" "New flags: `PublicUserFlags.active_developer` & " "`ApplicationFlags.active`. ([#1776](https://github.com/Pycord-" "Development/pycord/pull/1776))" msgstr "" -#: ../../changelog.md:542 0d7ed354cec246a1884bb62b4a30455b +#: ../../changelog.md:649 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:544 3d7339c7a4b34b419ca2b385c99b2160 +#: ../../changelog.md:651 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:546 d92eb373bc624dffac6f0e1dc5e5fc95 +#: ../../changelog.md:653 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:548 2a37ee55e00e4e68b43bcf62c0b6c16b +#: ../../changelog.md:655 2a37ee55e00e4e68b43bcf62c0b6c16b msgid "" "Updated `Guild.features` to include new and previously missing features. " "([#1788](https://github.com/Pycord-Development/pycord/pull/1788))" msgstr "" -#: ../../changelog.md:553 b96a634b3523470b9c6321bfe1d0d386 +#: ../../changelog.md:660 b96a634b3523470b9c6321bfe1d0d386 msgid "" "Fix bridge.has_permissions. ([#1695](https://github.com/Pycord-" "Development/pycord/pull/1695))" msgstr "" -#: ../../changelog.md:555 cc90297f0d5b47c7b04fcc3561b2ee44 +#: ../../changelog.md:662 cc90297f0d5b47c7b04fcc3561b2ee44 msgid "" "Fix audit log overwrite type always resulting in `None`. " "([#1716](https://github.com/Pycord-Development/pycord/pull/1716))" msgstr "" -#: ../../changelog.md:557 6b8dca9744d84dd1afaf7c1f2c36bbc2 +#: ../../changelog.md:664 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:563 90671804020b41aba86f0d541ac50a3e +#: ../../changelog.md:670 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:566 7421d3fe662f4595af3381037136c502 +#: ../../changelog.md:673 7421d3fe662f4595af3381037136c502 msgid "" "`get_application_command()` now supports retrieving subcommands and " "subcommand groups. ([#1678](https://github.com/Pycord-" "Development/pycord/pull/1678))" msgstr "" -#: ../../changelog.md:572 160d0b3650564e17b6e25a2cf3bebf73 +#: ../../changelog.md:679 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:575 a11bd7aede7844c6b417faeae902549d +#: ../../changelog.md:682 a11bd7aede7844c6b417faeae902549d msgid "[2.2.2] - 2022-10-05" msgstr "" -#: ../../changelog.md:579 c79e6592f08f41d387a756efa462ff76 +#: ../../changelog.md:686 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:583 804d49d35a1a4950bb1844cb14422c04 +#: ../../changelog.md:690 804d49d35a1a4950bb1844cb14422c04 msgid "[2.2.1] - 2022-10-05" msgstr "" -#: ../../changelog.md:587 96fc9a6acc3d412eb0e4fe8e93e6bce4 +#: ../../changelog.md:694 96fc9a6acc3d412eb0e4fe8e93e6bce4 msgid "" "New `SlashCommand.qualified_id` attribute. ([#1672](https://github.com" "/Pycord-Development/pycord/pull/1672))" msgstr "" -#: ../../changelog.md:592 8a3332dafa3c405198ec6819e0e4d90a +#: ../../changelog.md:699 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:594 cdff853f73034e329f46051f2eee14d5 +#: ../../changelog.md:701 cdff853f73034e329f46051f2eee14d5 msgid "" "Fixed broken `cog` and `parent` attributes on commands in cogs. " "([#1662](https://github.com/Pycord-Development/pycord/pull/1662))" msgstr "" -#: ../../changelog.md:596 6e43909d03324ff994e8e0c5521b4ab8 +#: ../../changelog.md:703 6e43909d03324ff994e8e0c5521b4ab8 msgid "" "Fixed `SlashCommand.mention` for subcommands. ([#1672](https://github.com" "/Pycord-Development/pycord/pull/1672))" msgstr "" -#: ../../changelog.md:599 7c216775f43c4a4283eada7e4c5566be +#: ../../changelog.md:706 7c216775f43c4a4283eada7e4c5566be msgid "[2.2.0] - 2022-10-02" msgstr "" -#: ../../changelog.md:603 887646ff61cc484c8fb5a1b77f4705b3 +#: ../../changelog.md:710 887646ff61cc484c8fb5a1b77f4705b3 msgid "" "New Guild Feature `INVITES_DISABLED`. ([#1613](https://github.com/Pycord-" "Development/pycord/pull/1613))" msgstr "" -#: ../../changelog.md:605 1cab4dd437fc47059e14c6622b309200 +#: ../../changelog.md:712 1cab4dd437fc47059e14c6622b309200 msgid "" "`suppress` kwarg to `Messageable.send()`. ([#1587](https://github.com" "/Pycord-Development/pycord/pull/1587))" msgstr "" -#: ../../changelog.md:607 628dc16b78d7462d9e752a6fd5c34f0d +#: ../../changelog.md:714 628dc16b78d7462d9e752a6fd5c34f0d msgid "" "`proxy` and `proxy_auth` params to many Webhook-related methods. " "([#1655](https://github.com/Pycord-Development/pycord/pull/1655))" msgstr "" -#: ../../changelog.md:609 62fc2f7a9b7647efb0eaeabe6e18b131 +#: ../../changelog.md:716 62fc2f7a9b7647efb0eaeabe6e18b131 msgid "" "`delete_message_seconds` parameter in ban methods. " "([#1557](https://github.com/Pycord-Development/pycord/pull/1557))" msgstr "" -#: ../../changelog.md:611 86674d77e2244a8f9a2273474845bc45 +#: ../../changelog.md:718 86674d77e2244a8f9a2273474845bc45 msgid "" "New `View.get_item()` method. ([#1659](https://github.com/Pycord-" "Development/pycord/pull/1659))" msgstr "" -#: ../../changelog.md:613 eaa5c0bba1a24094995e8bb0a52b7ca0 +#: ../../changelog.md:720 eaa5c0bba1a24094995e8bb0a52b7ca0 msgid "" "Permissions support for bridge commands. ([#1642](https://github.com" "/Pycord-Development/pycord/pull/1642))" msgstr "" -#: ../../changelog.md:615 f3da627f546c4aebadcf3322597750da +#: ../../changelog.md:722 f3da627f546c4aebadcf3322597750da msgid "" "New `BridgeCommand.invoke()` method. ([#1642](https://github.com/Pycord-" "Development/pycord/pull/1642))" msgstr "" -#: ../../changelog.md:617 a38f4867cf0f404abe8d1ad795209e2d +#: ../../changelog.md:724 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:619 26da248bd5434e7680514324dcafcc7b +#: ../../changelog.md:726 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:625 baabee44115f413aa4b2ab853daa0515 +#: ../../changelog.md:732 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:628 b2bc78f7cb2248968d7778e804059d3a +#: ../../changelog.md:735 b2bc78f7cb2248968d7778e804059d3a msgid "" "The `original_message`, `edit_original_message` & " "`delete_original_message` methods for `Interaction` are now deprecated. " @@ -1614,149 +1924,149 @@ msgid "" "/Pycord-Development/pycord/pull/1609))" msgstr "" -#: ../../changelog.md:635 f1a6ff967fae4e4ab7aaa03fb71040ee +#: ../../changelog.md:742 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:638 e24fad332ee74561882cb0fe5683d373 +#: ../../changelog.md:745 e24fad332ee74561882cb0fe5683d373 msgid "" "Fix `VOICE_SERVER_UPDATE` error. ([#1624](https://github.com/Pycord-" "Development/pycord/pull/1624))" msgstr "" -#: ../../changelog.md:640 1658154957934f93aea580480a93f06d +#: ../../changelog.md:747 1658154957934f93aea580480a93f06d msgid "" "Removed unnecessary instance check in autocomplete. " "([#1643](https://github.com/Pycord-Development/pycord/pull/1643))" msgstr "" -#: ../../changelog.md:642 8f96626aeee2407ead9a59ec45dabc1a +#: ../../changelog.md:749 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:645 2dd2c8f954934bb593bf96a65aaf49ce +#: ../../changelog.md:752 2dd2c8f954934bb593bf96a65aaf49ce msgid "[2.1.3] - 2022-09-06" msgstr "" -#: ../../changelog.md:649 f97d21f188914b99a02eddf404a430d9 +#: ../../changelog.md:756 f97d21f188914b99a02eddf404a430d9 msgid "" "Fix TypeError in `process_application_commands`. " "([#1622](https://github.com/Pycord-Development/pycord/pull/1622))" msgstr "" -#: ../../changelog.md:652 20f3c230725b4f879eaf13fe8fab8861 +#: ../../changelog.md:759 20f3c230725b4f879eaf13fe8fab8861 msgid "[2.1.2] - 2022-09-06" msgstr "" -#: ../../changelog.md:656 020eedc585cf44a2858529c8d43b6b54 +#: ../../changelog.md:763 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:660 439fb1afd83545f8b5d955600ad11510 +#: ../../changelog.md:767 439fb1afd83545f8b5d955600ad11510 msgid "[2.1.1] - 2022-08-25" msgstr "" -#: ../../changelog.md:664 e74d531343704a3faafa44b907a76e3f +#: ../../changelog.md:771 e74d531343704a3faafa44b907a76e3f msgid "" "Bridge command detection in cogs. ([#1592](https://github.com/Pycord-" "Development/pycord/pull/1592))" msgstr "" -#: ../../changelog.md:667 d08ad13239c7439cbbd09aae4a16c23d +#: ../../changelog.md:774 d08ad13239c7439cbbd09aae4a16c23d msgid "[2.1.0] - 2022-08-25" msgstr "" -#: ../../changelog.md:671 a86271dbc38645919c2c274f65be4447 +#: ../../changelog.md:778 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:673 59b42b5316384e81b6ef5f2cfeee36ff +#: ../../changelog.md:780 59b42b5316384e81b6ef5f2cfeee36ff msgid "" "A `disable_on_timeout` kwarg in the `View` constructor. " "([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" msgstr "" -#: ../../changelog.md:675 790b53c72a3f4db5a92d35f0bf430bfc +#: ../../changelog.md:782 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:678 1acff13e3a664d0bb3d8a584de44f9fe +#: ../../changelog.md:785 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:681 5a44482095724e8c854fb0dac8a1b688 +#: ../../changelog.md:788 5a44482095724e8c854fb0dac8a1b688 msgid "" "A new `fetch_application` method in the `Client` object. " "([#1536](https://github.com/Pycord-Development/pycord/pull/1536))" msgstr "" -#: ../../changelog.md:683 f384ae7bd39d4645a038b219cc5e3d41 +#: ../../changelog.md:790 f384ae7bd39d4645a038b219cc5e3d41 msgid "" "New `on_check_failure` event method for the `View` class. " "([#799](https://github.com/Pycord-Development/pycord/pull/799))" msgstr "" -#: ../../changelog.md:685 84fd56364f2e426f8059ab543cf8fa9f +#: ../../changelog.md:792 84fd56364f2e426f8059ab543cf8fa9f msgid "" "A `set_mfa_required` method to `Guild`. ([#1552](https://github.com" "/Pycord-Development/pycord/pull/1552))" msgstr "" -#: ../../changelog.md:687 116daae4f3be479d91f71c1dfb2e158e +#: ../../changelog.md:794 116daae4f3be479d91f71c1dfb2e158e msgid "" "Support for command groups with bridge commands. " "([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" msgstr "" -#: ../../changelog.md:689 aa264304900847509610971067c61d13 +#: ../../changelog.md:796 aa264304900847509610971067c61d13 msgid "" "Support for `Attachment` type options for bridge commands. " "([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" msgstr "" -#: ../../changelog.md:691 f3a1898c5fb94d22ad268c1b80c06956 +#: ../../changelog.md:798 f3a1898c5fb94d22ad268c1b80c06956 msgid "" "`is_app` property for `BridgeContext` to better differentiate context " "types. ([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" msgstr "" -#: ../../changelog.md:693 6bbb2d7903f94ccf928e6d4a39d6181c +#: ../../changelog.md:800 6bbb2d7903f94ccf928e6d4a39d6181c msgid "" "Support for localization on bridge commands. ([#1496](https://github.com" "/Pycord-Development/pycord/pull/1496))" msgstr "" -#: ../../changelog.md:695 bf536e2d15b34745aa6202fefc7ecb86 +#: ../../changelog.md:802 bf536e2d15b34745aa6202fefc7ecb86 msgid "" "A `filter_params` helper function in `discord.utils`. " "([#1496](https://github.com/Pycord-Development/pycord/pull/1496))" msgstr "" -#: ../../changelog.md:697 e9a5cb929d2a400996754846071ec5b6 +#: ../../changelog.md:804 e9a5cb929d2a400996754846071ec5b6 msgid "" "Support for `InteractionMessage` via the `message` property of `View`. " "([#1492](https://github.com/Pycord-Development/pycord/pull/1492))" msgstr "" -#: ../../changelog.md:702 c7cf6d82811f4e0ba66b43ed62394be3 +#: ../../changelog.md:809 c7cf6d82811f4e0ba66b43ed62394be3 msgid "" "Use `slash_variant` and `ext_variant` attributes instead of " "`get_application_command()` and `get_ext_command()` methods on " @@ -1764,695 +2074,695 @@ msgid "" "Development/pycord/pull/1496))" msgstr "" -#: ../../changelog.md:705 682dcf307b394f4ca5b2553b815c3fdf +#: ../../changelog.md:812 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:707 1656bec918854d6297b74bb1e35a904f +#: ../../changelog.md:814 1656bec918854d6297b74bb1e35a904f msgid "" "`commands.has_permissions()` check now returns `True` in DM channels. " "([#1577](https://github.com/Pycord-Development/pycord/pull/1577))" msgstr "" -#: ../../changelog.md:712 a16756bd1a69469ab4a723abc6249124 +#: ../../changelog.md:819 a16756bd1a69469ab4a723abc6249124 msgid "" "Fix `VoiceChannel`/`CategoryChannel` data being invalidated on " "`Option._invoke`. ([#1490](https://github.com/Pycord-" "Development/pycord/pull/1490))" msgstr "" -#: ../../changelog.md:714 22c69d421a4e44b5a09e1885e5b1db36 +#: ../../changelog.md:821 22c69d421a4e44b5a09e1885e5b1db36 msgid "" "Fix type issues in `options.py` ([#1473](https://github.com/Pycord-" "Development/pycord/pull/1473))" msgstr "" -#: ../../changelog.md:716 43a5393c21bc440c8ada7fe235818b31 +#: ../../changelog.md:823 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:718 c18c8cdfbd014c69bef54df5485b077e +#: ../../changelog.md:825 c18c8cdfbd014c69bef54df5485b077e msgid "" "Large code/documentation cleanup & minor bug fixes. " "([#1476](https://github.com/Pycord-Development/pycord/pull/1476))" msgstr "" -#: ../../changelog.md:720 ef4e07eeca0e4f6dab9c34646800eb9c +#: ../../changelog.md:827 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:722 74ba25ff24a7407f928e6a503cd7731a +#: ../../changelog.md:829 74ba25ff24a7407f928e6a503cd7731a msgid "" "Fix `load_extensions` parameters not being passed through correctly. " "([#1537](https://github.com/Pycord-Development/pycord/pull/1537))" msgstr "" -#: ../../changelog.md:724 42f99fb9ec3c420883afd8002c0674b7 +#: ../../changelog.md:831 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:727 dfdb859c67e84007954866826f1092dd +#: ../../changelog.md:834 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:729 fe6004afac3c4280b63fe9d2117f045d +#: ../../changelog.md:836 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:731 203cde94f8b84494a4910014cfd9cb86 +#: ../../changelog.md:838 203cde94f8b84494a4910014cfd9cb86 msgid "" "Make `SelectOption.emoji` a property. ([#1550](https://github.com/Pycord-" "Development/pycord/pull/1550))" msgstr "" -#: ../../changelog.md:733 885263a2dea84a019d8ff1bf6fe28a1e +#: ../../changelog.md:840 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:735 f409a2d1bf8941ad8e5dd38c6fa02f97 +#: ../../changelog.md:842 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:737 db74b72ec1cb4f2ca20c8ec590aecc57 +#: ../../changelog.md:844 db74b72ec1cb4f2ca20c8ec590aecc57 msgid "" "Avoid unnecessary calls to `sync_commands` during runtime. " "([#1563](https://github.com/Pycord-Development/pycord/pull/1563))" msgstr "" -#: ../../changelog.md:739 48cc76eeeb3045a58736326078a0219d +#: ../../changelog.md:846 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:741 e8f97a297155469dad5bf1c0065f7248 +#: ../../changelog.md:848 e8f97a297155469dad5bf1c0065f7248 msgid "" "Respect limit argument in `Guild.bans()`. ([#1573](https://github.com" "/Pycord-Development/pycord/pull/1573))" msgstr "" -#: ../../changelog.md:743 753591c9db444d1583e1ca24ba55377c +#: ../../changelog.md:850 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:746 6f46f75334964b6e803da39b08058134 +#: ../../changelog.md:853 6f46f75334964b6e803da39b08058134 msgid "" "Fix `__eq__` method `ApplicationCommand` accidentally comparing to self. " "([#1585](https://github.com/Pycord-Development/pycord/pull/1585))" msgstr "" -#: ../../changelog.md:748 f8eb486c25734047862d39115603e056 +#: ../../changelog.md:855 f8eb486c25734047862d39115603e056 msgid "" "Apply `cog_check` method to `ApplicationCommand` invocations. " "([#1575](https://github.com/Pycord-Development/pycord/pull/1575))" msgstr "" -#: ../../changelog.md:750 98838fe24b00482b90f84b4aeef38bdf +#: ../../changelog.md:857 98838fe24b00482b90f84b4aeef38bdf msgid "" "Fix `Interaction.edit_original_message()` using `ConnectionState` instead" " of `InteractionMessageState`. ([#1565](https://github.com/Pycord-" "Development/pycord/pull/1565))" msgstr "" -#: ../../changelog.md:753 1a3f1825ed6940388193b1ef07b1dc76 +#: ../../changelog.md:860 1a3f1825ed6940388193b1ef07b1dc76 msgid "" "Fix required parameters validation error. ([#1589](https://github.com" "/Pycord-Development/pycord/pull/1589))" msgstr "" -#: ../../changelog.md:756 ../../changelog.md:763 +#: ../../changelog.md:863 ../../changelog.md:870 #: 4b8d0071a17948a789b4a3850b4cfd3e msgid "Security" msgstr "" -#: ../../changelog.md:758 595d6f7ff4074370b90bec1e9625132b +#: ../../changelog.md:865 595d6f7ff4074370b90bec1e9625132b msgid "" "Improved fix for application-based bots without the bot scope " "([#1584](https://github.com/Pycord-Development/pycord/pull/1584))" msgstr "" -#: ../../changelog.md:761 0cd65ab173c0451bb9ae1ba3fb40b232 +#: ../../changelog.md:868 0cd65ab173c0451bb9ae1ba3fb40b232 msgid "[2.0.1] - 2022-08-16" msgstr "" -#: ../../changelog.md:765 ee4dccbc90654cbcb8d0c05f33e124bd +#: ../../changelog.md:872 ee4dccbc90654cbcb8d0c05f33e124bd msgid "" "Fix for application-based bots without the bot scope " "([#1568](https://github.com/Pycord-Development/pycord/pull/1568))" msgstr "" -#: ../../changelog.md:768 97414cf074d2496da5acf484c69838a0 +#: ../../changelog.md:875 97414cf074d2496da5acf484c69838a0 msgid "[2.0.0] - 2022-07-08" msgstr "" -#: ../../changelog.md:772 f926a09ced2d481492984936a41f6dc7 +#: ../../changelog.md:879 f926a09ced2d481492984936a41f6dc7 msgid "" "New `news` property on `TextChannel`. ([#1370](https://github.com/Pycord-" "Development/pycord/pull/1370))" msgstr "" -#: ../../changelog.md:774 1ecb7fa75dff41449dde4615b6e710bf +#: ../../changelog.md:881 1ecb7fa75dff41449dde4615b6e710bf msgid "" "New `invisible` kwarg to `defer()` method. ([#1379](https://github.com" "/Pycord-Development/pycord/pull/1379))" msgstr "" -#: ../../changelog.md:776 59e7463435234e16866270f9f67f3107 +#: ../../changelog.md:883 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:778 825af1ddcde1480883171e981e1da9cb +#: ../../changelog.md:885 825af1ddcde1480883171e981e1da9cb msgid "" "New `ForumChannelConverter`. ([#1440](https://github.com/Pycord-" "Development/pycord/pull/1440))" msgstr "" -#: ../../changelog.md:780 98bfc9d190a748579e55cb74c092cc50 +#: ../../changelog.md:887 98bfc9d190a748579e55cb74c092cc50 msgid "" "A shortcut `jump_url` property to users. ([#1444](https://github.com" "/Pycord-Development/pycord/pull/1444))" msgstr "" -#: ../../changelog.md:782 63e71264efce40bc9ac3f7f177759671 +#: ../../changelog.md:889 63e71264efce40bc9ac3f7f177759671 msgid "" "Ability for webhooks to create forum posts. ([#1405](https://github.com" "/Pycord-Development/pycord/pull/1405))" msgstr "" -#: ../../changelog.md:784 583f0a83c644415fbd248eee5f5d8fc5 +#: ../../changelog.md:891 583f0a83c644415fbd248eee5f5d8fc5 msgid "" "New `message` property to `View` ([#1446](https://github.com/Pycord-" "Development/pycord/pull/1446))" msgstr "" -#: ../../changelog.md:786 03269af61aef4530b0588510928b25ab +#: ../../changelog.md:893 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:788 d30d886bcbdc4227805bd6ddb03ba9ae +#: ../../changelog.md:895 d30d886bcbdc4227805bd6ddb03ba9ae msgid "" "New `thread` property to `Message`. ([#1447](https://github.com/Pycord-" "Development/pycord/pull/1447))" msgstr "" -#: ../../changelog.md:790 eaf48b5278cf458da58e8d6c74d872d5 +#: ../../changelog.md:897 eaf48b5278cf458da58e8d6c74d872d5 msgid "" "A `starting_message` property to `Thread`. ([#1447](https://github.com" "/Pycord-Development/pycord/pull/1447))" msgstr "" -#: ../../changelog.md:792 618f1139d2854adb9498024de569eae4 +#: ../../changelog.md:899 618f1139d2854adb9498024de569eae4 msgid "" "An `app_permissions` property to `Interaction` and `ApplicationContext`. " "([#1460](https://github.com/Pycord-Development/pycord/pull/1460))" msgstr "" -#: ../../changelog.md:794 da574ae3b081432787fabf3ce7643b08 +#: ../../changelog.md:901 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:796 bcd876b3c5524167af08b9c49fc9461d +#: ../../changelog.md:903 bcd876b3c5524167af08b9c49fc9461d msgid "" "Support for AutoMod ([#1316](https://github.com/Pycord-" "Development/pycord/pull/1316))" msgstr "" -#: ../../changelog.md:797 8963ace1487b41d689eaed24f1cbf62f +#: ../../changelog.md:904 8963ace1487b41d689eaed24f1cbf62f msgid "" "Support for `min_length` and `max_length` kwargs in `Option`. " "([#1463](https://github.com/Pycord-Development/pycord/pull/1463))" msgstr "" -#: ../../changelog.md:799 8768c70fc00d4e31b7a80d6b00075daa +#: ../../changelog.md:906 8768c70fc00d4e31b7a80d6b00075daa msgid "" "Native timeout support for `Modal`. ([#1434](https://github.com/Pycord-" "Development/pycord/pull/1434))" msgstr "" -#: ../../changelog.md:804 ee060919f00041db8b5be55cafb2c8c8 +#: ../../changelog.md:911 ee060919f00041db8b5be55cafb2c8c8 msgid "" "Updated to new sticker limit for premium guilds. " "([#1420](https://github.com/Pycord-Development/pycord/pull/1420))" msgstr "" -#: ../../changelog.md:806 dc5c99a601e643378a95fd67cc096a3a +#: ../../changelog.md:913 dc5c99a601e643378a95fd67cc096a3a msgid "" "Replace deprecated endpoint in `HTTPClient.change_my_nickname`. " "([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" msgstr "" -#: ../../changelog.md:808 8c2807db86ce44949802e774add43122 +#: ../../changelog.md:915 8c2807db86ce44949802e774add43122 msgid "" "Updated deprecated IDENTIFY packet connection properties. " "([#1430](https://github.com/Pycord-Development/pycord/pull/1430))" msgstr "" -#: ../../changelog.md:813 32f1c00be9d246c9bbd61f553109e4a9 +#: ../../changelog.md:920 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:818 1eee8306295b44818cb2b0ba52d0cc16 +#: ../../changelog.md:925 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:820 c7e8ed3ea27249a3ba3139f4749fe67f +#: ../../changelog.md:927 c7e8ed3ea27249a3ba3139f4749fe67f msgid "" "Fix `repr(ScheduledEventLocation)` raising TypeError. " "([#1369](https://github.com/Pycord-Development/pycord/pull/1369))" msgstr "" -#: ../../changelog.md:822 138b4b66eaaa464cbd8b470b39dfe3cf +#: ../../changelog.md:929 138b4b66eaaa464cbd8b470b39dfe3cf msgid "" "Fix `repr(TextChannel)` raising AttributeError. " "([#1370](https://github.com/Pycord-Development/pycord/pull/1370))" msgstr "" -#: ../../changelog.md:824 83f10b99afb54627877654d2f7d13542 +#: ../../changelog.md:931 83f10b99afb54627877654d2f7d13542 msgid "" "Fix application command validation. ([#1372](https://github.com/Pycord-" "Development/pycord/pull/1372))" msgstr "" -#: ../../changelog.md:826 f5ed697972464eef896be8d20a91d41f +#: ../../changelog.md:933 f5ed697972464eef896be8d20a91d41f msgid "" "Fix scheduled event `cover` property raising AttributeError. " "([#1381](https://github.com/Pycord-Development/pycord/pull/1381))" msgstr "" -#: ../../changelog.md:828 718f4fb72ad84abbb9e6433b4106c70a +#: ../../changelog.md:935 718f4fb72ad84abbb9e6433b4106c70a msgid "" "Fix `SlashCommandGroup` treating optional arguments as required. " "([#1386](https://github.com/Pycord-Development/pycord/pull/1386))" msgstr "" -#: ../../changelog.md:830 3af4499fd5724a2bbab36758855eefba +#: ../../changelog.md:937 3af4499fd5724a2bbab36758855eefba msgid "" "Fix `remove_application_command` not always removing commands. " "([#1391](https://github.com/Pycord-Development/pycord/pull/1391))" msgstr "" -#: ../../changelog.md:832 df77a6f8c2884f96a9ead31c3040ff3a +#: ../../changelog.md:939 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:834 879a1e7ca8194078b8b54e0d9399b4b4 +#: ../../changelog.md:941 879a1e7ca8194078b8b54e0d9399b4b4 msgid "" "Fix incorrect activities and permissions on `Interaction` and `Option` " "objects. ([#1365](https://github.com/Pycord-" "Development/pycord/pull/1365))" msgstr "" -#: ../../changelog.md:836 2e5cc67d0f334713aa04357850b3b8d6 +#: ../../changelog.md:943 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:838 980b8f6131b547259c6e3243f776160f +#: ../../changelog.md:945 980b8f6131b547259c6e3243f776160f msgid "" "Use `PUT` instead of `POST` in `HTTPClient.join_thread`. " "([#1426](https://github.com/Pycord-Development/pycord/pull/1426))" msgstr "" -#: ../../changelog.md:840 1579cb6ca4374946ae9d2aa00c6a2a05 +#: ../../changelog.md:947 1579cb6ca4374946ae9d2aa00c6a2a05 msgid "" "Fix enum options not setting `input_type` to a SlashCommandOptionType. " "([#1428](https://github.com/Pycord-Development/pycord/pull/1428))" msgstr "" -#: ../../changelog.md:842 1addb165c9c3437ca5dca418e2638d46 +#: ../../changelog.md:949 1addb165c9c3437ca5dca418e2638d46 msgid "" "Fixed TypeError when using thread options. ([#1427](https://github.com" "/Pycord-Development/pycord/pull/1427))" msgstr "" -#: ../../changelog.md:844 d4ea2324cedb4d729a6e016ed9914ed1 +#: ../../changelog.md:951 d4ea2324cedb4d729a6e016ed9914ed1 msgid "" "Allow voice channels in PartialMessage. ([#1441](https://github.com" "/Pycord-Development/pycord/pull/1441))" msgstr "" -#: ../../changelog.md:846 d965df96de2444d2a3da4bac5f41fa32 +#: ../../changelog.md:953 d965df96de2444d2a3da4bac5f41fa32 msgid "" "Fixed `AuditLogAction.target_type` for application command permission " "updates. ([#1445](https://github.com/Pycord-" "Development/pycord/pull/1445))" msgstr "" -#: ../../changelog.md:848 a426447d83a0416b82a2ad38cf28f165 +#: ../../changelog.md:955 a426447d83a0416b82a2ad38cf28f165 msgid "" "Fix bridge commands to ignore the ephemeral kwarg. " "([#1453](https://github.com/Pycord-Development/pycord/pull/1453))" msgstr "" -#: ../../changelog.md:850 8f82c1560e2a4beca1d49b51032693c7 +#: ../../changelog.md:957 8f82c1560e2a4beca1d49b51032693c7 msgid "" "Update `thread.members` on `thread.fetch_members`. " "([#1464](https://github.com/Pycord-Development/pycord/pull/1464))" msgstr "" -#: ../../changelog.md:852 169dd0974f7f4141bb15b782abd500b7 +#: ../../changelog.md:959 169dd0974f7f4141bb15b782abd500b7 msgid "" -"Fix the error when Discord doesn't send the `app_permissions` data in " +"Fix the error when Discord does not send the `app_permissions` data in " "`Interaction`. ([#1467](https://github.com/Pycord-" "Development/pycord/pull/1467))" msgstr "" -#: ../../changelog.md:854 448ef13918d4482281df46bd975272f7 +#: ../../changelog.md:961 448ef13918d4482281df46bd975272f7 msgid "" -"Fix AttributeError when voice client `play()` function isn't completed " +"Fix AttributeError when voice client `play()` function is not completed " "yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" msgstr "" -#: ../../changelog.md:857 dbcf3c4d21c14c479387995847602e95 +#: ../../changelog.md:964 dbcf3c4d21c14c479387995847602e95 msgid "[2.0.0-rc.1] - 2022-05-17" msgstr "" -#: ../../changelog.md:861 71808897a05a4d3791bc6f9dac867d50 +#: ../../changelog.md:968 71808897a05a4d3791bc6f9dac867d50 msgid "" "A `delete_after` kwarg to `Paginator.send`. ([#1245](https://github.com" "/Pycord-Development/pycord/pull/1245))" msgstr "" -#: ../../changelog.md:863 1666cc8af144493294f14e435b91e247 +#: ../../changelog.md:970 1666cc8af144493294f14e435b91e247 msgid "" "New `reason` kwarg to `Thread.delete_messages`. " "([#1253](https://github.com/Pycord-Development/pycord/pull/1253))" msgstr "" -#: ../../changelog.md:865 64598eb221be468cb4460731ecb291b8 +#: ../../changelog.md:972 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:868 65fefed9ae734de68d3bf2484df13eee +#: ../../changelog.md:975 65fefed9ae734de68d3bf2484df13eee msgid "" "New `Paginator.edit()` method. ([#1258](https://github.com/Pycord-" "Development/pycord/pull/1258))" msgstr "" -#: ../../changelog.md:870 e51f6c5505f84ed69127a68178587f84 +#: ../../changelog.md:977 e51f6c5505f84ed69127a68178587f84 msgid "" "An `EmbedField` object. ([#1181](https://github.com/Pycord-" "Development/pycord/pull/1181))" msgstr "" -#: ../../changelog.md:872 3b7406b62a0941a398ac7fdd33ea2a0b +#: ../../changelog.md:979 3b7406b62a0941a398ac7fdd33ea2a0b msgid "" "Option names and descriptions are now validated locally. " "([#1271](https://github.com/Pycord-Development/pycord/pull/1271))" msgstr "" -#: ../../changelog.md:874 35ae30f3f43e476885400ce345466da2 +#: ../../changelog.md:981 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:877 6d7c1c2574e84c82aa22abf622baf28d +#: ../../changelog.md:984 6d7c1c2574e84c82aa22abf622baf28d msgid "" "Support providing option channel types as a list. " "([#1000](https://github.com/Pycord-Development/pycord/pull/1000))" msgstr "" -#: ../../changelog.md:879 e7e85506316f4046a79bf1bee7c0213e +#: ../../changelog.md:986 e7e85506316f4046a79bf1bee7c0213e msgid "" "New `Guild.jump_url` property. ([#1282](https://github.com/Pycord-" "Development/pycord/pull/1282))" msgstr "" -#: ../../changelog.md:881 20413647edf3450886b175cd2f53edc2 +#: ../../changelog.md:988 20413647edf3450886b175cd2f53edc2 msgid "" "ext.pages now supports ext.bridge. ([#1288](https://github.com/Pycord-" "Development/pycord/pull/1288))" msgstr "" -#: ../../changelog.md:883 d29d910018724595a72b329b086dae1b +#: ../../changelog.md:990 d29d910018724595a72b329b086dae1b msgid "" "Implement `None` check for check_guilds. ([#1291](https://github.com" "/Pycord-Development/pycord/pull/1291))" msgstr "" -#: ../../changelog.md:885 3f5d50f736184fe7a6b787749d53834d +#: ../../changelog.md:992 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:887 715f3642c43e4b818b36ac879254a1ad +#: ../../changelog.md:994 715f3642c43e4b818b36ac879254a1ad msgid "" "A new `files` parameter to `Page` object. ([#1300](https://github.com" "/Pycord-Development/pycord/pull/1300))" msgstr "" -#: ../../changelog.md:889 18a0ab7cdda64c26a907d972cd3cc5bf +#: ../../changelog.md:996 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:892 a1b658522e74433b8248a8632c132c83 +#: ../../changelog.md:999 a1b658522e74433b8248a8632c132c83 msgid "" "New `is_nsfw` attribute to voice channels. ([#1317](https://github.com" "/Pycord-Development/pycord/pull/1317))" msgstr "" -#: ../../changelog.md:894 45b48efa33e2445ea77ca5d350cbc1f7 +#: ../../changelog.md:1001 45b48efa33e2445ea77ca5d350cbc1f7 msgid "" "Support for Permissions v2. ([#1328](https://github.com/Pycord-" "Development/pycord/pull/1328))" msgstr "" -#: ../../changelog.md:896 9201af3619a241128b9361d32485948e +#: ../../changelog.md:1003 9201af3619a241128b9361d32485948e msgid "" "Allow using Enum to specify option choices. ([#1292](https://github.com" "/Pycord-Development/pycord/pull/1292))" msgstr "" -#: ../../changelog.md:898 bd0157bc4b0f4b8f8628064afc16fae9 +#: ../../changelog.md:1005 bd0157bc4b0f4b8f8628064afc16fae9 msgid "" "The `file` and `files` parameters to " "`InteractionResponse.edit_message()`. ([#1340](https://github.com/Pycord-" "Development/pycord/pull/1340))" msgstr "" -#: ../../changelog.md:900 6e19fe31455347129e5a8bc95d7b3572 +#: ../../changelog.md:1007 6e19fe31455347129e5a8bc95d7b3572 msgid "" "A `BridgeExtContext.delete()` method. ([#1348](https://github.com/Pycord-" "Development/pycord/pull/1348))" msgstr "" -#: ../../changelog.md:902 99861fea2ef74154a4150f91fa8eef16 +#: ../../changelog.md:1009 99861fea2ef74154a4150f91fa8eef16 msgid "" "Forum channels support. ([#1249](https://github.com/Pycord-" "Development/pycord/pull/1249))" msgstr "" -#: ../../changelog.md:904 0a54f2b4c9764c26a62124a36810df1f +#: ../../changelog.md:1011 0a54f2b4c9764c26a62124a36810df1f msgid "" "Implemented `Interaction.to_dict`. ([#1274](https://github.com/Pycord-" "Development/pycord/pull/1274))" msgstr "" -#: ../../changelog.md:906 99d5ef66098a46d3a923357f8a26c740 +#: ../../changelog.md:1013 99d5ef66098a46d3a923357f8a26c740 msgid "" "Support event covers for audit logs. ([#1355](https://github.com/Pycord-" "Development/pycord/pull/1355))" msgstr "" -#: ../../changelog.md:911 3fc4ac26224f413589a65d539f172b72 +#: ../../changelog.md:1018 3fc4ac26224f413589a65d539f172b72 msgid "" "Removed implicit defer call in `View`. ([#1260](https://github.com" "/Pycord-Development/pycord/pull/1260))" msgstr "" -#: ../../changelog.md:913 c6ba3c12853545738f571c0366063c82 +#: ../../changelog.md:1020 c6ba3c12853545738f571c0366063c82 msgid "" "`Option` class and usage were rewritten. ([#1251](https://github.com" "/Pycord-Development/pycord/pull/1251))" msgstr "" -#: ../../changelog.md:915 916c6e9e2e524421870ac2ad12af1c1b +#: ../../changelog.md:1022 916c6e9e2e524421870ac2ad12af1c1b msgid "" "`description` argument of `PageGroup` is now optional. " "([#1330](https://github.com/Pycord-Development/pycord/pull/1330))" msgstr "" -#: ../../changelog.md:917 8d7dea175fb24794a355b13007c92e01 +#: ../../changelog.md:1024 8d7dea175fb24794a355b13007c92e01 msgid "" "Allow `Modal.children` to be set on initialization. " "([#1311](https://github.com/Pycord-Development/pycord/pull/1311))" msgstr "" -#: ../../changelog.md:919 eb953d6d30db42809fb6a250571f29b1 +#: ../../changelog.md:1026 eb953d6d30db42809fb6a250571f29b1 msgid "" "Renamed `delete_exiting` to `delete_existing` (typo). " "([#1336](https://github.com/Pycord-Development/pycord/pull/1336))" msgstr "" -#: ../../changelog.md:924 0a9c258c97ff43d290fc0293f47f9978 +#: ../../changelog.md:1031 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:926 6a79d4a32b634bd3a7b74c101fa54a7e +#: ../../changelog.md:1033 6a79d4a32b634bd3a7b74c101fa54a7e msgid "" "Fix channel parsing in slash command invocations. " "([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" msgstr "" -#: ../../changelog.md:928 05aa589e0a9a469d96f811423c1b3bd2 +#: ../../changelog.md:1035 05aa589e0a9a469d96f811423c1b3bd2 msgid "" "Make the channel `position` attribute optional. " "([#1257](https://github.com/Pycord-Development/pycord/pull/1257))" msgstr "" -#: ../../changelog.md:930 3da23a6d6d4b4324a36f0b33cc59f82e +#: ../../changelog.md:1037 3da23a6d6d4b4324a36f0b33cc59f82e msgid "" "Fix `PaginatorMenu` to use interaction routes for updates. " "([#1267](https://github.com/Pycord-Development/pycord/pull/1267))" msgstr "" -#: ../../changelog.md:932 d463353b612449e89a9a7015a794e5e2 +#: ../../changelog.md:1039 d463353b612449e89a9a7015a794e5e2 msgid "" "Fix `PartialMessage.edit()` behavior when `content` is `None`. " "([#1268](https://github.com/Pycord-Development/pycord/pull/1268))" msgstr "" -#: ../../changelog.md:934 15b4372aa41846c2bfe24bd729e63048 +#: ../../changelog.md:1041 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:936 7d105926ee684e439657e29d1a57156a +#: ../../changelog.md:1043 7d105926ee684e439657e29d1a57156a msgid "" "Fix `process_application_commands` command not found fallback. " "([#1262](https://github.com/Pycord-Development/pycord/pull/1262))" msgstr "" -#: ../../changelog.md:938 54b42e8bc31145a9a8831d96c1c7a836 +#: ../../changelog.md:1045 54b42e8bc31145a9a8831d96c1c7a836 msgid "" "Fix interaction response race condition. ([#1039](https://github.com" "/Pycord-Development/pycord/pull/1039))" msgstr "" -#: ../../changelog.md:940 5797d5a4023d458aa6eaefe95fdcbe70 +#: ../../changelog.md:1047 5797d5a4023d458aa6eaefe95fdcbe70 msgid "" "Remove voice client when the bot disconnects. ([#1273](https://github.com" "/Pycord-Development/pycord/pull/1273))" msgstr "" -#: ../../changelog.md:942 98b7cc4cbd3b4529bd64539cdc0166e7 +#: ../../changelog.md:1049 98b7cc4cbd3b4529bd64539cdc0166e7 msgid "" "Fix conversion exception in `ext.bridge`. ([#1250](https://github.com" "/Pycord-Development/pycord/pull/1250))" msgstr "" -#: ../../changelog.md:944 89cd1c71990c439c8187661846e4817c +#: ../../changelog.md:1051 89cd1c71990c439c8187661846e4817c msgid "" "`Context.me` returns ClientUser when guilds intent is absent. " "([#1286](https://github.com/Pycord-Development/pycord/pull/1286))" msgstr "" -#: ../../changelog.md:946 6a993686d0f6440f9058ad662abc3eb7 +#: ../../changelog.md:1053 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:948 fec7f8bc5c1c40638b2c7541a613f3b3 +#: ../../changelog.md:1055 fec7f8bc5c1c40638b2c7541a613f3b3 msgid "" "Improved validation regex for command names & options. " "([#1309](https://github.com/Pycord-Development/pycord/pull/1309))" msgstr "" -#: ../../changelog.md:950 1b22b1b48af64ab082e28d5be38e9470 +#: ../../changelog.md:1057 1b22b1b48af64ab082e28d5be38e9470 msgid "" "Correct `Guild.fetch_members()` type-hints. ([#1323](https://github.com" "/Pycord-Development/pycord/pull/1323))" msgstr "" -#: ../../changelog.md:952 109809acf2d545559ad5bd7c1d9d668d +#: ../../changelog.md:1059 109809acf2d545559ad5bd7c1d9d668d msgid "" "Multiple fixes and enhancements for `PageGroup` handling. " "([#1350](https://github.com/Pycord-Development/pycord/pull/1350))" msgstr "" -#: ../../changelog.md:954 c648e6fc6f44425195f326fb578e61d3 +#: ../../changelog.md:1061 c648e6fc6f44425195f326fb578e61d3 msgid "" "Make `TextChannel._get_channel` async. ([#1358](https://github.com" "/Pycord-Development/pycord/pull/1358))" msgstr "" -#: ../../changelog.md:957 7de5791d77fa4367bcc58a2b9db9f7dc +#: ../../changelog.md:1064 7de5791d77fa4367bcc58a2b9db9f7dc msgid "[2.0.0-beta.7] - 2022-04-09" msgstr "" -#: ../../changelog.md:961 681f7f806d614707ae86fcc2e8c3042e +#: ../../changelog.md:1068 681f7f806d614707ae86fcc2e8c3042e msgid "" "Fix py3.10 UnionType checks issue. ([#1240](https://github.com/Pycord-" "Development/pycord/pull/1240))" msgstr "" -#: ../../changelog.md:1000 c3d9893dfd4c43e1af3405c2b96d7e8a +#: ../../changelog.md:1107 c3d9893dfd4c43e1af3405c2b96d7e8a msgid "Older Versions" msgstr "" -#: ../../changelog.md:1002 f2ab2347b52c49258384ff69cb70c6ce +#: ../../changelog.md:1109 f2ab2347b52c49258384ff69cb70c6ce msgid "" "A changelog for versions prior to v2.0 can be found " "[here](old_changelog.rst)." @@ -2502,3 +2812,91 @@ msgstr "" #~ "Development/pycord/pull/2500))" #~ msgstr "" +#~ msgid "" +#~ "Fixed commands with `BucketType.cagegory` " +#~ "cooldown causing issues in private " +#~ "channels. ([#2603](https://github.com/Pycord-" +#~ "Development/pycord/pull/2603))" +#~ msgstr "" + +#~ msgid "" +#~ "Fixed the `guild` attribute of `Member`s" +#~ " recieved from a `UserCommand` being " +#~ "`None`. ([#2573](https://github.com/Pycord-" +#~ "Development/pycord/pull/2573))" +#~ msgstr "" + +#~ msgid "" +#~ "Fixed `Webhook.send` not including attachment" +#~ " data. ([#2513](https://github.com/Pycord-" +#~ "Development/pycord/pull/2513))" +#~ msgstr "" + +#~ msgid "" +#~ "Fixed option typehints being ignored " +#~ "when using `parameter_name`. " +#~ "([#2417](https://github.com/Pycord-" +#~ "Development/pycord/pull/2417))" +#~ msgstr "" + +#~ msgid "" +#~ "HTTP requests that fail with a 503" +#~ " status are now re-tried. " +#~ "([#2395](https://github.com/Pycord-" +#~ "Development/pycord/pull/2395))" +#~ msgstr "" + +#~ 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 "" + +#~ 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 "" + +#~ 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 "" + +#~ 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 "" + +#~ 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 "" + +#~ msgid "" +#~ "Fix AttributeError when voice client " +#~ "`play()` function isn't completed yet. " +#~ "([#1360](https://github.com/Pycord-" +#~ "Development/pycord/pull/1360))" +#~ msgstr "" + +#~ msgid "" +#~ "Added ability to change the API's " +#~ "base URL with `Route.API_BASE_URL`. " +#~ "([#2714](https://github.com/Pycord-" +#~ "Development/pycord/pull/2714))" +#~ msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/ext/bridge/api.po b/docs/locales/en/LC_MESSAGES/ext/bridge/api.po index b58f8920a2..58d55d6a48 100644 --- a/docs/locales/en/LC_MESSAGES/ext/bridge/api.po +++ b/docs/locales/en/LC_MESSAGES/ext/bridge/api.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-09-06 23:44+0000\n" +"POT-Creation-Date: 2025-02-24 14:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../ext/bridge/api.rst:4 6fa316d9035a4819abf06d5ae0850304 msgid "API Reference" @@ -228,9 +228,10 @@ msgstr "" #: 0dcaa4de42d7417ab675d15d95c0545e 3233f6d67e434cb4930d286b1cedbf93 #: 530c706f8f2d4cde86d4b9959a708cf9 695ca16e39234b53a145ba1a621e6ef6 -#: c199030b71784af6aa7369b62ea3c70a discord.ext.bridge.core.BridgeCommand -#: discord.ext.bridge.core.BridgeCommandGroup fcd3136ef9a54e679fb18bae06554cee -#: of +#: c102617394d14eb786c58ca83d415312 c199030b71784af6aa7369b62ea3c70a +#: discord.ext.bridge.core.BridgeCommand +#: discord.ext.bridge.core.BridgeCommandGroup +#: discord.ext.bridge.core.bridge_option fcd3136ef9a54e679fb18bae06554cee of msgid "type" msgstr "" @@ -255,6 +256,7 @@ msgstr "" #: 201f3f3932184f08a7790734fe0c0df9 #: discord.ext.bridge.BridgeCommand.name_localizations:4 of +#, python-brace-format msgid "" "bridge_command.name_localizations[\"en-UK\"] = ... # or any other locale" " # or bridge_command.name_localizations = {\"en-UK\": ..., \"fr-FR\": " @@ -270,6 +272,7 @@ msgstr "" #: 664bc2c5a41e47f7b116b97ca69052f3 #: discord.ext.bridge.BridgeCommand.description_localizations:4 of +#, python-brace-format msgid "" "bridge_command.description_localizations[\"en-UK\"] = ... # or any other" " locale # or bridge_command.description_localizations = {\"en-UK\": ..., " @@ -723,11 +726,31 @@ msgid "The reason for deleting the message. Shows up on the audit log." msgstr "" #: ../../ext/bridge/api.rst:162 be07208f849b4f75afd5cb572c0a4830 -msgid "Option" +msgid "Options" +msgstr "" + +#: ../../ext/bridge/api.rst:165 1f60901eac6a457aa7223e42c10cd93f +msgid "Shortcut Decorators" +msgstr "" + +#: 69b358da5f70406084f5cf2e5739a26c discord.ext.bridge.core.bridge_option:1 of +msgid "" +"A decorator that can be used instead of typehinting " +":class:`.BridgeOption`." msgstr "" -#: ../../ext/bridge/api.rst:165 0b5ee756992f4209aeb8020d1f811b80 -msgid "BridgeOption" +#: 4ec148203eee4759923f7f7b020f695f discord.ext.bridge.core.bridge_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 "" + +#: 91b7ac886f874e52a683d4c29e70b140 discord.ext.bridge.core.bridge_option:10 of +msgid ":class:`str`" +msgstr "" + +#: ../../ext/bridge/api.rst:170 ce259b63f70742b7a14bfb05534ee558 +msgid "Objects" msgstr "" #: 545f31dcbb4e4ab0ac92bc0c8e7e6b47 discord.ext.bridge.core.BridgeOption:1 of @@ -780,3 +803,9 @@ msgstr "" #~ " ] for typing convenience." #~ msgstr "" +#~ msgid "Option" +#~ msgstr "" + +#~ msgid "BridgeOption" +#~ msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/ext/commands/api.po b/docs/locales/en/LC_MESSAGES/ext/commands/api.po index 27a1b1c51c..fb10737f46 100644 --- a/docs/locales/en/LC_MESSAGES/ext/commands/api.po +++ b/docs/locales/en/LC_MESSAGES/ext/commands/api.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-12 14:51+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../ext/commands/api.rst:4 4725cf896a744071a08446633365c2de msgid "API Reference" @@ -109,13 +109,7 @@ msgid "" "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 +#: 6d8c11bb47b2404baadf295e73360b7c c68d85257a5e4af6bd219a6159648c77 #: 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 @@ -159,17 +153,15 @@ msgstr "" #: 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 +#: discord.ext.commands.help.Paginator 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 +#: 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 @@ -186,7 +178,7 @@ msgstr "" #: discord.ext.commands.help.DefaultHelpCommand:18 #: discord.ext.commands.help.HelpCommand:24 #: discord.ext.commands.help.MinimalHelpCommand:9 -#: e56be582fd2f43eb94adef4955c9abc0 f9b93a380a284e189dc49fa48f348b9d of +#: f9b93a380a284e189dc49fa48f348b9d of msgid ":class:`bool`" msgstr "" @@ -209,28 +201,14 @@ msgid "" 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 +#: 1801dd137def4a99846c6e603f11be1f 183496d428a34f7fa249dc88301f8431 +#: 2a95458e7d8643c2ba53f80511c7fd97 31bcf378e11c4b7ab87c5037821c6bda +#: 3750ee9874a649329aece5d76398dd35 3bc1086271a94765a82ebba9760e62e2 +#: 558e0cf6198b497cbdb8d7560555cc5b 798fa21ae55f4282b4274758b25d4a83 +#: 812d0fca4d1549339fe98076a893d054 c30960c78b1a46e2ab2904693f41c626 +#: c6adc9c02e9a4ce6b1595ac2630bf3b0 discord.abc.Messageable.history #: discord.client.Client.entitlements discord.client.Client.fetch_guilds -#: discord.client.Client.wait_for e42e172090a0442eba2ac0f76facbcb5 -#: e532d59c72474f99b0c1ce7c2be358e2 e979a2cb64c144f08aaf2803550cb543 +#: discord.client.Client.wait_for e532d59c72474f99b0c1ce7c2be358e2 #: f49495cd4b3f496f96f84ac8aa1f87e4 fb6332a28a1242f5bede4ea1b4001c1a of msgid "Parameters" msgstr "" @@ -259,22 +237,13 @@ msgstr "" 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 +#: ../../ext/commands/api.rst 0257c75535174994a013c404eed4de3d +#: 0aaa7547a84144fc98f8383462258a5d 227204ee62a54c638c2f8b9a91f21145 +#: 2650f6c238e74f72b4357fd0f3649d83 630f4288af604d4dbc8e4177a7f21fac +#: 65b2a4bfdd9f4cc8b834d6d484ef0034 77dbba5eef11464da6e6d8561993d040 #: 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 +#: discord.abc.Messageable.history discord.client.Client.entitlements +#: discord.client.Client.fetch_guilds discord.client.Client.wait_for #: fd688e2c9468425f8650382857f2fe9a of msgid "Raises" msgstr "" @@ -332,8 +301,8 @@ 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.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 @@ -366,20 +335,10 @@ msgid "" "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 +#: ../../ext/commands/api.rst 21f49b5974d544ffa30d029b89640d48 +#: 3befc35084eb4ca69d1eae3463158861 60a9892afb20420f98ee9221fe525e3e +#: 8e90d2f15b4941d98f8df75ea6d1f6f7 dfe2da6e0d804d72b6ac73f14963c8f2 +#: discord.client.Client.wait_for of msgid "Returns" msgstr "" @@ -392,30 +351,14 @@ msgid "" 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 +#: 378dd7f9c2a64e0189299a60058beda8 3c9ab793d144498097bcfd76a5b53eac +#: 45ea3bdc5022438c98fa1d50fa047386 4c5fd8c24f5b4ad28a6e1aae56787d18 +#: 5c50e685ec2041e597da308a07641a2c 844194587e244cf2b26a421da5ef2919 +#: 8ad6c4547b91438cac30d78cc6b56789 ba9d73b43cc14b0c8711857654f83f62 +#: bf756d9820a94075834d33924e09e0e2 c9bc8a557c184c6d9f063626b67cc4cd +#: dd1387feedaf4788a91e66c7120bb6bf discord.abc.Messageable.history +#: discord.client.Client.entitlements discord.client.Client.fetch_guilds +#: discord.client.Client.wait_for e33db6d356e34de5945d286505e336fa #: f4e246fdf7f2458baa9253a36a4045e0 fc5da63fdcca41d5a4742949f05235c9 of msgid "Return type" msgstr "" @@ -553,13 +496,10 @@ msgstr "" msgid "The command to add." msgstr "" -#: 0017e074dd134426b570354c2504b7db 2955a6e82aa6427ea4129e090d9e0e1a -#: 5f1082c1e4e04874900a56140fe3d2cc 62d9613a1121411c960009687e8cc328 -#: 63f22bb531d541109902fec69dcfcbfc 7d0a457d06344339819fc176a73566c2 -#: 7dbaac0f1ff047cbad5ca6c2242d4dc4 7e4abed9dc9d44818dc910ae2bb0e976 -#: af9c896fbca541199d50ed6f9311ec05 bb305a7b77fe4ff9a8e70816d97d46ae -#: d2e6da7f13ae45be9d21b97011a05d14 db30e1b1f2df4726842b6713f2dc4d6c -#: discord.abc.Messageable.trigger_typing:8 +#: 0017e074dd134426b570354c2504b7db 5f1082c1e4e04874900a56140fe3d2cc +#: 62d9613a1121411c960009687e8cc328 63f22bb531d541109902fec69dcfcbfc +#: 7d0a457d06344339819fc176a73566c2 7dbaac0f1ff047cbad5ca6c2242d4dc4 +#: bb305a7b77fe4ff9a8e70816d97d46ae 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 @@ -569,11 +509,12 @@ msgstr "" #: 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.client.Client.connect:18 discord.client.Client.delete_emoji:11 +#: 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 @@ -585,8 +526,7 @@ msgstr "" #: 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 +#: discord.ext.commands.core.GroupMixin.add_command:16 of msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" msgstr "" @@ -727,6 +667,14 @@ msgstr "" msgid "The allowed mention configuration." msgstr "" +#: 1538eaf30f75407ab466133776dbc71e discord.ext.commands.Bot.app_emojis:1 of +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "" + +#: 37c64c1f6261438891a797a6a574ac89 discord.ext.commands.Bot.app_emojis:5 of +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "" + #: 4d61bc9673774eaf9ec7b47ed96bb05c #: discord.bot.ApplicationCommandMixin.application_command:1 of msgid "" @@ -764,18 +712,9 @@ msgid "" ":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 +#: 25dea9a1072d49a4a52f17e137de72c3 62c513a80a3c4ec5b566f2dfe95621cb +#: 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 @@ -789,8 +728,10 @@ msgstr "" #: 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.create_dm:1 discord.client.Client.create_emoji:1 +#: discord.client.Client.create_guild:1 discord.client.Client.delete_emoji:1 #: discord.client.Client.delete_invite:1 discord.client.Client.fetch_channel:1 +#: discord.client.Client.fetch_emoji:1 discord.client.Client.fetch_emojis: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 @@ -800,7 +741,8 @@ msgstr "" #: 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.on_error:1 discord.client.Client.on_modal_error:1 +#: discord.client.Client.on_view_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 @@ -809,6 +751,7 @@ msgstr "" #: 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.forward_to:1 #: discord.ext.commands.context.Context.invoke:1 #: discord.ext.commands.context.Context.reinvoke:1 #: discord.ext.commands.context.Context.reply:1 @@ -847,10 +790,7 @@ msgstr "" #: 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 +#: discord.ext.commands.help.HelpCommand.send_group_help:1 of msgid "|coro|" msgstr "" @@ -939,8 +879,8 @@ msgstr "" 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 +#: 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 "" @@ -993,6 +933,37 @@ msgstr "" msgid ":class:`.DMChannel`" msgstr "" +#: 39474d78af2f441d818ba1b7ccdeccd0 discord.client.Client.create_emoji:3 of +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "" + +#: 67f8e1eafadb4329933ed24dc95a313c discord.client.Client.create_emoji:5 of +msgid "There is currently a limit of 2000 emojis per application." +msgstr "" + +#: cad7e9188975461bab6898228488e849 discord.client.Client.create_emoji:8 of +msgid "The emoji name. Must be at least 2 characters." +msgstr "" + +#: 75d40bc85a17414a943100275453e7b5 discord.client.Client.create_emoji:11 of +msgid "" +"The :term:`py:bytes-like object` representing the image data to use. Only" +" JPG, PNG and GIF images are supported." +msgstr "" + +#: 4d5298f99ee649468bc32cbb48858423 discord.client.Client.create_emoji:15 of +msgid "An error occurred creating an emoji." +msgstr "" + +#: discord.client.Client.create_emoji:17 e62f5010bdd14887b34428f27772f090 of +msgid "The created emoji." +msgstr "" + +#: ddd2ee7b903d4405b001c528caddc533 discord.client.Client.create_emoji:18 +#: discord.client.Client.fetch_emoji:10 of +msgid ":class:`AppEmoji`" +msgstr "" + #: 32894198e43c44e6be5d31d30af3a30d #: discord.bot.ApplicationCommandMixin.create_group:1 of msgid "" @@ -1006,13 +977,13 @@ msgstr "" msgid "The name of the group to create." msgstr "" -#: 39b074dd62fe4a2c9593642d30d91cab 70182e1186984166914ebe5256fd2312 +#: 70182e1186984166914ebe5256fd2312 #: discord.bot.ApplicationCommandMixin.create_group:10 #: discord.bot.ApplicationCommandMixin.group:10 of msgid "The description of the group to create." msgstr "" -#: 3daecf48b7c64c31b108f8dd881ff771 46500bc4b09146558d44dcee21047fca +#: 46500bc4b09146558d44dcee21047fca #: discord.bot.ApplicationCommandMixin.create_group:13 #: discord.bot.ApplicationCommandMixin.group:13 of msgid "" @@ -1025,7 +996,6 @@ msgstr "" 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 @@ -1062,9 +1032,8 @@ msgstr "" 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 +#: 97536bb06f8049b5837ac583ff2dce33 discord.client.Client.create_guild:22 +#: discord.client.Client.fetch_guild:26 of msgid ":class:`.Guild`" msgstr "" @@ -1076,6 +1045,18 @@ msgstr "" msgid "Invalid icon image format given. Must be PNG or JPG." msgstr "" +#: 39474d78af2f441d818ba1b7ccdeccd0 discord.client.Client.delete_emoji:3 of +msgid "Deletes the custom :class:`AppEmoji` from the application." +msgstr "" + +#: c5cc8c5449904509b773a938723d081b discord.client.Client.delete_emoji:6 of +msgid "The emoji you are deleting." +msgstr "" + +#: 4d5298f99ee649468bc32cbb48858423 discord.client.Client.delete_emoji:9 of +msgid "An error occurred deleting the emoji." +msgstr "" + #: 0149655ae5be40f8b70d5d69362b94f0 discord.client.Client.delete_invite:3 of msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "" @@ -1106,6 +1087,12 @@ msgstr "" msgid "The emojis that the connected client has." msgstr "" +#: discord.ext.commands.Bot.emojis:5 ea92aef62ae14860a92b74b19f31e2fd of +msgid "" +"This only includes the application's emojis if `cache_app_emojis` is " +"``True``." +msgstr "" + #: 55996a99ae5a4b76bcf2980286829ff0 discord.client.Client.entitlements:1 of msgid "" "Returns an :class:`.AsyncIterator` that enables fetching the " @@ -1150,14 +1137,12 @@ msgid "" "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 +#: discord.ext.commands.core.GroupMixin.walk_commands of msgid "Yields" msgstr "" @@ -1173,30 +1158,26 @@ msgstr "" 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 +#: 3321eb8445bb48ffb68d9cb74a155012 discord.abc.Messageable.history:39 +#: discord.client.Client.entitlements:40 discord.client.Client.fetch_guilds:41 #: 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 +#: 9c43804aa1e84f4db26daf70ceda2518 discord.abc.Messageable.history:40 +#: discord.client.Client.entitlements:41 discord.client.Client.fetch_guilds:42 #: of msgid "Usage ::" msgstr "" -#: 30d73cc7fe64490fa9bc06ee689bd9ca 843417dafe404d64bc7fa228cb7035a1 -#: discord.client.Client.entitlements:46 discord.client.Client.fetch_guilds:41 -#: of +#: 843417dafe404d64bc7fa228cb7035a1 discord.client.Client.entitlements:46 +#: discord.client.Client.fetch_guilds:47 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 +#: discord.client.Client.fetch_guilds:52 f3a460b6dbc644f1a519e478316d2ace of msgid "All parameters are optional." msgstr "" @@ -1272,6 +1253,42 @@ msgstr "" msgid "You do not have permission to fetch this channel." msgstr "" +#: 39474d78af2f441d818ba1b7ccdeccd0 discord.client.Client.fetch_emoji:3 of +msgid "Retrieves a custom :class:`AppEmoji` from the application." +msgstr "" + +#: d7510512f1274c79ad9b92b41e15793a discord.client.Client.fetch_emoji:6 of +msgid "The emoji's ID." +msgstr "" + +#: 16bd71de63f54315b81153e65c2efa00 discord.client.Client.fetch_emoji:9 of +msgid "The retrieved emoji." +msgstr "" + +#: discord.client.Client.fetch_emoji:12 fa27d36619154f23b87e1454acdd2c5f of +msgid "The emoji requested could not be found." +msgstr "" + +#: 4d5298f99ee649468bc32cbb48858423 discord.client.Client.fetch_emoji:13 of +msgid "An error occurred fetching the emoji." +msgstr "" + +#: 39474d78af2f441d818ba1b7ccdeccd0 discord.client.Client.fetch_emojis:3 of +msgid "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "" + +#: 4d5298f99ee649468bc32cbb48858423 discord.client.Client.fetch_emojis:5 of +msgid "An error occurred fetching the emojis." +msgstr "" + +#: 75e503161f364fa5a593ca4873cec071 discord.client.Client.fetch_emojis:7 of +msgid "The retrieved emojis." +msgstr "" + +#: 0722f1eb0d854e748d5363eedae8ec27 discord.client.Client.fetch_emojis:8 of +msgid "List[:class:`AppEmoji`]" +msgstr "" + #: de71bd64cf04416ea9bf2abe61ff72ef discord.client.Client.fetch_guild:3 of msgid "Retrieves a :class:`.Guild` from an ID." msgstr "" @@ -1357,15 +1374,22 @@ msgid "" "is assumed to be local time." msgstr "" -#: bc466b15258f4b2aa8ac9a96e0f937d7 discord.client.Client.fetch_guilds:29 of +#: 3b20121f198d4f388ed94fe5e12cdba9 discord.client.Client.fetch_guilds:29 of +msgid "" +"Whether to include member count information in guilds. This fills the " +":attr:`.Guild.approximate_member_count` and " +":attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "" + +#: bc466b15258f4b2aa8ac9a96e0f937d7 discord.client.Client.fetch_guilds:35 of msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr "" -#: 15f4a4f866324c7ba489cd589b442544 discord.client.Client.fetch_guilds:31 of +#: 15f4a4f866324c7ba489cd589b442544 discord.client.Client.fetch_guilds:37 of msgid "Getting the guilds failed." msgstr "" -#: 75ee4f3a774e4d8f987a57c3125133f5 discord.client.Client.fetch_guilds:32 of +#: 75ee4f3a774e4d8f987a57c3125133f5 discord.client.Client.fetch_guilds:38 of msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" msgstr "" @@ -1467,7 +1491,6 @@ msgstr "" 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 @@ -1651,13 +1674,19 @@ msgid "" "can 'access'." msgstr "" -#: 72d83d8cefd0467bbfcf9ddc6b6a47cf c91d10a08ad54d2980f75fb326863880 -#: discord.client.Client.get_all_channels:3 +#: 72d83d8cefd0467bbfcf9ddc6b6a47cf 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 +#: d1219c96be1d44378e6cc2e7e6537aaa discord.client.Client.get_all_channels:8 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\" +" \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, " +"\\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + +#: 32d5a41f29ab4eab83ff4181703345a6 discord.client.Client.get_all_channels:13 #: of msgid "" "Just because you receive a :class:`.abc.GuildChannel` does not mean that " @@ -1665,7 +1694,7 @@ msgid "" ":meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "" -#: 9860d3eda1264a0c8df1f138ffe0bb12 discord.client.Client.get_all_channels:15 +#: 9860d3eda1264a0c8df1f138ffe0bb12 discord.client.Client.get_all_channels:17 #: of msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." msgstr "" @@ -1678,6 +1707,10 @@ msgstr "" msgid ":class:`.Member` -- A member the client can see." msgstr "" +#: 7d0a457d06344339819fc176a73566c2 discord.client.Client.get_all_members:12 of +msgid ":sphinx_autodoc_typehints_type:`Generator\\[Member\\]`" +msgstr "" + #: beeb38432c18467199e1986a4a5a5802 #: discord.bot.ApplicationCommandMixin.get_application_command:1 of msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -1945,8 +1978,8 @@ msgstr "" msgid "The custom emoji or ``None`` if not found." msgstr "" -#: 1c0cbebe556443ec8b777892bbb413ca discord.client.Client.get_emoji:8 of -msgid "Optional[:class:`.Emoji`]" +#: 36582766bdc1404fba01c7e34a7d291e discord.client.Client.get_emoji:8 of +msgid "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgstr "" #: 3c43e6dcda3848efb665d49d3cb97ad1 discord.client.Client.get_guild:1 of @@ -2101,6 +2134,10 @@ msgstr "" msgid "Returns a user with the given ID." msgstr "" +#: 1538eaf30f75407ab466133776dbc71e discord.ext.commands.Bot.guild_emojis:1 of +msgid "The :class:`~discord.GuildEmoji` that the connected client has." +msgstr "" + #: 3c6ffdbfdb4345c6a359147783febc67 discord.ext.commands.Bot.guilds:1 of msgid "The guilds that the connected client is a member of." msgstr "" @@ -2181,11 +2218,14 @@ msgid "" ":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." +#: discord.ext.commands.Bot.latency:1 fdffefaa1e9b44859d2ce1db6bcea167 of +msgid "" +"Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If " +"no websocket is present, this returns ``nan``, and if no heartbeat has " +"been received yet, this returns ``float('inf')``." msgstr "" -#: 68a27c5f06f046589b9966084c427b86 discord.ext.commands.Bot.latency:3 of +#: 68a27c5f06f046589b9966084c427b86 discord.ext.commands.Bot.latency:4 of msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "" @@ -2429,6 +2469,33 @@ msgid "" ":func:`~discord.on_error` for more details." msgstr "" +#: 4bd84969508349538a18e4462fc68a75 discord.client.Client.on_modal_error:3 of +msgid "" +"The default modal error handler provided by the client. The default " +"implementation prints the traceback to stderr." +msgstr "" + +#: a95fc73d1af4455db17072682a05e1f1 discord.client.Client.on_modal_error:6 of +msgid "" +"This only fires for a modal if you did not define its " +":func:`~discord.ui.Modal.on_error`." +msgstr "" + +#: 7d0a457d06344339819fc176a73566c2 discord.client.Client.on_modal_error:12 +#: discord.client.Client.on_view_error:13 of +msgid ":sphinx_autodoc_typehints_type:`None`" +msgstr "" + +#: 62a23463e67743778ff5b5ffda0e1cb5 discord.client.Client.on_view_error:3 of +msgid "The default view error handler provided by the client." +msgstr "" + +#: 5401cf8b6fca4120bce2806abf520d45 discord.client.Client.on_view_error:5 of +msgid "" +"This only fires for a view if you did not define its " +":func:`~discord.ui.View.on_error`." +msgstr "" + #: 373aeb873c344d82970e4a032b9ac217 discord.ext.commands.Bot.persistent_views:1 #: of msgid "A sequence of persistent views added to the client." @@ -3110,18 +3177,36 @@ msgid "" "list of application commands." msgstr "" -#: 1456f4943caa4b34a8e69f60b5a07808 +#: 9624b70cfbee4ca3af484bcf68e4e8ab +#: discord.bot.ApplicationCommandMixin.walk_application_commands:6 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\" +" " +"\\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\," +" \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + +#: 9ab1b0a34851422dab23e9815b835095 #: discord.ext.commands.core.GroupMixin.walk_commands:1 of -msgid "An iterator that recursively walks through all commands and subcommands." +msgid "" +"An iterator that recursively walks through all commands and subcommands. " +":rtype: " +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\" +" \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ " +"\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ " +"\\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, " +"\\:py\\:data\\:\\`\\~typing.Any\\`\\, " +"\\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, " +"\\:py\\:obj\\:\\`None\\`\\]`" msgstr "" #: 49f59fb863cd4209bd0f1f4182299127 -#: discord.ext.commands.core.GroupMixin.walk_commands:3 of +#: discord.ext.commands.core.GroupMixin.walk_commands:5 of msgid "Duplicates due to aliases are no longer returned" msgstr "" #: c046361221d6494fa948452872c5775c -#: discord.ext.commands.core.GroupMixin.walk_commands:6 of +#: discord.ext.commands.core.GroupMixin.walk_commands:8 of msgid "" "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the " "internal list of commands." @@ -3415,8 +3500,7 @@ msgstr "" msgid "The long help text for the command." msgstr "" -#: 1cae6d584b4042669667b6b5b19e8ca7 2fa587e86d45443b9e8de44d3a40adb3 -#: discord.ext.commands.context.Context:50 +#: 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 @@ -3970,6 +4054,14 @@ msgid "" "cog." msgstr "" +#: 9624b70cfbee4ca3af484bcf68e4e8ab +#: discord.ext.commands.cog.Cog.walk_commands:6 of +msgid "" +":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\" +" \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, " +"\\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "" + #: discord.ext.commands.cog.Cog.get_commands:1 e903471dee0946f698493b70bbd6bfff #: of msgid "" @@ -4217,6 +4309,7 @@ msgstr "" #: 870b0c00321c4963b624a270b9ec77ad #: discord.ext.commands.help.HelpCommand.command_not_found:6 of +#, python-brace-format msgid "Defaults to ``No command called {0} found.``" msgstr "" @@ -4246,6 +4339,7 @@ msgstr "" #: bd93202046e7474bbfd1271fb5aebfa7 #: discord.ext.commands.help.HelpCommand.subcommand_not_found:8 of +#, python-brace-format msgid "``'Command \"{command.qualified_name}\" has no subcommands.'``" msgstr "" @@ -4256,6 +4350,7 @@ msgstr "" #: 1bd86a8162e147a2b78964b23a6da060 #: discord.ext.commands.help.HelpCommand.subcommand_not_found:10 of +#, python-brace-format msgid "" "``'Command \"{command.qualified_name}\" has no subcommand named " "{string}'``" @@ -4315,11 +4410,16 @@ msgstr "" #: 9f05a77eef2445268d540b4f9653f322 #: discord.ext.commands.help.HelpCommand.filter_commands:20 of +msgid "A tuple of command types to exclude from the filter." +msgstr "" + +#: 9f05a77eef2445268d540b4f9653f322 +#: discord.ext.commands.help.HelpCommand.filter_commands:23 of msgid "A list of commands that passed the filter." msgstr "" #: 0722f1eb0d854e748d5363eedae8ec27 -#: discord.ext.commands.help.HelpCommand.filter_commands:21 of +#: discord.ext.commands.help.HelpCommand.filter_commands:24 of msgid "List[:class:`Command`]" msgstr "" @@ -4358,8 +4458,7 @@ msgid "" " be output." msgstr "" -#: 0da023124b764228803413e8e928ba2e 0fff7255071443deb952fb069385e343 -#: 221263475094489f990e402ae86805f6 4c8415699f38454caa3f28ff7645e137 +#: 221263475094489f990e402ae86805f6 #: 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 @@ -4367,8 +4466,7 @@ msgstr "" #: 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 +#: discord.ext.commands.help.MinimalHelpCommand.get_destination:3 of msgid "You can override this method to customise the behaviour." msgstr "" @@ -4407,8 +4505,7 @@ msgid "" ":meth:`get_destination`." msgstr "" -#: 145f3f00a2854c308de39ac9f2935d3d 1a16d349e6b147ea8072bbe46e99443b -#: 44d8a4471f8d46199d03cf08d9d852fb bb2b8cf7f8da4ab498331b3d6bfb0f42 +#: 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 @@ -4453,8 +4550,7 @@ msgid "" "arguments." msgstr "" -#: 2d550440e5cf4edc8ced1cacaeea627b 8733bb9051b04e2f91d902a402af6929 -#: 92cd46fd01884b549196ce7d6f3affaf d2912db2232849caa145cdcedd335057 +#: 8733bb9051b04e2f91d902a402af6929 #: 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 @@ -5124,8 +5220,7 @@ msgstr "" msgid "The predicate to check if the command should be invoked." msgstr "" -#: 641aba9d9e1242ee81b39f49ea575ac7 9624b70cfbee4ca3af484bcf68e4e8ab -#: d1219c96be1d44378e6cc2e7e6537aaa +#: 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 @@ -5682,6 +5777,7 @@ msgid "The message that triggered the command being executed." msgstr "" #: 6c79017c8b06446498c3190155904db2 discord.ext.commands.context.Context:13 +#: discord.ext.commands.context.Context.forward_to:13 #: discord.ext.commands.context.Context.reply:9 #: e1bc43a7b22b49f7bb9f4ba8e292f620 of msgid ":class:`.Message`" @@ -6042,6 +6138,39 @@ msgstr "" msgid "The result of the help command, if any." 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.forward_to:12 +#: 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.forward_to:15 +#: 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.forward_to:16 +#: 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.forward_to:17 +#: 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 "" + #: 2f8ba1ce6e854c78bb794c8d818a52fc discord.abc.Messageable.can_send:1 of msgid "" "Returns a :class:`bool` indicating whether you have the permissions to " @@ -6085,6 +6214,18 @@ msgstr "" msgid "Retrieving the message failed." msgstr "" +#: 666fc58fd984426b9fc3697183d98530 +#: discord.ext.commands.context.Context.forward_to:3 of +msgid "" +"A shortcut method to :meth:`.abc.Messageable.send` to forward the " +":class:`.Message` to a channel." +msgstr "" + +#: 9605ca58dc7540ba809f5b9944de8e93 +#: discord.ext.commands.context.Context.forward_to:9 of +msgid "The channel to forward this to." +msgstr "" + #: c0f7203f91234dcf9b71d4aa08c2743e discord.abc.Messageable.pins:3 of msgid "Retrieves all messages that are currently pinned in the channel." msgstr "" @@ -6108,35 +6249,6 @@ msgstr "" 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 "" @@ -6231,10 +6343,10 @@ 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 " +"A reference to the :class:`~discord.Message` being replied to or " +"forwarded. This can be created using " +":meth:`~discord.Message.to_reference`. When replying, you can control " +"whether 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" @@ -6242,10 +6354,10 @@ 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 " +"A reference to the :class:`~discord.Message` being replied to or " +"forwarded. This can be created using " +":meth:`~discord.Message.to_reference`. When replying, you can control " +"whether 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 "" @@ -6685,6 +6797,7 @@ msgstr "" #: bfabc815487148ad94863e1ac2f8634f #: discord.ext.commands.converter.MessageConverter:7 of +#, python-brace-format msgid "" "Lookup by \"{channel ID}-{message ID}\" (retrieved by shift-clicking on " "\"Copy ID\")" @@ -6724,6 +6837,7 @@ msgstr "" #: 85bdb7294d554afbabc5e1eb19bc11c3 #: discord.ext.commands.converter.PartialMessageConverter:7 of +#, python-brace-format msgid "" "By \"{channel ID}-{message ID}\" (retrieved by shift-clicking on \"Copy " "ID\")" @@ -6953,9 +7067,9 @@ msgstr "" msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.colour.Colour\\``" msgstr "" -#: 5fe8c3fcda8a4f62af280c4d6ab3397a +#: 6b7a74325383465caf8f1f009428b33b #: discord.ext.commands.converter.EmojiConverter:1 of -msgid "Converts to a :class:`~discord.Emoji`." +msgid "Converts to a :class:`~discord.GuildEmoji`." msgstr "" #: b0e0e871ab064289a32c66c40214fd9e @@ -6978,7 +7092,7 @@ msgstr "" #: 97ae2776efac4d31b3a7edda0567ced5 #: discord.ext.commands.converter.EmojiConverter.convert:19 of -msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" msgstr "" #: a6e1bbb66c634ba882343850f5060099 @@ -8246,3 +8360,53 @@ msgstr "" msgid ":exc:`~.commands.CommandRegistrationError`" msgstr "" +#~ msgid "Optional[:class:`.Emoji`]" +#~ msgstr "" + +#~ msgid "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds." +#~ msgstr "" + +#~ msgid "" +#~ "An iterator that recursively walks " +#~ "through all commands and subcommands." +#~ msgstr "" + +#~ msgid "Converts to a :class:`~discord.Emoji`." +#~ msgstr "" + +#~ msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.Emoji\\``" +#~ msgstr "" + +#~ msgid "" +#~ ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\" +#~ " \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, " +#~ "\\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +#~ msgstr "" + +#~ 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 "" + +#~ 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 "" + diff --git a/docs/locales/en/LC_MESSAGES/ext/commands/commands.po b/docs/locales/en/LC_MESSAGES/ext/commands/commands.po index a5f6a947f0..c29391d566 100644 --- a/docs/locales/en/LC_MESSAGES/ext/commands/commands.po +++ b/docs/locales/en/LC_MESSAGES/ext/commands/commands.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"POT-Creation-Date: 2025-02-24 14:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../ext/commands/commands.rst:6 2eb0da10d5464bf79c53ce786a7cbae8 msgid "Commands" @@ -488,7 +488,7 @@ msgstr "" #: ../../ext/commands/commands.rst:397 ../../ext/commands/commands.rst:440 #: 60107320d7654b6a9154ea6e51181a3d dd3916f6d6e54dfbb9f2094c34b320b8 -msgid ":class:`Emoji`" +msgid ":class:`GuildEmoji`" msgstr "" #: ../../ext/commands/commands.rst:398 ../../ext/commands/commands.rst:442 @@ -1092,3 +1092,6 @@ msgid "" " out of your own bot." msgstr "" +#~ msgid ":class:`Emoji`" +#~ msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/ext/pages/index.po b/docs/locales/en/LC_MESSAGES/ext/pages/index.po index aea1a8cbb8..19c7dde1b9 100644 --- a/docs/locales/en/LC_MESSAGES/ext/pages/index.po +++ b/docs/locales/en/LC_MESSAGES/ext/pages/index.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-10 02:50+0000\n" +"POT-Creation-Date: 2025-08-02 04:28+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../ext/pages/index.rst:4 2437ba416cf848d9a3d8222dc9eb281b msgid "discord.ext.pages" @@ -52,23 +52,15 @@ msgid "" 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 +#: 063bbc6f3e424780b3fca294ca70043c 1ed97b7d592d457e91f0607e776a78d6 +#: 341e6342cd654d72a002d8bc1bbf025a 422220e75757468b9e523551808c390d +#: 4c13c6d74aac47ba8b3ab6fc503d4c08 5526f25c16e840daa4ff844390a50843 +#: 5d0da1f34118460c8f4eddf4eedb0437 697e50f1545c45f4b9e7370baba6fb36 +#: 6a04ca7a36094db29f14c6fe2ce8b176 6bf63b66304d4c34b3dee842785b34c1 #: 99a76d768ef6423e9a3952a8dec21a78 9a2b6c56e51f47e6b866350220f8c0f6 #: ac20d3e78ca94a39857c8376d4001b92 beac103455d843ac836e933650a4dd62 -#: c11dd90c56d64c83a8bbac2e2b0f341e c1d3f802b5e54055a23682050656d600 -#: c6df38aa49414da5a6de205f703db624 d5bca9a9f4e3404884791ef3d4aca196 -#: dbf01b3b2c5841ba9be4972edf38c752 df1997f923f64977a58153c7935dca20 -#: f2a2b2cd04354ce2b4dbcb6e77dd1bd1 +#: c11dd90c56d64c83a8bbac2e2b0f341e c6df38aa49414da5a6de205f703db624 +#: df1997f923f64977a58153c7935dca20 msgid "Parameters" msgstr "" @@ -95,7 +87,6 @@ msgid "" msgstr "" #: 0ac477cf619c420fafdaac5b6a1fbd18 0e2e6db2218f41dc81c2bbdf0354cbe4 -#: 5d024d19341544b2a7a40d0969eef03e b2df49c3af9a4c74bb099b83349ddcfc #: cfc9f4305077455fad6922d274bc383d #: discord.ext.pages.pagination.Page.callback:1 #: discord.ext.pages.pagination.Paginator.interaction_check:1 @@ -124,20 +115,15 @@ msgid "" "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 +#: ../../ext/pages/index.rst 2aef4bef743e42c6b10dc7dc409dddee +#: 2b3e3b8a6018461984a424487aa9e6ab 44df48e0960e411391d8959fd9d11450 +#: 4cee4928e1df4606b6ef905abbd63533 550c48f6c2e1423ba8c77b021dbb3dcd +#: 5f9e2f91dd6f4ddf8aba9945c851a7d0 7fae07446dae40adbe93cfc309708f70 +#: 89185399683243b8a8161ef2321fb944 a97d7cfc0d8547fba1a07c473d6aa220 +#: aeb2988a559840d3ba83ac47b72253f7 b17d3a717a7c43bfbf6a28db9c9e8847 +#: be696f9851b549dc9e9ac50b6f55f198 d4e5702bc04a4bc4b7641557751fde48 +#: d5396ed79c0a49578511de018e0b2963 df303e968a55460b84813fa21867fc46 +#: e5bcc53a42f240c9b5ff34f27d6f0bc4 msgid "Return type" msgstr "" @@ -298,11 +284,10 @@ 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 +#: 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" @@ -331,8 +316,11 @@ msgid "" ":class:`PageGroup`." msgstr "" -#: 9427ff2e436a432290830b7a5ed07653 discord.ext.pages.pagination.Paginator:70 -#: of +#: 6a06163b053143819ff1b3f107885c50 9427ff2e436a432290830b7a5ed07653 +#: discord.ext.pages.PaginatorButton.id:6 +#: discord.ext.pages.PaginatorButton.row:8 discord.ext.pages.PaginatorMenu.id:6 +#: discord.ext.pages.PaginatorMenu.row:8 +#: discord.ext.pages.pagination.Paginator:70 of msgid "Optional[:class:`int`]" msgstr "" @@ -342,8 +330,11 @@ msgid "A zero-indexed value showing the current page number." msgstr "" #: 2ac3cef8cda94569a45f9c40a7419fcf cd1000c6b1654d0f856cdf9321d03a5c +#: discord.ext.pages.PaginatorButton.width:6 +#: discord.ext.pages.PaginatorMenu.width:6 #: discord.ext.pages.pagination.Paginator:76 -#: discord.ext.pages.pagination.Paginator:82 of +#: discord.ext.pages.pagination.Paginator:82 f24f43ef85fc4fa49db3873d9f486199 +#: of msgid ":class:`int`" msgstr "" @@ -425,11 +416,9 @@ msgstr "" msgid "Disables all buttons when the view times out." msgstr "" -#: 128c5298c9494f91a4b3f649fa6df996 1b99936247fa444d8f760ffecb3bfbeb -#: 3c63f3adb2364adead3012e035129ebc 68e2cc93f0e6490b8f2f6cee4790cba9 -#: 718868e38cac43a586cfbd4a6305d236 73506917c2ae4d10839ac863f15c0649 -#: 948ff3860b7449e189966372f0999657 a7be2bff8d9e4794b701800978b38389 -#: b6e8b71f2e914b7aa52f4bf5895f9498 c2fbf9bef8224850b4afa5ea4c5afbc2 +#: 128c5298c9494f91a4b3f649fa6df996 3c63f3adb2364adead3012e035129ebc +#: 68e2cc93f0e6490b8f2f6cee4790cba9 718868e38cac43a586cfbd4a6305d236 +#: a7be2bff8d9e4794b701800978b38389 c2fbf9bef8224850b4afa5ea4c5afbc2 #: discord.ext.pages.pagination.Paginator.cancel:10 #: discord.ext.pages.pagination.Paginator.disable:10 #: discord.ext.pages.pagination.Paginator.on_timeout:4 @@ -438,8 +427,8 @@ msgstr "" #: 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 +#: discord.ui.view.View.remove_item:8 discord.ui.view.View.stop:6 +#: e63b8fb4db3b4bee81d67b79af441412 of msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" msgstr "" @@ -508,9 +497,7 @@ msgstr "" #: ../../ext/pages/index.rst 071b3f2f83194ecb863f34a81f2b7318 #: 23d2d513e75249be834c3da0e3806faf 433ab35ccdc34f8a8721f26b0e699f02 -#: 5b58697a956a4cf4a58ce5a800e4deb1 60cad8cd26d448e497604cad7a23855a -#: 7194b0de3a6c48f09395740786c65dfe 9d3a83013ff043eda39a19a8533e2db2 -#: afe45ade9581404fbe8fb11422546746 b76f2a1bbef34d9e922ff8ccd944e554 +#: 60cad8cd26d448e497604cad7a23855a 9d3a83013ff043eda39a19a8533e2db2 msgid "Returns" msgstr "" @@ -721,8 +708,8 @@ msgstr "" msgid "The item to add to the view." msgstr "" -#: ../../ext/pages/index.rst 9f2e580e981742ac800ab0c0ffa636e3 -#: b67cd9be980a4fdf8e179a3825ce7070 db25be38ef7749eab275cfcf7ce4fb30 +#: ../../ext/pages/index.rst b67cd9be980a4fdf8e179a3825ce7070 +#: db25be38ef7749eab275cfcf7ce4fb30 msgid "Raises" msgstr "" @@ -732,7 +719,7 @@ msgstr "" #: discord.ui.view.View.add_item:8 e69d7b97a3c8409c8efd81ad1626f25d of msgid "" -"Maximum number of children has been exceeded (25) or the row the item" +"Maximum number of children has been exceeded (40) or the row the item" " is trying to be added to is full." msgstr "" @@ -740,8 +727,18 @@ msgstr "" 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." +#: 4ea1206a52154d8a98623bbc44bf5b10 discord.ui.view.View.copy_text:1 of +msgid "" +"Returns the text of all :class:`~discord.ui.TextDisplay` items in this " +"View. Equivalent to the `Copy Text` option on Discord clients." +msgstr "" + +#: 47016b19dd1741b1a063b2f5068dd3ec discord.ui.view.View.copy_text:5 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`str\\``" +msgstr "" + +#: discord.ui.view.View.disable_all_items:1 f55070f9c63b4f438d22e271d923e292 of +msgid "Disables all buttons and select menus in the view." msgstr "" #: 115ed036dbed4b93bf59511d61482bc4 discord.ui.view.View.disable_all_items:4 of @@ -789,14 +786,39 @@ msgstr "" msgid "Optional[:class:`discord.Message`]" msgstr "" -#: 5529aa1751fe48a1aac3071120fe5b99 discord.ui.view.View.enable_all_items:1 of -msgid "Enables all items in the view." +#: discord.ui.view.View.enable_all_items:1 f55070f9c63b4f438d22e271d923e292 of +msgid "Enables all buttons and select menus 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_dict:1 fb9fe3622ae9490eba53b40685382759 of +msgid "Converts a list of component dicts into a :class:`View`." +msgstr "" + +#: 5e13e4d3661642fd8e02726cc001660a discord.ui.view.View.from_dict:4 of +msgid "The list of components to convert into a view." +msgstr "" + +#: 1830d4b99a8e451d8fc931733f8bfd68 discord.ui.view.View.from_dict:7 +#: discord.ui.view.View.from_message:12 of +msgid "The timeout of the converted view." +msgstr "" + +#: 9bc9774d4bd74c418de1d9b36c3c5c8a discord.ui.view.View.from_dict:10 +#: 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_dict:12 +#: discord.ui.view.View.from_message:17 of +msgid ":class:`View`" +msgstr "" + #: discord.ui.view.View.from_message:1 fb9fe3622ae9490eba53b40685382759 of msgid "Converts a message's components into a :class:`View`." msgstr "" @@ -813,48 +835,46 @@ msgstr "" 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." +#: 0edf0b73952c4797b9000ba28a6a0d73 discord.ui.view.View.get_item:1 of +msgid "" +"Gets an item from the view. Roughly equal to `utils.get(view.children, " +"...)`. If an :class:`int` is provided, the item will be retrieved by " +"``id``, otherwise by ``custom_id``. This method will also search nested " +"items." 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." +#: 39c8c0f1510244288c5734268ff2ecfc discord.ui.view.View.get_item:6 of +msgid "The custom_id of the item to get" msgstr "" -#: 086f552dd0d342c290385bf3bdf985ab discord.ui.view.View.from_message:17 of -msgid ":class:`View`" +#: d3278dd56b5e4104b98070ea85764693 discord.ui.view.View.get_item:9 of +msgid "The item with the matching ``custom_id`` or ``id`` if it exists." 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)`." +#: 49f9aab462e146199bb0ad2eb8987e74 discord.ui.view.View.get_item:10 of +msgid "Optional[:class:`Item`]" msgstr "" -#: 39c8c0f1510244288c5734268ff2ecfc discord.ui.view.View.get_item:4 of -msgid "The custom_id of the item to get" +#: 8fcb089aef584d57b8d0165e8a22048e discord.ui.view.View.is_components_v2:1 of +msgid "Whether the view contains V2 components." msgstr "" -#: d3278dd56b5e4104b98070ea85764693 discord.ui.view.View.get_item:7 of -msgid "The item with the matching ``custom_id`` if it exists." +#: 7f50de30b8c64c9fa3ff21e4563bd2d9 discord.ui.view.View.is_components_v2:3 of +msgid "" +"A view containing V2 components cannot be sent alongside message content " +"or embeds." msgstr "" -#: 49f9aab462e146199bb0ad2eb8987e74 discord.ui.view.View.get_item:8 of -msgid "Optional[:class:`Item`]" +#: 47016b19dd1741b1a063b2f5068dd3ec discord.ui.view.View.is_components_v2:6 +#: discord.ui.view.View.is_dispatching:4 discord.ui.view.View.is_finished:4 +#: discord.ui.view.View.is_persistent:7 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" 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 "" @@ -898,12 +918,15 @@ msgstr "" 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." +#: 9a689abf00984f59a28e68742549c79f discord.ui.view.View.remove_item:1 of +msgid "" +"Removes an item from the view. If an :class:`int` or :class:`str` is " +"passed, the item will be removed by Item ``id`` or ``custom_id`` " +"respectively." msgstr "" -#: 13af2b65c7a6448b89c506d4b733b44a discord.ui.view.View.remove_item:4 of -msgid "The item to remove from the view." +#: 7a8937a2dbb54965a590f68e98627806 discord.ui.view.View.remove_item:5 of +msgid "The item, item ``id``, or item ``custom_id`` to remove from the view." msgstr "" #: cd3fd1e5c76042c8896020ad68e3d6ed discord.ui.view.View.stop:1 of @@ -1037,8 +1060,7 @@ msgstr "" #: 65b16c206cc54c01a115ae6dd829d2c1 #: discord.ext.pages.pagination.PaginatorButton:26 -#: discord.ext.pages.pagination.PaginatorMenu:12 -#: f24f43ef85fc4fa49db3873d9f486199 of +#: discord.ext.pages.pagination.PaginatorMenu:12 of msgid ":class:`Paginator`" msgstr "" @@ -1082,6 +1104,47 @@ msgstr "" msgid "If this button is for a URL, it does not have a custom ID." msgstr "" +#: dda9b3885e0a4250979ffbca77e592f9 discord.ext.pages.PaginatorButton.id:1 +#: discord.ext.pages.PaginatorMenu.id:1 of +msgid "Gets this item's ID." +msgstr "" + +#: 3a44bc197ba140eab665419a5cc8a9bf 3f5e6fc33b7146e7a1fbb8721fec1f32 +#: discord.ext.pages.PaginatorButton.id:3 discord.ext.pages.PaginatorMenu.id:3 +#: of +msgid "" +"This can be set by the user when constructing an Item. If not, Discord " +"will automatically provide one when the View is sent." +msgstr "" + +#: 7a8937a2dbb54965a590f68e98627806 discord.ext.pages.PaginatorButton.id:5 +#: discord.ext.pages.PaginatorMenu.id:5 of +msgid "The ID of this item, or ``None`` if the user didn't set one." +msgstr "" + +#: dd9f54893efb4676bdf90fd27986561d discord.ext.pages.PaginatorButton.row:1 +#: discord.ext.pages.PaginatorMenu.row:1 of +msgid "Gets or sets the row position of this item within its parent view." +msgstr "" + +#: ddd63fd900d9470383dfa2a87694928d discord.ext.pages.PaginatorButton.row:3 +#: discord.ext.pages.PaginatorMenu.row:3 of +msgid "" +"The row position determines the vertical placement of the item in the UI." +" The value must be an integer between 0 and 39 (inclusive), or ``None`` " +"to indicate that no specific row is set." +msgstr "" + +#: 23221f1b8cac42baa39792993a1eb4f3 discord.ext.pages.PaginatorButton.row:7 +#: discord.ext.pages.PaginatorMenu.row:7 of +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "" + +#: ddbceb2510a84338bc7582315e3cd972 discord.ext.pages.PaginatorButton.row:10 +#: discord.ext.pages.PaginatorMenu.row:10 of +msgid "If the row value is not ``None`` and is outside the range [0, 39]." +msgstr "" + #: c87c8240e5dd4ff69d19866fc6522c5f discord.ext.pages.PaginatorButton.sku_id:1 #: of msgid "The ID of the SKU this button refers to." @@ -1091,10 +1154,45 @@ msgstr "" msgid "The URL this button sends you to." msgstr "" -#: 779b1ffc73854c80b1b87b3fb7b03228 b3dc3a0e33de4930b09c6128690cc85b -#: discord.ext.pages.PaginatorButton.view:1 +#: 624fd0e7e2b94fa4afe0a2a37d896c6c discord.ext.pages.PaginatorButton.view:1 #: discord.ext.pages.PaginatorMenu.view:1 of -msgid "The underlying view for this item." +msgid "Gets the parent view associated with this item." +msgstr "" + +#: de1896f184794a4aad8b50b0a376c468 discord.ext.pages.PaginatorButton.view:3 +#: discord.ext.pages.PaginatorMenu.view:3 of +msgid "" +"The view refers to the container that holds this item. This is typically " +"set automatically when the item is added to a view." +msgstr "" + +#: 7a8937a2dbb54965a590f68e98627806 discord.ext.pages.PaginatorButton.view:6 +#: discord.ext.pages.PaginatorMenu.view:6 of +msgid "" +"The parent view of this item, or ``None`` if the item is not attached to " +"any view." +msgstr "" + +#: discord.ext.pages.PaginatorButton.view:7 +#: discord.ext.pages.PaginatorMenu.view:7 ec07a9dea875411c92d7312aeba8aec1 of +msgid "Optional[:class:`View`]" +msgstr "" + +#: dea0f3e5ef3c4c6ea0067ef707954f13 discord.ext.pages.PaginatorButton.width:1 +#: discord.ext.pages.PaginatorMenu.width:1 of +msgid "Gets the width of the item in the UI layout." +msgstr "" + +#: discord.ext.pages.PaginatorButton.width:3 +#: discord.ext.pages.PaginatorMenu.width:3 f37e3f782a9d4a16bb3e8d35ea49d26d of +msgid "" +"The width determines how much horizontal space this item occupies within " +"its row." +msgstr "" + +#: c87c8240e5dd4ff69d19866fc6522c5f discord.ext.pages.PaginatorButton.width:5 +#: discord.ext.pages.PaginatorMenu.width:5 of +msgid "The width of the item. Defaults to 1." msgstr "" #: ../../ext/pages/index.rst:321 bbee89d0c8f54cddb8d204dce6e729bd @@ -1152,19 +1250,23 @@ msgstr "" 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`." +":class:`.PartialEmoji`, :class:`GuildEmoji`, or :class:`AppEmoji`." 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 +#: 8aa241191edb441496f0c1bd02fe0da0 discord.ui.select.Select.add_option:26 #: discord.ui.select.Select.append_option:7 of msgid "The number of options exceeds 25." msgstr "" +#: 47016b19dd1741b1a063b2f5068dd3ec discord.ui.select.Select.add_option:28 +#: discord.ui.select.Select.append_option:9 of +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Self\\``" +msgstr "" + #: bafa80d0afd248d4b54b80365d46b82a discord.ui.select.Select.append_option:1 of msgid "Appends an option to the select menu." msgstr "" @@ -1285,3 +1387,54 @@ msgstr "" msgid "A custom view whose items are appended below the pagination buttons." msgstr "" +#~ msgid "The underlying view for this item." +#~ msgstr "" + +#~ 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 "" + +#~ msgid "" +#~ "Maximum number of children has been " +#~ "exceeded (25) or the row the " +#~ "item is trying to be added to " +#~ "is full." +#~ msgstr "" + +#~ msgid "Disables all items in the view." +#~ msgstr "" + +#~ msgid "Enables all items in the view." +#~ msgstr "" + +#~ msgid "" +#~ "Get an item from the view with " +#~ "the given custom ID. Alias for " +#~ "`utils.get(view.children, custom_id=custom_id)`." +#~ msgstr "" + +#~ msgid "The item with the matching ``custom_id`` if it exists." +#~ msgstr "" + +#~ msgid "Removes an item from the view." +#~ msgstr "" + +#~ msgid "The item to remove from the view." +#~ msgstr "" + +#~ msgid "" +#~ "The row position determines the vertical" +#~ " placement of the item in the " +#~ "UI. The value must be an integer" +#~ " between 0 and 4 (inclusive), or " +#~ "``None`` to indicate that no specific" +#~ " row is set." +#~ msgstr "" + +#~ msgid "If the row value is not ``None`` and is outside the range [0, 4]." +#~ msgstr "" + diff --git a/docs/locales/en/LC_MESSAGES/faq.po b/docs/locales/en/LC_MESSAGES/faq.po index 1d7d3299e6..c17be3575d 100644 --- a/docs/locales/en/LC_MESSAGES/faq.po +++ b/docs/locales/en/LC_MESSAGES/faq.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"POT-Creation-Date: 2025-02-24 14:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../faq.rst:7 42c694dc6243417398dfda77b5d62118 msgid "Frequently Asked Questions" @@ -274,6 +274,7 @@ msgid "``'\\U0001F44D'``" msgstr "" #: ../../faq.rst:191 3b675c057f77434183fe3ba30d93d2bf +#, python-brace-format msgid "``'\\N{THUMBS UP SIGN}'``" msgstr "" @@ -293,10 +294,11 @@ 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 " +"For custom emoji, you should pass an instance of :class:`GuildEmoji` or " +":class:`AppEmoji`. 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 "" @@ -550,3 +552,15 @@ msgstr "" msgid "This could then be used as ``?git push origin master``." msgstr "" +#~ 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 "" + diff --git a/docs/locales/en/LC_MESSAGES/installing.po b/docs/locales/en/LC_MESSAGES/installing.po index 8c57d88b52..484d76c916 100644 --- a/docs/locales/en/LC_MESSAGES/installing.po +++ b/docs/locales/en/LC_MESSAGES/installing.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Pycord 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-08-10 03:42+0200\n" +"POT-Creation-Date: 2025-02-24 14:40+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -17,7 +17,7 @@ msgstr "" "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" +"Generated-By: Babel 2.17.0\n" #: ../../installing.rst:8 b987cf7921b843929fe5cce90461619d msgid "Installing Pycord" @@ -35,8 +35,8 @@ 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 " +"Pycord works with Python 3.9 or higher. Support for earlier versions of " +"Python is not provided. Python 2.7 or lower is not supported. Python 3.8 " "or lower is not supported." msgstr "" @@ -162,3 +162,11 @@ msgstr "" msgid "A quick example to showcase how events work:" 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 "" + diff --git a/docs/locales/es/LC_MESSAGES/api/abcs.po b/docs/locales/es/LC_MESSAGES/api/abcs.po index 28cef481f2..4b20672a2d 100644 --- a/docs/locales/es/LC_MESSAGES/api/abcs.po +++ b/docs/locales/es/LC_MESSAGES/api/abcs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/api/application_commands.po b/docs/locales/es/LC_MESSAGES/api/application_commands.po index ee950c0b7a..f1e2c1e350 100644 --- a/docs/locales/es/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/es/LC_MESSAGES/api/application_commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -311,6 +311,9 @@ msgstr "The location where this command can be used. Cannot be set if this is a msgid "Set[:class:`InteractionContextType`]" msgstr "Set[:class:`InteractionContextType`]" +msgid "The type of the None singleton." +msgstr "The type of the None singleton." + msgid "Creates a copy of this command." msgstr "Creates a copy of this command." @@ -362,6 +365,9 @@ msgstr "Yields" msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Creates a copy of this command group." msgstr "Creates a copy of this command group." @@ -848,6 +854,24 @@ 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 ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Represents context for a slash command's option autocomplete." msgstr "Represents context for a slash command's option autocomplete." diff --git a/docs/locales/es/LC_MESSAGES/api/application_info.po b/docs/locales/es/LC_MESSAGES/api/application_info.po index 31922fca86..aa54ca1f2a 100644 --- a/docs/locales/es/LC_MESSAGES/api/application_info.po +++ b/docs/locales/es/LC_MESSAGES/api/application_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -62,9 +62,6 @@ 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 `_." @@ -89,6 +86,36 @@ 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 "The approximate count of guilds to which the app has been added, if any." +msgstr "The approximate count of guilds to which the app has been added, if any." + +msgid "The approximate count of users who have installed the application, if any." +msgstr "The approximate count of users who have installed the application, if any." + +msgid "The list of redirect URIs for the application, if set." +msgstr "The list of redirect URIs for the application, if set." + +msgid "The interactions endpoint URL for the application, if set." +msgstr "The interactions endpoint URL for the application, if set." + +msgid "The role connection verification URL for the application, if set." +msgstr "The role connection verification URL for the application, if set." + +msgid "The settings for the application's default in-app authorization link, if set." +msgstr "The settings for the application's default in-app authorization link, if set." + +msgid "Optional[List[:class:`AppInstallParams`]]" +msgstr "Optional[List[:class:`AppInstallParams`]]" + +msgid "The list of tags describing the content and functionality of the app, if set." +msgstr "The list of tags describing the content and functionality of the app, if set." + +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." + +msgid "The default custom authorization URL for the application, if set." +msgstr "The default custom authorization URL for the application, if set." + msgid "Parameters" msgstr "Parameters" @@ -104,9 +131,30 @@ 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 "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 "It currently returns an empty string." +msgstr "It currently returns an empty string." + 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 the settings for the custom authorization URL of an application." +msgstr "Represents the settings for the custom authorization URL of an application." + +msgid "The list of OAuth2 scopes for adding the application to a guild." +msgstr "The list of OAuth2 scopes for adding the application to a guild." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The permissions to request for the bot role in the guild." +msgstr "The permissions to request for the bot role in the guild." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + msgid "Represents an application team for a bot provided by Discord." msgstr "Represents an application team for a bot provided by Discord." diff --git a/docs/locales/es/LC_MESSAGES/api/async_iter.po b/docs/locales/es/LC_MESSAGES/api/async_iter.po index b322381f39..17ca22b162 100644 --- a/docs/locales/es/LC_MESSAGES/api/async_iter.po +++ b/docs/locales/es/LC_MESSAGES/api/async_iter.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/api/audit_logs.po b/docs/locales/es/LC_MESSAGES/api/audit_logs.po index 05c56e27c2..da02dbd35f 100644 --- a/docs/locales/es/LC_MESSAGES/api/audit_logs.po +++ b/docs/locales/es/LC_MESSAGES/api/audit_logs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/api/clients.po b/docs/locales/es/LC_MESSAGES/api/clients.po index 9462b13bf7..2d94a5730e 100644 --- a/docs/locales/es/LC_MESSAGES/api/clients.po +++ b/docs/locales/es/LC_MESSAGES/api/clients.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -257,6 +257,12 @@ msgstr "The coroutine to register as the post-invoke hook." msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -893,8 +968,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -986,6 +1061,9 @@ msgstr "A shortcut decorator that initializes the provided subclass of :class:`. 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 :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1028,8 +1106,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1406,6 +1484,9 @@ msgstr "An iterator that recursively walks through all application commands and msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." @@ -1499,6 +1580,15 @@ msgstr "Whether to enable events that are useful only for debugging gateway rela 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 "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" + +msgid "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." + +msgid "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." +msgstr "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." + 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``." @@ -1526,6 +1616,9 @@ msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used 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 "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 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." diff --git a/docs/locales/es/LC_MESSAGES/api/cogs.po b/docs/locales/es/LC_MESSAGES/api/cogs.po index 9449613e48..433cfc9750 100644 --- a/docs/locales/es/LC_MESSAGES/api/cogs.po +++ b/docs/locales/es/LC_MESSAGES/api/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -56,6 +56,9 @@ msgstr "Yields" msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." diff --git a/docs/locales/es/LC_MESSAGES/api/data_classes.po b/docs/locales/es/LC_MESSAGES/api/data_classes.po index bc1c9d6327..c5e9f3fb51 100644 --- a/docs/locales/es/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/es/LC_MESSAGES/api/data_classes.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -296,8 +296,8 @@ 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:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`GuildSticker`" msgstr ":class:`GuildSticker`" @@ -803,8 +803,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." msgid "Whether the websocket is currently rate limited." msgstr "Whether the websocket is currently rate limited." @@ -926,6 +926,9 @@ msgstr ":meth:`VoiceChannel.get_partial_message`" msgid ":meth:`StageChannel.get_partial_message`" msgstr ":meth:`StageChannel.get_partial_message`" +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.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." @@ -941,8 +944,8 @@ 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 "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" msgid "The message ID." msgstr "The message ID." @@ -1031,8 +1034,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1682,8 +1685,8 @@ 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 "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" msgid "Represents a poll answer object." msgstr "Represents a poll answer object." @@ -2039,6 +2042,9 @@ msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum 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 "Returns ``True`` if the embedded media download options are hidden for the media channel posts." +msgstr "Returns ``True`` if the embedded media download options are hidden for the media channel posts." + msgid "Wraps up the Discord SKU flags." msgstr "Wraps up the Discord SKU flags." @@ -2594,6 +2600,9 @@ msgstr ":attr:`view_audit_log`" msgid ":attr:`view_guild_insights`" msgstr ":attr:`view_guild_insights`" +msgid ":attr:`view_creator_monetization_analytics`" +msgstr ":attr:`view_creator_monetization_analytics`" + msgid ":attr:`manage_guild`" msgstr ":attr:`manage_guild`" @@ -2624,6 +2633,9 @@ msgstr "A factory method that creates a :class:`Permissions` with all \"General\ 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 "Added :attr:`view_creator_monetization_analytics` permission." +msgstr "Added :attr:`view_creator_monetization_analytics` permission." + 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\\)`" @@ -2810,6 +2822,15 @@ msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in 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 user can view creator monetization (role subscription) analytics." +msgstr "Returns ``True`` if a user can view creator monetization (role subscription) analytics." + +msgid "Returns ``True`` if a user can use the soundboard in a voice channel." +msgstr "Returns ``True`` if a user can use the soundboard in a voice channel." + +msgid "Returns ``True`` if a user can use external soundboard sounds in a voice channel." +msgstr "Returns ``True`` if a user can use external soundboard sounds in a voice channel." + msgid "Returns ``True`` if a member can send voice messages." msgstr "Returns ``True`` if a member can send voice messages." diff --git a/docs/locales/es/LC_MESSAGES/api/enums.po b/docs/locales/es/LC_MESSAGES/api/enums.po index b12fa4f3a2..bc214e5db0 100644 --- a/docs/locales/es/LC_MESSAGES/api/enums.po +++ b/docs/locales/es/LC_MESSAGES/api/enums.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -974,8 +974,8 @@ 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 "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` 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." @@ -1769,3 +1769,15 @@ 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." +msgid "Represents a subscription's status." +msgstr "Represents a subscription's status." + +msgid "The subscription is active and is scheduled to renew." +msgstr "The subscription is active and is scheduled to renew." + +msgid "The subscription is active but will not renew." +msgstr "The subscription is active but will not renew." + +msgid "The subscription is inactive and the subscription owner is not being charged." +msgstr "The subscription is inactive and the subscription owner is not being charged." + diff --git a/docs/locales/es/LC_MESSAGES/api/events.po b/docs/locales/es/LC_MESSAGES/api/events.po index 3de9f161c1..97baa1dd7c 100644 --- a/docs/locales/es/LC_MESSAGES/api/events.po +++ b/docs/locales/es/LC_MESSAGES/api/events.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -293,33 +293,6 @@ msgstr "This is only for the messages sent from the client WebSocket. The voice 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" @@ -392,8 +365,8 @@ 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 "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." @@ -791,6 +764,60 @@ 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 "Monetization" +msgstr "Monetization" + +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 cancelled." +msgstr "Called when a user's subscription to an Entitlement is cancelled." + +msgid "Before October 1, 2024, this event was called when a user's subscription was renewed." +msgstr "Before October 1, 2024, this event was called when a user's subscription was renewed." + +msgid "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." +msgstr "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + +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 "Called when a subscription is created for the application." +msgstr "Called when a subscription is created for the application." + +msgid "The subscription that was created." +msgstr "The subscription that was created." + +msgid "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." +msgstr "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." + +msgid "The subscription that was updated." +msgstr "The subscription that was updated." + +msgid "Called when a subscription has been deleted." +msgstr "Called when a subscription has been deleted." + +msgid "The subscription that was deleted." +msgstr "The subscription that was deleted." + msgid "Scheduled Events" msgstr "Scheduled Events" diff --git a/docs/locales/es/LC_MESSAGES/api/exceptions.po b/docs/locales/es/LC_MESSAGES/api/exceptions.po index 1840bc94e8..9d41e4317b 100644 --- a/docs/locales/es/LC_MESSAGES/api/exceptions.po +++ b/docs/locales/es/LC_MESSAGES/api/exceptions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/api/index.po b/docs/locales/es/LC_MESSAGES/api/index.po index 80efb62166..bca668d351 100644 --- a/docs/locales/es/LC_MESSAGES/api/index.po +++ b/docs/locales/es/LC_MESSAGES/api/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/api/models.po b/docs/locales/es/LC_MESSAGES/api/models.po index 41cbfb8bf5..209cdfe35f 100644 --- a/docs/locales/es/LC_MESSAGES/api/models.po +++ b/docs/locales/es/LC_MESSAGES/api/models.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -1202,6 +1202,9 @@ msgstr "If provided, the number of seconds to wait in the background before dele 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 was not found." +msgstr "The message was not found." + msgid "Editing the message failed." msgstr "Editing the message failed." @@ -1268,8 +1271,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1445,8 +1448,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :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." @@ -1568,9 +1571,45 @@ msgstr ":class:`SKUFlags`" msgid "Returns the URL for the SKU." msgstr "Returns the URL for the SKU." +msgid "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." + +msgid "The user for which to retrieve subscriptions." +msgstr "The user for which to retrieve subscriptions." + +msgid "Retrieves subscriptions before this date or object. If a datetime 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 subscriptions before this date or object. If a datetime 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 subscriptions after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve subscriptions after this date or object. If a datetime 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 subscriptions to retrieve. If ``None``, retrieves all subscriptions." +msgstr "The number of subscriptions to retrieve. If ``None``, retrieves all subscriptions." + +msgid ":class:`Subscription` -- A subscription that the user has for this SKU." +msgstr ":class:`Subscription` -- A subscription that the user has for this SKU." + +msgid "Getting the subscriptions failed." +msgstr "Getting the subscriptions failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters except for ``user`` are optional." +msgstr "All parameters except for ``user`` are optional." + msgid "Represents a Discord entitlement." msgstr "Represents a Discord entitlement." +msgid "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." +msgstr "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + msgid "The entitlement's ID." msgstr "The entitlement's ID." @@ -1607,17 +1646,14 @@ 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 "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.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 "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." +msgstr "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." msgid "Consuming the entitlement failed." msgstr "Consuming the entitlement failed." @@ -1631,6 +1667,57 @@ msgstr "A test entitlement is an entitlement that was created using :meth:`Guild msgid "Deleting the entitlement failed." msgstr "Deleting the entitlement failed." +msgid "Represents a user making recurring payments for one or more SKUs." +msgstr "Represents a user making recurring payments for one or more SKUs." + +msgid "Successful payments grant the user access to entitlements associated with the SKU." +msgstr "Successful payments grant the user access to entitlements associated with the SKU." + +msgid "The subscription's ID." +msgstr "The subscription's ID." + +msgid "The ID of the user that owns this subscription." +msgstr "The ID of the user that owns this subscription." + +msgid "The IDs of the SKUs this subscription is for." +msgstr "The IDs of the SKUs this subscription is for." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the entitlements this subscription is for." +msgstr "The IDs of the entitlements this subscription is for." + +msgid "The IDs of the SKUs that the buyer will be subscribed to at renewal." +msgstr "The IDs of the SKUs that the buyer will be subscribed to at renewal." + +msgid "The start of the current subscription period." +msgstr "The start of the current subscription period." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The end of the current subscription period." +msgstr "The end of the current subscription period." + +msgid "The status of the subscription." +msgstr "The status of the subscription." + +msgid ":class:`SubscriptionStatus`" +msgstr ":class:`SubscriptionStatus`" + +msgid "When the subscription was canceled." +msgstr "When the subscription was canceled." + +msgid ":class:`datetime.datetime` | ``None``" +msgstr ":class:`datetime.datetime` | ``None``" + +msgid "The user that owns this subscription." +msgstr "The user that owns this subscription." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + msgid "Guild" msgstr "Guild" @@ -1658,8 +1745,8 @@ 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 "Tuple[:class:`GuildEmoji`, ...]" +msgstr "Tuple[:class:`GuildEmoji`, ...]" msgid "All stickers that the guild owns." msgstr "All stickers that the guild owns." @@ -1781,9 +1868,6 @@ 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." @@ -2141,11 +2225,11 @@ 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:`GuildEmoji`, 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:`GuildEmoji`, 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 "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." msgid ":class:`ForumChannel`" msgstr ":class:`ForumChannel`" @@ -2657,8 +2741,8 @@ 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 "Retrieves all custom :class:`GuildEmoji`\\s from the guild." +msgstr "Retrieves all custom :class:`GuildEmoji`\\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." @@ -2669,11 +2753,11 @@ msgstr "An error occurred fetching the emojis." msgid "The retrieved emojis." msgstr "The retrieved emojis." -msgid "List[:class:`Emoji`]" -msgstr "List[:class:`Emoji`]" +msgid "List[:class:`GuildEmoji`]" +msgstr "List[:class:`GuildEmoji`]" -msgid "Retrieves a custom :class:`Emoji` from the guild." -msgstr "Retrieves a custom :class:`Emoji` from the guild." +msgid "Retrieves a custom :class:`GuildEmoji` from the guild." +msgstr "Retrieves a custom :class:`GuildEmoji` 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." @@ -2684,8 +2768,8 @@ msgstr "The emoji's ID." msgid "The retrieved emoji." msgstr "The retrieved emoji." -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid "The emoji requested could not be found." msgstr "The emoji requested could not be found." @@ -2693,8 +2777,8 @@ 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 "Creates a custom :class:`GuildEmoji` for the guild." +msgstr "Creates a custom :class:`GuildEmoji` 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." @@ -2723,8 +2807,8 @@ 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 "Deletes the custom :class:`GuildEmoji` from the guild." +msgstr "Deletes the custom :class:`GuildEmoji` 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." @@ -3446,6 +3530,15 @@ msgstr "For regular members this is just their avatar, but if they have a guild 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 member's display banner." +msgstr "Returns the member's display banner." + +msgid "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." +msgstr "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild banner the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild banner 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." @@ -3737,9 +3830,6 @@ 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." @@ -3890,9 +3980,6 @@ 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." @@ -4199,9 +4286,6 @@ msgstr "How many times the invite can be used. A value of ``0`` indicates that i 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." @@ -4316,8 +4400,8 @@ msgstr "The position of the role. This number is usually positive. The bottom ro 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 is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." +msgstr "Indicates if the role is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." msgid "Indicates if the role can be mentioned by users." msgstr "Indicates if the role can be mentioned by users." @@ -4346,12 +4430,21 @@ msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typeh 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 guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :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 "Whether the role is available for purchase." +msgstr "Whether the role is available for purchase." + +msgid "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Returns the role's permissions." msgstr "Returns the role's permissions." @@ -4439,20 +4532,26 @@ msgstr "A role tag is a piece of extra information attached to a managed role th 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 "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." +msgstr "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." + 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 "The subscription SKU and listing ID of the role." +msgstr "The subscription SKU and listing ID of 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 "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." msgid "Scheduled Event" msgstr "Scheduled Event" @@ -4694,6 +4793,9 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" + msgid "Onboarding" msgstr "Onboarding" @@ -4811,8 +4913,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" msgid "The option's title." msgstr "The option's title." @@ -5189,8 +5291,8 @@ msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the 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 "This is only available for threads in forum or media channels." +msgstr "This is only available for threads in forum or media channels." msgid "List[:class:`ForumTag`]" msgstr "List[:class:`ForumTag`]" @@ -5240,8 +5342,8 @@ 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 pinned to the top of its parent forum or media channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum or media 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." @@ -5381,8 +5483,8 @@ msgstr "The new duration in minutes before a thread is automatically archived fo 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 "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." 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" @@ -6131,8 +6233,8 @@ 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 "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" msgid "The ID of the channel the interaction was sent from." msgstr "The ID of the channel the interaction was sent from." @@ -6197,8 +6299,8 @@ 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 cached channel from which the interaction was sent. DM channels are not resolved. These are :class:`PartialMessageable` instead." +msgstr "The cached channel from which the interaction was sent. DM channels are not resolved. 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." @@ -6218,6 +6320,30 @@ msgstr "A response can only be done once. If secondary messages need to be sent, msgid "Returns the followup webhook for followup interactions." msgstr "Returns the followup webhook for followup interactions." +msgid ":class:`bool`: Checks if the interaction is guild authorised." +msgstr ":class:`bool`: Checks if the interaction is guild authorised." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorised." +msgstr ":class:`bool`: Checks if the interaction is user authorised." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is guild authorized." +msgstr ":class:`bool`: Checks if the interaction is guild authorized." + +msgid "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorized." +msgstr ":class:`bool`: Checks if the interaction is user authorized." + +msgid "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Fetches the original interaction response message associated with the interaction." msgstr "Fetches the original interaction response message associated with the interaction." @@ -6629,8 +6755,8 @@ msgstr "Whether the select is disabled or not." msgid "Emoji" msgstr "Emoji" -msgid "Represents a custom emoji." -msgstr "Represents a custom emoji." +msgid "Represents a custom emoji in a guild." +msgstr "Represents a custom emoji in a guild." 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``." @@ -6671,12 +6797,6 @@ 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." @@ -6716,6 +6836,48 @@ msgstr "An error occurred editing the emoji." msgid "The newly updated emoji." msgstr "The newly updated emoji." +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 "Represents a custom emoji from an application." +msgstr "Represents a custom emoji from an application." + +msgid "The application ID the emoji belongs to, if available." +msgstr "The application ID the emoji belongs to, if available." + +msgid "The user that created the emoji." +msgstr "The user that created the emoji." + +msgid "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." +msgstr "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." + +msgid "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." +msgstr "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." + +msgid "Whether the bot can use this emoji." +msgstr "Whether the bot can use this emoji." + +msgid "Deletes the application emoji." +msgstr "Deletes the application emoji." + +msgid "You must own the emoji to do this." +msgstr "You must own the emoji to do this." + +msgid "You are not allowed to delete the emoji." +msgstr "You are not allowed to delete the emoji." + +msgid "Edits the application emoji." +msgstr "Edits the application emoji." + +msgid "You are not allowed to edit the emoji." +msgstr "You are not allowed to edit the emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + msgid "Represents a \"partial\" emoji." msgstr "Represents a \"partial\" emoji." @@ -6953,14 +7115,14 @@ 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 "Optional[:class:`str` | :class:`discord.GuildEmoji`]" +msgstr "Optional[:class:`str` | :class:`discord.GuildEmoji`]" 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 "Whether a tag is required to be specified when creating a thread in this forum or media channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum or media channel." msgid "Tags are specified in :attr:`applied_tags`." msgstr "Tags are specified in :attr:`applied_tags`." @@ -6977,8 +7139,8 @@ msgstr "The default sort order type to use to order posts in this channel. .. v 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 default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, 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:`GuildEmoji`, 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" @@ -7010,6 +7172,24 @@ 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 media channel. Subclass of :class:`ForumChannel`." +msgstr "Represents a Discord media channel. Subclass of :class:`ForumChannel`." + +msgid "Whether media download options are hidden in this media channel." +msgstr "Whether media download options are hidden in this media channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." + +msgid "Whether media download options should be hidden in this media channel." +msgstr "Whether media download options should be hidden in this media channel." + +msgid "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.MediaChannel`]" +msgstr "Optional[:class:`.MediaChannel`]" + msgid "Represents a Discord guild voice channel." msgstr "Represents a Discord guild voice channel." diff --git a/docs/locales/es/LC_MESSAGES/api/sinks.po b/docs/locales/es/LC_MESSAGES/api/sinks.po index c041d54623..fe7d7f63fa 100644 --- a/docs/locales/es/LC_MESSAGES/api/sinks.po +++ b/docs/locales/es/LC_MESSAGES/api/sinks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/api/ui_kit.po b/docs/locales/es/LC_MESSAGES/api/ui_kit.po index 0e374cd9d7..ed8d39153f 100644 --- a/docs/locales/es/LC_MESSAGES/api/ui_kit.po +++ b/docs/locales/es/LC_MESSAGES/api/ui_kit.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -44,8 +44,8 @@ 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 emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." 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)." @@ -122,8 +122,8 @@ 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 in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. 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." @@ -317,8 +317,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" msgid "The callback associated with this UI item." msgstr "The callback associated with this UI item." @@ -419,8 +455,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." @@ -449,6 +485,9 @@ 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 "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 "The title of the modal dialog." msgstr "The title of the modal dialog." diff --git a/docs/locales/es/LC_MESSAGES/api/utils.po b/docs/locales/es/LC_MESSAGES/api/utils.po index c59ea4f08e..b93009f4b4 100644 --- a/docs/locales/es/LC_MESSAGES/api/utils.po +++ b/docs/locales/es/LC_MESSAGES/api/utils.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -407,18 +407,24 @@ msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` 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 "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" + +msgid "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." + 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 "With filter parameter:" +msgstr "With filter parameter:" + 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." @@ -446,6 +452,9 @@ 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 "Example" +msgstr "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." diff --git a/docs/locales/es/LC_MESSAGES/api/version_info.po b/docs/locales/es/LC_MESSAGES/api/version_info.po index a57036beac..e0f9d9bc6d 100644 --- a/docs/locales/es/LC_MESSAGES/api/version_info.po +++ b/docs/locales/es/LC_MESSAGES/api/version_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/api/voice.po b/docs/locales/es/LC_MESSAGES/api/voice.po index ce04e5fda5..8441b7e5e9 100644 --- a/docs/locales/es/LC_MESSAGES/api/voice.po +++ b/docs/locales/es/LC_MESSAGES/api/voice.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -215,6 +215,12 @@ msgstr "You are not connected." msgid "Encoding the data failed." msgstr "Encoding the data failed." +msgid "Returns the elapsed time of the playing audio." +msgstr "Returns the elapsed time of the playing audio." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" + msgid "A class that represents the Discord voice protocol." msgstr "A class that represents the Discord voice protocol." @@ -380,11 +386,11 @@ msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` i 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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 "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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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." diff --git a/docs/locales/es/LC_MESSAGES/api/webhooks.po b/docs/locales/es/LC_MESSAGES/api/webhooks.po index c6f477ed90..de99e2a6b0 100644 --- a/docs/locales/es/LC_MESSAGES/api/webhooks.po +++ b/docs/locales/es/LC_MESSAGES/api/webhooks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/changelog.po b/docs/locales/es/LC_MESSAGES/changelog.po index 29a1ffefe4..02e1e7e5bc 100644 --- a/docs/locales/es/LC_MESSAGES/changelog.po +++ b/docs/locales/es/LC_MESSAGES/changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -26,8 +26,122 @@ 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 "⚠️ **This version removes support for Python 3.8.** ⚠️" +msgstr "⚠️ **This version removes support for Python 3.8.** ⚠️" + +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 "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" +msgstr "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" + +msgid "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" +msgstr "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" + +msgid "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" +msgstr "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" + +msgid "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" +msgstr "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" + +msgid "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" +msgstr "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" + +msgid "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" +msgstr "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" + +msgid "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" +msgstr "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" + +msgid "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" +msgstr "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" + +msgid "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" +msgstr "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" + +msgid "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" +msgstr "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" +msgstr "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" + +msgid "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" +msgstr "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" + +msgid "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" +msgstr "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" + +msgid "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" +msgstr "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" + +msgid "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" +msgstr "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" + +msgid "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" +msgstr "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" + +msgid "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" +msgstr "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" + +msgid "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" +msgstr "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" + +msgid "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" +msgstr "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" + +msgid "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" +msgstr "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" + +msgid "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" +msgstr "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" + +msgid "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" +msgstr "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" + +msgid "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" +msgstr "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" + +msgid "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" +msgstr "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" + +msgid "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." +msgstr "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." + +msgid "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" +msgstr "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" + +msgid "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" +msgstr "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" msgid "Changed" msgstr "Changed" @@ -35,14 +149,65 @@ 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 "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" -msgid "Added" -msgstr "Added" +msgid "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" -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 "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" +msgstr "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" + +msgid "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" +msgstr "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" + +msgid "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "[2.6.1] - 2024-09-15" +msgstr "[2.6.1] - 2024-09-15" + +msgid "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" +msgstr "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" + +msgid "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" +msgstr "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" + +msgid "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" +msgstr "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" + +msgid "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" +msgstr "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" + +msgid "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" +msgstr "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" msgid "[2.6.0] - 2024-07-09" msgstr "[2.6.0] - 2024-07-09" @@ -92,9 +257,6 @@ msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord 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))" @@ -119,8 +281,8 @@ msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#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 option type hints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option type hints 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))" @@ -152,8 +314,8 @@ msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.co 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 "HTTP requests that fail with a 503 status are now retried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now retried. ([#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))" @@ -401,8 +563,8 @@ msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ( 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 `AttributeError` when accessing a `Select` object's values when it has not been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it has not 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))" @@ -413,8 +575,8 @@ msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://gi 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 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))" @@ -446,8 +608,8 @@ msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. 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 `Option` not working on bridge commands because `ext.commands.Command` does not recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` does not 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))" @@ -554,8 +716,8 @@ msgstr "Advanced version info is now stored as a dict in `version_info.advanced` 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 bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files did not 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 did not 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))" @@ -686,9 +848,6 @@ msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` funct 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))" @@ -959,11 +1118,11 @@ msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://gith 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 the error when Discord does not send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord does not 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 "Fix AttributeError when voice client `play()` function is not completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function is not 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" diff --git a/docs/locales/es/LC_MESSAGES/cogs.po b/docs/locales/es/LC_MESSAGES/cogs.po index d3b99d560a..559c916357 100644 --- a/docs/locales/es/LC_MESSAGES/cogs.po +++ b/docs/locales/es/LC_MESSAGES/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/discord.po b/docs/locales/es/LC_MESSAGES/discord.po index 6233cb544e..025987cff3 100644 --- a/docs/locales/es/LC_MESSAGES/discord.po +++ b/docs/locales/es/LC_MESSAGES/discord.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/ext/bridge/api.po b/docs/locales/es/LC_MESSAGES/ext/bridge/api.po index c8f2bfa309..dde94f73f2 100644 --- a/docs/locales/es/LC_MESSAGES/ext/bridge/api.po +++ b/docs/locales/es/LC_MESSAGES/ext/bridge/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -353,14 +353,23 @@ 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 "Options" +msgstr "Options" -msgid "Option" -msgstr "Option" +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" -msgid "BridgeOption" -msgstr "BridgeOption" +msgid "A decorator that can be used instead of typehinting :class:`.BridgeOption`." +msgstr "A decorator that can be used instead of typehinting :class:`.BridgeOption`." + +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 ":class:`str`" +msgstr ":class:`str`" + +msgid "Objects" +msgstr "Objects" 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." diff --git a/docs/locales/es/LC_MESSAGES/ext/bridge/index.po b/docs/locales/es/LC_MESSAGES/ext/bridge/index.po index d829d3af31..94d5b4b663 100644 --- a/docs/locales/es/LC_MESSAGES/ext/bridge/index.po +++ b/docs/locales/es/LC_MESSAGES/ext/bridge/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/ext/commands/api.po b/docs/locales/es/LC_MESSAGES/ext/commands/api.po index 76f6bbe713..fbc31a0ce7 100644 --- a/docs/locales/es/LC_MESSAGES/ext/commands/api.po +++ b/docs/locales/es/LC_MESSAGES/ext/commands/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -269,6 +269,12 @@ msgstr "The view is not persistent. A persistent view has no timeout and all msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -920,8 +995,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -1019,6 +1094,9 @@ msgstr "Optional[:class:`.GuildSticker`]" msgid "Returns a user with the given ID." msgstr "Returns a user with the given ID." +msgid "The :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1064,8 +1142,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1505,8 +1583,11 @@ msgstr "An iterator that recursively walks through all application commands and 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" msgid "Duplicates due to aliases are no longer returned" msgstr "Duplicates due to aliases are no longer returned" @@ -1928,6 +2009,9 @@ msgstr "An iterator that recursively walks through this cog's commands and subco msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." @@ -2108,6 +2192,9 @@ 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 tuple of command types to exclude from the filter." +msgstr "A tuple of command types to exclude from the filter." + msgid "A list of commands that passed the filter." msgstr "A list of commands that passed the filter." @@ -3371,8 +3458,8 @@ 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 "Converts to a :class:`~discord.GuildEmoji`." +msgstr "Converts to a :class:`~discord.GuildEmoji`." 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." @@ -3383,8 +3470,8 @@ 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" msgid "Converts to a :class:`~discord.PartialEmoji`." msgstr "Converts to a :class:`~discord.PartialEmoji`." diff --git a/docs/locales/es/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/es/LC_MESSAGES/ext/commands/cogs.po index b6bdcd19af..3c3bdcf691 100644 --- a/docs/locales/es/LC_MESSAGES/ext/commands/cogs.po +++ b/docs/locales/es/LC_MESSAGES/ext/commands/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/ext/commands/commands.po b/docs/locales/es/LC_MESSAGES/ext/commands/commands.po index 1a44455c05..6328f825ec 100644 --- a/docs/locales/es/LC_MESSAGES/ext/commands/commands.po +++ b/docs/locales/es/LC_MESSAGES/ext/commands/commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -266,8 +266,8 @@ msgstr ":class:`Game`" msgid ":class:`Colour`" msgstr ":class:`Colour`" -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`PartialEmoji`" msgstr ":class:`PartialEmoji`" diff --git a/docs/locales/es/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/es/LC_MESSAGES/ext/commands/extensions.po index aefcfd5e04..1d605e8e3f 100644 --- a/docs/locales/es/LC_MESSAGES/ext/commands/extensions.po +++ b/docs/locales/es/LC_MESSAGES/ext/commands/extensions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/ext/commands/index.po b/docs/locales/es/LC_MESSAGES/ext/commands/index.po index 201036b377..57a313ebef 100644 --- a/docs/locales/es/LC_MESSAGES/ext/commands/index.po +++ b/docs/locales/es/LC_MESSAGES/ext/commands/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/ext/pages/index.po b/docs/locales/es/LC_MESSAGES/ext/pages/index.po index 30b0c29ee7..fccb0b2b36 100644 --- a/docs/locales/es/LC_MESSAGES/ext/pages/index.po +++ b/docs/locales/es/LC_MESSAGES/ext/pages/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -536,14 +536,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + 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 "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." msgid "PaginatorMenu" msgstr "PaginatorMenu" @@ -572,8 +602,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." diff --git a/docs/locales/es/LC_MESSAGES/ext/tasks/index.po b/docs/locales/es/LC_MESSAGES/ext/tasks/index.po index beb1ad9f67..5ca39205f0 100644 --- a/docs/locales/es/LC_MESSAGES/ext/tasks/index.po +++ b/docs/locales/es/LC_MESSAGES/ext/tasks/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/faq.po b/docs/locales/es/LC_MESSAGES/faq.po index 6fdebb4be3..11e8e36d5d 100644 --- a/docs/locales/es/LC_MESSAGES/faq.po +++ b/docs/locales/es/LC_MESSAGES/faq.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -161,8 +161,8 @@ 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 "For custom emoji, you should pass an instance of :class:`GuildEmoji` or :class:`AppEmoji`. 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:`GuildEmoji` or :class:`AppEmoji`. 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 "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>``." diff --git a/docs/locales/es/LC_MESSAGES/index.po b/docs/locales/es/LC_MESSAGES/index.po index 862d065966..1229680f8f 100644 --- a/docs/locales/es/LC_MESSAGES/index.po +++ b/docs/locales/es/LC_MESSAGES/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/installing.po b/docs/locales/es/LC_MESSAGES/installing.po index 7a3215f27a..176f711c87 100644 --- a/docs/locales/es/LC_MESSAGES/installing.po +++ b/docs/locales/es/LC_MESSAGES/installing.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -20,8 +20,8 @@ msgstr "Esta es la documentación para Pycord, una biblioteca para Python para a 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 "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." +msgstr "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." msgid "Installing" msgstr "Instalación" diff --git a/docs/locales/es/LC_MESSAGES/intents.po b/docs/locales/es/LC_MESSAGES/intents.po index 216fcfeab3..fc48ec6bf5 100644 --- a/docs/locales/es/LC_MESSAGES/intents.po +++ b/docs/locales/es/LC_MESSAGES/intents.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/logging.po b/docs/locales/es/LC_MESSAGES/logging.po index 9b9b2f2707..793abccd4a 100644 --- a/docs/locales/es/LC_MESSAGES/logging.po +++ b/docs/locales/es/LC_MESSAGES/logging.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/migrating_to_v1.po b/docs/locales/es/LC_MESSAGES/migrating_to_v1.po index 2aff8457e9..435e41bba4 100644 --- a/docs/locales/es/LC_MESSAGES/migrating_to_v1.po +++ b/docs/locales/es/LC_MESSAGES/migrating_to_v1.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/migrating_to_v2.po b/docs/locales/es/LC_MESSAGES/migrating_to_v2.po index 41ef72997c..227dc45b7e 100644 --- a/docs/locales/es/LC_MESSAGES/migrating_to_v2.po +++ b/docs/locales/es/LC_MESSAGES/migrating_to_v2.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/old_changelog.po b/docs/locales/es/LC_MESSAGES/old_changelog.po index 21e169d5d4..b790838a9d 100644 --- a/docs/locales/es/LC_MESSAGES/old_changelog.po +++ b/docs/locales/es/LC_MESSAGES/old_changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -1208,8 +1208,8 @@ msgstr "|commands| Extensions that fail internally due to ImportError will no lo 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| Allow converters from custom extension packages. (:dpy-issue:`2369`, 2374)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, 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`)" diff --git a/docs/locales/es/LC_MESSAGES/quickstart.po b/docs/locales/es/LC_MESSAGES/quickstart.po index e7805cc77c..cac1c1ea8d 100644 --- a/docs/locales/es/LC_MESSAGES/quickstart.po +++ b/docs/locales/es/LC_MESSAGES/quickstart.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/es/LC_MESSAGES/version_guarantees.po b/docs/locales/es/LC_MESSAGES/version_guarantees.po index 6d31e09158..e45acf2ad0 100644 --- a/docs/locales/es/LC_MESSAGES/version_guarantees.po +++ b/docs/locales/es/LC_MESSAGES/version_guarantees.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/api/abcs.po b/docs/locales/fr/LC_MESSAGES/api/abcs.po index 635c571b44..ad770e438e 100644 --- a/docs/locales/fr/LC_MESSAGES/api/abcs.po +++ b/docs/locales/fr/LC_MESSAGES/api/abcs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/api/application_commands.po b/docs/locales/fr/LC_MESSAGES/api/application_commands.po index a2fae69691..a2d6ce0f74 100644 --- a/docs/locales/fr/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/fr/LC_MESSAGES/api/application_commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -311,6 +311,9 @@ msgstr "The location where this command can be used. Cannot be set if this is a msgid "Set[:class:`InteractionContextType`]" msgstr "Set[:class:`InteractionContextType`]" +msgid "The type of the None singleton." +msgstr "The type of the None singleton." + msgid "Creates a copy of this command." msgstr "Creates a copy of this command." @@ -362,6 +365,9 @@ msgstr "Yields" msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Creates a copy of this command group." msgstr "Creates a copy of this command group." @@ -848,6 +854,24 @@ 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 ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Represents context for a slash command's option autocomplete." msgstr "Represents context for a slash command's option autocomplete." diff --git a/docs/locales/fr/LC_MESSAGES/api/application_info.po b/docs/locales/fr/LC_MESSAGES/api/application_info.po index bec739145b..ba4470e3f0 100644 --- a/docs/locales/fr/LC_MESSAGES/api/application_info.po +++ b/docs/locales/fr/LC_MESSAGES/api/application_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -62,9 +62,6 @@ 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 `_." @@ -89,6 +86,36 @@ 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 "The approximate count of guilds to which the app has been added, if any." +msgstr "The approximate count of guilds to which the app has been added, if any." + +msgid "The approximate count of users who have installed the application, if any." +msgstr "The approximate count of users who have installed the application, if any." + +msgid "The list of redirect URIs for the application, if set." +msgstr "The list of redirect URIs for the application, if set." + +msgid "The interactions endpoint URL for the application, if set." +msgstr "The interactions endpoint URL for the application, if set." + +msgid "The role connection verification URL for the application, if set." +msgstr "The role connection verification URL for the application, if set." + +msgid "The settings for the application's default in-app authorization link, if set." +msgstr "The settings for the application's default in-app authorization link, if set." + +msgid "Optional[List[:class:`AppInstallParams`]]" +msgstr "Optional[List[:class:`AppInstallParams`]]" + +msgid "The list of tags describing the content and functionality of the app, if set." +msgstr "The list of tags describing the content and functionality of the app, if set." + +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." + +msgid "The default custom authorization URL for the application, if set." +msgstr "The default custom authorization URL for the application, if set." + msgid "Parameters" msgstr "Parameters" @@ -104,9 +131,30 @@ 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 "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 "It currently returns an empty string." +msgstr "It currently returns an empty string." + 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 the settings for the custom authorization URL of an application." +msgstr "Represents the settings for the custom authorization URL of an application." + +msgid "The list of OAuth2 scopes for adding the application to a guild." +msgstr "The list of OAuth2 scopes for adding the application to a guild." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The permissions to request for the bot role in the guild." +msgstr "The permissions to request for the bot role in the guild." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + msgid "Represents an application team for a bot provided by Discord." msgstr "Represents an application team for a bot provided by Discord." diff --git a/docs/locales/fr/LC_MESSAGES/api/async_iter.po b/docs/locales/fr/LC_MESSAGES/api/async_iter.po index 6fab415f45..0f5e0bb4e9 100644 --- a/docs/locales/fr/LC_MESSAGES/api/async_iter.po +++ b/docs/locales/fr/LC_MESSAGES/api/async_iter.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/api/audit_logs.po b/docs/locales/fr/LC_MESSAGES/api/audit_logs.po index a6a775eccb..b0452024f3 100644 --- a/docs/locales/fr/LC_MESSAGES/api/audit_logs.po +++ b/docs/locales/fr/LC_MESSAGES/api/audit_logs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/api/clients.po b/docs/locales/fr/LC_MESSAGES/api/clients.po index 96bdb46725..54e23861d8 100644 --- a/docs/locales/fr/LC_MESSAGES/api/clients.po +++ b/docs/locales/fr/LC_MESSAGES/api/clients.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -257,6 +257,12 @@ msgstr "The coroutine to register as the post-invoke hook." msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -893,8 +968,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -986,6 +1061,9 @@ msgstr "A shortcut decorator that initializes the provided subclass of :class:`. 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 :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1028,8 +1106,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1406,6 +1484,9 @@ msgstr "An iterator that recursively walks through all application commands and msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." @@ -1499,6 +1580,15 @@ msgstr "Whether to enable events that are useful only for debugging gateway rela 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 "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" + +msgid "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." + +msgid "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." +msgstr "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." + 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``." @@ -1526,6 +1616,9 @@ msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used 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 "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 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." diff --git a/docs/locales/fr/LC_MESSAGES/api/cogs.po b/docs/locales/fr/LC_MESSAGES/api/cogs.po index 96fccb103a..e77de7ff5c 100644 --- a/docs/locales/fr/LC_MESSAGES/api/cogs.po +++ b/docs/locales/fr/LC_MESSAGES/api/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -56,6 +56,9 @@ msgstr "Yields" msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." diff --git a/docs/locales/fr/LC_MESSAGES/api/data_classes.po b/docs/locales/fr/LC_MESSAGES/api/data_classes.po index 52a1ddfe11..6ec30c8053 100644 --- a/docs/locales/fr/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/fr/LC_MESSAGES/api/data_classes.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -296,8 +296,8 @@ 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:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`GuildSticker`" msgstr ":class:`GuildSticker`" @@ -803,8 +803,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." msgid "Whether the websocket is currently rate limited." msgstr "Whether the websocket is currently rate limited." @@ -926,6 +926,9 @@ msgstr ":meth:`VoiceChannel.get_partial_message`" msgid ":meth:`StageChannel.get_partial_message`" msgstr ":meth:`StageChannel.get_partial_message`" +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.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." @@ -941,8 +944,8 @@ 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 "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" msgid "The message ID." msgstr "The message ID." @@ -1031,8 +1034,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1682,8 +1685,8 @@ 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 "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" msgid "Represents a poll answer object." msgstr "Represents a poll answer object." @@ -2039,6 +2042,9 @@ msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum 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 "Returns ``True`` if the embedded media download options are hidden for the media channel posts." +msgstr "Returns ``True`` if the embedded media download options are hidden for the media channel posts." + msgid "Wraps up the Discord SKU flags." msgstr "Wraps up the Discord SKU flags." @@ -2594,6 +2600,9 @@ msgstr ":attr:`view_audit_log`" msgid ":attr:`view_guild_insights`" msgstr ":attr:`view_guild_insights`" +msgid ":attr:`view_creator_monetization_analytics`" +msgstr ":attr:`view_creator_monetization_analytics`" + msgid ":attr:`manage_guild`" msgstr ":attr:`manage_guild`" @@ -2624,6 +2633,9 @@ msgstr "A factory method that creates a :class:`Permissions` with all \"General\ 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 "Added :attr:`view_creator_monetization_analytics` permission." +msgstr "Added :attr:`view_creator_monetization_analytics` permission." + 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\\)`" @@ -2810,6 +2822,15 @@ msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in 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 user can view creator monetization (role subscription) analytics." +msgstr "Returns ``True`` if a user can view creator monetization (role subscription) analytics." + +msgid "Returns ``True`` if a user can use the soundboard in a voice channel." +msgstr "Returns ``True`` if a user can use the soundboard in a voice channel." + +msgid "Returns ``True`` if a user can use external soundboard sounds in a voice channel." +msgstr "Returns ``True`` if a user can use external soundboard sounds in a voice channel." + msgid "Returns ``True`` if a member can send voice messages." msgstr "Returns ``True`` if a member can send voice messages." diff --git a/docs/locales/fr/LC_MESSAGES/api/enums.po b/docs/locales/fr/LC_MESSAGES/api/enums.po index 0ec385be41..b1c7ba835e 100644 --- a/docs/locales/fr/LC_MESSAGES/api/enums.po +++ b/docs/locales/fr/LC_MESSAGES/api/enums.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -974,8 +974,8 @@ 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 "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` 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." @@ -1769,3 +1769,15 @@ 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." +msgid "Represents a subscription's status." +msgstr "Represents a subscription's status." + +msgid "The subscription is active and is scheduled to renew." +msgstr "The subscription is active and is scheduled to renew." + +msgid "The subscription is active but will not renew." +msgstr "The subscription is active but will not renew." + +msgid "The subscription is inactive and the subscription owner is not being charged." +msgstr "The subscription is inactive and the subscription owner is not being charged." + diff --git a/docs/locales/fr/LC_MESSAGES/api/events.po b/docs/locales/fr/LC_MESSAGES/api/events.po index 6329eac140..069e855703 100644 --- a/docs/locales/fr/LC_MESSAGES/api/events.po +++ b/docs/locales/fr/LC_MESSAGES/api/events.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -293,33 +293,6 @@ msgstr "This is only for the messages sent from the client WebSocket. The voice 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" @@ -392,8 +365,8 @@ 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 "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." @@ -791,6 +764,60 @@ 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 "Monetization" +msgstr "Monetization" + +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 cancelled." +msgstr "Called when a user's subscription to an Entitlement is cancelled." + +msgid "Before October 1, 2024, this event was called when a user's subscription was renewed." +msgstr "Before October 1, 2024, this event was called when a user's subscription was renewed." + +msgid "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." +msgstr "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + +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 "Called when a subscription is created for the application." +msgstr "Called when a subscription is created for the application." + +msgid "The subscription that was created." +msgstr "The subscription that was created." + +msgid "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." +msgstr "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." + +msgid "The subscription that was updated." +msgstr "The subscription that was updated." + +msgid "Called when a subscription has been deleted." +msgstr "Called when a subscription has been deleted." + +msgid "The subscription that was deleted." +msgstr "The subscription that was deleted." + msgid "Scheduled Events" msgstr "Scheduled Events" diff --git a/docs/locales/fr/LC_MESSAGES/api/exceptions.po b/docs/locales/fr/LC_MESSAGES/api/exceptions.po index f9bd12a63c..e209bb79dd 100644 --- a/docs/locales/fr/LC_MESSAGES/api/exceptions.po +++ b/docs/locales/fr/LC_MESSAGES/api/exceptions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/api/index.po b/docs/locales/fr/LC_MESSAGES/api/index.po index 66ca503bfb..e54340ba55 100644 --- a/docs/locales/fr/LC_MESSAGES/api/index.po +++ b/docs/locales/fr/LC_MESSAGES/api/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/api/models.po b/docs/locales/fr/LC_MESSAGES/api/models.po index 4db32a7349..3ff2b57d0d 100644 --- a/docs/locales/fr/LC_MESSAGES/api/models.po +++ b/docs/locales/fr/LC_MESSAGES/api/models.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -1202,6 +1202,9 @@ msgstr "If provided, the number of seconds to wait in the background before dele 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 was not found." +msgstr "The message was not found." + msgid "Editing the message failed." msgstr "Editing the message failed." @@ -1268,8 +1271,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1445,8 +1448,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :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." @@ -1568,9 +1571,45 @@ msgstr ":class:`SKUFlags`" msgid "Returns the URL for the SKU." msgstr "Returns the URL for the SKU." +msgid "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." + +msgid "The user for which to retrieve subscriptions." +msgstr "The user for which to retrieve subscriptions." + +msgid "Retrieves subscriptions before this date or object. If a datetime 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 subscriptions before this date or object. If a datetime 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 subscriptions after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve subscriptions after this date or object. If a datetime 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 subscriptions to retrieve. If ``None``, retrieves all subscriptions." +msgstr "The number of subscriptions to retrieve. If ``None``, retrieves all subscriptions." + +msgid ":class:`Subscription` -- A subscription that the user has for this SKU." +msgstr ":class:`Subscription` -- A subscription that the user has for this SKU." + +msgid "Getting the subscriptions failed." +msgstr "Getting the subscriptions failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters except for ``user`` are optional." +msgstr "All parameters except for ``user`` are optional." + msgid "Represents a Discord entitlement." msgstr "Represents a Discord entitlement." +msgid "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." +msgstr "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + msgid "The entitlement's ID." msgstr "The entitlement's ID." @@ -1607,17 +1646,14 @@ 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 "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.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 "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." +msgstr "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." msgid "Consuming the entitlement failed." msgstr "Consuming the entitlement failed." @@ -1631,6 +1667,57 @@ msgstr "A test entitlement is an entitlement that was created using :meth:`Guild msgid "Deleting the entitlement failed." msgstr "Deleting the entitlement failed." +msgid "Represents a user making recurring payments for one or more SKUs." +msgstr "Represents a user making recurring payments for one or more SKUs." + +msgid "Successful payments grant the user access to entitlements associated with the SKU." +msgstr "Successful payments grant the user access to entitlements associated with the SKU." + +msgid "The subscription's ID." +msgstr "The subscription's ID." + +msgid "The ID of the user that owns this subscription." +msgstr "The ID of the user that owns this subscription." + +msgid "The IDs of the SKUs this subscription is for." +msgstr "The IDs of the SKUs this subscription is for." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the entitlements this subscription is for." +msgstr "The IDs of the entitlements this subscription is for." + +msgid "The IDs of the SKUs that the buyer will be subscribed to at renewal." +msgstr "The IDs of the SKUs that the buyer will be subscribed to at renewal." + +msgid "The start of the current subscription period." +msgstr "The start of the current subscription period." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The end of the current subscription period." +msgstr "The end of the current subscription period." + +msgid "The status of the subscription." +msgstr "The status of the subscription." + +msgid ":class:`SubscriptionStatus`" +msgstr ":class:`SubscriptionStatus`" + +msgid "When the subscription was canceled." +msgstr "When the subscription was canceled." + +msgid ":class:`datetime.datetime` | ``None``" +msgstr ":class:`datetime.datetime` | ``None``" + +msgid "The user that owns this subscription." +msgstr "The user that owns this subscription." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + msgid "Guild" msgstr "Guild" @@ -1658,8 +1745,8 @@ 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 "Tuple[:class:`GuildEmoji`, ...]" +msgstr "Tuple[:class:`GuildEmoji`, ...]" msgid "All stickers that the guild owns." msgstr "All stickers that the guild owns." @@ -1781,9 +1868,6 @@ 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." @@ -2141,11 +2225,11 @@ 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:`GuildEmoji`, 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:`GuildEmoji`, 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 "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." msgid ":class:`ForumChannel`" msgstr ":class:`ForumChannel`" @@ -2657,8 +2741,8 @@ 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 "Retrieves all custom :class:`GuildEmoji`\\s from the guild." +msgstr "Retrieves all custom :class:`GuildEmoji`\\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." @@ -2669,11 +2753,11 @@ msgstr "An error occurred fetching the emojis." msgid "The retrieved emojis." msgstr "The retrieved emojis." -msgid "List[:class:`Emoji`]" -msgstr "List[:class:`Emoji`]" +msgid "List[:class:`GuildEmoji`]" +msgstr "List[:class:`GuildEmoji`]" -msgid "Retrieves a custom :class:`Emoji` from the guild." -msgstr "Retrieves a custom :class:`Emoji` from the guild." +msgid "Retrieves a custom :class:`GuildEmoji` from the guild." +msgstr "Retrieves a custom :class:`GuildEmoji` 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." @@ -2684,8 +2768,8 @@ msgstr "The emoji's ID." msgid "The retrieved emoji." msgstr "The retrieved emoji." -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid "The emoji requested could not be found." msgstr "The emoji requested could not be found." @@ -2693,8 +2777,8 @@ 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 "Creates a custom :class:`GuildEmoji` for the guild." +msgstr "Creates a custom :class:`GuildEmoji` 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." @@ -2723,8 +2807,8 @@ 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 "Deletes the custom :class:`GuildEmoji` from the guild." +msgstr "Deletes the custom :class:`GuildEmoji` 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." @@ -3446,6 +3530,15 @@ msgstr "For regular members this is just their avatar, but if they have a guild 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 member's display banner." +msgstr "Returns the member's display banner." + +msgid "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." +msgstr "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild banner the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild banner 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." @@ -3737,9 +3830,6 @@ 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." @@ -3890,9 +3980,6 @@ 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." @@ -4199,9 +4286,6 @@ msgstr "How many times the invite can be used. A value of ``0`` indicates that i 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." @@ -4316,8 +4400,8 @@ msgstr "The position of the role. This number is usually positive. The bottom ro 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 is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." +msgstr "Indicates if the role is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." msgid "Indicates if the role can be mentioned by users." msgstr "Indicates if the role can be mentioned by users." @@ -4346,12 +4430,21 @@ msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typeh 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 guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :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 "Whether the role is available for purchase." +msgstr "Whether the role is available for purchase." + +msgid "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Returns the role's permissions." msgstr "Returns the role's permissions." @@ -4439,20 +4532,26 @@ msgstr "A role tag is a piece of extra information attached to a managed role th 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 "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." +msgstr "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." + 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 "The subscription SKU and listing ID of the role." +msgstr "The subscription SKU and listing ID of 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 "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." msgid "Scheduled Event" msgstr "Scheduled Event" @@ -4694,6 +4793,9 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" + msgid "Onboarding" msgstr "Onboarding" @@ -4811,8 +4913,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" msgid "The option's title." msgstr "The option's title." @@ -5189,8 +5291,8 @@ msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the 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 "This is only available for threads in forum or media channels." +msgstr "This is only available for threads in forum or media channels." msgid "List[:class:`ForumTag`]" msgstr "List[:class:`ForumTag`]" @@ -5240,8 +5342,8 @@ 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 pinned to the top of its parent forum or media channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum or media 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." @@ -5381,8 +5483,8 @@ msgstr "The new duration in minutes before a thread is automatically archived fo 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 "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." 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" @@ -6131,8 +6233,8 @@ 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 "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" msgid "The ID of the channel the interaction was sent from." msgstr "The ID of the channel the interaction was sent from." @@ -6197,8 +6299,8 @@ 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 cached channel from which the interaction was sent. DM channels are not resolved. These are :class:`PartialMessageable` instead." +msgstr "The cached channel from which the interaction was sent. DM channels are not resolved. 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." @@ -6218,6 +6320,30 @@ msgstr "A response can only be done once. If secondary messages need to be sent, msgid "Returns the followup webhook for followup interactions." msgstr "Returns the followup webhook for followup interactions." +msgid ":class:`bool`: Checks if the interaction is guild authorised." +msgstr ":class:`bool`: Checks if the interaction is guild authorised." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorised." +msgstr ":class:`bool`: Checks if the interaction is user authorised." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is guild authorized." +msgstr ":class:`bool`: Checks if the interaction is guild authorized." + +msgid "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorized." +msgstr ":class:`bool`: Checks if the interaction is user authorized." + +msgid "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Fetches the original interaction response message associated with the interaction." msgstr "Fetches the original interaction response message associated with the interaction." @@ -6629,8 +6755,8 @@ msgstr "Whether the select is disabled or not." msgid "Emoji" msgstr "Emoji" -msgid "Represents a custom emoji." -msgstr "Represents a custom emoji." +msgid "Represents a custom emoji in a guild." +msgstr "Represents a custom emoji in a guild." 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``." @@ -6671,12 +6797,6 @@ 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." @@ -6716,6 +6836,48 @@ msgstr "An error occurred editing the emoji." msgid "The newly updated emoji." msgstr "The newly updated emoji." +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 "Represents a custom emoji from an application." +msgstr "Represents a custom emoji from an application." + +msgid "The application ID the emoji belongs to, if available." +msgstr "The application ID the emoji belongs to, if available." + +msgid "The user that created the emoji." +msgstr "The user that created the emoji." + +msgid "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." +msgstr "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." + +msgid "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." +msgstr "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." + +msgid "Whether the bot can use this emoji." +msgstr "Whether the bot can use this emoji." + +msgid "Deletes the application emoji." +msgstr "Deletes the application emoji." + +msgid "You must own the emoji to do this." +msgstr "You must own the emoji to do this." + +msgid "You are not allowed to delete the emoji." +msgstr "You are not allowed to delete the emoji." + +msgid "Edits the application emoji." +msgstr "Edits the application emoji." + +msgid "You are not allowed to edit the emoji." +msgstr "You are not allowed to edit the emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + msgid "Represents a \"partial\" emoji." msgstr "Represents a \"partial\" emoji." @@ -6953,14 +7115,14 @@ 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 "Optional[:class:`str` | :class:`discord.GuildEmoji`]" +msgstr "Optional[:class:`str` | :class:`discord.GuildEmoji`]" 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 "Whether a tag is required to be specified when creating a thread in this forum or media channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum or media channel." msgid "Tags are specified in :attr:`applied_tags`." msgstr "Tags are specified in :attr:`applied_tags`." @@ -6977,8 +7139,8 @@ msgstr "The default sort order type to use to order posts in this channel. .. v 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 default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, 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:`GuildEmoji`, 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" @@ -7010,6 +7172,24 @@ 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 media channel. Subclass of :class:`ForumChannel`." +msgstr "Represents a Discord media channel. Subclass of :class:`ForumChannel`." + +msgid "Whether media download options are hidden in this media channel." +msgstr "Whether media download options are hidden in this media channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." + +msgid "Whether media download options should be hidden in this media channel." +msgstr "Whether media download options should be hidden in this media channel." + +msgid "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.MediaChannel`]" +msgstr "Optional[:class:`.MediaChannel`]" + msgid "Represents a Discord guild voice channel." msgstr "Represents a Discord guild voice channel." diff --git a/docs/locales/fr/LC_MESSAGES/api/sinks.po b/docs/locales/fr/LC_MESSAGES/api/sinks.po index 1c6e46f2d4..0778fd9cb1 100644 --- a/docs/locales/fr/LC_MESSAGES/api/sinks.po +++ b/docs/locales/fr/LC_MESSAGES/api/sinks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/api/ui_kit.po b/docs/locales/fr/LC_MESSAGES/api/ui_kit.po index e1532d4950..3efbf7ba0b 100644 --- a/docs/locales/fr/LC_MESSAGES/api/ui_kit.po +++ b/docs/locales/fr/LC_MESSAGES/api/ui_kit.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -44,8 +44,8 @@ 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 emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." 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)." @@ -122,8 +122,8 @@ 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 in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. 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." @@ -317,8 +317,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" msgid "The callback associated with this UI item." msgstr "The callback associated with this UI item." @@ -419,8 +455,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." @@ -449,6 +485,9 @@ 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 "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 "The title of the modal dialog." msgstr "The title of the modal dialog." diff --git a/docs/locales/fr/LC_MESSAGES/api/utils.po b/docs/locales/fr/LC_MESSAGES/api/utils.po index 8435e585b8..156796b034 100644 --- a/docs/locales/fr/LC_MESSAGES/api/utils.po +++ b/docs/locales/fr/LC_MESSAGES/api/utils.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -407,18 +407,24 @@ msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` 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 "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" + +msgid "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." + 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 "With filter parameter:" +msgstr "With filter parameter:" + 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." @@ -446,6 +452,9 @@ 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 "Example" +msgstr "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." diff --git a/docs/locales/fr/LC_MESSAGES/api/version_info.po b/docs/locales/fr/LC_MESSAGES/api/version_info.po index 5f203d590b..86278ebdee 100644 --- a/docs/locales/fr/LC_MESSAGES/api/version_info.po +++ b/docs/locales/fr/LC_MESSAGES/api/version_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/api/voice.po b/docs/locales/fr/LC_MESSAGES/api/voice.po index 2ad1d44d51..a453bd672d 100644 --- a/docs/locales/fr/LC_MESSAGES/api/voice.po +++ b/docs/locales/fr/LC_MESSAGES/api/voice.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -215,6 +215,12 @@ msgstr "You are not connected." msgid "Encoding the data failed." msgstr "Encoding the data failed." +msgid "Returns the elapsed time of the playing audio." +msgstr "Returns the elapsed time of the playing audio." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" + msgid "A class that represents the Discord voice protocol." msgstr "A class that represents the Discord voice protocol." @@ -380,11 +386,11 @@ msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` i 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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 "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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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." diff --git a/docs/locales/fr/LC_MESSAGES/api/webhooks.po b/docs/locales/fr/LC_MESSAGES/api/webhooks.po index fb7ecfae98..7953693776 100644 --- a/docs/locales/fr/LC_MESSAGES/api/webhooks.po +++ b/docs/locales/fr/LC_MESSAGES/api/webhooks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/changelog.po b/docs/locales/fr/LC_MESSAGES/changelog.po index e763500e1e..d0600797fd 100644 --- a/docs/locales/fr/LC_MESSAGES/changelog.po +++ b/docs/locales/fr/LC_MESSAGES/changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -26,8 +26,122 @@ 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 "⚠️ **This version removes support for Python 3.8.** ⚠️" +msgstr "⚠️ **This version removes support for Python 3.8.** ⚠️" + +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 "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" +msgstr "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" + +msgid "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" +msgstr "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" + +msgid "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" +msgstr "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" + +msgid "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" +msgstr "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" + +msgid "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" +msgstr "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" + +msgid "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" +msgstr "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" + +msgid "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" +msgstr "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" + +msgid "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" +msgstr "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" + +msgid "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" +msgstr "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" + +msgid "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" +msgstr "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" +msgstr "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" + +msgid "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" +msgstr "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" + +msgid "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" +msgstr "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" + +msgid "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" +msgstr "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" + +msgid "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" +msgstr "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" + +msgid "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" +msgstr "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" + +msgid "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" +msgstr "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" + +msgid "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" +msgstr "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" + +msgid "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" +msgstr "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" + +msgid "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" +msgstr "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" + +msgid "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" +msgstr "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" + +msgid "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" +msgstr "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" + +msgid "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" +msgstr "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" + +msgid "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" +msgstr "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" + +msgid "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." +msgstr "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." + +msgid "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" +msgstr "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" + +msgid "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" +msgstr "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" msgid "Changed" msgstr "Changed" @@ -35,14 +149,65 @@ 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 "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" -msgid "Added" -msgstr "Added" +msgid "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" -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 "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" +msgstr "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" + +msgid "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" +msgstr "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" + +msgid "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "[2.6.1] - 2024-09-15" +msgstr "[2.6.1] - 2024-09-15" + +msgid "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" +msgstr "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" + +msgid "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" +msgstr "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" + +msgid "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" +msgstr "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" + +msgid "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" +msgstr "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" + +msgid "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" +msgstr "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" msgid "[2.6.0] - 2024-07-09" msgstr "[2.6.0] - 2024-07-09" @@ -92,9 +257,6 @@ msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord 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))" @@ -119,8 +281,8 @@ msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#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 option type hints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option type hints 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))" @@ -152,8 +314,8 @@ msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.co 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 "HTTP requests that fail with a 503 status are now retried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now retried. ([#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))" @@ -401,8 +563,8 @@ msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ( 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 `AttributeError` when accessing a `Select` object's values when it has not been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it has not 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))" @@ -413,8 +575,8 @@ msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://gi 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 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))" @@ -446,8 +608,8 @@ msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. 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 `Option` not working on bridge commands because `ext.commands.Command` does not recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` does not 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))" @@ -554,8 +716,8 @@ msgstr "Advanced version info is now stored as a dict in `version_info.advanced` 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 bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files did not 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 did not 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))" @@ -686,9 +848,6 @@ msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` funct 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))" @@ -959,11 +1118,11 @@ msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://gith 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 the error when Discord does not send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord does not 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 "Fix AttributeError when voice client `play()` function is not completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function is not 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" diff --git a/docs/locales/fr/LC_MESSAGES/cogs.po b/docs/locales/fr/LC_MESSAGES/cogs.po index 7bb334f56a..36561d0295 100644 --- a/docs/locales/fr/LC_MESSAGES/cogs.po +++ b/docs/locales/fr/LC_MESSAGES/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/discord.po b/docs/locales/fr/LC_MESSAGES/discord.po index 2b0ddd9d75..98aa79c567 100644 --- a/docs/locales/fr/LC_MESSAGES/discord.po +++ b/docs/locales/fr/LC_MESSAGES/discord.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 "Création d'un compte de Bot" @@ -39,10 +39,10 @@ msgid "The new application form filled in." msgstr "Le formulaire de création de nouvelle application rempli." 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\"." +msgstr "Créer un bot en cliquant sur \"Bot\" puis sur \"Ajouter un bot\"." msgid "Click \"Yes, do it!\" to continue." -msgstr "Click \"Yes, do it!\" to continue." +msgstr "Cliquez sur \"Oui\" pour continuer." msgid "The Add Bot button." msgstr "Le bouton d'ajout de Bot." @@ -57,19 +57,19 @@ msgid "How the Bot User options should look like for most people." msgstr "A quoi les paramètres du Bot devraient ressembler pour la plupart des gens." msgid "Copy the token using the \"Copy\" button." -msgstr "Copy the token using the \"Copy\" button." +msgstr "Copiez le token en utilisant le bouton \"copier\"." msgid "**This is not the Client Secret at the General Information page.**" -msgstr "**This is not the Client Secret at the General Information page.**" +msgstr "**Il ne s'agit pas du token qui figure sur la page des informations générales.**" 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." +msgstr "Il est important de noter que ce token est le mot de passe de votre bot. Vous ne devez **jamais** le partager à qui que ce soit. En le partageant, quelqu'un pourrait se connecter à votre bot et réaliser des actions malveillantes avec celui-ci comme quitter certains serveurs, bannir des membres dans un serveur ou réaliser des mentions everyone avec des intentions malveillantes." msgid "The possibilities are endless, so **do not share this token.**" -msgstr "The possibilities are endless, so **do not share this token.**" +msgstr "Les possibilités sont infinies donc **ne partagez pas ce 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." +msgstr "Si vous avez fait fuiter accidentellement ce token, cliquez sur le bouton \"Régénérer\" dès que possible. Cela révoque votre ancien token et en génère un nouveau. Vous aurez alors besoins de ce nouveau token pour pouvoir vous connecter." msgid "And that's it. You now have a bot account and you can login with that token." msgstr "Et c'est tout. Vous avez maintenant un compte de Bot et vous pouvez vous y connecter avec le jeton d'authentification." diff --git a/docs/locales/fr/LC_MESSAGES/ext/bridge/api.po b/docs/locales/fr/LC_MESSAGES/ext/bridge/api.po index 759623552c..740f2073c5 100644 --- a/docs/locales/fr/LC_MESSAGES/ext/bridge/api.po +++ b/docs/locales/fr/LC_MESSAGES/ext/bridge/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -353,14 +353,23 @@ 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 "Options" +msgstr "Options" -msgid "Option" -msgstr "Option" +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" -msgid "BridgeOption" -msgstr "BridgeOption" +msgid "A decorator that can be used instead of typehinting :class:`.BridgeOption`." +msgstr "A decorator that can be used instead of typehinting :class:`.BridgeOption`." + +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 ":class:`str`" +msgstr ":class:`str`" + +msgid "Objects" +msgstr "Objects" 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." diff --git a/docs/locales/fr/LC_MESSAGES/ext/bridge/index.po b/docs/locales/fr/LC_MESSAGES/ext/bridge/index.po index 1379531802..f30561eee4 100644 --- a/docs/locales/fr/LC_MESSAGES/ext/bridge/index.po +++ b/docs/locales/fr/LC_MESSAGES/ext/bridge/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/ext/commands/api.po b/docs/locales/fr/LC_MESSAGES/ext/commands/api.po index 6ca393b690..5d68db064f 100644 --- a/docs/locales/fr/LC_MESSAGES/ext/commands/api.po +++ b/docs/locales/fr/LC_MESSAGES/ext/commands/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -269,6 +269,12 @@ msgstr "The view is not persistent. A persistent view has no timeout and all msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -920,8 +995,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -1019,6 +1094,9 @@ msgstr "Optional[:class:`.GuildSticker`]" msgid "Returns a user with the given ID." msgstr "Returns a user with the given ID." +msgid "The :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1064,8 +1142,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1505,8 +1583,11 @@ msgstr "An iterator that recursively walks through all application commands and 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" msgid "Duplicates due to aliases are no longer returned" msgstr "Duplicates due to aliases are no longer returned" @@ -1928,6 +2009,9 @@ msgstr "An iterator that recursively walks through this cog's commands and subco msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." @@ -2108,6 +2192,9 @@ 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 tuple of command types to exclude from the filter." +msgstr "A tuple of command types to exclude from the filter." + msgid "A list of commands that passed the filter." msgstr "A list of commands that passed the filter." @@ -3371,8 +3458,8 @@ 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 "Converts to a :class:`~discord.GuildEmoji`." +msgstr "Converts to a :class:`~discord.GuildEmoji`." 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." @@ -3383,8 +3470,8 @@ 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" msgid "Converts to a :class:`~discord.PartialEmoji`." msgstr "Converts to a :class:`~discord.PartialEmoji`." diff --git a/docs/locales/fr/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/fr/LC_MESSAGES/ext/commands/cogs.po index 3c4a949700..12f26477fb 100644 --- a/docs/locales/fr/LC_MESSAGES/ext/commands/cogs.po +++ b/docs/locales/fr/LC_MESSAGES/ext/commands/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/ext/commands/commands.po b/docs/locales/fr/LC_MESSAGES/ext/commands/commands.po index 4fb7f3e9c5..df1a596f20 100644 --- a/docs/locales/fr/LC_MESSAGES/ext/commands/commands.po +++ b/docs/locales/fr/LC_MESSAGES/ext/commands/commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -60,7 +60,7 @@ msgid "The most basic form of parameter passing is the positional parameter. Thi 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:" +msgstr "Pour ce qui est de l'utilisation de votre bot, vous pouvez fournir des arguments positionnels en passant simplement une chaîne de caractères :" 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:" @@ -266,8 +266,8 @@ msgstr ":class:`Game`" msgid ":class:`Colour`" msgstr ":class:`Colour`" -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`PartialEmoji`" msgstr ":class:`PartialEmoji`" diff --git a/docs/locales/fr/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/fr/LC_MESSAGES/ext/commands/extensions.po index a0d5e33417..a1b8dbad17 100644 --- a/docs/locales/fr/LC_MESSAGES/ext/commands/extensions.po +++ b/docs/locales/fr/LC_MESSAGES/ext/commands/extensions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/ext/commands/index.po b/docs/locales/fr/LC_MESSAGES/ext/commands/index.po index 3e87a22190..d3a2c131dc 100644 --- a/docs/locales/fr/LC_MESSAGES/ext/commands/index.po +++ b/docs/locales/fr/LC_MESSAGES/ext/commands/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/ext/pages/index.po b/docs/locales/fr/LC_MESSAGES/ext/pages/index.po index b2b28a742f..712f9464fd 100644 --- a/docs/locales/fr/LC_MESSAGES/ext/pages/index.po +++ b/docs/locales/fr/LC_MESSAGES/ext/pages/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -536,14 +536,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + 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 "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." msgid "PaginatorMenu" msgstr "PaginatorMenu" @@ -572,8 +602,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." diff --git a/docs/locales/fr/LC_MESSAGES/ext/tasks/index.po b/docs/locales/fr/LC_MESSAGES/ext/tasks/index.po index e84e36598d..6e22d48230 100644 --- a/docs/locales/fr/LC_MESSAGES/ext/tasks/index.po +++ b/docs/locales/fr/LC_MESSAGES/ext/tasks/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -201,7 +201,7 @@ 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 "Removes exception types from being handled during the reconnect logic." +msgstr "Supprime les types d'exceptions qui ne sont pas gérés pendant la logique de reconnexion." msgid "Whether all exceptions were successfully removed." msgstr "Si toutes les exceptions ont bien été supprimées." diff --git a/docs/locales/fr/LC_MESSAGES/faq.po b/docs/locales/fr/LC_MESSAGES/faq.po index fe37008123..0234c2dc3c 100644 --- a/docs/locales/fr/LC_MESSAGES/faq.po +++ b/docs/locales/fr/LC_MESSAGES/faq.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -161,8 +161,8 @@ 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 "For custom emoji, you should pass an instance of :class:`GuildEmoji` or :class:`AppEmoji`. 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:`GuildEmoji` or :class:`AppEmoji`. 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>``." diff --git a/docs/locales/fr/LC_MESSAGES/index.po b/docs/locales/fr/LC_MESSAGES/index.po index 15f4ef6bdc..2662e5cc3e 100644 --- a/docs/locales/fr/LC_MESSAGES/index.po +++ b/docs/locales/fr/LC_MESSAGES/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/installing.po b/docs/locales/fr/LC_MESSAGES/installing.po index 209c879029..4214f4a246 100644 --- a/docs/locales/fr/LC_MESSAGES/installing.po +++ b/docs/locales/fr/LC_MESSAGES/installing.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -20,8 +20,8 @@ msgstr "This is the documentation for Pycord, a library for Python to aid in cre 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 "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." +msgstr "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." msgid "Installing" msgstr "Installing" diff --git a/docs/locales/fr/LC_MESSAGES/intents.po b/docs/locales/fr/LC_MESSAGES/intents.po index 452a2e6b8b..03b3f8fa68 100644 --- a/docs/locales/fr/LC_MESSAGES/intents.po +++ b/docs/locales/fr/LC_MESSAGES/intents.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/logging.po b/docs/locales/fr/LC_MESSAGES/logging.po index f4a78147d5..9a30bc24ce 100644 --- a/docs/locales/fr/LC_MESSAGES/logging.po +++ b/docs/locales/fr/LC_MESSAGES/logging.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/fr/LC_MESSAGES/migrating_to_v1.po b/docs/locales/fr/LC_MESSAGES/migrating_to_v1.po index 8605c037d9..bebdec99a1 100644 --- a/docs/locales/fr/LC_MESSAGES/migrating_to_v1.po +++ b/docs/locales/fr/LC_MESSAGES/migrating_to_v1.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -57,10 +57,10 @@ msgid "A list of changes is as follows:" msgstr "A list of changes is as follows:" msgid "Before" -msgstr "Before" +msgstr "Avant" msgid "After" -msgstr "After" +msgstr "Après" msgid "``Message.server``" msgstr "``Message.server``" diff --git a/docs/locales/fr/LC_MESSAGES/migrating_to_v2.po b/docs/locales/fr/LC_MESSAGES/migrating_to_v2.po index 120c8183a6..6f9ff7fb3b 100644 --- a/docs/locales/fr/LC_MESSAGES/migrating_to_v2.po +++ b/docs/locales/fr/LC_MESSAGES/migrating_to_v2.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 "Migrer vers la version 2.0" @@ -90,28 +90,28 @@ 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." +msgstr "Les attributs liés aux actifs qui renvoyaient auparavant des chaînes de hachage (par exemple :attr:`User.avatar`) renvoient maintenant :class:`Asset`. :attr:`Asset.key` renvoie le hachage à partir de maintenant." 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." +msgstr "Les méthodes :meth:`Asset.replace` ou :meth:`Asset.with_x` peuvent être utilisées pour obtenir des tailles ou des types d'actifs spécifiques." msgid ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." -msgstr ":attr:`Emoji.url` and :attr:`PartialEmoji.url` are now :class:`str`. :meth:`Emoji.save` and :meth:`Emoji.read` are added to save or read emojis." +msgstr ":attr:`Emoji.url` et :attr:`PartialEmoji.url` sont maintenant :class:`str`. :meth:`Emoji.save` et :meth:`Emoji.read` sont ajoutés pour sauvegarder ou lire les emojis." msgid "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." -msgstr "``Emoji.url_as`` and ``PartialEmoji.url_as`` are removed." +msgstr "``Emoji.url_as`` et ``PartialEmoji.url_as`` ont été supprimés." msgid "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" -msgstr "Some :class:`AuditLogDiff` attributes now return :class:`Asset` instead of :class:`str`: :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" +msgstr "Certains attributs :class:`AuditLogDiff` renvoient maintenant :class:`Asset` au lieu de :class:`str`, : :attr:`AuditLogDiff.splash`, :attr:`AuditLogDiff.icon`, :attr:`AuditLogDiff.avatar`" msgid ":attr:`User.avatar` returns ``None`` if the avatar is not set and is instead the default avatar; use :attr:`User.display_avatar` for pre-2.0 behavior." -msgstr ":attr:`User.avatar` 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` renvoie `None`` si l'avatar n'est pas défini et est à la place l'avatar par défaut ; utilisez :attr:`User.display_avatar` pour un comportement similaire à celui précédant la version 2.0." msgid "Before" -msgstr "Before" +msgstr "Avant" msgid "After" -msgstr "After" +msgstr "Après" msgid "``str(user.avatar_url)``" msgstr "``str(user.avatar_url)``" @@ -174,10 +174,10 @@ 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`." +msgstr "class:`Webhook` et :class:`WebhookMessage` sont maintenant toujours asynchrones. Pour une utilisation synchrone (``requests``), utilisez :class:`SyncWebhook` et :class:`SyncWebhookMessage`." msgid "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." -msgstr "``WebhookAdapter``, ``AsyncWebhookAdapter``, and ``RequestsWebhookAdapter`` are removed, since they are unnecessary." +msgstr "`WebhookAdapter`, `AsyncWebhookAdapter`, et `RequestsWebhookAdapter` sont supprimés, car ils sont inutiles." 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``." diff --git a/docs/locales/fr/LC_MESSAGES/old_changelog.po b/docs/locales/fr/LC_MESSAGES/old_changelog.po index 5aa87be0fa..cbed1f7131 100644 --- a/docs/locales/fr/LC_MESSAGES/old_changelog.po +++ b/docs/locales/fr/LC_MESSAGES/old_changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -1208,8 +1208,8 @@ msgstr "|commands| Extensions that fail internally due to ImportError will no lo 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| Allow converters from custom extension packages. (:dpy-issue:`2369`, 2374)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, 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`)" diff --git a/docs/locales/fr/LC_MESSAGES/quickstart.po b/docs/locales/fr/LC_MESSAGES/quickstart.po index f42b9ffaff..fdc3f28e43 100644 --- a/docs/locales/fr/LC_MESSAGES/quickstart.po +++ b/docs/locales/fr/LC_MESSAGES/quickstart.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 "Démarrage rapide" diff --git a/docs/locales/fr/LC_MESSAGES/version_guarantees.po b/docs/locales/fr/LC_MESSAGES/version_guarantees.po index f46b6d8f68..120a98a15f 100644 --- a/docs/locales/fr/LC_MESSAGES/version_guarantees.po +++ b/docs/locales/fr/LC_MESSAGES/version_guarantees.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Crowdin\n" msgid "Version Guarantees" msgstr "Garanties quant au versionnage" diff --git a/docs/locales/hi/LC_MESSAGES/api/abcs.po b/docs/locales/hi/LC_MESSAGES/api/abcs.po index dd0448a634..942c889d89 100644 --- a/docs/locales/hi/LC_MESSAGES/api/abcs.po +++ b/docs/locales/hi/LC_MESSAGES/api/abcs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/api/application_commands.po b/docs/locales/hi/LC_MESSAGES/api/application_commands.po index ee950c0b7a..f1e2c1e350 100644 --- a/docs/locales/hi/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/hi/LC_MESSAGES/api/application_commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -311,6 +311,9 @@ msgstr "The location where this command can be used. Cannot be set if this is a msgid "Set[:class:`InteractionContextType`]" msgstr "Set[:class:`InteractionContextType`]" +msgid "The type of the None singleton." +msgstr "The type of the None singleton." + msgid "Creates a copy of this command." msgstr "Creates a copy of this command." @@ -362,6 +365,9 @@ msgstr "Yields" msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Creates a copy of this command group." msgstr "Creates a copy of this command group." @@ -848,6 +854,24 @@ 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 ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Represents context for a slash command's option autocomplete." msgstr "Represents context for a slash command's option autocomplete." diff --git a/docs/locales/hi/LC_MESSAGES/api/application_info.po b/docs/locales/hi/LC_MESSAGES/api/application_info.po index 31922fca86..aa54ca1f2a 100644 --- a/docs/locales/hi/LC_MESSAGES/api/application_info.po +++ b/docs/locales/hi/LC_MESSAGES/api/application_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -62,9 +62,6 @@ 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 `_." @@ -89,6 +86,36 @@ 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 "The approximate count of guilds to which the app has been added, if any." +msgstr "The approximate count of guilds to which the app has been added, if any." + +msgid "The approximate count of users who have installed the application, if any." +msgstr "The approximate count of users who have installed the application, if any." + +msgid "The list of redirect URIs for the application, if set." +msgstr "The list of redirect URIs for the application, if set." + +msgid "The interactions endpoint URL for the application, if set." +msgstr "The interactions endpoint URL for the application, if set." + +msgid "The role connection verification URL for the application, if set." +msgstr "The role connection verification URL for the application, if set." + +msgid "The settings for the application's default in-app authorization link, if set." +msgstr "The settings for the application's default in-app authorization link, if set." + +msgid "Optional[List[:class:`AppInstallParams`]]" +msgstr "Optional[List[:class:`AppInstallParams`]]" + +msgid "The list of tags describing the content and functionality of the app, if set." +msgstr "The list of tags describing the content and functionality of the app, if set." + +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." + +msgid "The default custom authorization URL for the application, if set." +msgstr "The default custom authorization URL for the application, if set." + msgid "Parameters" msgstr "Parameters" @@ -104,9 +131,30 @@ 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 "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 "It currently returns an empty string." +msgstr "It currently returns an empty string." + 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 the settings for the custom authorization URL of an application." +msgstr "Represents the settings for the custom authorization URL of an application." + +msgid "The list of OAuth2 scopes for adding the application to a guild." +msgstr "The list of OAuth2 scopes for adding the application to a guild." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The permissions to request for the bot role in the guild." +msgstr "The permissions to request for the bot role in the guild." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + msgid "Represents an application team for a bot provided by Discord." msgstr "Represents an application team for a bot provided by Discord." diff --git a/docs/locales/hi/LC_MESSAGES/api/async_iter.po b/docs/locales/hi/LC_MESSAGES/api/async_iter.po index b322381f39..17ca22b162 100644 --- a/docs/locales/hi/LC_MESSAGES/api/async_iter.po +++ b/docs/locales/hi/LC_MESSAGES/api/async_iter.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/api/audit_logs.po b/docs/locales/hi/LC_MESSAGES/api/audit_logs.po index 05c56e27c2..da02dbd35f 100644 --- a/docs/locales/hi/LC_MESSAGES/api/audit_logs.po +++ b/docs/locales/hi/LC_MESSAGES/api/audit_logs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/api/clients.po b/docs/locales/hi/LC_MESSAGES/api/clients.po index e4b8f95258..50f8605e7e 100644 --- a/docs/locales/hi/LC_MESSAGES/api/clients.po +++ b/docs/locales/hi/LC_MESSAGES/api/clients.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -257,6 +257,12 @@ msgstr "The coroutine to register as the post-invoke hook." msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -893,8 +968,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -986,6 +1061,9 @@ msgstr "A shortcut decorator that initializes the provided subclass of :class:`. 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 :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1028,8 +1106,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1406,6 +1484,9 @@ msgstr "An iterator that recursively walks through all application commands and msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." @@ -1499,6 +1580,15 @@ msgstr "Whether to enable events that are useful only for debugging gateway rela 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 "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" + +msgid "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." + +msgid "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." +msgstr "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." + 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``." @@ -1526,6 +1616,9 @@ msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used 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 "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 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." diff --git a/docs/locales/hi/LC_MESSAGES/api/cogs.po b/docs/locales/hi/LC_MESSAGES/api/cogs.po index 9449613e48..433cfc9750 100644 --- a/docs/locales/hi/LC_MESSAGES/api/cogs.po +++ b/docs/locales/hi/LC_MESSAGES/api/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -56,6 +56,9 @@ msgstr "Yields" msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." diff --git a/docs/locales/hi/LC_MESSAGES/api/data_classes.po b/docs/locales/hi/LC_MESSAGES/api/data_classes.po index bc1c9d6327..c5e9f3fb51 100644 --- a/docs/locales/hi/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/hi/LC_MESSAGES/api/data_classes.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -296,8 +296,8 @@ 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:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`GuildSticker`" msgstr ":class:`GuildSticker`" @@ -803,8 +803,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." msgid "Whether the websocket is currently rate limited." msgstr "Whether the websocket is currently rate limited." @@ -926,6 +926,9 @@ msgstr ":meth:`VoiceChannel.get_partial_message`" msgid ":meth:`StageChannel.get_partial_message`" msgstr ":meth:`StageChannel.get_partial_message`" +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.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." @@ -941,8 +944,8 @@ 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 "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" msgid "The message ID." msgstr "The message ID." @@ -1031,8 +1034,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1682,8 +1685,8 @@ 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 "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" msgid "Represents a poll answer object." msgstr "Represents a poll answer object." @@ -2039,6 +2042,9 @@ msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum 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 "Returns ``True`` if the embedded media download options are hidden for the media channel posts." +msgstr "Returns ``True`` if the embedded media download options are hidden for the media channel posts." + msgid "Wraps up the Discord SKU flags." msgstr "Wraps up the Discord SKU flags." @@ -2594,6 +2600,9 @@ msgstr ":attr:`view_audit_log`" msgid ":attr:`view_guild_insights`" msgstr ":attr:`view_guild_insights`" +msgid ":attr:`view_creator_monetization_analytics`" +msgstr ":attr:`view_creator_monetization_analytics`" + msgid ":attr:`manage_guild`" msgstr ":attr:`manage_guild`" @@ -2624,6 +2633,9 @@ msgstr "A factory method that creates a :class:`Permissions` with all \"General\ 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 "Added :attr:`view_creator_monetization_analytics` permission." +msgstr "Added :attr:`view_creator_monetization_analytics` permission." + 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\\)`" @@ -2810,6 +2822,15 @@ msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in 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 user can view creator monetization (role subscription) analytics." +msgstr "Returns ``True`` if a user can view creator monetization (role subscription) analytics." + +msgid "Returns ``True`` if a user can use the soundboard in a voice channel." +msgstr "Returns ``True`` if a user can use the soundboard in a voice channel." + +msgid "Returns ``True`` if a user can use external soundboard sounds in a voice channel." +msgstr "Returns ``True`` if a user can use external soundboard sounds in a voice channel." + msgid "Returns ``True`` if a member can send voice messages." msgstr "Returns ``True`` if a member can send voice messages." diff --git a/docs/locales/hi/LC_MESSAGES/api/enums.po b/docs/locales/hi/LC_MESSAGES/api/enums.po index b12fa4f3a2..bc214e5db0 100644 --- a/docs/locales/hi/LC_MESSAGES/api/enums.po +++ b/docs/locales/hi/LC_MESSAGES/api/enums.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -974,8 +974,8 @@ 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 "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` 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." @@ -1769,3 +1769,15 @@ 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." +msgid "Represents a subscription's status." +msgstr "Represents a subscription's status." + +msgid "The subscription is active and is scheduled to renew." +msgstr "The subscription is active and is scheduled to renew." + +msgid "The subscription is active but will not renew." +msgstr "The subscription is active but will not renew." + +msgid "The subscription is inactive and the subscription owner is not being charged." +msgstr "The subscription is inactive and the subscription owner is not being charged." + diff --git a/docs/locales/hi/LC_MESSAGES/api/events.po b/docs/locales/hi/LC_MESSAGES/api/events.po index 3de9f161c1..97baa1dd7c 100644 --- a/docs/locales/hi/LC_MESSAGES/api/events.po +++ b/docs/locales/hi/LC_MESSAGES/api/events.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -293,33 +293,6 @@ msgstr "This is only for the messages sent from the client WebSocket. The voice 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" @@ -392,8 +365,8 @@ 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 "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." @@ -791,6 +764,60 @@ 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 "Monetization" +msgstr "Monetization" + +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 cancelled." +msgstr "Called when a user's subscription to an Entitlement is cancelled." + +msgid "Before October 1, 2024, this event was called when a user's subscription was renewed." +msgstr "Before October 1, 2024, this event was called when a user's subscription was renewed." + +msgid "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." +msgstr "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + +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 "Called when a subscription is created for the application." +msgstr "Called when a subscription is created for the application." + +msgid "The subscription that was created." +msgstr "The subscription that was created." + +msgid "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." +msgstr "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." + +msgid "The subscription that was updated." +msgstr "The subscription that was updated." + +msgid "Called when a subscription has been deleted." +msgstr "Called when a subscription has been deleted." + +msgid "The subscription that was deleted." +msgstr "The subscription that was deleted." + msgid "Scheduled Events" msgstr "Scheduled Events" diff --git a/docs/locales/hi/LC_MESSAGES/api/exceptions.po b/docs/locales/hi/LC_MESSAGES/api/exceptions.po index 1840bc94e8..9d41e4317b 100644 --- a/docs/locales/hi/LC_MESSAGES/api/exceptions.po +++ b/docs/locales/hi/LC_MESSAGES/api/exceptions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/api/index.po b/docs/locales/hi/LC_MESSAGES/api/index.po index 80efb62166..bca668d351 100644 --- a/docs/locales/hi/LC_MESSAGES/api/index.po +++ b/docs/locales/hi/LC_MESSAGES/api/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/api/models.po b/docs/locales/hi/LC_MESSAGES/api/models.po index 9c71559652..2cb953bd0b 100644 --- a/docs/locales/hi/LC_MESSAGES/api/models.po +++ b/docs/locales/hi/LC_MESSAGES/api/models.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -1202,6 +1202,9 @@ msgstr "If provided, the number of seconds to wait in the background before dele 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 was not found." +msgstr "The message was not found." + msgid "Editing the message failed." msgstr "Editing the message failed." @@ -1268,8 +1271,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1445,8 +1448,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :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." @@ -1568,9 +1571,45 @@ msgstr ":class:`SKUFlags`" msgid "Returns the URL for the SKU." msgstr "Returns the URL for the SKU." +msgid "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." + +msgid "The user for which to retrieve subscriptions." +msgstr "The user for which to retrieve subscriptions." + +msgid "Retrieves subscriptions before this date or object. If a datetime 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 subscriptions before this date or object. If a datetime 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 subscriptions after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve subscriptions after this date or object. If a datetime 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 subscriptions to retrieve. If ``None``, retrieves all subscriptions." +msgstr "The number of subscriptions to retrieve. If ``None``, retrieves all subscriptions." + +msgid ":class:`Subscription` -- A subscription that the user has for this SKU." +msgstr ":class:`Subscription` -- A subscription that the user has for this SKU." + +msgid "Getting the subscriptions failed." +msgstr "Getting the subscriptions failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters except for ``user`` are optional." +msgstr "All parameters except for ``user`` are optional." + msgid "Represents a Discord entitlement." msgstr "Represents a Discord entitlement." +msgid "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." +msgstr "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + msgid "The entitlement's ID." msgstr "The entitlement's ID." @@ -1607,17 +1646,14 @@ 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 "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.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 "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." +msgstr "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." msgid "Consuming the entitlement failed." msgstr "Consuming the entitlement failed." @@ -1631,6 +1667,57 @@ msgstr "A test entitlement is an entitlement that was created using :meth:`Guild msgid "Deleting the entitlement failed." msgstr "Deleting the entitlement failed." +msgid "Represents a user making recurring payments for one or more SKUs." +msgstr "Represents a user making recurring payments for one or more SKUs." + +msgid "Successful payments grant the user access to entitlements associated with the SKU." +msgstr "Successful payments grant the user access to entitlements associated with the SKU." + +msgid "The subscription's ID." +msgstr "The subscription's ID." + +msgid "The ID of the user that owns this subscription." +msgstr "The ID of the user that owns this subscription." + +msgid "The IDs of the SKUs this subscription is for." +msgstr "The IDs of the SKUs this subscription is for." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the entitlements this subscription is for." +msgstr "The IDs of the entitlements this subscription is for." + +msgid "The IDs of the SKUs that the buyer will be subscribed to at renewal." +msgstr "The IDs of the SKUs that the buyer will be subscribed to at renewal." + +msgid "The start of the current subscription period." +msgstr "The start of the current subscription period." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The end of the current subscription period." +msgstr "The end of the current subscription period." + +msgid "The status of the subscription." +msgstr "The status of the subscription." + +msgid ":class:`SubscriptionStatus`" +msgstr ":class:`SubscriptionStatus`" + +msgid "When the subscription was canceled." +msgstr "When the subscription was canceled." + +msgid ":class:`datetime.datetime` | ``None``" +msgstr ":class:`datetime.datetime` | ``None``" + +msgid "The user that owns this subscription." +msgstr "The user that owns this subscription." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + msgid "Guild" msgstr "Guild" @@ -1658,8 +1745,8 @@ 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 "Tuple[:class:`GuildEmoji`, ...]" +msgstr "Tuple[:class:`GuildEmoji`, ...]" msgid "All stickers that the guild owns." msgstr "All stickers that the guild owns." @@ -1781,9 +1868,6 @@ 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." @@ -2141,11 +2225,11 @@ 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:`GuildEmoji`, 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:`GuildEmoji`, 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 "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." msgid ":class:`ForumChannel`" msgstr ":class:`ForumChannel`" @@ -2657,8 +2741,8 @@ 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 "Retrieves all custom :class:`GuildEmoji`\\s from the guild." +msgstr "Retrieves all custom :class:`GuildEmoji`\\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." @@ -2669,11 +2753,11 @@ msgstr "An error occurred fetching the emojis." msgid "The retrieved emojis." msgstr "The retrieved emojis." -msgid "List[:class:`Emoji`]" -msgstr "List[:class:`Emoji`]" +msgid "List[:class:`GuildEmoji`]" +msgstr "List[:class:`GuildEmoji`]" -msgid "Retrieves a custom :class:`Emoji` from the guild." -msgstr "Retrieves a custom :class:`Emoji` from the guild." +msgid "Retrieves a custom :class:`GuildEmoji` from the guild." +msgstr "Retrieves a custom :class:`GuildEmoji` 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." @@ -2684,8 +2768,8 @@ msgstr "The emoji's ID." msgid "The retrieved emoji." msgstr "The retrieved emoji." -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid "The emoji requested could not be found." msgstr "The emoji requested could not be found." @@ -2693,8 +2777,8 @@ 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 "Creates a custom :class:`GuildEmoji` for the guild." +msgstr "Creates a custom :class:`GuildEmoji` 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." @@ -2723,8 +2807,8 @@ 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 "Deletes the custom :class:`GuildEmoji` from the guild." +msgstr "Deletes the custom :class:`GuildEmoji` 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." @@ -3446,6 +3530,15 @@ msgstr "For regular members this is just their avatar, but if they have a guild 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 member's display banner." +msgstr "Returns the member's display banner." + +msgid "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." +msgstr "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild banner the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild banner 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." @@ -3737,9 +3830,6 @@ 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." @@ -3890,9 +3980,6 @@ 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." @@ -4199,9 +4286,6 @@ msgstr "How many times the invite can be used. A value of ``0`` indicates that i 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." @@ -4316,8 +4400,8 @@ msgstr "The position of the role. This number is usually positive. The bottom ro 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 is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." +msgstr "Indicates if the role is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." msgid "Indicates if the role can be mentioned by users." msgstr "Indicates if the role can be mentioned by users." @@ -4346,12 +4430,21 @@ msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typeh 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 guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :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 "Whether the role is available for purchase." +msgstr "Whether the role is available for purchase." + +msgid "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Returns the role's permissions." msgstr "Returns the role's permissions." @@ -4439,20 +4532,26 @@ msgstr "A role tag is a piece of extra information attached to a managed role th 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 "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." +msgstr "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." + 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 "The subscription SKU and listing ID of the role." +msgstr "The subscription SKU and listing ID of 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 "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." msgid "Scheduled Event" msgstr "Scheduled Event" @@ -4694,6 +4793,9 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" + msgid "Onboarding" msgstr "Onboarding" @@ -4811,8 +4913,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" msgid "The option's title." msgstr "The option's title." @@ -5189,8 +5291,8 @@ msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the 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 "This is only available for threads in forum or media channels." +msgstr "This is only available for threads in forum or media channels." msgid "List[:class:`ForumTag`]" msgstr "List[:class:`ForumTag`]" @@ -5240,8 +5342,8 @@ 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 pinned to the top of its parent forum or media channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum or media 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." @@ -5381,8 +5483,8 @@ msgstr "The new duration in minutes before a thread is automatically archived fo 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 "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." 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" @@ -6131,8 +6233,8 @@ 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 "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" msgid "The ID of the channel the interaction was sent from." msgstr "The ID of the channel the interaction was sent from." @@ -6197,8 +6299,8 @@ 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 cached channel from which the interaction was sent. DM channels are not resolved. These are :class:`PartialMessageable` instead." +msgstr "The cached channel from which the interaction was sent. DM channels are not resolved. 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." @@ -6218,6 +6320,30 @@ msgstr "A response can only be done once. If secondary messages need to be sent, msgid "Returns the followup webhook for followup interactions." msgstr "Returns the followup webhook for followup interactions." +msgid ":class:`bool`: Checks if the interaction is guild authorised." +msgstr ":class:`bool`: Checks if the interaction is guild authorised." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorised." +msgstr ":class:`bool`: Checks if the interaction is user authorised." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is guild authorized." +msgstr ":class:`bool`: Checks if the interaction is guild authorized." + +msgid "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorized." +msgstr ":class:`bool`: Checks if the interaction is user authorized." + +msgid "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Fetches the original interaction response message associated with the interaction." msgstr "Fetches the original interaction response message associated with the interaction." @@ -6629,8 +6755,8 @@ msgstr "Whether the select is disabled or not." msgid "Emoji" msgstr "Emoji" -msgid "Represents a custom emoji." -msgstr "Represents a custom emoji." +msgid "Represents a custom emoji in a guild." +msgstr "Represents a custom emoji in a guild." 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``." @@ -6671,12 +6797,6 @@ 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." @@ -6716,6 +6836,48 @@ msgstr "An error occurred editing the emoji." msgid "The newly updated emoji." msgstr "The newly updated emoji." +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 "Represents a custom emoji from an application." +msgstr "Represents a custom emoji from an application." + +msgid "The application ID the emoji belongs to, if available." +msgstr "The application ID the emoji belongs to, if available." + +msgid "The user that created the emoji." +msgstr "The user that created the emoji." + +msgid "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." +msgstr "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." + +msgid "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." +msgstr "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." + +msgid "Whether the bot can use this emoji." +msgstr "Whether the bot can use this emoji." + +msgid "Deletes the application emoji." +msgstr "Deletes the application emoji." + +msgid "You must own the emoji to do this." +msgstr "You must own the emoji to do this." + +msgid "You are not allowed to delete the emoji." +msgstr "You are not allowed to delete the emoji." + +msgid "Edits the application emoji." +msgstr "Edits the application emoji." + +msgid "You are not allowed to edit the emoji." +msgstr "You are not allowed to edit the emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + msgid "Represents a \"partial\" emoji." msgstr "Represents a \"partial\" emoji." @@ -6953,14 +7115,14 @@ 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 "Optional[:class:`str` | :class:`discord.GuildEmoji`]" +msgstr "Optional[:class:`str` | :class:`discord.GuildEmoji`]" 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 "Whether a tag is required to be specified when creating a thread in this forum or media channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum or media channel." msgid "Tags are specified in :attr:`applied_tags`." msgstr "Tags are specified in :attr:`applied_tags`." @@ -6977,8 +7139,8 @@ msgstr "The default sort order type to use to order posts in this channel. .. v 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 default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, 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:`GuildEmoji`, 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" @@ -7010,6 +7172,24 @@ 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 media channel. Subclass of :class:`ForumChannel`." +msgstr "Represents a Discord media channel. Subclass of :class:`ForumChannel`." + +msgid "Whether media download options are hidden in this media channel." +msgstr "Whether media download options are hidden in this media channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." + +msgid "Whether media download options should be hidden in this media channel." +msgstr "Whether media download options should be hidden in this media channel." + +msgid "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.MediaChannel`]" +msgstr "Optional[:class:`.MediaChannel`]" + msgid "Represents a Discord guild voice channel." msgstr "Represents a Discord guild voice channel." diff --git a/docs/locales/hi/LC_MESSAGES/api/sinks.po b/docs/locales/hi/LC_MESSAGES/api/sinks.po index c041d54623..fe7d7f63fa 100644 --- a/docs/locales/hi/LC_MESSAGES/api/sinks.po +++ b/docs/locales/hi/LC_MESSAGES/api/sinks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/api/ui_kit.po b/docs/locales/hi/LC_MESSAGES/api/ui_kit.po index 0e374cd9d7..ed8d39153f 100644 --- a/docs/locales/hi/LC_MESSAGES/api/ui_kit.po +++ b/docs/locales/hi/LC_MESSAGES/api/ui_kit.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -44,8 +44,8 @@ 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 emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." 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)." @@ -122,8 +122,8 @@ 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 in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. 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." @@ -317,8 +317,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" msgid "The callback associated with this UI item." msgstr "The callback associated with this UI item." @@ -419,8 +455,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." @@ -449,6 +485,9 @@ 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 "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 "The title of the modal dialog." msgstr "The title of the modal dialog." diff --git a/docs/locales/hi/LC_MESSAGES/api/utils.po b/docs/locales/hi/LC_MESSAGES/api/utils.po index c59ea4f08e..b93009f4b4 100644 --- a/docs/locales/hi/LC_MESSAGES/api/utils.po +++ b/docs/locales/hi/LC_MESSAGES/api/utils.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -407,18 +407,24 @@ msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` 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 "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" + +msgid "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." + 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 "With filter parameter:" +msgstr "With filter parameter:" + 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." @@ -446,6 +452,9 @@ 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 "Example" +msgstr "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." diff --git a/docs/locales/hi/LC_MESSAGES/api/version_info.po b/docs/locales/hi/LC_MESSAGES/api/version_info.po index a57036beac..e0f9d9bc6d 100644 --- a/docs/locales/hi/LC_MESSAGES/api/version_info.po +++ b/docs/locales/hi/LC_MESSAGES/api/version_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/api/voice.po b/docs/locales/hi/LC_MESSAGES/api/voice.po index ce04e5fda5..8441b7e5e9 100644 --- a/docs/locales/hi/LC_MESSAGES/api/voice.po +++ b/docs/locales/hi/LC_MESSAGES/api/voice.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -215,6 +215,12 @@ msgstr "You are not connected." msgid "Encoding the data failed." msgstr "Encoding the data failed." +msgid "Returns the elapsed time of the playing audio." +msgstr "Returns the elapsed time of the playing audio." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" + msgid "A class that represents the Discord voice protocol." msgstr "A class that represents the Discord voice protocol." @@ -380,11 +386,11 @@ msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` i 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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 "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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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." diff --git a/docs/locales/hi/LC_MESSAGES/api/webhooks.po b/docs/locales/hi/LC_MESSAGES/api/webhooks.po index c6f477ed90..de99e2a6b0 100644 --- a/docs/locales/hi/LC_MESSAGES/api/webhooks.po +++ b/docs/locales/hi/LC_MESSAGES/api/webhooks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/changelog.po b/docs/locales/hi/LC_MESSAGES/changelog.po index 29a1ffefe4..02e1e7e5bc 100644 --- a/docs/locales/hi/LC_MESSAGES/changelog.po +++ b/docs/locales/hi/LC_MESSAGES/changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -26,8 +26,122 @@ 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 "⚠️ **This version removes support for Python 3.8.** ⚠️" +msgstr "⚠️ **This version removes support for Python 3.8.** ⚠️" + +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 "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" +msgstr "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" + +msgid "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" +msgstr "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" + +msgid "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" +msgstr "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" + +msgid "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" +msgstr "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" + +msgid "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" +msgstr "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" + +msgid "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" +msgstr "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" + +msgid "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" +msgstr "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" + +msgid "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" +msgstr "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" + +msgid "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" +msgstr "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" + +msgid "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" +msgstr "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" +msgstr "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" + +msgid "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" +msgstr "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" + +msgid "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" +msgstr "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" + +msgid "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" +msgstr "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" + +msgid "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" +msgstr "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" + +msgid "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" +msgstr "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" + +msgid "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" +msgstr "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" + +msgid "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" +msgstr "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" + +msgid "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" +msgstr "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" + +msgid "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" +msgstr "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" + +msgid "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" +msgstr "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" + +msgid "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" +msgstr "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" + +msgid "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" +msgstr "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" + +msgid "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" +msgstr "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" + +msgid "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." +msgstr "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." + +msgid "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" +msgstr "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" + +msgid "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" +msgstr "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" msgid "Changed" msgstr "Changed" @@ -35,14 +149,65 @@ 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 "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" -msgid "Added" -msgstr "Added" +msgid "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" -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 "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" +msgstr "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" + +msgid "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" +msgstr "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" + +msgid "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "[2.6.1] - 2024-09-15" +msgstr "[2.6.1] - 2024-09-15" + +msgid "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" +msgstr "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" + +msgid "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" +msgstr "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" + +msgid "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" +msgstr "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" + +msgid "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" +msgstr "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" + +msgid "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" +msgstr "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" msgid "[2.6.0] - 2024-07-09" msgstr "[2.6.0] - 2024-07-09" @@ -92,9 +257,6 @@ msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord 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))" @@ -119,8 +281,8 @@ msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#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 option type hints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option type hints 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))" @@ -152,8 +314,8 @@ msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.co 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 "HTTP requests that fail with a 503 status are now retried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now retried. ([#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))" @@ -401,8 +563,8 @@ msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ( 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 `AttributeError` when accessing a `Select` object's values when it has not been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it has not 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))" @@ -413,8 +575,8 @@ msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://gi 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 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))" @@ -446,8 +608,8 @@ msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. 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 `Option` not working on bridge commands because `ext.commands.Command` does not recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` does not 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))" @@ -554,8 +716,8 @@ msgstr "Advanced version info is now stored as a dict in `version_info.advanced` 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 bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files did not 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 did not 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))" @@ -686,9 +848,6 @@ msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` funct 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))" @@ -959,11 +1118,11 @@ msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://gith 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 the error when Discord does not send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord does not 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 "Fix AttributeError when voice client `play()` function is not completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function is not 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" diff --git a/docs/locales/hi/LC_MESSAGES/cogs.po b/docs/locales/hi/LC_MESSAGES/cogs.po index d3b99d560a..559c916357 100644 --- a/docs/locales/hi/LC_MESSAGES/cogs.po +++ b/docs/locales/hi/LC_MESSAGES/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/discord.po b/docs/locales/hi/LC_MESSAGES/discord.po index 1d84eae006..6f318a8fd6 100644 --- a/docs/locales/hi/LC_MESSAGES/discord.po +++ b/docs/locales/hi/LC_MESSAGES/discord.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/ext/bridge/api.po b/docs/locales/hi/LC_MESSAGES/ext/bridge/api.po index c8f2bfa309..dde94f73f2 100644 --- a/docs/locales/hi/LC_MESSAGES/ext/bridge/api.po +++ b/docs/locales/hi/LC_MESSAGES/ext/bridge/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -353,14 +353,23 @@ 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 "Options" +msgstr "Options" -msgid "Option" -msgstr "Option" +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" -msgid "BridgeOption" -msgstr "BridgeOption" +msgid "A decorator that can be used instead of typehinting :class:`.BridgeOption`." +msgstr "A decorator that can be used instead of typehinting :class:`.BridgeOption`." + +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 ":class:`str`" +msgstr ":class:`str`" + +msgid "Objects" +msgstr "Objects" 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." diff --git a/docs/locales/hi/LC_MESSAGES/ext/bridge/index.po b/docs/locales/hi/LC_MESSAGES/ext/bridge/index.po index d829d3af31..94d5b4b663 100644 --- a/docs/locales/hi/LC_MESSAGES/ext/bridge/index.po +++ b/docs/locales/hi/LC_MESSAGES/ext/bridge/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/ext/commands/api.po b/docs/locales/hi/LC_MESSAGES/ext/commands/api.po index 76f6bbe713..fbc31a0ce7 100644 --- a/docs/locales/hi/LC_MESSAGES/ext/commands/api.po +++ b/docs/locales/hi/LC_MESSAGES/ext/commands/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -269,6 +269,12 @@ msgstr "The view is not persistent. A persistent view has no timeout and all msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -920,8 +995,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -1019,6 +1094,9 @@ msgstr "Optional[:class:`.GuildSticker`]" msgid "Returns a user with the given ID." msgstr "Returns a user with the given ID." +msgid "The :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1064,8 +1142,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1505,8 +1583,11 @@ msgstr "An iterator that recursively walks through all application commands and 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" msgid "Duplicates due to aliases are no longer returned" msgstr "Duplicates due to aliases are no longer returned" @@ -1928,6 +2009,9 @@ msgstr "An iterator that recursively walks through this cog's commands and subco msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." @@ -2108,6 +2192,9 @@ 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 tuple of command types to exclude from the filter." +msgstr "A tuple of command types to exclude from the filter." + msgid "A list of commands that passed the filter." msgstr "A list of commands that passed the filter." @@ -3371,8 +3458,8 @@ 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 "Converts to a :class:`~discord.GuildEmoji`." +msgstr "Converts to a :class:`~discord.GuildEmoji`." 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." @@ -3383,8 +3470,8 @@ 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" msgid "Converts to a :class:`~discord.PartialEmoji`." msgstr "Converts to a :class:`~discord.PartialEmoji`." diff --git a/docs/locales/hi/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/hi/LC_MESSAGES/ext/commands/cogs.po index b6bdcd19af..3c3bdcf691 100644 --- a/docs/locales/hi/LC_MESSAGES/ext/commands/cogs.po +++ b/docs/locales/hi/LC_MESSAGES/ext/commands/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/ext/commands/commands.po b/docs/locales/hi/LC_MESSAGES/ext/commands/commands.po index 1a44455c05..6328f825ec 100644 --- a/docs/locales/hi/LC_MESSAGES/ext/commands/commands.po +++ b/docs/locales/hi/LC_MESSAGES/ext/commands/commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -266,8 +266,8 @@ msgstr ":class:`Game`" msgid ":class:`Colour`" msgstr ":class:`Colour`" -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`PartialEmoji`" msgstr ":class:`PartialEmoji`" diff --git a/docs/locales/hi/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/hi/LC_MESSAGES/ext/commands/extensions.po index aefcfd5e04..1d605e8e3f 100644 --- a/docs/locales/hi/LC_MESSAGES/ext/commands/extensions.po +++ b/docs/locales/hi/LC_MESSAGES/ext/commands/extensions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/ext/commands/index.po b/docs/locales/hi/LC_MESSAGES/ext/commands/index.po index 201036b377..57a313ebef 100644 --- a/docs/locales/hi/LC_MESSAGES/ext/commands/index.po +++ b/docs/locales/hi/LC_MESSAGES/ext/commands/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/ext/pages/index.po b/docs/locales/hi/LC_MESSAGES/ext/pages/index.po index 30b0c29ee7..fccb0b2b36 100644 --- a/docs/locales/hi/LC_MESSAGES/ext/pages/index.po +++ b/docs/locales/hi/LC_MESSAGES/ext/pages/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -536,14 +536,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + 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 "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." msgid "PaginatorMenu" msgstr "PaginatorMenu" @@ -572,8 +602,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." diff --git a/docs/locales/hi/LC_MESSAGES/ext/tasks/index.po b/docs/locales/hi/LC_MESSAGES/ext/tasks/index.po index beb1ad9f67..5ca39205f0 100644 --- a/docs/locales/hi/LC_MESSAGES/ext/tasks/index.po +++ b/docs/locales/hi/LC_MESSAGES/ext/tasks/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/faq.po b/docs/locales/hi/LC_MESSAGES/faq.po index 5326557f7a..343fdb35fa 100644 --- a/docs/locales/hi/LC_MESSAGES/faq.po +++ b/docs/locales/hi/LC_MESSAGES/faq.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -161,8 +161,8 @@ 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 "For custom emoji, you should pass an instance of :class:`GuildEmoji` or :class:`AppEmoji`. 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:`GuildEmoji` or :class:`AppEmoji`. 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>``." diff --git a/docs/locales/hi/LC_MESSAGES/index.po b/docs/locales/hi/LC_MESSAGES/index.po index e04d506e0c..f842f742ad 100644 --- a/docs/locales/hi/LC_MESSAGES/index.po +++ b/docs/locales/hi/LC_MESSAGES/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/installing.po b/docs/locales/hi/LC_MESSAGES/installing.po index 89b42dbb7a..449b52cd00 100644 --- a/docs/locales/hi/LC_MESSAGES/installing.po +++ b/docs/locales/hi/LC_MESSAGES/installing.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -20,8 +20,8 @@ msgstr "This is the documentation for Pycord, a library for Python to aid in cre 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 "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." +msgstr "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." msgid "Installing" msgstr "Installing" diff --git a/docs/locales/hi/LC_MESSAGES/intents.po b/docs/locales/hi/LC_MESSAGES/intents.po index 036ca6dbac..5b8548adc9 100644 --- a/docs/locales/hi/LC_MESSAGES/intents.po +++ b/docs/locales/hi/LC_MESSAGES/intents.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/logging.po b/docs/locales/hi/LC_MESSAGES/logging.po index 9b9b2f2707..793abccd4a 100644 --- a/docs/locales/hi/LC_MESSAGES/logging.po +++ b/docs/locales/hi/LC_MESSAGES/logging.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/migrating_to_v1.po b/docs/locales/hi/LC_MESSAGES/migrating_to_v1.po index ba2c21442b..fef2da452e 100644 --- a/docs/locales/hi/LC_MESSAGES/migrating_to_v1.po +++ b/docs/locales/hi/LC_MESSAGES/migrating_to_v1.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/migrating_to_v2.po b/docs/locales/hi/LC_MESSAGES/migrating_to_v2.po index 41ef72997c..227dc45b7e 100644 --- a/docs/locales/hi/LC_MESSAGES/migrating_to_v2.po +++ b/docs/locales/hi/LC_MESSAGES/migrating_to_v2.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/old_changelog.po b/docs/locales/hi/LC_MESSAGES/old_changelog.po index 21e169d5d4..b790838a9d 100644 --- a/docs/locales/hi/LC_MESSAGES/old_changelog.po +++ b/docs/locales/hi/LC_MESSAGES/old_changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -1208,8 +1208,8 @@ msgstr "|commands| Extensions that fail internally due to ImportError will no lo 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| Allow converters from custom extension packages. (:dpy-issue:`2369`, 2374)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, 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`)" diff --git a/docs/locales/hi/LC_MESSAGES/quickstart.po b/docs/locales/hi/LC_MESSAGES/quickstart.po index 21a2adf607..ef90f16283 100644 --- a/docs/locales/hi/LC_MESSAGES/quickstart.po +++ b/docs/locales/hi/LC_MESSAGES/quickstart.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/hi/LC_MESSAGES/version_guarantees.po b/docs/locales/hi/LC_MESSAGES/version_guarantees.po index 5a827907dc..2f0c52e1b1 100644 --- a/docs/locales/hi/LC_MESSAGES/version_guarantees.po +++ b/docs/locales/hi/LC_MESSAGES/version_guarantees.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/api/abcs.po b/docs/locales/it/LC_MESSAGES/api/abcs.po index dd0448a634..942c889d89 100644 --- a/docs/locales/it/LC_MESSAGES/api/abcs.po +++ b/docs/locales/it/LC_MESSAGES/api/abcs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/api/application_commands.po b/docs/locales/it/LC_MESSAGES/api/application_commands.po index ee950c0b7a..f1e2c1e350 100644 --- a/docs/locales/it/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/it/LC_MESSAGES/api/application_commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -311,6 +311,9 @@ msgstr "The location where this command can be used. Cannot be set if this is a msgid "Set[:class:`InteractionContextType`]" msgstr "Set[:class:`InteractionContextType`]" +msgid "The type of the None singleton." +msgstr "The type of the None singleton." + msgid "Creates a copy of this command." msgstr "Creates a copy of this command." @@ -362,6 +365,9 @@ msgstr "Yields" msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Creates a copy of this command group." msgstr "Creates a copy of this command group." @@ -848,6 +854,24 @@ 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 ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Represents context for a slash command's option autocomplete." msgstr "Represents context for a slash command's option autocomplete." diff --git a/docs/locales/it/LC_MESSAGES/api/application_info.po b/docs/locales/it/LC_MESSAGES/api/application_info.po index 31922fca86..aa54ca1f2a 100644 --- a/docs/locales/it/LC_MESSAGES/api/application_info.po +++ b/docs/locales/it/LC_MESSAGES/api/application_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -62,9 +62,6 @@ 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 `_." @@ -89,6 +86,36 @@ 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 "The approximate count of guilds to which the app has been added, if any." +msgstr "The approximate count of guilds to which the app has been added, if any." + +msgid "The approximate count of users who have installed the application, if any." +msgstr "The approximate count of users who have installed the application, if any." + +msgid "The list of redirect URIs for the application, if set." +msgstr "The list of redirect URIs for the application, if set." + +msgid "The interactions endpoint URL for the application, if set." +msgstr "The interactions endpoint URL for the application, if set." + +msgid "The role connection verification URL for the application, if set." +msgstr "The role connection verification URL for the application, if set." + +msgid "The settings for the application's default in-app authorization link, if set." +msgstr "The settings for the application's default in-app authorization link, if set." + +msgid "Optional[List[:class:`AppInstallParams`]]" +msgstr "Optional[List[:class:`AppInstallParams`]]" + +msgid "The list of tags describing the content and functionality of the app, if set." +msgstr "The list of tags describing the content and functionality of the app, if set." + +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." + +msgid "The default custom authorization URL for the application, if set." +msgstr "The default custom authorization URL for the application, if set." + msgid "Parameters" msgstr "Parameters" @@ -104,9 +131,30 @@ 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 "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 "It currently returns an empty string." +msgstr "It currently returns an empty string." + 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 the settings for the custom authorization URL of an application." +msgstr "Represents the settings for the custom authorization URL of an application." + +msgid "The list of OAuth2 scopes for adding the application to a guild." +msgstr "The list of OAuth2 scopes for adding the application to a guild." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The permissions to request for the bot role in the guild." +msgstr "The permissions to request for the bot role in the guild." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + msgid "Represents an application team for a bot provided by Discord." msgstr "Represents an application team for a bot provided by Discord." diff --git a/docs/locales/it/LC_MESSAGES/api/async_iter.po b/docs/locales/it/LC_MESSAGES/api/async_iter.po index b322381f39..17ca22b162 100644 --- a/docs/locales/it/LC_MESSAGES/api/async_iter.po +++ b/docs/locales/it/LC_MESSAGES/api/async_iter.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/api/audit_logs.po b/docs/locales/it/LC_MESSAGES/api/audit_logs.po index 05c56e27c2..da02dbd35f 100644 --- a/docs/locales/it/LC_MESSAGES/api/audit_logs.po +++ b/docs/locales/it/LC_MESSAGES/api/audit_logs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/api/clients.po b/docs/locales/it/LC_MESSAGES/api/clients.po index e4b8f95258..50f8605e7e 100644 --- a/docs/locales/it/LC_MESSAGES/api/clients.po +++ b/docs/locales/it/LC_MESSAGES/api/clients.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -257,6 +257,12 @@ msgstr "The coroutine to register as the post-invoke hook." msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -893,8 +968,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -986,6 +1061,9 @@ msgstr "A shortcut decorator that initializes the provided subclass of :class:`. 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 :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1028,8 +1106,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1406,6 +1484,9 @@ msgstr "An iterator that recursively walks through all application commands and msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." @@ -1499,6 +1580,15 @@ msgstr "Whether to enable events that are useful only for debugging gateway rela 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 "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" + +msgid "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." + +msgid "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." +msgstr "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." + 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``." @@ -1526,6 +1616,9 @@ msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used 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 "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 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." diff --git a/docs/locales/it/LC_MESSAGES/api/cogs.po b/docs/locales/it/LC_MESSAGES/api/cogs.po index 9449613e48..433cfc9750 100644 --- a/docs/locales/it/LC_MESSAGES/api/cogs.po +++ b/docs/locales/it/LC_MESSAGES/api/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -56,6 +56,9 @@ msgstr "Yields" msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." diff --git a/docs/locales/it/LC_MESSAGES/api/data_classes.po b/docs/locales/it/LC_MESSAGES/api/data_classes.po index bc1c9d6327..c5e9f3fb51 100644 --- a/docs/locales/it/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/it/LC_MESSAGES/api/data_classes.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -296,8 +296,8 @@ 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:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`GuildSticker`" msgstr ":class:`GuildSticker`" @@ -803,8 +803,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." msgid "Whether the websocket is currently rate limited." msgstr "Whether the websocket is currently rate limited." @@ -926,6 +926,9 @@ msgstr ":meth:`VoiceChannel.get_partial_message`" msgid ":meth:`StageChannel.get_partial_message`" msgstr ":meth:`StageChannel.get_partial_message`" +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.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." @@ -941,8 +944,8 @@ 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 "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" msgid "The message ID." msgstr "The message ID." @@ -1031,8 +1034,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1682,8 +1685,8 @@ 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 "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" msgid "Represents a poll answer object." msgstr "Represents a poll answer object." @@ -2039,6 +2042,9 @@ msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum 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 "Returns ``True`` if the embedded media download options are hidden for the media channel posts." +msgstr "Returns ``True`` if the embedded media download options are hidden for the media channel posts." + msgid "Wraps up the Discord SKU flags." msgstr "Wraps up the Discord SKU flags." @@ -2594,6 +2600,9 @@ msgstr ":attr:`view_audit_log`" msgid ":attr:`view_guild_insights`" msgstr ":attr:`view_guild_insights`" +msgid ":attr:`view_creator_monetization_analytics`" +msgstr ":attr:`view_creator_monetization_analytics`" + msgid ":attr:`manage_guild`" msgstr ":attr:`manage_guild`" @@ -2624,6 +2633,9 @@ msgstr "A factory method that creates a :class:`Permissions` with all \"General\ 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 "Added :attr:`view_creator_monetization_analytics` permission." +msgstr "Added :attr:`view_creator_monetization_analytics` permission." + 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\\)`" @@ -2810,6 +2822,15 @@ msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in 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 user can view creator monetization (role subscription) analytics." +msgstr "Returns ``True`` if a user can view creator monetization (role subscription) analytics." + +msgid "Returns ``True`` if a user can use the soundboard in a voice channel." +msgstr "Returns ``True`` if a user can use the soundboard in a voice channel." + +msgid "Returns ``True`` if a user can use external soundboard sounds in a voice channel." +msgstr "Returns ``True`` if a user can use external soundboard sounds in a voice channel." + msgid "Returns ``True`` if a member can send voice messages." msgstr "Returns ``True`` if a member can send voice messages." diff --git a/docs/locales/it/LC_MESSAGES/api/enums.po b/docs/locales/it/LC_MESSAGES/api/enums.po index b12fa4f3a2..bc214e5db0 100644 --- a/docs/locales/it/LC_MESSAGES/api/enums.po +++ b/docs/locales/it/LC_MESSAGES/api/enums.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -974,8 +974,8 @@ 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 "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` 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." @@ -1769,3 +1769,15 @@ 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." +msgid "Represents a subscription's status." +msgstr "Represents a subscription's status." + +msgid "The subscription is active and is scheduled to renew." +msgstr "The subscription is active and is scheduled to renew." + +msgid "The subscription is active but will not renew." +msgstr "The subscription is active but will not renew." + +msgid "The subscription is inactive and the subscription owner is not being charged." +msgstr "The subscription is inactive and the subscription owner is not being charged." + diff --git a/docs/locales/it/LC_MESSAGES/api/events.po b/docs/locales/it/LC_MESSAGES/api/events.po index 3de9f161c1..97baa1dd7c 100644 --- a/docs/locales/it/LC_MESSAGES/api/events.po +++ b/docs/locales/it/LC_MESSAGES/api/events.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -293,33 +293,6 @@ msgstr "This is only for the messages sent from the client WebSocket. The voice 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" @@ -392,8 +365,8 @@ 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 "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." @@ -791,6 +764,60 @@ 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 "Monetization" +msgstr "Monetization" + +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 cancelled." +msgstr "Called when a user's subscription to an Entitlement is cancelled." + +msgid "Before October 1, 2024, this event was called when a user's subscription was renewed." +msgstr "Before October 1, 2024, this event was called when a user's subscription was renewed." + +msgid "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." +msgstr "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + +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 "Called when a subscription is created for the application." +msgstr "Called when a subscription is created for the application." + +msgid "The subscription that was created." +msgstr "The subscription that was created." + +msgid "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." +msgstr "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." + +msgid "The subscription that was updated." +msgstr "The subscription that was updated." + +msgid "Called when a subscription has been deleted." +msgstr "Called when a subscription has been deleted." + +msgid "The subscription that was deleted." +msgstr "The subscription that was deleted." + msgid "Scheduled Events" msgstr "Scheduled Events" diff --git a/docs/locales/it/LC_MESSAGES/api/exceptions.po b/docs/locales/it/LC_MESSAGES/api/exceptions.po index 1840bc94e8..9d41e4317b 100644 --- a/docs/locales/it/LC_MESSAGES/api/exceptions.po +++ b/docs/locales/it/LC_MESSAGES/api/exceptions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/api/index.po b/docs/locales/it/LC_MESSAGES/api/index.po index 80efb62166..bca668d351 100644 --- a/docs/locales/it/LC_MESSAGES/api/index.po +++ b/docs/locales/it/LC_MESSAGES/api/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/api/models.po b/docs/locales/it/LC_MESSAGES/api/models.po index 9c71559652..2cb953bd0b 100644 --- a/docs/locales/it/LC_MESSAGES/api/models.po +++ b/docs/locales/it/LC_MESSAGES/api/models.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -1202,6 +1202,9 @@ msgstr "If provided, the number of seconds to wait in the background before dele 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 was not found." +msgstr "The message was not found." + msgid "Editing the message failed." msgstr "Editing the message failed." @@ -1268,8 +1271,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1445,8 +1448,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :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." @@ -1568,9 +1571,45 @@ msgstr ":class:`SKUFlags`" msgid "Returns the URL for the SKU." msgstr "Returns the URL for the SKU." +msgid "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." + +msgid "The user for which to retrieve subscriptions." +msgstr "The user for which to retrieve subscriptions." + +msgid "Retrieves subscriptions before this date or object. If a datetime 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 subscriptions before this date or object. If a datetime 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 subscriptions after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve subscriptions after this date or object. If a datetime 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 subscriptions to retrieve. If ``None``, retrieves all subscriptions." +msgstr "The number of subscriptions to retrieve. If ``None``, retrieves all subscriptions." + +msgid ":class:`Subscription` -- A subscription that the user has for this SKU." +msgstr ":class:`Subscription` -- A subscription that the user has for this SKU." + +msgid "Getting the subscriptions failed." +msgstr "Getting the subscriptions failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters except for ``user`` are optional." +msgstr "All parameters except for ``user`` are optional." + msgid "Represents a Discord entitlement." msgstr "Represents a Discord entitlement." +msgid "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." +msgstr "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + msgid "The entitlement's ID." msgstr "The entitlement's ID." @@ -1607,17 +1646,14 @@ 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 "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.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 "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." +msgstr "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." msgid "Consuming the entitlement failed." msgstr "Consuming the entitlement failed." @@ -1631,6 +1667,57 @@ msgstr "A test entitlement is an entitlement that was created using :meth:`Guild msgid "Deleting the entitlement failed." msgstr "Deleting the entitlement failed." +msgid "Represents a user making recurring payments for one or more SKUs." +msgstr "Represents a user making recurring payments for one or more SKUs." + +msgid "Successful payments grant the user access to entitlements associated with the SKU." +msgstr "Successful payments grant the user access to entitlements associated with the SKU." + +msgid "The subscription's ID." +msgstr "The subscription's ID." + +msgid "The ID of the user that owns this subscription." +msgstr "The ID of the user that owns this subscription." + +msgid "The IDs of the SKUs this subscription is for." +msgstr "The IDs of the SKUs this subscription is for." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the entitlements this subscription is for." +msgstr "The IDs of the entitlements this subscription is for." + +msgid "The IDs of the SKUs that the buyer will be subscribed to at renewal." +msgstr "The IDs of the SKUs that the buyer will be subscribed to at renewal." + +msgid "The start of the current subscription period." +msgstr "The start of the current subscription period." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The end of the current subscription period." +msgstr "The end of the current subscription period." + +msgid "The status of the subscription." +msgstr "The status of the subscription." + +msgid ":class:`SubscriptionStatus`" +msgstr ":class:`SubscriptionStatus`" + +msgid "When the subscription was canceled." +msgstr "When the subscription was canceled." + +msgid ":class:`datetime.datetime` | ``None``" +msgstr ":class:`datetime.datetime` | ``None``" + +msgid "The user that owns this subscription." +msgstr "The user that owns this subscription." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + msgid "Guild" msgstr "Guild" @@ -1658,8 +1745,8 @@ 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 "Tuple[:class:`GuildEmoji`, ...]" +msgstr "Tuple[:class:`GuildEmoji`, ...]" msgid "All stickers that the guild owns." msgstr "All stickers that the guild owns." @@ -1781,9 +1868,6 @@ 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." @@ -2141,11 +2225,11 @@ 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:`GuildEmoji`, 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:`GuildEmoji`, 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 "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." msgid ":class:`ForumChannel`" msgstr ":class:`ForumChannel`" @@ -2657,8 +2741,8 @@ 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 "Retrieves all custom :class:`GuildEmoji`\\s from the guild." +msgstr "Retrieves all custom :class:`GuildEmoji`\\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." @@ -2669,11 +2753,11 @@ msgstr "An error occurred fetching the emojis." msgid "The retrieved emojis." msgstr "The retrieved emojis." -msgid "List[:class:`Emoji`]" -msgstr "List[:class:`Emoji`]" +msgid "List[:class:`GuildEmoji`]" +msgstr "List[:class:`GuildEmoji`]" -msgid "Retrieves a custom :class:`Emoji` from the guild." -msgstr "Retrieves a custom :class:`Emoji` from the guild." +msgid "Retrieves a custom :class:`GuildEmoji` from the guild." +msgstr "Retrieves a custom :class:`GuildEmoji` 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." @@ -2684,8 +2768,8 @@ msgstr "The emoji's ID." msgid "The retrieved emoji." msgstr "The retrieved emoji." -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid "The emoji requested could not be found." msgstr "The emoji requested could not be found." @@ -2693,8 +2777,8 @@ 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 "Creates a custom :class:`GuildEmoji` for the guild." +msgstr "Creates a custom :class:`GuildEmoji` 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." @@ -2723,8 +2807,8 @@ 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 "Deletes the custom :class:`GuildEmoji` from the guild." +msgstr "Deletes the custom :class:`GuildEmoji` 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." @@ -3446,6 +3530,15 @@ msgstr "For regular members this is just their avatar, but if they have a guild 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 member's display banner." +msgstr "Returns the member's display banner." + +msgid "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." +msgstr "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild banner the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild banner 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." @@ -3737,9 +3830,6 @@ 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." @@ -3890,9 +3980,6 @@ 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." @@ -4199,9 +4286,6 @@ msgstr "How many times the invite can be used. A value of ``0`` indicates that i 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." @@ -4316,8 +4400,8 @@ msgstr "The position of the role. This number is usually positive. The bottom ro 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 is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." +msgstr "Indicates if the role is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." msgid "Indicates if the role can be mentioned by users." msgstr "Indicates if the role can be mentioned by users." @@ -4346,12 +4430,21 @@ msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typeh 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 guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :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 "Whether the role is available for purchase." +msgstr "Whether the role is available for purchase." + +msgid "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Returns the role's permissions." msgstr "Returns the role's permissions." @@ -4439,20 +4532,26 @@ msgstr "A role tag is a piece of extra information attached to a managed role th 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 "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." +msgstr "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." + 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 "The subscription SKU and listing ID of the role." +msgstr "The subscription SKU and listing ID of 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 "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." msgid "Scheduled Event" msgstr "Scheduled Event" @@ -4694,6 +4793,9 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" + msgid "Onboarding" msgstr "Onboarding" @@ -4811,8 +4913,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" msgid "The option's title." msgstr "The option's title." @@ -5189,8 +5291,8 @@ msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the 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 "This is only available for threads in forum or media channels." +msgstr "This is only available for threads in forum or media channels." msgid "List[:class:`ForumTag`]" msgstr "List[:class:`ForumTag`]" @@ -5240,8 +5342,8 @@ 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 pinned to the top of its parent forum or media channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum or media 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." @@ -5381,8 +5483,8 @@ msgstr "The new duration in minutes before a thread is automatically archived fo 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 "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." 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" @@ -6131,8 +6233,8 @@ 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 "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" msgid "The ID of the channel the interaction was sent from." msgstr "The ID of the channel the interaction was sent from." @@ -6197,8 +6299,8 @@ 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 cached channel from which the interaction was sent. DM channels are not resolved. These are :class:`PartialMessageable` instead." +msgstr "The cached channel from which the interaction was sent. DM channels are not resolved. 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." @@ -6218,6 +6320,30 @@ msgstr "A response can only be done once. If secondary messages need to be sent, msgid "Returns the followup webhook for followup interactions." msgstr "Returns the followup webhook for followup interactions." +msgid ":class:`bool`: Checks if the interaction is guild authorised." +msgstr ":class:`bool`: Checks if the interaction is guild authorised." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorised." +msgstr ":class:`bool`: Checks if the interaction is user authorised." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is guild authorized." +msgstr ":class:`bool`: Checks if the interaction is guild authorized." + +msgid "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorized." +msgstr ":class:`bool`: Checks if the interaction is user authorized." + +msgid "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Fetches the original interaction response message associated with the interaction." msgstr "Fetches the original interaction response message associated with the interaction." @@ -6629,8 +6755,8 @@ msgstr "Whether the select is disabled or not." msgid "Emoji" msgstr "Emoji" -msgid "Represents a custom emoji." -msgstr "Represents a custom emoji." +msgid "Represents a custom emoji in a guild." +msgstr "Represents a custom emoji in a guild." 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``." @@ -6671,12 +6797,6 @@ 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." @@ -6716,6 +6836,48 @@ msgstr "An error occurred editing the emoji." msgid "The newly updated emoji." msgstr "The newly updated emoji." +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 "Represents a custom emoji from an application." +msgstr "Represents a custom emoji from an application." + +msgid "The application ID the emoji belongs to, if available." +msgstr "The application ID the emoji belongs to, if available." + +msgid "The user that created the emoji." +msgstr "The user that created the emoji." + +msgid "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." +msgstr "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." + +msgid "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." +msgstr "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." + +msgid "Whether the bot can use this emoji." +msgstr "Whether the bot can use this emoji." + +msgid "Deletes the application emoji." +msgstr "Deletes the application emoji." + +msgid "You must own the emoji to do this." +msgstr "You must own the emoji to do this." + +msgid "You are not allowed to delete the emoji." +msgstr "You are not allowed to delete the emoji." + +msgid "Edits the application emoji." +msgstr "Edits the application emoji." + +msgid "You are not allowed to edit the emoji." +msgstr "You are not allowed to edit the emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + msgid "Represents a \"partial\" emoji." msgstr "Represents a \"partial\" emoji." @@ -6953,14 +7115,14 @@ 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 "Optional[:class:`str` | :class:`discord.GuildEmoji`]" +msgstr "Optional[:class:`str` | :class:`discord.GuildEmoji`]" 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 "Whether a tag is required to be specified when creating a thread in this forum or media channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum or media channel." msgid "Tags are specified in :attr:`applied_tags`." msgstr "Tags are specified in :attr:`applied_tags`." @@ -6977,8 +7139,8 @@ msgstr "The default sort order type to use to order posts in this channel. .. v 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 default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, 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:`GuildEmoji`, 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" @@ -7010,6 +7172,24 @@ 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 media channel. Subclass of :class:`ForumChannel`." +msgstr "Represents a Discord media channel. Subclass of :class:`ForumChannel`." + +msgid "Whether media download options are hidden in this media channel." +msgstr "Whether media download options are hidden in this media channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." + +msgid "Whether media download options should be hidden in this media channel." +msgstr "Whether media download options should be hidden in this media channel." + +msgid "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.MediaChannel`]" +msgstr "Optional[:class:`.MediaChannel`]" + msgid "Represents a Discord guild voice channel." msgstr "Represents a Discord guild voice channel." diff --git a/docs/locales/it/LC_MESSAGES/api/sinks.po b/docs/locales/it/LC_MESSAGES/api/sinks.po index c041d54623..fe7d7f63fa 100644 --- a/docs/locales/it/LC_MESSAGES/api/sinks.po +++ b/docs/locales/it/LC_MESSAGES/api/sinks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/api/ui_kit.po b/docs/locales/it/LC_MESSAGES/api/ui_kit.po index 0e374cd9d7..ed8d39153f 100644 --- a/docs/locales/it/LC_MESSAGES/api/ui_kit.po +++ b/docs/locales/it/LC_MESSAGES/api/ui_kit.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -44,8 +44,8 @@ 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 emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." 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)." @@ -122,8 +122,8 @@ 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 in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. 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." @@ -317,8 +317,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" msgid "The callback associated with this UI item." msgstr "The callback associated with this UI item." @@ -419,8 +455,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." @@ -449,6 +485,9 @@ 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 "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 "The title of the modal dialog." msgstr "The title of the modal dialog." diff --git a/docs/locales/it/LC_MESSAGES/api/utils.po b/docs/locales/it/LC_MESSAGES/api/utils.po index c59ea4f08e..b93009f4b4 100644 --- a/docs/locales/it/LC_MESSAGES/api/utils.po +++ b/docs/locales/it/LC_MESSAGES/api/utils.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -407,18 +407,24 @@ msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` 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 "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" + +msgid "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." + 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 "With filter parameter:" +msgstr "With filter parameter:" + 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." @@ -446,6 +452,9 @@ 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 "Example" +msgstr "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." diff --git a/docs/locales/it/LC_MESSAGES/api/version_info.po b/docs/locales/it/LC_MESSAGES/api/version_info.po index a57036beac..e0f9d9bc6d 100644 --- a/docs/locales/it/LC_MESSAGES/api/version_info.po +++ b/docs/locales/it/LC_MESSAGES/api/version_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/api/voice.po b/docs/locales/it/LC_MESSAGES/api/voice.po index ce04e5fda5..8441b7e5e9 100644 --- a/docs/locales/it/LC_MESSAGES/api/voice.po +++ b/docs/locales/it/LC_MESSAGES/api/voice.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -215,6 +215,12 @@ msgstr "You are not connected." msgid "Encoding the data failed." msgstr "Encoding the data failed." +msgid "Returns the elapsed time of the playing audio." +msgstr "Returns the elapsed time of the playing audio." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" + msgid "A class that represents the Discord voice protocol." msgstr "A class that represents the Discord voice protocol." @@ -380,11 +386,11 @@ msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` i 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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 "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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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." diff --git a/docs/locales/it/LC_MESSAGES/api/webhooks.po b/docs/locales/it/LC_MESSAGES/api/webhooks.po index c6f477ed90..de99e2a6b0 100644 --- a/docs/locales/it/LC_MESSAGES/api/webhooks.po +++ b/docs/locales/it/LC_MESSAGES/api/webhooks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/changelog.po b/docs/locales/it/LC_MESSAGES/changelog.po index 29a1ffefe4..02e1e7e5bc 100644 --- a/docs/locales/it/LC_MESSAGES/changelog.po +++ b/docs/locales/it/LC_MESSAGES/changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -26,8 +26,122 @@ 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 "⚠️ **This version removes support for Python 3.8.** ⚠️" +msgstr "⚠️ **This version removes support for Python 3.8.** ⚠️" + +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 "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" +msgstr "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" + +msgid "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" +msgstr "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" + +msgid "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" +msgstr "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" + +msgid "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" +msgstr "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" + +msgid "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" +msgstr "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" + +msgid "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" +msgstr "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" + +msgid "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" +msgstr "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" + +msgid "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" +msgstr "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" + +msgid "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" +msgstr "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" + +msgid "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" +msgstr "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" +msgstr "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" + +msgid "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" +msgstr "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" + +msgid "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" +msgstr "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" + +msgid "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" +msgstr "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" + +msgid "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" +msgstr "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" + +msgid "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" +msgstr "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" + +msgid "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" +msgstr "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" + +msgid "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" +msgstr "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" + +msgid "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" +msgstr "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" + +msgid "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" +msgstr "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" + +msgid "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" +msgstr "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" + +msgid "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" +msgstr "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" + +msgid "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" +msgstr "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" + +msgid "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" +msgstr "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" + +msgid "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." +msgstr "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." + +msgid "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" +msgstr "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" + +msgid "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" +msgstr "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" msgid "Changed" msgstr "Changed" @@ -35,14 +149,65 @@ 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 "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" -msgid "Added" -msgstr "Added" +msgid "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" -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 "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" +msgstr "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" + +msgid "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" +msgstr "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" + +msgid "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "[2.6.1] - 2024-09-15" +msgstr "[2.6.1] - 2024-09-15" + +msgid "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" +msgstr "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" + +msgid "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" +msgstr "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" + +msgid "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" +msgstr "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" + +msgid "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" +msgstr "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" + +msgid "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" +msgstr "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" msgid "[2.6.0] - 2024-07-09" msgstr "[2.6.0] - 2024-07-09" @@ -92,9 +257,6 @@ msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord 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))" @@ -119,8 +281,8 @@ msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#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 option type hints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option type hints 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))" @@ -152,8 +314,8 @@ msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.co 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 "HTTP requests that fail with a 503 status are now retried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now retried. ([#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))" @@ -401,8 +563,8 @@ msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ( 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 `AttributeError` when accessing a `Select` object's values when it has not been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it has not 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))" @@ -413,8 +575,8 @@ msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://gi 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 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))" @@ -446,8 +608,8 @@ msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. 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 `Option` not working on bridge commands because `ext.commands.Command` does not recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` does not 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))" @@ -554,8 +716,8 @@ msgstr "Advanced version info is now stored as a dict in `version_info.advanced` 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 bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files did not 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 did not 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))" @@ -686,9 +848,6 @@ msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` funct 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))" @@ -959,11 +1118,11 @@ msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://gith 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 the error when Discord does not send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord does not 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 "Fix AttributeError when voice client `play()` function is not completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function is not 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" diff --git a/docs/locales/it/LC_MESSAGES/cogs.po b/docs/locales/it/LC_MESSAGES/cogs.po index d3b99d560a..559c916357 100644 --- a/docs/locales/it/LC_MESSAGES/cogs.po +++ b/docs/locales/it/LC_MESSAGES/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/discord.po b/docs/locales/it/LC_MESSAGES/discord.po index 1d84eae006..6f318a8fd6 100644 --- a/docs/locales/it/LC_MESSAGES/discord.po +++ b/docs/locales/it/LC_MESSAGES/discord.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/ext/bridge/api.po b/docs/locales/it/LC_MESSAGES/ext/bridge/api.po index c8f2bfa309..dde94f73f2 100644 --- a/docs/locales/it/LC_MESSAGES/ext/bridge/api.po +++ b/docs/locales/it/LC_MESSAGES/ext/bridge/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -353,14 +353,23 @@ 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 "Options" +msgstr "Options" -msgid "Option" -msgstr "Option" +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" -msgid "BridgeOption" -msgstr "BridgeOption" +msgid "A decorator that can be used instead of typehinting :class:`.BridgeOption`." +msgstr "A decorator that can be used instead of typehinting :class:`.BridgeOption`." + +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 ":class:`str`" +msgstr ":class:`str`" + +msgid "Objects" +msgstr "Objects" 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." diff --git a/docs/locales/it/LC_MESSAGES/ext/bridge/index.po b/docs/locales/it/LC_MESSAGES/ext/bridge/index.po index d829d3af31..94d5b4b663 100644 --- a/docs/locales/it/LC_MESSAGES/ext/bridge/index.po +++ b/docs/locales/it/LC_MESSAGES/ext/bridge/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/ext/commands/api.po b/docs/locales/it/LC_MESSAGES/ext/commands/api.po index 76f6bbe713..fbc31a0ce7 100644 --- a/docs/locales/it/LC_MESSAGES/ext/commands/api.po +++ b/docs/locales/it/LC_MESSAGES/ext/commands/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -269,6 +269,12 @@ msgstr "The view is not persistent. A persistent view has no timeout and all msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -920,8 +995,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -1019,6 +1094,9 @@ msgstr "Optional[:class:`.GuildSticker`]" msgid "Returns a user with the given ID." msgstr "Returns a user with the given ID." +msgid "The :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1064,8 +1142,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1505,8 +1583,11 @@ msgstr "An iterator that recursively walks through all application commands and 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" msgid "Duplicates due to aliases are no longer returned" msgstr "Duplicates due to aliases are no longer returned" @@ -1928,6 +2009,9 @@ msgstr "An iterator that recursively walks through this cog's commands and subco msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." @@ -2108,6 +2192,9 @@ 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 tuple of command types to exclude from the filter." +msgstr "A tuple of command types to exclude from the filter." + msgid "A list of commands that passed the filter." msgstr "A list of commands that passed the filter." @@ -3371,8 +3458,8 @@ 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 "Converts to a :class:`~discord.GuildEmoji`." +msgstr "Converts to a :class:`~discord.GuildEmoji`." 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." @@ -3383,8 +3470,8 @@ 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" msgid "Converts to a :class:`~discord.PartialEmoji`." msgstr "Converts to a :class:`~discord.PartialEmoji`." diff --git a/docs/locales/it/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/it/LC_MESSAGES/ext/commands/cogs.po index b6bdcd19af..3c3bdcf691 100644 --- a/docs/locales/it/LC_MESSAGES/ext/commands/cogs.po +++ b/docs/locales/it/LC_MESSAGES/ext/commands/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/ext/commands/commands.po b/docs/locales/it/LC_MESSAGES/ext/commands/commands.po index 1a44455c05..6328f825ec 100644 --- a/docs/locales/it/LC_MESSAGES/ext/commands/commands.po +++ b/docs/locales/it/LC_MESSAGES/ext/commands/commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -266,8 +266,8 @@ msgstr ":class:`Game`" msgid ":class:`Colour`" msgstr ":class:`Colour`" -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`PartialEmoji`" msgstr ":class:`PartialEmoji`" diff --git a/docs/locales/it/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/it/LC_MESSAGES/ext/commands/extensions.po index aefcfd5e04..1d605e8e3f 100644 --- a/docs/locales/it/LC_MESSAGES/ext/commands/extensions.po +++ b/docs/locales/it/LC_MESSAGES/ext/commands/extensions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/ext/commands/index.po b/docs/locales/it/LC_MESSAGES/ext/commands/index.po index 201036b377..57a313ebef 100644 --- a/docs/locales/it/LC_MESSAGES/ext/commands/index.po +++ b/docs/locales/it/LC_MESSAGES/ext/commands/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/ext/pages/index.po b/docs/locales/it/LC_MESSAGES/ext/pages/index.po index 30b0c29ee7..fccb0b2b36 100644 --- a/docs/locales/it/LC_MESSAGES/ext/pages/index.po +++ b/docs/locales/it/LC_MESSAGES/ext/pages/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -536,14 +536,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + 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 "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." msgid "PaginatorMenu" msgstr "PaginatorMenu" @@ -572,8 +602,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." diff --git a/docs/locales/it/LC_MESSAGES/ext/tasks/index.po b/docs/locales/it/LC_MESSAGES/ext/tasks/index.po index beb1ad9f67..5ca39205f0 100644 --- a/docs/locales/it/LC_MESSAGES/ext/tasks/index.po +++ b/docs/locales/it/LC_MESSAGES/ext/tasks/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/faq.po b/docs/locales/it/LC_MESSAGES/faq.po index 5326557f7a..343fdb35fa 100644 --- a/docs/locales/it/LC_MESSAGES/faq.po +++ b/docs/locales/it/LC_MESSAGES/faq.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -161,8 +161,8 @@ 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 "For custom emoji, you should pass an instance of :class:`GuildEmoji` or :class:`AppEmoji`. 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:`GuildEmoji` or :class:`AppEmoji`. 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>``." diff --git a/docs/locales/it/LC_MESSAGES/index.po b/docs/locales/it/LC_MESSAGES/index.po index e04d506e0c..f842f742ad 100644 --- a/docs/locales/it/LC_MESSAGES/index.po +++ b/docs/locales/it/LC_MESSAGES/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/installing.po b/docs/locales/it/LC_MESSAGES/installing.po index 89b42dbb7a..449b52cd00 100644 --- a/docs/locales/it/LC_MESSAGES/installing.po +++ b/docs/locales/it/LC_MESSAGES/installing.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -20,8 +20,8 @@ msgstr "This is the documentation for Pycord, a library for Python to aid in cre 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 "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." +msgstr "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." msgid "Installing" msgstr "Installing" diff --git a/docs/locales/it/LC_MESSAGES/intents.po b/docs/locales/it/LC_MESSAGES/intents.po index 036ca6dbac..5b8548adc9 100644 --- a/docs/locales/it/LC_MESSAGES/intents.po +++ b/docs/locales/it/LC_MESSAGES/intents.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/logging.po b/docs/locales/it/LC_MESSAGES/logging.po index 9b9b2f2707..793abccd4a 100644 --- a/docs/locales/it/LC_MESSAGES/logging.po +++ b/docs/locales/it/LC_MESSAGES/logging.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/migrating_to_v1.po b/docs/locales/it/LC_MESSAGES/migrating_to_v1.po index 3a88ade7dd..494d7871cb 100644 --- a/docs/locales/it/LC_MESSAGES/migrating_to_v1.po +++ b/docs/locales/it/LC_MESSAGES/migrating_to_v1.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/migrating_to_v2.po b/docs/locales/it/LC_MESSAGES/migrating_to_v2.po index e467d72eeb..401e32bb61 100644 --- a/docs/locales/it/LC_MESSAGES/migrating_to_v2.po +++ b/docs/locales/it/LC_MESSAGES/migrating_to_v2.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/it/LC_MESSAGES/old_changelog.po b/docs/locales/it/LC_MESSAGES/old_changelog.po index 21e169d5d4..b790838a9d 100644 --- a/docs/locales/it/LC_MESSAGES/old_changelog.po +++ b/docs/locales/it/LC_MESSAGES/old_changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -1208,8 +1208,8 @@ msgstr "|commands| Extensions that fail internally due to ImportError will no lo 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| Allow converters from custom extension packages. (:dpy-issue:`2369`, 2374)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, 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`)" diff --git a/docs/locales/it/LC_MESSAGES/quickstart.po b/docs/locales/it/LC_MESSAGES/quickstart.po index c26d06c1ef..3bbbebda96 100644 --- a/docs/locales/it/LC_MESSAGES/quickstart.po +++ b/docs/locales/it/LC_MESSAGES/quickstart.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 "Avvio Rapido" @@ -33,16 +33,16 @@ msgid "Let's name this file ``example_bot.py``. Make sure not to name it ``disco msgstr "Nominiamo questo file ``example_bot.py``. Assicurati di non nominarlo ```discord.py`` in quanto è in conflitto con la libreria." 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:" +msgstr "Ci sono molte cose da capire, quindi andiamo un passo alla volta:" 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." +msgstr "La prima istruzione importa la libreria, se dovesse sollevare un `ModuleNotFoundError` o `ImportError`, verifica la sezione `installazione` di :ref:per installarla correttamente." 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." +msgstr "In seguito, creiamo un'istanza di :class:`Client`. Si tratta della nostra connessione 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 "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 "Utilizziamo quindi il decoratore :meth:`Client.event` per registrare un evento. Questa libreria ha molti eventi. Visto che questa libreria è asincrona, facciamo uso di funzioni di richiamo." 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." diff --git a/docs/locales/it/LC_MESSAGES/version_guarantees.po b/docs/locales/it/LC_MESSAGES/version_guarantees.po index 3cecd7dd3a..9afe5fa2fd 100644 --- a/docs/locales/it/LC_MESSAGES/version_guarantees.po +++ b/docs/locales/it/LC_MESSAGES/version_guarantees.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -24,7 +24,7 @@ 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" +msgstr "Esempi di modifiche di rottura" msgid "Changing the default parameter value to something else." msgstr "Cambiare il valore predefinito di un parametro." diff --git a/docs/locales/ja/LC_MESSAGES/api/abcs.po b/docs/locales/ja/LC_MESSAGES/api/abcs.po index 0657b37252..6a2a917c8e 100644 --- a/docs/locales/ja/LC_MESSAGES/api/abcs.po +++ b/docs/locales/ja/LC_MESSAGES/api/abcs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/api/application_commands.po b/docs/locales/ja/LC_MESSAGES/api/application_commands.po index 3deec14558..6f62ad510f 100644 --- a/docs/locales/ja/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/ja/LC_MESSAGES/api/application_commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -311,6 +311,9 @@ msgstr "The location where this command can be used. Cannot be set if this is a msgid "Set[:class:`InteractionContextType`]" msgstr "Set[:class:`InteractionContextType`]" +msgid "The type of the None singleton." +msgstr "The type of the None singleton." + msgid "Creates a copy of this command." msgstr "Creates a copy of this command." @@ -362,6 +365,9 @@ msgstr "Yields" msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Creates a copy of this command group." msgstr "Creates a copy of this command group." @@ -848,6 +854,24 @@ 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 ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Represents context for a slash command's option autocomplete." msgstr "Represents context for a slash command's option autocomplete." diff --git a/docs/locales/ja/LC_MESSAGES/api/application_info.po b/docs/locales/ja/LC_MESSAGES/api/application_info.po index 86c5570471..e2c9638d63 100644 --- a/docs/locales/ja/LC_MESSAGES/api/application_info.po +++ b/docs/locales/ja/LC_MESSAGES/api/application_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -62,9 +62,6 @@ 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 `_." @@ -89,6 +86,36 @@ 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 "The approximate count of guilds to which the app has been added, if any." +msgstr "The approximate count of guilds to which the app has been added, if any." + +msgid "The approximate count of users who have installed the application, if any." +msgstr "The approximate count of users who have installed the application, if any." + +msgid "The list of redirect URIs for the application, if set." +msgstr "The list of redirect URIs for the application, if set." + +msgid "The interactions endpoint URL for the application, if set." +msgstr "The interactions endpoint URL for the application, if set." + +msgid "The role connection verification URL for the application, if set." +msgstr "The role connection verification URL for the application, if set." + +msgid "The settings for the application's default in-app authorization link, if set." +msgstr "The settings for the application's default in-app authorization link, if set." + +msgid "Optional[List[:class:`AppInstallParams`]]" +msgstr "Optional[List[:class:`AppInstallParams`]]" + +msgid "The list of tags describing the content and functionality of the app, if set." +msgstr "The list of tags describing the content and functionality of the app, if set." + +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." + +msgid "The default custom authorization URL for the application, if set." +msgstr "The default custom authorization URL for the application, if set." + msgid "Parameters" msgstr "Parameters" @@ -104,9 +131,30 @@ 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 "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 "It currently returns an empty string." +msgstr "It currently returns an empty string." + 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 the settings for the custom authorization URL of an application." +msgstr "Represents the settings for the custom authorization URL of an application." + +msgid "The list of OAuth2 scopes for adding the application to a guild." +msgstr "The list of OAuth2 scopes for adding the application to a guild." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The permissions to request for the bot role in the guild." +msgstr "The permissions to request for the bot role in the guild." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + msgid "Represents an application team for a bot provided by Discord." msgstr "Represents an application team for a bot provided by Discord." diff --git a/docs/locales/ja/LC_MESSAGES/api/async_iter.po b/docs/locales/ja/LC_MESSAGES/api/async_iter.po index c7934bda21..09ab7c5eec 100644 --- a/docs/locales/ja/LC_MESSAGES/api/async_iter.po +++ b/docs/locales/ja/LC_MESSAGES/api/async_iter.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/api/audit_logs.po b/docs/locales/ja/LC_MESSAGES/api/audit_logs.po index 0f409b5f5a..0b4916a507 100644 --- a/docs/locales/ja/LC_MESSAGES/api/audit_logs.po +++ b/docs/locales/ja/LC_MESSAGES/api/audit_logs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/api/clients.po b/docs/locales/ja/LC_MESSAGES/api/clients.po index c3ea149c61..8a065dd82d 100644 --- a/docs/locales/ja/LC_MESSAGES/api/clients.po +++ b/docs/locales/ja/LC_MESSAGES/api/clients.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -257,6 +257,12 @@ msgstr "The coroutine to register as the post-invoke hook." msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -893,8 +968,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -986,6 +1061,9 @@ msgstr "A shortcut decorator that initializes the provided subclass of :class:`. 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 :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1028,8 +1106,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1406,6 +1484,9 @@ msgstr "An iterator that recursively walks through all application commands and msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." @@ -1499,6 +1580,15 @@ msgstr "Whether to enable events that are useful only for debugging gateway rela 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 "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" + +msgid "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." + +msgid "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." +msgstr "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." + 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``." @@ -1526,6 +1616,9 @@ msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used 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 "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 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." diff --git a/docs/locales/ja/LC_MESSAGES/api/cogs.po b/docs/locales/ja/LC_MESSAGES/api/cogs.po index e0a5531320..b4772fc482 100644 --- a/docs/locales/ja/LC_MESSAGES/api/cogs.po +++ b/docs/locales/ja/LC_MESSAGES/api/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -56,6 +56,9 @@ msgstr "Yields" msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." diff --git a/docs/locales/ja/LC_MESSAGES/api/data_classes.po b/docs/locales/ja/LC_MESSAGES/api/data_classes.po index fcb1ec47b6..1b8c81f060 100644 --- a/docs/locales/ja/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/ja/LC_MESSAGES/api/data_classes.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -296,8 +296,8 @@ 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:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`GuildSticker`" msgstr ":class:`GuildSticker`" @@ -803,8 +803,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." msgid "Whether the websocket is currently rate limited." msgstr "Whether the websocket is currently rate limited." @@ -926,6 +926,9 @@ msgstr ":meth:`VoiceChannel.get_partial_message`" msgid ":meth:`StageChannel.get_partial_message`" msgstr ":meth:`StageChannel.get_partial_message`" +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.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." @@ -941,8 +944,8 @@ 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 "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" msgid "The message ID." msgstr "The message ID." @@ -1031,8 +1034,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1682,8 +1685,8 @@ 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 "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" msgid "Represents a poll answer object." msgstr "Represents a poll answer object." @@ -2039,6 +2042,9 @@ msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum 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 "Returns ``True`` if the embedded media download options are hidden for the media channel posts." +msgstr "Returns ``True`` if the embedded media download options are hidden for the media channel posts." + msgid "Wraps up the Discord SKU flags." msgstr "Wraps up the Discord SKU flags." @@ -2594,6 +2600,9 @@ msgstr ":attr:`view_audit_log`" msgid ":attr:`view_guild_insights`" msgstr ":attr:`view_guild_insights`" +msgid ":attr:`view_creator_monetization_analytics`" +msgstr ":attr:`view_creator_monetization_analytics`" + msgid ":attr:`manage_guild`" msgstr ":attr:`manage_guild`" @@ -2624,6 +2633,9 @@ msgstr "A factory method that creates a :class:`Permissions` with all \"General\ 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 "Added :attr:`view_creator_monetization_analytics` permission." +msgstr "Added :attr:`view_creator_monetization_analytics` permission." + 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\\)`" @@ -2810,6 +2822,15 @@ msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in 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 user can view creator monetization (role subscription) analytics." +msgstr "Returns ``True`` if a user can view creator monetization (role subscription) analytics." + +msgid "Returns ``True`` if a user can use the soundboard in a voice channel." +msgstr "Returns ``True`` if a user can use the soundboard in a voice channel." + +msgid "Returns ``True`` if a user can use external soundboard sounds in a voice channel." +msgstr "Returns ``True`` if a user can use external soundboard sounds in a voice channel." + msgid "Returns ``True`` if a member can send voice messages." msgstr "Returns ``True`` if a member can send voice messages." diff --git a/docs/locales/ja/LC_MESSAGES/api/enums.po b/docs/locales/ja/LC_MESSAGES/api/enums.po index dc333ff02b..e4f5ebba42 100644 --- a/docs/locales/ja/LC_MESSAGES/api/enums.po +++ b/docs/locales/ja/LC_MESSAGES/api/enums.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -974,8 +974,8 @@ 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 "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` 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." @@ -1769,3 +1769,15 @@ 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." +msgid "Represents a subscription's status." +msgstr "Represents a subscription's status." + +msgid "The subscription is active and is scheduled to renew." +msgstr "The subscription is active and is scheduled to renew." + +msgid "The subscription is active but will not renew." +msgstr "The subscription is active but will not renew." + +msgid "The subscription is inactive and the subscription owner is not being charged." +msgstr "The subscription is inactive and the subscription owner is not being charged." + diff --git a/docs/locales/ja/LC_MESSAGES/api/events.po b/docs/locales/ja/LC_MESSAGES/api/events.po index cc86ab0031..f02ffc8966 100644 --- a/docs/locales/ja/LC_MESSAGES/api/events.po +++ b/docs/locales/ja/LC_MESSAGES/api/events.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -293,33 +293,6 @@ msgstr "This is only for the messages sent from the client WebSocket. The voice 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" @@ -392,8 +365,8 @@ 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 "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." @@ -791,6 +764,60 @@ 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 "Monetization" +msgstr "Monetization" + +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 cancelled." +msgstr "Called when a user's subscription to an Entitlement is cancelled." + +msgid "Before October 1, 2024, this event was called when a user's subscription was renewed." +msgstr "Before October 1, 2024, this event was called when a user's subscription was renewed." + +msgid "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." +msgstr "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + +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 "Called when a subscription is created for the application." +msgstr "Called when a subscription is created for the application." + +msgid "The subscription that was created." +msgstr "The subscription that was created." + +msgid "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." +msgstr "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." + +msgid "The subscription that was updated." +msgstr "The subscription that was updated." + +msgid "Called when a subscription has been deleted." +msgstr "Called when a subscription has been deleted." + +msgid "The subscription that was deleted." +msgstr "The subscription that was deleted." + msgid "Scheduled Events" msgstr "Scheduled Events" diff --git a/docs/locales/ja/LC_MESSAGES/api/exceptions.po b/docs/locales/ja/LC_MESSAGES/api/exceptions.po index e4cd130b21..5a1cc9438a 100644 --- a/docs/locales/ja/LC_MESSAGES/api/exceptions.po +++ b/docs/locales/ja/LC_MESSAGES/api/exceptions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/api/index.po b/docs/locales/ja/LC_MESSAGES/api/index.po index 70d92c282d..bb7c9cd90b 100644 --- a/docs/locales/ja/LC_MESSAGES/api/index.po +++ b/docs/locales/ja/LC_MESSAGES/api/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/api/models.po b/docs/locales/ja/LC_MESSAGES/api/models.po index 25f2b52981..418e8e1ad6 100644 --- a/docs/locales/ja/LC_MESSAGES/api/models.po +++ b/docs/locales/ja/LC_MESSAGES/api/models.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -1202,6 +1202,9 @@ msgstr "If provided, the number of seconds to wait in the background before dele 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 was not found." +msgstr "The message was not found." + msgid "Editing the message failed." msgstr "Editing the message failed." @@ -1268,8 +1271,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1445,8 +1448,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :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." @@ -1568,9 +1571,45 @@ msgstr ":class:`SKUFlags`" msgid "Returns the URL for the SKU." msgstr "Returns the URL for the SKU." +msgid "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." + +msgid "The user for which to retrieve subscriptions." +msgstr "The user for which to retrieve subscriptions." + +msgid "Retrieves subscriptions before this date or object. If a datetime 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 subscriptions before this date or object. If a datetime 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 subscriptions after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve subscriptions after this date or object. If a datetime 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 subscriptions to retrieve. If ``None``, retrieves all subscriptions." +msgstr "The number of subscriptions to retrieve. If ``None``, retrieves all subscriptions." + +msgid ":class:`Subscription` -- A subscription that the user has for this SKU." +msgstr ":class:`Subscription` -- A subscription that the user has for this SKU." + +msgid "Getting the subscriptions failed." +msgstr "Getting the subscriptions failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters except for ``user`` are optional." +msgstr "All parameters except for ``user`` are optional." + msgid "Represents a Discord entitlement." msgstr "Represents a Discord entitlement." +msgid "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." +msgstr "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + msgid "The entitlement's ID." msgstr "The entitlement's ID." @@ -1607,17 +1646,14 @@ 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 "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.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 "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." +msgstr "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." msgid "Consuming the entitlement failed." msgstr "Consuming the entitlement failed." @@ -1631,6 +1667,57 @@ msgstr "A test entitlement is an entitlement that was created using :meth:`Guild msgid "Deleting the entitlement failed." msgstr "Deleting the entitlement failed." +msgid "Represents a user making recurring payments for one or more SKUs." +msgstr "Represents a user making recurring payments for one or more SKUs." + +msgid "Successful payments grant the user access to entitlements associated with the SKU." +msgstr "Successful payments grant the user access to entitlements associated with the SKU." + +msgid "The subscription's ID." +msgstr "The subscription's ID." + +msgid "The ID of the user that owns this subscription." +msgstr "The ID of the user that owns this subscription." + +msgid "The IDs of the SKUs this subscription is for." +msgstr "The IDs of the SKUs this subscription is for." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the entitlements this subscription is for." +msgstr "The IDs of the entitlements this subscription is for." + +msgid "The IDs of the SKUs that the buyer will be subscribed to at renewal." +msgstr "The IDs of the SKUs that the buyer will be subscribed to at renewal." + +msgid "The start of the current subscription period." +msgstr "The start of the current subscription period." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The end of the current subscription period." +msgstr "The end of the current subscription period." + +msgid "The status of the subscription." +msgstr "The status of the subscription." + +msgid ":class:`SubscriptionStatus`" +msgstr ":class:`SubscriptionStatus`" + +msgid "When the subscription was canceled." +msgstr "When the subscription was canceled." + +msgid ":class:`datetime.datetime` | ``None``" +msgstr ":class:`datetime.datetime` | ``None``" + +msgid "The user that owns this subscription." +msgstr "The user that owns this subscription." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + msgid "Guild" msgstr "Guild" @@ -1658,8 +1745,8 @@ 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 "Tuple[:class:`GuildEmoji`, ...]" +msgstr "Tuple[:class:`GuildEmoji`, ...]" msgid "All stickers that the guild owns." msgstr "All stickers that the guild owns." @@ -1781,9 +1868,6 @@ 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." @@ -2141,11 +2225,11 @@ 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:`GuildEmoji`, 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:`GuildEmoji`, 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 "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." msgid ":class:`ForumChannel`" msgstr ":class:`ForumChannel`" @@ -2657,8 +2741,8 @@ 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 "Retrieves all custom :class:`GuildEmoji`\\s from the guild." +msgstr "Retrieves all custom :class:`GuildEmoji`\\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." @@ -2669,11 +2753,11 @@ msgstr "An error occurred fetching the emojis." msgid "The retrieved emojis." msgstr "The retrieved emojis." -msgid "List[:class:`Emoji`]" -msgstr "List[:class:`Emoji`]" +msgid "List[:class:`GuildEmoji`]" +msgstr "List[:class:`GuildEmoji`]" -msgid "Retrieves a custom :class:`Emoji` from the guild." -msgstr "Retrieves a custom :class:`Emoji` from the guild." +msgid "Retrieves a custom :class:`GuildEmoji` from the guild." +msgstr "Retrieves a custom :class:`GuildEmoji` 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." @@ -2684,8 +2768,8 @@ msgstr "The emoji's ID." msgid "The retrieved emoji." msgstr "The retrieved emoji." -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid "The emoji requested could not be found." msgstr "The emoji requested could not be found." @@ -2693,8 +2777,8 @@ 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 "Creates a custom :class:`GuildEmoji` for the guild." +msgstr "Creates a custom :class:`GuildEmoji` 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." @@ -2723,8 +2807,8 @@ 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 "Deletes the custom :class:`GuildEmoji` from the guild." +msgstr "Deletes the custom :class:`GuildEmoji` 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." @@ -3446,6 +3530,15 @@ msgstr "For regular members this is just their avatar, but if they have a guild 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 member's display banner." +msgstr "Returns the member's display banner." + +msgid "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." +msgstr "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild banner the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild banner 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." @@ -3737,9 +3830,6 @@ 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." @@ -3890,9 +3980,6 @@ 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." @@ -4199,9 +4286,6 @@ msgstr "How many times the invite can be used. A value of ``0`` indicates that i 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." @@ -4316,8 +4400,8 @@ msgstr "The position of the role. This number is usually positive. The bottom ro 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 is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." +msgstr "Indicates if the role is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." msgid "Indicates if the role can be mentioned by users." msgstr "Indicates if the role can be mentioned by users." @@ -4346,12 +4430,21 @@ msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typeh 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 guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :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 "Whether the role is available for purchase." +msgstr "Whether the role is available for purchase." + +msgid "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Returns the role's permissions." msgstr "Returns the role's permissions." @@ -4439,20 +4532,26 @@ msgstr "A role tag is a piece of extra information attached to a managed role th 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 "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." +msgstr "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." + 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 "The subscription SKU and listing ID of the role." +msgstr "The subscription SKU and listing ID of 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 "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." msgid "Scheduled Event" msgstr "Scheduled Event" @@ -4694,6 +4793,9 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" + msgid "Onboarding" msgstr "Onboarding" @@ -4811,8 +4913,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" msgid "The option's title." msgstr "The option's title." @@ -5189,8 +5291,8 @@ msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the 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 "This is only available for threads in forum or media channels." +msgstr "This is only available for threads in forum or media channels." msgid "List[:class:`ForumTag`]" msgstr "List[:class:`ForumTag`]" @@ -5240,8 +5342,8 @@ 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 pinned to the top of its parent forum or media channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum or media 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." @@ -5381,8 +5483,8 @@ msgstr "The new duration in minutes before a thread is automatically archived fo 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 "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." 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" @@ -6131,8 +6233,8 @@ 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 "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" msgid "The ID of the channel the interaction was sent from." msgstr "The ID of the channel the interaction was sent from." @@ -6197,8 +6299,8 @@ 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 cached channel from which the interaction was sent. DM channels are not resolved. These are :class:`PartialMessageable` instead." +msgstr "The cached channel from which the interaction was sent. DM channels are not resolved. 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." @@ -6218,6 +6320,30 @@ msgstr "A response can only be done once. If secondary messages need to be sent, msgid "Returns the followup webhook for followup interactions." msgstr "Returns the followup webhook for followup interactions." +msgid ":class:`bool`: Checks if the interaction is guild authorised." +msgstr ":class:`bool`: Checks if the interaction is guild authorised." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorised." +msgstr ":class:`bool`: Checks if the interaction is user authorised." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is guild authorized." +msgstr ":class:`bool`: Checks if the interaction is guild authorized." + +msgid "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorized." +msgstr ":class:`bool`: Checks if the interaction is user authorized." + +msgid "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Fetches the original interaction response message associated with the interaction." msgstr "Fetches the original interaction response message associated with the interaction." @@ -6629,8 +6755,8 @@ msgstr "Whether the select is disabled or not." msgid "Emoji" msgstr "Emoji" -msgid "Represents a custom emoji." -msgstr "Represents a custom emoji." +msgid "Represents a custom emoji in a guild." +msgstr "Represents a custom emoji in a guild." 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``." @@ -6671,12 +6797,6 @@ 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." @@ -6716,6 +6836,48 @@ msgstr "An error occurred editing the emoji." msgid "The newly updated emoji." msgstr "The newly updated emoji." +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 "Represents a custom emoji from an application." +msgstr "Represents a custom emoji from an application." + +msgid "The application ID the emoji belongs to, if available." +msgstr "The application ID the emoji belongs to, if available." + +msgid "The user that created the emoji." +msgstr "The user that created the emoji." + +msgid "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." +msgstr "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." + +msgid "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." +msgstr "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." + +msgid "Whether the bot can use this emoji." +msgstr "Whether the bot can use this emoji." + +msgid "Deletes the application emoji." +msgstr "Deletes the application emoji." + +msgid "You must own the emoji to do this." +msgstr "You must own the emoji to do this." + +msgid "You are not allowed to delete the emoji." +msgstr "You are not allowed to delete the emoji." + +msgid "Edits the application emoji." +msgstr "Edits the application emoji." + +msgid "You are not allowed to edit the emoji." +msgstr "You are not allowed to edit the emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + msgid "Represents a \"partial\" emoji." msgstr "Represents a \"partial\" emoji." @@ -6953,14 +7115,14 @@ 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 "Optional[:class:`str` | :class:`discord.GuildEmoji`]" +msgstr "Optional[:class:`str` | :class:`discord.GuildEmoji`]" 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 "Whether a tag is required to be specified when creating a thread in this forum or media channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum or media channel." msgid "Tags are specified in :attr:`applied_tags`." msgstr "Tags are specified in :attr:`applied_tags`." @@ -6977,8 +7139,8 @@ msgstr "The default sort order type to use to order posts in this channel. .. v 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 default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, 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:`GuildEmoji`, 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" @@ -7010,6 +7172,24 @@ 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 media channel. Subclass of :class:`ForumChannel`." +msgstr "Represents a Discord media channel. Subclass of :class:`ForumChannel`." + +msgid "Whether media download options are hidden in this media channel." +msgstr "Whether media download options are hidden in this media channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." + +msgid "Whether media download options should be hidden in this media channel." +msgstr "Whether media download options should be hidden in this media channel." + +msgid "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.MediaChannel`]" +msgstr "Optional[:class:`.MediaChannel`]" + msgid "Represents a Discord guild voice channel." msgstr "Represents a Discord guild voice channel." diff --git a/docs/locales/ja/LC_MESSAGES/api/sinks.po b/docs/locales/ja/LC_MESSAGES/api/sinks.po index 82436a6b02..e36a21f8ef 100644 --- a/docs/locales/ja/LC_MESSAGES/api/sinks.po +++ b/docs/locales/ja/LC_MESSAGES/api/sinks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/api/ui_kit.po b/docs/locales/ja/LC_MESSAGES/api/ui_kit.po index bcbfa362d8..c79f15cb13 100644 --- a/docs/locales/ja/LC_MESSAGES/api/ui_kit.po +++ b/docs/locales/ja/LC_MESSAGES/api/ui_kit.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -44,8 +44,8 @@ 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 emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." 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)." @@ -122,8 +122,8 @@ 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 in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. 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." @@ -317,8 +317,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" msgid "The callback associated with this UI item." msgstr "The callback associated with this UI item." @@ -419,8 +455,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." @@ -449,6 +485,9 @@ 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 "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 "The title of the modal dialog." msgstr "The title of the modal dialog." diff --git a/docs/locales/ja/LC_MESSAGES/api/utils.po b/docs/locales/ja/LC_MESSAGES/api/utils.po index 11cc3bc28c..09b338136a 100644 --- a/docs/locales/ja/LC_MESSAGES/api/utils.po +++ b/docs/locales/ja/LC_MESSAGES/api/utils.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -407,18 +407,24 @@ msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` 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 "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" + +msgid "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." + 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 "With filter parameter:" +msgstr "With filter parameter:" + 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." @@ -446,6 +452,9 @@ 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 "Example" +msgstr "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." diff --git a/docs/locales/ja/LC_MESSAGES/api/version_info.po b/docs/locales/ja/LC_MESSAGES/api/version_info.po index 3e7ff6039a..7b04bdc20f 100644 --- a/docs/locales/ja/LC_MESSAGES/api/version_info.po +++ b/docs/locales/ja/LC_MESSAGES/api/version_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/api/voice.po b/docs/locales/ja/LC_MESSAGES/api/voice.po index 6458abab9e..e746081c69 100644 --- a/docs/locales/ja/LC_MESSAGES/api/voice.po +++ b/docs/locales/ja/LC_MESSAGES/api/voice.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -215,6 +215,12 @@ msgstr "You are not connected." msgid "Encoding the data failed." msgstr "Encoding the data failed." +msgid "Returns the elapsed time of the playing audio." +msgstr "Returns the elapsed time of the playing audio." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" + msgid "A class that represents the Discord voice protocol." msgstr "A class that represents the Discord voice protocol." @@ -380,11 +386,11 @@ msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` i 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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 "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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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." diff --git a/docs/locales/ja/LC_MESSAGES/api/webhooks.po b/docs/locales/ja/LC_MESSAGES/api/webhooks.po index 37d7e63745..e502fd296e 100644 --- a/docs/locales/ja/LC_MESSAGES/api/webhooks.po +++ b/docs/locales/ja/LC_MESSAGES/api/webhooks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/changelog.po b/docs/locales/ja/LC_MESSAGES/changelog.po index 157985f7ef..31e14db03d 100644 --- a/docs/locales/ja/LC_MESSAGES/changelog.po +++ b/docs/locales/ja/LC_MESSAGES/changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -26,8 +26,122 @@ 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 "⚠️ **This version removes support for Python 3.8.** ⚠️" +msgstr "⚠️ **This version removes support for Python 3.8.** ⚠️" + +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 "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" +msgstr "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" + +msgid "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" +msgstr "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" + +msgid "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" +msgstr "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" + +msgid "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" +msgstr "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" + +msgid "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" +msgstr "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" + +msgid "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" +msgstr "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" + +msgid "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" +msgstr "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" + +msgid "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" +msgstr "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" + +msgid "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" +msgstr "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" + +msgid "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" +msgstr "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" +msgstr "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" + +msgid "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" +msgstr "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" + +msgid "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" +msgstr "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" + +msgid "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" +msgstr "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" + +msgid "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" +msgstr "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" + +msgid "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" +msgstr "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" + +msgid "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" +msgstr "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" + +msgid "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" +msgstr "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" + +msgid "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" +msgstr "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" + +msgid "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" +msgstr "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" + +msgid "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" +msgstr "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" + +msgid "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" +msgstr "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" + +msgid "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" +msgstr "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" + +msgid "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" +msgstr "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" + +msgid "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." +msgstr "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." + +msgid "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" +msgstr "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" + +msgid "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" +msgstr "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" msgid "Changed" msgstr "Changed" @@ -35,14 +149,65 @@ 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 "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" -msgid "Added" -msgstr "Added" +msgid "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" -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 "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" +msgstr "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" + +msgid "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" +msgstr "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" + +msgid "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "[2.6.1] - 2024-09-15" +msgstr "[2.6.1] - 2024-09-15" + +msgid "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" +msgstr "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" + +msgid "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" +msgstr "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" + +msgid "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" +msgstr "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" + +msgid "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" +msgstr "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" + +msgid "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" +msgstr "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" msgid "[2.6.0] - 2024-07-09" msgstr "[2.6.0] - 2024-07-09" @@ -92,9 +257,6 @@ msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord 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))" @@ -119,8 +281,8 @@ msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#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 option type hints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option type hints 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))" @@ -152,8 +314,8 @@ msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.co 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 "HTTP requests that fail with a 503 status are now retried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now retried. ([#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))" @@ -401,8 +563,8 @@ msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ( 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 `AttributeError` when accessing a `Select` object's values when it has not been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it has not 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))" @@ -413,8 +575,8 @@ msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://gi 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 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))" @@ -446,8 +608,8 @@ msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. 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 `Option` not working on bridge commands because `ext.commands.Command` does not recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` does not 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))" @@ -554,8 +716,8 @@ msgstr "Advanced version info is now stored as a dict in `version_info.advanced` 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 bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files did not 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 did not 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))" @@ -686,9 +848,6 @@ msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` funct 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))" @@ -959,11 +1118,11 @@ msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://gith 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 the error when Discord does not send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord does not 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 "Fix AttributeError when voice client `play()` function is not completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function is not 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" diff --git a/docs/locales/ja/LC_MESSAGES/cogs.po b/docs/locales/ja/LC_MESSAGES/cogs.po index 713392b91f..686217ce9b 100644 --- a/docs/locales/ja/LC_MESSAGES/cogs.po +++ b/docs/locales/ja/LC_MESSAGES/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/discord.po b/docs/locales/ja/LC_MESSAGES/discord.po index 242f4b20a4..21fb757068 100644 --- a/docs/locales/ja/LC_MESSAGES/discord.po +++ b/docs/locales/ja/LC_MESSAGES/discord.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/ext/bridge/api.po b/docs/locales/ja/LC_MESSAGES/ext/bridge/api.po index 2e66ef4160..58248a8101 100644 --- a/docs/locales/ja/LC_MESSAGES/ext/bridge/api.po +++ b/docs/locales/ja/LC_MESSAGES/ext/bridge/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -353,14 +353,23 @@ 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 "Options" +msgstr "Options" -msgid "Option" -msgstr "Option" +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" -msgid "BridgeOption" -msgstr "BridgeOption" +msgid "A decorator that can be used instead of typehinting :class:`.BridgeOption`." +msgstr "A decorator that can be used instead of typehinting :class:`.BridgeOption`." + +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 ":class:`str`" +msgstr ":class:`str`" + +msgid "Objects" +msgstr "Objects" 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." diff --git a/docs/locales/ja/LC_MESSAGES/ext/bridge/index.po b/docs/locales/ja/LC_MESSAGES/ext/bridge/index.po index 5d04d47e3a..e6fc497edb 100644 --- a/docs/locales/ja/LC_MESSAGES/ext/bridge/index.po +++ b/docs/locales/ja/LC_MESSAGES/ext/bridge/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/ext/commands/api.po b/docs/locales/ja/LC_MESSAGES/ext/commands/api.po index eaacd057b9..dac662c76d 100644 --- a/docs/locales/ja/LC_MESSAGES/ext/commands/api.po +++ b/docs/locales/ja/LC_MESSAGES/ext/commands/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -269,6 +269,12 @@ msgstr "The view is not persistent. A persistent view has no timeout and all msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -920,8 +995,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -1019,6 +1094,9 @@ msgstr "Optional[:class:`.GuildSticker`]" msgid "Returns a user with the given ID." msgstr "Returns a user with the given ID." +msgid "The :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1064,8 +1142,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1505,8 +1583,11 @@ msgstr "An iterator that recursively walks through all application commands and 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" msgid "Duplicates due to aliases are no longer returned" msgstr "Duplicates due to aliases are no longer returned" @@ -1928,6 +2009,9 @@ msgstr "An iterator that recursively walks through this cog's commands and subco msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." @@ -2108,6 +2192,9 @@ 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 tuple of command types to exclude from the filter." +msgstr "A tuple of command types to exclude from the filter." + msgid "A list of commands that passed the filter." msgstr "A list of commands that passed the filter." @@ -3371,8 +3458,8 @@ 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 "Converts to a :class:`~discord.GuildEmoji`." +msgstr "Converts to a :class:`~discord.GuildEmoji`." 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." @@ -3383,8 +3470,8 @@ 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" msgid "Converts to a :class:`~discord.PartialEmoji`." msgstr "Converts to a :class:`~discord.PartialEmoji`." diff --git a/docs/locales/ja/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/ja/LC_MESSAGES/ext/commands/cogs.po index 324861b347..6d40ecd553 100644 --- a/docs/locales/ja/LC_MESSAGES/ext/commands/cogs.po +++ b/docs/locales/ja/LC_MESSAGES/ext/commands/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/ext/commands/commands.po b/docs/locales/ja/LC_MESSAGES/ext/commands/commands.po index 85b41501d1..f9ad3f6be6 100644 --- a/docs/locales/ja/LC_MESSAGES/ext/commands/commands.po +++ b/docs/locales/ja/LC_MESSAGES/ext/commands/commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -266,8 +266,8 @@ msgstr ":class:`Game`" msgid ":class:`Colour`" msgstr ":class:`Colour`" -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`PartialEmoji`" msgstr ":class:`PartialEmoji`" diff --git a/docs/locales/ja/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/ja/LC_MESSAGES/ext/commands/extensions.po index 4f3fd6efcd..30e6dcfc30 100644 --- a/docs/locales/ja/LC_MESSAGES/ext/commands/extensions.po +++ b/docs/locales/ja/LC_MESSAGES/ext/commands/extensions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/ext/commands/index.po b/docs/locales/ja/LC_MESSAGES/ext/commands/index.po index d05921587d..bd418e3a84 100644 --- a/docs/locales/ja/LC_MESSAGES/ext/commands/index.po +++ b/docs/locales/ja/LC_MESSAGES/ext/commands/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/ext/pages/index.po b/docs/locales/ja/LC_MESSAGES/ext/pages/index.po index 19c1622bfa..fe0e2cb1e6 100644 --- a/docs/locales/ja/LC_MESSAGES/ext/pages/index.po +++ b/docs/locales/ja/LC_MESSAGES/ext/pages/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -536,14 +536,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + 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 "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." msgid "PaginatorMenu" msgstr "PaginatorMenu" @@ -572,8 +602,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." diff --git a/docs/locales/ja/LC_MESSAGES/ext/tasks/index.po b/docs/locales/ja/LC_MESSAGES/ext/tasks/index.po index 6236de13f1..78e1349e13 100644 --- a/docs/locales/ja/LC_MESSAGES/ext/tasks/index.po +++ b/docs/locales/ja/LC_MESSAGES/ext/tasks/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/faq.po b/docs/locales/ja/LC_MESSAGES/faq.po index 91d04f72fb..6603291330 100644 --- a/docs/locales/ja/LC_MESSAGES/faq.po +++ b/docs/locales/ja/LC_MESSAGES/faq.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -161,8 +161,8 @@ 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 "For custom emoji, you should pass an instance of :class:`GuildEmoji` or :class:`AppEmoji`. 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:`GuildEmoji` or :class:`AppEmoji`. 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>``." diff --git a/docs/locales/ja/LC_MESSAGES/index.po b/docs/locales/ja/LC_MESSAGES/index.po index f6843e1e93..ea4ee21a46 100644 --- a/docs/locales/ja/LC_MESSAGES/index.po +++ b/docs/locales/ja/LC_MESSAGES/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/installing.po b/docs/locales/ja/LC_MESSAGES/installing.po index f2d0f0d14d..629b78f130 100644 --- a/docs/locales/ja/LC_MESSAGES/installing.po +++ b/docs/locales/ja/LC_MESSAGES/installing.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -20,8 +20,8 @@ msgstr "This is the documentation for Pycord, a library for Python to aid in cre 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 "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." +msgstr "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." msgid "Installing" msgstr "Installing" diff --git a/docs/locales/ja/LC_MESSAGES/intents.po b/docs/locales/ja/LC_MESSAGES/intents.po index 7201bbd103..dd9504fc44 100644 --- a/docs/locales/ja/LC_MESSAGES/intents.po +++ b/docs/locales/ja/LC_MESSAGES/intents.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/logging.po b/docs/locales/ja/LC_MESSAGES/logging.po index 8130d84e9f..01fa8196b6 100644 --- a/docs/locales/ja/LC_MESSAGES/logging.po +++ b/docs/locales/ja/LC_MESSAGES/logging.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/migrating_to_v1.po b/docs/locales/ja/LC_MESSAGES/migrating_to_v1.po index ea81171aff..09145ca293 100644 --- a/docs/locales/ja/LC_MESSAGES/migrating_to_v1.po +++ b/docs/locales/ja/LC_MESSAGES/migrating_to_v1.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/migrating_to_v2.po b/docs/locales/ja/LC_MESSAGES/migrating_to_v2.po index 4220fe4212..b4b989960c 100644 --- a/docs/locales/ja/LC_MESSAGES/migrating_to_v2.po +++ b/docs/locales/ja/LC_MESSAGES/migrating_to_v2.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/old_changelog.po b/docs/locales/ja/LC_MESSAGES/old_changelog.po index a1f5831ab1..9ac0585abf 100644 --- a/docs/locales/ja/LC_MESSAGES/old_changelog.po +++ b/docs/locales/ja/LC_MESSAGES/old_changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -1208,8 +1208,8 @@ msgstr "|commands| Extensions that fail internally due to ImportError will no lo 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| Allow converters from custom extension packages. (:dpy-issue:`2369`, 2374)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, 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`)" diff --git a/docs/locales/ja/LC_MESSAGES/quickstart.po b/docs/locales/ja/LC_MESSAGES/quickstart.po index 018b5372f2..4ec6ee532e 100644 --- a/docs/locales/ja/LC_MESSAGES/quickstart.po +++ b/docs/locales/ja/LC_MESSAGES/quickstart.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ja/LC_MESSAGES/version_guarantees.po b/docs/locales/ja/LC_MESSAGES/version_guarantees.po index fc3d82a0ee..f206f9cc6a 100644 --- a/docs/locales/ja/LC_MESSAGES/version_guarantees.po +++ b/docs/locales/ja/LC_MESSAGES/version_guarantees.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/api/abcs.po b/docs/locales/ko/LC_MESSAGES/api/abcs.po index 0657b37252..6a2a917c8e 100644 --- a/docs/locales/ko/LC_MESSAGES/api/abcs.po +++ b/docs/locales/ko/LC_MESSAGES/api/abcs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/api/application_commands.po b/docs/locales/ko/LC_MESSAGES/api/application_commands.po index 3deec14558..6f62ad510f 100644 --- a/docs/locales/ko/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/ko/LC_MESSAGES/api/application_commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -311,6 +311,9 @@ msgstr "The location where this command can be used. Cannot be set if this is a msgid "Set[:class:`InteractionContextType`]" msgstr "Set[:class:`InteractionContextType`]" +msgid "The type of the None singleton." +msgstr "The type of the None singleton." + msgid "Creates a copy of this command." msgstr "Creates a copy of this command." @@ -362,6 +365,9 @@ msgstr "Yields" msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Creates a copy of this command group." msgstr "Creates a copy of this command group." @@ -848,6 +854,24 @@ 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 ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Represents context for a slash command's option autocomplete." msgstr "Represents context for a slash command's option autocomplete." diff --git a/docs/locales/ko/LC_MESSAGES/api/application_info.po b/docs/locales/ko/LC_MESSAGES/api/application_info.po index 86c5570471..e2c9638d63 100644 --- a/docs/locales/ko/LC_MESSAGES/api/application_info.po +++ b/docs/locales/ko/LC_MESSAGES/api/application_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -62,9 +62,6 @@ 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 `_." @@ -89,6 +86,36 @@ 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 "The approximate count of guilds to which the app has been added, if any." +msgstr "The approximate count of guilds to which the app has been added, if any." + +msgid "The approximate count of users who have installed the application, if any." +msgstr "The approximate count of users who have installed the application, if any." + +msgid "The list of redirect URIs for the application, if set." +msgstr "The list of redirect URIs for the application, if set." + +msgid "The interactions endpoint URL for the application, if set." +msgstr "The interactions endpoint URL for the application, if set." + +msgid "The role connection verification URL for the application, if set." +msgstr "The role connection verification URL for the application, if set." + +msgid "The settings for the application's default in-app authorization link, if set." +msgstr "The settings for the application's default in-app authorization link, if set." + +msgid "Optional[List[:class:`AppInstallParams`]]" +msgstr "Optional[List[:class:`AppInstallParams`]]" + +msgid "The list of tags describing the content and functionality of the app, if set." +msgstr "The list of tags describing the content and functionality of the app, if set." + +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." + +msgid "The default custom authorization URL for the application, if set." +msgstr "The default custom authorization URL for the application, if set." + msgid "Parameters" msgstr "Parameters" @@ -104,9 +131,30 @@ 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 "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 "It currently returns an empty string." +msgstr "It currently returns an empty string." + 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 the settings for the custom authorization URL of an application." +msgstr "Represents the settings for the custom authorization URL of an application." + +msgid "The list of OAuth2 scopes for adding the application to a guild." +msgstr "The list of OAuth2 scopes for adding the application to a guild." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The permissions to request for the bot role in the guild." +msgstr "The permissions to request for the bot role in the guild." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + msgid "Represents an application team for a bot provided by Discord." msgstr "Represents an application team for a bot provided by Discord." diff --git a/docs/locales/ko/LC_MESSAGES/api/async_iter.po b/docs/locales/ko/LC_MESSAGES/api/async_iter.po index c7934bda21..09ab7c5eec 100644 --- a/docs/locales/ko/LC_MESSAGES/api/async_iter.po +++ b/docs/locales/ko/LC_MESSAGES/api/async_iter.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/api/audit_logs.po b/docs/locales/ko/LC_MESSAGES/api/audit_logs.po index 0f409b5f5a..0b4916a507 100644 --- a/docs/locales/ko/LC_MESSAGES/api/audit_logs.po +++ b/docs/locales/ko/LC_MESSAGES/api/audit_logs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/api/clients.po b/docs/locales/ko/LC_MESSAGES/api/clients.po index c3ea149c61..8a065dd82d 100644 --- a/docs/locales/ko/LC_MESSAGES/api/clients.po +++ b/docs/locales/ko/LC_MESSAGES/api/clients.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -257,6 +257,12 @@ msgstr "The coroutine to register as the post-invoke hook." msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -893,8 +968,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -986,6 +1061,9 @@ msgstr "A shortcut decorator that initializes the provided subclass of :class:`. 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 :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1028,8 +1106,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1406,6 +1484,9 @@ msgstr "An iterator that recursively walks through all application commands and msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." @@ -1499,6 +1580,15 @@ msgstr "Whether to enable events that are useful only for debugging gateway rela 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 "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" + +msgid "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." + +msgid "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." +msgstr "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." + 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``." @@ -1526,6 +1616,9 @@ msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used 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 "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 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." diff --git a/docs/locales/ko/LC_MESSAGES/api/cogs.po b/docs/locales/ko/LC_MESSAGES/api/cogs.po index e0a5531320..b4772fc482 100644 --- a/docs/locales/ko/LC_MESSAGES/api/cogs.po +++ b/docs/locales/ko/LC_MESSAGES/api/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -56,6 +56,9 @@ msgstr "Yields" msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." diff --git a/docs/locales/ko/LC_MESSAGES/api/data_classes.po b/docs/locales/ko/LC_MESSAGES/api/data_classes.po index fcb1ec47b6..1b8c81f060 100644 --- a/docs/locales/ko/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/ko/LC_MESSAGES/api/data_classes.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -296,8 +296,8 @@ 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:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`GuildSticker`" msgstr ":class:`GuildSticker`" @@ -803,8 +803,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." msgid "Whether the websocket is currently rate limited." msgstr "Whether the websocket is currently rate limited." @@ -926,6 +926,9 @@ msgstr ":meth:`VoiceChannel.get_partial_message`" msgid ":meth:`StageChannel.get_partial_message`" msgstr ":meth:`StageChannel.get_partial_message`" +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.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." @@ -941,8 +944,8 @@ 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 "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" msgid "The message ID." msgstr "The message ID." @@ -1031,8 +1034,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1682,8 +1685,8 @@ 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 "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" msgid "Represents a poll answer object." msgstr "Represents a poll answer object." @@ -2039,6 +2042,9 @@ msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum 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 "Returns ``True`` if the embedded media download options are hidden for the media channel posts." +msgstr "Returns ``True`` if the embedded media download options are hidden for the media channel posts." + msgid "Wraps up the Discord SKU flags." msgstr "Wraps up the Discord SKU flags." @@ -2594,6 +2600,9 @@ msgstr ":attr:`view_audit_log`" msgid ":attr:`view_guild_insights`" msgstr ":attr:`view_guild_insights`" +msgid ":attr:`view_creator_monetization_analytics`" +msgstr ":attr:`view_creator_monetization_analytics`" + msgid ":attr:`manage_guild`" msgstr ":attr:`manage_guild`" @@ -2624,6 +2633,9 @@ msgstr "A factory method that creates a :class:`Permissions` with all \"General\ 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 "Added :attr:`view_creator_monetization_analytics` permission." +msgstr "Added :attr:`view_creator_monetization_analytics` permission." + 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\\)`" @@ -2810,6 +2822,15 @@ msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in 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 user can view creator monetization (role subscription) analytics." +msgstr "Returns ``True`` if a user can view creator monetization (role subscription) analytics." + +msgid "Returns ``True`` if a user can use the soundboard in a voice channel." +msgstr "Returns ``True`` if a user can use the soundboard in a voice channel." + +msgid "Returns ``True`` if a user can use external soundboard sounds in a voice channel." +msgstr "Returns ``True`` if a user can use external soundboard sounds in a voice channel." + msgid "Returns ``True`` if a member can send voice messages." msgstr "Returns ``True`` if a member can send voice messages." diff --git a/docs/locales/ko/LC_MESSAGES/api/enums.po b/docs/locales/ko/LC_MESSAGES/api/enums.po index dc333ff02b..e4f5ebba42 100644 --- a/docs/locales/ko/LC_MESSAGES/api/enums.po +++ b/docs/locales/ko/LC_MESSAGES/api/enums.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -974,8 +974,8 @@ 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 "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` 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." @@ -1769,3 +1769,15 @@ 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." +msgid "Represents a subscription's status." +msgstr "Represents a subscription's status." + +msgid "The subscription is active and is scheduled to renew." +msgstr "The subscription is active and is scheduled to renew." + +msgid "The subscription is active but will not renew." +msgstr "The subscription is active but will not renew." + +msgid "The subscription is inactive and the subscription owner is not being charged." +msgstr "The subscription is inactive and the subscription owner is not being charged." + diff --git a/docs/locales/ko/LC_MESSAGES/api/events.po b/docs/locales/ko/LC_MESSAGES/api/events.po index cc86ab0031..f02ffc8966 100644 --- a/docs/locales/ko/LC_MESSAGES/api/events.po +++ b/docs/locales/ko/LC_MESSAGES/api/events.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -293,33 +293,6 @@ msgstr "This is only for the messages sent from the client WebSocket. The voice 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" @@ -392,8 +365,8 @@ 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 "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." @@ -791,6 +764,60 @@ 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 "Monetization" +msgstr "Monetization" + +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 cancelled." +msgstr "Called when a user's subscription to an Entitlement is cancelled." + +msgid "Before October 1, 2024, this event was called when a user's subscription was renewed." +msgstr "Before October 1, 2024, this event was called when a user's subscription was renewed." + +msgid "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." +msgstr "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + +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 "Called when a subscription is created for the application." +msgstr "Called when a subscription is created for the application." + +msgid "The subscription that was created." +msgstr "The subscription that was created." + +msgid "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." +msgstr "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." + +msgid "The subscription that was updated." +msgstr "The subscription that was updated." + +msgid "Called when a subscription has been deleted." +msgstr "Called when a subscription has been deleted." + +msgid "The subscription that was deleted." +msgstr "The subscription that was deleted." + msgid "Scheduled Events" msgstr "Scheduled Events" diff --git a/docs/locales/ko/LC_MESSAGES/api/exceptions.po b/docs/locales/ko/LC_MESSAGES/api/exceptions.po index e4cd130b21..5a1cc9438a 100644 --- a/docs/locales/ko/LC_MESSAGES/api/exceptions.po +++ b/docs/locales/ko/LC_MESSAGES/api/exceptions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/api/index.po b/docs/locales/ko/LC_MESSAGES/api/index.po index 70d92c282d..bb7c9cd90b 100644 --- a/docs/locales/ko/LC_MESSAGES/api/index.po +++ b/docs/locales/ko/LC_MESSAGES/api/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/api/models.po b/docs/locales/ko/LC_MESSAGES/api/models.po index 25f2b52981..418e8e1ad6 100644 --- a/docs/locales/ko/LC_MESSAGES/api/models.po +++ b/docs/locales/ko/LC_MESSAGES/api/models.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -1202,6 +1202,9 @@ msgstr "If provided, the number of seconds to wait in the background before dele 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 was not found." +msgstr "The message was not found." + msgid "Editing the message failed." msgstr "Editing the message failed." @@ -1268,8 +1271,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1445,8 +1448,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :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." @@ -1568,9 +1571,45 @@ msgstr ":class:`SKUFlags`" msgid "Returns the URL for the SKU." msgstr "Returns the URL for the SKU." +msgid "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." + +msgid "The user for which to retrieve subscriptions." +msgstr "The user for which to retrieve subscriptions." + +msgid "Retrieves subscriptions before this date or object. If a datetime 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 subscriptions before this date or object. If a datetime 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 subscriptions after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve subscriptions after this date or object. If a datetime 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 subscriptions to retrieve. If ``None``, retrieves all subscriptions." +msgstr "The number of subscriptions to retrieve. If ``None``, retrieves all subscriptions." + +msgid ":class:`Subscription` -- A subscription that the user has for this SKU." +msgstr ":class:`Subscription` -- A subscription that the user has for this SKU." + +msgid "Getting the subscriptions failed." +msgstr "Getting the subscriptions failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters except for ``user`` are optional." +msgstr "All parameters except for ``user`` are optional." + msgid "Represents a Discord entitlement." msgstr "Represents a Discord entitlement." +msgid "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." +msgstr "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + msgid "The entitlement's ID." msgstr "The entitlement's ID." @@ -1607,17 +1646,14 @@ 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 "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.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 "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." +msgstr "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." msgid "Consuming the entitlement failed." msgstr "Consuming the entitlement failed." @@ -1631,6 +1667,57 @@ msgstr "A test entitlement is an entitlement that was created using :meth:`Guild msgid "Deleting the entitlement failed." msgstr "Deleting the entitlement failed." +msgid "Represents a user making recurring payments for one or more SKUs." +msgstr "Represents a user making recurring payments for one or more SKUs." + +msgid "Successful payments grant the user access to entitlements associated with the SKU." +msgstr "Successful payments grant the user access to entitlements associated with the SKU." + +msgid "The subscription's ID." +msgstr "The subscription's ID." + +msgid "The ID of the user that owns this subscription." +msgstr "The ID of the user that owns this subscription." + +msgid "The IDs of the SKUs this subscription is for." +msgstr "The IDs of the SKUs this subscription is for." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the entitlements this subscription is for." +msgstr "The IDs of the entitlements this subscription is for." + +msgid "The IDs of the SKUs that the buyer will be subscribed to at renewal." +msgstr "The IDs of the SKUs that the buyer will be subscribed to at renewal." + +msgid "The start of the current subscription period." +msgstr "The start of the current subscription period." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The end of the current subscription period." +msgstr "The end of the current subscription period." + +msgid "The status of the subscription." +msgstr "The status of the subscription." + +msgid ":class:`SubscriptionStatus`" +msgstr ":class:`SubscriptionStatus`" + +msgid "When the subscription was canceled." +msgstr "When the subscription was canceled." + +msgid ":class:`datetime.datetime` | ``None``" +msgstr ":class:`datetime.datetime` | ``None``" + +msgid "The user that owns this subscription." +msgstr "The user that owns this subscription." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + msgid "Guild" msgstr "Guild" @@ -1658,8 +1745,8 @@ 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 "Tuple[:class:`GuildEmoji`, ...]" +msgstr "Tuple[:class:`GuildEmoji`, ...]" msgid "All stickers that the guild owns." msgstr "All stickers that the guild owns." @@ -1781,9 +1868,6 @@ 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." @@ -2141,11 +2225,11 @@ 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:`GuildEmoji`, 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:`GuildEmoji`, 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 "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." msgid ":class:`ForumChannel`" msgstr ":class:`ForumChannel`" @@ -2657,8 +2741,8 @@ 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 "Retrieves all custom :class:`GuildEmoji`\\s from the guild." +msgstr "Retrieves all custom :class:`GuildEmoji`\\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." @@ -2669,11 +2753,11 @@ msgstr "An error occurred fetching the emojis." msgid "The retrieved emojis." msgstr "The retrieved emojis." -msgid "List[:class:`Emoji`]" -msgstr "List[:class:`Emoji`]" +msgid "List[:class:`GuildEmoji`]" +msgstr "List[:class:`GuildEmoji`]" -msgid "Retrieves a custom :class:`Emoji` from the guild." -msgstr "Retrieves a custom :class:`Emoji` from the guild." +msgid "Retrieves a custom :class:`GuildEmoji` from the guild." +msgstr "Retrieves a custom :class:`GuildEmoji` 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." @@ -2684,8 +2768,8 @@ msgstr "The emoji's ID." msgid "The retrieved emoji." msgstr "The retrieved emoji." -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid "The emoji requested could not be found." msgstr "The emoji requested could not be found." @@ -2693,8 +2777,8 @@ 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 "Creates a custom :class:`GuildEmoji` for the guild." +msgstr "Creates a custom :class:`GuildEmoji` 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." @@ -2723,8 +2807,8 @@ 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 "Deletes the custom :class:`GuildEmoji` from the guild." +msgstr "Deletes the custom :class:`GuildEmoji` 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." @@ -3446,6 +3530,15 @@ msgstr "For regular members this is just their avatar, but if they have a guild 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 member's display banner." +msgstr "Returns the member's display banner." + +msgid "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." +msgstr "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild banner the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild banner 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." @@ -3737,9 +3830,6 @@ 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." @@ -3890,9 +3980,6 @@ 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." @@ -4199,9 +4286,6 @@ msgstr "How many times the invite can be used. A value of ``0`` indicates that i 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." @@ -4316,8 +4400,8 @@ msgstr "The position of the role. This number is usually positive. The bottom ro 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 is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." +msgstr "Indicates if the role is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." msgid "Indicates if the role can be mentioned by users." msgstr "Indicates if the role can be mentioned by users." @@ -4346,12 +4430,21 @@ msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typeh 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 guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :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 "Whether the role is available for purchase." +msgstr "Whether the role is available for purchase." + +msgid "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Returns the role's permissions." msgstr "Returns the role's permissions." @@ -4439,20 +4532,26 @@ msgstr "A role tag is a piece of extra information attached to a managed role th 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 "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." +msgstr "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." + 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 "The subscription SKU and listing ID of the role." +msgstr "The subscription SKU and listing ID of 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 "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." msgid "Scheduled Event" msgstr "Scheduled Event" @@ -4694,6 +4793,9 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" + msgid "Onboarding" msgstr "Onboarding" @@ -4811,8 +4913,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" msgid "The option's title." msgstr "The option's title." @@ -5189,8 +5291,8 @@ msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the 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 "This is only available for threads in forum or media channels." +msgstr "This is only available for threads in forum or media channels." msgid "List[:class:`ForumTag`]" msgstr "List[:class:`ForumTag`]" @@ -5240,8 +5342,8 @@ 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 pinned to the top of its parent forum or media channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum or media 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." @@ -5381,8 +5483,8 @@ msgstr "The new duration in minutes before a thread is automatically archived fo 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 "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." 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" @@ -6131,8 +6233,8 @@ 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 "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" msgid "The ID of the channel the interaction was sent from." msgstr "The ID of the channel the interaction was sent from." @@ -6197,8 +6299,8 @@ 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 cached channel from which the interaction was sent. DM channels are not resolved. These are :class:`PartialMessageable` instead." +msgstr "The cached channel from which the interaction was sent. DM channels are not resolved. 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." @@ -6218,6 +6320,30 @@ msgstr "A response can only be done once. If secondary messages need to be sent, msgid "Returns the followup webhook for followup interactions." msgstr "Returns the followup webhook for followup interactions." +msgid ":class:`bool`: Checks if the interaction is guild authorised." +msgstr ":class:`bool`: Checks if the interaction is guild authorised." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorised." +msgstr ":class:`bool`: Checks if the interaction is user authorised." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is guild authorized." +msgstr ":class:`bool`: Checks if the interaction is guild authorized." + +msgid "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorized." +msgstr ":class:`bool`: Checks if the interaction is user authorized." + +msgid "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Fetches the original interaction response message associated with the interaction." msgstr "Fetches the original interaction response message associated with the interaction." @@ -6629,8 +6755,8 @@ msgstr "Whether the select is disabled or not." msgid "Emoji" msgstr "Emoji" -msgid "Represents a custom emoji." -msgstr "Represents a custom emoji." +msgid "Represents a custom emoji in a guild." +msgstr "Represents a custom emoji in a guild." 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``." @@ -6671,12 +6797,6 @@ 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." @@ -6716,6 +6836,48 @@ msgstr "An error occurred editing the emoji." msgid "The newly updated emoji." msgstr "The newly updated emoji." +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 "Represents a custom emoji from an application." +msgstr "Represents a custom emoji from an application." + +msgid "The application ID the emoji belongs to, if available." +msgstr "The application ID the emoji belongs to, if available." + +msgid "The user that created the emoji." +msgstr "The user that created the emoji." + +msgid "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." +msgstr "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." + +msgid "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." +msgstr "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." + +msgid "Whether the bot can use this emoji." +msgstr "Whether the bot can use this emoji." + +msgid "Deletes the application emoji." +msgstr "Deletes the application emoji." + +msgid "You must own the emoji to do this." +msgstr "You must own the emoji to do this." + +msgid "You are not allowed to delete the emoji." +msgstr "You are not allowed to delete the emoji." + +msgid "Edits the application emoji." +msgstr "Edits the application emoji." + +msgid "You are not allowed to edit the emoji." +msgstr "You are not allowed to edit the emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + msgid "Represents a \"partial\" emoji." msgstr "Represents a \"partial\" emoji." @@ -6953,14 +7115,14 @@ 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 "Optional[:class:`str` | :class:`discord.GuildEmoji`]" +msgstr "Optional[:class:`str` | :class:`discord.GuildEmoji`]" 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 "Whether a tag is required to be specified when creating a thread in this forum or media channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum or media channel." msgid "Tags are specified in :attr:`applied_tags`." msgstr "Tags are specified in :attr:`applied_tags`." @@ -6977,8 +7139,8 @@ msgstr "The default sort order type to use to order posts in this channel. .. v 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 default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, 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:`GuildEmoji`, 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" @@ -7010,6 +7172,24 @@ 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 media channel. Subclass of :class:`ForumChannel`." +msgstr "Represents a Discord media channel. Subclass of :class:`ForumChannel`." + +msgid "Whether media download options are hidden in this media channel." +msgstr "Whether media download options are hidden in this media channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." + +msgid "Whether media download options should be hidden in this media channel." +msgstr "Whether media download options should be hidden in this media channel." + +msgid "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.MediaChannel`]" +msgstr "Optional[:class:`.MediaChannel`]" + msgid "Represents a Discord guild voice channel." msgstr "Represents a Discord guild voice channel." diff --git a/docs/locales/ko/LC_MESSAGES/api/sinks.po b/docs/locales/ko/LC_MESSAGES/api/sinks.po index 82436a6b02..e36a21f8ef 100644 --- a/docs/locales/ko/LC_MESSAGES/api/sinks.po +++ b/docs/locales/ko/LC_MESSAGES/api/sinks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/api/ui_kit.po b/docs/locales/ko/LC_MESSAGES/api/ui_kit.po index bcbfa362d8..c79f15cb13 100644 --- a/docs/locales/ko/LC_MESSAGES/api/ui_kit.po +++ b/docs/locales/ko/LC_MESSAGES/api/ui_kit.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -44,8 +44,8 @@ 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 emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." 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)." @@ -122,8 +122,8 @@ 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 in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. 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." @@ -317,8 +317,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" msgid "The callback associated with this UI item." msgstr "The callback associated with this UI item." @@ -419,8 +455,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." @@ -449,6 +485,9 @@ 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 "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 "The title of the modal dialog." msgstr "The title of the modal dialog." diff --git a/docs/locales/ko/LC_MESSAGES/api/utils.po b/docs/locales/ko/LC_MESSAGES/api/utils.po index 11cc3bc28c..09b338136a 100644 --- a/docs/locales/ko/LC_MESSAGES/api/utils.po +++ b/docs/locales/ko/LC_MESSAGES/api/utils.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -407,18 +407,24 @@ msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` 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 "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" + +msgid "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." + 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 "With filter parameter:" +msgstr "With filter parameter:" + 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." @@ -446,6 +452,9 @@ 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 "Example" +msgstr "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." diff --git a/docs/locales/ko/LC_MESSAGES/api/version_info.po b/docs/locales/ko/LC_MESSAGES/api/version_info.po index 3e7ff6039a..7b04bdc20f 100644 --- a/docs/locales/ko/LC_MESSAGES/api/version_info.po +++ b/docs/locales/ko/LC_MESSAGES/api/version_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/api/voice.po b/docs/locales/ko/LC_MESSAGES/api/voice.po index 6458abab9e..e746081c69 100644 --- a/docs/locales/ko/LC_MESSAGES/api/voice.po +++ b/docs/locales/ko/LC_MESSAGES/api/voice.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -215,6 +215,12 @@ msgstr "You are not connected." msgid "Encoding the data failed." msgstr "Encoding the data failed." +msgid "Returns the elapsed time of the playing audio." +msgstr "Returns the elapsed time of the playing audio." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" + msgid "A class that represents the Discord voice protocol." msgstr "A class that represents the Discord voice protocol." @@ -380,11 +386,11 @@ msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` i 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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 "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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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." diff --git a/docs/locales/ko/LC_MESSAGES/api/webhooks.po b/docs/locales/ko/LC_MESSAGES/api/webhooks.po index 37d7e63745..e502fd296e 100644 --- a/docs/locales/ko/LC_MESSAGES/api/webhooks.po +++ b/docs/locales/ko/LC_MESSAGES/api/webhooks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/changelog.po b/docs/locales/ko/LC_MESSAGES/changelog.po index 157985f7ef..31e14db03d 100644 --- a/docs/locales/ko/LC_MESSAGES/changelog.po +++ b/docs/locales/ko/LC_MESSAGES/changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -26,8 +26,122 @@ 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 "⚠️ **This version removes support for Python 3.8.** ⚠️" +msgstr "⚠️ **This version removes support for Python 3.8.** ⚠️" + +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 "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" +msgstr "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" + +msgid "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" +msgstr "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" + +msgid "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" +msgstr "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" + +msgid "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" +msgstr "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" + +msgid "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" +msgstr "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" + +msgid "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" +msgstr "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" + +msgid "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" +msgstr "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" + +msgid "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" +msgstr "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" + +msgid "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" +msgstr "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" + +msgid "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" +msgstr "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" +msgstr "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" + +msgid "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" +msgstr "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" + +msgid "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" +msgstr "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" + +msgid "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" +msgstr "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" + +msgid "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" +msgstr "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" + +msgid "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" +msgstr "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" + +msgid "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" +msgstr "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" + +msgid "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" +msgstr "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" + +msgid "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" +msgstr "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" + +msgid "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" +msgstr "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" + +msgid "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" +msgstr "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" + +msgid "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" +msgstr "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" + +msgid "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" +msgstr "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" + +msgid "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" +msgstr "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" + +msgid "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." +msgstr "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." + +msgid "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" +msgstr "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" + +msgid "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" +msgstr "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" msgid "Changed" msgstr "Changed" @@ -35,14 +149,65 @@ 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 "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" -msgid "Added" -msgstr "Added" +msgid "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" -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 "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" +msgstr "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" + +msgid "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" +msgstr "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" + +msgid "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "[2.6.1] - 2024-09-15" +msgstr "[2.6.1] - 2024-09-15" + +msgid "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" +msgstr "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" + +msgid "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" +msgstr "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" + +msgid "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" +msgstr "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" + +msgid "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" +msgstr "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" + +msgid "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" +msgstr "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" msgid "[2.6.0] - 2024-07-09" msgstr "[2.6.0] - 2024-07-09" @@ -92,9 +257,6 @@ msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord 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))" @@ -119,8 +281,8 @@ msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#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 option type hints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option type hints 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))" @@ -152,8 +314,8 @@ msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.co 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 "HTTP requests that fail with a 503 status are now retried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now retried. ([#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))" @@ -401,8 +563,8 @@ msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ( 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 `AttributeError` when accessing a `Select` object's values when it has not been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it has not 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))" @@ -413,8 +575,8 @@ msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://gi 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 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))" @@ -446,8 +608,8 @@ msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. 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 `Option` not working on bridge commands because `ext.commands.Command` does not recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` does not 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))" @@ -554,8 +716,8 @@ msgstr "Advanced version info is now stored as a dict in `version_info.advanced` 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 bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files did not 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 did not 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))" @@ -686,9 +848,6 @@ msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` funct 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))" @@ -959,11 +1118,11 @@ msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://gith 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 the error when Discord does not send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord does not 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 "Fix AttributeError when voice client `play()` function is not completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function is not 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" diff --git a/docs/locales/ko/LC_MESSAGES/cogs.po b/docs/locales/ko/LC_MESSAGES/cogs.po index 713392b91f..686217ce9b 100644 --- a/docs/locales/ko/LC_MESSAGES/cogs.po +++ b/docs/locales/ko/LC_MESSAGES/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/discord.po b/docs/locales/ko/LC_MESSAGES/discord.po index 242f4b20a4..21fb757068 100644 --- a/docs/locales/ko/LC_MESSAGES/discord.po +++ b/docs/locales/ko/LC_MESSAGES/discord.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/ext/bridge/api.po b/docs/locales/ko/LC_MESSAGES/ext/bridge/api.po index 2e66ef4160..58248a8101 100644 --- a/docs/locales/ko/LC_MESSAGES/ext/bridge/api.po +++ b/docs/locales/ko/LC_MESSAGES/ext/bridge/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -353,14 +353,23 @@ 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 "Options" +msgstr "Options" -msgid "Option" -msgstr "Option" +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" -msgid "BridgeOption" -msgstr "BridgeOption" +msgid "A decorator that can be used instead of typehinting :class:`.BridgeOption`." +msgstr "A decorator that can be used instead of typehinting :class:`.BridgeOption`." + +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 ":class:`str`" +msgstr ":class:`str`" + +msgid "Objects" +msgstr "Objects" 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." diff --git a/docs/locales/ko/LC_MESSAGES/ext/bridge/index.po b/docs/locales/ko/LC_MESSAGES/ext/bridge/index.po index 5d04d47e3a..e6fc497edb 100644 --- a/docs/locales/ko/LC_MESSAGES/ext/bridge/index.po +++ b/docs/locales/ko/LC_MESSAGES/ext/bridge/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/ext/commands/api.po b/docs/locales/ko/LC_MESSAGES/ext/commands/api.po index eaacd057b9..dac662c76d 100644 --- a/docs/locales/ko/LC_MESSAGES/ext/commands/api.po +++ b/docs/locales/ko/LC_MESSAGES/ext/commands/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -269,6 +269,12 @@ msgstr "The view is not persistent. A persistent view has no timeout and all msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -920,8 +995,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -1019,6 +1094,9 @@ msgstr "Optional[:class:`.GuildSticker`]" msgid "Returns a user with the given ID." msgstr "Returns a user with the given ID." +msgid "The :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1064,8 +1142,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1505,8 +1583,11 @@ msgstr "An iterator that recursively walks through all application commands and 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" msgid "Duplicates due to aliases are no longer returned" msgstr "Duplicates due to aliases are no longer returned" @@ -1928,6 +2009,9 @@ msgstr "An iterator that recursively walks through this cog's commands and subco msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." @@ -2108,6 +2192,9 @@ 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 tuple of command types to exclude from the filter." +msgstr "A tuple of command types to exclude from the filter." + msgid "A list of commands that passed the filter." msgstr "A list of commands that passed the filter." @@ -3371,8 +3458,8 @@ 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 "Converts to a :class:`~discord.GuildEmoji`." +msgstr "Converts to a :class:`~discord.GuildEmoji`." 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." @@ -3383,8 +3470,8 @@ 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" msgid "Converts to a :class:`~discord.PartialEmoji`." msgstr "Converts to a :class:`~discord.PartialEmoji`." diff --git a/docs/locales/ko/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/ko/LC_MESSAGES/ext/commands/cogs.po index 324861b347..6d40ecd553 100644 --- a/docs/locales/ko/LC_MESSAGES/ext/commands/cogs.po +++ b/docs/locales/ko/LC_MESSAGES/ext/commands/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/ext/commands/commands.po b/docs/locales/ko/LC_MESSAGES/ext/commands/commands.po index 85b41501d1..f9ad3f6be6 100644 --- a/docs/locales/ko/LC_MESSAGES/ext/commands/commands.po +++ b/docs/locales/ko/LC_MESSAGES/ext/commands/commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -266,8 +266,8 @@ msgstr ":class:`Game`" msgid ":class:`Colour`" msgstr ":class:`Colour`" -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`PartialEmoji`" msgstr ":class:`PartialEmoji`" diff --git a/docs/locales/ko/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/ko/LC_MESSAGES/ext/commands/extensions.po index 4f3fd6efcd..30e6dcfc30 100644 --- a/docs/locales/ko/LC_MESSAGES/ext/commands/extensions.po +++ b/docs/locales/ko/LC_MESSAGES/ext/commands/extensions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/ext/commands/index.po b/docs/locales/ko/LC_MESSAGES/ext/commands/index.po index d05921587d..bd418e3a84 100644 --- a/docs/locales/ko/LC_MESSAGES/ext/commands/index.po +++ b/docs/locales/ko/LC_MESSAGES/ext/commands/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/ext/pages/index.po b/docs/locales/ko/LC_MESSAGES/ext/pages/index.po index 19c1622bfa..fe0e2cb1e6 100644 --- a/docs/locales/ko/LC_MESSAGES/ext/pages/index.po +++ b/docs/locales/ko/LC_MESSAGES/ext/pages/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -536,14 +536,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + 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 "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." msgid "PaginatorMenu" msgstr "PaginatorMenu" @@ -572,8 +602,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." diff --git a/docs/locales/ko/LC_MESSAGES/ext/tasks/index.po b/docs/locales/ko/LC_MESSAGES/ext/tasks/index.po index 6236de13f1..78e1349e13 100644 --- a/docs/locales/ko/LC_MESSAGES/ext/tasks/index.po +++ b/docs/locales/ko/LC_MESSAGES/ext/tasks/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/faq.po b/docs/locales/ko/LC_MESSAGES/faq.po index 91d04f72fb..6603291330 100644 --- a/docs/locales/ko/LC_MESSAGES/faq.po +++ b/docs/locales/ko/LC_MESSAGES/faq.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -161,8 +161,8 @@ 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 "For custom emoji, you should pass an instance of :class:`GuildEmoji` or :class:`AppEmoji`. 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:`GuildEmoji` or :class:`AppEmoji`. 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>``." diff --git a/docs/locales/ko/LC_MESSAGES/index.po b/docs/locales/ko/LC_MESSAGES/index.po index f6843e1e93..ea4ee21a46 100644 --- a/docs/locales/ko/LC_MESSAGES/index.po +++ b/docs/locales/ko/LC_MESSAGES/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/installing.po b/docs/locales/ko/LC_MESSAGES/installing.po index f2d0f0d14d..629b78f130 100644 --- a/docs/locales/ko/LC_MESSAGES/installing.po +++ b/docs/locales/ko/LC_MESSAGES/installing.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -20,8 +20,8 @@ msgstr "This is the documentation for Pycord, a library for Python to aid in cre 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 "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." +msgstr "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." msgid "Installing" msgstr "Installing" diff --git a/docs/locales/ko/LC_MESSAGES/intents.po b/docs/locales/ko/LC_MESSAGES/intents.po index 7201bbd103..dd9504fc44 100644 --- a/docs/locales/ko/LC_MESSAGES/intents.po +++ b/docs/locales/ko/LC_MESSAGES/intents.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/logging.po b/docs/locales/ko/LC_MESSAGES/logging.po index 8130d84e9f..01fa8196b6 100644 --- a/docs/locales/ko/LC_MESSAGES/logging.po +++ b/docs/locales/ko/LC_MESSAGES/logging.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/migrating_to_v1.po b/docs/locales/ko/LC_MESSAGES/migrating_to_v1.po index ea81171aff..09145ca293 100644 --- a/docs/locales/ko/LC_MESSAGES/migrating_to_v1.po +++ b/docs/locales/ko/LC_MESSAGES/migrating_to_v1.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/migrating_to_v2.po b/docs/locales/ko/LC_MESSAGES/migrating_to_v2.po index 4220fe4212..b4b989960c 100644 --- a/docs/locales/ko/LC_MESSAGES/migrating_to_v2.po +++ b/docs/locales/ko/LC_MESSAGES/migrating_to_v2.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/old_changelog.po b/docs/locales/ko/LC_MESSAGES/old_changelog.po index a1f5831ab1..9ac0585abf 100644 --- a/docs/locales/ko/LC_MESSAGES/old_changelog.po +++ b/docs/locales/ko/LC_MESSAGES/old_changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -1208,8 +1208,8 @@ msgstr "|commands| Extensions that fail internally due to ImportError will no lo 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| Allow converters from custom extension packages. (:dpy-issue:`2369`, 2374)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, 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`)" diff --git a/docs/locales/ko/LC_MESSAGES/quickstart.po b/docs/locales/ko/LC_MESSAGES/quickstart.po index 018b5372f2..4ec6ee532e 100644 --- a/docs/locales/ko/LC_MESSAGES/quickstart.po +++ b/docs/locales/ko/LC_MESSAGES/quickstart.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/ko/LC_MESSAGES/version_guarantees.po b/docs/locales/ko/LC_MESSAGES/version_guarantees.po index fc3d82a0ee..f206f9cc6a 100644 --- a/docs/locales/ko/LC_MESSAGES/version_guarantees.po +++ b/docs/locales/ko/LC_MESSAGES/version_guarantees.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/abcs.po b/docs/locales/pt_BR/LC_MESSAGES/api/abcs.po index dd0448a634..942c889d89 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/abcs.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/abcs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po b/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po index ee950c0b7a..f1e2c1e350 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/application_commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -311,6 +311,9 @@ msgstr "The location where this command can be used. Cannot be set if this is a msgid "Set[:class:`InteractionContextType`]" msgstr "Set[:class:`InteractionContextType`]" +msgid "The type of the None singleton." +msgstr "The type of the None singleton." + msgid "Creates a copy of this command." msgstr "Creates a copy of this command." @@ -362,6 +365,9 @@ msgstr "Yields" msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Creates a copy of this command group." msgstr "Creates a copy of this command group." @@ -848,6 +854,24 @@ 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 ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Represents context for a slash command's option autocomplete." msgstr "Represents context for a slash command's option autocomplete." diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/application_info.po b/docs/locales/pt_BR/LC_MESSAGES/api/application_info.po index 31922fca86..aa54ca1f2a 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/application_info.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/application_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -62,9 +62,6 @@ 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 `_." @@ -89,6 +86,36 @@ 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 "The approximate count of guilds to which the app has been added, if any." +msgstr "The approximate count of guilds to which the app has been added, if any." + +msgid "The approximate count of users who have installed the application, if any." +msgstr "The approximate count of users who have installed the application, if any." + +msgid "The list of redirect URIs for the application, if set." +msgstr "The list of redirect URIs for the application, if set." + +msgid "The interactions endpoint URL for the application, if set." +msgstr "The interactions endpoint URL for the application, if set." + +msgid "The role connection verification URL for the application, if set." +msgstr "The role connection verification URL for the application, if set." + +msgid "The settings for the application's default in-app authorization link, if set." +msgstr "The settings for the application's default in-app authorization link, if set." + +msgid "Optional[List[:class:`AppInstallParams`]]" +msgstr "Optional[List[:class:`AppInstallParams`]]" + +msgid "The list of tags describing the content and functionality of the app, if set." +msgstr "The list of tags describing the content and functionality of the app, if set." + +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." + +msgid "The default custom authorization URL for the application, if set." +msgstr "The default custom authorization URL for the application, if set." + msgid "Parameters" msgstr "Parameters" @@ -104,9 +131,30 @@ 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 "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 "It currently returns an empty string." +msgstr "It currently returns an empty string." + 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 the settings for the custom authorization URL of an application." +msgstr "Represents the settings for the custom authorization URL of an application." + +msgid "The list of OAuth2 scopes for adding the application to a guild." +msgstr "The list of OAuth2 scopes for adding the application to a guild." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The permissions to request for the bot role in the guild." +msgstr "The permissions to request for the bot role in the guild." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + msgid "Represents an application team for a bot provided by Discord." msgstr "Represents an application team for a bot provided by Discord." diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/async_iter.po b/docs/locales/pt_BR/LC_MESSAGES/api/async_iter.po index b322381f39..17ca22b162 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/async_iter.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/async_iter.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/audit_logs.po b/docs/locales/pt_BR/LC_MESSAGES/api/audit_logs.po index 05c56e27c2..da02dbd35f 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/audit_logs.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/audit_logs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/clients.po b/docs/locales/pt_BR/LC_MESSAGES/api/clients.po index e4b8f95258..50f8605e7e 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/clients.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/clients.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -257,6 +257,12 @@ msgstr "The coroutine to register as the post-invoke hook." msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -893,8 +968,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -986,6 +1061,9 @@ msgstr "A shortcut decorator that initializes the provided subclass of :class:`. 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 :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1028,8 +1106,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1406,6 +1484,9 @@ msgstr "An iterator that recursively walks through all application commands and msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." @@ -1499,6 +1580,15 @@ msgstr "Whether to enable events that are useful only for debugging gateway rela 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 "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" + +msgid "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." + +msgid "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." +msgstr "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." + 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``." @@ -1526,6 +1616,9 @@ msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used 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 "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 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." diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/cogs.po b/docs/locales/pt_BR/LC_MESSAGES/api/cogs.po index 1f689825ce..41e779bc8e 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/cogs.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -56,6 +56,9 @@ msgstr "Yields" msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/data_classes.po b/docs/locales/pt_BR/LC_MESSAGES/api/data_classes.po index bc1c9d6327..c5e9f3fb51 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/data_classes.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -296,8 +296,8 @@ 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:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`GuildSticker`" msgstr ":class:`GuildSticker`" @@ -803,8 +803,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." msgid "Whether the websocket is currently rate limited." msgstr "Whether the websocket is currently rate limited." @@ -926,6 +926,9 @@ msgstr ":meth:`VoiceChannel.get_partial_message`" msgid ":meth:`StageChannel.get_partial_message`" msgstr ":meth:`StageChannel.get_partial_message`" +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.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." @@ -941,8 +944,8 @@ 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 "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" msgid "The message ID." msgstr "The message ID." @@ -1031,8 +1034,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1682,8 +1685,8 @@ 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 "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" msgid "Represents a poll answer object." msgstr "Represents a poll answer object." @@ -2039,6 +2042,9 @@ msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum 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 "Returns ``True`` if the embedded media download options are hidden for the media channel posts." +msgstr "Returns ``True`` if the embedded media download options are hidden for the media channel posts." + msgid "Wraps up the Discord SKU flags." msgstr "Wraps up the Discord SKU flags." @@ -2594,6 +2600,9 @@ msgstr ":attr:`view_audit_log`" msgid ":attr:`view_guild_insights`" msgstr ":attr:`view_guild_insights`" +msgid ":attr:`view_creator_monetization_analytics`" +msgstr ":attr:`view_creator_monetization_analytics`" + msgid ":attr:`manage_guild`" msgstr ":attr:`manage_guild`" @@ -2624,6 +2633,9 @@ msgstr "A factory method that creates a :class:`Permissions` with all \"General\ 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 "Added :attr:`view_creator_monetization_analytics` permission." +msgstr "Added :attr:`view_creator_monetization_analytics` permission." + 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\\)`" @@ -2810,6 +2822,15 @@ msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in 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 user can view creator monetization (role subscription) analytics." +msgstr "Returns ``True`` if a user can view creator monetization (role subscription) analytics." + +msgid "Returns ``True`` if a user can use the soundboard in a voice channel." +msgstr "Returns ``True`` if a user can use the soundboard in a voice channel." + +msgid "Returns ``True`` if a user can use external soundboard sounds in a voice channel." +msgstr "Returns ``True`` if a user can use external soundboard sounds in a voice channel." + msgid "Returns ``True`` if a member can send voice messages." msgstr "Returns ``True`` if a member can send voice messages." diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/enums.po b/docs/locales/pt_BR/LC_MESSAGES/api/enums.po index b12fa4f3a2..bc214e5db0 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/enums.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/enums.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -974,8 +974,8 @@ 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 "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` 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." @@ -1769,3 +1769,15 @@ 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." +msgid "Represents a subscription's status." +msgstr "Represents a subscription's status." + +msgid "The subscription is active and is scheduled to renew." +msgstr "The subscription is active and is scheduled to renew." + +msgid "The subscription is active but will not renew." +msgstr "The subscription is active but will not renew." + +msgid "The subscription is inactive and the subscription owner is not being charged." +msgstr "The subscription is inactive and the subscription owner is not being charged." + diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/events.po b/docs/locales/pt_BR/LC_MESSAGES/api/events.po index 3de9f161c1..97baa1dd7c 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/events.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/events.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -293,33 +293,6 @@ msgstr "This is only for the messages sent from the client WebSocket. The voice 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" @@ -392,8 +365,8 @@ 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 "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." @@ -791,6 +764,60 @@ 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 "Monetization" +msgstr "Monetization" + +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 cancelled." +msgstr "Called when a user's subscription to an Entitlement is cancelled." + +msgid "Before October 1, 2024, this event was called when a user's subscription was renewed." +msgstr "Before October 1, 2024, this event was called when a user's subscription was renewed." + +msgid "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." +msgstr "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + +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 "Called when a subscription is created for the application." +msgstr "Called when a subscription is created for the application." + +msgid "The subscription that was created." +msgstr "The subscription that was created." + +msgid "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." +msgstr "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." + +msgid "The subscription that was updated." +msgstr "The subscription that was updated." + +msgid "Called when a subscription has been deleted." +msgstr "Called when a subscription has been deleted." + +msgid "The subscription that was deleted." +msgstr "The subscription that was deleted." + msgid "Scheduled Events" msgstr "Scheduled Events" diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/exceptions.po b/docs/locales/pt_BR/LC_MESSAGES/api/exceptions.po index 1840bc94e8..9d41e4317b 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/exceptions.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/exceptions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/index.po b/docs/locales/pt_BR/LC_MESSAGES/api/index.po index 80efb62166..bca668d351 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/index.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/models.po b/docs/locales/pt_BR/LC_MESSAGES/api/models.po index 9c71559652..2cb953bd0b 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/models.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/models.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -1202,6 +1202,9 @@ msgstr "If provided, the number of seconds to wait in the background before dele 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 was not found." +msgstr "The message was not found." + msgid "Editing the message failed." msgstr "Editing the message failed." @@ -1268,8 +1271,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1445,8 +1448,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :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." @@ -1568,9 +1571,45 @@ msgstr ":class:`SKUFlags`" msgid "Returns the URL for the SKU." msgstr "Returns the URL for the SKU." +msgid "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." + +msgid "The user for which to retrieve subscriptions." +msgstr "The user for which to retrieve subscriptions." + +msgid "Retrieves subscriptions before this date or object. If a datetime 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 subscriptions before this date or object. If a datetime 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 subscriptions after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve subscriptions after this date or object. If a datetime 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 subscriptions to retrieve. If ``None``, retrieves all subscriptions." +msgstr "The number of subscriptions to retrieve. If ``None``, retrieves all subscriptions." + +msgid ":class:`Subscription` -- A subscription that the user has for this SKU." +msgstr ":class:`Subscription` -- A subscription that the user has for this SKU." + +msgid "Getting the subscriptions failed." +msgstr "Getting the subscriptions failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters except for ``user`` are optional." +msgstr "All parameters except for ``user`` are optional." + msgid "Represents a Discord entitlement." msgstr "Represents a Discord entitlement." +msgid "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." +msgstr "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + msgid "The entitlement's ID." msgstr "The entitlement's ID." @@ -1607,17 +1646,14 @@ 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 "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.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 "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." +msgstr "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." msgid "Consuming the entitlement failed." msgstr "Consuming the entitlement failed." @@ -1631,6 +1667,57 @@ msgstr "A test entitlement is an entitlement that was created using :meth:`Guild msgid "Deleting the entitlement failed." msgstr "Deleting the entitlement failed." +msgid "Represents a user making recurring payments for one or more SKUs." +msgstr "Represents a user making recurring payments for one or more SKUs." + +msgid "Successful payments grant the user access to entitlements associated with the SKU." +msgstr "Successful payments grant the user access to entitlements associated with the SKU." + +msgid "The subscription's ID." +msgstr "The subscription's ID." + +msgid "The ID of the user that owns this subscription." +msgstr "The ID of the user that owns this subscription." + +msgid "The IDs of the SKUs this subscription is for." +msgstr "The IDs of the SKUs this subscription is for." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the entitlements this subscription is for." +msgstr "The IDs of the entitlements this subscription is for." + +msgid "The IDs of the SKUs that the buyer will be subscribed to at renewal." +msgstr "The IDs of the SKUs that the buyer will be subscribed to at renewal." + +msgid "The start of the current subscription period." +msgstr "The start of the current subscription period." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The end of the current subscription period." +msgstr "The end of the current subscription period." + +msgid "The status of the subscription." +msgstr "The status of the subscription." + +msgid ":class:`SubscriptionStatus`" +msgstr ":class:`SubscriptionStatus`" + +msgid "When the subscription was canceled." +msgstr "When the subscription was canceled." + +msgid ":class:`datetime.datetime` | ``None``" +msgstr ":class:`datetime.datetime` | ``None``" + +msgid "The user that owns this subscription." +msgstr "The user that owns this subscription." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + msgid "Guild" msgstr "Guild" @@ -1658,8 +1745,8 @@ 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 "Tuple[:class:`GuildEmoji`, ...]" +msgstr "Tuple[:class:`GuildEmoji`, ...]" msgid "All stickers that the guild owns." msgstr "All stickers that the guild owns." @@ -1781,9 +1868,6 @@ 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." @@ -2141,11 +2225,11 @@ 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:`GuildEmoji`, 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:`GuildEmoji`, 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 "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." msgid ":class:`ForumChannel`" msgstr ":class:`ForumChannel`" @@ -2657,8 +2741,8 @@ 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 "Retrieves all custom :class:`GuildEmoji`\\s from the guild." +msgstr "Retrieves all custom :class:`GuildEmoji`\\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." @@ -2669,11 +2753,11 @@ msgstr "An error occurred fetching the emojis." msgid "The retrieved emojis." msgstr "The retrieved emojis." -msgid "List[:class:`Emoji`]" -msgstr "List[:class:`Emoji`]" +msgid "List[:class:`GuildEmoji`]" +msgstr "List[:class:`GuildEmoji`]" -msgid "Retrieves a custom :class:`Emoji` from the guild." -msgstr "Retrieves a custom :class:`Emoji` from the guild." +msgid "Retrieves a custom :class:`GuildEmoji` from the guild." +msgstr "Retrieves a custom :class:`GuildEmoji` 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." @@ -2684,8 +2768,8 @@ msgstr "The emoji's ID." msgid "The retrieved emoji." msgstr "The retrieved emoji." -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid "The emoji requested could not be found." msgstr "The emoji requested could not be found." @@ -2693,8 +2777,8 @@ 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 "Creates a custom :class:`GuildEmoji` for the guild." +msgstr "Creates a custom :class:`GuildEmoji` 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." @@ -2723,8 +2807,8 @@ 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 "Deletes the custom :class:`GuildEmoji` from the guild." +msgstr "Deletes the custom :class:`GuildEmoji` 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." @@ -3446,6 +3530,15 @@ msgstr "For regular members this is just their avatar, but if they have a guild 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 member's display banner." +msgstr "Returns the member's display banner." + +msgid "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." +msgstr "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild banner the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild banner 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." @@ -3737,9 +3830,6 @@ 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." @@ -3890,9 +3980,6 @@ 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." @@ -4199,9 +4286,6 @@ msgstr "How many times the invite can be used. A value of ``0`` indicates that i 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." @@ -4316,8 +4400,8 @@ msgstr "The position of the role. This number is usually positive. The bottom ro 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 is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." +msgstr "Indicates if the role is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." msgid "Indicates if the role can be mentioned by users." msgstr "Indicates if the role can be mentioned by users." @@ -4346,12 +4430,21 @@ msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typeh 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 guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :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 "Whether the role is available for purchase." +msgstr "Whether the role is available for purchase." + +msgid "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Returns the role's permissions." msgstr "Returns the role's permissions." @@ -4439,20 +4532,26 @@ msgstr "A role tag is a piece of extra information attached to a managed role th 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 "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." +msgstr "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." + 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 "The subscription SKU and listing ID of the role." +msgstr "The subscription SKU and listing ID of 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 "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." msgid "Scheduled Event" msgstr "Scheduled Event" @@ -4694,6 +4793,9 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" + msgid "Onboarding" msgstr "Onboarding" @@ -4811,8 +4913,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" msgid "The option's title." msgstr "The option's title." @@ -5189,8 +5291,8 @@ msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the 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 "This is only available for threads in forum or media channels." +msgstr "This is only available for threads in forum or media channels." msgid "List[:class:`ForumTag`]" msgstr "List[:class:`ForumTag`]" @@ -5240,8 +5342,8 @@ 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 pinned to the top of its parent forum or media channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum or media 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." @@ -5381,8 +5483,8 @@ msgstr "The new duration in minutes before a thread is automatically archived fo 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 "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." 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" @@ -6131,8 +6233,8 @@ 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 "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" msgid "The ID of the channel the interaction was sent from." msgstr "The ID of the channel the interaction was sent from." @@ -6197,8 +6299,8 @@ 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 cached channel from which the interaction was sent. DM channels are not resolved. These are :class:`PartialMessageable` instead." +msgstr "The cached channel from which the interaction was sent. DM channels are not resolved. 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." @@ -6218,6 +6320,30 @@ msgstr "A response can only be done once. If secondary messages need to be sent, msgid "Returns the followup webhook for followup interactions." msgstr "Returns the followup webhook for followup interactions." +msgid ":class:`bool`: Checks if the interaction is guild authorised." +msgstr ":class:`bool`: Checks if the interaction is guild authorised." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorised." +msgstr ":class:`bool`: Checks if the interaction is user authorised." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is guild authorized." +msgstr ":class:`bool`: Checks if the interaction is guild authorized." + +msgid "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorized." +msgstr ":class:`bool`: Checks if the interaction is user authorized." + +msgid "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Fetches the original interaction response message associated with the interaction." msgstr "Fetches the original interaction response message associated with the interaction." @@ -6629,8 +6755,8 @@ msgstr "Whether the select is disabled or not." msgid "Emoji" msgstr "Emoji" -msgid "Represents a custom emoji." -msgstr "Represents a custom emoji." +msgid "Represents a custom emoji in a guild." +msgstr "Represents a custom emoji in a guild." 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``." @@ -6671,12 +6797,6 @@ 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." @@ -6716,6 +6836,48 @@ msgstr "An error occurred editing the emoji." msgid "The newly updated emoji." msgstr "The newly updated emoji." +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 "Represents a custom emoji from an application." +msgstr "Represents a custom emoji from an application." + +msgid "The application ID the emoji belongs to, if available." +msgstr "The application ID the emoji belongs to, if available." + +msgid "The user that created the emoji." +msgstr "The user that created the emoji." + +msgid "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." +msgstr "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." + +msgid "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." +msgstr "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." + +msgid "Whether the bot can use this emoji." +msgstr "Whether the bot can use this emoji." + +msgid "Deletes the application emoji." +msgstr "Deletes the application emoji." + +msgid "You must own the emoji to do this." +msgstr "You must own the emoji to do this." + +msgid "You are not allowed to delete the emoji." +msgstr "You are not allowed to delete the emoji." + +msgid "Edits the application emoji." +msgstr "Edits the application emoji." + +msgid "You are not allowed to edit the emoji." +msgstr "You are not allowed to edit the emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + msgid "Represents a \"partial\" emoji." msgstr "Represents a \"partial\" emoji." @@ -6953,14 +7115,14 @@ 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 "Optional[:class:`str` | :class:`discord.GuildEmoji`]" +msgstr "Optional[:class:`str` | :class:`discord.GuildEmoji`]" 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 "Whether a tag is required to be specified when creating a thread in this forum or media channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum or media channel." msgid "Tags are specified in :attr:`applied_tags`." msgstr "Tags are specified in :attr:`applied_tags`." @@ -6977,8 +7139,8 @@ msgstr "The default sort order type to use to order posts in this channel. .. v 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 default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, 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:`GuildEmoji`, 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" @@ -7010,6 +7172,24 @@ 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 media channel. Subclass of :class:`ForumChannel`." +msgstr "Represents a Discord media channel. Subclass of :class:`ForumChannel`." + +msgid "Whether media download options are hidden in this media channel." +msgstr "Whether media download options are hidden in this media channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." + +msgid "Whether media download options should be hidden in this media channel." +msgstr "Whether media download options should be hidden in this media channel." + +msgid "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.MediaChannel`]" +msgstr "Optional[:class:`.MediaChannel`]" + msgid "Represents a Discord guild voice channel." msgstr "Represents a Discord guild voice channel." diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/sinks.po b/docs/locales/pt_BR/LC_MESSAGES/api/sinks.po index c041d54623..fe7d7f63fa 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/sinks.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/sinks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/ui_kit.po b/docs/locales/pt_BR/LC_MESSAGES/api/ui_kit.po index 0e374cd9d7..ed8d39153f 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/ui_kit.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/ui_kit.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -44,8 +44,8 @@ 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 emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." 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)." @@ -122,8 +122,8 @@ 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 in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. 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." @@ -317,8 +317,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" msgid "The callback associated with this UI item." msgstr "The callback associated with this UI item." @@ -419,8 +455,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." @@ -449,6 +485,9 @@ 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 "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 "The title of the modal dialog." msgstr "The title of the modal dialog." diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/utils.po b/docs/locales/pt_BR/LC_MESSAGES/api/utils.po index c59ea4f08e..b93009f4b4 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/utils.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/utils.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -407,18 +407,24 @@ msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` 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 "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" + +msgid "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." + 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 "With filter parameter:" +msgstr "With filter parameter:" + 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." @@ -446,6 +452,9 @@ 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 "Example" +msgstr "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." diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/version_info.po b/docs/locales/pt_BR/LC_MESSAGES/api/version_info.po index a57036beac..e0f9d9bc6d 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/version_info.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/version_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/voice.po b/docs/locales/pt_BR/LC_MESSAGES/api/voice.po index ce04e5fda5..8441b7e5e9 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/voice.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/voice.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -215,6 +215,12 @@ msgstr "You are not connected." msgid "Encoding the data failed." msgstr "Encoding the data failed." +msgid "Returns the elapsed time of the playing audio." +msgstr "Returns the elapsed time of the playing audio." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" + msgid "A class that represents the Discord voice protocol." msgstr "A class that represents the Discord voice protocol." @@ -380,11 +386,11 @@ msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` i 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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 "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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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." diff --git a/docs/locales/pt_BR/LC_MESSAGES/api/webhooks.po b/docs/locales/pt_BR/LC_MESSAGES/api/webhooks.po index c6f477ed90..de99e2a6b0 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/api/webhooks.po +++ b/docs/locales/pt_BR/LC_MESSAGES/api/webhooks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/changelog.po b/docs/locales/pt_BR/LC_MESSAGES/changelog.po index 29a1ffefe4..02e1e7e5bc 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/changelog.po +++ b/docs/locales/pt_BR/LC_MESSAGES/changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -26,8 +26,122 @@ 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 "⚠️ **This version removes support for Python 3.8.** ⚠️" +msgstr "⚠️ **This version removes support for Python 3.8.** ⚠️" + +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 "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" +msgstr "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" + +msgid "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" +msgstr "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" + +msgid "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" +msgstr "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" + +msgid "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" +msgstr "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" + +msgid "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" +msgstr "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" + +msgid "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" +msgstr "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" + +msgid "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" +msgstr "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" + +msgid "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" +msgstr "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" + +msgid "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" +msgstr "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" + +msgid "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" +msgstr "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" +msgstr "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" + +msgid "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" +msgstr "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" + +msgid "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" +msgstr "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" + +msgid "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" +msgstr "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" + +msgid "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" +msgstr "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" + +msgid "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" +msgstr "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" + +msgid "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" +msgstr "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" + +msgid "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" +msgstr "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" + +msgid "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" +msgstr "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" + +msgid "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" +msgstr "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" + +msgid "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" +msgstr "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" + +msgid "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" +msgstr "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" + +msgid "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" +msgstr "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" + +msgid "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" +msgstr "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" + +msgid "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." +msgstr "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." + +msgid "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" +msgstr "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" + +msgid "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" +msgstr "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" msgid "Changed" msgstr "Changed" @@ -35,14 +149,65 @@ 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 "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" -msgid "Added" -msgstr "Added" +msgid "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" -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 "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" +msgstr "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" + +msgid "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" +msgstr "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" + +msgid "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "[2.6.1] - 2024-09-15" +msgstr "[2.6.1] - 2024-09-15" + +msgid "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" +msgstr "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" + +msgid "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" +msgstr "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" + +msgid "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" +msgstr "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" + +msgid "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" +msgstr "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" + +msgid "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" +msgstr "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" msgid "[2.6.0] - 2024-07-09" msgstr "[2.6.0] - 2024-07-09" @@ -92,9 +257,6 @@ msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord 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))" @@ -119,8 +281,8 @@ msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#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 option type hints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option type hints 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))" @@ -152,8 +314,8 @@ msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.co 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 "HTTP requests that fail with a 503 status are now retried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now retried. ([#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))" @@ -401,8 +563,8 @@ msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ( 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 `AttributeError` when accessing a `Select` object's values when it has not been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it has not 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))" @@ -413,8 +575,8 @@ msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://gi 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 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))" @@ -446,8 +608,8 @@ msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. 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 `Option` not working on bridge commands because `ext.commands.Command` does not recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` does not 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))" @@ -554,8 +716,8 @@ msgstr "Advanced version info is now stored as a dict in `version_info.advanced` 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 bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files did not 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 did not 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))" @@ -686,9 +848,6 @@ msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` funct 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))" @@ -959,11 +1118,11 @@ msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://gith 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 the error when Discord does not send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord does not 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 "Fix AttributeError when voice client `play()` function is not completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function is not 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/cogs.po b/docs/locales/pt_BR/LC_MESSAGES/cogs.po index d3b99d560a..559c916357 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/cogs.po +++ b/docs/locales/pt_BR/LC_MESSAGES/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/discord.po b/docs/locales/pt_BR/LC_MESSAGES/discord.po index 1d84eae006..6f318a8fd6 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/discord.po +++ b/docs/locales/pt_BR/LC_MESSAGES/discord.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/ext/bridge/api.po b/docs/locales/pt_BR/LC_MESSAGES/ext/bridge/api.po index c8f2bfa309..dde94f73f2 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/ext/bridge/api.po +++ b/docs/locales/pt_BR/LC_MESSAGES/ext/bridge/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -353,14 +353,23 @@ 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 "Options" +msgstr "Options" -msgid "Option" -msgstr "Option" +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" -msgid "BridgeOption" -msgstr "BridgeOption" +msgid "A decorator that can be used instead of typehinting :class:`.BridgeOption`." +msgstr "A decorator that can be used instead of typehinting :class:`.BridgeOption`." + +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 ":class:`str`" +msgstr ":class:`str`" + +msgid "Objects" +msgstr "Objects" 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." diff --git a/docs/locales/pt_BR/LC_MESSAGES/ext/bridge/index.po b/docs/locales/pt_BR/LC_MESSAGES/ext/bridge/index.po index d829d3af31..94d5b4b663 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/ext/bridge/index.po +++ b/docs/locales/pt_BR/LC_MESSAGES/ext/bridge/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/ext/commands/api.po b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/api.po index 76f6bbe713..fbc31a0ce7 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/ext/commands/api.po +++ b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -269,6 +269,12 @@ msgstr "The view is not persistent. A persistent view has no timeout and all msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -920,8 +995,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -1019,6 +1094,9 @@ msgstr "Optional[:class:`.GuildSticker`]" msgid "Returns a user with the given ID." msgstr "Returns a user with the given ID." +msgid "The :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1064,8 +1142,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1505,8 +1583,11 @@ msgstr "An iterator that recursively walks through all application commands and 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" msgid "Duplicates due to aliases are no longer returned" msgstr "Duplicates due to aliases are no longer returned" @@ -1928,6 +2009,9 @@ msgstr "An iterator that recursively walks through this cog's commands and subco msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." @@ -2108,6 +2192,9 @@ 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 tuple of command types to exclude from the filter." +msgstr "A tuple of command types to exclude from the filter." + msgid "A list of commands that passed the filter." msgstr "A list of commands that passed the filter." @@ -3371,8 +3458,8 @@ 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 "Converts to a :class:`~discord.GuildEmoji`." +msgstr "Converts to a :class:`~discord.GuildEmoji`." 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." @@ -3383,8 +3470,8 @@ 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" msgid "Converts to a :class:`~discord.PartialEmoji`." msgstr "Converts to a :class:`~discord.PartialEmoji`." diff --git a/docs/locales/pt_BR/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/cogs.po index b6bdcd19af..3c3bdcf691 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/ext/commands/cogs.po +++ b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/ext/commands/commands.po b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/commands.po index 1a44455c05..6328f825ec 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/ext/commands/commands.po +++ b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -266,8 +266,8 @@ msgstr ":class:`Game`" msgid ":class:`Colour`" msgstr ":class:`Colour`" -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`PartialEmoji`" msgstr ":class:`PartialEmoji`" diff --git a/docs/locales/pt_BR/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/extensions.po index aefcfd5e04..1d605e8e3f 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/ext/commands/extensions.po +++ b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/extensions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/ext/commands/index.po b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/index.po index 201036b377..57a313ebef 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/ext/commands/index.po +++ b/docs/locales/pt_BR/LC_MESSAGES/ext/commands/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/ext/pages/index.po b/docs/locales/pt_BR/LC_MESSAGES/ext/pages/index.po index 30b0c29ee7..fccb0b2b36 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/ext/pages/index.po +++ b/docs/locales/pt_BR/LC_MESSAGES/ext/pages/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -536,14 +536,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + 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 "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." msgid "PaginatorMenu" msgstr "PaginatorMenu" @@ -572,8 +602,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." diff --git a/docs/locales/pt_BR/LC_MESSAGES/ext/tasks/index.po b/docs/locales/pt_BR/LC_MESSAGES/ext/tasks/index.po index beb1ad9f67..5ca39205f0 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/ext/tasks/index.po +++ b/docs/locales/pt_BR/LC_MESSAGES/ext/tasks/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/faq.po b/docs/locales/pt_BR/LC_MESSAGES/faq.po index 5326557f7a..343fdb35fa 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/faq.po +++ b/docs/locales/pt_BR/LC_MESSAGES/faq.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -161,8 +161,8 @@ 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 "For custom emoji, you should pass an instance of :class:`GuildEmoji` or :class:`AppEmoji`. 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:`GuildEmoji` or :class:`AppEmoji`. 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>``." diff --git a/docs/locales/pt_BR/LC_MESSAGES/index.po b/docs/locales/pt_BR/LC_MESSAGES/index.po index e04d506e0c..f842f742ad 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/index.po +++ b/docs/locales/pt_BR/LC_MESSAGES/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/installing.po b/docs/locales/pt_BR/LC_MESSAGES/installing.po index 89b42dbb7a..449b52cd00 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/installing.po +++ b/docs/locales/pt_BR/LC_MESSAGES/installing.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -20,8 +20,8 @@ msgstr "This is the documentation for Pycord, a library for Python to aid in cre 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 "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." +msgstr "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." msgid "Installing" msgstr "Installing" diff --git a/docs/locales/pt_BR/LC_MESSAGES/intents.po b/docs/locales/pt_BR/LC_MESSAGES/intents.po index 036ca6dbac..5b8548adc9 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/intents.po +++ b/docs/locales/pt_BR/LC_MESSAGES/intents.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/logging.po b/docs/locales/pt_BR/LC_MESSAGES/logging.po index 9b9b2f2707..793abccd4a 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/logging.po +++ b/docs/locales/pt_BR/LC_MESSAGES/logging.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/migrating_to_v1.po b/docs/locales/pt_BR/LC_MESSAGES/migrating_to_v1.po index ba2c21442b..fef2da452e 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/migrating_to_v1.po +++ b/docs/locales/pt_BR/LC_MESSAGES/migrating_to_v1.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/migrating_to_v2.po b/docs/locales/pt_BR/LC_MESSAGES/migrating_to_v2.po index 41ef72997c..227dc45b7e 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/migrating_to_v2.po +++ b/docs/locales/pt_BR/LC_MESSAGES/migrating_to_v2.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/old_changelog.po b/docs/locales/pt_BR/LC_MESSAGES/old_changelog.po index 21e169d5d4..b790838a9d 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/old_changelog.po +++ b/docs/locales/pt_BR/LC_MESSAGES/old_changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" @@ -1208,8 +1208,8 @@ msgstr "|commands| Extensions that fail internally due to ImportError will no lo 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| Allow converters from custom extension packages. (:dpy-issue:`2369`, 2374)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, 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`)" diff --git a/docs/locales/pt_BR/LC_MESSAGES/quickstart.po b/docs/locales/pt_BR/LC_MESSAGES/quickstart.po index 21a2adf607..ef90f16283 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/quickstart.po +++ b/docs/locales/pt_BR/LC_MESSAGES/quickstart.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/pt_BR/LC_MESSAGES/version_guarantees.po b/docs/locales/pt_BR/LC_MESSAGES/version_guarantees.po index 5a827907dc..2f0c52e1b1 100644 --- a/docs/locales/pt_BR/LC_MESSAGES/version_guarantees.po +++ b/docs/locales/pt_BR/LC_MESSAGES/version_guarantees.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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" diff --git a/docs/locales/ru/LC_MESSAGES/api/abcs.po b/docs/locales/ru/LC_MESSAGES/api/abcs.po index b84beff8e2..442afab62e 100644 --- a/docs/locales/ru/LC_MESSAGES/api/abcs.po +++ b/docs/locales/ru/LC_MESSAGES/api/abcs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Abstract Base Classes" diff --git a/docs/locales/ru/LC_MESSAGES/api/application_commands.po b/docs/locales/ru/LC_MESSAGES/api/application_commands.po index 6caa6323db..6e89cf6778 100644 --- a/docs/locales/ru/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/ru/LC_MESSAGES/api/application_commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Application Commands" @@ -311,6 +311,9 @@ msgstr "The location where this command can be used. Cannot be set if this is a msgid "Set[:class:`InteractionContextType`]" msgstr "Set[:class:`InteractionContextType`]" +msgid "The type of the None singleton." +msgstr "The type of the None singleton." + msgid "Creates a copy of this command." msgstr "Creates a copy of this command." @@ -362,6 +365,9 @@ msgstr "Yields" msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Creates a copy of this command group." msgstr "Creates a copy of this command group." @@ -848,6 +854,24 @@ 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 ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Represents context for a slash command's option autocomplete." msgstr "Represents context for a slash command's option autocomplete." diff --git a/docs/locales/ru/LC_MESSAGES/api/application_info.po b/docs/locales/ru/LC_MESSAGES/api/application_info.po index 536a97bcfc..370e76be0a 100644 --- a/docs/locales/ru/LC_MESSAGES/api/application_info.po +++ b/docs/locales/ru/LC_MESSAGES/api/application_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Application Info" @@ -62,9 +62,6 @@ 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 `_." @@ -89,6 +86,36 @@ 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 "The approximate count of guilds to which the app has been added, if any." +msgstr "The approximate count of guilds to which the app has been added, if any." + +msgid "The approximate count of users who have installed the application, if any." +msgstr "The approximate count of users who have installed the application, if any." + +msgid "The list of redirect URIs for the application, if set." +msgstr "The list of redirect URIs for the application, if set." + +msgid "The interactions endpoint URL for the application, if set." +msgstr "The interactions endpoint URL for the application, if set." + +msgid "The role connection verification URL for the application, if set." +msgstr "The role connection verification URL for the application, if set." + +msgid "The settings for the application's default in-app authorization link, if set." +msgstr "The settings for the application's default in-app authorization link, if set." + +msgid "Optional[List[:class:`AppInstallParams`]]" +msgstr "Optional[List[:class:`AppInstallParams`]]" + +msgid "The list of tags describing the content and functionality of the app, if set." +msgstr "The list of tags describing the content and functionality of the app, if set." + +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." + +msgid "The default custom authorization URL for the application, if set." +msgstr "The default custom authorization URL for the application, if set." + msgid "Parameters" msgstr "Parameters" @@ -104,9 +131,30 @@ 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 "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 "It currently returns an empty string." +msgstr "It currently returns an empty string." + 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 the settings for the custom authorization URL of an application." +msgstr "Represents the settings for the custom authorization URL of an application." + +msgid "The list of OAuth2 scopes for adding the application to a guild." +msgstr "The list of OAuth2 scopes for adding the application to a guild." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The permissions to request for the bot role in the guild." +msgstr "The permissions to request for the bot role in the guild." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + msgid "Represents an application team for a bot provided by Discord." msgstr "Represents an application team for a bot provided by Discord." diff --git a/docs/locales/ru/LC_MESSAGES/api/async_iter.po b/docs/locales/ru/LC_MESSAGES/api/async_iter.po index 4542caaa27..0ed0500fc7 100644 --- a/docs/locales/ru/LC_MESSAGES/api/async_iter.po +++ b/docs/locales/ru/LC_MESSAGES/api/async_iter.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Async Iterator" diff --git a/docs/locales/ru/LC_MESSAGES/api/audit_logs.po b/docs/locales/ru/LC_MESSAGES/api/audit_logs.po index b7f5602e47..110c04592b 100644 --- a/docs/locales/ru/LC_MESSAGES/api/audit_logs.po +++ b/docs/locales/ru/LC_MESSAGES/api/audit_logs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Audit Log Data" diff --git a/docs/locales/ru/LC_MESSAGES/api/clients.po b/docs/locales/ru/LC_MESSAGES/api/clients.po index 3eaefdcf6b..b7301d5dac 100644 --- a/docs/locales/ru/LC_MESSAGES/api/clients.po +++ b/docs/locales/ru/LC_MESSAGES/api/clients.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Client Objects" @@ -257,6 +257,12 @@ msgstr "The coroutine to register as the post-invoke hook." msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -893,8 +968,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -986,6 +1061,9 @@ msgstr "A shortcut decorator that initializes the provided subclass of :class:`. 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 :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1028,8 +1106,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1406,6 +1484,9 @@ msgstr "An iterator that recursively walks through all application commands and msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." @@ -1499,6 +1580,15 @@ msgstr "Whether to enable events that are useful only for debugging gateway rela 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 "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" + +msgid "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." + +msgid "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." +msgstr "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." + 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``." @@ -1526,6 +1616,9 @@ msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used 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 "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 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." diff --git a/docs/locales/ru/LC_MESSAGES/api/cogs.po b/docs/locales/ru/LC_MESSAGES/api/cogs.po index e68bf4382b..5c59e2962c 100644 --- a/docs/locales/ru/LC_MESSAGES/api/cogs.po +++ b/docs/locales/ru/LC_MESSAGES/api/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" @@ -56,6 +56,9 @@ msgstr "Yields" msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." diff --git a/docs/locales/ru/LC_MESSAGES/api/data_classes.po b/docs/locales/ru/LC_MESSAGES/api/data_classes.po index 0b43e6354a..d1b3153f6d 100644 --- a/docs/locales/ru/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/ru/LC_MESSAGES/api/data_classes.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" @@ -296,8 +296,8 @@ 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:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`GuildSticker`" msgstr ":class:`GuildSticker`" @@ -803,8 +803,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." msgid "Whether the websocket is currently rate limited." msgstr "Whether the websocket is currently rate limited." @@ -926,6 +926,9 @@ msgstr ":meth:`VoiceChannel.get_partial_message`" msgid ":meth:`StageChannel.get_partial_message`" msgstr ":meth:`StageChannel.get_partial_message`" +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.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." @@ -941,8 +944,8 @@ 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 "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" msgid "The message ID." msgstr "The message ID." @@ -1031,8 +1034,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1682,8 +1685,8 @@ 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 "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" msgid "Represents a poll answer object." msgstr "Represents a poll answer object." @@ -2039,6 +2042,9 @@ msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum 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 "Returns ``True`` if the embedded media download options are hidden for the media channel posts." +msgstr "Returns ``True`` if the embedded media download options are hidden for the media channel posts." + msgid "Wraps up the Discord SKU flags." msgstr "Wraps up the Discord SKU flags." @@ -2594,6 +2600,9 @@ msgstr ":attr:`view_audit_log`" msgid ":attr:`view_guild_insights`" msgstr ":attr:`view_guild_insights`" +msgid ":attr:`view_creator_monetization_analytics`" +msgstr ":attr:`view_creator_monetization_analytics`" + msgid ":attr:`manage_guild`" msgstr ":attr:`manage_guild`" @@ -2624,6 +2633,9 @@ msgstr "A factory method that creates a :class:`Permissions` with all \"General\ 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 "Added :attr:`view_creator_monetization_analytics` permission." +msgstr "Added :attr:`view_creator_monetization_analytics` permission." + 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\\)`" @@ -2810,6 +2822,15 @@ msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in 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 user can view creator monetization (role subscription) analytics." +msgstr "Returns ``True`` if a user can view creator monetization (role subscription) analytics." + +msgid "Returns ``True`` if a user can use the soundboard in a voice channel." +msgstr "Returns ``True`` if a user can use the soundboard in a voice channel." + +msgid "Returns ``True`` if a user can use external soundboard sounds in a voice channel." +msgstr "Returns ``True`` if a user can use external soundboard sounds in a voice channel." + msgid "Returns ``True`` if a member can send voice messages." msgstr "Returns ``True`` if a member can send voice messages." diff --git a/docs/locales/ru/LC_MESSAGES/api/enums.po b/docs/locales/ru/LC_MESSAGES/api/enums.po index a41d1de43a..715c0585fa 100644 --- a/docs/locales/ru/LC_MESSAGES/api/enums.po +++ b/docs/locales/ru/LC_MESSAGES/api/enums.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" @@ -974,8 +974,8 @@ 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 "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` 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." @@ -1769,3 +1769,15 @@ 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." +msgid "Represents a subscription's status." +msgstr "Represents a subscription's status." + +msgid "The subscription is active and is scheduled to renew." +msgstr "The subscription is active and is scheduled to renew." + +msgid "The subscription is active but will not renew." +msgstr "The subscription is active but will not renew." + +msgid "The subscription is inactive and the subscription owner is not being charged." +msgstr "The subscription is inactive and the subscription owner is not being charged." + diff --git a/docs/locales/ru/LC_MESSAGES/api/events.po b/docs/locales/ru/LC_MESSAGES/api/events.po index b312999248..5d9af2eea1 100644 --- a/docs/locales/ru/LC_MESSAGES/api/events.po +++ b/docs/locales/ru/LC_MESSAGES/api/events.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" @@ -293,33 +293,6 @@ msgstr "This is only for the messages sent from the client WebSocket. The voice 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" @@ -392,8 +365,8 @@ 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 "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." @@ -791,6 +764,60 @@ 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 "Monetization" +msgstr "Monetization" + +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 cancelled." +msgstr "Called when a user's subscription to an Entitlement is cancelled." + +msgid "Before October 1, 2024, this event was called when a user's subscription was renewed." +msgstr "Before October 1, 2024, this event was called when a user's subscription was renewed." + +msgid "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." +msgstr "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + +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 "Called when a subscription is created for the application." +msgstr "Called when a subscription is created for the application." + +msgid "The subscription that was created." +msgstr "The subscription that was created." + +msgid "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." +msgstr "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." + +msgid "The subscription that was updated." +msgstr "The subscription that was updated." + +msgid "Called when a subscription has been deleted." +msgstr "Called when a subscription has been deleted." + +msgid "The subscription that was deleted." +msgstr "The subscription that was deleted." + msgid "Scheduled Events" msgstr "Scheduled Events" diff --git a/docs/locales/ru/LC_MESSAGES/api/exceptions.po b/docs/locales/ru/LC_MESSAGES/api/exceptions.po index 66bba88ff5..34c47bc219 100644 --- a/docs/locales/ru/LC_MESSAGES/api/exceptions.po +++ b/docs/locales/ru/LC_MESSAGES/api/exceptions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Exceptions" diff --git a/docs/locales/ru/LC_MESSAGES/api/index.po b/docs/locales/ru/LC_MESSAGES/api/index.po index 19dbb17fdf..7971a4d649 100644 --- a/docs/locales/ru/LC_MESSAGES/api/index.po +++ b/docs/locales/ru/LC_MESSAGES/api/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Table of Contents" diff --git a/docs/locales/ru/LC_MESSAGES/api/models.po b/docs/locales/ru/LC_MESSAGES/api/models.po index 2bd42c06ae..8567a72623 100644 --- a/docs/locales/ru/LC_MESSAGES/api/models.po +++ b/docs/locales/ru/LC_MESSAGES/api/models.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" @@ -1202,6 +1202,9 @@ msgstr "If provided, the number of seconds to wait in the background before dele 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 was not found." +msgstr "The message was not found." + msgid "Editing the message failed." msgstr "Editing the message failed." @@ -1268,8 +1271,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1445,8 +1448,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :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." @@ -1568,9 +1571,45 @@ msgstr ":class:`SKUFlags`" msgid "Returns the URL for the SKU." msgstr "Returns the URL for the SKU." +msgid "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." + +msgid "The user for which to retrieve subscriptions." +msgstr "The user for which to retrieve subscriptions." + +msgid "Retrieves subscriptions before this date or object. If a datetime 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 subscriptions before this date or object. If a datetime 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 subscriptions after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve subscriptions after this date or object. If a datetime 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 subscriptions to retrieve. If ``None``, retrieves all subscriptions." +msgstr "The number of subscriptions to retrieve. If ``None``, retrieves all subscriptions." + +msgid ":class:`Subscription` -- A subscription that the user has for this SKU." +msgstr ":class:`Subscription` -- A subscription that the user has for this SKU." + +msgid "Getting the subscriptions failed." +msgstr "Getting the subscriptions failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters except for ``user`` are optional." +msgstr "All parameters except for ``user`` are optional." + msgid "Represents a Discord entitlement." msgstr "Represents a Discord entitlement." +msgid "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." +msgstr "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + msgid "The entitlement's ID." msgstr "The entitlement's ID." @@ -1607,17 +1646,14 @@ 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 "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.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 "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." +msgstr "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." msgid "Consuming the entitlement failed." msgstr "Consuming the entitlement failed." @@ -1631,6 +1667,57 @@ msgstr "A test entitlement is an entitlement that was created using :meth:`Guild msgid "Deleting the entitlement failed." msgstr "Deleting the entitlement failed." +msgid "Represents a user making recurring payments for one or more SKUs." +msgstr "Represents a user making recurring payments for one or more SKUs." + +msgid "Successful payments grant the user access to entitlements associated with the SKU." +msgstr "Successful payments grant the user access to entitlements associated with the SKU." + +msgid "The subscription's ID." +msgstr "The subscription's ID." + +msgid "The ID of the user that owns this subscription." +msgstr "The ID of the user that owns this subscription." + +msgid "The IDs of the SKUs this subscription is for." +msgstr "The IDs of the SKUs this subscription is for." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the entitlements this subscription is for." +msgstr "The IDs of the entitlements this subscription is for." + +msgid "The IDs of the SKUs that the buyer will be subscribed to at renewal." +msgstr "The IDs of the SKUs that the buyer will be subscribed to at renewal." + +msgid "The start of the current subscription period." +msgstr "The start of the current subscription period." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The end of the current subscription period." +msgstr "The end of the current subscription period." + +msgid "The status of the subscription." +msgstr "The status of the subscription." + +msgid ":class:`SubscriptionStatus`" +msgstr ":class:`SubscriptionStatus`" + +msgid "When the subscription was canceled." +msgstr "When the subscription was canceled." + +msgid ":class:`datetime.datetime` | ``None``" +msgstr ":class:`datetime.datetime` | ``None``" + +msgid "The user that owns this subscription." +msgstr "The user that owns this subscription." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + msgid "Guild" msgstr "Guild" @@ -1658,8 +1745,8 @@ 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 "Tuple[:class:`GuildEmoji`, ...]" +msgstr "Tuple[:class:`GuildEmoji`, ...]" msgid "All stickers that the guild owns." msgstr "All stickers that the guild owns." @@ -1781,9 +1868,6 @@ 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." @@ -2141,11 +2225,11 @@ 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:`GuildEmoji`, 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:`GuildEmoji`, 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 "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." msgid ":class:`ForumChannel`" msgstr ":class:`ForumChannel`" @@ -2657,8 +2741,8 @@ 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 "Retrieves all custom :class:`GuildEmoji`\\s from the guild." +msgstr "Retrieves all custom :class:`GuildEmoji`\\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." @@ -2669,11 +2753,11 @@ msgstr "An error occurred fetching the emojis." msgid "The retrieved emojis." msgstr "The retrieved emojis." -msgid "List[:class:`Emoji`]" -msgstr "List[:class:`Emoji`]" +msgid "List[:class:`GuildEmoji`]" +msgstr "List[:class:`GuildEmoji`]" -msgid "Retrieves a custom :class:`Emoji` from the guild." -msgstr "Retrieves a custom :class:`Emoji` from the guild." +msgid "Retrieves a custom :class:`GuildEmoji` from the guild." +msgstr "Retrieves a custom :class:`GuildEmoji` 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." @@ -2684,8 +2768,8 @@ msgstr "The emoji's ID." msgid "The retrieved emoji." msgstr "The retrieved emoji." -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid "The emoji requested could not be found." msgstr "The emoji requested could not be found." @@ -2693,8 +2777,8 @@ 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 "Creates a custom :class:`GuildEmoji` for the guild." +msgstr "Creates a custom :class:`GuildEmoji` 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." @@ -2723,8 +2807,8 @@ 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 "Deletes the custom :class:`GuildEmoji` from the guild." +msgstr "Deletes the custom :class:`GuildEmoji` 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." @@ -3446,6 +3530,15 @@ msgstr "For regular members this is just their avatar, but if they have a guild 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 member's display banner." +msgstr "Returns the member's display banner." + +msgid "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." +msgstr "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild banner the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild banner 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." @@ -3737,9 +3830,6 @@ 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." @@ -3890,9 +3980,6 @@ 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." @@ -4199,9 +4286,6 @@ msgstr "How many times the invite can be used. A value of ``0`` indicates that i 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." @@ -4316,8 +4400,8 @@ msgstr "The position of the role. This number is usually positive. The bottom ro 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 is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." +msgstr "Indicates if the role is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." msgid "Indicates if the role can be mentioned by users." msgstr "Indicates if the role can be mentioned by users." @@ -4346,12 +4430,21 @@ msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typeh 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 guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :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 "Whether the role is available for purchase." +msgstr "Whether the role is available for purchase." + +msgid "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Returns the role's permissions." msgstr "Returns the role's permissions." @@ -4439,20 +4532,26 @@ msgstr "A role tag is a piece of extra information attached to a managed role th 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 "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." +msgstr "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." + 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 "The subscription SKU and listing ID of the role." +msgstr "The subscription SKU and listing ID of 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 "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." msgid "Scheduled Event" msgstr "Scheduled Event" @@ -4694,6 +4793,9 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" + msgid "Onboarding" msgstr "Onboarding" @@ -4811,8 +4913,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" msgid "The option's title." msgstr "The option's title." @@ -5189,8 +5291,8 @@ msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the 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 "This is only available for threads in forum or media channels." +msgstr "This is only available for threads in forum or media channels." msgid "List[:class:`ForumTag`]" msgstr "List[:class:`ForumTag`]" @@ -5240,8 +5342,8 @@ 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 pinned to the top of its parent forum or media channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum or media 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." @@ -5381,8 +5483,8 @@ msgstr "The new duration in minutes before a thread is automatically archived fo 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 "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." 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" @@ -6131,8 +6233,8 @@ 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 "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" msgid "The ID of the channel the interaction was sent from." msgstr "The ID of the channel the interaction was sent from." @@ -6197,8 +6299,8 @@ 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 cached channel from which the interaction was sent. DM channels are not resolved. These are :class:`PartialMessageable` instead." +msgstr "The cached channel from which the interaction was sent. DM channels are not resolved. 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." @@ -6218,6 +6320,30 @@ msgstr "A response can only be done once. If secondary messages need to be sent, msgid "Returns the followup webhook for followup interactions." msgstr "Returns the followup webhook for followup interactions." +msgid ":class:`bool`: Checks if the interaction is guild authorised." +msgstr ":class:`bool`: Checks if the interaction is guild authorised." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorised." +msgstr ":class:`bool`: Checks if the interaction is user authorised." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is guild authorized." +msgstr ":class:`bool`: Checks if the interaction is guild authorized." + +msgid "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorized." +msgstr ":class:`bool`: Checks if the interaction is user authorized." + +msgid "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Fetches the original interaction response message associated with the interaction." msgstr "Fetches the original interaction response message associated with the interaction." @@ -6629,8 +6755,8 @@ msgstr "Whether the select is disabled or not." msgid "Emoji" msgstr "Emoji" -msgid "Represents a custom emoji." -msgstr "Represents a custom emoji." +msgid "Represents a custom emoji in a guild." +msgstr "Represents a custom emoji in a guild." 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``." @@ -6671,12 +6797,6 @@ 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." @@ -6716,6 +6836,48 @@ msgstr "An error occurred editing the emoji." msgid "The newly updated emoji." msgstr "The newly updated emoji." +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 "Represents a custom emoji from an application." +msgstr "Represents a custom emoji from an application." + +msgid "The application ID the emoji belongs to, if available." +msgstr "The application ID the emoji belongs to, if available." + +msgid "The user that created the emoji." +msgstr "The user that created the emoji." + +msgid "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." +msgstr "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." + +msgid "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." +msgstr "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." + +msgid "Whether the bot can use this emoji." +msgstr "Whether the bot can use this emoji." + +msgid "Deletes the application emoji." +msgstr "Deletes the application emoji." + +msgid "You must own the emoji to do this." +msgstr "You must own the emoji to do this." + +msgid "You are not allowed to delete the emoji." +msgstr "You are not allowed to delete the emoji." + +msgid "Edits the application emoji." +msgstr "Edits the application emoji." + +msgid "You are not allowed to edit the emoji." +msgstr "You are not allowed to edit the emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + msgid "Represents a \"partial\" emoji." msgstr "Represents a \"partial\" emoji." @@ -6953,14 +7115,14 @@ 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 "Optional[:class:`str` | :class:`discord.GuildEmoji`]" +msgstr "Optional[:class:`str` | :class:`discord.GuildEmoji`]" 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 "Whether a tag is required to be specified when creating a thread in this forum or media channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum or media channel." msgid "Tags are specified in :attr:`applied_tags`." msgstr "Tags are specified in :attr:`applied_tags`." @@ -6977,8 +7139,8 @@ msgstr "The default sort order type to use to order posts in this channel. .. v 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 default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, 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:`GuildEmoji`, 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" @@ -7010,6 +7172,24 @@ 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 media channel. Subclass of :class:`ForumChannel`." +msgstr "Represents a Discord media channel. Subclass of :class:`ForumChannel`." + +msgid "Whether media download options are hidden in this media channel." +msgstr "Whether media download options are hidden in this media channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." + +msgid "Whether media download options should be hidden in this media channel." +msgstr "Whether media download options should be hidden in this media channel." + +msgid "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.MediaChannel`]" +msgstr "Optional[:class:`.MediaChannel`]" + msgid "Represents a Discord guild voice channel." msgstr "Represents a Discord guild voice channel." diff --git a/docs/locales/ru/LC_MESSAGES/api/sinks.po b/docs/locales/ru/LC_MESSAGES/api/sinks.po index 6c21bd835b..e3f24dac13 100644 --- a/docs/locales/ru/LC_MESSAGES/api/sinks.po +++ b/docs/locales/ru/LC_MESSAGES/api/sinks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" diff --git a/docs/locales/ru/LC_MESSAGES/api/ui_kit.po b/docs/locales/ru/LC_MESSAGES/api/ui_kit.po index f1ec854b78..dd60c99c6e 100644 --- a/docs/locales/ru/LC_MESSAGES/api/ui_kit.po +++ b/docs/locales/ru/LC_MESSAGES/api/ui_kit.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" @@ -44,8 +44,8 @@ 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 emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." 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)." @@ -122,8 +122,8 @@ 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 in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. 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." @@ -317,8 +317,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" msgid "The callback associated with this UI item." msgstr "The callback associated with this UI item." @@ -419,8 +455,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." @@ -449,6 +485,9 @@ 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 "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 "The title of the modal dialog." msgstr "The title of the modal dialog." diff --git a/docs/locales/ru/LC_MESSAGES/api/utils.po b/docs/locales/ru/LC_MESSAGES/api/utils.po index 3bc7abb68d..72999df41e 100644 --- a/docs/locales/ru/LC_MESSAGES/api/utils.po +++ b/docs/locales/ru/LC_MESSAGES/api/utils.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Utility Functions" @@ -407,18 +407,24 @@ msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` 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 "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" + +msgid "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." + 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 "With filter parameter:" +msgstr "With filter parameter:" + 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." @@ -446,6 +452,9 @@ 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 "Example" +msgstr "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." diff --git a/docs/locales/ru/LC_MESSAGES/api/version_info.po b/docs/locales/ru/LC_MESSAGES/api/version_info.po index cd655da13b..701f00061f 100644 --- a/docs/locales/ru/LC_MESSAGES/api/version_info.po +++ b/docs/locales/ru/LC_MESSAGES/api/version_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Version Related Info" diff --git a/docs/locales/ru/LC_MESSAGES/api/voice.po b/docs/locales/ru/LC_MESSAGES/api/voice.po index c254fb8f70..b564ac4ab8 100644 --- a/docs/locales/ru/LC_MESSAGES/api/voice.po +++ b/docs/locales/ru/LC_MESSAGES/api/voice.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Voice Related" @@ -215,6 +215,12 @@ msgstr "You are not connected." msgid "Encoding the data failed." msgstr "Encoding the data failed." +msgid "Returns the elapsed time of the playing audio." +msgstr "Returns the elapsed time of the playing audio." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" + msgid "A class that represents the Discord voice protocol." msgstr "A class that represents the Discord voice protocol." @@ -380,11 +386,11 @@ msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` i 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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 "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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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." diff --git a/docs/locales/ru/LC_MESSAGES/api/webhooks.po b/docs/locales/ru/LC_MESSAGES/api/webhooks.po index 80137a0ede..bdfd2e1746 100644 --- a/docs/locales/ru/LC_MESSAGES/api/webhooks.po +++ b/docs/locales/ru/LC_MESSAGES/api/webhooks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Webhook Support" diff --git a/docs/locales/ru/LC_MESSAGES/changelog.po b/docs/locales/ru/LC_MESSAGES/changelog.po index 09bdd528e5..e31af5b1d8 100644 --- a/docs/locales/ru/LC_MESSAGES/changelog.po +++ b/docs/locales/ru/LC_MESSAGES/changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" @@ -26,8 +26,122 @@ 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 "⚠️ **This version removes support for Python 3.8.** ⚠️" +msgstr "⚠️ **This version removes support for Python 3.8.** ⚠️" + +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 "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" +msgstr "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" + +msgid "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" +msgstr "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" + +msgid "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" +msgstr "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" + +msgid "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" +msgstr "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" + +msgid "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" +msgstr "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" + +msgid "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" +msgstr "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" + +msgid "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" +msgstr "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" + +msgid "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" +msgstr "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" + +msgid "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" +msgstr "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" + +msgid "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" +msgstr "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" +msgstr "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" + +msgid "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" +msgstr "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" + +msgid "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" +msgstr "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" + +msgid "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" +msgstr "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" + +msgid "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" +msgstr "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" + +msgid "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" +msgstr "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" + +msgid "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" +msgstr "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" + +msgid "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" +msgstr "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" + +msgid "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" +msgstr "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" + +msgid "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" +msgstr "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" + +msgid "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" +msgstr "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" + +msgid "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" +msgstr "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" + +msgid "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" +msgstr "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" + +msgid "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" +msgstr "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" + +msgid "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." +msgstr "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." + +msgid "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" +msgstr "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" + +msgid "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" +msgstr "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" msgid "Changed" msgstr "Changed" @@ -35,14 +149,65 @@ 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 "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" -msgid "Added" -msgstr "Added" +msgid "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" -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 "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" +msgstr "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" + +msgid "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" +msgstr "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" + +msgid "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "[2.6.1] - 2024-09-15" +msgstr "[2.6.1] - 2024-09-15" + +msgid "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" +msgstr "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" + +msgid "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" +msgstr "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" + +msgid "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" +msgstr "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" + +msgid "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" +msgstr "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" + +msgid "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" +msgstr "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" msgid "[2.6.0] - 2024-07-09" msgstr "[2.6.0] - 2024-07-09" @@ -92,9 +257,6 @@ msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord 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))" @@ -119,8 +281,8 @@ msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#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 option type hints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option type hints 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))" @@ -152,8 +314,8 @@ msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.co 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 "HTTP requests that fail with a 503 status are now retried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now retried. ([#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))" @@ -401,8 +563,8 @@ msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ( 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 `AttributeError` when accessing a `Select` object's values when it has not been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it has not 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))" @@ -413,8 +575,8 @@ msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://gi 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 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))" @@ -446,8 +608,8 @@ msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. 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 `Option` not working on bridge commands because `ext.commands.Command` does not recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` does not 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))" @@ -554,8 +716,8 @@ msgstr "Advanced version info is now stored as a dict in `version_info.advanced` 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 bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files did not 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 did not 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))" @@ -686,9 +848,6 @@ msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` funct 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))" @@ -959,11 +1118,11 @@ msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://gith 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 the error when Discord does not send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord does not 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 "Fix AttributeError when voice client `play()` function is not completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function is not 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" diff --git a/docs/locales/ru/LC_MESSAGES/cogs.po b/docs/locales/ru/LC_MESSAGES/cogs.po index 5acea9a006..a5615078df 100644 --- a/docs/locales/ru/LC_MESSAGES/cogs.po +++ b/docs/locales/ru/LC_MESSAGES/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" diff --git a/docs/locales/ru/LC_MESSAGES/discord.po b/docs/locales/ru/LC_MESSAGES/discord.po index c65a5ae36b..b391ddff40 100644 --- a/docs/locales/ru/LC_MESSAGES/discord.po +++ b/docs/locales/ru/LC_MESSAGES/discord.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Creating a Bot Account" diff --git a/docs/locales/ru/LC_MESSAGES/ext/bridge/api.po b/docs/locales/ru/LC_MESSAGES/ext/bridge/api.po index 4661fc4a01..ed5dc8b28a 100644 --- a/docs/locales/ru/LC_MESSAGES/ext/bridge/api.po +++ b/docs/locales/ru/LC_MESSAGES/ext/bridge/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" @@ -353,14 +353,23 @@ 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 "Options" +msgstr "Options" -msgid "Option" -msgstr "Option" +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" -msgid "BridgeOption" -msgstr "BridgeOption" +msgid "A decorator that can be used instead of typehinting :class:`.BridgeOption`." +msgstr "A decorator that can be used instead of typehinting :class:`.BridgeOption`." + +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 ":class:`str`" +msgstr ":class:`str`" + +msgid "Objects" +msgstr "Objects" 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." diff --git a/docs/locales/ru/LC_MESSAGES/ext/bridge/index.po b/docs/locales/ru/LC_MESSAGES/ext/bridge/index.po index 8201df822b..6f01dd9af7 100644 --- a/docs/locales/ru/LC_MESSAGES/ext/bridge/index.po +++ b/docs/locales/ru/LC_MESSAGES/ext/bridge/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" diff --git a/docs/locales/ru/LC_MESSAGES/ext/commands/api.po b/docs/locales/ru/LC_MESSAGES/ext/commands/api.po index 9c73faf3c7..4d98a4bff9 100644 --- a/docs/locales/ru/LC_MESSAGES/ext/commands/api.po +++ b/docs/locales/ru/LC_MESSAGES/ext/commands/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" @@ -269,6 +269,12 @@ msgstr "The view is not persistent. A persistent view has no timeout and all msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -920,8 +995,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -1019,6 +1094,9 @@ msgstr "Optional[:class:`.GuildSticker`]" msgid "Returns a user with the given ID." msgstr "Returns a user with the given ID." +msgid "The :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1064,8 +1142,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1505,8 +1583,11 @@ msgstr "An iterator that recursively walks through all application commands and 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" msgid "Duplicates due to aliases are no longer returned" msgstr "Duplicates due to aliases are no longer returned" @@ -1928,6 +2009,9 @@ msgstr "An iterator that recursively walks through this cog's commands and subco msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." @@ -2108,6 +2192,9 @@ 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 tuple of command types to exclude from the filter." +msgstr "A tuple of command types to exclude from the filter." + msgid "A list of commands that passed the filter." msgstr "A list of commands that passed the filter." @@ -3371,8 +3458,8 @@ 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 "Converts to a :class:`~discord.GuildEmoji`." +msgstr "Converts to a :class:`~discord.GuildEmoji`." 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." @@ -3383,8 +3470,8 @@ 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" msgid "Converts to a :class:`~discord.PartialEmoji`." msgstr "Converts to a :class:`~discord.PartialEmoji`." diff --git a/docs/locales/ru/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/ru/LC_MESSAGES/ext/commands/cogs.po index 089b6e2f4e..811b097818 100644 --- a/docs/locales/ru/LC_MESSAGES/ext/commands/cogs.po +++ b/docs/locales/ru/LC_MESSAGES/ext/commands/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" diff --git a/docs/locales/ru/LC_MESSAGES/ext/commands/commands.po b/docs/locales/ru/LC_MESSAGES/ext/commands/commands.po index 88d83445bd..cd38d512ab 100644 --- a/docs/locales/ru/LC_MESSAGES/ext/commands/commands.po +++ b/docs/locales/ru/LC_MESSAGES/ext/commands/commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" @@ -266,8 +266,8 @@ msgstr ":class:`Game`" msgid ":class:`Colour`" msgstr ":class:`Colour`" -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`PartialEmoji`" msgstr ":class:`PartialEmoji`" diff --git a/docs/locales/ru/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/ru/LC_MESSAGES/ext/commands/extensions.po index f813885885..3c20cce8bc 100644 --- a/docs/locales/ru/LC_MESSAGES/ext/commands/extensions.po +++ b/docs/locales/ru/LC_MESSAGES/ext/commands/extensions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Extensions" diff --git a/docs/locales/ru/LC_MESSAGES/ext/commands/index.po b/docs/locales/ru/LC_MESSAGES/ext/commands/index.po index bdb8ff19a7..f5a48535f1 100644 --- a/docs/locales/ru/LC_MESSAGES/ext/commands/index.po +++ b/docs/locales/ru/LC_MESSAGES/ext/commands/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" diff --git a/docs/locales/ru/LC_MESSAGES/ext/pages/index.po b/docs/locales/ru/LC_MESSAGES/ext/pages/index.po index d77448bb1f..9a590bd501 100644 --- a/docs/locales/ru/LC_MESSAGES/ext/pages/index.po +++ b/docs/locales/ru/LC_MESSAGES/ext/pages/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" @@ -536,14 +536,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + 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 "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." msgid "PaginatorMenu" msgstr "PaginatorMenu" @@ -572,8 +602,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." diff --git a/docs/locales/ru/LC_MESSAGES/ext/tasks/index.po b/docs/locales/ru/LC_MESSAGES/ext/tasks/index.po index 967725ae47..e0a44e6a41 100644 --- a/docs/locales/ru/LC_MESSAGES/ext/tasks/index.po +++ b/docs/locales/ru/LC_MESSAGES/ext/tasks/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" diff --git a/docs/locales/ru/LC_MESSAGES/faq.po b/docs/locales/ru/LC_MESSAGES/faq.po index 72ebf5ead6..b74c9adbf7 100644 --- a/docs/locales/ru/LC_MESSAGES/faq.po +++ b/docs/locales/ru/LC_MESSAGES/faq.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Frequently Asked Questions" @@ -161,8 +161,8 @@ 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 "For custom emoji, you should pass an instance of :class:`GuildEmoji` or :class:`AppEmoji`. 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:`GuildEmoji` or :class:`AppEmoji`. 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>``." diff --git a/docs/locales/ru/LC_MESSAGES/index.po b/docs/locales/ru/LC_MESSAGES/index.po index d5a7d7a340..4ff1ed0931 100644 --- a/docs/locales/ru/LC_MESSAGES/index.po +++ b/docs/locales/ru/LC_MESSAGES/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Extensions" diff --git a/docs/locales/ru/LC_MESSAGES/installing.po b/docs/locales/ru/LC_MESSAGES/installing.po index 88aa6d6c37..38c1100ffe 100644 --- a/docs/locales/ru/LC_MESSAGES/installing.po +++ b/docs/locales/ru/LC_MESSAGES/installing.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Installing Pycord" @@ -20,8 +20,8 @@ msgstr "This is the documentation for Pycord, a library for Python to aid in cre 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 "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." +msgstr "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." msgid "Installing" msgstr "Installing" diff --git a/docs/locales/ru/LC_MESSAGES/intents.po b/docs/locales/ru/LC_MESSAGES/intents.po index 50fdcb0254..1089c8632a 100644 --- a/docs/locales/ru/LC_MESSAGES/intents.po +++ b/docs/locales/ru/LC_MESSAGES/intents.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "A Primer to Gateway Intents" diff --git a/docs/locales/ru/LC_MESSAGES/logging.po b/docs/locales/ru/LC_MESSAGES/logging.po index e8adaf5e6d..5c6a9360b0 100644 --- a/docs/locales/ru/LC_MESSAGES/logging.po +++ b/docs/locales/ru/LC_MESSAGES/logging.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Setting Up Logging" diff --git a/docs/locales/ru/LC_MESSAGES/migrating_to_v1.po b/docs/locales/ru/LC_MESSAGES/migrating_to_v1.po index 36d42347de..47c4a3a4cd 100644 --- a/docs/locales/ru/LC_MESSAGES/migrating_to_v1.po +++ b/docs/locales/ru/LC_MESSAGES/migrating_to_v1.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Migrating to v1.0" diff --git a/docs/locales/ru/LC_MESSAGES/migrating_to_v2.po b/docs/locales/ru/LC_MESSAGES/migrating_to_v2.po index 850bce1c7d..7f089354f5 100644 --- a/docs/locales/ru/LC_MESSAGES/migrating_to_v2.po +++ b/docs/locales/ru/LC_MESSAGES/migrating_to_v2.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Migrating to v2.0" diff --git a/docs/locales/ru/LC_MESSAGES/old_changelog.po b/docs/locales/ru/LC_MESSAGES/old_changelog.po index af8302c786..1167094096 100644 --- a/docs/locales/ru/LC_MESSAGES/old_changelog.po +++ b/docs/locales/ru/LC_MESSAGES/old_changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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" @@ -1208,8 +1208,8 @@ msgstr "|commands| Extensions that fail internally due to ImportError will no lo 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| Allow converters from custom extension packages. (:dpy-issue:`2369`, 2374)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, 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`)" diff --git a/docs/locales/ru/LC_MESSAGES/quickstart.po b/docs/locales/ru/LC_MESSAGES/quickstart.po index 7700c88a94..57bc2c6650 100644 --- a/docs/locales/ru/LC_MESSAGES/quickstart.po +++ b/docs/locales/ru/LC_MESSAGES/quickstart.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Quickstart" diff --git a/docs/locales/ru/LC_MESSAGES/version_guarantees.po b/docs/locales/ru/LC_MESSAGES/version_guarantees.po index 547ea8b9d7..dd4fb8c1c6 100644 --- a/docs/locales/ru/LC_MESSAGES/version_guarantees.po +++ b/docs/locales/ru/LC_MESSAGES/version_guarantees.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-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" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-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 "Version Guarantees" diff --git a/docs/locales/tr/LC_MESSAGES/api/abcs.po b/docs/locales/tr/LC_MESSAGES/api/abcs.po new file mode 100644 index 0000000000..942c889d89 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/abcs.po @@ -0,0 +1,685 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/api/application_commands.po b/docs/locales/tr/LC_MESSAGES/api/application_commands.po new file mode 100644 index 0000000000..f1e2c1e350 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/application_commands.po @@ -0,0 +1,901 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 "The type of the None singleton." +msgstr "The type of the None singleton." + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`SlashCommand`" +msgstr ":class:`SlashCommand`" + +msgid "A class that implements the protocol for a slash command group." +msgstr "A class that implements the protocol for a slash command group." + +msgid "These can be created manually, but they should be created via the decorator or functional interface." +msgstr "These can be created manually, but they should be created via the decorator or functional interface." + +msgid "The parent group that this group belongs to. ``None`` if there isn't one." +msgstr "The parent group that this group belongs to. ``None`` if there isn't one." + +msgid "The location where this command can be used. Unapplicable for guild commands." +msgstr "The location where this command can be used. Unapplicable for guild commands." + +msgid "Creates a new subgroup for this SlashCommandGroup." +msgstr "Creates a new subgroup for this SlashCommandGroup." + +msgid "The name of the group to create." +msgstr "The name of the group to create." + +msgid "The description of the group to create." +msgstr "The description of the group to create." + +msgid "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." +msgstr "A list of the IDs of each guild this group should be added to, making it a guild command. This will be a global command if ``None`` is passed." + +msgid "The slash command group that was created." +msgstr "The slash command group that was created." + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` as a subgroup." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "An iterator that recursively walks through all slash commands and groups in this group." +msgstr "An iterator that recursively walks through all slash commands and groups in this group." + +msgid "Yields" +msgstr "Yields" + +msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Creates a copy of this command group." +msgstr "Creates a copy of this command group." + +msgid "A new instance of this command group." +msgstr "A new instance of this command group." + +msgid ":class:`SlashCommandGroup`" +msgstr ":class:`SlashCommandGroup`" + +msgid "A class that implements the protocol for user context menu commands." +msgstr "A class that implements the protocol for user context menu commands." + +msgid "Use the ``contexts`` parameter instead." +msgstr "Use the ``contexts`` parameter instead." + +msgid "The installation contexts where this command is available. Unapplicable for guild commands." +msgstr "The installation contexts where this command is available. Unapplicable for guild commands." + +msgid "The interaction contexts where this command is available. Unapplicable for guild commands." +msgstr "The interaction contexts where this command is available. Unapplicable for guild commands." + +msgid ":class:`UserCommand`" +msgstr ":class:`UserCommand`" + +msgid "A class that implements the protocol for message context menu commands." +msgstr "A class that implements the protocol for message context menu commands." + +msgid ":class:`MessageCommand`" +msgstr ":class:`MessageCommand`" + +msgid "Options" +msgstr "Options" + +msgid "A decorator that can be used instead of typehinting :class:`.Option`." +msgstr "A decorator that can be used instead of typehinting :class:`.Option`." + +msgid "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." +msgstr "The name of the target function parameter this option is mapped to. This allows you to have a separate UI ``name`` and parameter name." + +msgid "Represents a selectable option for a slash command." +msgstr "Represents a selectable option for a slash command." + +msgid "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." +msgstr "The type of input that is expected for this option. This can be a :class:`SlashCommandOptionType`, an associated class, a channel type, a :class:`Converter`, a converter class or an :class:`enum.Enum`. If a :class:`enum.Enum` is used and it has up to 25 values, :attr:`choices` will be automatically filled. If the :class:`enum.Enum` has more than 25 values, :attr:`autocomplete` will be implemented with :func:`discord.utils.basic_autocomplete` instead." + +msgid "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" +msgstr "Union[Type[:class:`str`], Type[:class:`bool`], Type[:class:`int`], Type[:class:`float`], Type[:class:`.abc.GuildChannel`], Type[:class:`Thread`], Type[:class:`Member`], Type[:class:`User`], Type[:class:`Attachment`], Type[:class:`Role`], Type[:class:`.abc.Mentionable`], :class:`SlashCommandOptionType`, Type[:class:`.ext.commands.Converter`], Type[:class:`enums.Enum`], Type[:class:`Enum`]]" + +msgid "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." +msgstr "The name of this option visible in the UI. Inherits from the variable name if not provided as a parameter." + +msgid "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." +msgstr "The description of this option. Must be 100 characters or fewer. If :attr:`input_type` is a :class:`enum.Enum` and :attr:`description` is not specified, :attr:`input_type`'s docstring will be used." + +msgid "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." +msgstr "The list of available choices for this option. Can be a list of values or :class:`OptionChoice` objects (which represent a name:value pair). If provided, the input from the user must match one of the choices in the list." + +msgid "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" +msgstr "Optional[List[Union[:class:`Any`, :class:`OptionChoice`]]]" + +msgid "Whether this option is required." +msgstr "Whether this option is required." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "The default value for this option. If provided, ``required`` will be considered ``False``." +msgstr "The default value for this option. If provided, ``required`` will be considered ``False``." + +msgid "Optional[:class:`Any`]" +msgstr "Optional[:class:`Any`]" + +msgid "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The minimum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." +msgstr "The maximum value that can be entered. Only applies to Options with an :attr:`.input_type` of :class:`int` or :class:`float`." + +msgid "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The minimum length of the string that can be entered. Must be between 0 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." +msgstr "The maximum length of the string that can be entered. Must be between 1 and 6000 (inclusive). Only applies to Options with an :attr:`input_type` of :class:`str`." + +msgid "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." +msgstr "The autocomplete handler for the option. Accepts a callable (sync or async) that takes a single argument of :class:`AutocompleteContext`. The callable must return an iterable of :class:`str` or :class:`OptionChoice`. Alternatively, :func:`discord.utils.basic_autocomplete` may be used in place of the callable." + +msgid "Does not validate the input value against the autocomplete results." +msgstr "Does not validate the input value against the autocomplete results." + +msgid "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" +msgstr "Optional[Callable[[:class:`.AutocompleteContext`], Awaitable[Union[Iterable[:class:`.OptionChoice`], Iterable[:class:`str`], Iterable[:class:`int`], Iterable[:class:`float`]]]]]" + +msgid "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." +msgstr "A list of channel types that can be selected in this option. Only applies to Options with an :attr:`input_type` of :class:`discord.SlashCommandOptionType.channel`. If this argument is used, :attr:`input_type` will be ignored." + +msgid "list[:class:`discord.ChannelType`] | None" +msgstr "list[:class:`discord.ChannelType`] | None" + +msgid "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this option. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." +msgstr "The description localizations for this option. The values of this should be ``\"locale\": \"description\"``. See `here `_ for a list of valid locales." + +msgid "Examples" +msgstr "Examples" + +msgid "Basic usage: ::" +msgstr "Basic usage: ::" + +msgid "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." +msgstr "Represents a class that can be passed as the ``input_type`` for an :class:`Option` class." + +msgid "The thread type to expect for this options input." +msgstr "The thread type to expect for this options input." + +msgid "Represents a name:value pairing for a selected :class:`.Option`." +msgstr "Represents a name:value pairing for a selected :class:`.Option`." + +msgid "The name of the choice. Shown in the UI when selecting an option." +msgstr "The name of the choice. Shown in the UI when selecting an option." + +msgid "The value of the choice. If not provided, will use the value of ``name``." +msgstr "The value of the choice. If not provided, will use the value of ``name``." + +msgid "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" +msgstr "Optional[Union[:class:`str`, :class:`int`, :class:`float`]]" + +msgid "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." +msgstr "The name localizations for this choice. The values of this should be ``\"locale\": \"name\"``. See `here `_ for a list of valid locales." + +msgid "Context Objects" +msgstr "Context Objects" + +msgid "Represents a Discord application command interaction context." +msgstr "Represents a Discord application command interaction context." + +msgid "This class is not created manually and is instead passed to application commands as the first parameter." +msgstr "This class is not created manually and is instead passed to application commands as the first parameter." + +msgid "The bot that the command belongs to." +msgstr "The bot that the command belongs to." + +msgid ":class:`.Bot`" +msgstr ":class:`.Bot`" + +msgid "The interaction object that invoked the command." +msgstr "The interaction object that invoked the command." + +msgid ":class:`.Interaction`" +msgstr ":class:`.Interaction`" + +msgid "The command that this context belongs to." +msgstr "The command that this context belongs to." + +msgid ":class:`.ApplicationCommand`" +msgstr ":class:`.ApplicationCommand`" + +msgid "|coro|" +msgstr "|coro|" + +msgid "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." +msgstr "Calls a command with the arguments given. This is useful if you want to just call the callback that a :class:`.ApplicationCommand` holds internally." + +msgid "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." +msgstr "This does not handle converters, checks, cooldowns, pre-invoke, or after-invoke hooks in any matter. It calls the internal callback directly as-if it was a regular function. You must take care in passing the proper arguments when using this function." + +msgid "The command that is going to be called." +msgstr "The command that is going to be called." + +msgid "The arguments to use." +msgstr "The arguments to use." + +msgid "The keyword arguments to use." +msgstr "The keyword arguments to use." + +msgid "The command argument to invoke is missing." +msgstr "The command argument to invoke is missing." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." +msgstr "Union[:class:`abc.GuildChannel`, :class:`PartialMessageable`, :class:`Thread`]: Returns the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel`." + +msgid "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." +msgstr "Returns the ID of the channel associated with this context's command. Shorthand for :attr:`.Interaction.channel_id`." + +msgid "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." +msgstr "Returns the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild`." + +msgid "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." +msgstr "Returns the ID of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_id`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.locale`." + +msgid "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." +msgstr "Returns the locale of the guild associated with this context's command. Shorthand for :attr:`.Interaction.guild_locale`." + +msgid "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." +msgstr "Union[:class:`.Member`, :class:`.ClientUser`]: Similar to :attr:`.Guild.me` except it may return the :class:`.ClientUser` in private message message contexts, or when :meth:`Intents.guilds` is absent." + +msgid "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." +msgstr "Returns the message sent with this context's command. Shorthand for :attr:`.Interaction.message`, if applicable." + +msgid "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." +msgstr "Returns the user that sent this context's command. Shorthand for :attr:`.Interaction.user`." + +msgid "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." +msgstr "Returns the voice client associated with this context's command. Shorthand for :attr:`Interaction.guild.voice_client<~discord.Guild.voice_client>`, if applicable." + +msgid "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." +msgstr "Returns the response object associated with this context's command. Shorthand for :attr:`.Interaction.response`." + +msgid "The options and values that were selected by the user when sending the command." +msgstr "The options and values that were selected by the user when sending the command." + +msgid "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." +msgstr "A dictionary containing the options and values that were selected by the user when the command was processed, if applicable. Returns ``None`` if the command has not yet been invoked, or if there are no options defined for that command." + +msgid "Optional[List[Dict[:class:`str`, Any]]]" +msgstr "Optional[List[Dict[:class:`str`, Any]]]" + +msgid "The options that were not provided by the user when sending the command." +msgstr "The options that were not provided by the user when sending the command." + +msgid "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." +msgstr "A list of Option objects (if any) that were not selected by the user when the command was processed. Returns ``None`` if there are no options defined for that command." + +msgid "Optional[List[:class:`.Option`]]" +msgstr "Optional[List[:class:`.Option`]]" + +msgid "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." +msgstr "|coro| Responds to this interaction by sending a modal dialog. This cannot be used to respond to another modal dialog submission." + +msgid "The modal dialog to display to the user." +msgstr "The modal dialog to display to the user." + +msgid "Sending the modal failed." +msgstr "Sending the modal failed." + +msgid "This interaction has already been responded to before." +msgstr "This interaction has already been responded to before." + +msgid "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." +msgstr "Sends either a response or a message using the followup webhook determined by whether the interaction has been responded to or not." + +msgid "The response, its type depending on whether it's an interaction response or a followup." +msgstr "The response, its type depending on whether it's an interaction response or a followup." + +msgid "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" +msgstr "Union[:class:`discord.Interaction`, :class:`discord.WebhookMessage`]" + +msgid "Responds to this interaction by sending a message." +msgstr "Responds to this interaction by sending a message." + +msgid "The content of the message to send." +msgstr "The content of the message to send." + +msgid "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." +msgstr "A list of embeds to send with the content. Maximum of 10. This cannot be mixed with the ``embed`` parameter." + +msgid "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." +msgstr "The rich embed for the content to send. This cannot be mixed with ``embeds`` parameter." + +msgid "Indicates if the message should be sent using text-to-speech." +msgstr "Indicates if the message should be sent using text-to-speech." + +msgid "The view to send with the message." +msgstr "The view to send with the message." + +msgid "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user who started the interaction. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." +msgstr "Controls the mentions being processed in this message. See :meth:`.abc.Messageable.send` for more information." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just sent." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just sent." + +msgid "The file to upload." +msgstr "The file to upload." + +msgid "A list of files to upload. Must be a maximum of 10." +msgstr "A list of files to upload. Must be a maximum of 10." + +msgid "The poll to send. .. versionadded:: 2.6" +msgstr "The poll to send. .. versionadded:: 2.6" + +msgid "The poll to send." +msgstr "The poll to send." + +msgid "The interaction object associated with the sent message." +msgstr "The interaction object associated with the sent message." + +msgid "Sending the message failed." +msgstr "Sending the message failed." + +msgid "You specified both ``embed`` and ``embeds``." +msgstr "You specified both ``embed`` and ``embeds``." + +msgid "The length of ``embeds`` was invalid." +msgstr "The length of ``embeds`` was invalid." + +msgid "Sends a message using the webhook." +msgstr "Sends a message using the webhook." + +msgid "The content must be a type that can convert to a string through ``str(content)``." +msgstr "The content must be a type that can convert to a string through ``str(content)``." + +msgid "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." +msgstr "To upload a single file, the ``file`` parameter should be used with a single :class:`File` object." + +msgid "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." +msgstr "If the ``embed`` parameter is provided, it must be of type :class:`Embed` and it must be a rich embed type. You cannot mix the ``embed`` parameter with the ``embeds`` parameter, which must be a :class:`list` of :class:`Embed` objects to send." + +msgid "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." +msgstr "Whether the server should wait before sending a response. This essentially means that the return type of this function changes from ``None`` to a :class:`WebhookMessage` if set to ``True``. If the type of webhook is :attr:`WebhookType.application` then this is always set to ``True``." + +msgid "The username to send with this message. If no username is provided then the default username for the webhook is used." +msgstr "The username to send with this message. If no username is provided then the default username for the webhook is used." + +msgid "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." +msgstr "The avatar URL to send with this message. If no avatar URL is provided then the default avatar for the webhook is used. If this is not a string then it is explicitly cast using ``str``." + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes. .. versionadded:: 2.0" + +msgid "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." +msgstr "Indicates if the message should only be visible to the user. This is only available to :attr:`WebhookType.application` webhooks. If a view is sent with an ephemeral message, and it has no timeout set then the timeout is set to 15 minutes." + +msgid "The file to upload. This cannot be mixed with ``files`` parameter." +msgstr "The file to upload. This cannot be mixed with ``files`` parameter." + +msgid "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." +msgstr "A list of files to send with the content. This cannot be mixed with the ``file`` parameter." + +msgid "Controls the mentions being processed in this message. .. versionadded:: 1.4" +msgstr "Controls the mentions being processed in this message. .. versionadded:: 1.4" + +msgid "Controls the mentions being processed in this message." +msgstr "Controls the mentions being processed in this message." + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library. .. versionadded:: 2.0" + +msgid "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." +msgstr "The view to send with the message. You can only send a view if this webhook is not partial and has state attached. A webhook has state attached if the webhook is managed by the library." + +msgid "The thread to send this webhook to. .. versionadded:: 2.0" +msgstr "The thread to send this webhook to. .. versionadded:: 2.0" + +msgid "The thread to send this webhook to." +msgstr "The thread to send this webhook to." + +msgid "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" +msgstr "The name of the thread to create. Only works for forum channels. .. versionadded:: 2.0" + +msgid "The name of the thread to create. Only works for forum channels." +msgstr "The name of the thread to create. Only works for forum channels." + +msgid "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" +msgstr "A list of tags to apply to the message. Only works for threads. .. versionadded:: 2.5" + +msgid "A list of tags to apply to the message. Only works for threads." +msgstr "A list of tags to apply to the message. Only works for threads." + +msgid "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." +msgstr "If ``wait`` is ``True`` then the message that was sent, otherwise ``None``." + +msgid "Optional[:class:`WebhookMessage`]" +msgstr "Optional[:class:`WebhookMessage`]" + +msgid "This webhook was not found." +msgstr "This webhook was not found." + +msgid "The authorization token for the webhook is incorrect." +msgstr "The authorization token for the webhook is incorrect." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``." + +msgid "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." +msgstr "Either there was no token associated with this webhook, ``ephemeral`` was passed with the improper webhook type, there was no state attached with this webhook when giving it a view, you specified both ``thread_name`` and ``thread``, or ``applied_tags`` was passed with neither ``thread_name`` nor ``thread`` specified." + +msgid "Defers the interaction response." +msgstr "Defers the interaction response." + +msgid "This is typically used when the interaction is acknowledged and a secondary action will be done later." +msgstr "This is typically used when the interaction is acknowledged and a secondary action will be done later." + +msgid "This can only be used with the following interaction types:" +msgstr "This can only be used with the following interaction types:" + +msgid ":attr:`InteractionType.application_command`" +msgstr ":attr:`InteractionType.application_command`" + +msgid ":attr:`InteractionType.component`" +msgstr ":attr:`InteractionType.component`" + +msgid ":attr:`InteractionType.modal_submit`" +msgstr ":attr:`InteractionType.modal_submit`" + +msgid "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." +msgstr "The follow-up response will also be non-ephemeral if the `ephemeral` argument is ``False``, and ephemeral if ``True``." + +msgid "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." +msgstr "Indicates whether the deferred message will eventually be ephemeral. This only applies to :attr:`InteractionType.application_command` interactions, or if ``invisible`` is ``False``." + +msgid "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." +msgstr "Indicates whether the deferred type should be 'invisible' (:attr:`InteractionResponseType.deferred_message_update`) instead of 'thinking' (:attr:`InteractionResponseType.deferred_channel_message`). In the Discord UI, this is represented as the bot thinking of a response. You must eventually send a followup message via :attr:`Interaction.followup` to make this thinking state go away. This parameter does not apply to interactions of type :attr:`InteractionType.application_command`." + +msgid "Deferring the interaction failed." +msgstr "Deferring the interaction failed." + +msgid "Returns the followup webhook for followup interactions." +msgstr "Returns the followup webhook for followup interactions." + +msgid "Deletes the original interaction response message." +msgstr "Deletes the original interaction response message." + +msgid "This is a higher level interface to :meth:`Interaction.delete_original_response`." +msgstr "This is a higher level interface to :meth:`Interaction.delete_original_response`." + +msgid "If provided, the number of seconds to wait before deleting the message." +msgstr "If provided, the number of seconds to wait before deleting the message." + +msgid "Deleting the message failed." +msgstr "Deleting the message failed." + +msgid "You do not have proper permissions to delete the message." +msgstr "You do not have proper permissions to delete the message." + +msgid "Edits the original interaction response message." +msgstr "Edits the original interaction response message." + +msgid "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." +msgstr "This is a lower level interface to :meth:`InteractionMessage.edit` in case you do not want to fetch the message and save an HTTP request." + +msgid "This method is also the only way to edit the original message if the message sent was ephemeral." +msgstr "This method is also the only way to edit the original message if the message sent was ephemeral." + +msgid "The content to edit the message with or ``None`` to clear it." +msgstr "The content to edit the message with or ``None`` to clear it." + +msgid "A list of embeds to edit the message with." +msgstr "A list of embeds to edit the message with." + +msgid "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." +msgstr "The embed to edit the message with. ``None`` suppresses the embeds. This should not be mixed with the ``embeds`` parameter." + +msgid "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." +msgstr "A list of attachments to keep in the message. If ``[]`` is passed then all attachments are removed." + +msgid "The updated view to update this message with. If ``None`` is passed then the view is removed." +msgstr "The updated view to update this message with. If ``None`` is passed then the view is removed." + +msgid "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." +msgstr "If provided, the number of seconds to wait in the background before deleting the message we just edited. If the deletion fails, then it is silently ignored." + +msgid "Whether to suppress embeds for the message." +msgstr "Whether to suppress embeds for the message." + +msgid "The newly edited message." +msgstr "The newly edited message." + +msgid ":class:`InteractionMessage`" +msgstr ":class:`InteractionMessage`" + +msgid "Editing the message failed." +msgstr "Editing the message failed." + +msgid "Edited a message that is not yours." +msgstr "Edited a message that is not yours." + +msgid "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" +msgstr "You specified both ``embed`` and ``embeds`` or ``file`` and ``files``" + +msgid "Returns the cog associated with this context's command. ``None`` if it does not exist." +msgstr "Returns the cog associated with this context's command. ``None`` if it does not exist." + +msgid ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +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/tr/LC_MESSAGES/api/application_info.po b/docs/locales/tr/LC_MESSAGES/api/application_info.po new file mode 100644 index 0000000000..aa54ca1f2a --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/application_info.po @@ -0,0 +1,229 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 "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 "The approximate count of guilds to which the app has been added, if any." +msgstr "The approximate count of guilds to which the app has been added, if any." + +msgid "The approximate count of users who have installed the application, if any." +msgstr "The approximate count of users who have installed the application, if any." + +msgid "The list of redirect URIs for the application, if set." +msgstr "The list of redirect URIs for the application, if set." + +msgid "The interactions endpoint URL for the application, if set." +msgstr "The interactions endpoint URL for the application, if set." + +msgid "The role connection verification URL for the application, if set." +msgstr "The role connection verification URL for the application, if set." + +msgid "The settings for the application's default in-app authorization link, if set." +msgstr "The settings for the application's default in-app authorization link, if set." + +msgid "Optional[List[:class:`AppInstallParams`]]" +msgstr "Optional[List[:class:`AppInstallParams`]]" + +msgid "The list of tags describing the content and functionality of the app, if set." +msgstr "The list of tags describing the content and functionality of the app, if set." + +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." + +msgid "The default custom authorization URL for the application, if set." +msgstr "The default custom authorization URL for the application, 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 "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 "It currently returns an empty string." +msgstr "It currently returns an empty string." + +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 the settings for the custom authorization URL of an application." +msgstr "Represents the settings for the custom authorization URL of an application." + +msgid "The list of OAuth2 scopes for adding the application to a guild." +msgstr "The list of OAuth2 scopes for adding the application to a guild." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The permissions to request for the bot role in the guild." +msgstr "The permissions to request for the bot role in the guild." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + +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/tr/LC_MESSAGES/api/async_iter.po b/docs/locales/tr/LC_MESSAGES/api/async_iter.po new file mode 100644 index 0000000000..17ca22b162 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/async_iter.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/api/audit_logs.po b/docs/locales/tr/LC_MESSAGES/api/audit_logs.po new file mode 100644 index 0000000000..da02dbd35f --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/audit_logs.po @@ -0,0 +1,502 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/api/clients.po b/docs/locales/tr/LC_MESSAGES/api/clients.po new file mode 100644 index 0000000000..50f8605e7e --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/clients.po @@ -0,0 +1,1660 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + +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 "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + +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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + +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 "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + +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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + +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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Shortcut for :meth:`.get_application_command`." +msgstr "Shortcut for :meth:`.get_application_command`." + +msgid "Overridden in :class:`ext.commands.Bot`." +msgstr "Overridden in :class:`ext.commands.Bot`." + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" + +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 :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + +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. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "By default, this coroutine is called inside the :func:`.on_connect` event. If you choose to override the :func:`.on_connect` event, then you should invoke this coroutine as well such as the following:" +msgstr "By default, this coroutine is called inside the :func:`.on_connect` event. If you choose to override the :func:`.on_connect` event, then you should invoke this coroutine as well such as the following:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." + +msgid "Clients" +msgstr "Clients" + +msgid "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." +msgstr "Represents a client connection that connects to Discord. This class is used to interact with the Discord WebSocket and API." + +msgid "A number of options can be passed to the :class:`Client`." +msgstr "A number of options can be passed to the :class:`Client`." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache. .. versionchanged:: 1.3 Allow disabling the message cache and change the default size to ``1000``." + +msgid "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." +msgstr "The maximum number of messages to store in the internal message cache. This defaults to ``1000``. Passing in ``None`` disables the message cache." + +msgid "Allow disabling the message cache and change the default size to ``1000``." +msgstr "Allow disabling the message cache and change the default size to ``1000``." + +msgid "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." +msgstr "The :class:`asyncio.AbstractEventLoop` to use for asynchronous operations. Defaults to ``None``, in which case the default event loop is used via :func:`asyncio.get_event_loop()`." + +msgid "The connector to use for connection pooling." +msgstr "The connector to use for connection pooling." + +msgid "Proxy URL." +msgstr "Proxy URL." + +msgid "An object that represents proxy HTTP Basic Authorization." +msgstr "An object that represents proxy HTTP Basic Authorization." + +msgid "Integer starting at ``0`` and less than :attr:`.shard_count`." +msgstr "Integer starting at ``0`` and less than :attr:`.shard_count`." + +msgid "The total number of shards." +msgstr "The total number of shards." + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class. .. versionadded:: 1.5" + +msgid "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." +msgstr "The intents that you want to enable for the session. This is a way of disabling and enabling certain gateway events from triggering and being sent. If not given, defaults to a regularly constructed :class:`Intents` class." + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents. .. versionadded:: 1.5" + +msgid "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." +msgstr "Allows for finer control over how the library caches members. If not given, defaults to cache as much as possible with the currently selected intents." + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``. .. versionadded:: 1.5" + +msgid "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." +msgstr "Indicates if :func:`.on_ready` should be delayed to chunk all guilds at start-up if necessary. This operation is incredibly slow for large amounts of guilds. The default is ``True`` if :attr:`Intents.members` is ``True``." + +msgid "A status to start your presence with upon logging on to Discord." +msgstr "A status to start your presence with upon logging on to Discord." + +msgid "An activity to start your presence with upon logging on to Discord." +msgstr "An activity to start your presence with upon logging on to Discord." + +msgid "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" +msgstr "Control how the client handles mentions by default on every message sent. .. versionadded:: 1.4" + +msgid "Control how the client handles mentions by default on every message sent." +msgstr "Control how the client handles mentions by default on every message sent." + +msgid "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." +msgstr "The maximum numbers of seconds before timing out and restarting the WebSocket in the case of not receiving a HEARTBEAT_ACK. Useful if processing the initial packets take too long to the point of disconnecting you. The default timeout is 60 seconds." + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds. .. versionadded:: 1.4" + +msgid "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." +msgstr "The maximum number of seconds to wait for the GUILD_CREATE stream to end before preparing the member cache and firing READY. The default timeout is 2 seconds." + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server. .. versionadded:: 1.3" + +msgid "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." +msgstr "Whether to assume the system clock is unsynced. This applies to the ratelimit handling code. If this is set to ``True``, the default, then the library uses the time to reset a rate limit bucket given by Discord. If this is ``False`` then your system clock is used to calculate how long to sleep for. If this is set to ``False`` it is recommended to sync your system clock to Google's NTP server." + +msgid "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "Whether to enable events that are useful only for debugging gateway related information. Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "Whether to enable events that are useful only for debugging gateway related information." +msgstr "Whether to enable events that are useful only for debugging gateway related information." + +msgid "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." +msgstr "Right now this involves :func:`on_socket_raw_receive` and :func:`on_socket_raw_send`. If this is ``False`` then those events will not be dispatched (due to performance considerations). To enable these events, this must be set to ``True``. Defaults to ``False``." + +msgid "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" + +msgid "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." + +msgid "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." +msgstr "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." + +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 "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 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/tr/LC_MESSAGES/api/cogs.po b/docs/locales/tr/LC_MESSAGES/api/cogs.po new file mode 100644 index 0000000000..433cfc9750 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/cogs.po @@ -0,0 +1,190 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Crowdin\n" + +msgid "Cogs" +msgstr "Cogs" + +msgid "The base class that all cogs must inherit from." +msgstr "The base class that all cogs must inherit from." + +msgid "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." +msgstr "A cog is a collection of commands, listeners, and optional state to help group commands together. More information on them can be found on the :ref:`ext_commands_cogs` page." + +msgid "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." +msgstr "When inheriting from this class, the options shown in :class:`CogMeta` are equally valid here." + +msgid "Returns" +msgstr "Returns" + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." +msgstr "A :class:`list` of :class:`.ApplicationCommand`\\s that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "Return type" +msgstr "Return type" + +msgid "List[:class:`.ApplicationCommand`]" +msgstr "List[:class:`.ApplicationCommand`]" + +msgid "Returns the cog's specified name, not the class name." +msgstr "Returns the cog's specified name, not the class name." + +msgid "Returns the cog's description, typically the cleaned docstring." +msgstr "Returns the cog's description, typically the cleaned docstring." + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Yields" +msgstr "Yields" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." +msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." + +msgid "The listeners defined in this cog." +msgstr "The listeners defined in this cog." + +msgid "List[Tuple[:class:`str`, :ref:`coroutine `]]" +msgstr "List[Tuple[:class:`str`, :ref:`coroutine `]]" + +msgid "A decorator that marks a function as a listener." +msgstr "A decorator that marks a function as a listener." + +msgid "This is the cog equivalent of :meth:`.Bot.listen`." +msgstr "This is the cog equivalent of :meth:`.Bot.listen`." + +msgid "Parameters" +msgstr "Parameters" + +msgid "The name of the event being listened to. If not provided, it defaults to the function's name." +msgstr "The name of the event being listened to. If not provided, it defaults to the function's name." + +msgid "If this listener should only be called once after each cog load. Defaults to false." +msgstr "If this listener should only be called once after each cog load. Defaults to false." + +msgid "Raises" +msgstr "Raises" + +msgid "The function is not a coroutine function or a string was not passed as the name." +msgstr "The function is not a coroutine function or a string was not passed as the name." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`FuncT\\`\\`\\, bound\\= \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\:py\\:data\\:\\`...\\\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\)\\]`" + +msgid "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the cog has an error handler. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that is called when the cog gets removed." +msgstr "A special method that is called when the cog gets removed." + +msgid "This function **cannot** be a coroutine. It must be a regular function." +msgstr "This function **cannot** be a coroutine. It must be a regular function." + +msgid "Subclasses must replace this if they want special unloading behaviour." +msgstr "Subclasses must replace this if they want special unloading behaviour." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:obj\\:\\`None\\``" + +msgid "A special method that registers as a :meth:`.Bot.check_once` check." +msgstr "A special method that registers as a :meth:`.Bot.check_once` check." + +msgid "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." +msgstr "This function **can** be a coroutine and must take a sole parameter, ``ctx``, to represent the :class:`.Context` or :class:`.ApplicationContext`." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "A special method that registers as a :meth:`.Bot.check` check." +msgstr "A special method that registers as a :meth:`.Bot.check` check." + +msgid "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." +msgstr "A special method that registers as a :func:`~discord.ext.commands.check` for every command and subcommand in this cog." + +msgid "A special method that is called whenever an error is dispatched inside this cog." +msgstr "A special method that is called whenever an error is dispatched inside this cog." + +msgid "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." +msgstr "This is similar to :func:`.on_command_error` except only applying to the commands inside this cog." + +msgid "This **must** be a coroutine." +msgstr "This **must** be a coroutine." + +msgid "The invocation context where the error happened." +msgstr "The invocation context where the error happened." + +msgid "The error that happened." +msgstr "The error that happened." + +msgid "A special method that acts as a cog local pre-invoke hook." +msgstr "A special method that acts as a cog local pre-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.before_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.before_invoke`." + +msgid "A special method that acts as a cog local post-invoke hook." +msgstr "A special method that acts as a cog local post-invoke hook." + +msgid "This is similar to :meth:`.ApplicationCommand.after_invoke`." +msgstr "This is similar to :meth:`.ApplicationCommand.after_invoke`." + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "type" +msgstr "type" + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + diff --git a/docs/locales/tr/LC_MESSAGES/api/data_classes.po b/docs/locales/tr/LC_MESSAGES/api/data_classes.po new file mode 100644 index 0000000000..c5e9f3fb51 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/data_classes.po @@ -0,0 +1,2917 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" + +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. If no heartbeat has been received yet this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." + +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 ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.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`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" + +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, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." + +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:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :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 "Returns ``True`` if the embedded media download options are hidden for the media channel posts." +msgstr "Returns ``True`` if the embedded media download options are hidden for the media channel posts." + +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:`view_creator_monetization_analytics`" +msgstr ":attr:`view_creator_monetization_analytics`" + +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 "Added :attr:`view_creator_monetization_analytics` permission." +msgstr "Added :attr:`view_creator_monetization_analytics` permission." + +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 user can view creator monetization (role subscription) analytics." +msgstr "Returns ``True`` if a user can view creator monetization (role subscription) analytics." + +msgid "Returns ``True`` if a user can use the soundboard in a voice channel." +msgstr "Returns ``True`` if a user can use the soundboard in a voice channel." + +msgid "Returns ``True`` if a user can use external soundboard sounds in a voice channel." +msgstr "Returns ``True`` if a user can use external soundboard sounds in a voice channel." + +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/tr/LC_MESSAGES/api/enums.po b/docs/locales/tr/LC_MESSAGES/api/enums.po new file mode 100644 index 0000000000..bc214e5db0 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/enums.po @@ -0,0 +1,1783 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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:`GuildEmoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` 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." + +msgid "Represents a subscription's status." +msgstr "Represents a subscription's status." + +msgid "The subscription is active and is scheduled to renew." +msgstr "The subscription is active and is scheduled to renew." + +msgid "The subscription is active but will not renew." +msgstr "The subscription is active but will not renew." + +msgid "The subscription is inactive and the subscription owner is not being charged." +msgstr "The subscription is inactive and the subscription owner is not being charged." + diff --git a/docs/locales/tr/LC_MESSAGES/api/events.po b/docs/locales/tr/LC_MESSAGES/api/events.po new file mode 100644 index 0000000000..97baa1dd7c --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/events.po @@ -0,0 +1,1012 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 "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:`GuildEmoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." + +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 "Monetization" +msgstr "Monetization" + +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 cancelled." +msgstr "Called when a user's subscription to an Entitlement is cancelled." + +msgid "Before October 1, 2024, this event was called when a user's subscription was renewed." +msgstr "Before October 1, 2024, this event was called when a user's subscription was renewed." + +msgid "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." +msgstr "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + +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 "Called when a subscription is created for the application." +msgstr "Called when a subscription is created for the application." + +msgid "The subscription that was created." +msgstr "The subscription that was created." + +msgid "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." +msgstr "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." + +msgid "The subscription that was updated." +msgstr "The subscription that was updated." + +msgid "Called when a subscription has been deleted." +msgstr "Called when a subscription has been deleted." + +msgid "The subscription that was deleted." +msgstr "The subscription that was deleted." + +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/tr/LC_MESSAGES/api/exceptions.po b/docs/locales/tr/LC_MESSAGES/api/exceptions.po new file mode 100644 index 0000000000..9d41e4317b --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/exceptions.po @@ -0,0 +1,331 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/api/index.po b/docs/locales/tr/LC_MESSAGES/api/index.po new file mode 100644 index 0000000000..bca668d351 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/index.po @@ -0,0 +1,25 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/api/models.po b/docs/locales/tr/LC_MESSAGES/api/models.po new file mode 100644 index 0000000000..2cb953bd0b --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/models.po @@ -0,0 +1,7984 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 "The message was not found." +msgstr "The message was not found." + +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, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." + +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:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :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 "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." + +msgid "The user for which to retrieve subscriptions." +msgstr "The user for which to retrieve subscriptions." + +msgid "Retrieves subscriptions before this date or object. If a datetime 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 subscriptions before this date or object. If a datetime 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 subscriptions after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve subscriptions after this date or object. If a datetime 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 subscriptions to retrieve. If ``None``, retrieves all subscriptions." +msgstr "The number of subscriptions to retrieve. If ``None``, retrieves all subscriptions." + +msgid ":class:`Subscription` -- A subscription that the user has for this SKU." +msgstr ":class:`Subscription` -- A subscription that the user has for this SKU." + +msgid "Getting the subscriptions failed." +msgstr "Getting the subscriptions failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters except for ``user`` are optional." +msgstr "All parameters except for ``user`` are optional." + +msgid "Represents a Discord entitlement." +msgstr "Represents a Discord entitlement." + +msgid "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." +msgstr "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + +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 from an SKU of type :attr:`SKUType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.consumable`." + +msgid "Consumes this entitlement." +msgstr "Consumes this entitlement." + +msgid "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." +msgstr "This can only be done on entitlements from an SKU of type :attr:`SKUType.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 "Represents a user making recurring payments for one or more SKUs." +msgstr "Represents a user making recurring payments for one or more SKUs." + +msgid "Successful payments grant the user access to entitlements associated with the SKU." +msgstr "Successful payments grant the user access to entitlements associated with the SKU." + +msgid "The subscription's ID." +msgstr "The subscription's ID." + +msgid "The ID of the user that owns this subscription." +msgstr "The ID of the user that owns this subscription." + +msgid "The IDs of the SKUs this subscription is for." +msgstr "The IDs of the SKUs this subscription is for." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the entitlements this subscription is for." +msgstr "The IDs of the entitlements this subscription is for." + +msgid "The IDs of the SKUs that the buyer will be subscribed to at renewal." +msgstr "The IDs of the SKUs that the buyer will be subscribed to at renewal." + +msgid "The start of the current subscription period." +msgstr "The start of the current subscription period." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The end of the current subscription period." +msgstr "The end of the current subscription period." + +msgid "The status of the subscription." +msgstr "The status of the subscription." + +msgid ":class:`SubscriptionStatus`" +msgstr ":class:`SubscriptionStatus`" + +msgid "When the subscription was canceled." +msgstr "When the subscription was canceled." + +msgid ":class:`datetime.datetime` | ``None``" +msgstr ":class:`datetime.datetime` | ``None``" + +msgid "The user that owns this subscription." +msgstr "The user that owns this subscription." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + +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:`GuildEmoji`, ...]" +msgstr "Tuple[:class:`GuildEmoji`, ...]" + +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 "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:`GuildEmoji`, 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:`GuildEmoji`, 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:`GuildEmoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, 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:`GuildEmoji`\\s from the guild." +msgstr "Retrieves all custom :class:`GuildEmoji`\\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:`GuildEmoji`]" +msgstr "List[:class:`GuildEmoji`]" + +msgid "Retrieves a custom :class:`GuildEmoji` from the guild." +msgstr "Retrieves a custom :class:`GuildEmoji` 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:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" + +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:`GuildEmoji` for the guild." +msgstr "Creates a custom :class:`GuildEmoji` 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:`GuildEmoji` from the guild." +msgstr "Deletes the custom :class:`GuildEmoji` 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 member's display banner." +msgstr "Returns the member's display banner." + +msgid "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." +msgstr "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild banner the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild banner 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 "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 "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 "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. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." +msgstr "Indicates if the role is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." + +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 guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :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 "Whether the role is available for purchase." +msgstr "Whether the role is available for purchase." + +msgid "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is a guild connections role. :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 "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." +msgstr "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." + +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 "The subscription SKU and listing ID of the role." +msgstr "The subscription SKU and listing ID of 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 guild manages the role through some form of integrations such as Twitch or through guild subscriptions." +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." + +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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" + +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:`GuildEmoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`GuildEmoji`, :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 or media channels." +msgstr "This is only available for threads in forum or media 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 or media channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum or media 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 or media channel." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." + +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`, :class:`PartialMessageable`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" + +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 "The cached channel from which the interaction was sent. DM channels are not resolved. These are :class:`PartialMessageable` instead." +msgstr "The cached channel from which the interaction was sent. DM channels are not resolved. 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 ":class:`bool`: Checks if the interaction is guild authorised." +msgstr ":class:`bool`: Checks if the interaction is guild authorised." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorised." +msgstr ":class:`bool`: Checks if the interaction is user authorised." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is guild authorized." +msgstr ":class:`bool`: Checks if the interaction is guild authorized." + +msgid "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorized." +msgstr ":class:`bool`: Checks if the interaction is user authorized." + +msgid "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +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 in a guild." +msgstr "Represents a custom emoji in a guild." + +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 "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 "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 "Represents a custom emoji from an application." +msgstr "Represents a custom emoji from an application." + +msgid "The application ID the emoji belongs to, if available." +msgstr "The application ID the emoji belongs to, if available." + +msgid "The user that created the emoji." +msgstr "The user that created the emoji." + +msgid "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." +msgstr "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." + +msgid "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." +msgstr "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." + +msgid "Whether the bot can use this emoji." +msgstr "Whether the bot can use this emoji." + +msgid "Deletes the application emoji." +msgstr "Deletes the application emoji." + +msgid "You must own the emoji to do this." +msgstr "You must own the emoji to do this." + +msgid "You are not allowed to delete the emoji." +msgstr "You are not allowed to delete the emoji." + +msgid "Edits the application emoji." +msgstr "Edits the application emoji." + +msgid "You are not allowed to edit the emoji." +msgstr "You are not allowed to edit the emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + +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.GuildEmoji`]" +msgstr "Optional[:class:`str` | :class:`discord.GuildEmoji`]" + +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 or media channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum or media 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:`GuildEmoji`, 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:`GuildEmoji`, 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 media channel. Subclass of :class:`ForumChannel`." +msgstr "Represents a Discord media channel. Subclass of :class:`ForumChannel`." + +msgid "Whether media download options are hidden in this media channel." +msgstr "Whether media download options are hidden in this media channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." + +msgid "Whether media download options should be hidden in this media channel." +msgstr "Whether media download options should be hidden in this media channel." + +msgid "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.MediaChannel`]" +msgstr "Optional[:class:`.MediaChannel`]" + +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/tr/LC_MESSAGES/api/sinks.po b/docs/locales/tr/LC_MESSAGES/api/sinks.po new file mode 100644 index 0000000000..fe7d7f63fa --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/sinks.po @@ -0,0 +1,106 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/api/ui_kit.po b/docs/locales/tr/LC_MESSAGES/api/ui_kit.po new file mode 100644 index 0000000000..ed8d39153f --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/ui_kit.po @@ -0,0 +1,574 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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:`GuildEmoji` or :class:`AppEmoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." + +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. Defaults to 180.0. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" + +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." + +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 "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 "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/tr/LC_MESSAGES/api/utils.po b/docs/locales/tr/LC_MESSAGES/api/utils.po new file mode 100644 index 0000000000..b93009f4b4 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/utils.po @@ -0,0 +1,490 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" + +msgid "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." + +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 "With filter parameter:" +msgstr "With filter parameter:" + +msgid "Autocomplete cannot be used for options that have specified choices." +msgstr "Autocomplete cannot be used for options that have specified choices." + +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 "Example" +msgstr "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/tr/LC_MESSAGES/api/version_info.po b/docs/locales/tr/LC_MESSAGES/api/version_info.po new file mode 100644 index 0000000000..e0f9d9bc6d --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/version_info.po @@ -0,0 +1,28 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/api/voice.po b/docs/locales/tr/LC_MESSAGES/api/voice.po new file mode 100644 index 0000000000..8441b7e5e9 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/voice.po @@ -0,0 +1,511 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 "Returns the elapsed time of the playing audio." +msgstr "Returns the elapsed time of the playing audio." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" + +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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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/tr/LC_MESSAGES/api/webhooks.po b/docs/locales/tr/LC_MESSAGES/api/webhooks.po new file mode 100644 index 0000000000..de99e2a6b0 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/api/webhooks.po @@ -0,0 +1,553 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/changelog.po b/docs/locales/tr/LC_MESSAGES/changelog.po new file mode 100644 index 0000000000..02e1e7e5bc --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/changelog.po @@ -0,0 +1,1270 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 "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 "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" +msgstr "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" + +msgid "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" +msgstr "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" + +msgid "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" +msgstr "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" + +msgid "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" +msgstr "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" + +msgid "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" +msgstr "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" + +msgid "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" +msgstr "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" + +msgid "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" +msgstr "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" + +msgid "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" +msgstr "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" + +msgid "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" +msgstr "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" + +msgid "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" +msgstr "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" +msgstr "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" + +msgid "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" +msgstr "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" + +msgid "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" +msgstr "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" + +msgid "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" +msgstr "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" + +msgid "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" +msgstr "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" + +msgid "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" +msgstr "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" + +msgid "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" +msgstr "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" + +msgid "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" +msgstr "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" + +msgid "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" +msgstr "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" + +msgid "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" +msgstr "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" + +msgid "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" +msgstr "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" + +msgid "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" +msgstr "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" + +msgid "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" +msgstr "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" + +msgid "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" +msgstr "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" + +msgid "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." +msgstr "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." + +msgid "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" +msgstr "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" + +msgid "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" +msgstr "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" + +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 "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" + +msgid "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" +msgstr "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" + +msgid "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" +msgstr "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" + +msgid "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "[2.6.1] - 2024-09-15" +msgstr "[2.6.1] - 2024-09-15" + +msgid "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" +msgstr "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" + +msgid "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" +msgstr "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" + +msgid "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" +msgstr "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" + +msgid "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" +msgstr "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" + +msgid "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" +msgstr "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" + +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 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 type hints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option type hints 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 retried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now retried. ([#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 has not been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it has not 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]`." +msgstr "Fixed inaccurate `Union` type hint of `values` argument of `basic_autocomplete` to include `Iterable[OptionChoice]`." + +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` does not recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` does not 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 did not 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 did not 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 "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 does not send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord does not send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" + +msgid "Fix AttributeError when voice client `play()` function is not completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function is not 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/tr/LC_MESSAGES/cogs.po b/docs/locales/tr/LC_MESSAGES/cogs.po new file mode 100644 index 0000000000..559c916357 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/cogs.po @@ -0,0 +1,70 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/discord.po b/docs/locales/tr/LC_MESSAGES/discord.po new file mode 100644 index 0000000000..6f318a8fd6 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/discord.po @@ -0,0 +1,121 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/ext/bridge/api.po b/docs/locales/tr/LC_MESSAGES/ext/bridge/api.po new file mode 100644 index 0000000000..dde94f73f2 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/ext/bridge/api.po @@ -0,0 +1,397 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 "Options" +msgstr "Options" + +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" + +msgid "A decorator that can be used instead of typehinting :class:`.BridgeOption`." +msgstr "A decorator that can be used instead of typehinting :class:`.BridgeOption`." + +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 ":class:`str`" +msgstr ":class:`str`" + +msgid "Objects" +msgstr "Objects" + +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/tr/LC_MESSAGES/ext/bridge/index.po b/docs/locales/tr/LC_MESSAGES/ext/bridge/index.po new file mode 100644 index 0000000000..94d5b4b663 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/ext/bridge/index.po @@ -0,0 +1,22 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/ext/commands/api.po b/docs/locales/tr/LC_MESSAGES/ext/commands/api.po new file mode 100644 index 0000000000..fbc31a0ce7 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/ext/commands/api.po @@ -0,0 +1,4192 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + +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 "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + +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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + +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 "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + +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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + +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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + +msgid ":class:`.Guild` -- The guild with the guild data parsed." +msgstr ":class:`.Guild` -- The guild with the guild data parsed." + +msgid "Getting the guilds failed." +msgstr "Getting the guilds failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.GuildIterator\\``" + +msgid "Gets an :class:`.Invite` from a discord.gg URL or ID." +msgstr "Gets an :class:`.Invite` from a discord.gg URL or ID." + +msgid "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." +msgstr "If the invite is for a guild you have not joined, the guild and channel attributes of the returned :class:`.Invite` will be :class:`.PartialInviteGuild` and :class:`.PartialInviteChannel` respectively." + +msgid "The Discord invite ID or URL (must be a discord.gg URL)." +msgstr "The Discord invite ID or URL (must be a discord.gg URL)." + +msgid "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." +msgstr "Whether to include count information in the invite. This fills the :attr:`.Invite.approximate_member_count` and :attr:`.Invite.approximate_presence_count` fields." + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field. .. versionadded:: 2.0" + +msgid "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." +msgstr "Whether to include the expiration date of the invite. This fills the :attr:`.Invite.expires_at` field." + +msgid "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" +msgstr "The ID of the scheduled event to be associated with the event. See :meth:`Invite.set_scheduled_event` for more info on event invite linking. .. versionadded:: 2.0" + +msgid "The ID of the scheduled event to be associated with the event." +msgstr "The ID of the scheduled event to be associated with the event." + +msgid "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." +msgstr "See :meth:`Invite.set_scheduled_event` for more info on event invite linking." + +msgid "The invite from the URL/ID." +msgstr "The invite from the URL/ID." + +msgid ":class:`.Invite`" +msgstr ":class:`.Invite`" + +msgid "The invite has expired or is invalid." +msgstr "The invite has expired or is invalid." + +msgid "Getting the invite failed." +msgstr "Getting the invite failed." + +msgid "Retrieves all available premium sticker packs." +msgstr "Retrieves all available premium sticker packs." + +msgid "All available premium sticker packs." +msgstr "All available premium sticker packs." + +msgid "List[:class:`.StickerPack`]" +msgstr "List[:class:`.StickerPack`]" + +msgid "Retrieving the sticker packs failed." +msgstr "Retrieving the sticker packs failed." + +msgid "Fetches the bot's role connection metadata records." +msgstr "Fetches the bot's role connection metadata records." + +msgid "The bot's role connection metadata records." +msgstr "The bot's role connection metadata records." + +msgid "List[:class:`.ApplicationRoleConnectionMetadata`]" +msgstr "List[:class:`.ApplicationRoleConnectionMetadata`]" + +msgid "Fetches the bot's SKUs." +msgstr "Fetches the bot's SKUs." + +msgid "The bot's SKUs." +msgstr "The bot's SKUs." + +msgid "List[:class:`.SKU`]" +msgstr "List[:class:`.SKU`]" + +msgid "Gets a :class:`.StageInstance` for a stage channel id." +msgstr "Gets a :class:`.StageInstance` for a stage channel id." + +msgid "The stage channel ID." +msgstr "The stage channel ID." + +msgid "The stage instance from the stage channel ID." +msgstr "The stage instance from the stage channel ID." + +msgid ":class:`.StageInstance`" +msgstr ":class:`.StageInstance`" + +msgid "The stage instance or channel could not be found." +msgstr "The stage instance or channel could not be found." + +msgid "Getting the stage instance failed." +msgstr "Getting the stage instance failed." + +msgid "Retrieves a :class:`.Sticker` with the specified ID." +msgstr "Retrieves a :class:`.Sticker` with the specified ID." + +msgid "The sticker you requested." +msgstr "The sticker you requested." + +msgid "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" +msgstr "Union[:class:`.StandardSticker`, :class:`.GuildSticker`]" + +msgid "Retrieving the sticker failed." +msgstr "Retrieving the sticker failed." + +msgid "Invalid sticker ID." +msgstr "Invalid sticker ID." + +msgid "Gets a :class:`.Template` from a discord.new URL or code." +msgstr "Gets a :class:`.Template` from a discord.new URL or code." + +msgid "The Discord Template Code or URL (must be a discord.new URL)." +msgstr "The Discord Template Code or URL (must be a discord.new URL)." + +msgid "The template from the URL/code." +msgstr "The template from the URL/code." + +msgid ":class:`.Template`" +msgstr ":class:`.Template`" + +msgid "The template is invalid." +msgstr "The template is invalid." + +msgid "Getting the template failed." +msgstr "Getting the template failed." + +msgid "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." +msgstr "Retrieves a :class:`~discord.User` based on their ID. You do not have to share any guilds with the user to get this information, however many operations do require that you do." + +msgid "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." +msgstr "This method is an API call. If you have :attr:`discord.Intents.members` and member cache enabled, consider :meth:`get_user` instead." + +msgid "The user's ID to fetch from." +msgstr "The user's ID to fetch from." + +msgid "The user you requested." +msgstr "The user you requested." + +msgid ":class:`~discord.User`" +msgstr ":class:`~discord.User`" + +msgid "A user with this ID does not exist." +msgstr "A user with this ID does not exist." + +msgid "Fetching the user failed." +msgstr "Fetching the user failed." + +msgid "Retrieves a :class:`.Webhook` with the specified ID." +msgstr "Retrieves a :class:`.Webhook` with the specified ID." + +msgid "The webhook you requested." +msgstr "The webhook you requested." + +msgid ":class:`.Webhook`" +msgstr ":class:`.Webhook`" + +msgid "Retrieving the webhook failed." +msgstr "Retrieving the webhook failed." + +msgid "Invalid webhook ID." +msgstr "Invalid webhook ID." + +msgid "You do not have permission to fetch this webhook." +msgstr "You do not have permission to fetch this webhook." + +msgid "Gets a :class:`.Widget` from a guild ID." +msgstr "Gets a :class:`.Widget` from a guild ID." + +msgid "The guild must have the widget enabled to get this information." +msgstr "The guild must have the widget enabled to get this information." + +msgid "The ID of the guild." +msgstr "The ID of the guild." + +msgid "The guild's widget." +msgstr "The guild's widget." + +msgid ":class:`.Widget`" +msgstr ":class:`.Widget`" + +msgid "The widget for this guild is disabled." +msgstr "The widget for this guild is disabled." + +msgid "Retrieving the widget failed." +msgstr "Retrieving the widget failed." + +msgid "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." +msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client can 'access'." + +msgid "This is equivalent to: ::" +msgstr "This is equivalent to: ::" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." +msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." + +msgid ":class:`.abc.GuildChannel` -- A channel the client can 'access'." +msgstr ":class:`.abc.GuildChannel` -- A channel the client can 'access'." + +msgid "Returns a generator with every :class:`.Member` the client can see." +msgstr "Returns a generator with every :class:`.Member` the client can see." + +msgid ":class:`.Member` -- A member the client can see." +msgstr ":class:`.Member` -- A member the client can see." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The qualified name of the command to get." +msgstr "The qualified name of the command to get." + +msgid "The guild ids associated to the command to get." +msgstr "The guild ids associated to the command to get." + +msgid "The type of the command to get. Defaults to :class:`.ApplicationCommand`." +msgstr "The type of the command to get. Defaults to :class:`.ApplicationCommand`." + +msgid "The command that was requested. If not found, returns ``None``." +msgstr "The command that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`.ApplicationCommand`]" +msgstr "Optional[:class:`.ApplicationCommand`]" + +msgid "Returns the invocation context from the interaction." +msgstr "Returns the invocation context from the interaction." + +msgid "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_application_commands` to allow users more fine-grained control over the processing." + +msgid "The interaction to get the invocation context from." +msgstr "The interaction to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.ApplicationContext`. Should a custom class be provided, it must be similar enough to :class:`.ApplicationContext`\\'s interface." + +msgid "The invocation context. The type of this can change via the ``cls`` parameter." +msgstr "The invocation context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.ApplicationContext`" +msgstr ":class:`.ApplicationContext`" + +msgid "Returns the autocomplete context from the interaction." +msgstr "Returns the autocomplete context from the interaction." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.AutocompleteContext`. Should a custom class be provided, it must be similar enough to :class:`.AutocompleteContext`\\'s interface." + +msgid "The autocomplete context. The type of this can change via the ``cls`` parameter." +msgstr "The autocomplete context. The type of this can change via the ``cls`` parameter." + +msgid ":class:`.AutocompleteContext`" +msgstr ":class:`.AutocompleteContext`" + +msgid "Returns a channel or thread with the given ID." +msgstr "Returns a channel or thread with the given ID." + +msgid "The ID to search for." +msgstr "The ID to search for." + +msgid "The returned channel or ``None`` if not found." +msgstr "The returned channel or ``None`` if not found." + +msgid "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" +msgstr "Optional[Union[:class:`.abc.GuildChannel`, :class:`.Thread`, :class:`.abc.PrivateChannel`]]" + +msgid "Gets the cog instance requested." +msgstr "Gets the cog instance requested." + +msgid "If the cog is not found, ``None`` is returned instead." +msgstr "If the cog is not found, ``None`` is returned instead." + +msgid "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." +msgstr "The name of the cog you are requesting. This is equivalent to the name passed via keyword argument in class creation or the class name if unspecified." + +msgid "The cog that was requested. If not found, returns ``None``." +msgstr "The cog that was requested. If not found, returns ``None``." + +msgid "Optional[:class:`Cog`]" +msgstr "Optional[:class:`Cog`]" + +msgid "Get a :class:`.Command` from the internal list of commands." +msgstr "Get a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to get aliases." +msgstr "This could also be used as a way to get aliases." + +msgid "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." +msgstr "The name could be fully qualified (e.g. ``'foo bar'``) will get the subcommand ``bar`` of the group command ``foo``. If a subcommand is not found then ``None`` is returned just as usual." + +msgid "The name of the command to get." +msgstr "The name of the command to get." + +msgid "Optional[:class:`Command`]" +msgstr "Optional[:class:`Command`]" + +msgid "Returns the invocation context from the message." +msgstr "Returns the invocation context from the message." + +msgid "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." +msgstr "This is a more low-level counter-part for :meth:`.process_commands` to allow users more fine-grained control over the processing." + +msgid "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." +msgstr "The returned context is not guaranteed to be a valid invocation context, :attr:`.Context.valid` must be checked to make sure it is. If the context is not valid then it is not a valid candidate to be invoked under :meth:`~.Bot.invoke`." + +msgid "The message to get the invocation context from." +msgstr "The message to get the invocation context from." + +msgid "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." +msgstr "The factory class that will be used to create the context. By default, this is :class:`.Context`. Should a custom class be provided, it must be similar enough to :class:`.Context`\\'s interface." + +msgid ":class:`.Context`" +msgstr ":class:`.Context`" + +msgid "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." +msgstr "Gets the list of commands that are desynced from discord. If ``guild_id`` is specified, it will only return guild commands that are desynced from said guild, else it will return global commands." + +msgid "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." +msgstr "This function is meant to be used internally, and should only be used if you want to override the default command registration behavior." + +msgid "The guild id to get the desynced commands for, else global commands if unspecified." +msgstr "The guild id to get the desynced commands for, else global commands if unspecified." + +msgid "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." +msgstr "If you already fetched the commands, you can pass them here to be used. Not recommended for typical usage." + +msgid "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." +msgstr "A list of the desynced commands. Each will come with at least the ``cmd`` and ``action`` keys, which respectively contain the command and the action to perform. Other keys may also be present depending on the action, including ``id``." + +msgid "List[Dict[:class:`str`, Any]]" +msgstr "List[Dict[:class:`str`, Any]]" + +msgid "Returns an emoji with the given ID." +msgstr "Returns an emoji with the given ID." + +msgid "The custom emoji or ``None`` if not found." +msgstr "The custom emoji or ``None`` if not found." + +msgid "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" + +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 :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + +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. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." + +msgid "This could be referred to as the Discord WebSocket protocol latency." +msgstr "This could be referred to as the Discord WebSocket protocol latency." + +msgid "Loads an extension." +msgstr "Loads an extension." + +msgid "An extension is a python module that contains commands, cogs, or listeners." +msgstr "An extension is a python module that contains commands, cogs, or listeners." + +msgid "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." +msgstr "An extension must have a global function, ``setup`` defined as the entry point on what to do when the extension is loaded. This entry point must have a single argument, the ``bot``." + +msgid "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." +msgstr "The extension passed can either be the direct name of a file within the current working directory or a folder that contains multiple extensions." + +msgid "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder name to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when loading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." +msgstr "If subdirectories under the given head directory should be recursively loaded. Defaults to ``False``." + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``. .. versionadded:: 2.0" + +msgid "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." +msgstr "If exceptions should be stored or raised. If set to ``True``, all exceptions encountered will be stored in a returned dictionary as a load status. If set to ``False``, if any exceptions are encountered they will be raised and the bot will be closed. If no exceptions are encountered, a list of loaded extension names will be returned. Defaults to ``False``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing a list of loaded extensions or nothing due to an encountered exception." + +msgid "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" +msgstr "Optional[Union[Dict[:class:`str`, Union[:exc:`errors.ExtensionError`, :class:`bool`]], List[:class:`str`]]]" + +msgid "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "The extension is already loaded." +msgstr "The extension is already loaded." + +msgid "The extension does not have a setup function." +msgstr "The extension does not have a setup function." + +msgid "The extension or its setup function had an execution error." +msgstr "The extension or its setup function had an execution error." + +msgid "Loads multiple extensions at once." +msgstr "Loads multiple extensions at once." + +msgid "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." +msgstr "This method simplifies the process of loading multiple extensions by handling the looping of ``load_extension``." + +msgid "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension or folder names to load. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." +msgstr "If the store parameter is set to ``True``, a dictionary will be returned that contains keys to represent the loaded extension names. The values bound to each key can either be an exception that occurred when loading that extension or a ``True`` boolean representing a successful load. If the store parameter is set to ``False``, either a list containing names of loaded extensions or nothing due to an encountered exception." + +msgid "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "A given extension could not be imported. This is also raised if the name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "A given extension is already loaded." +msgstr "A given extension is already loaded." + +msgid "A given extension does not have a setup function." +msgstr "A given extension does not have a setup function." + +msgid "A given extension or its setup function had an execution error." +msgstr "A given extension or its setup function had an execution error." + +msgid "Logs in the client with the specified credentials." +msgstr "Logs in the client with the specified credentials." + +msgid "The authentication token. Do not prefix this token with anything as the library will do it for you." +msgstr "The authentication token. Do not prefix this token with anything as the library will do it for you." + +msgid "The token was in invalid type." +msgstr "The token was in invalid type." + +msgid "The wrong credentials are passed." +msgstr "The wrong credentials are passed." + +msgid "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." +msgstr "An unknown HTTP related error occurred, usually when it isn't 200 or the known incorrect credentials passing status code." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.MessageCommand`." + +msgid "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.MessageCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`MessageCommand`]" +msgstr "Callable[..., :class:`MessageCommand`]" + +msgid "The default command error handler provided by the bot." +msgstr "The default command error handler provided by the bot." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation." + +msgid "This only fires if you do not specify any listeners for command error." +msgstr "This only fires if you do not specify any listeners for command error." + +msgid "The default error handler provided by the client." +msgstr "The default error handler provided by the client." + +msgid "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." +msgstr "By default, this prints to :data:`sys.stderr` however it could be overridden to have a different implementation. Check :func:`~discord.on_error` for more details." + +msgid "A sequence of persistent views added to the client." +msgstr "A sequence of persistent views added to the client." + +msgid "The polls that the connected client has." +msgstr "The polls that the connected client has." + +msgid "The private channels that the connected client is participating on." +msgstr "The private channels that the connected client is participating on." + +msgid "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." +msgstr "This returns only up to 128 most recent private channels due to an internal working on how Discord deals with private channels." + +msgid "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." +msgstr "This function processes the commands that have been registered to the bot and other groups. Without this coroutine, none of the commands will be triggered." + +msgid "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_interaction` event. If you choose to override the :func:`.on_interaction` event, then you should invoke this coroutine as well." + +msgid "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." +msgstr "This function finds a registered command matching the interaction id from application commands and invokes it. If no matching command was found, it replies to the interaction with a default message." + +msgid "The interaction to process" +msgstr "The interaction to process" + +msgid "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." +msgstr "Whether to automatically sync and unregister the command if it is not found in the internal cache. This will invoke the :meth:`~.Bot.sync_commands` method on the context of the command, either globally or per-guild, based on the type of the command, respectively. Defaults to :attr:`.Bot.auto_sync_commands`." + +msgid "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." +msgstr "By default, this coroutine is called inside the :func:`.on_message` event. If you choose to override the :func:`.on_message` event, then you should invoke this coroutine as well." + +msgid "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." +msgstr "This is built using other low level tools, and is equivalent to a call to :meth:`~.Bot.get_context` followed by a call to :meth:`~.Bot.invoke`." + +msgid "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." +msgstr "This also checks if the message's author is a bot and doesn't call :meth:`~.Bot.get_context` or :meth:`~.Bot.invoke` if so." + +msgid "The message to process commands for." +msgstr "The message to process commands for." + +msgid "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." +msgstr "Registers a command. If the command has ``guild_ids`` set, or if the ``guild_ids`` parameter is passed, the command will be registered as a guild command for those guilds." + +msgid "The command to register." +msgstr "The command to register." + +msgid "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." +msgstr "Whether to force the command to be registered. If this is set to False, the command will only be registered if it seems to already be registered and up to date with our internal cache. Defaults to True." + +msgid "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the command for. If this is not set, the command's :attr:`ApplicationCommand.guild_ids` attribute will be used." + +msgid "The command that was registered" +msgstr "The command that was registered" + +msgid ":class:`~.ApplicationCommand`" +msgstr ":class:`~.ApplicationCommand`" + +msgid "Register a list of commands." +msgstr "Register a list of commands." + +msgid "A list of commands to register. If this is not set (``None``), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (``None``), then all commands will be registered." + +msgid "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." +msgstr "If this is set, the commands will be registered as a guild command for the respective guild. If it is not set, the commands will be registered according to their :attr:`ApplicationCommand.guild_ids` attribute." + +msgid "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." +msgstr "The method to use when registering the commands. If this is set to \"individual\", then each command will be registered individually. If this is set to \"bulk\", then all commands will be registered in bulk. If this is set to \"auto\", then the method will be determined automatically. Defaults to \"bulk\"." + +msgid "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." +msgstr "Registers the commands regardless of the state of the command on Discord. This uses one less API call, but can result in hitting rate limits more often. Defaults to False." + +msgid "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." +msgstr "Whether to delete existing commands that are not in the list of commands to register. Defaults to True." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.types.interactions.ApplicationCommand\\`\\]`" + +msgid "Atomically reloads an extension." +msgstr "Atomically reloads an extension." + +msgid "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." +msgstr "This replaces the extension with the same extension, only refreshed. This is equivalent to a :meth:`unload_extension` followed by a :meth:`load_extension` except done in an atomic way. That is, if an operation fails mid-reload then the bot will roll back to the prior working state." + +msgid "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to reload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when reloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The extension was not loaded." +msgstr "The extension was not loaded." + +msgid "The extension setup function had an execution error." +msgstr "The extension setup function had an execution error." + +msgid "Remove an :class:`.ApplicationCommand` from the internal list of commands." +msgstr "Remove an :class:`.ApplicationCommand` from the internal list of commands." + +msgid "The command to remove." +msgstr "The command to remove." + +msgid "The command that was removed. If the command has not been added, ``None`` is returned instead." +msgstr "The command that was removed. If the command has not been added, ``None`` is returned instead." + +msgid "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." +msgstr "Removes a global check from the bot. This function is idempotent and will not raise an exception if the function is not in the global checks." + +msgid "The function to remove from the global checks." +msgstr "The function to remove from the global checks." + +msgid "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." +msgstr "If the function was added with ``call_once=True`` in the :meth:`.Bot.add_check` call or using :meth:`.check_once`." + +msgid "Removes a cog from the bot and returns it." +msgstr "Removes a cog from the bot and returns it." + +msgid "All registered commands and event listeners that the cog has registered will be removed as well." +msgstr "All registered commands and event listeners that the cog has registered will be removed as well." + +msgid "If no cog is found then this method has no effect." +msgstr "If no cog is found then this method has no effect." + +msgid "The name of the cog to remove." +msgstr "The name of the cog to remove." + +msgid "The cog that was removed. ``None`` if not found." +msgstr "The cog that was removed. ``None`` if not found." + +msgid "Optional[:class:`.Cog`]" +msgstr "Optional[:class:`.Cog`]" + +msgid "Remove a :class:`.Command` from the internal list of commands." +msgstr "Remove a :class:`.Command` from the internal list of commands." + +msgid "This could also be used as a way to remove aliases." +msgstr "This could also be used as a way to remove aliases." + +msgid "The name of the command to remove." +msgstr "The name of the command to remove." + +msgid "The command that was removed. If the name is not valid then ``None`` is returned instead." +msgstr "The command that was removed. If the name is not valid then ``None`` is returned instead." + +msgid "Optional[:class:`.Command`]" +msgstr "Optional[:class:`.Command`]" + +msgid "Removes a listener from the pool of listeners." +msgstr "Removes a listener from the pool of listeners." + +msgid "The function that was used as a listener to remove." +msgstr "The function that was used as a listener to remove." + +msgid "The name of the event we want to remove. Defaults to ``func.__name__``." +msgstr "The name of the event we want to remove. Defaults to ``func.__name__``." + +msgid "A blocking call that abstracts away the event loop initialisation from you." +msgstr "A blocking call that abstracts away the event loop initialisation from you." + +msgid "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." +msgstr "If you want more control over the event loop then this function should not be used. Use :meth:`start` coroutine or :meth:`connect` + :meth:`login`." + +msgid "Roughly Equivalent to: ::" +msgstr "Roughly Equivalent to: ::" + +msgid "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." +msgstr "This function must be the last function to call due to the fact that it is blocking. That means that registration of events or anything being called after this function call will not execute until it returns." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.SlashCommand`." + +msgid "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.SlashCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`SlashCommand`]" +msgstr "Callable[..., :class:`SlashCommand`]" + +msgid "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." +msgstr "A shortcut decorator that initializes the provided subclass of :class:`.SlashCommandGroup` and adds it to the internal command list via :meth:`add_application_command`." + +msgid "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." +msgstr "The name of the group to create. This will resolve to the name of the decorated class if ``None`` is passed." + +msgid "A shorthand coroutine for :meth:`login` + :meth:`connect`." +msgstr "A shorthand coroutine for :meth:`login` + :meth:`connect`." + +msgid "An unexpected keyword argument was received." +msgstr "An unexpected keyword argument was received." + +msgid "The status being used upon logging on to Discord." +msgstr "The status being used upon logging on to Discord." + +msgid "The stickers that the connected client has." +msgstr "The stickers that the connected client has." + +msgid "The URL that leads to the application's store page for monetization." +msgstr "The URL that leads to the application's store page for monetization." + +msgid ":class:`str`" +msgstr ":class:`str`" + +msgid "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." +msgstr "Registers all commands that have been added through :meth:`.add_application_command`. This method cleans up all commands over the API and should sync them with the internal cache of commands. It attempts to register the commands in the most efficient way possible, unless ``force`` is set to ``True``, in which case it will always register all commands." + +msgid "By default, this coroutine is called inside the :func:`.on_connect` event. If you choose to override the :func:`.on_connect` event, then you should invoke this coroutine as well such as the following:" +msgstr "By default, this coroutine is called inside the :func:`.on_connect` event. If you choose to override the :func:`.on_connect` event, then you should invoke this coroutine as well such as the following:" + +msgid "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." +msgstr "If you remove all guild commands from a particular guild, the library may not be able to detect and update the commands accordingly, as it would have to individually check for each guild. To force the library to unregister a guild's commands, call this function with ``commands=[]`` and ``guild_ids=[guild_id]``." + +msgid "A list of commands to register. If this is not set (None), then all commands will be registered." +msgstr "A list of commands to register. If this is not set (None), then all commands will be registered." + +msgid "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." +msgstr "A list of guild ids to register the commands for. If this is not set, the commands' :attr:`~.ApplicationCommand.guild_ids` attribute will be used." + +msgid "Whether to register guild commands. Defaults to True." +msgstr "Whether to register guild commands. Defaults to True." + +msgid "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." +msgstr "A list of guilds ids to check for commands to unregister, since the bot would otherwise have to check all guilds. Unlike ``guild_ids``, this does not alter the commands' :attr:`~.ApplicationCommand.guild_ids` attribute, instead it adds the guild ids to a list of guilds to sync commands for. If ``register_guild_commands`` is set to False, then this parameter is ignored." + +msgid "Unloads an extension." +msgstr "Unloads an extension." + +msgid "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." +msgstr "When the extension is unloaded, all commands, listeners, and cogs are removed from the bot and the module is un-imported." + +msgid "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." +msgstr "The extension can provide an optional global function, ``teardown``, to do miscellaneous clean-up if necessary. This function takes a single parameter, the ``bot``, similar to ``setup`` from :meth:`~.Bot.load_extension`." + +msgid "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." +msgstr "The extension name to unload. It must be dot separated like regular Python imports if accessing a submodule. e.g. ``foo.test`` if you want to import ``foo/test.py``." + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``. .. versionadded:: 1.7" + +msgid "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." +msgstr "The package name to resolve relative imports with. This is required when unloading an extension using a relative path, e.g ``.foo.test``. Defaults to ``None``." + +msgid "The name of the extension could not be resolved using the provided ``package`` parameter." +msgstr "The name of the extension could not be resolved using the provided ``package`` parameter." + +msgid "Updates the bot's role connection metadata records." +msgstr "Updates the bot's role connection metadata records." + +msgid "The new metadata records to send to Discord." +msgstr "The new metadata records to send to Discord." + +msgid "The updated role connection metadata records." +msgstr "The updated role connection metadata records." + +msgid "Represents the connected client. ``None`` if not logged in." +msgstr "Represents the connected client. ``None`` if not logged in." + +msgid "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." +msgstr "A shortcut decorator that invokes :func:`command` and adds it to the internal command list via :meth:`add_application_command`. This shortcut is made specifically for :class:`.UserCommand`." + +msgid "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." +msgstr "A decorator that converts the provided method into a :class:`.UserCommand`, adds it to the bot, then returns it." + +msgid "Callable[..., :class:`UserCommand`]" +msgstr "Callable[..., :class:`UserCommand`]" + +msgid "Returns a list of all the users the bot can see." +msgstr "Returns a list of all the users the bot can see." + +msgid "Represents a list of voice connections." +msgstr "Represents a list of voice connections." + +msgid "These are usually :class:`.VoiceClient` instances." +msgstr "These are usually :class:`.VoiceClient` instances." + +msgid "Waits for a WebSocket event to be dispatched." +msgstr "Waits for a WebSocket event to be dispatched." + +msgid "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." +msgstr "This could be used to wait for a user to reply to a message, or to react to a message, or to edit a message in a self-contained way." + +msgid "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." +msgstr "The ``timeout`` parameter is passed onto :func:`asyncio.wait_for`. By default, it does not timeout. Note that this does propagate the :exc:`asyncio.TimeoutError` for you in case of timeout and is provided for ease of use." + +msgid "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." +msgstr "In case the event returns multiple arguments, a :class:`tuple` containing those arguments is returned instead. Please check the :ref:`documentation ` for a list of events and their parameters." + +msgid "This function returns the **first event that meets the requirements**." +msgstr "This function returns the **first event that meets the requirements**." + +msgid "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." +msgstr "The event name, similar to the :ref:`event reference `, but without the ``on_`` prefix, to wait for." + +msgid "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." +msgstr "A predicate to check what to wait for. The arguments must meet the parameters of the event being waited for." + +msgid "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." +msgstr "The number of seconds to wait before timing out and raising :exc:`asyncio.TimeoutError`." + +msgid "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." +msgstr "Returns no arguments, a single argument, or a :class:`tuple` of multiple arguments that mirrors the parameters passed in the :ref:`event reference `." + +msgid "Raised if a timeout is provided and reached." +msgstr "Raised if a timeout is provided and reached." + +msgid "Waiting for a user reply: ::" +msgstr "Waiting for a user reply: ::" + +msgid "Waiting for a thumbs up reaction from the message author: ::" +msgstr "Waiting for a thumbs up reaction from the message author: ::" + +msgid "Waits until the client's internal cache is all ready." +msgstr "Waits until the client's internal cache is all ready." + +msgid "An iterator that recursively walks through all application commands and subcommands." +msgstr "An iterator that recursively walks through all application commands and subcommands." + +msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "Duplicates due to aliases are no longer returned" +msgstr "Duplicates due to aliases are no longer returned" + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the internal list of commands." + +msgid "AutoShardedBot" +msgstr "AutoShardedBot" + +msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." +msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedBot` instead." + +msgid "Prefix Helpers" +msgstr "Prefix Helpers" + +msgid "A callable that implements a command prefix equivalent to being mentioned." +msgstr "A callable that implements a command prefix equivalent to being mentioned." + +msgid "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." +msgstr "These are meant to be passed into the :attr:`.Bot.command_prefix` attribute." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]`" + +msgid "A callable that implements when mentioned or other prefixes provided." +msgstr "A callable that implements when mentioned or other prefixes provided." + +msgid ":func:`.when_mentioned`" +msgstr ":func:`.when_mentioned`" + +msgid "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" +msgstr "This callable returns another callable, so if this is done inside a custom callable, you must call the returned callable, for example:" + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.bot.Bot\\` \\| \\:py\\:class\\:\\`\\~discord.ext.commands.bot.AutoShardedBot\\`\\, \\:py\\:class\\:\\`\\~discord.message.Message\\`\\]\\, \\:py\\:class\\:\\`list\\`\\\\ \\\\\\[\\:py\\:class\\:\\`str\\`\\]\\]`" + +msgid "Event Reference" +msgstr "Event Reference" + +msgid "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." +msgstr "These events function similar to :ref:`the regular events `, except they are custom to the command extension module." + +msgid "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." +msgstr "An error handler that is called when an error is raised inside a command either through user input error, check failure, or an error in your own code." + +msgid "A default one is provided (:meth:`.Bot.on_command_error`)." +msgstr "A default one is provided (:meth:`.Bot.on_command_error`)." + +msgid "The invocation context." +msgstr "The invocation context." + +msgid "The error that was raised." +msgstr "The error that was raised." + +msgid "An event that is called when a command is found and is about to be invoked." +msgstr "An event that is called when a command is found and is about to be invoked." + +msgid "This event is called regardless of whether the command itself succeeds via error or completes." +msgstr "This event is called regardless of whether the command itself succeeds via error or completes." + +msgid "An event that is called when a command has completed its invocation." +msgstr "An event that is called when a command has completed its invocation." + +msgid "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." +msgstr "This event is called only if the command succeeded, i.e. all checks have passed and the user input it correctly." + +msgid "Commands" +msgstr "Commands" + +msgid "Decorators" +msgstr "Decorators" + +msgid "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Command` or if called with :func:`.group`, :class:`.Group`." + +msgid "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." +msgstr "By default the ``help`` attribute is received automatically from the docstring of the function and is cleaned up with the use of ``inspect.cleandoc``. If the docstring is ``bytes``, then it is decoded into :class:`str` using utf-8 encoding." + +msgid "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." +msgstr "All checks added using the :func:`.check` & co. decorators are added into the function. There is no way to supply your own checks through this decorator." + +msgid "The name to create the command with. By default, this uses the function name unchanged." +msgstr "The name to create the command with. By default, this uses the function name unchanged." + +msgid "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." +msgstr "The class to construct with. By default, this is :class:`.Command`. You usually do not change this." + +msgid "Keyword arguments to pass into the construction of the class denoted by ``cls``." +msgstr "Keyword arguments to pass into the construction of the class denoted by ``cls``." + +msgid "If the function is not a coroutine or is already a command." +msgstr "If the function is not a coroutine or is already a command." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CommandT\\`\\`\\, bound\\= Command\\)\\]\\]`" + +msgid "A decorator that transforms a function into a :class:`.Group`." +msgstr "A decorator that transforms a function into a :class:`.Group`." + +msgid "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." +msgstr "This is similar to the :func:`.command` decorator but the ``cls`` parameter is set to :class:`Group` by default." + +msgid "The ``cls`` parameter can now be passed." +msgstr "The ``cls`` parameter can now be passed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Callable\\`\\\\ \\\\\\[\\\\\\[\\:py\\:class\\:\\`\\~typing.Concatenate\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ContextT\\`\\`\\, bound\\= Context\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\]\\]\\, \\:py\\:class\\:\\`\\~typing.Coroutine\\`\\\\ \\\\\\[\\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\]\\]\\]\\, \\:py\\:data\\:\\`\\~typing.Union\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Group\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:class\\:\\`\\~typing.ParamSpec\\`\\\\ \\\\\\(\\`\\`P\\`\\`\\, bound\\= \\:py\\:obj\\:\\`None\\`\\)\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)\\]\\, \\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`GroupT\\`\\`\\, bound\\= Group\\)\\]\\]`" + +msgid "Command" +msgstr "Command" + +msgid "A class that implements the protocol for a bot text command." +msgstr "A class that implements the protocol for a bot text command." + +msgid "These are not created manually, instead they are created via the decorator or functional interface." +msgstr "These are not created manually, instead they are created via the decorator or functional interface." + +msgid "The name of the command." +msgstr "The name of the command." + +msgid "The coroutine that is executed when the command is called." +msgstr "The coroutine that is executed when the command is called." + +msgid ":ref:`coroutine `" +msgstr ":ref:`coroutine `" + +msgid "The long help text for the command." +msgstr "The long help text for the command." + +msgid "Optional[:class:`str`]" +msgstr "Optional[:class:`str`]" + +msgid "The short help text for the command." +msgstr "The short help text for the command." + +msgid "A replacement for arguments in the default help text." +msgstr "A replacement for arguments in the default help text." + +msgid "The list of aliases the command can be invoked under." +msgstr "The list of aliases the command can be invoked under." + +msgid "Union[List[:class:`str`], Tuple[:class:`str`]]" +msgstr "Union[List[:class:`str`], Tuple[:class:`str`]]" + +msgid "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." +msgstr "A boolean that indicates if the command is currently enabled. If the command is invoked while it is disabled, then :exc:`.DisabledCommand` is raised to the :func:`.on_command_error` event. Defaults to ``True``." + +msgid "The parent group that this command belongs to. ``None`` if there isn't one." +msgstr "The parent group that this command belongs to. ``None`` if there isn't one." + +msgid "Optional[:class:`Group`]" +msgstr "Optional[:class:`Group`]" + +msgid "The cog that this command belongs to. ``None`` if there isn't one." +msgstr "The cog that this command belongs to. ``None`` if there isn't one." + +msgid "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." +msgstr "A list of predicates that verifies if the command could be executed with the given :class:`.Context` as the sole parameter. If an exception is necessary to be thrown to signal failure, then one inherited from :exc:`.CommandError` should be used. Note that if the checks fail then :exc:`.CheckFailure` exception is raised to the :func:`.on_command_error` event." + +msgid "List[Callable[[:class:`.Context`], :class:`bool`]]" +msgstr "List[Callable[[:class:`.Context`], :class:`bool`]]" + +msgid "The message prefixed into the default help command." +msgstr "The message prefixed into the default help command." + +msgid "If ``True``\\, the default help command does not show this in the help output." +msgstr "If ``True``\\, the default help command does not show this in the help output." + +msgid "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." +msgstr "If ``False`` and a keyword-only argument is provided then the keyword only argument is stripped and handled as if it was a regular argument that handles :exc:`.MissingRequiredArgument` and default values in a regular matter rather than passing the rest completely raw. If ``True`` then the keyword-only argument will pass in the rest of the arguments in a completely raw matter. Defaults to ``False``." + +msgid "The subcommand that was invoked, if any." +msgstr "The subcommand that was invoked, if any." + +msgid "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." +msgstr "If ``True`` and a variadic positional argument is specified, requires the user to specify at least one argument. Defaults to ``False``." + +msgid "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." +msgstr "If ``True``\\, ignores extraneous strings passed to a command if all its requirements are met (e.g. ``?foo a b c`` when only expecting ``a`` and ``b``). Otherwise :func:`.on_command_error` and local error handlers are called with :exc:`.TooManyArguments`. Defaults to ``True``." + +msgid "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." +msgstr "If ``True``\\, cooldown processing is done after argument parsing, which calls converters. If ``False`` then cooldown processing is done first and then the converters are called second. Defaults to ``False``." + +msgid "A dict of user provided extras to attach to the Command." +msgstr "A dict of user provided extras to attach to the Command." + +msgid "This object may be copied by the library." +msgstr "This object may be copied by the library." + +msgid ":class:`dict`" +msgstr ":class:`dict`" + +msgid "cooldown: Optional[:class:`Cooldown`]" +msgstr "cooldown: Optional[:class:`Cooldown`]" + +msgid "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." +msgstr "The cooldown applied when the command is invoked. ``None`` if the command doesn't have a cooldown." + +msgid "A decorator that registers a coroutine as a post-invoke hook." +msgstr "A decorator that registers a coroutine as a post-invoke hook." + +msgid "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." +msgstr "A post-invoke hook is called directly after the command is called. This makes it a useful function to clean-up database connections or any type of clean up required." + +msgid "This post-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This post-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.after_invoke` for more info." +msgstr "See :meth:`.Bot.after_invoke` for more info." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`HookT\\`\\`\\, bound\\= Hook\\)`" + +msgid "A decorator that registers a coroutine as a pre-invoke hook." +msgstr "A decorator that registers a coroutine as a pre-invoke hook." + +msgid "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." +msgstr "A pre-invoke hook is called directly before the command is called. This makes it a useful function to set up database connections or any type of set up required." + +msgid "This pre-invoke hook takes a sole parameter, a :class:`.Context`." +msgstr "This pre-invoke hook takes a sole parameter, a :class:`.Context`." + +msgid "See :meth:`.Bot.before_invoke` for more info." +msgstr "See :meth:`.Bot.before_invoke` for more info." + +msgid "A decorator that registers a coroutine as a local error handler." +msgstr "A decorator that registers a coroutine as a local error handler." + +msgid "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." +msgstr "A local error handler is an :func:`.on_command_error` event limited to a single command. However, the :func:`.on_command_error` is still invoked afterwards as the catch-all." + +msgid "The coroutine to register as the local error handler." +msgstr "The coroutine to register as the local error handler." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`ErrorT\\`\\`\\, bound\\= Error\\)`" + +msgid "Adds a check to the command." +msgstr "Adds a check to the command." + +msgid "This is the non-decorator interface to :func:`.check`." +msgstr "This is the non-decorator interface to :func:`.check`." + +msgid "The function that will be used as a check." +msgstr "The function that will be used as a check." + +msgid "Removes a check from the command." +msgstr "Removes a check from the command." + +msgid "This function is idempotent and will not raise an exception if the function is not in the command's checks." +msgstr "This function is idempotent and will not raise an exception if the function is not in the command's checks." + +msgid "The function to remove from the checks." +msgstr "The function to remove from the checks." + +msgid "Updates :class:`Command` instance with updated attribute." +msgstr "Updates :class:`Command` instance with updated attribute." + +msgid "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." +msgstr "This works similarly to the :func:`.command` decorator in terms of parameters in that they are passed to the :class:`Command` or subclass constructors, sans the name and callback." + +msgid "Calls the internal callback that the command holds." +msgstr "Calls the internal callback that the command holds." + +msgid "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." +msgstr "This bypasses all mechanisms -- including checks, converters, invoke hooks, cooldowns, etc. You must take care to pass the proper arguments and types to this function." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`T\\`\\`\\)`" + +msgid "Creates a copy of this command." +msgstr "Creates a copy of this command." + +msgid "A new instance of this command." +msgstr "A new instance of this command." + +msgid ":class:`Command`" +msgstr ":class:`Command`" + +msgid "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." +msgstr "Dict[:class:`str`, :class:`inspect.Parameter`]: Retrieves the parameter dictionary without the context or self parameters." + +msgid "Useful for inspecting signature." +msgstr "Useful for inspecting signature." + +msgid "Retrieves the fully qualified parent command name." +msgstr "Retrieves the fully qualified parent command name." + +msgid "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." +msgstr "This the base command name required to execute it. For example, in ``?one two three`` the parent name would be ``one two``." + +msgid "Retrieves the parents of this command." +msgstr "Retrieves the parents of this command." + +msgid "If the command has no parents then it returns an empty :class:`list`." +msgstr "If the command has no parents then it returns an empty :class:`list`." + +msgid "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." +msgstr "For example in commands ``?a b c test``, the parents are ``[c, b, a]``." + +msgid "Retrieves the root parent of this command." +msgstr "Retrieves the root parent of this command." + +msgid "If the command has no parents then it returns ``None``." +msgstr "If the command has no parents then it returns ``None``." + +msgid "For example in commands ``?a b c test``, the root parent is ``a``." +msgstr "For example in commands ``?a b c test``, the root parent is ``a``." + +msgid "Retrieves the fully qualified command name." +msgstr "Retrieves the fully qualified command name." + +msgid "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." +msgstr "This is the full parent name with the command name as well. For example, in ``?one two three`` the qualified name would be ``one two three``." + +msgid "Checks whether the command is currently on cooldown." +msgstr "Checks whether the command is currently on cooldown." + +msgid "The invocation context to use when checking the command's cooldown status." +msgstr "The invocation context to use when checking the command's cooldown status." + +msgid "A boolean indicating if the command is on cooldown." +msgstr "A boolean indicating if the command is on cooldown." + +msgid "Resets the cooldown on this command." +msgstr "Resets the cooldown on this command." + +msgid "The invocation context to reset the cooldown under." +msgstr "The invocation context to reset the cooldown under." + +msgid "Retrieves the amount of seconds before this command can be tried again." +msgstr "Retrieves the amount of seconds before this command can be tried again." + +msgid "The invocation context to retrieve the cooldown from." +msgstr "The invocation context to retrieve the cooldown from." + +msgid "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." +msgstr "The amount of time left on this command's cooldown in seconds. If this is ``0.0`` then the command isn't on cooldown." + +msgid ":class:`float`" +msgstr ":class:`float`" + +msgid "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Checks whether the command has an error handler registered. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "The name of the cog this command belongs to, if any." +msgstr "The name of the cog this command belongs to, if any." + +msgid "Gets the \"short\" documentation of a command." +msgstr "Gets the \"short\" documentation of a command." + +msgid "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." +msgstr "By default, this is the :attr:`.brief` attribute. If that lookup leads to an empty string then the first line of the :attr:`.help` attribute is used instead." + +msgid "Returns a POSIX-like signature useful for help command output." +msgstr "Returns a POSIX-like signature useful for help command output." + +msgid "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." +msgstr "Checks if the command can be executed by checking all the predicates inside the :attr:`~Command.checks` attribute. This also checks whether the command is disabled." + +msgid "Checks whether the command is disabled or not" +msgstr "Checks whether the command is disabled or not" + +msgid "The ctx of the command currently being invoked." +msgstr "The ctx of the command currently being invoked." + +msgid "A boolean indicating if the command can be invoked." +msgstr "A boolean indicating if the command can be invoked." + +msgid "Any command error that was raised during a check call will be propagated by this function." +msgstr "Any command error that was raised during a check call will be propagated by this function." + +msgid "Group" +msgstr "Group" + +msgid "A class that implements a grouping protocol for commands to be executed as subcommands." +msgstr "A class that implements a grouping protocol for commands to be executed as subcommands." + +msgid "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." +msgstr "This class is a subclass of :class:`.Command` and thus all options valid in :class:`.Command` are valid in here as well." + +msgid "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." +msgstr "Indicates if the group callback should begin parsing and invocation only if no subcommand was found. Useful for making it an error handling function to tell the user that no subcommand was found or to have different functionality in case no subcommand was found. If this is ``False``, then the group callback will always be invoked first. This means that the checks and the parsing dictated by its parameters will be executed. Defaults to ``False``." + +msgid "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." +msgstr "Indicates if the group's commands should be case-insensitive. Defaults to ``False``." + +msgid "Creates a copy of this :class:`Group`." +msgstr "Creates a copy of this :class:`Group`." + +msgid "A new instance of this group." +msgstr "A new instance of this group." + +msgid ":class:`Group`" +msgstr ":class:`Group`" + +msgid "GroupMixin" +msgstr "GroupMixin" + +msgid "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." +msgstr "A mixin that implements common functionality for classes that behave similar to :class:`.Group` and are allowed to register commands." + +msgid "A mapping of command name to :class:`.Command` objects." +msgstr "A mapping of command name to :class:`.Command` objects." + +msgid "Whether the commands should be case-insensitive. Defaults to ``False``." +msgstr "Whether the commands should be case-insensitive. Defaults to ``False``." + +msgid "Cogs" +msgstr "Cogs" + +msgid "Cog" +msgstr "Cog" + +msgid "An iterator that recursively walks through this cog's commands and subcommands." +msgstr "An iterator that recursively walks through this cog's commands and subcommands." + +msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." +msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." + +msgid "A :class:`list` of commands that are defined inside this cog." +msgstr "A :class:`list` of commands that are defined inside this cog." + +msgid "This does not include subcommands." +msgstr "This does not include subcommands." + +msgid "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" +msgstr "List[Union[:class:`~discord.ApplicationCommand`, :class:`.Command`]]" + +msgid "CogMeta" +msgstr "CogMeta" + +msgid "A metaclass for defining a cog." +msgstr "A metaclass for defining a cog." + +msgid "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." +msgstr "Note that you should probably not use this directly. It is exposed purely for documentation purposes along with making custom metaclasses to intermix with other metaclasses such as the :class:`abc.ABCMeta` metaclass." + +msgid "For example, to create an abstract cog mixin class, the following would be done." +msgstr "For example, to create an abstract cog mixin class, the following would be done." + +msgid "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" +msgstr "When passing an attribute of a metaclass that is documented below, note that you must pass it as a keyword-only argument to the class creation like the following example:" + +msgid "The cog name. By default, it is the name of the class with no modification." +msgstr "The cog name. By default, it is the name of the class with no modification." + +msgid "The cog description. By default, it is the cleaned docstring of the class." +msgstr "The cog description. By default, it is the cleaned docstring of the class." + +msgid "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" +msgstr "A list of attributes to apply to every command inside this cog. The dictionary is passed into the :class:`Command` options at ``__init__``. If you specify attributes inside the command attribute in the class, it will override the one specified inside this attribute. For example:" + +msgid "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." +msgstr "A shortcut to :attr:`.command_attrs`, what ``guild_ids`` should all application commands have in the cog. You can override this by setting ``guild_ids`` per command." + +msgid "Optional[List[:class:`int`]]" +msgstr "Optional[List[:class:`int`]]" + +msgid "Help Commands" +msgstr "Help Commands" + +msgid "HelpCommand" +msgstr "HelpCommand" + +msgid "The base implementation for help command formatting." +msgstr "The base implementation for help command formatting." + +msgid "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." +msgstr "Internally instances of this class are deep copied every time the command itself is invoked to prevent a race condition mentioned in :dpy-issue:`2123`." + +msgid "This means that relying on the state of this class to be the same between command invocations would not work as expected." +msgstr "This means that relying on the state of this class to be the same between command invocations would not work as expected." + +msgid "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." +msgstr "The context that invoked this help formatter. This is generally set after the help command assigned, :func:`command_callback`\\, has been called." + +msgid "Optional[:class:`Context`]" +msgstr "Optional[:class:`Context`]" + +msgid "Specifies if hidden commands should be shown in the output. Defaults to ``False``." +msgstr "Specifies if hidden commands should be shown in the output. Defaults to ``False``." + +msgid "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." +msgstr "Specifies if commands should have their :attr:`.Command.checks` called and verified. If ``True``, always calls :attr:`.Command.checks`. If ``None``, only calls :attr:`.Command.checks` in a guild setting. If ``False``, never calls :attr:`.Command.checks`. Defaults to ``True``." + +msgid "Optional[:class:`bool`]" +msgstr "Optional[:class:`bool`]" + +msgid "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." +msgstr "A dictionary of options to pass in for the construction of the help command. This allows you to change the command behaviour without actually changing the implementation of the command. The attributes will be the same as the ones passed in the :class:`.Command` constructor." + +msgid "Adds a check to the help command." +msgstr "Adds a check to the help command." + +msgid "Removes a check from the help command." +msgstr "Removes a check from the help command." + +msgid "Retrieves the bot mapping passed to :meth:`send_bot_help`." +msgstr "Retrieves the bot mapping passed to :meth:`send_bot_help`." + +msgid "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." +msgstr "Similar to :attr:`Context.invoked_with` except properly handles the case where :meth:`Context.send_help` is used." + +msgid "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." +msgstr "If the help command was used regularly then this returns the :attr:`Context.invoked_with` attribute. Otherwise, if the help command was called using :meth:`Context.send_help` then it returns the internal command name of the help command." + +msgid "The command name that triggered this invocation." +msgstr "The command name that triggered this invocation." + +msgid "Retrieves the signature portion of the help page." +msgstr "Retrieves the signature portion of the help page." + +msgid "The command to get the signature of." +msgstr "The command to get the signature of." + +msgid "The signature for the command." +msgstr "The signature for the command." + +msgid "Removes mentions from the string to prevent abuse." +msgstr "Removes mentions from the string to prevent abuse." + +msgid "This includes ``@everyone``, ``@here``, member mentions and role mentions." +msgstr "This includes ``@everyone``, ``@here``, member mentions and role mentions." + +msgid "The string with mentions removed." +msgstr "The string with mentions removed." + +msgid "A property for retrieving or setting the cog for the help command." +msgstr "A property for retrieving or setting the cog for the help command." + +msgid "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." +msgstr "When a cog is set for the help command, it is as-if the help command belongs to that cog. All cog special methods will apply to the help command, and it will be automatically unset on unload." + +msgid "To unbind the cog from the help command, you can set it to ``None``." +msgstr "To unbind the cog from the help command, you can set it to ``None``." + +msgid "The cog that is currently set for the help command." +msgstr "The cog that is currently set for the help command." + +msgid "|maybecoro|" +msgstr "|maybecoro|" + +msgid "A method called when a command is not found in the help command. This is useful to override for i18n." +msgstr "A method called when a command is not found in the help command. This is useful to override for i18n." + +msgid "Defaults to ``No command called {0} found.``" +msgstr "Defaults to ``No command called {0} found.``" + +msgid "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid command. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when a command has not been found." +msgstr "The string to use when a command has not been found." + +msgid "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." +msgstr "A method called when a command did not have a subcommand requested in the help command. This is useful to override for i18n." + +msgid "Defaults to either:" +msgstr "Defaults to either:" + +msgid "``'Command \"{command.qualified_name}\" has no subcommands.'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommands.'``" + +msgid "If there is no subcommand in the ``command`` parameter." +msgstr "If there is no subcommand in the ``command`` parameter." + +msgid "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" +msgstr "``'Command \"{command.qualified_name}\" has no subcommand named {string}'``" + +msgid "If the ``command`` parameter has subcommands but not one named ``string``." +msgstr "If the ``command`` parameter has subcommands but not one named ``string``." + +msgid "The command that did not have the subcommand requested." +msgstr "The command that did not have the subcommand requested." + +msgid "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." +msgstr "The string that contains the invalid subcommand. Note that this has had mentions removed to prevent abuse." + +msgid "The string to use when the command did not have the subcommand requested." +msgstr "The string to use when the command did not have the subcommand requested." + +msgid "Returns a filtered list of commands and optionally sorts them." +msgstr "Returns a filtered list of commands and optionally sorts them." + +msgid "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." +msgstr "This takes into account the :attr:`verify_checks` and :attr:`show_hidden` attributes." + +msgid "An iterable of commands that are getting filtered." +msgstr "An iterable of commands that are getting filtered." + +msgid "Whether to sort the result." +msgstr "Whether to sort the result." + +msgid "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." +msgstr "An optional key function to pass to :func:`py:sorted` that takes a :class:`Command` as its sole parameter. If ``sort`` is passed as ``True`` then this will default as the command name." + +msgid "A tuple of command types to exclude from the filter." +msgstr "A tuple of command types to exclude from the filter." + +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.GuildEmoji`." +msgstr "Converts to a :class:`~discord.GuildEmoji`." + +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.GuildEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" + +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/tr/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/tr/LC_MESSAGES/ext/commands/cogs.po new file mode 100644 index 0000000000..3c3bdcf691 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/ext/commands/cogs.po @@ -0,0 +1,133 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/ext/commands/commands.po b/docs/locales/tr/LC_MESSAGES/ext/commands/commands.po new file mode 100644 index 0000000000..6328f825ec --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/ext/commands/commands.po @@ -0,0 +1,592 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" + +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/tr/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/tr/LC_MESSAGES/ext/commands/extensions.po new file mode 100644 index 0000000000..1d605e8e3f --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/ext/commands/extensions.po @@ -0,0 +1,61 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/ext/commands/index.po b/docs/locales/tr/LC_MESSAGES/ext/commands/index.po new file mode 100644 index 0000000000..57a313ebef --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/ext/commands/index.po @@ -0,0 +1,19 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/ext/pages/index.po b/docs/locales/tr/LC_MESSAGES/ext/pages/index.po new file mode 100644 index 0000000000..fccb0b2b36 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/ext/pages/index.po @@ -0,0 +1,679 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + +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 "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." + +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." + +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/tr/LC_MESSAGES/ext/tasks/index.po b/docs/locales/tr/LC_MESSAGES/ext/tasks/index.po new file mode 100644 index 0000000000..5ca39205f0 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/ext/tasks/index.po @@ -0,0 +1,283 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/faq.po b/docs/locales/tr/LC_MESSAGES/faq.po new file mode 100644 index 0000000000..343fdb35fa --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/faq.po @@ -0,0 +1,313 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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:`GuildEmoji` or :class:`AppEmoji`. 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:`GuildEmoji` or :class:`AppEmoji`. 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/tr/LC_MESSAGES/index.po b/docs/locales/tr/LC_MESSAGES/index.po new file mode 100644 index 0000000000..f842f742ad --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/index.po @@ -0,0 +1,115 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/installing.po b/docs/locales/tr/LC_MESSAGES/installing.po new file mode 100644 index 0000000000..449b52cd00 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/installing.po @@ -0,0 +1,100 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." +msgstr "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 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/tr/LC_MESSAGES/intents.po b/docs/locales/tr/LC_MESSAGES/intents.po new file mode 100644 index 0000000000..5b8548adc9 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/intents.po @@ -0,0 +1,238 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/logging.po b/docs/locales/tr/LC_MESSAGES/logging.po new file mode 100644 index 0000000000..793abccd4a --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/logging.po @@ -0,0 +1,34 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/migrating_to_v1.po b/docs/locales/tr/LC_MESSAGES/migrating_to_v1.po new file mode 100644 index 0000000000..fef2da452e --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/migrating_to_v1.po @@ -0,0 +1,1507 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/migrating_to_v2.po b/docs/locales/tr/LC_MESSAGES/migrating_to_v2.po new file mode 100644 index 0000000000..227dc45b7e --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/migrating_to_v2.po @@ -0,0 +1,418 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/old_changelog.po b/docs/locales/tr/LC_MESSAGES/old_changelog.po new file mode 100644 index 0000000000..b790838a9d --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/old_changelog.po @@ -0,0 +1,2140 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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`, 2374)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, 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/tr/LC_MESSAGES/quickstart.po b/docs/locales/tr/LC_MESSAGES/quickstart.po new file mode 100644 index 0000000000..ef90f16283 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/quickstart.po @@ -0,0 +1,97 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/tr/LC_MESSAGES/version_guarantees.po b/docs/locales/tr/LC_MESSAGES/version_guarantees.po new file mode 100644 index 0000000000..2f0c52e1b1 --- /dev/null +++ b/docs/locales/tr/LC_MESSAGES/version_guarantees.po @@ -0,0 +1,58 @@ +msgid "" +msgstr "" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: 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/zh_CN/LC_MESSAGES/api/abcs.po b/docs/locales/zh_CN/LC_MESSAGES/api/abcs.po index 0657b37252..6a2a917c8e 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/abcs.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/abcs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po b/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po index 3deec14558..6f62ad510f 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/application_commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -311,6 +311,9 @@ msgstr "The location where this command can be used. Cannot be set if this is a msgid "Set[:class:`InteractionContextType`]" msgstr "Set[:class:`InteractionContextType`]" +msgid "The type of the None singleton." +msgstr "The type of the None singleton." + msgid "Creates a copy of this command." msgstr "Creates a copy of this command." @@ -362,6 +365,9 @@ msgstr "Yields" msgid ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." msgstr ":class:`.SlashCommand` | :class:`.SlashCommandGroup` -- A nested slash command or slash command group from the group." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.SlashCommand\\` \\| \\:py\\:class\\:\\`\\~discord.commands.core.SlashCommandGroup\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Creates a copy of this command group." msgstr "Creates a copy of this command group." @@ -848,6 +854,24 @@ 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 ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is guild-installed. This is a shortcut for :meth:`Interaction.is_guild_authorised`." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." +msgstr ":class:`bool`: Checks if the invoked command is user-installed. This is a shortcut for :meth:`Interaction.is_user_authorised`." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr ":class:`bool`: An alias for :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Represents context for a slash command's option autocomplete." msgstr "Represents context for a slash command's option autocomplete." diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/application_info.po b/docs/locales/zh_CN/LC_MESSAGES/api/application_info.po index 86c5570471..e2c9638d63 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/application_info.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/application_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -62,9 +62,6 @@ 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 `_." @@ -89,6 +86,36 @@ 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 "The approximate count of guilds to which the app has been added, if any." +msgstr "The approximate count of guilds to which the app has been added, if any." + +msgid "The approximate count of users who have installed the application, if any." +msgstr "The approximate count of users who have installed the application, if any." + +msgid "The list of redirect URIs for the application, if set." +msgstr "The list of redirect URIs for the application, if set." + +msgid "The interactions endpoint URL for the application, if set." +msgstr "The interactions endpoint URL for the application, if set." + +msgid "The role connection verification URL for the application, if set." +msgstr "The role connection verification URL for the application, if set." + +msgid "The settings for the application's default in-app authorization link, if set." +msgstr "The settings for the application's default in-app authorization link, if set." + +msgid "Optional[List[:class:`AppInstallParams`]]" +msgstr "Optional[List[:class:`AppInstallParams`]]" + +msgid "The list of tags describing the content and functionality of the app, if set." +msgstr "The list of tags describing the content and functionality of the app, if set." + +msgid "Maximium of 5 tags." +msgstr "Maximium of 5 tags." + +msgid "The default custom authorization URL for the application, if set." +msgstr "The default custom authorization URL for the application, if set." + msgid "Parameters" msgstr "Parameters" @@ -104,9 +131,30 @@ 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 "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 "It currently returns an empty string." +msgstr "It currently returns an empty string." + 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 the settings for the custom authorization URL of an application." +msgstr "Represents the settings for the custom authorization URL of an application." + +msgid "The list of OAuth2 scopes for adding the application to a guild." +msgstr "The list of OAuth2 scopes for adding the application to a guild." + +msgid "List[:class:`str`]" +msgstr "List[:class:`str`]" + +msgid "The permissions to request for the bot role in the guild." +msgstr "The permissions to request for the bot role in the guild." + +msgid ":class:`Permissions`" +msgstr ":class:`Permissions`" + msgid "Represents an application team for a bot provided by Discord." msgstr "Represents an application team for a bot provided by Discord." diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/async_iter.po b/docs/locales/zh_CN/LC_MESSAGES/api/async_iter.po index c7934bda21..09ab7c5eec 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/async_iter.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/async_iter.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/audit_logs.po b/docs/locales/zh_CN/LC_MESSAGES/api/audit_logs.po index 0f409b5f5a..0b4916a507 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/audit_logs.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/audit_logs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/clients.po b/docs/locales/zh_CN/LC_MESSAGES/api/clients.po index c3ea149c61..8a065dd82d 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/clients.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/clients.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -257,6 +257,12 @@ msgstr "The coroutine to register as the post-invoke hook." msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -893,8 +968,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -986,6 +1061,9 @@ msgstr "A shortcut decorator that initializes the provided subclass of :class:`. 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 :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1028,8 +1106,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1406,6 +1484,9 @@ msgstr "An iterator that recursively walks through all application commands and msgid ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." msgstr ":class:`.ApplicationCommand` -- An application command from the internal list of application commands." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." msgstr "This is similar to :class:`.Bot` except that it is inherited from :class:`discord.AutoShardedClient` instead." @@ -1499,6 +1580,15 @@ msgstr "Whether to enable events that are useful only for debugging gateway rela 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 "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``. .. warning:: There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`. .. versionadded:: 2.7" + +msgid "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." +msgstr "Whether to automatically fetch and cache the application's emojis on startup and when fetching. Defaults to ``False``." + +msgid "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." +msgstr "There are no events related to application emojis - if any are created/deleted on the Developer Dashboard while the client is running, the cache will not be updated until you manually run :func:`fetch_emojis`." + 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``." @@ -1526,6 +1616,9 @@ msgstr "If a ``shard_ids`` parameter is given, then those shard IDs will be used 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 "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 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." diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/cogs.po b/docs/locales/zh_CN/LC_MESSAGES/api/cogs.po index e0a5531320..b4772fc482 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/cogs.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -56,6 +56,9 @@ msgstr "Yields" msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." msgstr "Returns a :class:`list` of (name, function) listener pairs that are defined in this cog." diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/data_classes.po b/docs/locales/zh_CN/LC_MESSAGES/api/data_classes.po index fcb1ec47b6..1b8c81f060 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/data_classes.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/data_classes.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -296,8 +296,8 @@ 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:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`GuildSticker`" msgstr ":class:`GuildSticker`" @@ -803,8 +803,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds for this shard. If no heartbeat has been received yet this returns ``float('inf')``." msgid "Whether the websocket is currently rate limited." msgstr "Whether the websocket is currently rate limited." @@ -926,6 +926,9 @@ msgstr ":meth:`VoiceChannel.get_partial_message`" msgid ":meth:`StageChannel.get_partial_message`" msgstr ":meth:`StageChannel.get_partial_message`" +msgid ":meth:`PartialMessageable.get_partial_message`" +msgstr ":meth:`PartialMessageable.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." @@ -941,8 +944,8 @@ 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 "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" +msgstr "Union[:class:`TextChannel`, :class:`Thread`, :class:`DMChannel`, :class:`VoiceChannel`, :class:`StageChannel`, :class:`PartialMessageable`]" msgid "The message ID." msgstr "The message ID." @@ -1031,8 +1034,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1682,8 +1685,8 @@ 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 "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" +msgstr "Optional[Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]]" msgid "Represents a poll answer object." msgstr "Represents a poll answer object." @@ -2039,6 +2042,9 @@ msgstr "Returns ``True`` if the thread is pinned to the top of its parent forum 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 "Returns ``True`` if the embedded media download options are hidden for the media channel posts." +msgstr "Returns ``True`` if the embedded media download options are hidden for the media channel posts." + msgid "Wraps up the Discord SKU flags." msgstr "Wraps up the Discord SKU flags." @@ -2594,6 +2600,9 @@ msgstr ":attr:`view_audit_log`" msgid ":attr:`view_guild_insights`" msgstr ":attr:`view_guild_insights`" +msgid ":attr:`view_creator_monetization_analytics`" +msgstr ":attr:`view_creator_monetization_analytics`" + msgid ":attr:`manage_guild`" msgstr ":attr:`manage_guild`" @@ -2624,6 +2633,9 @@ msgstr "A factory method that creates a :class:`Permissions` with all \"General\ 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 "Added :attr:`view_creator_monetization_analytics` permission." +msgstr "Added :attr:`view_creator_monetization_analytics` permission." + 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\\)`" @@ -2810,6 +2822,15 @@ msgstr "Returns ``True`` if a user can launch an activity flagged 'EMBEDDED' in 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 user can view creator monetization (role subscription) analytics." +msgstr "Returns ``True`` if a user can view creator monetization (role subscription) analytics." + +msgid "Returns ``True`` if a user can use the soundboard in a voice channel." +msgstr "Returns ``True`` if a user can use the soundboard in a voice channel." + +msgid "Returns ``True`` if a user can use external soundboard sounds in a voice channel." +msgstr "Returns ``True`` if a user can use external soundboard sounds in a voice channel." + msgid "Returns ``True`` if a member can send voice messages." msgstr "Returns ``True`` if a member can send voice messages." diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/enums.po b/docs/locales/zh_CN/LC_MESSAGES/api/enums.po index dc333ff02b..e4f5ebba42 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/enums.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/enums.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -974,8 +974,8 @@ 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 "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` or :class:`Object` with the emoji ID." +msgstr "When this is the action, the type of :attr:`~AuditLogEntry.target` is the :class:`GuildEmoji` 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." @@ -1769,3 +1769,15 @@ 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." +msgid "Represents a subscription's status." +msgstr "Represents a subscription's status." + +msgid "The subscription is active and is scheduled to renew." +msgstr "The subscription is active and is scheduled to renew." + +msgid "The subscription is active but will not renew." +msgstr "The subscription is active but will not renew." + +msgid "The subscription is inactive and the subscription owner is not being charged." +msgstr "The subscription is inactive and the subscription owner is not being charged." + diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/events.po b/docs/locales/zh_CN/LC_MESSAGES/api/events.po index cc86ab0031..f02ffc8966 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/events.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/events.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -293,33 +293,6 @@ msgstr "This is only for the messages sent from the client WebSocket. The voice 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" @@ -392,8 +365,8 @@ 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 "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." +msgstr "Called when a :class:`Guild` adds or removes an :class:`GuildEmoji`." msgid "This requires :attr:`Intents.emojis_and_stickers` to be enabled." msgstr "This requires :attr:`Intents.emojis_and_stickers` to be enabled." @@ -791,6 +764,60 @@ 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 "Monetization" +msgstr "Monetization" + +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 cancelled." +msgstr "Called when a user's subscription to an Entitlement is cancelled." + +msgid "Before October 1, 2024, this event was called when a user's subscription was renewed." +msgstr "Before October 1, 2024, this event was called when a user's subscription was renewed." + +msgid "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." +msgstr "Entitlements that no longer follow this behavior will have a type of :attr:`EntitlementType.purchase`. Those that follow the old behavior will have a type of :attr:`EntitlementType.application_subscription`." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + +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 "Called when a subscription is created for the application." +msgstr "Called when a subscription is created for the application." + +msgid "The subscription that was created." +msgstr "The subscription that was created." + +msgid "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." +msgstr "Called when a subscription has been updated. This could be a renewal, cancellation, or other payment related update." + +msgid "The subscription that was updated." +msgstr "The subscription that was updated." + +msgid "Called when a subscription has been deleted." +msgstr "Called when a subscription has been deleted." + +msgid "The subscription that was deleted." +msgstr "The subscription that was deleted." + msgid "Scheduled Events" msgstr "Scheduled Events" diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/exceptions.po b/docs/locales/zh_CN/LC_MESSAGES/api/exceptions.po index e4cd130b21..5a1cc9438a 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/exceptions.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/exceptions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/index.po b/docs/locales/zh_CN/LC_MESSAGES/api/index.po index 70d92c282d..bb7c9cd90b 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/index.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/models.po b/docs/locales/zh_CN/LC_MESSAGES/api/models.po index 25f2b52981..418e8e1ad6 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/models.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/models.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -1202,6 +1202,9 @@ msgstr "If provided, the number of seconds to wait in the background before dele 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 was not found." +msgstr "The message was not found." + msgid "Editing the message failed." msgstr "Editing the message failed." @@ -1268,8 +1271,8 @@ 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 "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." +msgstr "The emoji may be a unicode emoji, a custom :class:`GuildEmoji`, or an :class:`AppEmoji`." 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." @@ -1445,8 +1448,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`AppEmoji`, :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." @@ -1568,9 +1571,45 @@ msgstr ":class:`SKUFlags`" msgid "Returns the URL for the SKU." msgstr "Returns the URL for the SKU." +msgid "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." +msgstr "Returns an :class:`.AsyncIterator` that enables fetching the SKU's subscriptions." + +msgid "The user for which to retrieve subscriptions." +msgstr "The user for which to retrieve subscriptions." + +msgid "Retrieves subscriptions before this date or object. If a datetime 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 subscriptions before this date or object. If a datetime 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 subscriptions after this date or object. If a datetime is provided, it is recommended to use a UTC-aware datetime. If the datetime is naive, it is assumed to be local time." +msgstr "Retrieve subscriptions after this date or object. If a datetime 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 subscriptions to retrieve. If ``None``, retrieves all subscriptions." +msgstr "The number of subscriptions to retrieve. If ``None``, retrieves all subscriptions." + +msgid ":class:`Subscription` -- A subscription that the user has for this SKU." +msgstr ":class:`Subscription` -- A subscription that the user has for this SKU." + +msgid "Getting the subscriptions failed." +msgstr "Getting the subscriptions failed." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.iterators.SubscriptionIterator\\``" + +msgid "Flattening into a list ::" +msgstr "Flattening into a list ::" + +msgid "All parameters except for ``user`` are optional." +msgstr "All parameters except for ``user`` are optional." + msgid "Represents a Discord entitlement." msgstr "Represents a Discord entitlement." +msgid "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." +msgstr "As of October 1, 2024, entitlements that have been purchased will have ``ends_at`` set to ``None`` unless the parent :class:`Subscription` has been cancelled." + +msgid "`See the Discord changelog. `_" +msgstr "`See the Discord changelog. `_" + msgid "The entitlement's ID." msgstr "The entitlement's ID." @@ -1607,17 +1646,14 @@ 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 "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.consumable`." +msgstr "Whether or not this entitlement has been consumed. This will always be ``False`` for entitlements that are not from an SKU of type :attr:`SKUType.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 "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." +msgstr "This can only be done on entitlements from an SKU of type :attr:`SKUType.consumable`." msgid "Consuming the entitlement failed." msgstr "Consuming the entitlement failed." @@ -1631,6 +1667,57 @@ msgstr "A test entitlement is an entitlement that was created using :meth:`Guild msgid "Deleting the entitlement failed." msgstr "Deleting the entitlement failed." +msgid "Represents a user making recurring payments for one or more SKUs." +msgstr "Represents a user making recurring payments for one or more SKUs." + +msgid "Successful payments grant the user access to entitlements associated with the SKU." +msgstr "Successful payments grant the user access to entitlements associated with the SKU." + +msgid "The subscription's ID." +msgstr "The subscription's ID." + +msgid "The ID of the user that owns this subscription." +msgstr "The ID of the user that owns this subscription." + +msgid "The IDs of the SKUs this subscription is for." +msgstr "The IDs of the SKUs this subscription is for." + +msgid "List[:class:`int`]" +msgstr "List[:class:`int`]" + +msgid "The IDs of the entitlements this subscription is for." +msgstr "The IDs of the entitlements this subscription is for." + +msgid "The IDs of the SKUs that the buyer will be subscribed to at renewal." +msgstr "The IDs of the SKUs that the buyer will be subscribed to at renewal." + +msgid "The start of the current subscription period." +msgstr "The start of the current subscription period." + +msgid ":class:`datetime.datetime`" +msgstr ":class:`datetime.datetime`" + +msgid "The end of the current subscription period." +msgstr "The end of the current subscription period." + +msgid "The status of the subscription." +msgstr "The status of the subscription." + +msgid ":class:`SubscriptionStatus`" +msgstr ":class:`SubscriptionStatus`" + +msgid "When the subscription was canceled." +msgstr "When the subscription was canceled." + +msgid ":class:`datetime.datetime` | ``None``" +msgstr ":class:`datetime.datetime` | ``None``" + +msgid "The user that owns this subscription." +msgstr "The user that owns this subscription." + +msgid "Optional[:class:`User`]" +msgstr "Optional[:class:`User`]" + msgid "Guild" msgstr "Guild" @@ -1658,8 +1745,8 @@ 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 "Tuple[:class:`GuildEmoji`, ...]" +msgstr "Tuple[:class:`GuildEmoji`, ...]" msgid "All stickers that the guild owns." msgstr "All stickers that the guild owns." @@ -1781,9 +1868,6 @@ 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." @@ -2141,11 +2225,11 @@ 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:`GuildEmoji`, 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:`GuildEmoji`, 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 "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (eg. '')." msgid ":class:`ForumChannel`" msgstr ":class:`ForumChannel`" @@ -2657,8 +2741,8 @@ 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 "Retrieves all custom :class:`GuildEmoji`\\s from the guild." +msgstr "Retrieves all custom :class:`GuildEmoji`\\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." @@ -2669,11 +2753,11 @@ msgstr "An error occurred fetching the emojis." msgid "The retrieved emojis." msgstr "The retrieved emojis." -msgid "List[:class:`Emoji`]" -msgstr "List[:class:`Emoji`]" +msgid "List[:class:`GuildEmoji`]" +msgstr "List[:class:`GuildEmoji`]" -msgid "Retrieves a custom :class:`Emoji` from the guild." -msgstr "Retrieves a custom :class:`Emoji` from the guild." +msgid "Retrieves a custom :class:`GuildEmoji` from the guild." +msgstr "Retrieves a custom :class:`GuildEmoji` 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." @@ -2684,8 +2768,8 @@ msgstr "The emoji's ID." msgid "The retrieved emoji." msgstr "The retrieved emoji." -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid "The emoji requested could not be found." msgstr "The emoji requested could not be found." @@ -2693,8 +2777,8 @@ 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 "Creates a custom :class:`GuildEmoji` for the guild." +msgstr "Creates a custom :class:`GuildEmoji` 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." @@ -2723,8 +2807,8 @@ 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 "Deletes the custom :class:`GuildEmoji` from the guild." +msgstr "Deletes the custom :class:`GuildEmoji` 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." @@ -3446,6 +3530,15 @@ msgstr "For regular members this is just their avatar, but if they have a guild 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 member's display banner." +msgstr "Returns the member's display banner." + +msgid "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." +msgstr "For regular members this is just their banner, but if they have a guild specific banner then that is returned instead." + +msgid "Returns an :class:`Asset` for the guild banner the member has. If unavailable, ``None`` is returned." +msgstr "Returns an :class:`Asset` for the guild banner 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." @@ -3737,9 +3830,6 @@ 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." @@ -3890,9 +3980,6 @@ 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." @@ -4199,9 +4286,6 @@ msgstr "How many times the invite can be used. A value of ``0`` indicates that i 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." @@ -4316,8 +4400,8 @@ msgstr "The position of the role. This number is usually positive. The bottom ro 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 is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." +msgstr "Indicates if the role is managed by the guild. This is true if any of :meth:`Role.is_integration`, :meth:`Role.is_premium_subscriber`, :meth:`Role.is_bot_managed` or :meth:`Role.is_guild_connections_role` is ``True``." msgid "Indicates if the role can be mentioned by users." msgstr "Indicates if the role can be mentioned by users." @@ -4346,12 +4430,21 @@ msgstr "Whether the role is associated with a bot. :rtype: :sphinx_autodoc_typeh 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 guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions. :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 "Whether the role is available for purchase." +msgstr "Whether the role is available for purchase." + +msgid "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Returns ``True`` if the role is available for purchase, and ``False`` if it is not available for purchase or if the role is not linked to a guild subscription. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the role is a guild connections role. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Returns the role's permissions." msgstr "Returns the role's permissions." @@ -4439,20 +4532,26 @@ msgstr "A role tag is a piece of extra information attached to a managed role th 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 "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." +msgstr "Role tags are a fairly complex topic, since it's usually hard to determine which role tag combination represents which role type. We aim to improve the documentation / introduce new attributes in future. For the meantime read `this `_ if you need detailed information about how role tags work." + 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 "The subscription SKU and listing ID of the role." +msgstr "The subscription SKU and listing ID of 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 "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." +msgstr "Whether the guild manages the role through some form of integrations such as Twitch or through guild subscriptions." msgid "Scheduled Event" msgstr "Scheduled Event" @@ -4694,6 +4793,9 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`, :class:`str`]" + msgid "Onboarding" msgstr "Onboarding" @@ -4811,8 +4913,8 @@ 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 "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" +msgstr "Union[:class:`GuildEmoji`, :class:`PartialEmoji`]" msgid "The option's title." msgstr "The option's title." @@ -5189,8 +5291,8 @@ msgstr "This requires :attr:`Intents.members` to be properly filled. Most of the 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 "This is only available for threads in forum or media channels." +msgstr "This is only available for threads in forum or media channels." msgid "List[:class:`ForumTag`]" msgstr "List[:class:`ForumTag`]" @@ -5240,8 +5342,8 @@ 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 pinned to the top of its parent forum or media channel. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "Whether the thread is pinned to the top of its parent forum or media 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." @@ -5381,8 +5483,8 @@ msgstr "The new duration in minutes before a thread is automatically archived fo 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 "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." +msgstr "Whether to pin the thread or not. This only works if the thread is part of a forum or media channel." 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" @@ -6131,8 +6233,8 @@ 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 "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" +msgstr "Optional[Union[:class:`abc.GuildChannel`, :class:`abc.PrivateChannel`, :class:`Thread`, :class:`PartialMessageable`]]" msgid "The ID of the channel the interaction was sent from." msgstr "The ID of the channel the interaction was sent from." @@ -6197,8 +6299,8 @@ 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 cached channel from which the interaction was sent. DM channels are not resolved. These are :class:`PartialMessageable` instead." +msgstr "The cached channel from which the interaction was sent. DM channels are not resolved. 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." @@ -6218,6 +6320,30 @@ msgstr "A response can only be done once. If secondary messages need to be sent, msgid "Returns the followup webhook for followup interactions." msgstr "Returns the followup webhook for followup interactions." +msgid ":class:`bool`: Checks if the interaction is guild authorised." +msgstr ":class:`bool`: Checks if the interaction is guild authorised." + +msgid "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorised." +msgstr ":class:`bool`: Checks if the interaction is user authorised." + +msgid "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorized`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is guild authorized." +msgstr ":class:`bool`: Checks if the interaction is guild authorized." + +msgid "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_guild_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + +msgid ":class:`bool`: Checks if the interaction is user authorized." +msgstr ":class:`bool`: Checks if the interaction is user authorized." + +msgid "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" +msgstr "There is an alias for this called :meth:`.is_user_authorised`. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`bool\\``" + msgid "Fetches the original interaction response message associated with the interaction." msgstr "Fetches the original interaction response message associated with the interaction." @@ -6629,8 +6755,8 @@ msgstr "Whether the select is disabled or not." msgid "Emoji" msgstr "Emoji" -msgid "Represents a custom emoji." -msgstr "Represents a custom emoji." +msgid "Represents a custom emoji in a guild." +msgstr "Represents a custom emoji in a guild." 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``." @@ -6671,12 +6797,6 @@ 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." @@ -6716,6 +6836,48 @@ msgstr "An error occurred editing the emoji." msgid "The newly updated emoji." msgstr "The newly updated emoji." +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 "Represents a custom emoji from an application." +msgstr "Represents a custom emoji from an application." + +msgid "The application ID the emoji belongs to, if available." +msgstr "The application ID the emoji belongs to, if available." + +msgid "The user that created the emoji." +msgstr "The user that created the emoji." + +msgid "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." +msgstr "The guild this emoji belongs to. This is always `None` for :class:`AppEmoji`." + +msgid "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." +msgstr "A :class:`list` of roles that is allowed to use this emoji. This is always empty for :class:`AppEmoji`." + +msgid "Whether the bot can use this emoji." +msgstr "Whether the bot can use this emoji." + +msgid "Deletes the application emoji." +msgstr "Deletes the application emoji." + +msgid "You must own the emoji to do this." +msgstr "You must own the emoji to do this." + +msgid "You are not allowed to delete the emoji." +msgstr "You are not allowed to delete the emoji." + +msgid "Edits the application emoji." +msgstr "Edits the application emoji." + +msgid "You are not allowed to edit the emoji." +msgstr "You are not allowed to edit the emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + msgid "Represents a \"partial\" emoji." msgstr "Represents a \"partial\" emoji." @@ -6953,14 +7115,14 @@ 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 "Optional[:class:`str` | :class:`discord.GuildEmoji`]" +msgstr "Optional[:class:`str` | :class:`discord.GuildEmoji`]" 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 "Whether a tag is required to be specified when creating a thread in this forum or media channel." +msgstr "Whether a tag is required to be specified when creating a thread in this forum or media channel." msgid "Tags are specified in :attr:`applied_tags`." msgstr "Tags are specified in :attr:`applied_tags`." @@ -6977,8 +7139,8 @@ msgstr "The default sort order type to use to order posts in this channel. .. v 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 default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, 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:`GuildEmoji`, 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" @@ -7010,6 +7172,24 @@ 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 media channel. Subclass of :class:`ForumChannel`." +msgstr "Represents a Discord media channel. Subclass of :class:`ForumChannel`." + +msgid "Whether media download options are hidden in this media channel." +msgstr "Whether media download options are hidden in this media channel." + +msgid "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." +msgstr "The default reaction emoji. Can be a unicode emoji or a custom emoji in the forms: :class:`GuildEmoji`, snowflake ID, string representation (e.g., '')." + +msgid "Whether media download options should be hidden in this media channel." +msgstr "Whether media download options should be hidden in this media channel." + +msgid "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." +msgstr "The newly edited media channel. If the edit was only positional then ``None`` is returned instead." + +msgid "Optional[:class:`.MediaChannel`]" +msgstr "Optional[:class:`.MediaChannel`]" + msgid "Represents a Discord guild voice channel." msgstr "Represents a Discord guild voice channel." diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/sinks.po b/docs/locales/zh_CN/LC_MESSAGES/api/sinks.po index 82436a6b02..e36a21f8ef 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/sinks.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/sinks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/ui_kit.po b/docs/locales/zh_CN/LC_MESSAGES/api/ui_kit.po index bcbfa362d8..c79f15cb13 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/ui_kit.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/ui_kit.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -44,8 +44,8 @@ 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 emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." +msgstr "The emoji of the button. This can be in string form or a :class:`.PartialEmoji` or a full :class:`GuildEmoji` or :class:`AppEmoji`." 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)." @@ -122,8 +122,8 @@ 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 in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. If ``None`` then there is no timeout." +msgstr "Timeout in seconds from last interaction with the UI before no longer accepting input. Defaults to 180.0. 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." @@ -317,8 +317,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "Optional[:class:`int`]" +msgstr "Optional[:class:`int`]" + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." + +msgid ":class:`int`" +msgstr ":class:`int`" + +msgid "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" msgid "The callback associated with this UI item." msgstr "The callback associated with this UI item." @@ -419,8 +455,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." @@ -449,6 +485,9 @@ 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 "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 "The title of the modal dialog." msgstr "The title of the modal dialog." diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/utils.po b/docs/locales/zh_CN/LC_MESSAGES/api/utils.po index 11cc3bc28c..09b338136a 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/utils.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/utils.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -407,18 +407,24 @@ msgstr "This is meant to be passed into the :attr:`discord.Option.autocomplete` 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 "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive. .. versionadded:: 2.7" + +msgid "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." +msgstr "An optional callable (sync or async) used to filter the autocomplete options. It accepts two arguments: the :class:`.AutocompleteContext` and an item from ``values`` iteration treated as callback parameters. If ``None`` is provided, a default filter is used that includes items whose string representation starts with the user's input value, case-insensitive." + 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 "With filter parameter:" +msgstr "With filter parameter:" + 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." @@ -446,6 +452,9 @@ 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 "Example" +msgstr "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." diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/version_info.po b/docs/locales/zh_CN/LC_MESSAGES/api/version_info.po index 3e7ff6039a..7b04bdc20f 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/version_info.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/version_info.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/voice.po b/docs/locales/zh_CN/LC_MESSAGES/api/voice.po index 6458abab9e..e746081c69 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/voice.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/voice.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -215,6 +215,12 @@ msgstr "You are not connected." msgid "Encoding the data failed." msgstr "Encoding the data failed." +msgid "Returns the elapsed time of the playing audio." +msgstr "Returns the elapsed time of the playing audio." + +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~datetime.timedelta\\``" + msgid "A class that represents the Discord voice protocol." msgstr "A class that represents the Discord voice protocol." @@ -380,11 +386,11 @@ msgstr "The input that ffmpeg will take and convert to Opus bytes. If ``pipe`` i 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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 "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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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``, or ``libopus`` will be considered ``libopus``. ``opus`` will also be considered ``libopus`` since the ``opus`` encoder is still in development. 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." diff --git a/docs/locales/zh_CN/LC_MESSAGES/api/webhooks.po b/docs/locales/zh_CN/LC_MESSAGES/api/webhooks.po index 37d7e63745..e502fd296e 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/api/webhooks.po +++ b/docs/locales/zh_CN/LC_MESSAGES/api/webhooks.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/changelog.po b/docs/locales/zh_CN/LC_MESSAGES/changelog.po index 157985f7ef..31e14db03d 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/changelog.po +++ b/docs/locales/zh_CN/LC_MESSAGES/changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -26,8 +26,122 @@ 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 "⚠️ **This version removes support for Python 3.8.** ⚠️" +msgstr "⚠️ **This version removes support for Python 3.8.** ⚠️" + +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 "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Added the following `AppInfo` attributes: `approximate_guild_count`, `approximate_user_install_count`, `custom_install_url`, `install_params`, `interactions_endpoint_url`, `redirect_uris`, `role_connections_verification_url`, and `tags`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" +msgstr "Added `Member.guild_banner` and `Member.display_banner` properties. ([#2556](https://github.com/Pycord-Development/pycord/pull/2556))" + +msgid "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added support for Application Emojis. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Added `cache_app_emojis` parameter to `Client`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" +msgstr "Added `elapsed` method to `VoiceClient`. ([#2587](https://github.com/Pycord-Development/pycord/pull/2587/))" + +msgid "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" +msgstr "Added optional `filter` parameter to `utils.basic_autocomplete()`. ([#2590](https://github.com/Pycord-Development/pycord/pull/2590))" + +msgid "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" +msgstr "Added role tags: `subscription_listing_id`, `guild_connections`, and `available_for_purchase`. ([#2606](https://github.com/Pycord-Development/pycord/pull/2606))" + +msgid "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" +msgstr "Added missing `with_counts` parameter to `fetch_guilds` method. ([#2615](https://github.com/Pycord-Development/pycord/pull/2615))" + +msgid "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" +msgstr "Added the following missing permissions: `Permissions.use_soundboard`, `Permissions.use_external_sounds`, and `Permissions.view_creator_monetization_analytics`. ([#2620](https://github.com/Pycord-Development/pycord/pull/2620))" + +msgid "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Added `MediaChannel` channel type. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" +msgstr "Added `Message._raw_data` attribute. ([#2670](https://github.com/Pycord-Development/pycord/pull/2670))" + +msgid "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" +msgstr "Added helper methods to determine the authorizing party of an `Interaction`. ([#2659](https://github.com/Pycord-Development/pycord/pull/2659))" + +msgid "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" +msgstr "Added `VoiceMessage` subclass of `File` to allow voice messages to be sent. ([#2579](https://github.com/Pycord-Development/pycord/pull/2579))" + +msgid "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Added new `Subscription` object and related methods/events. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" +msgstr "Added ability to change the API's base URL with `Route.API_BASE_URL`. ([#2714](https://github.com/Pycord-Development/pycord/pull/2714))" + +msgid "Fixed" +msgstr "Fixed" + +msgid "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" +msgstr "Fixed `Enum` options not setting the correct type when only one choice is available. ([#2577](https://github.com/Pycord-Development/pycord/pull/2577))" + +msgid "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" +msgstr "Fixed `codec` option for `FFmpegOpusAudio` class to make it in line with documentation. ([#2581](https://github.com/Pycord-Development/pycord/pull/2581))" + +msgid "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" +msgstr "Fixed a possible bug where audio would play too fast at the beginning of audio files. ([#2584](https://github.com/Pycord-Development/pycord/pull/2584))" + +msgid "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" +msgstr "Fixed paginator not responding when using `Paginator.edit()` with default parameters. ([#2594](https://github.com/Pycord-Development/pycord/pull/2594))" + +msgid "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" +msgstr "Fixed the `is_owner()` `user` type hint: `User` -> `User | Member`. ([#2593](https://github.com/Pycord-Development/pycord/pull/2593))" + +msgid "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" +msgstr "Fixed `Guild.create_test_entitlement()` and `User.create_test_entitlement()` using the guild/user ID instead of the application ID. ([#2595](https://github.com/Pycord-Development/pycord/pull/2595))" + +msgid "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" +msgstr "Fixed `BucketType.category` cooldown commands not functioning correctly in private channels. ([#2603](https://github.com/Pycord-Development/pycord/pull/2603))" + +msgid "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" +msgstr "Fixed `ctx` parameter of a `SlashCommand` not being `Union` type. ([#2611](https://github.com/Pycord-Development/pycord/pull/2611))" + +msgid "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" +msgstr "Fixed `TypeError` when passing `skus` parameter in `Client.entitlements()`. ([#2627](https://github.com/Pycord-Development/pycord/issues/2627))" + +msgid "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" +msgstr "Fixed `AttributeError` when sending polls with `PartialWebook`. ([#2624](https://github.com/Pycord-Development/pycord/pull/2624))" + +msgid "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" +msgstr "Fixed editing `ForumChannel` flags not working. ([#2641](https://github.com/Pycord-Development/pycord/pull/2641))" + +msgid "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" +msgstr "Fixed `AttributeError` when accessing `Member.guild_permissions` for user installed apps. ([#2650](https://github.com/Pycord-Development/pycord/pull/2650))" + +msgid "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" +msgstr "Fixed type annotations of cached properties. ([#2635](https://github.com/Pycord-Development/pycord/issues/2635))" + +msgid "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Fixed malformed properties in `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" +msgstr "Fixed an error when responding non-ephemerally with a `Paginator` to an ephemerally deferred interaction. ([#2661](https://github.com/Pycord-Development/pycord/pull/2661))" + +msgid "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" +msgstr "Fixed attachment metadata being set incorrectly in interaction responses causing the metadata to be ignored by Discord. ([#2679](https://github.com/Pycord-Development/pycord/pull/2679))" + +msgid "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." +msgstr "Fixed unexpected backoff behavior in the handling of task failures ([#2700](https://github.com/Pycord-Development/pycord/pull/2700))." + +msgid "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" +msgstr "Fixed `BridgeCommand` duplicate in default help command. ([#2656](https://github.com/Pycord-Development/pycord/pull/2656))" + +msgid "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "Fixed `AttributeError` when trying to consume a consumable entitlement. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" +msgstr "Fixed `Subscription.renewal_sku_ids` not accepting `None` from the received payload. ([#2709](https://github.com/Pycord-Development/pycord/pull/2709))" msgid "Changed" msgstr "Changed" @@ -35,14 +149,65 @@ 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 "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" +msgstr "⚠️ **Removed support for Python 3.8.** ([#2521](https://github.com/Pycord-Development/pycord/pull/2521))" -msgid "Added" -msgstr "Added" +msgid "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "`Emoji` has been renamed to `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" -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 "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" +msgstr "Replaced audioop (deprecated module) implementation of `PCMVolumeTransformer.read` method with a pure Python equivalent. ([#2176](https://github.com/Pycord-Development/pycord/pull/2176))" + +msgid "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" +msgstr "Updated `Guild.filesize_limit` to 10 MB instead of 25 MB following Discord's API changes. ([#2671](https://github.com/Pycord-Development/pycord/pull/2671))" + +msgid "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" +msgstr "`Entitlement.ends_at` can now be `None`. ([#2564](https://github.com/Pycord-Development/pycord/pull/2564))" + +msgid "Deprecated" +msgstr "Deprecated" + +msgid "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" +msgstr "Deprecated `AppInfo.summary` in favor of `AppInfo.description`. ([#2520](https://github.com/Pycord-Development/pycord/pull/2520))" + +msgid "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" +msgstr "Deprecated `Emoji` in favor of `GuildEmoji`. ([#2501](https://github.com/Pycord-Development/pycord/pull/2501))" + +msgid "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" +msgstr "Deprecated `Interaction.cached_channel` in favor of `Interaction.channel`. ([#2658](https://github.com/Pycord-Development/pycord/pull/2658))" + +msgid "[2.6.1] - 2024-09-15" +msgstr "[2.6.1] - 2024-09-15" + +msgid "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" +msgstr "Fixed premature garbage collection of tasks. ([#2510](https://github.com/Pycord-Development/pycord/pull/2510))" + +msgid "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" +msgstr "Fixed `EntitlementIterator` type hints and behavior with `limit > 100`. ([#2555](https://github.com/Pycord-Development/pycord/pull/2555))" + +msgid "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `stacklevel` parameter in `warn_deprecated` function call inside `@utils.deprecated`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type hint in `ConnectionState._polls` to reflect actual behavior, changing it from `Guild` to `Poll`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed missing `__slots__` attributes in `RawReactionClearEmojiEvent` and `RawMessagePollVoteEvent`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed the type of `ForumChannel.default_sort_order`, changing it from `int` to `SortOrder`. ([#2500](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" +msgstr "Fixed `PartialMessage` causing errors when created from `PartialMessageable`. ([#2568](https://github.com/Pycord-Development/pycord/pull/2500))" + +msgid "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" +msgstr "Fixed the `guild` attribute of `Member`s received from a `UserCommand` being `None`. ([#2573](https://github.com/Pycord-Development/pycord/pull/2573))" + +msgid "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" +msgstr "Fixed `Webhook.send`, which did not include attachment data. ([#2513](https://github.com/Pycord-Development/pycord/pull/2513))" + +msgid "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" +msgstr "Fixed inverted type hints in `CheckAnyFailure`. ([#2502](https://github.com/Pycord-Development/pycord/pull/2502))" msgid "[2.6.0] - 2024-07-09" msgstr "[2.6.0] - 2024-07-09" @@ -92,9 +257,6 @@ msgstr "Added `RoleFlags`. ([#2487](https://github.com/Pycord-Development/pycord 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))" @@ -119,8 +281,8 @@ msgstr "Fixed `ScheduledEvent.subscribers` behavior with `limit=None`. ([#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 option type hints being ignored when using `parameter_name`. ([#2417](https://github.com/Pycord-Development/pycord/pull/2417))" +msgstr "Fixed option type hints 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))" @@ -152,8 +314,8 @@ msgstr "Further fixed logic when fetching audit logs. ([#2492](https://github.co 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 "HTTP requests that fail with a 503 status are now retried. ([#2395](https://github.com/Pycord-Development/pycord/pull/2395))" +msgstr "HTTP requests that fail with a 503 status are now retried. ([#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))" @@ -401,8 +563,8 @@ msgstr "Fixed `HTTPException` when trying to create a forum thread with files. ( 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 `AttributeError` when accessing a `Select` object's values when it has not been interacted with. ([#2104](https://github.com/Pycord-Development/pycord/pull/2104))" +msgstr "Fixed `AttributeError` when accessing a `Select` object's values when it has not 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))" @@ -413,8 +575,8 @@ msgstr "Fixed `Guild._member_count` sometimes not being set. ([#2145](https://gi 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 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))" @@ -446,8 +608,8 @@ msgstr "Fixed tasks looping infinitely when `tzinfo` is neither `None` nor UTC. 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 `Option` not working on bridge commands because `ext.commands.Command` does not recognize them. ([#2256](https://github.com/Pycord-Development/pycord/pull/2256))" +msgstr "Fixed `Option` not working on bridge commands because `ext.commands.Command` does not 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))" @@ -554,8 +716,8 @@ msgstr "Advanced version info is now stored as a dict in `version_info.advanced` 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 bugs in `Page.update_files` where file objects stored in memory were causing an `AttributeError`, and `io.BytesIO` files did not 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 did not 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))" @@ -686,9 +848,6 @@ msgstr "New `raw_mentions`, `raw_role_mentions` and `raw_channel_mentions` funct 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))" @@ -959,11 +1118,11 @@ msgstr "Fix bridge commands to ignore the ephemeral kwarg. ([#1453](https://gith 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 the error when Discord does not send the `app_permissions` data in `Interaction`. ([#1467](https://github.com/Pycord-Development/pycord/pull/1467))" +msgstr "Fix the error when Discord does not 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 "Fix AttributeError when voice client `play()` function is not completed yet. ([#1360](https://github.com/Pycord-Development/pycord/pull/1360))" +msgstr "Fix AttributeError when voice client `play()` function is not 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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/cogs.po b/docs/locales/zh_CN/LC_MESSAGES/cogs.po index 713392b91f..686217ce9b 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/cogs.po +++ b/docs/locales/zh_CN/LC_MESSAGES/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/discord.po b/docs/locales/zh_CN/LC_MESSAGES/discord.po index 242f4b20a4..21fb757068 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/discord.po +++ b/docs/locales/zh_CN/LC_MESSAGES/discord.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/ext/bridge/api.po b/docs/locales/zh_CN/LC_MESSAGES/ext/bridge/api.po index 2e66ef4160..58248a8101 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/ext/bridge/api.po +++ b/docs/locales/zh_CN/LC_MESSAGES/ext/bridge/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -353,14 +353,23 @@ 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 "Options" +msgstr "Options" -msgid "Option" -msgstr "Option" +msgid "Shortcut Decorators" +msgstr "Shortcut Decorators" -msgid "BridgeOption" -msgstr "BridgeOption" +msgid "A decorator that can be used instead of typehinting :class:`.BridgeOption`." +msgstr "A decorator that can be used instead of typehinting :class:`.BridgeOption`." + +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 ":class:`str`" +msgstr ":class:`str`" + +msgid "Objects" +msgstr "Objects" 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." diff --git a/docs/locales/zh_CN/LC_MESSAGES/ext/bridge/index.po b/docs/locales/zh_CN/LC_MESSAGES/ext/bridge/index.po index 5d04d47e3a..e6fc497edb 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/ext/bridge/index.po +++ b/docs/locales/zh_CN/LC_MESSAGES/ext/bridge/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/ext/commands/api.po b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/api.po index eaacd057b9..dac662c76d 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/ext/commands/api.po +++ b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/api.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -269,6 +269,12 @@ msgstr "The view is not persistent. A persistent view has no timeout and all msgid "The allowed mention configuration." msgstr "The allowed mention configuration." +msgid "The :class:`~discord.AppEmoji` that the connected client has." +msgstr "The :class:`~discord.AppEmoji` that the connected client has." + +msgid "This is only available if `cache_app_emojis` is ``True``." +msgstr "This is only available if `cache_app_emojis` is ``True``." + 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`." @@ -374,6 +380,27 @@ msgstr "The channel that was created." msgid ":class:`.DMChannel`" msgstr ":class:`.DMChannel`" +msgid "Creates a custom :class:`AppEmoji` for the application." +msgstr "Creates a custom :class:`AppEmoji` for the application." + +msgid "There is currently a limit of 2000 emojis per application." +msgstr "There is currently a limit of 2000 emojis per application." + +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 "An error occurred creating an emoji." +msgstr "An error occurred creating an emoji." + +msgid "The created emoji." +msgstr "The created emoji." + +msgid ":class:`AppEmoji`" +msgstr ":class:`AppEmoji`" + 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`." @@ -422,6 +449,15 @@ 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 "Deletes the custom :class:`AppEmoji` from the application." +msgstr "Deletes the custom :class:`AppEmoji` from the application." + +msgid "The emoji you are deleting." +msgstr "The emoji you are deleting." + +msgid "An error occurred deleting the emoji." +msgstr "An error occurred deleting the emoji." + msgid "Revokes an :class:`.Invite`, URL, or ID to an invite." msgstr "Revokes an :class:`.Invite`, URL, or ID to an invite." @@ -443,6 +479,9 @@ msgstr "Revoking the invite failed." msgid "The emojis that the connected client has." msgstr "The emojis that the connected client has." +msgid "This only includes the application's emojis if `cache_app_emojis` is ``True``." +msgstr "This only includes the application's emojis if `cache_app_emojis` is ``True``." + msgid "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." msgstr "Returns an :class:`.AsyncIterator` that enables fetching the application's entitlements." @@ -536,6 +575,33 @@ 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 custom :class:`AppEmoji` from the application." +msgstr "Retrieves a custom :class:`AppEmoji` from the application." + +msgid "The emoji's ID." +msgstr "The emoji's ID." + +msgid "The retrieved emoji." +msgstr "The retrieved 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 "Retrieves all custom :class:`AppEmoji`\\s from the application." +msgstr "Retrieves all custom :class:`AppEmoji`\\s from the application." + +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:`AppEmoji`]" +msgstr "List[:class:`AppEmoji`]" + msgid "Retrieves a :class:`.Guild` from an ID." msgstr "Retrieves a :class:`.Guild` from an ID." @@ -581,6 +647,9 @@ msgstr "Retrieves guilds before this date or object. If a datetime is provided, 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 "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." +msgstr "Whether to include member count information in guilds. This fills the :attr:`.Guild.approximate_member_count` and :attr:`.Guild.approximate_presence_count` fields. Defaults to ``True``." + msgid ":class:`.Guild` -- The guild with the guild data parsed." msgstr ":class:`.Guild` -- The guild with the guild data parsed." @@ -776,6 +845,9 @@ msgstr "A generator that retrieves every :class:`.abc.GuildChannel` the client c msgid "This is equivalent to: ::" msgstr "This is equivalent to: ::" +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.abc.GuildChannel\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." msgstr "Just because you receive a :class:`.abc.GuildChannel` does not mean that you can communicate in said channel. :meth:`.abc.GuildChannel.permissions_for` should be used for that." @@ -788,6 +860,9 @@ msgstr "Returns a generator with every :class:`.Member` the client can see." msgid ":class:`.Member` -- A member the client can see." msgstr ":class:`.Member` -- A member the client can see." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.member.Member\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "Get an :class:`.ApplicationCommand` from the internal list of commands." msgstr "Get an :class:`.ApplicationCommand` from the internal list of commands." @@ -920,8 +995,8 @@ 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 "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" +msgstr "Optional[:class:`.GuildEmoji` | :class:`.AppEmoji`]" msgid "Returns a guild with the given ID." msgstr "Returns a guild with the given ID." @@ -1019,6 +1094,9 @@ msgstr "Optional[:class:`.GuildSticker`]" msgid "Returns a user with the given ID." msgstr "Returns a user with the given ID." +msgid "The :class:`~discord.GuildEmoji` that the connected client has." +msgstr "The :class:`~discord.GuildEmoji` that the connected client has." + msgid "The guilds that the connected client is a member of." msgstr "The guilds that the connected client is a member of." @@ -1064,8 +1142,8 @@ 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 "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." +msgstr "Measures latency between a HEARTBEAT and a HEARTBEAT_ACK in seconds. If no websocket is present, this returns ``nan``, and if no heartbeat has been received yet, this returns ``float('inf')``." msgid "This could be referred to as the Discord WebSocket protocol latency." msgstr "This could be referred to as the Discord WebSocket protocol latency." @@ -1505,8 +1583,11 @@ msgstr "An iterator that recursively walks through all application commands and 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.commands.core.ApplicationCommand\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + +msgid "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr "An iterator that recursively walks through all commands and subcommands. :rtype: :sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~typing.TypeVar\\`\\\\ \\\\\\(\\`\\`CogT\\`\\`\\, bound\\= Cog\\)\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\, \\:py\\:data\\:\\`\\~typing.Any\\`\\]\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" msgid "Duplicates due to aliases are no longer returned" msgstr "Duplicates due to aliases are no longer returned" @@ -1928,6 +2009,9 @@ msgstr "An iterator that recursively walks through this cog's commands and subco msgid "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." msgstr "Union[:class:`.Command`, :class:`.Group`] -- A command or group from the cog." +msgid ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~typing.Generator\\`\\\\ \\\\\\[\\:py\\:class\\:\\`\\~discord.ext.commands.core.Command\\`\\, \\:py\\:obj\\:\\`None\\`\\, \\:py\\:obj\\:\\`None\\`\\]`" + msgid "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." msgstr "A :class:`list` of commands that are defined inside this cog. .. note:: This does not include subcommands." @@ -2108,6 +2192,9 @@ 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 tuple of command types to exclude from the filter." +msgstr "A tuple of command types to exclude from the filter." + msgid "A list of commands that passed the filter." msgstr "A list of commands that passed the filter." @@ -3371,8 +3458,8 @@ 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 "Converts to a :class:`~discord.GuildEmoji`." +msgstr "Converts to a :class:`~discord.GuildEmoji`." 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." @@ -3383,8 +3470,8 @@ 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 ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" +msgstr ":sphinx_autodoc_typehints_type:`\\:py\\:class\\:\\`\\~discord.emoji.GuildEmoji\\``" msgid "Converts to a :class:`~discord.PartialEmoji`." msgstr "Converts to a :class:`~discord.PartialEmoji`." diff --git a/docs/locales/zh_CN/LC_MESSAGES/ext/commands/cogs.po b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/cogs.po index 324861b347..6d40ecd553 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/ext/commands/cogs.po +++ b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/cogs.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/ext/commands/commands.po b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/commands.po index 85b41501d1..f9ad3f6be6 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/ext/commands/commands.po +++ b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/commands.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -266,8 +266,8 @@ msgstr ":class:`Game`" msgid ":class:`Colour`" msgstr ":class:`Colour`" -msgid ":class:`Emoji`" -msgstr ":class:`Emoji`" +msgid ":class:`GuildEmoji`" +msgstr ":class:`GuildEmoji`" msgid ":class:`PartialEmoji`" msgstr ":class:`PartialEmoji`" diff --git a/docs/locales/zh_CN/LC_MESSAGES/ext/commands/extensions.po b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/extensions.po index 4f3fd6efcd..30e6dcfc30 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/ext/commands/extensions.po +++ b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/extensions.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/ext/commands/index.po b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/index.po index d05921587d..bd418e3a84 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/ext/commands/index.po +++ b/docs/locales/zh_CN/LC_MESSAGES/ext/commands/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/ext/pages/index.po b/docs/locales/zh_CN/LC_MESSAGES/ext/pages/index.po index 19c1622bfa..fe0e2cb1e6 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/ext/pages/index.po +++ b/docs/locales/zh_CN/LC_MESSAGES/ext/pages/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -536,14 +536,44 @@ 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 "Gets or sets the row position of this item within its parent view." +msgstr "Gets or sets the row position of this item within its parent view." + +msgid "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." +msgstr "The row position determines the vertical placement of the item in the UI. The value must be an integer between 0 and 4 (inclusive), or ``None`` to indicate that no specific row is set." + +msgid "The row position of the item, or ``None`` if not explicitly set." +msgstr "The row position of the item, or ``None`` if not explicitly set." + +msgid "If the row value is not ``None`` and is outside the range [0, 4]." +msgstr "If the row value is not ``None`` and is outside the range [0, 4]." + 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 "Gets the parent view associated with this item." +msgstr "Gets the parent view associated with this item." + +msgid "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." +msgstr "The view refers to the container that holds this item. This is typically set automatically when the item is added to a view." + +msgid "The parent view of this item, or ``None`` if the item is not attached to any view." +msgstr "The parent view of this item, or ``None`` if the item is not attached to any view." + +msgid "Optional[:class:`View`]" +msgstr "Optional[:class:`View`]" + +msgid "Gets the width of the item in the UI layout." +msgstr "Gets the width of the item in the UI layout." + +msgid "The width determines how much horizontal space this item occupies within its row." +msgstr "The width determines how much horizontal space this item occupies within its row." + +msgid "The width of the item. Defaults to 1." +msgstr "The width of the item. Defaults to 1." msgid "PaginatorMenu" msgstr "PaginatorMenu" @@ -572,8 +602,8 @@ msgstr "The value of the option. This is not displayed to users. If not given, d 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 "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`, :class:`GuildEmoji`, or :class:`AppEmoji`." +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`, :class:`GuildEmoji`, or :class:`AppEmoji`." msgid "Whether this option is selected by default." msgstr "Whether this option is selected by default." diff --git a/docs/locales/zh_CN/LC_MESSAGES/ext/tasks/index.po b/docs/locales/zh_CN/LC_MESSAGES/ext/tasks/index.po index 6236de13f1..78e1349e13 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/ext/tasks/index.po +++ b/docs/locales/zh_CN/LC_MESSAGES/ext/tasks/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/faq.po b/docs/locales/zh_CN/LC_MESSAGES/faq.po index 91d04f72fb..6603291330 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/faq.po +++ b/docs/locales/zh_CN/LC_MESSAGES/faq.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -161,8 +161,8 @@ 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 "For custom emoji, you should pass an instance of :class:`GuildEmoji` or :class:`AppEmoji`. 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:`GuildEmoji` or :class:`AppEmoji`. 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>``." diff --git a/docs/locales/zh_CN/LC_MESSAGES/index.po b/docs/locales/zh_CN/LC_MESSAGES/index.po index f6843e1e93..ea4ee21a46 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/index.po +++ b/docs/locales/zh_CN/LC_MESSAGES/index.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/installing.po b/docs/locales/zh_CN/LC_MESSAGES/installing.po index f2d0f0d14d..629b78f130 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/installing.po +++ b/docs/locales/zh_CN/LC_MESSAGES/installing.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -20,8 +20,8 @@ msgstr "This is the documentation for Pycord, a library for Python to aid in cre 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 "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." +msgstr "Pycord works with Python 3.9 or higher. Support for earlier versions of Python is not provided. Python 2.7 or lower is not supported. Python 3.8 or lower is not supported." msgid "Installing" msgstr "Installing" diff --git a/docs/locales/zh_CN/LC_MESSAGES/intents.po b/docs/locales/zh_CN/LC_MESSAGES/intents.po index 7201bbd103..dd9504fc44 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/intents.po +++ b/docs/locales/zh_CN/LC_MESSAGES/intents.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/logging.po b/docs/locales/zh_CN/LC_MESSAGES/logging.po index 8130d84e9f..01fa8196b6 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/logging.po +++ b/docs/locales/zh_CN/LC_MESSAGES/logging.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/migrating_to_v1.po b/docs/locales/zh_CN/LC_MESSAGES/migrating_to_v1.po index ea81171aff..09145ca293 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/migrating_to_v1.po +++ b/docs/locales/zh_CN/LC_MESSAGES/migrating_to_v1.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/migrating_to_v2.po b/docs/locales/zh_CN/LC_MESSAGES/migrating_to_v2.po index 4220fe4212..b4b989960c 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/migrating_to_v2.po +++ b/docs/locales/zh_CN/LC_MESSAGES/migrating_to_v2.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/old_changelog.po b/docs/locales/zh_CN/LC_MESSAGES/old_changelog.po index a1f5831ab1..9ac0585abf 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/old_changelog.po +++ b/docs/locales/zh_CN/LC_MESSAGES/old_changelog.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" @@ -1208,8 +1208,8 @@ msgstr "|commands| Extensions that fail internally due to ImportError will no lo 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| Allow converters from custom extension packages. (:dpy-issue:`2369`, 2374)" +msgstr "|commands| Allow converters from custom extension packages. (:dpy-issue:`2369`, 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`)" diff --git a/docs/locales/zh_CN/LC_MESSAGES/quickstart.po b/docs/locales/zh_CN/LC_MESSAGES/quickstart.po index 018b5372f2..4ec6ee532e 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/quickstart.po +++ b/docs/locales/zh_CN/LC_MESSAGES/quickstart.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/docs/locales/zh_CN/LC_MESSAGES/version_guarantees.po b/docs/locales/zh_CN/LC_MESSAGES/version_guarantees.po index fc3d82a0ee..f206f9cc6a 100644 --- a/docs/locales/zh_CN/LC_MESSAGES/version_guarantees.po +++ b/docs/locales/zh_CN/LC_MESSAGES/version_guarantees.po @@ -1,15 +1,15 @@ msgid "" msgstr "" -"Project-Id-Version: Pycord Documentation\\n" -"POT-Creation-Date: 2024-05-23 07:30-0000\\n" -"PO-Revision-Date: 2024-05-23 07:30-0000\\n" -"Last-Translator: \\n" -"Language-Team: none\\n" -"MIME-Version: 1.0\\n" -"Content-Type: text/plain; charset=UTF-8\\n" -"Content-Transfer-Encoding: 8bit\\n" -"Plural-Forms: nplurals=1; plural=0;\\n" -"X-Generator: Crowdin\\n" +"Project-Id-Version: Pycord Documentation\n" +"POT-Creation-Date: 2025-06-24 08:32-0000\n" +"PO-Revision-Date: 2025-06-24 08:32-0000\n" +"Last-Translator: \n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-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" diff --git a/examples/modal_dialogs.py b/examples/modal_dialogs.py index 1fd65c5c0c..4d10ddab0c 100644 --- a/examples/modal_dialogs.py +++ b/examples/modal_dialogs.py @@ -22,6 +22,19 @@ def __init__(self, *args, **kwargs) -> None: label="Longer Input", value="Longer Value\nSuper Long Value", style=discord.InputTextStyle.long, + description="You can also describe the purpose of this input.", + ), + discord.ui.TextDisplay("# Personal Questions"), + discord.ui.Select( + label="What's your favorite color?", + placeholder="Select a color", + options=[ + discord.SelectOption(label="Red", emoji="🟥"), + discord.SelectOption(label="Green", emoji="🟩"), + discord.SelectOption(label="Blue", emoji="🟦"), + ], + description="If it is not listed, skip this question.", + required=False, ), *args, **kwargs, diff --git a/examples/soundboard.py b/examples/soundboard.py new file mode 100644 index 0000000000..d19faa666d --- /dev/null +++ b/examples/soundboard.py @@ -0,0 +1,170 @@ +import asyncio +import logging +import os + +from dotenv import load_dotenv + +import discord + +logging.basicConfig(level=logging.INFO) + +load_dotenv() +TOKEN = os.getenv("TOKEN") + +bot = discord.Bot() + + +class SoundboardCog(discord.Cog): + """A cog demonstrating Discord's soundboard features.""" + + def __init__(self, bot: discord.Bot): + self.bot = bot + + @discord.Cog.listener() + async def on_voice_channel_effect_send( + self, event: discord.VoiceChannelEffectSendEvent + ): + """Called when someone uses a soundboard effect in a voice channel.""" + if event.sound: + print(f"{event.user} played sound '{event.sound.name}' in {event.channel}") + elif event.emoji: + print(f"{event.user} sent emoji effect {event.emoji} in {event.channel}") + + @discord.slash_command() + async def list_sounds(self, ctx: discord.ApplicationContext): + """Lists all the available sounds in the guild.""" + await ctx.defer() + + # Fetch both default and guild-specific sounds + default_sounds = await self.bot.fetch_default_sounds() + guild_sounds = await ctx.guild.fetch_sounds() + + embed = discord.Embed(title="Available Sounds") + + # List default sounds + if default_sounds: + default_list = "\n".join( + f"{s.emoji} {s.name} (Volume: {s.volume})" for s in default_sounds + ) + embed.add_field( + name="Default Sounds", value=default_list or "None", inline=False + ) + + # List guild sounds + if guild_sounds: + guild_list = "\n".join( + f"{s.emoji} {s.name} (Volume: {s.volume})" for s in guild_sounds + ) + embed.add_field( + name="Guild Sounds", value=guild_list or "None", inline=False + ) + + await ctx.respond(embed=embed) + + @discord.slash_command() + @discord.default_permissions(manage_guild=True) + async def add_sound( + self, + ctx: discord.ApplicationContext, + name: str, + emoji: str, + attachment: discord.Attachment, + ): + """Adds a new sound to the guild's soundboard. Currently only supports mp3 files.""" + await ctx.defer() + + if not attachment.content_type.startswith("audio/"): + return await ctx.respond("Please upload an audio file!") + + try: + sound_bytes = await attachment.read() + emoji = discord.PartialEmoji.from_str(emoji) + + new_sound = await ctx.guild.create_sound( + name=name, sound=sound_bytes, volume=1.0, emoji=emoji + ) + + await ctx.respons(f"Added new sound: {new_sound.emoji} {new_sound.name}") + except Exception as e: + await ctx.respond(f"Failed to add sound: {str(e)}") + + @discord.slash_command() + @discord.default_permissions(manage_guild=True) + async def edit_sound( + self, + ctx: discord.ApplicationContext, + sound_name: str, + new_name: str | None = None, + new_emoji: str | None = None, + new_volume: float | None = None, + ): + """Edits an existing sound in the guild's soundboard.""" + await ctx.defer() + + # Find the sound by name + sounds = await ctx.guild.fetch_sounds() + sound = discord.utils.get(sounds, name=sound_name) + + if not sound: + return await ctx.respond(f"Sound '{sound_name}' not found!") + + try: + await sound.edit( + name=new_name or sound.name, + emoji=( + discord.PartialEmoji.from_str(new_emoji) + if new_emoji + else sound.emoji + ), + volume=new_volume or sound.volume, + ) + await ctx.respond(f"Updated sound: {sound.emoji} {sound.name}") + except Exception as e: + await ctx.respond(f"Failed to edit sound: {str(e)}") + + @discord.slash_command() + async def play_sound( + self, + ctx: discord.ApplicationContext, + sound_name: str, + channel: discord.VoiceChannel | None = None, + ): + """Plays a sound in a voice channel.""" + await ctx.defer() + + # Use author's voice channel if none specified + if not channel and ctx.author.voice: + channel = ctx.author.voice.channel + if not channel: + return await ctx.respond("Please specify a voice channel or join one!") + + try: + # Find the sound + sounds = await ctx.guild.fetch_sounds() + sound = discord.utils.get(sounds, name=sound_name) + if not sound: + # Check default sounds if not found in guild sounds + defaults = await self.bot.fetch_default_sounds() + sound = discord.utils.get(defaults, name=sound_name) + + if not sound: + return await ctx.respond(f"Sound '{sound_name}' not found!") + + # Connect to voice channel if not already connected + voice_client = await channel.connect() + + # Play the sound + await channel.send_soundboard_sound(sound) + await ctx.respond(f"Playing sound: {sound.emoji} {sound.name}") + + await asyncio.sleep(6) + if voice_client.is_connected(): + await voice_client.disconnect() + + except Exception as e: + await ctx.respond(f"Failed to play sound: {str(e)}") + + +bot.add_cog(SoundboardCog(bot)) + +bot.run(TOKEN) diff --git a/examples/views/channel_select.py b/examples/views/channel_select.py index d00416f915..bc24d1109e 100644 --- a/examples/views/channel_select.py +++ b/examples/views/channel_select.py @@ -11,11 +11,14 @@ class DropdownView(discord.ui.View): placeholder="Select channels...", min_values=1, max_values=3 ) # Users can select a maximum of 3 channels in the dropdown async def channel_select_dropdown( - self, select: discord.ui.Select, interaction: discord.Interaction + self, select: discord.ui.ChannelSelect, interaction: discord.Interaction ) -> None: + # update the select default values to the chosen values + select.default_values = select.values # this is a list of GuildChannels await interaction.response.send_message( - f"You selected the following channels:" - + f", ".join(f"{channel.mention}" for channel in select.values) + "You selected the following channels:" + + ", ".join(f"{channel.mention}" for channel in select.values), + view=self, ) diff --git a/examples/views/new_components.py b/examples/views/new_components.py new file mode 100644 index 0000000000..53a05f7435 --- /dev/null +++ b/examples/views/new_components.py @@ -0,0 +1,81 @@ +from io import BytesIO + +from discord import ( + ApplicationContext, + Bot, + ButtonStyle, + Color, + File, + Interaction, + SeparatorSpacingSize, + User, +) +from discord.ui import ( + Button, + Container, + MediaGallery, + Section, + Select, + Separator, + TextDisplay, + Thumbnail, + View, + button, +) + + +class MyView(View): + def __init__(self, user: User): + super().__init__(timeout=30) + text1 = TextDisplay("### This is a sample `TextDisplay` in a `Section`.") + text2 = TextDisplay( + "This section is contained in a `Container`.\nTo the right, you can see a `Thumbnail`." + ) + thumbnail = Thumbnail(user.display_avatar.url) + + section = Section(text1, text2, accessory=thumbnail) + section.add_text("-# Small text") + + container = Container( + section, + TextDisplay("Another `TextDisplay` separate from the `Section`."), + color=Color.blue(), + ) + container.add_separator(divider=True, spacing=SeparatorSpacingSize.large) + container.add_item(Separator()) + container.add_file("attachment://sample.png") + container.add_text("Above is two `Separator`s followed by a `File`.") + + gallery = MediaGallery() + gallery.add_item(user.default_avatar.url) + gallery.add_item(user.avatar.url) + + self.add_item(container) + self.add_item(gallery) + self.add_item( + TextDisplay("Above is a `MediaGallery` containing two `MediaGalleryItem`s.") + ) + + @button(label="Delete Message", style=ButtonStyle.red, id=200) + async def delete_button(self, button: Button, interaction: Interaction): + await interaction.response.defer(invisible=True) + await interaction.message.delete() + + async def on_timeout(self): + self.get_item(200).disabled = True + await self.parent.edit(view=self) + + +bot = Bot() + + +@bot.command() +async def show_view(ctx: ApplicationContext): + """Display a sample View showcasing various new components.""" + + f = await ctx.author.display_avatar.read() + file = File(BytesIO(f), filename="sample.png") + await ctx.respond(view=MyView(ctx.author), files=[file]) + + +bot.run("TOKEN") diff --git a/examples/views/role_select.py b/examples/views/role_select.py index 89540b9663..e8da45f414 100644 --- a/examples/views/role_select.py +++ b/examples/views/role_select.py @@ -11,11 +11,14 @@ class DropdownView(discord.ui.View): placeholder="Select roles...", min_values=1, max_values=3 ) # Users can select a maximum of 3 roles in the dropdown async def role_select_dropdown( - self, select: discord.ui.Select, interaction: discord.Interaction + self, select: discord.ui.RoleSelect, interaction: discord.Interaction ) -> None: + # update the select default values to set them to the select ones + select.default_values = select.values # this is a list of Role await interaction.response.send_message( - f"You selected the following roles:" - + f", ".join(f"{role.mention}" for role in select.values) + "You selected the following roles:" + + ", ".join(f"{role.mention}" for role in select.values), + view=self, ) diff --git a/pyproject.toml b/pyproject.toml index 97095f7fc0..7f2930ee65 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [build-system] requires = [ - "setuptools>=62.6,<=75.6.0", - "setuptools-scm>=6.2,<=8.1.0", + "setuptools>=62.6,<=80.9.0", + "setuptools-scm>=6.2,<=9.2.0", ] build-backend = "setuptools.build_meta" @@ -13,10 +13,10 @@ authors = [ description = "A Python wrapper for the Discord API" readme = {content-type = "text/x-rst", file = "README.rst"} requires-python = ">=3.9" -license = {text = "MIT"} +license = "MIT" +license-files = ["LICENSE"] classifiers = [ "Development Status :: 5 - Production/Stable", - "License :: OSI Approved :: MIT License", "Intended Audience :: Developers", "Natural Language :: English", "Operating System :: OS Independent", @@ -24,6 +24,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Internet", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", @@ -67,7 +68,7 @@ voice = {file = "requirements/voice.txt"} [tool.setuptools_scm] [tool.black] -target-version = ['py39', 'py310', 'py311', 'py312'] +target-version = ['py39', 'py310', 'py311', 'py312', 'py313'] [tool.isort] profile = "black" diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000000..90417c3051 --- /dev/null +++ b/renovate.json @@ -0,0 +1,12 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "local>Pycord-Development/renovate-config", + ":semanticPrefixFixDepsChoreOthers", + ":dependencyDashboard" + ], + "assigneesFromCodeOwners": true, + "pip_requirements": { + "managerFilePatterns": ["requirements/*.txt"] + } +} diff --git a/requirements/_.txt b/requirements/_.txt index 5305a96bd1..e8be976f05 100644 --- a/requirements/_.txt +++ b/requirements/_.txt @@ -1,2 +1,2 @@ aiohttp>=3.6.0,<4.0 -typing_extensions>=4,<5; python_version < "3.11" +typing_extensions>=4.5.0,<5 diff --git a/requirements/dev.txt b/requirements/dev.txt index 83326ccb3e..8680b964c4 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -1,11 +1,11 @@ -r _.txt -pylint~=3.3.2 -pytest~=8.3.4 -pytest-asyncio~=0.23.8 +pylint~=3.3.8 +pytest~=8.4.1 +pytest-asyncio~=1.1.0 # pytest-order~=1.0.1 -mypy~=1.13.0 -coverage~=7.6 -pre-commit==4.0.1 -codespell==2.3.0 -bandit==1.8.0 -flake8==7.1.1 +mypy~=1.18.1 +coverage~=7.10 +pre-commit==4.3.0 +codespell==2.4.1 +bandit==1.8.6 +flake8==7.3.0 diff --git a/requirements/docs.txt b/requirements/docs.txt index d1adea5fc0..cbbacadfd4 100644 --- a/requirements/docs.txt +++ b/requirements/docs.txt @@ -1,11 +1,11 @@ sphinx==8.0.2 sphinxcontrib_trio==1.1.2 sphinxcontrib-websupport==2.0.0 -myst-parser[linkify]==4.0.0 -sphinxext-opengraph==0.9.1 +myst-parser[linkify]==4.0.1 +sphinxext-opengraph==0.12.0 sphinx-copybutton==0.5.2 furo==2024.8.6 sphinx-autodoc-typehints==2.2.3 -sphinx-intl==2.3.1 -typing_extensions==4.12.2 -levenshtein==0.26.1 +sphinx-intl==2.3.2 +typing_extensions==4.15.0 +levenshtein==0.27.1 diff --git a/requirements/speed.txt b/requirements/speed.txt index c4f3a6edf8..62fa81b491 100644 --- a/requirements/speed.txt +++ b/requirements/speed.txt @@ -1,2 +1,2 @@ -msgspec~=0.18.6 +msgspec~=0.19.0 aiohttp[speedups] diff --git a/scripts/count_sourcelines.py b/scripts/count_sourcelines.py new file mode 100644 index 0000000000..786e546015 --- /dev/null +++ b/scripts/count_sourcelines.py @@ -0,0 +1,23 @@ +import os + +cur_path = os.getcwd() +ignore_set = {"__init__.py", "count_sourcelines.py", "docs-json-exporter.py"} + +loc_list = [] + +for py_dir, _, py_files in os.walk(cur_path): + for py_file in py_files: + if py_file.endswith(".py") and py_file not in ignore_set: + total_path = os.path.join(py_dir, py_file) + try: + with open(total_path, encoding="utf-8") as file: + loc_list.append( + (len(file.read().splitlines()), total_path.split(cur_path)[1]) + ) + except UnicodeDecodeError as e: + print(f"Skipping file {total_path} due to encoding error: {e}") + +for line_number_count, filename in loc_list: + print("%05d lines in %s" % (line_number_count, filename)) + +print("\nTotal: {} lines ({})".format(sum([x[0] for x in loc_list]), cur_path)) diff --git a/scripts/docs_json_exporter.py b/scripts/docs_json_exporter.py new file mode 100644 index 0000000000..31d70fb800 --- /dev/null +++ b/scripts/docs_json_exporter.py @@ -0,0 +1,66 @@ +import json +import os + +from bs4 import BeautifulSoup + + +def log(msg): + print(f"::notice::{msg}") + + +log("Starting docs JSON export...") +folders = [ + "docs/_build/html/api", + "docs/_build/html/ext", +] +result = {} +try: + for folder in folders: + if not os.path.isdir(folder): + log(f"Skipping missing folder: {folder}") + continue + base_html = os.path.normpath("docs/_build/html") + for root, _, files in os.walk(folder): + rel_dir = os.path.relpath(root, base_html).replace("\\", "/") + "/" + if rel_dir not in result: + result[rel_dir] = {} + for html_file in files: + if not html_file.endswith(".html"): + continue + file_path = os.path.join(root, html_file) + with open(file_path, encoding="utf-8") as f: + soup = BeautifulSoup(f, "html.parser") + page_index = {} + for class_dl in soup.find_all("dl", class_="class"): + dt = class_dl.find("dt") + class_name = dt.get("id") if dt else None + if not class_name: + class_name = dt.text.split(":")[-1].strip() if dt else None + members = [] + for member_dl in class_dl.find_all( + "dl", class_=["attribute", "method"] + ): + for member_dt in member_dl.find_all("dt"): + member_id = member_dt.get("id") + member_name = ( + member_id.split(".")[-1] + if member_id + else member_dt.text.split(":")[-1].strip() + ) + if member_name: + members.append(member_name) + page_index[class_name] = members + for func_dl in soup.find_all("dl", class_="function"): + dt = func_dl.find("dt") + func_name = dt.get("id") if dt else None + if not func_name: + func_name = dt.text.split(":")[-1].strip() if dt else None + page_index[func_name] = [] + result[rel_dir][html_file] = page_index + cleaned_result = {k: v for k, v in result.items() if v} + with open("docs.json", "w", encoding="utf-8") as out: + json.dump(cleaned_result, out, indent=2, ensure_ascii=False) + log("Exported docs to docs.json") + log("To upload as artifact: docs.json") +except Exception as e: + print(f"::error::Docs JSON export failed: {e}") diff --git a/tests/test_utils.py b/tests/test_utils.py index d0f94acb93..86ccb3dfb2 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -30,7 +30,6 @@ from discord.utils import ( MISSING, - _cached_property, _parse_ratelimit_header, _unique, async_all, @@ -80,22 +79,6 @@ def test_temporary(): # assert repr(MISSING) == '...' # # -# def test_cached_property() -> None: -# class Test: -# def __init__(self, x: int): -# self.x = x -# -# @_cached_property -# def foo(self) -> int: -# self.x += 1 -# return self.x -# -# t = Test(0) -# assert isinstance(_cached_property.__get__(_cached_property(None), None, None), _cached_property) -# assert t.foo == 1 -# assert t.foo == 1 -# -# # def test_find_get() -> None: # class Obj: # def __init__(self, value: int):