diff --git a/.github/workflows/cleanup-pr-preview.yml b/.github/workflows/cleanup-pr-preview.yml
deleted file mode 100644
index 1a2d42bc1..000000000
--- a/.github/workflows/cleanup-pr-preview.yml
+++ /dev/null
@@ -1,18 +0,0 @@
-on:
- pull_request:
- types:
- - closed
-jobs:
- cleanup:
- runs-on: ubuntu-latest
- permissions:
- contents: write
- steps:
- - uses: actions/checkout@v4
- with:
- ref: gh-pages
- - run: git config user.name "github-actions[bot]"
- - run: git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
- - run: git rm -rf ${{ github.event.number }}
- - run: git commit -m 'Cleaning up gh-pages after ${{ github.event.number }}'
- - uses: ad-m/github-push-action@master
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
deleted file mode 100644
index ca7306898..000000000
--- a/.github/workflows/lint.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-name: Lint
-
-on: [push, pull_request, workflow_dispatch]
-
-env:
- FORCE_COLOR: 1
-
-jobs:
- lint:
- runs-on: ubuntu-latest
-
- steps:
- - uses: actions/checkout@v4
- with:
- persist-credentials: false
- - uses: actions/setup-python@v5
- with:
- python-version: "3.x"
- - uses: tox-dev/action-pre-commit-uv@v1
diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml
deleted file mode 100644
index dbe47d6f2..000000000
--- a/.github/workflows/update.yml
+++ /dev/null
@@ -1,82 +0,0 @@
-on:
- schedule:
- - cron: '17 * * * *'
- push:
- branches:
- - 'main'
- pull_request:
- workflow_dispatch:
-jobs:
- update:
- runs-on: ubuntu-latest
- permissions:
- contents: write
- pull-requests: write
- steps:
- - uses: actions/setup-python@v5
- with:
- python-version: "3.x"
- - uses: astral-sh/setup-uv@v5
- - uses: actions/checkout@v4
- - run: sudo apt-get install -y gettext
- - run: pip install -r requirements.txt
- - run: uv run generate.py # generates index.html and index.json
- - run: mkdir -p build && cp index.* style.css build
- - name: Deploy 🚀
- if: github.event_name != 'pull_request'
- uses: JamesIves/github-pages-deploy-action@v4
- with:
- folder: build
- clean: false
- git-config-name: github-actions[bot]
- git-config-email: 41898282+github-actions[bot]@users.noreply.github.com
- - name: Deploy to subdirectory if pull request 🚀
- # This does not work for PRs from forks
- if: github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork
- uses: JamesIves/github-pages-deploy-action@v4
- with:
- folder: build
- target-folder: ${{ github.ref_name }}
- clean: false
- git-config-name: github-actions[bot]
- git-config-email: 41898282+github-actions[bot]@users.noreply.github.com
- - name: Update PR description if pull request
- # This does not work for PRs from forks
- if: github.event_name == 'pull_request' && !github.event.pull_request.head.repo.fork
- uses: chabroA/action-append-pr-description@v1.2.1
- with:
- auth: ${{ secrets.GITHUB_TOKEN }}
- repo: ${{ github.event.repository.name }}
- owner: ${{ github.repository_owner }}
- pr: ${{ github.event.number }}
- url: "https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/${{ github.ref_name }}/"
- message: "📊 Dashboard preview 📊:"
- - name: Debug index.html if pull request
- if: github.event_name == 'pull_request'
- run: |
- curl -Lo index.html-public https://github.com/python-docs-translations/dashboard/raw/refs/heads/gh-pages/index.html
- diff --color=always -u index.html-public index.html || :
- cat index.html
- - run: uv run generate_metadata.py # generates metadata.html
- - run: cp metadata.html warnings* build
- - name: Deploy metadata view 🚀
- if: github.event_name != 'pull_request'
- uses: JamesIves/github-pages-deploy-action@v4
- with:
- folder: build
- clean: false
- git-config-name: github-actions[bot]
- git-config-email: 41898282+github-actions[bot]@users.noreply.github.com
- - name: Deploy metadata view to subdirectory if pull request 🚀
- if: github.event_name == 'pull_request'
- uses: JamesIves/github-pages-deploy-action@v4
- with:
- folder: build
- target-folder: ${{ github.ref_name }}
- clean: false
- git-config-name: github-actions[bot]
- git-config-email: 41898282+github-actions[bot]@users.noreply.github.com
- - uses: actions/upload-artifact@v4
- with:
- name: build
- path: build
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index c9a1725fd..000000000
--- a/.gitignore
+++ /dev/null
@@ -1,4 +0,0 @@
-index.html
-metadata.html
-warnings-*.txt
-clones
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
deleted file mode 100644
index 17c14fd97..000000000
--- a/.pre-commit-config.yaml
+++ /dev/null
@@ -1,50 +0,0 @@
-repos:
- - repo: https://github.com/astral-sh/ruff-pre-commit
- rev: v0.11.4
- hooks:
- - id: ruff
- args: [--fix, --exit-non-zero-on-fix]
- - id: ruff-format
-
- - repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v5.0.0
- hooks:
- - id: check-added-large-files
- - id: check-case-conflict
- - id: check-merge-conflict
- - id: check-toml
- - id: check-yaml
- - id: debug-statements
- - id: end-of-file-fixer
- - id: forbid-submodules
- - id: trailing-whitespace
-
- - repo: https://github.com/python-jsonschema/check-jsonschema
- rev: 0.32.1
- hooks:
- - id: check-github-workflows
-
- - repo: https://github.com/rhysd/actionlint
- rev: v1.7.7
- hooks:
- - id: actionlint
-
- - repo: meta
- hooks:
- - id: check-hooks-apply
- - id: check-useless-excludes
-
- - repo: https://github.com/pre-commit/mirrors-mypy
- rev: v1.15.0
- hooks:
- - id: mypy
- additional_dependencies: [types-docutils, types-polib>=1.2.0.20250114, types-requests]
-
- - repo: https://github.com/francescorubbo/deptry-pre-commit
- rev: v0.23.0
- hooks:
- - id: deptry
- args: ["--per-rule-ignores", "DEP002=python-docs-theme", "--package-module-name-map", "gitpython=git,sphinx-lint=sphinxlint"]
-
-ci:
- autoupdate_schedule: quarterly
diff --git a/70/merge/index.html b/70/merge/index.html
new file mode 100644
index 000000000..4414b4794
--- /dev/null
+++ b/70/merge/index.html
@@ -0,0 +1,580 @@
+
+
+ Python Docs Translation Dashboard
+
+
+
+
+
+Python Docs Translation Dashboard
+
+
+
+ language
+ switcher
+ visitors*
+ translators
+ completion
+
+
+
+
+
+
+ Simplified Chinese (zh-cn)
+
+
+
+ ✓
+
+
+
+
+
+ 1,602,594
+
+
+
+
+
+ 234
+
+
+
+ 80.76%
+ 80.76%
+
+
+
+
+
+ Spanish (es)
+
+
+
+ ✓
+
+
+
+
+
+ 1,008,895
+
+
+
+
+
+ 310
+
+
+
+ 63.27%
+ 63.27%
+
+
+
+
+
+ Portuguese as spoken in Brasil (pt-br)
+
+
+
+ ✓
+
+
+
+
+
+ 483,621
+
+
+
+
+
+ 155
+
+
+
+ 59.10%
+ 59.10%
+
+
+
+
+
+ Japanese (ja)
+
+
+
+ ✓
+
+
+
+
+
+ 1,437,678
+
+
+
+
+
+ 47
+
+
+
+ 53.40%
+ 53.40%
+
+
+
+
+
+ Ukrainian (uk)
+
+
+
+ ✗
+
+
+
+
+
+ 245,463
+
+
+
+
+
+ 15
+
+
+
+ 48.44%
+ 48.44%
+
+
+
+
+
+ Korean (ko)
+
+
+
+ ✓
+
+
+
+
+
+ 414,172
+
+
+
+
+
+ 22
+
+
+
+ 43.33%
+ 43.33%
+
+
+
+
+
+ Traditional Chinese (zh-tw)
+
+
+
+ ✓
+
+
+
+
+
+ 431,382
+
+
+
+
+
+ 116
+
+
+
+ 37.43%
+ 37.43%
+
+
+
+
+
+ French (fr)
+
+
+
+ ✓
+
+
+
+
+
+ 752,075
+
+
+
+
+
+ 241
+
+
+
+ 36.12%
+ 36.12%
+
+
+
+
+
+ Polish (pl)
+
+
+
+ ✓
+
+
+
+
+
+ 45,424
+
+
+
+
+
+ 25
+
+
+
+ 11.09%
+ 11.09%
+
+
+
+
+
+ Indonesian (id)
+
+
+
+ ✗
+
+
+
+
+
+ 8,891
+
+
+
+
+
+ 24
+
+
+
+ 8.11%
+ 8.11%
+
+
+
+
+
+ Greek (gr)
+
+
+
+
+
+
+
+
+
+ 12
+
+
+
+ 6.24%
+ 6.24%
+
+
+
+
+
+ Turkish (tr)
+
+
+
+ ✓
+
+
+
+
+
+ 25,524
+
+
+
+
+
+ 29
+
+
+
+ 5.10%
+ 5.10%
+
+
+
+
+
+ Italian (it)
+
+
+
+ ✓
+
+
+
+
+
+ 29,390
+
+
+
+
+
+ 3
+
+
+
+ 3.64%
+ 3.64%
+
+
+
+
+
+ Russian (ru)
+
+
+
+
+
+
+
+
+
+ 16
+
+
+
+ 2.14%
+ 2.14%
+
+
+
+
+
+ Arabic (ar)
+
+
+
+
+
+
+
+
+
+ 3
+
+
+
+ 0.01%
+ 0.01%
+
+
+
+
+
+ Hindi as spoken in India (hi-in)
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+ 0.01%
+ 0.01%
+
+
+
+
+
+ Persian (fa)
+
+
+
+
+
+
+
+
+
+ 3
+
+
+
+ 0.00%
+ 0.00%
+
+
+
+
+
+ Marathi (mr)
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+ 0.00%
+ 0.00%
+
+
+
+
+
+ Hungarian (hu)
+
+
+
+
+
+
+
+
+
+ 1
+
+
+
+ 0.00%
+ 0.00%
+
+
+
+
+
+ Portuguese (pt)
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+ 0.00%
+ 0.00%
+
+
+
+
+
+ Lithuanian (lt)
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+ 0.00%
+ 0.00%
+
+
+
+
+
+ Bengali as spoken in India (bn-in)
+
+
+
+
+
+
+
+
+
+ 0
+
+
+
+ 0.00%
+ 0.00%
+
+
+
+
+
+* sum of daily unique visitors since 8 June 2024
+For more information about translations, see the Python Developer’s Guide .
+Last updated at Thursday, 20 February 2025, 11:02:30 UTC (in 6:34 minutes).
+
+
+
\ No newline at end of file
diff --git a/70/merge/index.json b/70/merge/index.json
new file mode 100644
index 000000000..49a6b524e
--- /dev/null
+++ b/70/merge/index.json
@@ -0,0 +1,420 @@
+[
+ {
+ "language": {
+ "code": "ar",
+ "name": "Arabic"
+ },
+ "repository": "Abdur-rahmaanJ/python-docs-ar",
+ "branch": "master",
+ "completion": 0.014568571617773658,
+ "change": 0.0,
+ "translators": {
+ "number": 3,
+ "link": false
+ },
+ "visitors": 0,
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/Abdur-rahmaanJ/python-docs-ar"
+ },
+ {
+ "language": {
+ "code": "bn-in",
+ "name": "Bengali as spoken in India"
+ },
+ "repository": "python/python-docs-bn-in",
+ "branch": "master",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 0,
+ "link": false
+ },
+ "visitors": 0,
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-bn-in"
+ },
+ {
+ "language": {
+ "code": "fr",
+ "name": "French"
+ },
+ "repository": "python/python-docs-fr",
+ "branch": "3.13",
+ "completion": 36.123435534070595,
+ "change": 0.0,
+ "translators": {
+ "number": 241,
+ "link": "https://github.com/python/python-docs-fr/blob/3.13/TRANSLATORS"
+ },
+ "visitors": 752075,
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://git.afpy.org/AFPy/python-docs-fr/src/branch/3.13/CONTRIBUTING.rst"
+ },
+ {
+ "language": {
+ "code": "gr",
+ "name": "Greek"
+ },
+ "repository": "pygreece/python-docs-gr",
+ "branch": "3.12",
+ "completion": 6.2446195616184355,
+ "change": 1.4621548241838287,
+ "translators": {
+ "number": 12,
+ "link": "https://github.com/pygreece/python-docs-gr/blob/3.12/TRANSLATORS"
+ },
+ "visitors": 0,
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/pygreece/python-docs-gr/blob/3.12/CONTRIBUTING.md"
+ },
+ {
+ "language": {
+ "code": "hi-in",
+ "name": "Hindi as spoken in India"
+ },
+ "repository": "CuriousLearner/python-docs-hi-in",
+ "branch": "master",
+ "completion": 0.005297662406463148,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "visitors": 0,
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/CuriousLearner/python-docs-hi-in"
+ },
+ {
+ "language": {
+ "code": "hu",
+ "name": "Hungarian"
+ },
+ "repository": "python/python-docs-hu",
+ "branch": "master",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "visitors": 0,
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-hu"
+ },
+ {
+ "language": {
+ "code": "id",
+ "name": "Indonesian"
+ },
+ "repository": "python/python-docs-id",
+ "branch": "3.9",
+ "completion": 8.106747897490232,
+ "change": 0.0,
+ "translators": {
+ "number": 24,
+ "link": "https://github.com/python/python-docs-id/blob/3.9/TRANSLATORS"
+ },
+ "visitors": 8891,
+ "built": true,
+ "in_switcher": false,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-id/blob/master/README.md#berkontribusi-untuk-menerjemahkan"
+ },
+ {
+ "language": {
+ "code": "it",
+ "name": "Italian"
+ },
+ "repository": "python/python-docs-it",
+ "branch": "3.13",
+ "completion": 3.642142904443414,
+ "change": 0.0,
+ "translators": {
+ "number": 3,
+ "link": "https://github.com/python/python-docs-it/blob/3.13/TRANSLATORS"
+ },
+ "visitors": 29390,
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-it"
+ },
+ {
+ "language": {
+ "code": "ja",
+ "name": "Japanese"
+ },
+ "repository": "python/python-docs-ja",
+ "branch": "3.11",
+ "completion": 53.39513939474207,
+ "change": 0.09933117012118231,
+ "translators": {
+ "number": 47,
+ "link": false
+ },
+ "visitors": 1437678,
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "ko",
+ "name": "Korean"
+ },
+ "repository": "python/python-docs-ko",
+ "branch": "3.9",
+ "completion": 43.328256406860476,
+ "change": 0.0,
+ "translators": {
+ "number": 22,
+ "link": false
+ },
+ "visitors": 414172,
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://www.flowdas.com/pages/python-docs-ko.html"
+ },
+ {
+ "language": {
+ "code": "mr",
+ "name": "Marathi"
+ },
+ "repository": "sanketgarade/python-doc-mr",
+ "branch": "3.9",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "visitors": 0,
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/sanketgarade/python-doc-mr"
+ },
+ {
+ "language": {
+ "code": "lt",
+ "name": "Lithuanian"
+ },
+ "repository": null,
+ "branch": null,
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 0,
+ "link": false
+ },
+ "visitors": 0,
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": null
+ },
+ {
+ "language": {
+ "code": "fa",
+ "name": "Persian"
+ },
+ "repository": "revisto/python-docs-fa",
+ "branch": "3.13",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 3,
+ "link": false
+ },
+ "visitors": 0,
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/revisto/python-docs-fa"
+ },
+ {
+ "language": {
+ "code": "pl",
+ "name": "Polish"
+ },
+ "repository": "python/python-docs-pl",
+ "branch": "3.13",
+ "completion": 11.088007416727368,
+ "change": 2.542877955102311,
+ "translators": {
+ "number": 25,
+ "link": false
+ },
+ "visitors": 45424,
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "pt",
+ "name": "Portuguese"
+ },
+ "repository": null,
+ "branch": null,
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 0,
+ "link": false
+ },
+ "visitors": 0,
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": null
+ },
+ {
+ "language": {
+ "code": "pt-br",
+ "name": "Portuguese as spoken in Brasil"
+ },
+ "repository": "python/python-docs-pt-br",
+ "branch": "3.13",
+ "completion": 59.096748559698035,
+ "change": 2.3296470432421685,
+ "translators": {
+ "number": 155,
+ "link": false
+ },
+ "visitors": 483621,
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "ru",
+ "name": "Russian"
+ },
+ "repository": "MLGRussianXP/python-docs-ru",
+ "branch": "3.12",
+ "completion": 2.1442288590159593,
+ "change": 0.0,
+ "translators": {
+ "number": 16,
+ "link": false
+ },
+ "visitors": 0,
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/MLGRussianXP/python-docs-ru"
+ },
+ {
+ "language": {
+ "code": "zh-cn",
+ "name": "Simplified Chinese"
+ },
+ "repository": "python/python-docs-zh-cn",
+ "branch": "3.13",
+ "completion": 80.76418780213231,
+ "change": 0.45824779815906425,
+ "translators": {
+ "number": 234,
+ "link": false
+ },
+ "visitors": 1602594,
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "es",
+ "name": "Spanish"
+ },
+ "repository": "python/python-docs-es",
+ "branch": "3.13",
+ "completion": 63.26600887358453,
+ "change": 0.2079332494536814,
+ "translators": {
+ "number": 310,
+ "link": "https://github.com/python/python-docs-es/blob/3.13/TRANSLATORS"
+ },
+ "visitors": 1008895,
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://python-docs-es.readthedocs.io/page/CONTRIBUTING.html"
+ },
+ {
+ "language": {
+ "code": "zh-tw",
+ "name": "Traditional Chinese"
+ },
+ "repository": "python/python-docs-zh-tw",
+ "branch": "3.13",
+ "completion": 37.42798490166214,
+ "change": 0.5628766306867092,
+ "translators": {
+ "number": 116,
+ "link": "https://github.com/python/python-docs-zh-tw/blob/3.13/TRANSLATORS"
+ },
+ "visitors": 431382,
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-zh-tw/blob/3.13/README.rst#%E5%8F%83%E8%88%87%E7%BF%BB%E8%AD%AF"
+ },
+ {
+ "language": {
+ "code": "tr",
+ "name": "Turkish"
+ },
+ "repository": "python/python-docs-tr",
+ "branch": "3.12",
+ "completion": 5.096351235017549,
+ "change": 0.0,
+ "translators": {
+ "number": 29,
+ "link": "https://github.com/python/python-docs-tr/blob/3.12/TRANSLATORS"
+ },
+ "visitors": 25524,
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-tr/blob/3.12/README.md#%C3%A7eviriye-katk%C4%B1da-bulunmak"
+ },
+ {
+ "language": {
+ "code": "uk",
+ "name": "Ukrainian"
+ },
+ "repository": "python/python-docs-uk",
+ "branch": "3.13",
+ "completion": 48.443149460300646,
+ "change": 0.09270909211311107,
+ "translators": {
+ "number": 15,
+ "link": false
+ },
+ "visitors": 245463,
+ "built": true,
+ "in_switcher": false,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ }
+]
\ No newline at end of file
diff --git a/70/merge/style.css b/70/merge/style.css
new file mode 100644
index 000000000..3a67a64ad
--- /dev/null
+++ b/70/merge/style.css
@@ -0,0 +1,81 @@
+body {
+ font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
+}
+table {
+ border-collapse: collapse;
+ width: 100%;
+}
+th, td {
+ border: 1px solid #ddd;
+ padding: 8px 12px;
+ text-align: left;
+ white-space: nowrap;
+}
+th {
+ background-color: #f4f4f4;
+}
+.progress-bar {
+ display: inline-block;
+ background-color: #4caf50;
+ color: white;
+ height: 20px;
+ line-height: 20px;
+ text-align: center;
+ overflow: hidden;
+ white-space: nowrap;
+ box-sizing: border-box;
+}
+.progress-bar-outer-label {
+ display: none;
+ padding-left: .5em;
+ height: 20px;
+ line-height: 20px;
+ overflow: hidden;
+}
+.progress-bar.low {
+ color: transparent;
+ user-select: none;
+}
+.progress-bar.low + .progress-bar-outer-label {
+ display: inline-block;
+}
+td[data-label="visitors"], td[data-label="translators"] {
+ text-align: right;
+}
+td[data-label="completion"] {
+ width: 100%;
+ line-height: 0;
+}
+@media screen and (max-width: 600px) {
+ table, thead, tbody, th, td, tr {
+ display: block;
+ }
+ th {
+ position: absolute;
+ top: -9999px;
+ left: -9999px;
+ }
+ tr {
+ border: 1px solid #ccc;
+ margin-bottom: 5px;
+ }
+ td {
+ border: none;
+ border-bottom: 1px solid #eee;
+ padding-left: 50%;
+ position: relative;
+ }
+ td:before {
+ content: attr(data-label);
+ font-weight: bold;
+ left: 10px;
+ position: absolute;
+ }
+ td[data-label="completion"] {
+ width: inherit;
+ }
+ .progress-bar {
+ min-width: 0;
+ width: 100% !important;
+ }
+}
diff --git a/83/merge/index.html b/83/merge/index.html
new file mode 100644
index 000000000..a067a98eb
--- /dev/null
+++ b/83/merge/index.html
@@ -0,0 +1,632 @@
+
+
+ Python Docs Translation Dashboard
+
+
+
+
+
+
+Python Docs Translation Dashboard
+
+main | meta
+
+
+
+
+ language
+ switcher
+ translators
+ completion*
+
+
+
+
+
+
+ Simplified Chinese (zh-cn)
+
+
+
+ ✓
+
+
+
+
+ 234
+
+
+
+
+ 81.57% (+0.87%)
+
+
+ 81.57% (+0.87%)
+
+
+
+
+
+
+ Spanish (es)
+
+
+
+ ✓
+
+
+
+
+ 312
+
+
+
+
+ 62.77% (+0.12%)
+
+
+ 62.77% (+0.12%)
+
+
+
+
+
+
+ Brazilian Portuguese (pt-br)
+
+
+
+ ✓
+
+
+
+
+ 155
+
+
+
+
+ 60.93% (+1.12%)
+
+
+ 60.93% (+1.12%)
+
+
+
+
+
+
+ Ukrainian (uk)
+
+
+
+ ✗
+
+
+
+
+ 13
+
+
+
+
+ 53.50% (+53.50%)
+
+
+ 53.50% (+53.50%)
+
+
+
+
+
+
+ Japanese (ja)
+
+
+
+ ✓
+
+
+
+
+ 47
+
+
+
+
+ 53.10% (+0.04%)
+
+
+ 53.10% (+0.04%)
+
+
+
+
+
+
+ Korean (ko)
+
+
+
+ ✓
+
+
+
+
+ 23
+
+
+
+
+ 44.39% (+1.52%)
+
+
+ 44.39% (+1.52%)
+
+
+
+
+
+
+ Traditional Chinese (zh-tw)
+
+
+
+ ✓
+
+
+
+
+ 120
+
+
+
+
+ 38.48% (+1.14%)
+
+
+ 38.48% (+1.14%)
+
+
+
+
+
+
+ French (fr)
+
+
+
+ ✓
+
+
+
+
+ 241
+
+
+
+
+ 35.79%
+
+
+ 35.79%
+
+
+
+
+
+
+ Polish (pl)
+
+
+
+ ✓
+
+
+
+
+ 25
+
+
+
+
+ 11.18% (+0.03%)
+
+
+ 11.18% (+0.03%)
+
+
+
+
+
+
+ Indonesian (id)
+
+
+
+ ✗
+
+
+
+
+ 24
+
+
+
+
+ 7.99%
+
+
+ 7.99%
+
+
+
+
+
+
+ Greek (gr)
+
+
+
+
+
+
+ 15
+
+
+
+
+ 6.82% (+0.15%)
+
+
+ 6.82% (+0.15%)
+
+
+
+
+
+
+ Turkish (tr)
+
+
+
+ ✓
+
+
+
+
+ 29
+
+
+
+
+ 5.07%
+
+
+ 5.07%
+
+
+
+
+
+
+ Italian (it)
+
+
+
+ ✓
+
+
+
+
+ 3
+
+
+
+
+ 3.62%
+
+
+ 3.62%
+
+
+
+
+
+
+ Romanian (ro)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.30%
+
+
+ 0.30%
+
+
+
+
+
+
+ Russian (ru)
+
+
+
+
+
+
+ 22
+
+
+
+
+ 0.20%
+
+
+ 0.20%
+
+
+
+
+
+
+ Persian (fa)
+
+
+
+
+
+
+ 10
+
+
+
+
+ 0.05% (+0.05%)
+
+
+ 0.05% (+0.05%)
+
+
+
+
+
+
+ Arabic (ar)
+
+
+
+
+
+
+ 3
+
+
+
+
+ 0.01%
+
+
+ 0.01%
+
+
+
+
+
+
+ Hindi (hi-in)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.01%
+
+
+ 0.01%
+
+
+
+
+
+
+ Marathi (mr)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Hungarian (hu)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Portuguese (pt)
+
+
+
+
+
+
+ 0
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Lithuanian (lt)
+
+
+
+
+
+
+ 0
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Bengali (bn-in)
+
+
+
+
+
+
+ 0
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+* the number in parentheses shows change in the last 30 days, included in the total completion
+
+Currently being translated into 23 languages.
+The documentation has a total word count of 1,526,771.
+For more information about translations, see the Python Developer’s Guide .
+
+
+You can download the data on this page in JSON format .
+You can also find the scripts used to generate these pages here .
+Last updated at Sunday, 4 May 2025, 9:59:51 UTC (in 6:43 minutes).
+
+
+
\ No newline at end of file
diff --git a/83/merge/index.json b/83/merge/index.json
new file mode 100644
index 000000000..d0496d88d
--- /dev/null
+++ b/83/merge/index.json
@@ -0,0 +1,416 @@
+[
+ {
+ "language": {
+ "code": "ar",
+ "name": "Arabic"
+ },
+ "repository": "Abdur-rahmaanJ/python-docs-ar",
+ "branch": "master",
+ "completion": 0.014499822047638507,
+ "change": 0.0,
+ "translators": {
+ "number": 3,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/Abdur-rahmaanJ/python-docs-ar"
+ },
+ {
+ "language": {
+ "code": "bn-in",
+ "name": "Bengali"
+ },
+ "repository": "python/python-docs-bn-in",
+ "branch": "",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 0,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-bn-in"
+ },
+ {
+ "language": {
+ "code": "fr",
+ "name": "French"
+ },
+ "repository": "python/python-docs-fr",
+ "branch": "3.13",
+ "completion": 35.78819714485322,
+ "change": 0.0,
+ "translators": {
+ "number": 241,
+ "link": "https://github.com/python/python-docs-fr/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://git.afpy.org/AFPy/python-docs-fr/src/branch/3.13/CONTRIBUTING.rst"
+ },
+ {
+ "language": {
+ "code": "gr",
+ "name": "Greek"
+ },
+ "repository": "pygreece/python-docs-gr",
+ "branch": "3.12",
+ "completion": 6.820189024952875,
+ "change": 0.15027088303916258,
+ "translators": {
+ "number": 15,
+ "link": "https://github.com/pygreece/python-docs-gr/blob/3.12/TRANSLATORS"
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/pygreece/python-docs-gr/blob/3.12/CONTRIBUTING.md"
+ },
+ {
+ "language": {
+ "code": "hi-in",
+ "name": "Hindi"
+ },
+ "repository": "CuriousLearner/python-docs-hi-in",
+ "branch": "master",
+ "completion": 0.005272662562777639,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/CuriousLearner/python-docs-hi-in"
+ },
+ {
+ "language": {
+ "code": "hu",
+ "name": "Hungarian"
+ },
+ "repository": "python/python-docs-hu",
+ "branch": "master",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-hu"
+ },
+ {
+ "language": {
+ "code": "id",
+ "name": "Indonesian"
+ },
+ "repository": "python/python-docs-id",
+ "branch": "3.9",
+ "completion": 7.9933564451709005,
+ "change": 0.0,
+ "translators": {
+ "number": 24,
+ "link": "https://github.com/python/python-docs-id/blob/3.9/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": false,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-id/blob/master/README.md#berkontribusi-untuk-menerjemahkan"
+ },
+ {
+ "language": {
+ "code": "it",
+ "name": "Italian"
+ },
+ "repository": "python/python-docs-it",
+ "branch": "3.13",
+ "completion": 3.6223191806282378,
+ "change": 0.0,
+ "translators": {
+ "number": 3,
+ "link": "https://github.com/python/python-docs-it/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-it"
+ },
+ {
+ "language": {
+ "code": "ja",
+ "name": "Japanese"
+ },
+ "repository": "python/python-docs-ja",
+ "branch": "3.11",
+ "completion": 53.103621001014986,
+ "change": 0.040863134861524486,
+ "translators": {
+ "number": 47,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "ko",
+ "name": "Korean"
+ },
+ "repository": "python/python-docs-ko",
+ "branch": "3.13",
+ "completion": 44.38527345346216,
+ "change": 1.5237994806427366,
+ "translators": {
+ "number": 23,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://www.flowdas.com/pages/python-docs-ko.html"
+ },
+ {
+ "language": {
+ "code": "mr",
+ "name": "Marathi"
+ },
+ "repository": "sanketgarade/python-doc-mr",
+ "branch": "3.9",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/sanketgarade/python-doc-mr"
+ },
+ {
+ "language": {
+ "code": "lt",
+ "name": "Lithuanian"
+ },
+ "repository": null,
+ "branch": "",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 0,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": null
+ },
+ {
+ "language": {
+ "code": "fa",
+ "name": "Persian"
+ },
+ "repository": "revisto/python-docs-fa",
+ "branch": "3.13",
+ "completion": 0.051408459987081975,
+ "change": 0.051408459987081975,
+ "translators": {
+ "number": 10,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/revisto/python-docs-fa"
+ },
+ {
+ "language": {
+ "code": "pl",
+ "name": "Polish"
+ },
+ "repository": "python/python-docs-pl",
+ "branch": "3.13",
+ "completion": 11.18331729565137,
+ "change": 0.028999644095275556,
+ "translators": {
+ "number": 25,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "pt",
+ "name": "Portuguese"
+ },
+ "repository": null,
+ "branch": "",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 0,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": null
+ },
+ {
+ "language": {
+ "code": "pt-br",
+ "name": "Brazilian Portuguese"
+ },
+ "repository": "python/python-docs-pt-br",
+ "branch": "3.13",
+ "completion": 60.93220674109909,
+ "change": 1.1151681320274704,
+ "translators": {
+ "number": 155,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "ro",
+ "name": "Romanian"
+ },
+ "repository": "octaG-M/python-docs-ro",
+ "branch": "main",
+ "completion": 0.29526910351554775,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/octaG-M/python-docs-ro"
+ },
+ {
+ "language": {
+ "code": "ru",
+ "name": "Russian"
+ },
+ "repository": "MLGRussianXP/python-docs-ru",
+ "branch": "3.13",
+ "completion": 0.20167934302624468,
+ "change": 0.0,
+ "translators": {
+ "number": 22,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/MLGRussianXP/python-docs-ru"
+ },
+ {
+ "language": {
+ "code": "zh-cn",
+ "name": "Simplified Chinese"
+ },
+ "repository": "python/python-docs-zh-cn",
+ "branch": "3.13",
+ "completion": 81.57336250873284,
+ "change": 0.8673529915769222,
+ "translators": {
+ "number": 234,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "es",
+ "name": "Spanish"
+ },
+ "repository": "python/python-docs-es",
+ "branch": "3.13",
+ "completion": 62.76577514730501,
+ "change": 0.11599857638110223,
+ "translators": {
+ "number": 312,
+ "link": "https://github.com/python/python-docs-es/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://python-docs-es.readthedocs.io/page/CONTRIBUTING.html"
+ },
+ {
+ "language": {
+ "code": "zh-tw",
+ "name": "Traditional Chinese"
+ },
+ "repository": "python/python-docs-zh-tw",
+ "branch": "3.13",
+ "completion": 38.47593688622912,
+ "change": 1.1362587822785812,
+ "translators": {
+ "number": 120,
+ "link": "https://github.com/python/python-docs-zh-tw/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-zh-tw/blob/3.13/README.rst#%E5%8F%83%E8%88%87%E7%BF%BB%E8%AD%AF"
+ },
+ {
+ "language": {
+ "code": "tr",
+ "name": "Turkish"
+ },
+ "repository": "python/python-docs-tr",
+ "branch": "3.12",
+ "completion": 5.068346888470005,
+ "change": 0.0,
+ "translators": {
+ "number": 29,
+ "link": "https://github.com/python/python-docs-tr/blob/3.12/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-tr/blob/3.12/README.md#%C3%A7eviriye-katk%C4%B1da-bulunmak"
+ },
+ {
+ "language": {
+ "code": "uk",
+ "name": "Ukrainian"
+ },
+ "repository": "python/python-docs-uk",
+ "branch": "3.13",
+ "completion": 53.49775252758262,
+ "change": 53.49775252758262,
+ "translators": {
+ "number": 13,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": false,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ }
+]
\ No newline at end of file
diff --git a/83/merge/metadata.html b/83/merge/metadata.html
new file mode 100644
index 000000000..5fb7d9d2d
--- /dev/null
+++ b/83/merge/metadata.html
@@ -0,0 +1,306 @@
+
+
+ Python Docs Translation Dashboard
+
+
+
+
+
+Python Docs Translation Dashboard
+
+main | meta
+
+
+
+
+ language
+ branch
+ last updated
+ build warnings*
+ lint failures
+
+
+
+
+
+ Simplified Chinese (zh-cn)
+ 3.13
+ 2025/05/03 10:55:45
+
+ 6
+
+
+ 307
+
+
+
+
+ Spanish (es)
+ 3.13
+ 2025/04/26 19:58:08
+
+ 0
+
+
+ 2
+
+
+
+
+ Brazilian Portuguese (pt-br)
+ 3.13
+ 2025/05/03 23:08:34
+
+ 2
+
+
+ 0
+
+
+
+
+ Ukrainian (uk)
+ 3.13
+ 2025/05/01 16:40:42
+
+ 10
+
+
+ 0
+
+
+
+
+ Japanese (ja)
+ 3.11
+ 2025/05/03 23:48:49
+
+ 324
+
+
+ 370
+
+
+
+
+ Korean (ko)
+ 3.13
+ 2025/05/04 08:48:34
+
+ 0
+
+
+ 0
+
+
+
+
+ Traditional Chinese (zh-tw)
+ 3.13
+ 2025/05/04 16:29:16
+
+ 0
+
+
+ 0
+
+
+
+
+ French (fr)
+ 3.13
+ 2024/11/15 23:05:57
+
+ 3
+
+
+ 4
+
+
+
+
+ Polish (pl)
+ 3.13
+ 2025/04/30 22:58:07
+
+ 0
+
+
+ 0
+
+
+
+
+ Indonesian (id)
+ 3.9
+ 2021/05/30 22:15:38
+
+ 46
+
+
+ 34
+
+
+
+
+ Greek (gr)
+ 3.12
+ 2025/04/30 00:10:21
+
+ 5
+
+
+ 53
+
+
+
+
+ Turkish (tr)
+ 3.12
+ 2024/12/15 06:56:02
+
+ 0
+
+
+ 0
+
+
+
+
+ Italian (it)
+ 3.13
+ 2024/06/08 12:26:23
+
+ 0
+
+
+ 0
+
+
+
+
+ Romanian (ro)
+ main
+ 2025/03/30 11:04:26
+
+ 0
+
+
+ 2
+
+
+
+
+ Russian (ru)
+ 3.13
+ 2025/05/02 14:57:17
+
+ 0
+
+
+ 0
+
+
+
+
+ Persian (fa)
+ 3.13
+ 2025/05/04 01:44:50
+
+ 0
+
+
+ 0
+
+
+
+
+ Arabic (ar)
+ master
+ 2024/05/24 14:10:55
+
+ 3
+
+
+ 1
+
+
+
+
+ Hindi (hi-in)
+ master
+ 2019/05/07 01:31:24
+
+ 0
+
+
+ 0
+
+
+
+
+ Marathi (mr)
+ 3.9
+ 2022/05/20 01:19:57
+
+ 0
+
+
+ 0
+
+
+
+
+ Hungarian (hu)
+ master
+ 2017/06/10 10:25:25
+
+ 0
+
+
+ 0
+
+
+
+
+ Portuguese (pt)
+
+
+
+ 0
+
+
+ 0
+
+
+
+
+ Lithuanian (lt)
+
+
+
+ 0
+
+
+ 0
+
+
+
+
+ Bengali (bn-in)
+
+
+
+ 0
+
+
+ 0
+
+
+
+
+
+* number of Sphinx build process warnings
+ Last updated at Sunday, 4 May 2025, 10:06:38 UTC (in 34:47 minutes).
+
+
\ No newline at end of file
diff --git a/83/merge/style.css b/83/merge/style.css
new file mode 100644
index 000000000..866b7454d
--- /dev/null
+++ b/83/merge/style.css
@@ -0,0 +1,94 @@
+body {
+ font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
+}
+table {
+ border-collapse: collapse;
+}
+th, td {
+ border: 1px solid #ddd;
+ padding: 8px 12px;
+ text-align: left;
+ white-space: nowrap;
+}
+th {
+ background-color: #f4f4f4;
+}
+hr {
+ color: #f4f4f4;
+}
+.progress-bar {
+ display: inline-block;
+ color: white;
+ height: 20px;
+ line-height: 20px;
+ text-align: center;
+ overflow: hidden;
+ white-space: nowrap;
+ box-sizing: border-box;
+}
+.progress-bar-outer-label {
+ display: none;
+ padding-left: .5em;
+ height: 20px;
+ line-height: 20px;
+ overflow: hidden;
+}
+.progress-bar.low {
+ color: transparent;
+ user-select: none;
+}
+.progress-bar.low + .progress-bar-outer-label {
+ display: inline-block;
+}
+td[data-label="translators"], td[data-label="warnings"], td[data-label="lint"] {
+ text-align: right;
+}
+td[data-label="completion"] {
+ width: 100%;
+ line-height: 0;
+}
+.switchpages{
+ position: absolute;
+ top: 10px;
+ right: 10px;
+ }
+
+@media screen and (max-width: 675px) {
+ .switchpages{
+ all: unset;
+ }
+}
+
+@media screen and (max-width: 600px) {
+ table, thead, tbody, th, td, tr {
+ display: block;
+ }
+ th {
+ position: absolute;
+ top: -9999px;
+ left: -9999px;
+ }
+ tr {
+ border: 1px solid #ccc;
+ margin-bottom: 5px;
+ }
+ td {
+ border: none;
+ border-bottom: 1px solid #eee;
+ padding-left: 50%;
+ position: relative;
+ }
+ td:before {
+ content: attr(data-label);
+ font-weight: bold;
+ left: 10px;
+ position: absolute;
+ }
+ td[data-label="completion"] {
+ width: inherit;
+ }
+ .progress-bar {
+ min-width: 0;
+ width: 100% !important;
+ }
+}
diff --git a/83/merge/warnings-ar.txt b/83/merge/warnings-ar.txt
new file mode 100644
index 000000000..c8862d765
--- /dev/null
+++ b/83/merge/warnings-ar.txt
@@ -0,0 +1,3 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:24: WARNING: inconsistent term references in translated message. original: [':ref:`installing-index`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:27: WARNING: inconsistent term references in translated message. original: [':ref:`reference-index`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64: WARNING: inconsistent term references in translated message. original: [':ref:`Frequently Asked Questions `'], translated: [] [i18n.inconsistent_references]
diff --git a/83/merge/warnings-es.txt b/83/merge/warnings-es.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-fa.txt b/83/merge/warnings-fa.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-fr.txt b/83/merge/warnings-fr.txt
new file mode 100644
index 000000000..70263ff9e
--- /dev/null
+++ b/83/merge/warnings-fr.txt
@@ -0,0 +1,3 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/classes.rst:772: WARNING: inconsistent term references in translated message. original: [':ref:`Instance method objects `', ':attr:`m.__self__ `', ':attr:`m.__func__ `', ':ref:`function object `'], translated: [':attr:`m.__self__ `', ':attr:`m.__func__ `', ':ref:`objet fonction `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/import.rst:602: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`__repr__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:323: WARNING: inconsistent term references in translated message. original: [':class:`int`', ':class:`int`', ':class:`float`', ':class:`float`', ':class:`int`'], translated: [':class:`int`', ':class:`int`', ':class:`float`', ':class:`float`'] [i18n.inconsistent_references]
diff --git a/83/merge/warnings-gr.txt b/83/merge/warnings-gr.txt
new file mode 100644
index 000000000..cfd9abfcb
--- /dev/null
+++ b/83/merge/warnings-gr.txt
@@ -0,0 +1,5 @@
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
diff --git a/83/merge/warnings-hi-in.txt b/83/merge/warnings-hi-in.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-id.txt b/83/merge/warnings-id.txt
new file mode 100644
index 000000000..cfb1747d7
--- /dev/null
+++ b/83/merge/warnings-id.txt
@@ -0,0 +1,47 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/faq/general.rst:: ERROR: Anonymous hyperlink mismatch: 1 references but 0 targets.
+See "backrefs" attribute for IDs. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/faq/windows.rst:276: WARNING: inconsistent term references in translated message. original: [':mod:`msvcrt`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/cporting.rst:17: WARNING: inconsistent references in translated message. original: ['`Cython`_', '`CFFI`_'], translated: ['`Cython`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/abstract.rst:14: WARNING: inconsistent term references in translated message. original: [':c:func:`PyList_New`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/appendix.rst:50: WARNING: inconsistent term references in translated message. original: [':exc:`KeyboardInterrupt`', ':keyword:`try`'], translated: [':exc:`KeyboardInterrupt`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:872::1: WARNING: Inline literal start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:872::1: WARNING: Inline literal start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/datastructures.rst:407: WARNING: inconsistent term references in translated message. original: [':term:`immutable`', ':func:`namedtuples `', ':term:`mutable`'], translated: [':term:`immutable`', ':func:`namedtuples `). Daftar adalah :term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/datastructures.rst:693: WARNING: inconsistent term references in translated message. original: [':ref:`walrus operator `'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:108: WARNING: inconsistent term references in translated message. original: [':keyword:`try`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:423: WARNING: inconsistent term references in translated message. original: [':keyword:`break`', ':keyword:`continue`', ':keyword:`return`'], translated: [':keyword:`break`', ':keyword:`continue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/inputoutput.rst:522: WARNING: inconsistent term references in translated message. original: [':func:`~json.dumps`', ':func:`~json.dump`', ':term:`text file`', ':term:`text file`'], translated: [':func:`~json.dumps`', ':func:`~json.dump`', ':term:`text file`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/interpreter.rst:73: WARNING: inconsistent term references in translated message. original: [':option:`-c`', ':option:`-m`', ':option:`-c`', ':option:`-m`'], translated: [':option:`-c`', ':option:`-c`', ':option:`-m`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/introduction.rst:132: WARNING: inconsistent term references in translated message. original: [':class:`int`', ':class:`float`', ':class:`~decimal.Decimal`', ':class:`~fractions.Fraction`', ':ref:`complex numbers `'], translated: [':class:`int`', ':class:`~decimal.Decimal`', ':class:`~fractions.Fraction`', ':ref:`complex numbers `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/modules.rst:206: WARNING: inconsistent term references in translated message. original: [':data:`sys.path`', ':ref:`tut-standardmodules`'], translated: [':ref:`tut-standardmodules`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:238: WARNING: inconsistent term references in translated message. original: [':mod:`zlib`', ':mod:`gzip`', ':mod:`bz2`', ':mod:`lzma`', ':mod:`zipfile`', ':mod:`tarfile`'], translated: [':mod:`gzip`', ':mod:`bz2`', ':mod:`lzma`', ':mod:`zipfile`', ':mod:`tarfile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:264: WARNING: inconsistent term references in translated message. original: [':mod:`timeit`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:288: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:174: WARNING: inconsistent term references in translated message. original: [':mod:`threading`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64: WARNING: inconsistent term references in translated message. original: [':ref:`Frequently Asked Questions `'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/html.entities.rst:13: WARNING: inconsistent term references in translated message. original: [':data:`html5`', ':data:`name2codepoint`', ':data:`codepoint2name`', ':data:`entitydefs`'], translated: [':data:`html5`', ':data:`name2codepoint`', ':data:`codepoint2name`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:1324: WARNING: inconsistent term references in translated message. original: [':ref:`sortinghowto`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:213: WARNING: inconsistent term references in translated message. original: [':ref:`binaryseq`', ':ref:`typebytearray`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:473: WARNING: inconsistent term references in translated message. original: [':class:`list`', ':class:`set`', ':class:`tuple`', ':mod:`collections`'], translated: [':class:`set`', ':class:`tuple`', ':mod:`collections`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:848: WARNING: inconsistent term references in translated message. original: [':class:`set`', ':class:`list`', ':class:`tuple`', ':class:`dict`', ':mod:`collections`'], translated: [':class:`set`', ':class:`list`', ':class:`dict`', ':mod:`collections`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1040: WARNING: inconsistent term references in translated message. original: [':class:`int`', ':meth:`base.__index__ `', ':meth:`base.__int__ `', ':meth:`base.__index__\n`'], translated: [':class:`int`', ':meth:`base.__index__ `', ':meth:`base.__int__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1144: WARNING: inconsistent term references in translated message. original: [':class:`list`', ':ref:`typesseq-list`', ':ref:`typesseq`'], translated: [':class:`list`', ':ref:`typesseq-list`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1792: WARNING: inconsistent term references in translated message. original: [':class:`set`', ':class:`set`', ':ref:`types-set`'], translated: [':class:`set`', ':ref:`types-set`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1878: WARNING: inconsistent term references in translated message. original: [':ref:`sortinghowto`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functools.rst:146: WARNING: inconsistent term references in translated message. original: [':ref:`sortinghowto`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:205::1: WARNING: undefined label: 'buffer interface' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:962::1: WARNING: undefined label: 'auditing event' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:921::1: WARNING: undefined label: 'tuttuples' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:1134::1: WARNING: undefined label: 'tut-firstclass' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/datastructures.rst:335::1: WARNING: undefined label: 'tut-unpacking-argumen' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:368::1: WARNING: undefined label: 'tut-class' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/index.rst:40::1: WARNING: undefined label: 'glosarium' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:251::1: WARNING: unknown keyword: 'garbage collection' [ref.keyword]
diff --git a/83/merge/warnings-it.txt b/83/merge/warnings-it.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-ja.txt b/83/merge/warnings-ja.txt
new file mode 100644
index 000000000..f50cba3ad
--- /dev/null
+++ b/83/merge/warnings-ja.txt
@@ -0,0 +1,321 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:109: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`PyArg_ParseTuple`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:182: WARNING: inconsistent term references in translated message. original: [':c:func:`malloc`', ':c:func:`malloc`', ':c:func:`realloc`', ':c:func:`PyErr_NoMemory`', ':c:func:`PyLong_FromLong`', ':c:func:`malloc`'], translated: [':c:func:`malloc`', ':c:func:`malloc`', ':c:func:`realloc`', ':c:func:`PyErr_NoMemory`', ':c:func:`PyLong_FromLong`', ':c:func:`PyErr_NoMemory`', ':c:func:`malloc`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:585: WARNING: inconsistent term references in translated message. original: [':c:func:`PyObject_CallObject`', ':c:func:`PyErr_Clear`'], translated: [':c:func:`Py_DECREF`', ':c:func:`PyObject_CallObject`', ':c:func:`PyErr_Clear`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:653: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`PyArg_ParseTuple`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:813: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`Py_BuildValue`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:818: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`Py_BuildValue`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:823: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`', ':c:func:`Py_BuildValue`'], translated: [':c:func:`PyArg_ParseTuple`', ':c:func:`PyArg_ParseTuple`', ':c:func:`Py_BuildValue`', ':c:func:`Py_BuildValue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:961: WARNING: inconsistent term references in translated message. original: [':c:func:`Py_INCREF`'], translated: [':c:func:`Py_INCREF`', ':c:func:`Py_INCREF`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:91: WARNING: inconsistent term references in translated message. original: [':term:`asynchronous generator iterator`', ':keyword:`async def`', ':keyword:`yield`', ':keyword:`async for`'], translated: [':term:`asynchronous generator iterator`', ':keyword:`async def`', ':keyword:`yield`', ':keyword:`yield`', ':keyword:`async for`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:544: WARNING: inconsistent term references in translated message. original: [':term:`generator iterator`', ':keyword:`yield`', ':func:`next`'], translated: [':term:`generator iterator`', ':keyword:`yield`', ':keyword:`yield`', ':func:`next`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:800: WARNING: inconsistent term references in translated message. original: [':keyword:`if`'], translated: [':keyword:`if`', ':keyword:`if`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:983: WARNING: inconsistent term references in translated message. original: [':term:`function`', ':term:`argument`'], translated: [':term:`関数 `', ':term:`メソッド `', ':term:`実引数 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/argparse.rst:11: WARNING: inconsistent term references in translated message. original: [':mod:`argparse`'], translated: [':mod:`argparse`', ':mod:`argparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/typeobj.rst:961: WARNING: inconsistent term references in translated message. original: [':func:`str`', ':class:`str`', ':func:`str`', ':c:func:`PyObject_Str`', ':c:func:`PyObject_Str`'], translated: [':func:`str`', ':class:`str`', ':func:`str`', ':class:`str`', ':c:func:`PyObject_Str`', ':c:func:`PyObject_Str`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/typeobj.rst:1498: WARNING: inconsistent term references in translated message. original: [':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`'], translated: [':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/enum.rst:1089: WARNING: inconsistent term references in translated message. original: [':func:`dir`'], translated: [':func:`dir`', ':func:`dir`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/functional.rst:726: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`zip`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/logging-cookbook.rst:858: WARNING: inconsistent term references in translated message. original: [':class:`Logger`', ':class:`Logger`', ':class:`Logger`'], translated: [':class:`Logger`', ':class:`Logger`', ':class:`Logger`', ':class:`Logger`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/argparse.rst:986: WARNING: inconsistent references in translated message. original: ['type_', 'default_'], translated: ['type_', 'default_', 'default_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/array.rst:129: WARNING: inconsistent term references in translated message. original: [':ref:`bufferobjects`'], translated: [':meth:`buffer_info`', ':ref:`bufferobjects`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/ast.rst:2150: WARNING: inconsistent term references in translated message. original: [':func:`ast.parse`', ':class:`ast.operator`', ':class:`ast.unaryop`', ':class:`ast.cmpop`', ':class:`ast.boolop`', ':class:`ast.expr_context`', ':class:`ast.Add`'], translated: [':func:`ast.parse`', ':class:`ast.operator`', ':class:`ast.unaryop`', ':class:`ast.cmpop`', ':class:`ast.boolop`', ':class:`ast.expr_context`', ':class:`ast.Add`', ':class:`ast.Add`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/asyncio-dev.rst:89: WARNING: inconsistent term references in translated message. original: [':func:`run_coroutine_threadsafe`', ':class:`concurrent.futures.Future`'], translated: [':func:`run_coroutine_threadsafe`', ':func:`run_coroutine_threadsafe`', ':class:`concurrent.futures.Future`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:433: WARNING: inconsistent term references in translated message. original: [':keyword:`pass`'], translated: [':keyword:`pass`', ':keyword:`pass`', ':keyword:`pass`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:700: WARNING: inconsistent term references in translated message. original: [], translated: [':keyword:`break`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:728: WARNING: inconsistent term references in translated message. original: [':keyword:`continue`', ':keyword:`for`', ':keyword:`while`'], translated: [':keyword:`continue`', ':keyword:`for`', ':keyword:`while`', ':keyword:`continue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:922: WARNING: inconsistent term references in translated message. original: [':mod:`__future__`'], translated: [':mod:`__future__`', ':mod:`__future__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/toplevel_components.rst:28: WARNING: inconsistent term references in translated message. original: [':mod:`sys`', ':mod:`builtins`', ':mod:`__main__`'], translated: [':mod:`sys`', ':mod:`builtins`', ':mod:`__main__`', ':mod:`__main__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:556::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:51: WARNING: inconsistent term references in translated message. original: [':keyword:`for`'], translated: [':keyword:`for`', ':keyword:`for`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:259: WARNING: inconsistent term references in translated message. original: [':keyword:`pass`'], translated: [':keyword:`pass`', ':keyword:`pass`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:482: WARNING: inconsistent term references in translated message. original: [':keyword:`def`'], translated: [':keyword:`def`', ':keyword:`def`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:556::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:217: WARNING: inconsistent term references in translated message. original: [':keyword:`try`', ':keyword:`except`'], translated: [':keyword:`try`', ':keyword:`except`', ':keyword:`else`', ':keyword:`except`', ':keyword:`else`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/inputoutput.rst:263: WARNING: inconsistent term references in translated message. original: [':func:`print`'], translated: [':func:`print`', ':func:`print`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/interactive.rst:19: WARNING: inconsistent term references in translated message. original: [':ref:`automatically enabled `', ':meth:`~object.__getattr__`'], translated: [':ref:`自動的に有効化されます `', ':meth:`~object.__getattr__`', ':meth:`~object.__getattr__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/introduction.rst:542: WARNING: inconsistent term references in translated message. original: [':func:`print`'], translated: [':func:`print`', ':func:`print`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/modules.rst:309: WARNING: inconsistent term references in translated message. original: [':func:`dir`'], translated: [':func:`dir`', ':func:`dir`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:66: WARNING: inconsistent term references in translated message. original: [':mod:`sys`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:53: WARNING: inconsistent term references in translated message. original: [':mod:`locale`'], translated: [':mod:`locale`', ':mod:`locale`', ':func:`format`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:103: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`~string.Template`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:198: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`threading`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:234: WARNING: inconsistent term references in translated message. original: [':const:`~logging.DEBUG`', ':const:`~logging.INFO`', ':const:`~logging.WARNING`', ':const:`~logging.ERROR`', ':const:`~logging.CRITICAL`'], translated: [':meth:`~logging.Logger.info`', ':meth:`~logging.Logger.debug`', ':const:`~logging.DEBUG`', ':const:`~logging.INFO`', ':const:`~logging.WARNING`', ':const:`~logging.ERROR`', ':const:`~logging.CRITICAL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:380: WARNING: inconsistent term references in translated message. original: [':class:`~decimal.Decimal`'], translated: [':class:`~decimal.Decimal`', ':class:`~decimal.Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/using/windows.rst:629: WARNING: inconsistent term references in translated message. original: [':ref:`launcher`'], translated: [':envvar:`PATH`', ':envvar:`PATHEXT`', ':ref:`launcher`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:161: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:299: WARNING: inconsistent term references in translated message. original: [], translated: [':keyword:`if`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:411: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:1103: WARNING: inconsistent term references in translated message. original: [':mod:`mmap`', ':mod:`re`'], translated: [':mod:`mmap`', ':term:`mutable`', ':mod:`re`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.2.rst:571: WARNING: inconsistent term references in translated message. original: [':keyword:`yield`', ':keyword:`return`', ':keyword:`try`', ':keyword:`finally`'], translated: [':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:43: WARNING: inconsistent term references in translated message. original: [':class:`Set`'], translated: [':class:`Set`', ':term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:156: WARNING: inconsistent term references in translated message. original: [':keyword:`yield`', ':keyword:`return`', ':keyword:`try`'], translated: [':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:291: WARNING: inconsistent term references in translated message. original: [':mod:`zipimport`'], translated: [':mod:`zipimport`', ':mod:`zipimport`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:344: WARNING: inconsistent term references in translated message. original: [':func:`open`', ':func:`os.listdir`'], translated: [':func:`open`', ':func:`os.listdir`', ':func:`os.getcwdu`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:888: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:1698: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:1720: WARNING: inconsistent term references in translated message. original: [':meth:`~datetime.datetime.isoformat`', ':class:`~datetime.date`', ':class:`~datetime.datetime`', ':class:`~datetime.timedelta`', ':class:`~datetime.date`', ':class:`~datetime.datetime`'], translated: [':meth:`~datetime.datetime.isoformat`', ':class:`~datetime.datetime`', ':class:`~datetime.timedelta`', ':class:`~datetime.date`', ':class:`~datetime.datetime`', ':class:`~datetime.date`', ':class:`~datetime.datetime`', ':class:`~datetime.datetime`', ':meth:`~datetime.strptime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:1736: WARNING: inconsistent term references in translated message. original: [':mod:`getopt`', ':mod:`optparse`'], translated: [':mod:`getopt`', ':mod:`optparse`', ':mod:`optparse`', ':mod:`argparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.4.rst:71: WARNING: inconsistent term references in translated message. original: [':func:`frozenset`', ':func:`set`'], translated: [':func:`frozenset`', ':func:`set`', ':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.4.rst:75: WARNING: inconsistent term references in translated message. original: [':mod:`sets`', ':class:`Set`', ':class:`ImmutableSet`'], translated: [':mod:`sets`', ':class:`Set`', ':class:`ImmutableSet`', ':mod:`sets`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.4.rst:545: WARNING: inconsistent term references in translated message. original: [':class:`Decimal`', ':class:`Decimal`'], translated: [':class:`Decimal`', ':term:`immutable`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:504: WARNING: inconsistent term references in translated message. original: [':meth:`close`', ':exc:`GeneratorExit`', ':exc:`GeneratorExit`', ':exc:`StopIteration`', ':exc:`GeneratorExit`', ':exc:`RuntimeError`', ':meth:`close`'], translated: [':meth:`close`', ':exc:`GeneratorExit`', ':exc:`GeneratorExit`', ':exc:`StopIteration`', ':exc:`RuntimeError`', ':meth:`close`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:848: WARNING: inconsistent term references in translated message. original: [':exc:`BaseException`', ':exc:`BaseException`', ':exc:`Exception`'], translated: [':exc:`BaseException`', ':exc:`BaseException`', ':exc:`Exception`', ':exc:`BaseException`', ':exc:`BaseException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:1081: WARNING: inconsistent term references in translated message. original: [':class:`UnicodeDecodeError`', ':class:`UnicodeDecodeError`'], translated: [':class:`UnicodeDecodeError`', ':class:`UnicodeDecodeError`', ':class:`UnicodeDecodeError`', ':class:`UnicodeWarning`', ':exc:`KeyError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:1706: WARNING: inconsistent term references in translated message. original: [':func:`c_char_p`', ':func:`create_string_buffer`'], translated: [':func:`c_char_p`', ':term:`immutable`', ':func:`create_string_buffer`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:1998: WARNING: inconsistent term references in translated message. original: [':meth:`fetchone`', ':meth:`fetchall`'], translated: [':term:`iterator`', ':meth:`~Cursor.fetchone`', ':meth:`~Cursor.fetchall`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:984: WARNING: inconsistent term references in translated message. original: [':class:`bytes`', ':class:`bytearray`'], translated: [':class:`bytes`', ':term:`immutable`', ':class:`bytearray`', ':term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:999: WARNING: inconsistent term references in translated message. original: [':meth:`startswith`', ':meth:`endswith`', ':meth:`find`', ':meth:`rfind`', ':meth:`append`', ':meth:`pop`', ':meth:`reverse`'], translated: [':class:`bytearray`', ':meth:`startswith`', ':meth:`endswith`', ':meth:`find`', ':meth:`rfind`', ':meth:`append`', ':meth:`pop`', ':meth:`reverse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:1490: WARNING: inconsistent term references in translated message. original: [':func:`hasattr`', ':meth:`__getattr__`', ':func:`hasattr`', ':exc:`KeyboardInterrupt`', ':exc:`SystemExit`', ':func:`hasattr`'], translated: [':func:`hasattr`', ':meth:`__getattr__`', ':exc:`KeyboardInterrupt`', ':exc:`SystemExit`', ':func:`hasattr`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:1531: WARNING: inconsistent term references in translated message. original: [':meth:`index`', ':meth:`count`', ':meth:`index`', ':meth:`count`'], translated: [':meth:`index`', ':meth:`count`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:1954: WARNING: inconsistent term references in translated message. original: [':func:`reduce`', ':mod:`functools`', ':func:`reduce`', ':mod:`functools`'], translated: [':func:`reduce`', ':mod:`functools`', ':mod:`functools`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.rst:117: WARNING: inconsistent references in translated message. original: ['`ZIP bomb`_'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:406: WARNING: inconsistent term references in translated message. original: [':class:`NodeList`', ':class:`Element`', ':meth:`getElementsByTagName`', ':meth:`getElementsByTagNameNS`', ':class:`Node`'], translated: [':class:`NodeList`', ':class:`Element`', ':class:`NodeList`', ':class:`Node`', ':meth:`getElementsByTagName`', ':meth:`getElementsByTagNameNS`', ':class:`NodeList`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:505: WARNING: inconsistent term references in translated message. original: [':class:`Document`', ':class:`Node`'], translated: [':class:`Document`', ':class:`Document`', ':class:`Node`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:585: WARNING: inconsistent term references in translated message. original: [':class:`Element`', ':class:`Node`'], translated: [':class:`Element`', ':class:`Node`', ':class:`Node`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:746: WARNING: inconsistent term references in translated message. original: [':class:`Comment`', ':class:`Node`'], translated: [':class:`Comment`', ':class:`Comment`', ':class:`Node`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.minidom.rst:113: WARNING: inconsistent term references in translated message. original: [':mod:`xml.dom`', ':mod:`xml.dom.minidom`'], translated: [':mod:`xml.dom`', ':mod:`xml.dom`', ':mod:`xml.dom.minidom`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.etree.elementtree.rst:90: WARNING: inconsistent term references in translated message. original: [':func:`fromstring`', ':class:`Element`', ':class:`ElementTree`'], translated: [':func:`fromstring`', ':class:`Element`', ':class:`Element`', ':class:`ElementTree`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.sax.reader.rst:183: WARNING: inconsistent term references in translated message. original: [':exc:`SAXNotRecognizedException`'], translated: [':exc:`SAXNotRecognizedException`', ':exc:`SAXNotSupportedException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.sax.reader.rst:197: WARNING: inconsistent term references in translated message. original: [':exc:`SAXNotRecognizedException`'], translated: [':exc:`SAXNotRecognizedException`', ':exc:`SAXNotSupportedException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xmlrpc.client.rst:527: WARNING: inconsistent term references in translated message. original: [':exc:`Fault`', ':const:`None`'], translated: [':exc:`Fault`', ':const:`None`', ':const:`None`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xmlrpc.server.rst:100: WARNING: inconsistent term references in translated message. original: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`'], translated: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xmlrpc.server.rst:314: WARNING: inconsistent term references in translated message. original: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`'], translated: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/zipimport.rst:50: WARNING: inconsistent term references in translated message. original: [':mod:`importlib`'], translated: [':mod:`importlib`', ':keyword:`import`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:99: WARNING: inconsistent term references in translated message. original: [':ref:`booleans`', ':keyword:`if`', ':keyword:`else`'], translated: [':keyword:`if`', ':ref:`booleans`', ':keyword:`if`', ':keyword:`else`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:124: WARNING: inconsistent term references in translated message. original: [], translated: [':keyword:`while`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:259: WARNING: inconsistent term references in translated message. original: [':keyword:`try`'], translated: [':keyword:`except`', ':keyword:`try`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:442: WARNING: inconsistent term references in translated message. original: [':keyword:`return`', ':keyword:`break`', ':keyword:`continue`', ':keyword:`try`'], translated: [':keyword:`try`', ':keyword:`try`', ':keyword:`return`', ':keyword:`break`', ':keyword:`continue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:44: WARNING: inconsistent term references in translated message. original: [':func:`type`'], translated: [':func:`len`', ':func:`type`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:1893: WARNING: inconsistent term references in translated message. original: [':meth:`__new__`', ':meth:`__init__`', ':meth:`__init__`'], translated: [':meth:`__new__`', ':meth:`__init__`', ':meth:`__init__`', ':meth:`__init__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:1913: WARNING: inconsistent term references in translated message. original: [':meth:`__del__`', ':meth:`__del__`'], translated: [':meth:`__del__`', ':meth:`__del__`', ':meth:`__del__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:2239: WARNING: inconsistent term references in translated message. original: [':meth:`__getattr__`', ':meth:`__getattribute__`', ':exc:`AttributeError`', ':exc:`AttributeError`'], translated: [':meth:`__getattr__`', ':meth:`__getattr__`', ':meth:`__getattribute__`', ':exc:`AttributeError`', ':exc:`AttributeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/executionmodel.rst:81: WARNING: inconsistent term references in translated message. original: [':keyword:`del`'], translated: [':keyword:`del`', ':keyword:`del`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/executionmodel.rst:357: WARNING: inconsistent term references in translated message. original: [':keyword:`raise`', ':keyword:`try`', ':keyword:`except`', ':keyword:`finally`'], translated: [':keyword:`raise`', ':keyword:`try`', ':keyword:`except`', ':keyword:`try`', ':keyword:`finally`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/expressions.rst:1756: WARNING: inconsistent term references in translated message. original: [':keyword:`is`', ':keyword:`is not`', ':meth:`id`'], translated: [':keyword:`is`', ':keyword:`is not`', ':meth:`id`', ':keyword:`is`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/import.rst:225: WARNING: inconsistent term references in translated message. original: [':term:`import path`', ':term:`import path`'], translated: [':doc:`プログラミング FAQ <../faq/programming>`', ':term:`インポートパス `', ':term:`インポートパス `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/import.rst:427: WARNING: inconsistent term references in translated message. original: [':exc:`ImportError`', ':meth:`~importlib.abc.Loader.exec_module`'], translated: [':meth:`~importlib.abc.Loader.exec_module`', ':exc:`ImportError`', ':exc:`ImportError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:293: WARNING: inconsistent term references in translated message. original: [':meth:`~Thread.start`', ':meth:`~Thread.run`'], translated: [':meth:`~Thread.start`', ':meth:`start`', ':meth:`~Thread.run`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:328: WARNING: inconsistent term references in translated message. original: [':ref:`joined `'], translated: [':mod:`threading`', ':ref:`join `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:376: WARNING: inconsistent term references in translated message. original: [':meth:`~Thread.run`'], translated: [':meth:`~Thread.start`', ':meth:`~Thread.run`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:800: WARNING: inconsistent term references in translated message. original: [':class:`RLock`', ':meth:`release`', ':class:`RLock`'], translated: [':class:`RLock`', ':meth:`release`', ':meth:`release`', ':class:`RLock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:851: WARNING: inconsistent term references in translated message. original: [':meth:`wait`', ':meth:`notify`'], translated: [':meth:`wait`', ':meth:`notify`', ':meth:`notify`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:926: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`release`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:960: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`acquire`', ':meth:`release`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:989: WARNING: inconsistent term references in translated message. original: [':meth:`~Event.set`', ':meth:`clear`', ':meth:`wait`'], translated: [':meth:`~Event.set`', ':const:`True`', ':meth:`clear`', ':const:`False`', ':meth:`wait`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/time.rst:597: WARNING: inconsistent term references in translated message. original: [':func:`strftime`', ':func:`ctime`', ':exc:`ValueError`'], translated: [':func:`strftime`', ':func:`ctime`', ':exc:`ValueError`', ':exc:`ValueError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/time.rst:684: WARNING: inconsistent term references in translated message. original: [':func:`mktime`', ':attr:`tm_isdst`'], translated: [':func:`mktime`', ':attr:`tm_isdst`', ':attr:`tm_isdst`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/time.rst:688: WARNING: inconsistent term references in translated message. original: [':class:`struct_time`', ':exc:`TypeError`'], translated: [':class:`struct_time`', ':class:`struct_time`', ':class:`struct_time`', ':exc:`TypeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/tkinter.rst:758: WARNING: inconsistent term references in translated message. original: [':meth:`_root`'], translated: [':meth:`_root`', ':mod:`Tkinter`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/tkinter.ttk.rst:760: WARNING: inconsistent term references in translated message. original: [':class:`Sizegrip`'], translated: [':class:`Sizegrip`', ':class:`Sizegrip`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/typing.rst:1143: WARNING: inconsistent term references in translated message. original: [':ref:`union type expressions`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:399: WARNING: inconsistent term references in translated message. original: [':meth:`~TestCase.setUp`'], translated: [':meth:`~TestCase.setUp`', ':meth:`~TestCase.setUp`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:727: WARNING: inconsistent term references in translated message. original: [':class:`TestCase`', ':mod:`unittest`'], translated: [':class:`TestCase`', ':mod:`unittest`', ':class:`TestCase`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:813: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`TestCase`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1407: WARNING: inconsistent term references in translated message. original: [':exc:`AssertionError`'], translated: [':meth:`test`', ':exc:`AssertionError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1811: WARNING: inconsistent term references in translated message. original: [':class:`TestCase`'], translated: [':class:`TestCase`', ':meth:`loadTestsFromModule`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1845: WARNING: inconsistent term references in translated message. original: [':mod:`SampleTests`', ':class:`TestCase`', ':class:`SampleTestCase`', ':meth:`test_one`', ':meth:`test_two`', ':meth:`test_three`', ':meth:`test_two`'], translated: [':mod:`SampleTests`', ':class:`TestCase`', ':class:`SampleTestCase`', ':class:`SampleTestCase`', ':meth:`test_one`', ':meth:`test_two`', ':meth:`test_three`', ':class:`SampleTestCase`', ':meth:`test_two`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1995: WARNING: inconsistent term references in translated message. original: [':mod:`unittest`', ':class:`TestResult`', ':class:`TestResult`', ':meth:`TestRunner.run`'], translated: [':mod:`unittest`', ':meth:`TestRunner.run`', ':class:`TestResult`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:2082: WARNING: inconsistent term references in translated message. original: [':attr:`shouldStop`', ':class:`TestRunner`'], translated: [':class:`TestResult`', ':attr:`shouldStop`', ':class:`TestRunner`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:2212: WARNING: inconsistent term references in translated message. original: [':class:`TestLoader`', ':class:`TestLoader`'], translated: [':class:`TestLoader`', ':class:`TestLoader`', ':class:`TestLoader`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.mock.rst:59: WARNING: inconsistent term references in translated message. original: [':class:`Mock`', ':class:`MagicMock`'], translated: [':class:`Mock`', ':class:`MagicMock`', ':class:`Mock`', ':class:`MagicMock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.mock.rst:156: WARNING: inconsistent term references in translated message. original: [':class:`MagicMock`'], translated: [':class:`MagicMock`', ':class:`Mock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.mock.rst:1444: WARNING: inconsistent term references in translated message. original: [':class:`MagicMock`'], translated: [':class:`MagicMock`', ':class:`MagicMock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/urllib.request.rst:661: WARNING: inconsistent term references in translated message. original: [':func:`urlopen`', ':meth:`open`', ':class:`OpenerDirector`'], translated: [':func:`urlopen`', ':func:`urlopen`', ':class:`OpenerDirector`', ':meth:`open`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/urllib.request.rst:1533: WARNING: inconsistent term references in translated message. original: [':class:`FancyURLopener`', ':meth:`prompt_user_passwd`'], translated: [':class:`FancyURLopener`', ':meth:`prompt_user_passwd`', ':meth:`prompt_user_passwd`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pickle.rst:200: WARNING: inconsistent term references in translated message. original: [':ref:`protocol version `', ':data:`HIGHEST_PROTOCOL`'], translated: [':ref:`プロトコルバージョン `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/platform.rst:82: WARNING: inconsistent term references in translated message. original: [':func:`mac_ver`'], translated: [':func:`mac_ver`', ':func:`mac_ver`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/poplib.rst:22: WARNING: inconsistent term references in translated message. original: [':class:`POP3_SSL`'], translated: [':class:`POP3_SSL`', ':class:`POP3_SSL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:356: WARNING: inconsistent term references in translated message. original: [':mod:`profile`', ':mod:`cProfile`', ':class:`~pstats.Stats`', ':meth:`~pstats.Stats.add`'], translated: [':class:`Stats`', ':mod:`profile`', ':mod:`cProfile`', ':class:`~pstats.Stats`', ':meth:`~pstats.Stats.add`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:679: WARNING: inconsistent term references in translated message. original: [':class:`profile.Profile`', ':class:`cProfile.Profile`'], translated: [':func:`your_time_func`', ':class:`profile.Profile`', ':class:`cProfile.Profile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:684: WARNING: inconsistent term references in translated message. original: [':func:`os.times`'], translated: [':func:`your_time_func`', ':func:`os.times`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:700: WARNING: inconsistent term references in translated message. original: [':class:`Profile`'], translated: [':func:`your_time_func`', ':class:`Profile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pyexpat.rst:520: WARNING: inconsistent term references in translated message. original: [':attr:`DefaultHandler`'], translated: [':attr:`DefaultHandler`', ':attr:`DefaultHandler`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/readline.rst:12: WARNING: inconsistent term references in translated message. original: [':mod:`readline`', ':mod:`rlcompleter`', ':func:`input`'], translated: [':mod:`readline`', ':mod:`rlcompleter`', ':mod:`rlcompleter`', ':func:`input`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/secrets.rst:24: WARNING: inconsistent term references in translated message. original: [':mod:`secrets`', ':mod:`random`'], translated: [':mod:`random`', ':mod:`secrets`', ':mod:`random`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/gettext.rst:132: WARNING: inconsistent term references in translated message. original: [':envvar:`LANGUAGE`', ':envvar:`LC_ALL`', ':envvar:`LC_MESSAGES`', ':envvar:`LANG`'], translated: [':envvar:`LANGUAGE`', ':envvar:`LC_ALL`', ':envvar:`LC_MESSAGES`', ':envvar:`LANG`', ':func:`find`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/http.cookiejar.rst:630: WARNING: inconsistent term references in translated message. original: [':const:`None`', ':attr:`version`', ':mod:`http.cookiejar`', ':attr:`version`'], translated: [':const:`None`', ':mod:`http.cookiejar`', ':attr:`version`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/http.server.rst:27: WARNING: inconsistent term references in translated message. original: [':class:`HTTPServer`', ':class:`socketserver.TCPServer`'], translated: [':class:`HTTPServer`', ':class:`socketserver.TCPServer`', ':class:`HTTPServer`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/importlib.rst:193: WARNING: inconsistent term references in translated message. original: [':keyword:`from`', ':keyword:`import`', ':func:`reload`'], translated: [':keyword:`from`', ':keyword:`import`', ':func:`reload`', ':keyword:`from`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/importlib.rst:416: WARNING: inconsistent term references in translated message. original: [':exc:`ImportError`'], translated: [':class:`code`', ':exc:`ImportError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/importlib.rst:1439: WARNING: inconsistent term references in translated message. original: [':class:`~importlib.machinery.ModuleSpec`', ':term:`loader`', ':meth:`InspectLoader.is_package`'], translated: [':class:`~importlib.machinery.ModuleSpec`', ':term:`loader`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/io.rst:263: WARNING: inconsistent term references in translated message. original: [':class:`IOBase`', ':exc:`UnsupportedOperation`'], translated: [':class:`IOBase`', ':class:`IOBase`', ':exc:`UnsupportedOperation`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/itertools.rst:758: WARNING: inconsistent term references in translated message. original: [':func:`list`', ':func:`tee`'], translated: [':func:`tee`', ':func:`tee`', ':func:`list`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/shlex.rst:299: WARNING: inconsistent term references in translated message. original: [':meth:`~io.IOBase.close`'], translated: [':const:`None`', ':meth:`~io.IOBase.close`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/shutil.rst:310: WARNING: inconsistent term references in translated message. original: [':func:`rmtree`', ':func:`rmtree`', ':data:`rmtree.avoids_symlink_attacks`'], translated: [':func:`rmtree`', ':func:`rmtree`', ':func:`rmtree`', ':data:`rmtree.avoids_symlink_attacks`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/signal.rst:291: WARNING: inconsistent term references in translated message. original: [], translated: [':const:`SIGVTALRM`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/signal.rst:297: WARNING: inconsistent term references in translated message. original: [], translated: [':const:`SIGPROF`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/site.rst:165: WARNING: inconsistent term references in translated message. original: [':mod:`readline`', ':mod:`rlcompleter`', ':ref:`interactive mode `', ':option:`-S`', ':data:`sys.__interactivehook__`', ':mod:`sitecustomize`', ':mod:`usercustomize`', ':envvar:`PYTHONSTARTUP`'], translated: [':mod:`readline`', ':ref:`対話モード `', ':option:`-S`', ':mod:`rlcompleter`', ':mod:`sitecustomize`', ':mod:`usercustomize`', ':envvar:`PYTHONSTARTUP`', ':data:`sys.__interactivehook__`', ':data:`~sys.__interactivehook__`', ':mod:`sitecustomize`', ':data:`~sys.__interactivehook__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:729: WARNING: inconsistent term references in translated message. original: [':const:`AF_INET`', ':const:`AF_INET6`', ':const:`AF_UNIX`', ':const:`AF_CAN`', ':const:`AF_PACKET`', ':const:`AF_RDS`', ':const:`SOCK_STREAM`', ':const:`SOCK_DGRAM`', ':const:`SOCK_RAW`', ':const:`AF_CAN`', ':const:`CAN_RAW`', ':const:`CAN_BCM`', ':const:`CAN_ISOTP`', ':const:`CAN_J1939`'], translated: [':const:`AF_INET`', ':const:`AF_INET6`', ':const:`AF_UNIX`', ':const:`AF_CAN`', ':const:`AF_PACKET`', ':const:`AF_RDS`', ':const:`SOCK_STREAM`', ':const:`SOCK_DGRAM`', ':const:`SOCK_RAW`', ':const:`AF_CAN`', ':const:`CAN_BCM`', ':const:`CAN_ISOTP`', ':const:`CAN_J1939`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:1022: WARNING: inconsistent term references in translated message. original: [':func:`gethostbyname_ex`', ':func:`gethostbyname`', ':func:`getaddrinfo`'], translated: [':func:`gethostbyname`', ':func:`gethostbyname_ex`', ':func:`gethostbyname`', ':func:`getaddrinfo`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:1432: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`継承不可 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:1526: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`継承不可 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:2091: WARNING: inconsistent term references in translated message. original: [':func:`getdefaulttimeout`', ':const:`None`', ':meth:`~socket.accept`'], translated: [':func:`getdefaulttimeout`', ':const:`None`', ':meth:`~socket.accept`', ':const:`None`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:172: WARNING: inconsistent term references in translated message. original: [':class:`list`'], translated: [':class:`タプル `', ':class:`リスト `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:1711: WARNING: inconsistent term references in translated message. original: [':class:`tuple`', ':class:`sqlite3.Row`', ':term:`callable`', ':class:`Cursor`'], translated: [':class:`カーソル `', ':class:`タプル `', ':class:`sqlite3.Row`', ':class:`Cursor`', ':class:`タプル `', ':term:`呼び出し可能オブジェクト `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:1718: WARNING: inconsistent term references in translated message. original: [':attr:`Connection.row_factory`', ':attr:`Connection.row_factory`'], translated: [':class:`カーソル・オブジェクト `', ':attr:`Connection.row_factory`', ':attr:`Connection.row_factory`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2404: WARNING: inconsistent term references in translated message. original: [':class:`Connection`', ':keyword:`with`', ':attr:`~Connection.autocommit`'], translated: [':class:`Connection`', ':keyword:`with`', ':keyword:`with`', ':attr:`~Connection.autocommit`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2505: WARNING: inconsistent term references in translated message. original: [':class:`tuple`', ':class:`sqlite3.Row`', ':attr:`~Cursor.row_factory`'], translated: [':class:`タプル `', ':class:`タプル `', ':class:`sqlite3.Row`', ':attr:`~Cursor.row_factory`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2515: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`タプル `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2557: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`タプル `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2707: WARNING: inconsistent term references in translated message. original: [':attr:`Connection.autocommit`', ':data:`LEGACY_TRANSACTION_CONTROL`', ':attr:`Connection.isolation_level`'], translated: [':attr:`Connection.autocommit`', ':data:`LEGACY_TRANSACTION_CONTROL`', ':attr:`Connection.isolation_level`', ':data:`LEGACY_TRANSACTION_CONTROL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3206: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`bytearray.isspace`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3262: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`bytearray.isspace`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3339: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`bytearray.isspace`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3946: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`~memoryview.format`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:4401: WARNING: inconsistent term references in translated message. original: [':class:`set`'], translated: [':class:`set`', ':class:`frozenset`', ':class:`set`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:4410: WARNING: inconsistent term references in translated message. original: [':term:`hashable`', ':class:`frozenset`'], translated: [':class:`set`', ':class:`frozenset`', ':term:`ハッシュ可能 `', ':class:`frozenset`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:4570: WARNING: inconsistent term references in translated message. original: [':meth:`~object.__contains__`', ':meth:`remove`', ':meth:`discard`'], translated: [':meth:`~object.__contains__`', ':meth:`remove`', ':meth:`discard`', ':class:`frozenset`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:5031: WARNING: inconsistent term references in translated message. original: [':term:`generator`', ':class:`contextlib.contextmanager`', ':class:`contextlib.contextmanager`', ':meth:`~contextmanager.__enter__`', ':meth:`~contextmanager.__exit__`'], translated: [':term:`ジェネレータ `', ':class:`contextlib.contextmanager`', ':term:`デコレータ `', ':class:`contextlib.contextmanager`', ':meth:`~contextmanager.__enter__`', ':meth:`~contextmanager.__exit__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/subprocess.rst:46: WARNING: inconsistent term references in translated message. original: [':ref:`frequently-used-arguments`', ':class:`Popen`'], translated: [':ref:`frequently-used-arguments`', ':class:`Popen`', ':class:`Popen`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/subprocess.rst:353: WARNING: inconsistent term references in translated message. original: [':class:`Popen`'], translated: [':class:`Popen`', ':class:`Popen`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sys.rst:1868: WARNING: inconsistent term references in translated message. original: [':data:`~io.TextIOBase.buffer`', ':data:`stdout`'], translated: [':data:`~io.TextIOBase.buffer`', ':class:`bytes`', ':data:`stdout`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/tarfile.rst:559: WARNING: inconsistent term references in translated message. original: [':class:`TarInfo`', ':class:`io.BufferedReader`', ':const:`None`', ':exc:`KeyError`'], translated: [':class:`TarInfo`', ':class:`io.BufferedReader`', ':const:`None`', ':const:`None`', ':exc:`KeyError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/locale.rst:364: WARNING: inconsistent term references in translated message. original: [':func:`setlocale`'], translated: [':func:`setlocale`', ':func:`setlocale`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/logging.rst:946: WARNING: inconsistent term references in translated message. original: [':class:`LogRecord`', ':func:`getLogRecordFactory`', ':func:`setLogRecordFactory`'], translated: [':class:`LogRecord`', ':func:`getLogRecordFactory`', ':func:`setLogRecordFactory`', ':func:`setLogRecordFactory`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/logging.rst:1303: WARNING: inconsistent term references in translated message. original: [], translated: [':const:`INFO`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/logging.config.rst:30: WARNING: inconsistent term references in translated message. original: [':mod:`logging.config`', ':mod:`logging`', ':mod:`logging`', ':mod:`logging.handlers`'], translated: [':mod:`logging.config`', ':mod:`logging`', ':mod:`logging`', ':mod:`logging`', ':mod:`logging.handlers`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mailbox.rst:165: WARNING: inconsistent term references in translated message. original: [':term:`iterator`', ':class:`Message`'], translated: [':class:`Message`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mailbox.rst:598: WARNING: inconsistent term references in translated message. original: [':meth:`~Mailbox.flush`', ':meth:`~Mailbox.close`'], translated: [':meth:`~Mailbox.flush`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mailbox.rst:877: WARNING: inconsistent term references in translated message. original: [':meth:`~Mailbox.flush`', ':meth:`~Mailbox.close`'], translated: [':meth:`~Mailbox.flush`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mmap.rst:180: WARNING: inconsistent term references in translated message. original: [], translated: [':exc:`ValueError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/multiprocessing.rst:1330: WARNING: inconsistent term references in translated message. original: [':meth:`Lock.acquire`'], translated: [':class:`threading.BoundedSemaphore`', ':meth:`Lock.acquire`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/multiprocessing.rst:1468: WARNING: inconsistent term references in translated message. original: [':meth:`Lock.acquire`'], translated: [':class:`threading.BoundedSemaphore`', ':meth:`Lock.acquire`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/multiprocessing.rst:2832: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`threading`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:364: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:400: WARNING: inconsistent term references in translated message. original: [':meth:`~OptionParser.parse_args`'], translated: [':meth:`~OptionParser.parse_args`', ':mod:`optionparser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:567: WARNING: inconsistent term references in translated message. original: [':meth:`set_defaults`', ':meth:`~OptionParser.parse_args`'], translated: [':class:`OptionParser`', ':meth:`set_defaults`', ':meth:`~OptionParser.parse_args`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:585: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':attr:`~Option.help`'], translated: [':mod:`optparse`', ':attr:`~Option.help`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:606: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':meth:`parser.print_help`'], translated: [':mod:`optparse`', ':meth:`parser.print_help`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:782: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:788: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':mod:`optparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:868: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':meth:`~OptionParser.exit`', ':meth:`~OptionParser.error`'], translated: [':mod:`optparse`', ':class:`OptionParser`', ':meth:`~OptionParser.exit`', ':meth:`~OptionParser.error`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:981: WARNING: inconsistent term references in translated message. original: [':func:`make_option`'], translated: [':func:`make_option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:983: WARNING: inconsistent term references in translated message. original: [':func:`make_option`'], translated: [':func:`make_option`', ':class:`Option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:987: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:998: WARNING: inconsistent term references in translated message. original: [':func:`make_option`', ':mod:`optparse`', ':func:`make_option`'], translated: [':func:`make_option`', ':class:`Option`', ':class:`Option`', ':mod:`optparse`', ':class:`Option`', ':func:`make_option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1009: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1027: WARNING: inconsistent term references in translated message. original: [':attr:`~Option.action`', ':mod:`optparse`', ':exc:`OptionError`'], translated: [':class:`Option`', ':attr:`~Option.action`', ':mod:`optparse`', ':exc:`OptionError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1358: WARNING: inconsistent term references in translated message. original: [':attr:`~Option.help`'], translated: [':class:`OptionParser`', ':attr:`~Option.help`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1367: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':attr:`~Option.help`'], translated: [':mod:`optparse`', ':class:`OptionParser`', ':attr:`~Option.help`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1403: WARNING: inconsistent term references in translated message. original: [':attr:`~Option.help`', ':mod:`optparse`'], translated: [':class:`OptionParser`', ':class:`OptionParser`', ':meth:`print_version`', ':class:`OptionParser`', ':attr:`~Option.help`', ':mod:`optparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1495: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1526: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1531: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1554: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1584: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':mod:`optparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1595: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1755: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1772: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1992: WARNING: inconsistent term references in translated message. original: [':attr:`TYPES`'], translated: [':attr:`TYPES`', ':attr:`TYPES`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1997: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`TYPE_CHECKER`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:2161: WARNING: inconsistent term references in translated message. original: [':meth:`ensure_value`', ':meth:`ensure_value`'], translated: [':meth:`ensure_value`', ':meth:`ensure_value`', ':meth:`ensure_value`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:420: WARNING: inconsistent term references in translated message. original: [':func:`getpass.getuser`', ':envvar:`LOGNAME`', ':envvar:`USERNAME`'], translated: [':func:`getpass.getuser`', ':func:`getpass.getuser`', ':envvar:`LOGNAME`', ':envvar:`USERNAME`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:1272: WARNING: inconsistent term references in translated message. original: [':func:`open`', ':term:`file object`', ':meth:`~file.read`', ':meth:`~file.write`', ':func:`fdopen`'], translated: [':func:`open`', ':func:`open`', ':meth:`~file.read`', ':meth:`~file.write`', ':term:`ファイルオブジェクト `', ':func:`fdopen`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:1943: WARNING: inconsistent term references in translated message. original: [':data:`os.supports_fd`', ':exc:`NotImplementedError`'], translated: [':data:`os.supports_fd`', ':data:`os.supports_fd`', ':exc:`NotImplementedError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:4800: WARNING: inconsistent term references in translated message. original: [':mod:`subprocess`', ':ref:`subprocess-replacements`'], translated: [':mod:`subprocess`', ':mod:`subprocess`', ':mod:`subprocess`', ':ref:`subprocess-replacements`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:4966: WARNING: inconsistent term references in translated message. original: [':mod:`subprocess`', ':ref:`subprocess-replacements`', ':mod:`subprocess`'], translated: [':mod:`subprocess`', ':mod:`subprocess`', ':mod:`subprocess`', ':ref:`subprocess-replacements`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:31: WARNING: inconsistent term references in translated message. original: [':class:`Path`', ':ref:`concrete path `'], translated: [':class:`Path`', ':class:`Path`', ':ref:`具象パス `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:124: WARNING: inconsistent term references in translated message. original: [':class:`os.PathLike`', ':meth:`~os.PathLike.__fspath__`'], translated: [':class:`os.PathLike`', ':class:`os.PathLike`', ':meth:`~os.PathLike.__fspath__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:667: WARNING: inconsistent term references in translated message. original: [':attr:`name`'], translated: [':attr:`name`', ':attr:`name`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:684: WARNING: inconsistent term references in translated message. original: [':attr:`stem`'], translated: [':attr:`stem`', ':attr:`stem`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:987: WARNING: inconsistent term references in translated message. original: [':meth:`~Path.exists`', ':meth:`~Path.is_dir`', ':meth:`~Path.is_file`', ':meth:`~Path.is_mount`', ':meth:`~Path.is_symlink`', ':meth:`~Path.is_block_device`', ':meth:`~Path.is_char_device`', ':meth:`~Path.is_fifo`', ':meth:`~Path.is_socket`'], translated: [':meth:`~Path.exists`', ':meth:`~Path.is_dir`', ':meth:`~Path.is_file`', ':meth:`~Path.is_mount`', ':meth:`~Path.is_symlink`', ':meth:`~Path.is_block_device`', ':meth:`~Path.is_char_device`', ':meth:`~Path.is_socket`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:16: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`'], translated: [':mod:`doctest`', ':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:232: WARNING: inconsistent term references in translated message. original: [':func:`testfile`', ':ref:`doctest-basic-api`'], translated: [':func:`testfile`', ':func:`testfile`', ':ref:`doctest-basic-api`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:348: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:646: WARNING: inconsistent term references in translated message. original: [':const:`IGNORE_EXCEPTION_DETAIL`'], translated: [':mod:`doctest`', ':const:`IGNORE_EXCEPTION_DETAIL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:901: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`testfile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1051: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`DocFileSuite`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1165: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`', ':mod:`doctest`', ':mod:`unittest`'], translated: [':mod:`doctest`', ':mod:`unittest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1247: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`DocTest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1303: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Example`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1374: WARNING: inconsistent term references in translated message. original: [':class:`DocTestParser`'], translated: [':class:`DocTest`', ':class:`DocTestParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1402: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`DocTestFinder`', ':class:`DocTest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1451: WARNING: inconsistent term references in translated message. original: [':class:`Example`'], translated: [':class:`Example`', ':class:`Example`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1458: WARNING: inconsistent term references in translated message. original: [':class:`Example`', ':class:`Example`'], translated: [':class:`Example`', ':class:`Example`', ':class:`Example`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1661: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1671: WARNING: inconsistent term references in translated message. original: [':mod:`unittest`', ':func:`DocTestSuite`', ':meth:`debug`', ':class:`unittest.TestCase`'], translated: [':func:`DocTestSuite`', ':mod:`unittest`', ':meth:`debug`', ':meth:`debug`', ':class:`unittest.TestCase`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1813: WARNING: inconsistent term references in translated message. original: [':class:`DebugRunner`', ':class:`DebugRunner`'], translated: [':class:`DebugRunner`', ':class:`DebugRunner`', ':class:`DebugRunner`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1909: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`doctest`', ':mod:`doctest`', ':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/email.header.rst:110: WARNING: inconsistent term references in translated message. original: [], translated: [':exc:`UnicodeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/asyncio-protocol.rst:508: WARNING: inconsistent term references in translated message. original: [':const:`None`'], translated: [':const:`None`', ':const:`None`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/bdb.rst:28: WARNING: inconsistent term references in translated message. original: [':attr:`bpbynumber`', ':attr:`bplist`', ':class:`Breakpoint`'], translated: [':attr:`bpbynumber`', ':attr:`bplist`', ':attr:`bpbynumber`', ':class:`Breakpoint`', ':attr:`bplist`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/codecs.rst:929: WARNING: inconsistent term references in translated message. original: [':term:`text encodings `'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/codecs.rst:1494: WARNING: inconsistent term references in translated message. original: [':mod:`socket`', ':mod:`http.client`', ':mod:`ftplib`', ':mod:`http.client`'], translated: [':mod:`socket`', ':mod:`socket`', ':mod:`http.client`', ':mod:`ftplib`', ':mod:`http.client`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/collections.abc.rst:268: WARNING: inconsistent term references in translated message. original: [':term:`sequences `'], translated: [':term:`シーケンス `', ':term:`シーケンス `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/collections.abc.rst:297: WARNING: inconsistent term references in translated message. original: [':term:`mappings `'], translated: [':term:`マッピング `', ':term:`マッピング `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/concurrent.futures.rst:95: WARNING: inconsistent term references in translated message. original: [':keyword:`with`', ':class:`Executor`', ':meth:`Executor.shutdown`'], translated: [':keyword:`with`', ':keyword:`with`', ':class:`Executor`', ':meth:`Executor.shutdown`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/contextlib.rst:91: WARNING: inconsistent term references in translated message. original: [':func:`contextmanager`', ':class:`ContextDecorator`', ':keyword:`with`', ':func:`contextmanager`'], translated: [':func:`contextmanager`', ':class:`ContextDecorator`', ':func:`contextmanager`', ':keyword:`with`', ':func:`contextmanager`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/curses.rst:153: WARNING: inconsistent term references in translated message. original: [':meth:`~window.noutrefresh`', ':meth:`~window.addstr`', ':meth:`~window.refresh`'], translated: [':meth:`~window.addstr`', ':meth:`~window.noutrefresh`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:66: WARNING: inconsistent term references in translated message. original: [':class:`.datetime`', ':class:`.time`', ':class:`tzinfo`', ':class:`tzinfo`'], translated: [':class:`.datetime`', ':class:`.time`', ':attr:`tzinfo`', ':class:`tzinfo`', ':class:`tzinfo`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:1277: WARNING: inconsistent term references in translated message. original: [':class:`.datetime`', ':exc:`TypeError`'], translated: [':class:`datetime`', ':class:`datetime`', ':exc:`TypeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:1351: WARNING: inconsistent term references in translated message. original: [':class:`timezone`'], translated: [':class:`timezone`', ':class:`datetime`', ':class:`datetime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:2180: WARNING: inconsistent term references in translated message. original: [':meth:`datetime.astimezone`', ':meth:`fromutc`'], translated: [':meth:`datetime.astimezone`', ':meth:`fromutc`', ':class:`datetime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:2590: WARNING: inconsistent term references in translated message. original: [':class:`date`', ':class:`date`'], translated: [':class:`date`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/dbm.rst:24: WARNING: inconsistent term references in translated message. original: [':exc:`dbm.error`', ':exc:`dbm.error`'], translated: [':exc:`dbm.error`', ':exc:`dbm.error`', ':exc:`dbm.error`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:54: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:61: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:73: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:88: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:101: WARNING: inconsistent term references in translated message. original: [':const:`Clamped`', ':const:`InvalidOperation`', ':const:`DivisionByZero`', ':const:`Inexact`', ':const:`Rounded`', ':const:`Subnormal`', ':const:`Overflow`', ':const:`Underflow`', ':const:`FloatOperation`'], translated: [':mod:`decimal`', ':const:`Clamped`', ':const:`InvalidOperation`', ':const:`DivisionByZero`', ':const:`Inexact`', ':const:`Rounded`', ':const:`Subnormal`', ':const:`Overflow`', ':const:`Underflow`', ':const:`FloatOperation`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:127: WARNING: inconsistent term references in translated message. original: [':func:`getcontext`'], translated: [':mod:`decimal`', ':func:`getcontext`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:139: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Decimal`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:182: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:266: WARNING: inconsistent term references in translated message. original: [':func:`setcontext`'], translated: [':func:`Context`', ':func:`setcontext`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:331: WARNING: inconsistent term references in translated message. original: [':class:`Decimal`'], translated: [':class:`Decimal`', ':class:`Decimal`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:389: WARNING: inconsistent term references in translated message. original: [':const:`InvalidOperation`'], translated: [':const:`InvalidOperation`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:1017: WARNING: inconsistent term references in translated message. original: [':class:`Context`'], translated: [':class:`Context`', ':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:1192: WARNING: inconsistent term references in translated message. original: [':class:`Decimal`', ':class:`Decimal`'], translated: [':class:`Decimal`', ':class:`Decimal`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:677: WARNING: inconsistent references in translated message. original: [], translated: ['`Python 2.6 で既にあった変更`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:690: WARNING: inconsistent term references in translated message. original: [':exc:`BaseException`', ':exc:`BaseException`'], translated: [':exc:`BaseException`', ':exc:`BaseException`', ':exc:`BaseException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:900: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`pyporting-howto`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:920: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`pyporting-howto`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.1.rst:68: WARNING: inconsistent term references in translated message. original: [':mod:`configparser`', ':func:`collections.namedtuple`', ':mod:`json`'], translated: [':mod:`configparser`', ':func:`collections.namedtuple`', ':mod:`json`', ':class:`~json.JSONDecoder`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.1.rst:257: WARNING: inconsistent term references in translated message. original: [':mod:`tkinter.ttk`'], translated: [':mod:`tkinter.ttk`', ':mod:`tkinter.ttk`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.1.rst:361: WARNING: inconsistent term references in translated message. original: [':mod:`unittest`'], translated: [':mod:`unittest`', ':class:`TestResult`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:72: WARNING: inconsistent term references in translated message. original: [], translated: [':c:macro:`Py_LIMITED_API`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:521: WARNING: inconsistent term references in translated message. original: [':func:`str`', ':func:`repr`', ':func:`str`', ':func:`repr`'], translated: [':func:`str`', ':func:`repr`', ':func:`str`', ':func:`repr`', ':func:`str`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:594: WARNING: inconsistent term references in translated message. original: [':exc:`ResourceWarning`', ':mod:`warnings`'], translated: [':exc:`ResourceWarning`', ':mod:`warnings`', ':ref:`warning-filter`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:836: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`sortinghowto`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1003: WARNING: inconsistent term references in translated message. original: [':class:`~datetime.timedelta`', ':class:`float`', ':class:`float`', ':class:`int`', ':class:`~datetime.timedelta`'], translated: [':class:`~datetime.timedelta`', ':class:`float`', ':class:`float`', ':class:`int`', ':class:`~datetime.timedelta`', ':class:`~datetime.timedelta`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1270: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`~contextlib.contextmanager`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1630: WARNING: inconsistent term references in translated message. original: [':func:`socket.create_connection`', ':exc:`socket.error`'], translated: [':func:`socket.create_connection`', ':exc:`socket.error`', ':func:`socket.create_connection`', ':class:`socket.socket`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1885: WARNING: inconsistent term references in translated message. original: [':mod:`inspect`', ':func:`~inspect.getgeneratorstate`'], translated: [':mod:`inspect`', ':func:`~inspect.getgeneratorstate`', ':ref:`yield`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:2276: WARNING: inconsistent term references in translated message. original: [':mod:`email`'], translated: [':mod:`email`', ':class:`~email.generator.BytesGenerator`', ':func:`~email.message_from_bytes`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:150: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`buffer-structs`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:155: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`ドキュメント `', ':ref:`バッファ要求のフラグ `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:163: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`format-characters`', ':attr:`~memoryview.format`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:166: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`~memoryview.cast`', ':term:`contiguous`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:173: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`hashable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:182: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`次元 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:184: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`~memoryview.shape`', ':attr:`~memoryview.strides`', ':attr:`~memoryview.suboffsets`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:187: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`~memoryview.cast`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:332: WARNING: inconsistent term references in translated message. original: [':exc:`OSError`', ':exc:`IOError`', ':exc:`EnvironmentError`', ':exc:`WindowsError`', ':exc:`mmap.error`', ':exc:`socket.error`', ':exc:`select.error`', ':exc:`OSError`'], translated: [':exc:`OSError`', ':exc:`IOError`', ':exc:`EnvironmentError`', ':exc:`WindowsError`', ':exc:`mmap.error`', ':exc:`socket.error`', ':exc:`select.error`', ':exc:`OSError`', ':exc:`OSError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:424: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`~generator.send`', ':meth:`~generator.throw`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1081: WARNING: inconsistent term references in translated message. original: [':class:`~datetime.datetime`', ':const:`False`', ':exc:`TypeError`'], translated: [':class:`~datetime.datetime`', ':class:`~datetime.datetime`', ':exc:`TypeError`', ':const:`False`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1127: WARNING: inconsistent term references in translated message. original: [':exc:`~decimal.FloatOperation`'], translated: [':exc:`~decimal.FloatOperation`', ':ref:`シグナル `', ':ref:`decimal-tutorial`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1265: WARNING: inconsistent term references in translated message. original: [':class:`~email.policy.EmailPolicy`'], translated: [':class:`~email.policy.EmailPolicy`', ':data:`email.policy.default`', ':data:`email.policy.SMTP`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1360: WARNING: inconsistent term references in translated message. original: [':func:`~email.utils.parsedate_to_datetime`', ':class:`~datetime.datetime`', ':class:`~datetime.datetime`'], translated: [':func:`~email.utils.parsedate_to_datetime`', ':class:`~datetime.datetime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1374: WARNING: inconsistent term references in translated message. original: [':class:`ftplib.FTP`'], translated: [':class:`ftplib.FTP`', ':meth:`~socket.socket.bind`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1504: WARNING: inconsistent term references in translated message. original: [':func:`~logging.basicConfig`'], translated: [':func:`~logging.basicConfig`', ':term:`イテラブル `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1539: WARNING: inconsistent term references in translated message. original: [':class:`multiprocessing.Connection`'], translated: [':meth:`Connection.send`', ':meth:`Connection.recv`', ':class:`multiprocessing.Connection`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1552: WARNING: inconsistent term references in translated message. original: [':meth:`multiprocessing.pool.Pool.starmap`', ':meth:`~multiprocessing.pool.Pool.starmap_async`', ':func:`itertools.starmap`', ':meth:`multiprocessing.pool.Pool.map`', ':meth:`~multiprocessing.pool.Pool.map_async`'], translated: [':func:`map`', ':func:`itertools.starmap`', ':meth:`multiprocessing.pool.Pool.map`', ':meth:`~multiprocessing.pool.Pool.map_async`', ':meth:`multiprocessing.pool.Pool.starmap`', ':meth:`~multiprocessing.pool.Pool.starmap_async`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1843: WARNING: inconsistent term references in translated message. original: [':func:`signal.signal`', ':func:`signal.siginterrupt`'], translated: [':func:`signal.signal`', ':func:`signal.siginterrupt`', ':exc:`OSError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1862: WARNING: inconsistent term references in translated message. original: [':class:`~smtplib.SMTP`', ':class:`~smtplib.SMTP_SSL`', ':class:`~smtplib.LMTP`'], translated: [':class:`~smtplib.SMTP`', ':class:`~smtplib.SMTP_SSL`', ':class:`~smtplib.LMTP`', ':meth:`~socket.socket.bind`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:2351: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`sys.platform`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:435: WARNING: inconsistent references in translated message. original: [], translated: ['`Python API の変更`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:761: WARNING: inconsistent term references in translated message. original: [':class:`~dis.Bytecode`', ':meth:`~dis.Bytecode.from_traceback`'], translated: [':class:`~dis.Bytecode`', ':meth:`~dis.Bytecode.from_traceback`', ':class:`~dis.Bytecode`', ':func:`~dis.distb`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:781: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`', ':mod:`argparse`', ':ref:`doctest options\n`', ':mod:`unittest`'], translated: [':mod:`doctest`', ':mod:`argparse`', ':ref:`doctest オプション `', ':mod:`unittest`', ':ref:`サポートされる同じオプション `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:794: WARNING: inconsistent term references in translated message. original: [':meth:`~email.message.Message.as_string`', ':mod:`~email.generator`'], translated: [':meth:`~email.message.Message.as_string`', ':class:`~email.message.Message`', ':mod:`~email.generator`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1012: WARNING: inconsistent term references in translated message. original: [':mod:`importlib.util`', ':func:`~importlib.util.decode_source`', ':meth:`.InspectLoader.get_source`'], translated: [':mod:`importlib.util`', ':func:`~importlib.util.decode_source`', ':term:`universal newlines`', ':meth:`.InspectLoader.get_source`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1030: WARNING: inconsistent references in translated message. original: [], translated: ['`Python API の変更`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1041: WARNING: inconsistent term references in translated message. original: [':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`', ':func:`~inspect.signature`', ':func:`functools.partial`', ':func:`~inspect.signature`', ':func:`~inspect.signature`'], translated: [':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`', ':func:`~inspect.signature`', ':func:`functools.partial`', ':func:`~inspect.signature`', ':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`', ':func:`~inspect.signature`', ':func:`~inspect.signature`', ':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1353: WARNING: inconsistent term references in translated message. original: [':class:`~shelve.Shelf`', ':keyword:`with`'], translated: [':class:`~shelve.Shelf`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1440: WARNING: inconsistent term references in translated message. original: [':class:`~ssl.SSLContext`', ':meth:`~ssl.SSLContext.load_verify_locations`'], translated: [':class:`~ssl.SSLContext`', ':meth:`~ssl.SSLContext.load_verify_locations`', ':term:`bytes-like object`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1518: WARNING: inconsistent term references in translated message. original: [':func:`~subprocess.check_output`'], translated: [':func:`~subprocess.check_output`', ':func:`~subprocess.run`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1629: WARNING: inconsistent term references in translated message. original: [':class:`~urllib.request.Request`', ':class:`~urllib.request.Request.method`'], translated: [':class:`~urllib.request.Request`', ':class:`~urllib.request.Request.method`', ':class:`~urllib.request.Request.method`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1732: WARNING: inconsistent term references in translated message. original: [':meth:`~wave.getparams`'], translated: [':meth:`~wave.getparams`', ':class:`~collections.namedtuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:2150: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`site`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:2329: WARNING: inconsistent term references in translated message. original: [':func:`inspect.getfullargspec`', ':func:`inspect.signature`', ':func:`inspect.getfullargspec`'], translated: [':func:`inspect.getfullargspec`', ':func:`inspect.signature`', ':func:`open`', ':func:`inspect.getfullargspec`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:: ERROR: Anonymous hyperlink mismatch: 0 references but 1 targets.
+See "backrefs" attribute for IDs. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.7.rst:84: WARNING: inconsistent references in translated message. original: ['`has been declared`_'], translated: [] [i18n.inconsistent_references]
diff --git a/83/merge/warnings-ko.txt b/83/merge/warnings-ko.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-lint-ar.txt b/83/merge/warnings-lint-ar.txt
new file mode 100644
index 000000000..89f9e11ca
--- /dev/null
+++ b/83/merge/warnings-lint-ar.txt
@@ -0,0 +1 @@
+clones/rebased_translations/Abdur-rahmaanJ/python-docs-ar/tutorial/whatnow.po:145: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
\ No newline at end of file
diff --git a/83/merge/warnings-lint-es.txt b/83/merge/warnings-lint-es.txt
new file mode 100644
index 000000000..5391cab5f
--- /dev/null
+++ b/83/merge/warnings-lint-es.txt
@@ -0,0 +1,2 @@
+clones/rebased_translations/python/python-docs-es/howto/enum.po:27: Unnecessary parentheses in ':func:`repr()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-es/howto/enum.po:391: Unnecessary parentheses in ':func:`auto()`' (unnecessary-parentheses)
\ No newline at end of file
diff --git a/83/merge/warnings-lint-fa.txt b/83/merge/warnings-lint-fa.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-lint-fr.txt b/83/merge/warnings-lint-fr.txt
new file mode 100644
index 000000000..12b82f79a
--- /dev/null
+++ b/83/merge/warnings-lint-fr.txt
@@ -0,0 +1,4 @@
+clones/rebased_translations/python/python-docs-fr/library/html.entities.po:35: Unnecessary parentheses in ':func:`html.unescape()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-fr/library/filecmp.po:74: Unnecessary parentheses in ':func:`os.stat()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-fr/reference/import.po:542: Unnecessary parentheses in ':meth:`~importlib.abc.MetaPathFinder.find_spec()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-fr/reference/import.po:578: Unnecessary parentheses in ':meth:`~importlib.abc.MetaPathFinder.find_spec()`' (unnecessary-parentheses)
\ No newline at end of file
diff --git a/83/merge/warnings-lint-gr.txt b/83/merge/warnings-lint-gr.txt
new file mode 100644
index 000000000..3c78dcff4
--- /dev/null
+++ b/83/merge/warnings-lint-gr.txt
@@ -0,0 +1,53 @@
+clones/rebased_translations/pygreece/python-docs-gr/bugs.po:254: missing backtick before hyperlink reference: 'Σφαλμάτων `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:4964: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:4964: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:8550: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:8550: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:1564: missing space before default role: 'ass`bool`'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:4964: missing space before default role: 'ναι``N``'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:8550: missing space before default role: ', )``==``'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:1564: role missing colon before first backtick ( :class`). (missing-colon-in-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/gzip.po:214: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/platform.po:233: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/collections.abc.po:942: role missing opening tag colon ( meth:`). (missing-space-before-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: inline literal missing (escaped) space after literal: "``'10s'``σ" (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:46: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:227: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:353: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:382: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:779: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:804: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:534: inline literal missing (escaped) space after literal: '``False``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:1580: inline literal missing (escaped) space after literal: "``'-'``∙" (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3100: inline literal missing (escaped) space after literal: '``write(string)``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:534: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:534: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:1580: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:1580: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3100: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3100: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3178: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/using/unix.po:223: missing space before default role: 'ile`{exec_prefix}/bin/python{version}`'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/using/unix.po:184: missing backtick before hyperlink reference: 'κώδικα `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/pygreece/python-docs-gr/using/unix.po:223: role missing colon before first backtick ( :file`). (missing-colon-in-role)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/introduction.po:149: inline literal missing (escaped) space after literal: '``//``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/introduction.po:149: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/introduction.po:149: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:570: inline literal missing (escaped) space after literal: '``.py``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:570: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:570: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:1152: role missing (escaped) space after role: ':mod:`!sound.effects`ό' (missing-space-after-role)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/classes.po:1358: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/classes.po:1392: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/classes.po:1392: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/interpreter.po:157: inline literal missing (escaped) space after literal: '``sys.argv[0]``ο' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/interpreter.po:157: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/interpreter.po:157: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/controlflow.po:75: role missing opening tag colon ( keyword:`). (missing-space-before-role)
+clones/rebased_translations/pygreece/python-docs-gr/faq/installed.po:123: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/faq/extending.po:115: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/faq/extending.po:115: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/faq/extending.po:115: missing space before default role: 'στο``Python/pythonrun.c``'. (missing-space-before-default-role)
\ No newline at end of file
diff --git a/83/merge/warnings-lint-hi-in.txt b/83/merge/warnings-lint-hi-in.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-lint-id.txt b/83/merge/warnings-lint-id.txt
new file mode 100644
index 000000000..84185179b
--- /dev/null
+++ b/83/merge/warnings-lint-id.txt
@@ -0,0 +1,34 @@
+clones/rebased_translations/python/python-docs-id/library/xmlrpc.client.po:621: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/distribution.po:29: missing underscore after closing backtick in hyperlink (missing-underscore-after-hyperlink)
+clones/rebased_translations/python/python-docs-id/library/binary.po:29: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/csv.po:514: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/calendar.po:35: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/calendar.po:373: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/json.po:212: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/functions.po:609: role missing opening tag colon ( ref:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/library/functions.po:2815: role missing opening tag colon ( class:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/library/functions.po:3466: role missing opening tag colon ( pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/using/editors.po:29: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/tutorial/stdlib.po:467: role missing opening tag colon ( mod:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/tutorial/stdlib2.po:302: missing space before role ( modul:mod:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/tutorial/whatnow.po:156: role missing (escaped) space after role: ':ref:`Pertanyaan yang Sering Diajukan `(' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-id/tutorial/classes.po:1142: inline literal missing (escaped) space after literal: '``issubclass(bool, int)``a' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-id/tutorial/classes.po:1142: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/classes.po:1142: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/interpreter.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/interpreter.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/interpreter.po:153: missing space before default role: " ke``'-c'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-id/tutorial/controlflow.po:1444: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/controlflow.po:1444: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/c-api/cell.po:31: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/c-api/cell.po:104: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/c-api/apiabiversion.po:187: missing space before role ( dalam:source:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/c-api/iterator.po:25: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/c-api/abstract.po:41: role missing opening tag colon ( func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/c-api/abstract.po:41: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/c-api/abstract.po:41: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/faq/general.po:569: missing space before < in hyperlink (missing-space-in-hyperlink)
+clones/rebased_translations/python/python-docs-id/faq/general.po:231: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/faq/general.po:231: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/faq/general.po:231: missing space before default role: 'kas``Misc/HISTORY``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-id/faq/windows.po:37: trailing whitespace (trailing-whitespace)
\ No newline at end of file
diff --git a/83/merge/warnings-lint-it.txt b/83/merge/warnings-lint-it.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-lint-ja.txt b/83/merge/warnings-lint-ja.txt
new file mode 100644
index 000000000..8ed99540a
--- /dev/null
+++ b/83/merge/warnings-lint-ja.txt
@@ -0,0 +1,370 @@
+clones/rebased_translations/python/python-docs-ja/glossary.po:864: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/glossary.po:2218: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.6.po:3628: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.6.po:3564: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.7.po:4735: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.9.po:565: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.7.po:3793: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.5.po:457: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.5.po:1060: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.5.po:4357: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.4.po:1923: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:3597: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:240: Bad dedent in block (bad-dedent)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:469: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:633: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:659: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:694: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:807: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:892: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:1107: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.10.po:738: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.10.po:738: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.10.po:738: missing space before default role: 'ラルを``|``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.11.po:4362: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.3.po:1530: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.1.po:991: missing backtick before hyperlink reference: 'Machine `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.1.po:300: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.4.po:38: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.6.po:285: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.sax.handler.po:429: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.etree.elementtree.po:1829: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8079: missing space before default role: 'の数は``GenericAlias``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:2115: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:3246: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:7629: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8538: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:9103: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio.po:182: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:162: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:204: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:162: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:204: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/random.po:691: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:171: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:253: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:278: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:358: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-protocol.po:858: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/types.po:262: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/types.po:308: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.dom.minidom.po:305: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xmlrpc.client.po:81: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-dev.po:176: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-dev.po:222: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-dev.po:260: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/collections.po:1828: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xmlrpc.server.po:79: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:989: role missing opening tag colon ( const:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1409: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1437: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1464: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1491: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1518: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1536: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1950: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:2016: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:2513: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:2575: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:3141: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/select.po:509: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/gc.po:120: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/gc.po:233: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/gc.po:261: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/logging.po:1155: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/logging.po:2530: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:138: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:138: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:138: missing space before default role: 'を表す``12345678-1234-5678-1234-567812345678``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:85: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:215: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pdb.po:384: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:135: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:85: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:135: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:176: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/re.po:63: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/re.po:1229: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/re.po:2509: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:845: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:845: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:845: missing space before default role: 'ルトは``()``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:360: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/compileall.po:172: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/compileall.po:172: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/compileall.po:172: missing space before default role: '成した``.pyc``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:343: inline literal missing (escaped) space after literal: '``None``以' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:4206: inline literal missing (escaped) space after literal: '``addModuleCleanup``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:343: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:343: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:4206: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:4206: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:1353: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:188: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:188: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:209: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:209: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:228: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:228: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:188: missing space before default role: ' と``defects``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:209: missing space before default role: 'ような``init``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:228: missing space before default role: ' の``init``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/mailbox.po:893: role missing opening tag colon ( meth:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/mailbox.po:1309: role missing opening tag colon ( meth:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/codecs.po:1502: role missing opening tag colon ( term:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/signal.po:574: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ftplib.po:229: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ftplib.po:273: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sched.po:191: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/typing.po:1885: role missing opening tag colon ( ref:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:339: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:359: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:1334: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2342: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2538: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2571: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2579: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functools.po:806: Bad dedent in block (bad-dedent)
+clones/rebased_translations/python/python-docs-ja/library/msvcrt.po:86: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/subprocess.po:350: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/subprocess.po:350: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/subprocess.po:350: missing space before default role: 'わりに``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/tempfile.po:145: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/tempfile.po:341: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/smtplib.po:416: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/__main__.po:70: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/__main__.po:70: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/__main__.po:70: missing space before default role: '拡張子``.py``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3128: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3210: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3247: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3320: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3334: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3403: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3418: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3515: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2517: inline literal missing (escaped) space after literal: '``chdir``の' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6970: inline literal missing (escaped) space after literal: '``WIFEXITED(status)``が' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6980: inline literal missing (escaped) space after literal: '``WIFSIGNALED(status)``が' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2517: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2517: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6970: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6970: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6980: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6980: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:489: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:855: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:863: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1149: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1396: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1429: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1540: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1607: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1759: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2733: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2812: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3047: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3103: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3295: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3533: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3603: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3664: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3712: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4670: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4700: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4775: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4946: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5035: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5463: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5489: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5505: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5533: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5628: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5732: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5894: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5962: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6003: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6015: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6257: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6437: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6549: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6619: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-policy.po:154: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/imaplib.po:531: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/imaplib.po:632: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pkgutil.po:121: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/email.header.po:299: inline literal missing (escaped) space after literal: '``\\r\\n``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/email.header.po:299: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.header.po:299: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/io.po:1703: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/io.po:1703: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/io.po:1703: missing space before default role: "る前に``'\\n'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/io.po:386: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/token.po:36: role missing opening tag colon ( file:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:163: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:574: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:2638: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:2699: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:2925: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pty.po:144: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/configparser.po:1607: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-task.po:52: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.dom.pulldom.po:220: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/base64.po:212: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/base64.po:323: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/base64.po:364: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:2365: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:2365: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:2365: missing space before default role: '引数に``follow_symlinks=False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:199: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:1499: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:1912: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:1943: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/argparse.po:963: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/enum.po:507: Bad dedent in block (bad-dedent)
+clones/rebased_translations/python/python-docs-ja/library/glob.po:267: missing space before role ( および:file:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/glob.po:140: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/glob.po:148: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/statistics.po:464: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/statistics.po:464: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/statistics.po:464: missing space before default role: '平均は``3/(1/a + 1/b + 1/c)``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/ipaddress.po:749: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/ipaddress.po:749: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/ipaddress.po:749: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/ipaddress.po:749: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:532: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:540: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:1622: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:1687: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/turtle.po:3786: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:958: inline literal missing (escaped) space after literal: '``tearDown``メ' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: inline literal missing (escaped) space after literal: '``call_args_list``と' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: inline literal missing (escaped) space after literal: '``call_args_list``の' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1124: inline literal missing (escaped) space after literal: '``frob``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1202: inline literal missing (escaped) space after literal: '``side_effect``関' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:958: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:958: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1094: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1094: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1124: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1124: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1202: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1202: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1094: missing space before default role: '。 や``call_args_list``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:905: missing backtick before hyperlink reference: 'ジェネレータ式やジェネレータのより`高度な使い方 `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/python/python-docs-ja/library/math.po:1037: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/zipapp.po:242: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:127: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:183: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:266: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:456: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:538: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:626: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:697: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:1171: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:123: inline literal missing (escaped) space after literal: '``activeCount``は' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:139: inline literal missing (escaped) space after literal: '``currentThread``は' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:1479: inline literal missing (escaped) space after literal: '``notifyAll``は' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:123: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:123: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:139: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:139: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:566: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:566: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:1479: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:1479: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:566: missing space before default role: 't"は``target.__name__``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/ast.po:787: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ast.po:956: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ast.po:3343: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/json.po:338: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/json.po:644: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/marshal.po:122: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/marshal.po:144: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/marshal.po:190: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:106: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:161: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:169: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:263: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:289: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:364: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:386: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:471: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:515: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:547: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:582: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:647: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:704: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:775: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:795: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:811: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1043: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1043: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1043: missing space before default role: " と``')'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1624: Unnecessary parentheses in ':meth:`~object.__float__()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1876: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:2879: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:3533: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:210: inline literal missing (escaped) space after literal: '``1``ま' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:823: inline literal missing (escaped) space after literal: '``True``に' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:210: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:210: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:823: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:823: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/pickle.po:869: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pickle.po:1712: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:166: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:251: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:296: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:351: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/reference/lexical_analysis.po:691: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/reference/expressions.po:648: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/reference/datamodel.po:1047: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/datastructures.po:906: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/datastructures.po:1414: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:424: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:424: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:1186: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:1186: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:424: missing space before default role: '数個の``\\``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:36: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:424: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/floatingpoint.po:264: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/interpreter.po:167: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/controlflow.po:1454: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/howto/descriptor.po:993: missing space before role ( の中の:c:func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:1787: missing space before role ( や:class:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:410: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:410: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:543: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:543: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:995: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:995: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:410: missing space before default role: ' と``B``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:543: missing space before default role: ' と``Weekday.WEEKEND``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:995: missing space before default role: 'はなく``1``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/howto/regex.po:1316: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/howto/curses.po:425: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/installing/index.po:261: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init_config.po:29: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/file.po:179: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/call.po:469: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/call.po:493: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/call.po:503: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/sequence.po:270: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init.po:747: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init.po:1909: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init.po:1925: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/contextvars.po:217: inline literal missing (escaped) space after literal: '``NULL``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/c-api/contextvars.po:217: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/c-api/contextvars.po:217: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:3409: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:3409: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:3409: missing space before default role: 'または``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:859: trailing whitespace (trailing-whitespace)
\ No newline at end of file
diff --git a/83/merge/warnings-lint-ko.txt b/83/merge/warnings-lint-ko.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-lint-pl.txt b/83/merge/warnings-lint-pl.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-lint-pt-br.txt b/83/merge/warnings-lint-pt-br.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-lint-ro.txt b/83/merge/warnings-lint-ro.txt
new file mode 100644
index 000000000..d1d9c7f7b
--- /dev/null
+++ b/83/merge/warnings-lint-ro.txt
@@ -0,0 +1,2 @@
+clones/rebased_translations/octaG-M/python-docs-ro/about.po:27: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/octaG-M/python-docs-ro/tutorial/introduction.po:508: trailing whitespace (trailing-whitespace)
\ No newline at end of file
diff --git a/83/merge/warnings-lint-ru.txt b/83/merge/warnings-lint-ru.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-lint-tr.txt b/83/merge/warnings-lint-tr.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-lint-uk.txt b/83/merge/warnings-lint-uk.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-lint-zh-cn.txt b/83/merge/warnings-lint-zh-cn.txt
new file mode 100644
index 000000000..4edd7e169
--- /dev/null
+++ b/83/merge/warnings-lint-zh-cn.txt
@@ -0,0 +1,307 @@
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.2.po:1532: inline literal missing (escaped) space after literal: '``/``操' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.2.po:1532: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.2.po:1532: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:3989: missing space before role ( 直接解码:attr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:2218: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:2218: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:2218: missing space before default role: '是调用``implicit0``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5676: missing space before role ( 在:gh:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:1470: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:1470: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5328: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5328: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:1470: missing space before default role: '中插入``..``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5328: missing space before default role: '重载了``PyType_From*``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5158: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5676: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: inline literal missing (escaped) space after literal: '``*``来' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:783: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:783: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:783: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:783: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: missing space before default role: '数列表``*args``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:783: missing space before default role: '拼写为``.... . .``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/changelog.po:1249: missing backtick before hyperlink reference: '节 `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.7.po:350: missing space before role ( 开关现在会自动启用:option:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.7.po:600: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.9.po:2608: missing space before role ( d:issue:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1265: inline literal missing (escaped) space after literal: '``return dict.setdefault(key, [])``语' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: inline literal missing (escaped) space after literal: '````写' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1908: missing space before role ( 类如:class:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1265: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1265: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:2057: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:2057: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: missing space before default role: '单地将````'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:2057: missing space before default role: '以支持``https://``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.7.po:1552: Unnecessary parentheses in ':meth:`datetime.isoformat()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.5.po:4756: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.5.po:4756: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.5.po:4756: missing space before default role: '移除了``.pyo``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2073: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2073: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2702: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2702: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2073: missing space before default role: ' (或``.pyo``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2702: missing space before default role: ' 和``capath``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.8.po:4609: missing space before role ( 的规范更新了:rfc:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.10.po:3485: missing space before role ( 和:data:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.11.po:931: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.11.po:931: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.11.po:931: missing space before default role: '须使用``1``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.3.po:1364: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:3534: missing space before role (弃用:program:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:5603: missing space before role ( 弃用的:c:func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6278: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6296: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6324: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6346: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6367: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6378: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:3534: role missing (escaped) space after role: ':option:`!--cgi`标' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6278: role missing (escaped) space after role: ':func:`!locals`得' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: inline literal missing (escaped) space after literal: '``D``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: inline literal missing (escaped) space after literal: '``(key, value)``键' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1320: role missing (escaped) space after role: ':func:`sys._getframe`返' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3825: missing space before role (得益于:pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4007: missing space before role (由于:pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:154: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:154: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:386: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:386: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4007: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4007: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4007: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4007: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4259: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4259: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:154: missing space before default role: '流行的``virtualenv``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:386: missing space before default role: '(即从``U+0000``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4007: missing space before default role: '( 或``utf-16-be``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4007: missing space before default role: '( 或``utf-32-be``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4259: missing space before default role: "模块的``'u'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/stdtypes.po:636: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/stdtypes.po:636: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/stdtypes.po:636: missing space before default role: ' 为``0``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/stdtypes.po:2869: missing backtick before hyperlink reference: '中描述 `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/python/python-docs-zh-cn/library/shlex.po:196: role missing (escaped) space after role: ':attr:`eof`(' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/collections.po:1559: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:312: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:312: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:323: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:323: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:312: missing space before default role: ' 和``stderr``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:323: missing space before default role: ',写入``stdout``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/select.po:360: missing space before role ( 这是与:c:func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/gc.po:356: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/uuid.po:513: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/tokenize.po:341: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/mailbox.po:1490: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/mailbox.po:1490: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/mailbox.po:1490: missing space before default role: 's()`` 中的 ``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:774: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:774: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:774: missing space before default role: '于使用``tuple[Any, ...]``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:3024: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:3256: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:6222: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:4118: role missing (escaped) space after role: ':class:`ParamSpec`的' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: inline literal missing (escaped) space after literal: '``oparg=0``时' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: inline literal missing (escaped) space after literal: '``oparg``将' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: inline literal missing (escaped) space after literal: '``cmp_op[opname >> 5]``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: inline literal missing (escaped) space after literal: '``opname``的' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1919: inline literal missing (escaped) space after literal: '``argc``指' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2038: inline literal missing (escaped) space after literal: '``STACK[-1]``的' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2115: inline literal missing (escaped) space after literal: '``oparg``指' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:549: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:549: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:674: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:674: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:683: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:683: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:710: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:710: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:714: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:714: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:861: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:861: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1611: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1611: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1919: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1919: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2038: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2038: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2115: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2115: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:549: missing space before default role: '可以是``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: missing space before default role: '或传入``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: missing space before default role: '会返回``oparg=0``时的结果 。当``opcode``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: missing space before default role: '始,为``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: missing space before default role: '否则为``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:674: missing space before default role: '否则为``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:683: missing space before default role: '否则为``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:710: missing space before default role: '了字段``starts_line``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:714: missing space before default role: '了字段``start_offset``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:861: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1611: missing space before default role: '全局的``super``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: missing space before default role: '可以在``cmp_op[opname >> 5]``中找到。如果``opname``的第五低位是1(),则结果将被强制转换为``bool``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2364: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2380: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:3303: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:3303: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:6158: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:6158: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:3303: missing space before default role: 'e*值``0o700``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:6158: missing space before default role: '在调用``fork()``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/importlib.metadata.po:1020: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/importlib.metadata.po:1020: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/importlib.metadata.po:1020: missing space before default role: ' 或``Context(name=None)``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/doctest.po:1282: role missing (escaped) space after role: ':file:`ndiff.py`工' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/configparser.po:1578: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: missing space before default role: '则返回``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: missing space before default role: '则返回``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: missing space before default role: '则返回``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: missing space before default role: '则返回``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:280: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:280: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:288: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:288: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:280: missing space before default role: ',则是``sys.argv[0]``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:288: missing space before default role: ',后接``sys.argv[0]``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: missing space before default role: '员属于``cls``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: missing space before default role: '则返回``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:1251: Unnecessary parentheses in ':func:`repr()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-zh-cn/library/wsgiref.po:1404: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/sqlite3.po:1108: missing space before role ( 如果:attr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/datetime.po:3687: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/datetime.po:3687: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/datetime.po:3687: missing space before default role: ' 例如``"GMT"``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/math.po:534: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/ast.po:1812: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/functions.po:2332: Unnecessary parentheses in ':func:`locale.getencoding()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-zh-cn/reference/grammar.po:139: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/grammar.po:700: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/grammar.po:1367: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/grammar.po:1373: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/grammar.po:1497: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: inline literal missing (escaped) space after literal: '``import __spam``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: inline literal missing (escaped) space after literal: '``import __foo.bar``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: inline literal missing (escaped) space after literal: '``__foo``不' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: inline literal missing (escaped) space after literal: '``from spam import __f``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: missing space before default role: ',例如``import __spam``中的``__spam``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: missing space before default role: ',比如``from spam import __f``中的``__f``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/reference/compound_stmts.po:2673: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/datamodel.po:4914: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/datamodel.po:4914: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/functional.po:925: role missing (escaped) space after role: ':meth:`~iterator.__next__`方' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/functional.po:1039: role missing (escaped) space after role: ':meth:`~generator.__next__`方' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/annotations.po:95: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/annotations.po:95: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/annotations.po:95: missing space before default role: '动访问``__annotations__``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/logging-cookbook.po:4292: missing space before < in hyperlink (missing-space-in-hyperlink)
+clones/rebased_translations/python/python-docs-zh-cn/howto/logging-cookbook.po:4292: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1727: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1727: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1727: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: missing space before default role: ', 和``+a``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: missing space before default role: '们使用``type``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: missing space before default role: '数会将``-a``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: missing space before default role: '` 和``+a``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/isolating-extensions.po:682: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/isolating-extensions.po:682: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/isolating-extensions.po:682: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/free-threading-python.po:118: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/free-threading-python.po:118: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/free-threading-python.po:118: missing space before default role: '设置为``1``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/arg.po:711: missing space before role (将Python浮点数转换成C的:c:expr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/arg.po:719: missing space before role (将Python浮点数转换成C的:c:expr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/memory.po:1217: role missing (escaped) space after role: ':envvar:`PYTHONMALLOC`(' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:153: inline literal missing (escaped) space after literal: '``NULL``错' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:226: missing space before role (除非使用:pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: inline literal missing (escaped) space after literal: '``-1``(' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: inline literal missing (escaped) space after literal: '``*result``设' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: inline literal missing (escaped) space after literal: '``[PyTime_MIN; PyTime_MAX]``范' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:189: missing space before role ( C:c:expr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: missing space before default role: '数返回``0``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:178: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:455: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:455: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:2254: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:2254: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:455: missing space before default role: '编码和``replace``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:2254: missing space before default role: '* 为``NULL``'. (missing-space-before-default-role)
\ No newline at end of file
diff --git a/83/merge/warnings-lint-zh-tw.txt b/83/merge/warnings-lint-zh-tw.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-pl.txt b/83/merge/warnings-pl.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-pt-br.txt b/83/merge/warnings-pt-br.txt
new file mode 100644
index 000000000..d6a88e19a
--- /dev/null
+++ b/83/merge/warnings-pt-br.txt
@@ -0,0 +1,2 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/hashlib.rst:23: WARNING: inconsistent references in translated message. original: ['`the FIPS 180-4 standard`_', '`the FIPS\n202 standard`_', '`formerly part of FIPS`_'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/changelog.rst:13619::1: WARNING: undefined label: 'wasm-disponibilidade' [ref.ref]
diff --git a/83/merge/warnings-ro.txt b/83/merge/warnings-ro.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-ru.txt b/83/merge/warnings-ru.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-tr.txt b/83/merge/warnings-tr.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/83/merge/warnings-uk.txt b/83/merge/warnings-uk.txt
new file mode 100644
index 000000000..2aecc945a
--- /dev/null
+++ b/83/merge/warnings-uk.txt
@@ -0,0 +1,11 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/clinic.rst:: ERROR: Anonymous hyperlink mismatch: 1 references but 0 targets.
+See "backrefs" attribute for IDs. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:184: WARNING: inconsistent term references in translated message. original: [':meth:`~object.__lt__`', ':meth:`~object.__le__`', ':meth:`~object.__gt__`', ':meth:`~object.__ge__`', ':meth:`~object.__lt__`', ':meth:`~object.__eq__`'], translated: [':meth:`~object.__lt__`', ':meth:`~object.__le__`', ':meth:`~object.__ge__`', ':meth:`~object.__lt__`', ':meth:`~object.__eq__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:577: WARNING: inconsistent term references in translated message. original: [':data:`sys.byteorder`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.12.rst:69: WARNING: inconsistent term references in translated message. original: [':term:`f-strings `', ':ref:`type parameter syntax `', ':keyword:`type`', ':term:`generic types\n`', ':term:`type aliases `'], translated: [':term:`f-рядок `', ':keyword:`type`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:12::1: WARNING: term not in glossary: 'інтерактивної' [ref.term]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:19::1: WARNING: term not in glossary: 'інтерактивної' [ref.term]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:1173::1: WARNING: term not in glossary: 'інтерактивної' [ref.term]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/email.parser.rst:176::1: WARNING: term not in glossary: 'bytes-подібного об’єкта' [ref.term]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:38::1: WARNING: undefined label: 'sqlite3-tutorial`вчить як використовувати :mod:' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.13.rst:216::1: WARNING: term not in glossary: 'інтерактивну' [ref.term]
diff --git a/83/merge/warnings-zh-cn.txt b/83/merge/warnings-zh-cn.txt
new file mode 100644
index 000000000..0f57f49bf
--- /dev/null
+++ b/83/merge/warnings-zh-cn.txt
@@ -0,0 +1,6 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/changelog.rst:572::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/changelog.rst:572::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/init.rst:964: WARNING: Lexing literal_block '将线程状态保存到一个局部变量中。\n释放全局解释器锁。\n... 执行某些阻塞式的 I/O 操作 ...\n重新获取全局解释器锁。\n从局部变量中恢复线程状态。' as "c" resulted in an error at token: '。'. Retrying in relaxed mode. [misc.highlighting_failure]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:446: WARNING: Lexing literal_block 'CREATE TABLE test(\n i integer primary key, ! 将查找名为 "integer" 的转换器\n p point, ! 将查找名为 "point" 的转换器\n n number(10) ! 将查找名为 "number" 的转换器\n )' as "sql" resulted in an error at token: '将'. Retrying in relaxed mode. [misc.highlighting_failure]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:471: WARNING: Lexing literal_block 'SELECT MAX(p) as "p [point]" FROM test; ! 将查找转换器 "point"' as "sql" resulted in an error at token: '将'. Retrying in relaxed mode. [misc.highlighting_failure]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/urllib.parse.rst:304: WARNING: Lexing literal_block '(寻址方案, 网络位置, 路径, 查询, 片段标识符)。' as "python3" resulted in an error at token: '('. Retrying in relaxed mode. [misc.highlighting_failure]
diff --git a/83/merge/warnings-zh-tw.txt b/83/merge/warnings-zh-tw.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/index.html b/89/merge/index.html
new file mode 100644
index 000000000..0fdc2aa9f
--- /dev/null
+++ b/89/merge/index.html
@@ -0,0 +1,626 @@
+
+
+ Python Docs Translation Dashboard
+
+
+
+
+
+
+Python Docs Translation Dashboard
+
+main | meta
+
+
+
+
+ language
+ switcher
+ translators
+ completion*
+
+
+
+
+
+
+ Simplified Chinese (zh-cn)
+
+
+
+ ✓
+
+
+
+
+ 234
+
+
+
+
+ 81.55% (+0.83%)
+
+
+ 81.55% (+0.83%)
+
+
+
+
+
+
+ Spanish (es)
+
+
+
+ ✓
+
+
+
+
+ 312
+
+
+
+
+ 62.79% (+0.12%)
+
+
+ 62.79% (+0.12%)
+
+
+
+
+
+
+ Brazilian Portuguese (pt-br)
+
+
+
+ ✓
+
+
+
+
+ 155
+
+
+
+
+ 60.63% (+0.79%)
+
+
+ 60.63% (+0.79%)
+
+
+
+
+
+
+ Ukrainian (uk)
+
+
+
+ ✗
+
+
+
+
+ 13
+
+
+
+
+ 53.52% (+53.52%)
+
+
+ 53.52% (+53.52%)
+
+
+
+
+
+
+ Japanese (ja)
+
+
+
+ ✓
+
+
+
+
+ 47
+
+
+
+
+ 53.12% (+0.04%)
+
+
+ 53.12% (+0.04%)
+
+
+
+
+
+
+ Korean (ko)
+
+
+
+ ✓
+
+
+
+
+ 23
+
+
+
+
+ 44.15% (+1.27%)
+
+
+ 44.15% (+1.27%)
+
+
+
+
+
+
+ Traditional Chinese (zh-tw)
+
+
+
+ ✓
+
+
+
+
+ 120
+
+
+
+
+ 37.36%
+
+
+ 37.36%
+
+
+
+
+
+
+ French (fr)
+
+
+
+ ✓
+
+
+
+
+ 241
+
+
+
+
+ 35.80%
+
+
+ 35.80%
+
+
+
+
+
+
+ Polish (pl)
+
+
+
+ ✓
+
+
+
+
+ 25
+
+
+
+
+ 11.19% (+0.03%)
+
+
+ 11.19% (+0.03%)
+
+
+
+
+
+
+ Indonesian (id)
+
+
+
+ ✗
+
+
+
+
+ 24
+
+
+
+
+ 7.99%
+
+
+ 7.99%
+
+
+
+
+
+
+ Greek (gr)
+
+
+
+
+
+
+ 15
+
+
+
+
+ 6.83% (+0.41%)
+
+
+ 6.83% (+0.41%)
+
+
+
+
+
+
+ Turkish (tr)
+
+
+
+ ✓
+
+
+
+
+ 29
+
+
+
+
+ 5.07%
+
+
+ 5.07%
+
+
+
+
+
+
+ Italian (it)
+
+
+
+ ✓
+
+
+
+
+ 3
+
+
+
+
+ 3.62%
+
+
+ 3.62%
+
+
+
+
+
+
+ Romanian (ro)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.30%
+
+
+ 0.30%
+
+
+
+
+
+
+ Russian (ru)
+
+
+
+
+
+
+ 22
+
+
+
+
+ 0.20%
+
+
+ 0.20%
+
+
+
+
+
+
+ Persian (fa)
+
+
+
+
+
+
+ 10
+
+
+
+
+ 0.05% (+0.05%)
+
+
+ 0.05% (+0.05%)
+
+
+
+
+
+
+ Arabic (ar)
+
+
+
+
+
+
+ 3
+
+
+
+
+ 0.01%
+
+
+ 0.01%
+
+
+
+
+
+
+ Hindi (hi-in)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.01%
+
+
+ 0.01%
+
+
+
+
+
+
+ Marathi (mr)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Hungarian (hu)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Portuguese (pt)
+
+
+
+
+
+
+ 0
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Lithuanian (lt)
+
+
+
+
+
+
+ 0
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Bengali (bn-in)
+
+
+
+
+
+
+ 0
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+* the number in parentheses shows change in the last 30 days, included in the total completion
+The Python documentation currently has a word count of 1,526,598.
+For more information about translations, see the Python Developer’s Guide .
+Last updated at Thursday, 1 May 2025, 21:04:10 UTC (in 6:42 minutes).
+
+
+
\ No newline at end of file
diff --git a/89/merge/index.json b/89/merge/index.json
new file mode 100644
index 000000000..46f860b25
--- /dev/null
+++ b/89/merge/index.json
@@ -0,0 +1,416 @@
+[
+ {
+ "language": {
+ "code": "ar",
+ "name": "Arabic"
+ },
+ "repository": "Abdur-rahmaanJ/python-docs-ar",
+ "branch": "master",
+ "completion": 0.014501924800928124,
+ "change": 0.0,
+ "translators": {
+ "number": 3,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/Abdur-rahmaanJ/python-docs-ar"
+ },
+ {
+ "language": {
+ "code": "bn-in",
+ "name": "Bengali"
+ },
+ "repository": "python/python-docs-bn-in",
+ "branch": "",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 0,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-bn-in"
+ },
+ {
+ "language": {
+ "code": "fr",
+ "name": "French"
+ },
+ "repository": "python/python-docs-fr",
+ "branch": "3.13",
+ "completion": 35.801297263091286,
+ "change": 0.0,
+ "translators": {
+ "number": 241,
+ "link": "https://github.com/python/python-docs-fr/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://git.afpy.org/AFPy/python-docs-fr/src/branch/3.13/CONTRIBUTING.rst"
+ },
+ {
+ "language": {
+ "code": "gr",
+ "name": "Greek"
+ },
+ "repository": "pygreece/python-docs-gr",
+ "branch": "3.12",
+ "completion": 6.829088224437061,
+ "change": 0.4060538944259875,
+ "translators": {
+ "number": 15,
+ "link": "https://github.com/pygreece/python-docs-gr/blob/3.12/TRANSLATORS"
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/pygreece/python-docs-gr/blob/3.12/CONTRIBUTING.md"
+ },
+ {
+ "language": {
+ "code": "hi-in",
+ "name": "Hindi"
+ },
+ "repository": "CuriousLearner/python-docs-hi-in",
+ "branch": "master",
+ "completion": 0.005273427200337499,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/CuriousLearner/python-docs-hi-in"
+ },
+ {
+ "language": {
+ "code": "hu",
+ "name": "Hungarian"
+ },
+ "repository": "python/python-docs-hu",
+ "branch": "master",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-hu"
+ },
+ {
+ "language": {
+ "code": "id",
+ "name": "Indonesian"
+ },
+ "repository": "python/python-docs-id",
+ "branch": "3.9",
+ "completion": 7.994515635711649,
+ "change": 0.0,
+ "translators": {
+ "number": 24,
+ "link": "https://github.com/python/python-docs-id/blob/3.9/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": false,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-id/blob/master/README.md#berkontribusi-untuk-menerjemahkan"
+ },
+ {
+ "language": {
+ "code": "it",
+ "name": "Italian"
+ },
+ "repository": "python/python-docs-it",
+ "branch": "3.13",
+ "completion": 3.622844486631862,
+ "change": 0.0,
+ "translators": {
+ "number": 3,
+ "link": "https://github.com/python/python-docs-it/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-it"
+ },
+ {
+ "language": {
+ "code": "ja",
+ "name": "Japanese"
+ },
+ "repository": "python/python-docs-ja",
+ "branch": "3.11",
+ "completion": 53.12450561619997,
+ "change": 0.03955070400252936,
+ "translators": {
+ "number": 47,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "ko",
+ "name": "Korean"
+ },
+ "repository": "python/python-docs-ko",
+ "branch": "3.13",
+ "completion": 44.15045087802563,
+ "change": 1.274851025681592,
+ "translators": {
+ "number": 23,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://www.flowdas.com/pages/python-docs-ko.html"
+ },
+ {
+ "language": {
+ "code": "mr",
+ "name": "Marathi"
+ },
+ "repository": "sanketgarade/python-doc-mr",
+ "branch": "3.9",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/sanketgarade/python-doc-mr"
+ },
+ {
+ "language": {
+ "code": "lt",
+ "name": "Lithuanian"
+ },
+ "repository": null,
+ "branch": "",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 0,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": null
+ },
+ {
+ "language": {
+ "code": "fa",
+ "name": "Persian"
+ },
+ "repository": "revisto/python-docs-fa",
+ "branch": "3.13",
+ "completion": 0.05141591520329062,
+ "change": 0.05141591520329062,
+ "translators": {
+ "number": 10,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/revisto/python-docs-fa"
+ },
+ {
+ "language": {
+ "code": "pl",
+ "name": "Polish"
+ },
+ "repository": "python/python-docs-pl",
+ "branch": "3.13",
+ "completion": 11.187575805516005,
+ "change": 0.029003849601856757,
+ "translators": {
+ "number": 25,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "pt",
+ "name": "Portuguese"
+ },
+ "repository": null,
+ "branch": "",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 0,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": null
+ },
+ {
+ "language": {
+ "code": "pt-br",
+ "name": "Brazilian Portuguese"
+ },
+ "repository": "python/python-docs-pt-br",
+ "branch": "3.13",
+ "completion": 60.62859252228023,
+ "change": 0.7896957232505386,
+ "translators": {
+ "number": 155,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "ro",
+ "name": "Romanian"
+ },
+ "repository": "octaG-M/python-docs-ro",
+ "branch": "main",
+ "completion": 0.2953119232189,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/octaG-M/python-docs-ro"
+ },
+ {
+ "language": {
+ "code": "ru",
+ "name": "Russian"
+ },
+ "repository": "MLGRussianXP/python-docs-ru",
+ "branch": "3.13",
+ "completion": 0.20170859041290934,
+ "change": 0.0,
+ "translators": {
+ "number": 22,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/MLGRussianXP/python-docs-ru"
+ },
+ {
+ "language": {
+ "code": "zh-cn",
+ "name": "Simplified Chinese"
+ },
+ "repository": "python/python-docs-zh-cn",
+ "branch": "3.13",
+ "completion": 81.54564151241892,
+ "change": 0.8252913568528157,
+ "translators": {
+ "number": 234,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "es",
+ "name": "Spanish"
+ },
+ "repository": "python/python-docs-es",
+ "branch": "3.13",
+ "completion": 62.785424247218266,
+ "change": 0.11601539840742703,
+ "translators": {
+ "number": 312,
+ "link": "https://github.com/python/python-docs-es/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://python-docs-es.readthedocs.io/page/CONTRIBUTING.html"
+ },
+ {
+ "language": {
+ "code": "zh-tw",
+ "name": "Traditional Chinese"
+ },
+ "repository": "python/python-docs-zh-tw",
+ "branch": "3.13",
+ "completion": 37.35959500079102,
+ "change": 0.0,
+ "translators": {
+ "number": 120,
+ "link": "https://github.com/python/python-docs-zh-tw/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-zh-tw/blob/3.13/README.rst#%E5%8F%83%E8%88%87%E7%BF%BB%E8%AD%AF"
+ },
+ {
+ "language": {
+ "code": "tr",
+ "name": "Turkish"
+ },
+ "repository": "python/python-docs-tr",
+ "branch": "3.12",
+ "completion": 5.0690818963244215,
+ "change": 0.0,
+ "translators": {
+ "number": 29,
+ "link": "https://github.com/python/python-docs-tr/blob/3.12/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-tr/blob/3.12/README.md#%C3%A7eviriye-katk%C4%B1da-bulunmak"
+ },
+ {
+ "language": {
+ "code": "uk",
+ "name": "Ukrainian"
+ },
+ "repository": "python/python-docs-uk",
+ "branch": "3.13",
+ "completion": 53.51605758582503,
+ "change": 53.51605758582503,
+ "translators": {
+ "number": 13,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": false,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ }
+]
\ No newline at end of file
diff --git a/89/merge/metadata.html b/89/merge/metadata.html
new file mode 100644
index 000000000..365436d13
--- /dev/null
+++ b/89/merge/metadata.html
@@ -0,0 +1,307 @@
+
+
+ Python Docs Translation Dashboard
+
+
+
+
+
+Python Docs Translation Dashboard
+
+main | meta
+
+
+
+
+ language
+ branch
+ last updated
+ build warnings*
+ lint failures
+
+
+
+
+
+ Simplified Chinese (zh-cn)
+ 3.13
+ 2025/05/01 15:56:03
+
+ 6
+
+
+ 307
+
+
+
+
+ Spanish (es)
+ 3.13
+ 2025/04/26 19:58:08
+
+ 0
+
+
+ 2
+
+
+
+
+ Brazilian Portuguese (pt-br)
+ 3.13
+ 2025/04/30 23:08:59
+
+ 0
+
+
+ 0
+
+
+
+
+ Ukrainian (uk)
+ 3.13
+ 2025/05/01 16:40:42
+
+ 10
+
+
+ 0
+
+
+
+
+ Japanese (ja)
+ 3.11
+ 2025/04/30 23:49:58
+
+ 324
+
+
+ 370
+
+
+
+
+ Korean (ko)
+ 3.13
+ 2025/05/01 19:40:39
+
+ 0
+
+
+ 0
+
+
+
+
+ Traditional Chinese (zh-tw)
+ 3.13
+ 2025/04/24 13:57:20
+
+ 0
+
+
+ 6
+
+
+
+
+ French (fr)
+ 3.13
+ 2024/11/15 23:05:57
+
+ 3
+
+
+ 4
+
+
+
+
+ Polish (pl)
+ 3.13
+ 2025/04/30 22:58:07
+
+ 0
+
+
+ 0
+
+
+
+
+ Indonesian (id)
+ 3.9
+ 2021/05/30 22:15:38
+
+ 46
+
+
+ 34
+
+
+
+
+ Greek (gr)
+ 3.12
+ 2025/04/30 00:10:21
+
+ 5
+
+
+ 53
+
+
+
+
+ Turkish (tr)
+ 3.12
+ 2024/12/15 06:56:02
+
+ 0
+
+
+ 0
+
+
+
+
+ Italian (it)
+ 3.13
+ 2024/06/08 12:26:23
+
+ 0
+
+
+ 0
+
+
+
+
+ Romanian (ro)
+ main
+ 2025/03/30 11:04:26
+
+ 0
+
+
+ 2
+
+
+
+
+ Russian (ru)
+ 3.13
+ 2025/04/25 14:57:03
+
+ 0
+
+
+ 0
+
+
+
+
+ Persian (fa)
+ 3.13
+ 2025/05/02 00:24:22
+
+ 0
+
+
+ 0
+
+
+
+
+ Arabic (ar)
+ master
+ 2024/05/24 14:10:55
+
+ 3
+
+
+ 1
+
+
+
+
+ Hindi (hi-in)
+ master
+ 2019/05/07 01:31:24
+
+ 0
+
+
+ 0
+
+
+
+
+ Marathi (mr)
+ 3.9
+ 2022/05/20 01:19:57
+
+ 0
+
+
+ 0
+
+
+
+
+ Hungarian (hu)
+ master
+ 2017/06/10 10:25:25
+
+ 0
+
+
+ 0
+
+
+
+
+ Portuguese (pt)
+
+
+
+ 0
+
+
+ 0
+
+
+
+
+ Lithuanian (lt)
+
+
+
+ 0
+
+
+ 0
+
+
+
+
+ Bengali (bn-in)
+
+
+
+ 0
+
+
+ 0
+
+
+
+
+
+* number of Sphinx build process warnings
+For more information about translations, see the Python Developer’s Guide .
+Last updated at Thursday, 1 May 2025, 21:10:58 UTC (in 34:38 minutes).
+
+
\ No newline at end of file
diff --git a/89/merge/style.css b/89/merge/style.css
new file mode 100644
index 000000000..18e3eaf12
--- /dev/null
+++ b/89/merge/style.css
@@ -0,0 +1,91 @@
+body {
+ font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
+}
+table {
+ border-collapse: collapse;
+}
+th, td {
+ border: 1px solid #ddd;
+ padding: 8px 12px;
+ text-align: left;
+ white-space: nowrap;
+}
+th {
+ background-color: #f4f4f4;
+}
+.progress-bar {
+ display: inline-block;
+ color: white;
+ height: 20px;
+ line-height: 20px;
+ text-align: center;
+ overflow: hidden;
+ white-space: nowrap;
+ box-sizing: border-box;
+}
+.progress-bar-outer-label {
+ display: none;
+ padding-left: .5em;
+ height: 20px;
+ line-height: 20px;
+ overflow: hidden;
+}
+.progress-bar.low {
+ color: transparent;
+ user-select: none;
+}
+.progress-bar.low + .progress-bar-outer-label {
+ display: inline-block;
+}
+td[data-label="translators"], td[data-label="warnings"], td[data-label="lint"] {
+ text-align: right;
+}
+td[data-label="completion"] {
+ width: 100%;
+ line-height: 0;
+}
+.switchpages{
+ position: absolute;
+ top: 10px;
+ right: 10px;
+ }
+
+@media screen and (max-width: 675px) {
+ .switchpages{
+ all: unset;
+ }
+}
+
+@media screen and (max-width: 600px) {
+ table, thead, tbody, th, td, tr {
+ display: block;
+ }
+ th {
+ position: absolute;
+ top: -9999px;
+ left: -9999px;
+ }
+ tr {
+ border: 1px solid #ccc;
+ margin-bottom: 5px;
+ }
+ td {
+ border: none;
+ border-bottom: 1px solid #eee;
+ padding-left: 50%;
+ position: relative;
+ }
+ td:before {
+ content: attr(data-label);
+ font-weight: bold;
+ left: 10px;
+ position: absolute;
+ }
+ td[data-label="completion"] {
+ width: inherit;
+ }
+ .progress-bar {
+ min-width: 0;
+ width: 100% !important;
+ }
+}
diff --git a/89/merge/warnings-ar.txt b/89/merge/warnings-ar.txt
new file mode 100644
index 000000000..c8862d765
--- /dev/null
+++ b/89/merge/warnings-ar.txt
@@ -0,0 +1,3 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:24: WARNING: inconsistent term references in translated message. original: [':ref:`installing-index`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:27: WARNING: inconsistent term references in translated message. original: [':ref:`reference-index`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64: WARNING: inconsistent term references in translated message. original: [':ref:`Frequently Asked Questions `'], translated: [] [i18n.inconsistent_references]
diff --git a/89/merge/warnings-es.txt b/89/merge/warnings-es.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-fa.txt b/89/merge/warnings-fa.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-fr.txt b/89/merge/warnings-fr.txt
new file mode 100644
index 000000000..70263ff9e
--- /dev/null
+++ b/89/merge/warnings-fr.txt
@@ -0,0 +1,3 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/classes.rst:772: WARNING: inconsistent term references in translated message. original: [':ref:`Instance method objects `', ':attr:`m.__self__ `', ':attr:`m.__func__ `', ':ref:`function object `'], translated: [':attr:`m.__self__ `', ':attr:`m.__func__ `', ':ref:`objet fonction `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/import.rst:602: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`__repr__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:323: WARNING: inconsistent term references in translated message. original: [':class:`int`', ':class:`int`', ':class:`float`', ':class:`float`', ':class:`int`'], translated: [':class:`int`', ':class:`int`', ':class:`float`', ':class:`float`'] [i18n.inconsistent_references]
diff --git a/89/merge/warnings-gr.txt b/89/merge/warnings-gr.txt
new file mode 100644
index 000000000..cfd9abfcb
--- /dev/null
+++ b/89/merge/warnings-gr.txt
@@ -0,0 +1,5 @@
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
diff --git a/89/merge/warnings-hi-in.txt b/89/merge/warnings-hi-in.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-id.txt b/89/merge/warnings-id.txt
new file mode 100644
index 000000000..cfb1747d7
--- /dev/null
+++ b/89/merge/warnings-id.txt
@@ -0,0 +1,47 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/faq/general.rst:: ERROR: Anonymous hyperlink mismatch: 1 references but 0 targets.
+See "backrefs" attribute for IDs. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/faq/windows.rst:276: WARNING: inconsistent term references in translated message. original: [':mod:`msvcrt`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/cporting.rst:17: WARNING: inconsistent references in translated message. original: ['`Cython`_', '`CFFI`_'], translated: ['`Cython`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/abstract.rst:14: WARNING: inconsistent term references in translated message. original: [':c:func:`PyList_New`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/appendix.rst:50: WARNING: inconsistent term references in translated message. original: [':exc:`KeyboardInterrupt`', ':keyword:`try`'], translated: [':exc:`KeyboardInterrupt`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:872::1: WARNING: Inline literal start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:872::1: WARNING: Inline literal start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/datastructures.rst:407: WARNING: inconsistent term references in translated message. original: [':term:`immutable`', ':func:`namedtuples `', ':term:`mutable`'], translated: [':term:`immutable`', ':func:`namedtuples `). Daftar adalah :term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/datastructures.rst:693: WARNING: inconsistent term references in translated message. original: [':ref:`walrus operator `'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:108: WARNING: inconsistent term references in translated message. original: [':keyword:`try`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:423: WARNING: inconsistent term references in translated message. original: [':keyword:`break`', ':keyword:`continue`', ':keyword:`return`'], translated: [':keyword:`break`', ':keyword:`continue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/inputoutput.rst:522: WARNING: inconsistent term references in translated message. original: [':func:`~json.dumps`', ':func:`~json.dump`', ':term:`text file`', ':term:`text file`'], translated: [':func:`~json.dumps`', ':func:`~json.dump`', ':term:`text file`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/interpreter.rst:73: WARNING: inconsistent term references in translated message. original: [':option:`-c`', ':option:`-m`', ':option:`-c`', ':option:`-m`'], translated: [':option:`-c`', ':option:`-c`', ':option:`-m`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/introduction.rst:132: WARNING: inconsistent term references in translated message. original: [':class:`int`', ':class:`float`', ':class:`~decimal.Decimal`', ':class:`~fractions.Fraction`', ':ref:`complex numbers `'], translated: [':class:`int`', ':class:`~decimal.Decimal`', ':class:`~fractions.Fraction`', ':ref:`complex numbers `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/modules.rst:206: WARNING: inconsistent term references in translated message. original: [':data:`sys.path`', ':ref:`tut-standardmodules`'], translated: [':ref:`tut-standardmodules`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:238: WARNING: inconsistent term references in translated message. original: [':mod:`zlib`', ':mod:`gzip`', ':mod:`bz2`', ':mod:`lzma`', ':mod:`zipfile`', ':mod:`tarfile`'], translated: [':mod:`gzip`', ':mod:`bz2`', ':mod:`lzma`', ':mod:`zipfile`', ':mod:`tarfile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:264: WARNING: inconsistent term references in translated message. original: [':mod:`timeit`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:288: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:174: WARNING: inconsistent term references in translated message. original: [':mod:`threading`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64: WARNING: inconsistent term references in translated message. original: [':ref:`Frequently Asked Questions `'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/html.entities.rst:13: WARNING: inconsistent term references in translated message. original: [':data:`html5`', ':data:`name2codepoint`', ':data:`codepoint2name`', ':data:`entitydefs`'], translated: [':data:`html5`', ':data:`name2codepoint`', ':data:`codepoint2name`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:1324: WARNING: inconsistent term references in translated message. original: [':ref:`sortinghowto`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:213: WARNING: inconsistent term references in translated message. original: [':ref:`binaryseq`', ':ref:`typebytearray`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:473: WARNING: inconsistent term references in translated message. original: [':class:`list`', ':class:`set`', ':class:`tuple`', ':mod:`collections`'], translated: [':class:`set`', ':class:`tuple`', ':mod:`collections`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:848: WARNING: inconsistent term references in translated message. original: [':class:`set`', ':class:`list`', ':class:`tuple`', ':class:`dict`', ':mod:`collections`'], translated: [':class:`set`', ':class:`list`', ':class:`dict`', ':mod:`collections`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1040: WARNING: inconsistent term references in translated message. original: [':class:`int`', ':meth:`base.__index__ `', ':meth:`base.__int__ `', ':meth:`base.__index__\n`'], translated: [':class:`int`', ':meth:`base.__index__ `', ':meth:`base.__int__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1144: WARNING: inconsistent term references in translated message. original: [':class:`list`', ':ref:`typesseq-list`', ':ref:`typesseq`'], translated: [':class:`list`', ':ref:`typesseq-list`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1792: WARNING: inconsistent term references in translated message. original: [':class:`set`', ':class:`set`', ':ref:`types-set`'], translated: [':class:`set`', ':ref:`types-set`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1878: WARNING: inconsistent term references in translated message. original: [':ref:`sortinghowto`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functools.rst:146: WARNING: inconsistent term references in translated message. original: [':ref:`sortinghowto`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:205::1: WARNING: undefined label: 'buffer interface' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:962::1: WARNING: undefined label: 'auditing event' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:921::1: WARNING: undefined label: 'tuttuples' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:1134::1: WARNING: undefined label: 'tut-firstclass' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/datastructures.rst:335::1: WARNING: undefined label: 'tut-unpacking-argumen' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:368::1: WARNING: undefined label: 'tut-class' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/index.rst:40::1: WARNING: undefined label: 'glosarium' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:251::1: WARNING: unknown keyword: 'garbage collection' [ref.keyword]
diff --git a/89/merge/warnings-it.txt b/89/merge/warnings-it.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-ja.txt b/89/merge/warnings-ja.txt
new file mode 100644
index 000000000..f50cba3ad
--- /dev/null
+++ b/89/merge/warnings-ja.txt
@@ -0,0 +1,321 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:109: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`PyArg_ParseTuple`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:182: WARNING: inconsistent term references in translated message. original: [':c:func:`malloc`', ':c:func:`malloc`', ':c:func:`realloc`', ':c:func:`PyErr_NoMemory`', ':c:func:`PyLong_FromLong`', ':c:func:`malloc`'], translated: [':c:func:`malloc`', ':c:func:`malloc`', ':c:func:`realloc`', ':c:func:`PyErr_NoMemory`', ':c:func:`PyLong_FromLong`', ':c:func:`PyErr_NoMemory`', ':c:func:`malloc`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:585: WARNING: inconsistent term references in translated message. original: [':c:func:`PyObject_CallObject`', ':c:func:`PyErr_Clear`'], translated: [':c:func:`Py_DECREF`', ':c:func:`PyObject_CallObject`', ':c:func:`PyErr_Clear`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:653: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`PyArg_ParseTuple`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:813: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`Py_BuildValue`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:818: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`Py_BuildValue`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:823: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`', ':c:func:`Py_BuildValue`'], translated: [':c:func:`PyArg_ParseTuple`', ':c:func:`PyArg_ParseTuple`', ':c:func:`Py_BuildValue`', ':c:func:`Py_BuildValue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:961: WARNING: inconsistent term references in translated message. original: [':c:func:`Py_INCREF`'], translated: [':c:func:`Py_INCREF`', ':c:func:`Py_INCREF`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:91: WARNING: inconsistent term references in translated message. original: [':term:`asynchronous generator iterator`', ':keyword:`async def`', ':keyword:`yield`', ':keyword:`async for`'], translated: [':term:`asynchronous generator iterator`', ':keyword:`async def`', ':keyword:`yield`', ':keyword:`yield`', ':keyword:`async for`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:544: WARNING: inconsistent term references in translated message. original: [':term:`generator iterator`', ':keyword:`yield`', ':func:`next`'], translated: [':term:`generator iterator`', ':keyword:`yield`', ':keyword:`yield`', ':func:`next`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:800: WARNING: inconsistent term references in translated message. original: [':keyword:`if`'], translated: [':keyword:`if`', ':keyword:`if`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:983: WARNING: inconsistent term references in translated message. original: [':term:`function`', ':term:`argument`'], translated: [':term:`関数 `', ':term:`メソッド `', ':term:`実引数 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/argparse.rst:11: WARNING: inconsistent term references in translated message. original: [':mod:`argparse`'], translated: [':mod:`argparse`', ':mod:`argparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/typeobj.rst:961: WARNING: inconsistent term references in translated message. original: [':func:`str`', ':class:`str`', ':func:`str`', ':c:func:`PyObject_Str`', ':c:func:`PyObject_Str`'], translated: [':func:`str`', ':class:`str`', ':func:`str`', ':class:`str`', ':c:func:`PyObject_Str`', ':c:func:`PyObject_Str`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/typeobj.rst:1498: WARNING: inconsistent term references in translated message. original: [':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`'], translated: [':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/enum.rst:1089: WARNING: inconsistent term references in translated message. original: [':func:`dir`'], translated: [':func:`dir`', ':func:`dir`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/functional.rst:726: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`zip`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/logging-cookbook.rst:858: WARNING: inconsistent term references in translated message. original: [':class:`Logger`', ':class:`Logger`', ':class:`Logger`'], translated: [':class:`Logger`', ':class:`Logger`', ':class:`Logger`', ':class:`Logger`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/argparse.rst:986: WARNING: inconsistent references in translated message. original: ['type_', 'default_'], translated: ['type_', 'default_', 'default_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/array.rst:129: WARNING: inconsistent term references in translated message. original: [':ref:`bufferobjects`'], translated: [':meth:`buffer_info`', ':ref:`bufferobjects`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/ast.rst:2150: WARNING: inconsistent term references in translated message. original: [':func:`ast.parse`', ':class:`ast.operator`', ':class:`ast.unaryop`', ':class:`ast.cmpop`', ':class:`ast.boolop`', ':class:`ast.expr_context`', ':class:`ast.Add`'], translated: [':func:`ast.parse`', ':class:`ast.operator`', ':class:`ast.unaryop`', ':class:`ast.cmpop`', ':class:`ast.boolop`', ':class:`ast.expr_context`', ':class:`ast.Add`', ':class:`ast.Add`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/asyncio-dev.rst:89: WARNING: inconsistent term references in translated message. original: [':func:`run_coroutine_threadsafe`', ':class:`concurrent.futures.Future`'], translated: [':func:`run_coroutine_threadsafe`', ':func:`run_coroutine_threadsafe`', ':class:`concurrent.futures.Future`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:433: WARNING: inconsistent term references in translated message. original: [':keyword:`pass`'], translated: [':keyword:`pass`', ':keyword:`pass`', ':keyword:`pass`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:700: WARNING: inconsistent term references in translated message. original: [], translated: [':keyword:`break`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:728: WARNING: inconsistent term references in translated message. original: [':keyword:`continue`', ':keyword:`for`', ':keyword:`while`'], translated: [':keyword:`continue`', ':keyword:`for`', ':keyword:`while`', ':keyword:`continue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:922: WARNING: inconsistent term references in translated message. original: [':mod:`__future__`'], translated: [':mod:`__future__`', ':mod:`__future__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/toplevel_components.rst:28: WARNING: inconsistent term references in translated message. original: [':mod:`sys`', ':mod:`builtins`', ':mod:`__main__`'], translated: [':mod:`sys`', ':mod:`builtins`', ':mod:`__main__`', ':mod:`__main__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:556::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:51: WARNING: inconsistent term references in translated message. original: [':keyword:`for`'], translated: [':keyword:`for`', ':keyword:`for`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:259: WARNING: inconsistent term references in translated message. original: [':keyword:`pass`'], translated: [':keyword:`pass`', ':keyword:`pass`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:482: WARNING: inconsistent term references in translated message. original: [':keyword:`def`'], translated: [':keyword:`def`', ':keyword:`def`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:556::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:217: WARNING: inconsistent term references in translated message. original: [':keyword:`try`', ':keyword:`except`'], translated: [':keyword:`try`', ':keyword:`except`', ':keyword:`else`', ':keyword:`except`', ':keyword:`else`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/inputoutput.rst:263: WARNING: inconsistent term references in translated message. original: [':func:`print`'], translated: [':func:`print`', ':func:`print`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/interactive.rst:19: WARNING: inconsistent term references in translated message. original: [':ref:`automatically enabled `', ':meth:`~object.__getattr__`'], translated: [':ref:`自動的に有効化されます `', ':meth:`~object.__getattr__`', ':meth:`~object.__getattr__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/introduction.rst:542: WARNING: inconsistent term references in translated message. original: [':func:`print`'], translated: [':func:`print`', ':func:`print`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/modules.rst:309: WARNING: inconsistent term references in translated message. original: [':func:`dir`'], translated: [':func:`dir`', ':func:`dir`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:66: WARNING: inconsistent term references in translated message. original: [':mod:`sys`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:53: WARNING: inconsistent term references in translated message. original: [':mod:`locale`'], translated: [':mod:`locale`', ':mod:`locale`', ':func:`format`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:103: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`~string.Template`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:198: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`threading`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:234: WARNING: inconsistent term references in translated message. original: [':const:`~logging.DEBUG`', ':const:`~logging.INFO`', ':const:`~logging.WARNING`', ':const:`~logging.ERROR`', ':const:`~logging.CRITICAL`'], translated: [':meth:`~logging.Logger.info`', ':meth:`~logging.Logger.debug`', ':const:`~logging.DEBUG`', ':const:`~logging.INFO`', ':const:`~logging.WARNING`', ':const:`~logging.ERROR`', ':const:`~logging.CRITICAL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:380: WARNING: inconsistent term references in translated message. original: [':class:`~decimal.Decimal`'], translated: [':class:`~decimal.Decimal`', ':class:`~decimal.Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/using/windows.rst:629: WARNING: inconsistent term references in translated message. original: [':ref:`launcher`'], translated: [':envvar:`PATH`', ':envvar:`PATHEXT`', ':ref:`launcher`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:161: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:299: WARNING: inconsistent term references in translated message. original: [], translated: [':keyword:`if`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:411: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:1103: WARNING: inconsistent term references in translated message. original: [':mod:`mmap`', ':mod:`re`'], translated: [':mod:`mmap`', ':term:`mutable`', ':mod:`re`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.2.rst:571: WARNING: inconsistent term references in translated message. original: [':keyword:`yield`', ':keyword:`return`', ':keyword:`try`', ':keyword:`finally`'], translated: [':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:43: WARNING: inconsistent term references in translated message. original: [':class:`Set`'], translated: [':class:`Set`', ':term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:156: WARNING: inconsistent term references in translated message. original: [':keyword:`yield`', ':keyword:`return`', ':keyword:`try`'], translated: [':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:291: WARNING: inconsistent term references in translated message. original: [':mod:`zipimport`'], translated: [':mod:`zipimport`', ':mod:`zipimport`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:344: WARNING: inconsistent term references in translated message. original: [':func:`open`', ':func:`os.listdir`'], translated: [':func:`open`', ':func:`os.listdir`', ':func:`os.getcwdu`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:888: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:1698: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:1720: WARNING: inconsistent term references in translated message. original: [':meth:`~datetime.datetime.isoformat`', ':class:`~datetime.date`', ':class:`~datetime.datetime`', ':class:`~datetime.timedelta`', ':class:`~datetime.date`', ':class:`~datetime.datetime`'], translated: [':meth:`~datetime.datetime.isoformat`', ':class:`~datetime.datetime`', ':class:`~datetime.timedelta`', ':class:`~datetime.date`', ':class:`~datetime.datetime`', ':class:`~datetime.date`', ':class:`~datetime.datetime`', ':class:`~datetime.datetime`', ':meth:`~datetime.strptime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:1736: WARNING: inconsistent term references in translated message. original: [':mod:`getopt`', ':mod:`optparse`'], translated: [':mod:`getopt`', ':mod:`optparse`', ':mod:`optparse`', ':mod:`argparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.4.rst:71: WARNING: inconsistent term references in translated message. original: [':func:`frozenset`', ':func:`set`'], translated: [':func:`frozenset`', ':func:`set`', ':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.4.rst:75: WARNING: inconsistent term references in translated message. original: [':mod:`sets`', ':class:`Set`', ':class:`ImmutableSet`'], translated: [':mod:`sets`', ':class:`Set`', ':class:`ImmutableSet`', ':mod:`sets`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.4.rst:545: WARNING: inconsistent term references in translated message. original: [':class:`Decimal`', ':class:`Decimal`'], translated: [':class:`Decimal`', ':term:`immutable`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:504: WARNING: inconsistent term references in translated message. original: [':meth:`close`', ':exc:`GeneratorExit`', ':exc:`GeneratorExit`', ':exc:`StopIteration`', ':exc:`GeneratorExit`', ':exc:`RuntimeError`', ':meth:`close`'], translated: [':meth:`close`', ':exc:`GeneratorExit`', ':exc:`GeneratorExit`', ':exc:`StopIteration`', ':exc:`RuntimeError`', ':meth:`close`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:848: WARNING: inconsistent term references in translated message. original: [':exc:`BaseException`', ':exc:`BaseException`', ':exc:`Exception`'], translated: [':exc:`BaseException`', ':exc:`BaseException`', ':exc:`Exception`', ':exc:`BaseException`', ':exc:`BaseException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:1081: WARNING: inconsistent term references in translated message. original: [':class:`UnicodeDecodeError`', ':class:`UnicodeDecodeError`'], translated: [':class:`UnicodeDecodeError`', ':class:`UnicodeDecodeError`', ':class:`UnicodeDecodeError`', ':class:`UnicodeWarning`', ':exc:`KeyError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:1706: WARNING: inconsistent term references in translated message. original: [':func:`c_char_p`', ':func:`create_string_buffer`'], translated: [':func:`c_char_p`', ':term:`immutable`', ':func:`create_string_buffer`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:1998: WARNING: inconsistent term references in translated message. original: [':meth:`fetchone`', ':meth:`fetchall`'], translated: [':term:`iterator`', ':meth:`~Cursor.fetchone`', ':meth:`~Cursor.fetchall`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:984: WARNING: inconsistent term references in translated message. original: [':class:`bytes`', ':class:`bytearray`'], translated: [':class:`bytes`', ':term:`immutable`', ':class:`bytearray`', ':term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:999: WARNING: inconsistent term references in translated message. original: [':meth:`startswith`', ':meth:`endswith`', ':meth:`find`', ':meth:`rfind`', ':meth:`append`', ':meth:`pop`', ':meth:`reverse`'], translated: [':class:`bytearray`', ':meth:`startswith`', ':meth:`endswith`', ':meth:`find`', ':meth:`rfind`', ':meth:`append`', ':meth:`pop`', ':meth:`reverse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:1490: WARNING: inconsistent term references in translated message. original: [':func:`hasattr`', ':meth:`__getattr__`', ':func:`hasattr`', ':exc:`KeyboardInterrupt`', ':exc:`SystemExit`', ':func:`hasattr`'], translated: [':func:`hasattr`', ':meth:`__getattr__`', ':exc:`KeyboardInterrupt`', ':exc:`SystemExit`', ':func:`hasattr`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:1531: WARNING: inconsistent term references in translated message. original: [':meth:`index`', ':meth:`count`', ':meth:`index`', ':meth:`count`'], translated: [':meth:`index`', ':meth:`count`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:1954: WARNING: inconsistent term references in translated message. original: [':func:`reduce`', ':mod:`functools`', ':func:`reduce`', ':mod:`functools`'], translated: [':func:`reduce`', ':mod:`functools`', ':mod:`functools`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.rst:117: WARNING: inconsistent references in translated message. original: ['`ZIP bomb`_'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:406: WARNING: inconsistent term references in translated message. original: [':class:`NodeList`', ':class:`Element`', ':meth:`getElementsByTagName`', ':meth:`getElementsByTagNameNS`', ':class:`Node`'], translated: [':class:`NodeList`', ':class:`Element`', ':class:`NodeList`', ':class:`Node`', ':meth:`getElementsByTagName`', ':meth:`getElementsByTagNameNS`', ':class:`NodeList`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:505: WARNING: inconsistent term references in translated message. original: [':class:`Document`', ':class:`Node`'], translated: [':class:`Document`', ':class:`Document`', ':class:`Node`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:585: WARNING: inconsistent term references in translated message. original: [':class:`Element`', ':class:`Node`'], translated: [':class:`Element`', ':class:`Node`', ':class:`Node`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:746: WARNING: inconsistent term references in translated message. original: [':class:`Comment`', ':class:`Node`'], translated: [':class:`Comment`', ':class:`Comment`', ':class:`Node`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.minidom.rst:113: WARNING: inconsistent term references in translated message. original: [':mod:`xml.dom`', ':mod:`xml.dom.minidom`'], translated: [':mod:`xml.dom`', ':mod:`xml.dom`', ':mod:`xml.dom.minidom`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.etree.elementtree.rst:90: WARNING: inconsistent term references in translated message. original: [':func:`fromstring`', ':class:`Element`', ':class:`ElementTree`'], translated: [':func:`fromstring`', ':class:`Element`', ':class:`Element`', ':class:`ElementTree`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.sax.reader.rst:183: WARNING: inconsistent term references in translated message. original: [':exc:`SAXNotRecognizedException`'], translated: [':exc:`SAXNotRecognizedException`', ':exc:`SAXNotSupportedException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.sax.reader.rst:197: WARNING: inconsistent term references in translated message. original: [':exc:`SAXNotRecognizedException`'], translated: [':exc:`SAXNotRecognizedException`', ':exc:`SAXNotSupportedException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xmlrpc.client.rst:527: WARNING: inconsistent term references in translated message. original: [':exc:`Fault`', ':const:`None`'], translated: [':exc:`Fault`', ':const:`None`', ':const:`None`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xmlrpc.server.rst:100: WARNING: inconsistent term references in translated message. original: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`'], translated: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xmlrpc.server.rst:314: WARNING: inconsistent term references in translated message. original: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`'], translated: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/zipimport.rst:50: WARNING: inconsistent term references in translated message. original: [':mod:`importlib`'], translated: [':mod:`importlib`', ':keyword:`import`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:99: WARNING: inconsistent term references in translated message. original: [':ref:`booleans`', ':keyword:`if`', ':keyword:`else`'], translated: [':keyword:`if`', ':ref:`booleans`', ':keyword:`if`', ':keyword:`else`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:124: WARNING: inconsistent term references in translated message. original: [], translated: [':keyword:`while`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:259: WARNING: inconsistent term references in translated message. original: [':keyword:`try`'], translated: [':keyword:`except`', ':keyword:`try`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:442: WARNING: inconsistent term references in translated message. original: [':keyword:`return`', ':keyword:`break`', ':keyword:`continue`', ':keyword:`try`'], translated: [':keyword:`try`', ':keyword:`try`', ':keyword:`return`', ':keyword:`break`', ':keyword:`continue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:44: WARNING: inconsistent term references in translated message. original: [':func:`type`'], translated: [':func:`len`', ':func:`type`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:1893: WARNING: inconsistent term references in translated message. original: [':meth:`__new__`', ':meth:`__init__`', ':meth:`__init__`'], translated: [':meth:`__new__`', ':meth:`__init__`', ':meth:`__init__`', ':meth:`__init__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:1913: WARNING: inconsistent term references in translated message. original: [':meth:`__del__`', ':meth:`__del__`'], translated: [':meth:`__del__`', ':meth:`__del__`', ':meth:`__del__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:2239: WARNING: inconsistent term references in translated message. original: [':meth:`__getattr__`', ':meth:`__getattribute__`', ':exc:`AttributeError`', ':exc:`AttributeError`'], translated: [':meth:`__getattr__`', ':meth:`__getattr__`', ':meth:`__getattribute__`', ':exc:`AttributeError`', ':exc:`AttributeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/executionmodel.rst:81: WARNING: inconsistent term references in translated message. original: [':keyword:`del`'], translated: [':keyword:`del`', ':keyword:`del`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/executionmodel.rst:357: WARNING: inconsistent term references in translated message. original: [':keyword:`raise`', ':keyword:`try`', ':keyword:`except`', ':keyword:`finally`'], translated: [':keyword:`raise`', ':keyword:`try`', ':keyword:`except`', ':keyword:`try`', ':keyword:`finally`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/expressions.rst:1756: WARNING: inconsistent term references in translated message. original: [':keyword:`is`', ':keyword:`is not`', ':meth:`id`'], translated: [':keyword:`is`', ':keyword:`is not`', ':meth:`id`', ':keyword:`is`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/import.rst:225: WARNING: inconsistent term references in translated message. original: [':term:`import path`', ':term:`import path`'], translated: [':doc:`プログラミング FAQ <../faq/programming>`', ':term:`インポートパス `', ':term:`インポートパス `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/import.rst:427: WARNING: inconsistent term references in translated message. original: [':exc:`ImportError`', ':meth:`~importlib.abc.Loader.exec_module`'], translated: [':meth:`~importlib.abc.Loader.exec_module`', ':exc:`ImportError`', ':exc:`ImportError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:293: WARNING: inconsistent term references in translated message. original: [':meth:`~Thread.start`', ':meth:`~Thread.run`'], translated: [':meth:`~Thread.start`', ':meth:`start`', ':meth:`~Thread.run`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:328: WARNING: inconsistent term references in translated message. original: [':ref:`joined `'], translated: [':mod:`threading`', ':ref:`join `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:376: WARNING: inconsistent term references in translated message. original: [':meth:`~Thread.run`'], translated: [':meth:`~Thread.start`', ':meth:`~Thread.run`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:800: WARNING: inconsistent term references in translated message. original: [':class:`RLock`', ':meth:`release`', ':class:`RLock`'], translated: [':class:`RLock`', ':meth:`release`', ':meth:`release`', ':class:`RLock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:851: WARNING: inconsistent term references in translated message. original: [':meth:`wait`', ':meth:`notify`'], translated: [':meth:`wait`', ':meth:`notify`', ':meth:`notify`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:926: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`release`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:960: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`acquire`', ':meth:`release`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:989: WARNING: inconsistent term references in translated message. original: [':meth:`~Event.set`', ':meth:`clear`', ':meth:`wait`'], translated: [':meth:`~Event.set`', ':const:`True`', ':meth:`clear`', ':const:`False`', ':meth:`wait`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/time.rst:597: WARNING: inconsistent term references in translated message. original: [':func:`strftime`', ':func:`ctime`', ':exc:`ValueError`'], translated: [':func:`strftime`', ':func:`ctime`', ':exc:`ValueError`', ':exc:`ValueError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/time.rst:684: WARNING: inconsistent term references in translated message. original: [':func:`mktime`', ':attr:`tm_isdst`'], translated: [':func:`mktime`', ':attr:`tm_isdst`', ':attr:`tm_isdst`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/time.rst:688: WARNING: inconsistent term references in translated message. original: [':class:`struct_time`', ':exc:`TypeError`'], translated: [':class:`struct_time`', ':class:`struct_time`', ':class:`struct_time`', ':exc:`TypeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/tkinter.rst:758: WARNING: inconsistent term references in translated message. original: [':meth:`_root`'], translated: [':meth:`_root`', ':mod:`Tkinter`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/tkinter.ttk.rst:760: WARNING: inconsistent term references in translated message. original: [':class:`Sizegrip`'], translated: [':class:`Sizegrip`', ':class:`Sizegrip`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/typing.rst:1143: WARNING: inconsistent term references in translated message. original: [':ref:`union type expressions`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:399: WARNING: inconsistent term references in translated message. original: [':meth:`~TestCase.setUp`'], translated: [':meth:`~TestCase.setUp`', ':meth:`~TestCase.setUp`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:727: WARNING: inconsistent term references in translated message. original: [':class:`TestCase`', ':mod:`unittest`'], translated: [':class:`TestCase`', ':mod:`unittest`', ':class:`TestCase`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:813: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`TestCase`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1407: WARNING: inconsistent term references in translated message. original: [':exc:`AssertionError`'], translated: [':meth:`test`', ':exc:`AssertionError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1811: WARNING: inconsistent term references in translated message. original: [':class:`TestCase`'], translated: [':class:`TestCase`', ':meth:`loadTestsFromModule`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1845: WARNING: inconsistent term references in translated message. original: [':mod:`SampleTests`', ':class:`TestCase`', ':class:`SampleTestCase`', ':meth:`test_one`', ':meth:`test_two`', ':meth:`test_three`', ':meth:`test_two`'], translated: [':mod:`SampleTests`', ':class:`TestCase`', ':class:`SampleTestCase`', ':class:`SampleTestCase`', ':meth:`test_one`', ':meth:`test_two`', ':meth:`test_three`', ':class:`SampleTestCase`', ':meth:`test_two`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1995: WARNING: inconsistent term references in translated message. original: [':mod:`unittest`', ':class:`TestResult`', ':class:`TestResult`', ':meth:`TestRunner.run`'], translated: [':mod:`unittest`', ':meth:`TestRunner.run`', ':class:`TestResult`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:2082: WARNING: inconsistent term references in translated message. original: [':attr:`shouldStop`', ':class:`TestRunner`'], translated: [':class:`TestResult`', ':attr:`shouldStop`', ':class:`TestRunner`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:2212: WARNING: inconsistent term references in translated message. original: [':class:`TestLoader`', ':class:`TestLoader`'], translated: [':class:`TestLoader`', ':class:`TestLoader`', ':class:`TestLoader`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.mock.rst:59: WARNING: inconsistent term references in translated message. original: [':class:`Mock`', ':class:`MagicMock`'], translated: [':class:`Mock`', ':class:`MagicMock`', ':class:`Mock`', ':class:`MagicMock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.mock.rst:156: WARNING: inconsistent term references in translated message. original: [':class:`MagicMock`'], translated: [':class:`MagicMock`', ':class:`Mock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.mock.rst:1444: WARNING: inconsistent term references in translated message. original: [':class:`MagicMock`'], translated: [':class:`MagicMock`', ':class:`MagicMock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/urllib.request.rst:661: WARNING: inconsistent term references in translated message. original: [':func:`urlopen`', ':meth:`open`', ':class:`OpenerDirector`'], translated: [':func:`urlopen`', ':func:`urlopen`', ':class:`OpenerDirector`', ':meth:`open`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/urllib.request.rst:1533: WARNING: inconsistent term references in translated message. original: [':class:`FancyURLopener`', ':meth:`prompt_user_passwd`'], translated: [':class:`FancyURLopener`', ':meth:`prompt_user_passwd`', ':meth:`prompt_user_passwd`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pickle.rst:200: WARNING: inconsistent term references in translated message. original: [':ref:`protocol version `', ':data:`HIGHEST_PROTOCOL`'], translated: [':ref:`プロトコルバージョン `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/platform.rst:82: WARNING: inconsistent term references in translated message. original: [':func:`mac_ver`'], translated: [':func:`mac_ver`', ':func:`mac_ver`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/poplib.rst:22: WARNING: inconsistent term references in translated message. original: [':class:`POP3_SSL`'], translated: [':class:`POP3_SSL`', ':class:`POP3_SSL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:356: WARNING: inconsistent term references in translated message. original: [':mod:`profile`', ':mod:`cProfile`', ':class:`~pstats.Stats`', ':meth:`~pstats.Stats.add`'], translated: [':class:`Stats`', ':mod:`profile`', ':mod:`cProfile`', ':class:`~pstats.Stats`', ':meth:`~pstats.Stats.add`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:679: WARNING: inconsistent term references in translated message. original: [':class:`profile.Profile`', ':class:`cProfile.Profile`'], translated: [':func:`your_time_func`', ':class:`profile.Profile`', ':class:`cProfile.Profile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:684: WARNING: inconsistent term references in translated message. original: [':func:`os.times`'], translated: [':func:`your_time_func`', ':func:`os.times`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:700: WARNING: inconsistent term references in translated message. original: [':class:`Profile`'], translated: [':func:`your_time_func`', ':class:`Profile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pyexpat.rst:520: WARNING: inconsistent term references in translated message. original: [':attr:`DefaultHandler`'], translated: [':attr:`DefaultHandler`', ':attr:`DefaultHandler`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/readline.rst:12: WARNING: inconsistent term references in translated message. original: [':mod:`readline`', ':mod:`rlcompleter`', ':func:`input`'], translated: [':mod:`readline`', ':mod:`rlcompleter`', ':mod:`rlcompleter`', ':func:`input`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/secrets.rst:24: WARNING: inconsistent term references in translated message. original: [':mod:`secrets`', ':mod:`random`'], translated: [':mod:`random`', ':mod:`secrets`', ':mod:`random`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/gettext.rst:132: WARNING: inconsistent term references in translated message. original: [':envvar:`LANGUAGE`', ':envvar:`LC_ALL`', ':envvar:`LC_MESSAGES`', ':envvar:`LANG`'], translated: [':envvar:`LANGUAGE`', ':envvar:`LC_ALL`', ':envvar:`LC_MESSAGES`', ':envvar:`LANG`', ':func:`find`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/http.cookiejar.rst:630: WARNING: inconsistent term references in translated message. original: [':const:`None`', ':attr:`version`', ':mod:`http.cookiejar`', ':attr:`version`'], translated: [':const:`None`', ':mod:`http.cookiejar`', ':attr:`version`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/http.server.rst:27: WARNING: inconsistent term references in translated message. original: [':class:`HTTPServer`', ':class:`socketserver.TCPServer`'], translated: [':class:`HTTPServer`', ':class:`socketserver.TCPServer`', ':class:`HTTPServer`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/importlib.rst:193: WARNING: inconsistent term references in translated message. original: [':keyword:`from`', ':keyword:`import`', ':func:`reload`'], translated: [':keyword:`from`', ':keyword:`import`', ':func:`reload`', ':keyword:`from`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/importlib.rst:416: WARNING: inconsistent term references in translated message. original: [':exc:`ImportError`'], translated: [':class:`code`', ':exc:`ImportError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/importlib.rst:1439: WARNING: inconsistent term references in translated message. original: [':class:`~importlib.machinery.ModuleSpec`', ':term:`loader`', ':meth:`InspectLoader.is_package`'], translated: [':class:`~importlib.machinery.ModuleSpec`', ':term:`loader`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/io.rst:263: WARNING: inconsistent term references in translated message. original: [':class:`IOBase`', ':exc:`UnsupportedOperation`'], translated: [':class:`IOBase`', ':class:`IOBase`', ':exc:`UnsupportedOperation`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/itertools.rst:758: WARNING: inconsistent term references in translated message. original: [':func:`list`', ':func:`tee`'], translated: [':func:`tee`', ':func:`tee`', ':func:`list`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/shlex.rst:299: WARNING: inconsistent term references in translated message. original: [':meth:`~io.IOBase.close`'], translated: [':const:`None`', ':meth:`~io.IOBase.close`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/shutil.rst:310: WARNING: inconsistent term references in translated message. original: [':func:`rmtree`', ':func:`rmtree`', ':data:`rmtree.avoids_symlink_attacks`'], translated: [':func:`rmtree`', ':func:`rmtree`', ':func:`rmtree`', ':data:`rmtree.avoids_symlink_attacks`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/signal.rst:291: WARNING: inconsistent term references in translated message. original: [], translated: [':const:`SIGVTALRM`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/signal.rst:297: WARNING: inconsistent term references in translated message. original: [], translated: [':const:`SIGPROF`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/site.rst:165: WARNING: inconsistent term references in translated message. original: [':mod:`readline`', ':mod:`rlcompleter`', ':ref:`interactive mode `', ':option:`-S`', ':data:`sys.__interactivehook__`', ':mod:`sitecustomize`', ':mod:`usercustomize`', ':envvar:`PYTHONSTARTUP`'], translated: [':mod:`readline`', ':ref:`対話モード `', ':option:`-S`', ':mod:`rlcompleter`', ':mod:`sitecustomize`', ':mod:`usercustomize`', ':envvar:`PYTHONSTARTUP`', ':data:`sys.__interactivehook__`', ':data:`~sys.__interactivehook__`', ':mod:`sitecustomize`', ':data:`~sys.__interactivehook__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:729: WARNING: inconsistent term references in translated message. original: [':const:`AF_INET`', ':const:`AF_INET6`', ':const:`AF_UNIX`', ':const:`AF_CAN`', ':const:`AF_PACKET`', ':const:`AF_RDS`', ':const:`SOCK_STREAM`', ':const:`SOCK_DGRAM`', ':const:`SOCK_RAW`', ':const:`AF_CAN`', ':const:`CAN_RAW`', ':const:`CAN_BCM`', ':const:`CAN_ISOTP`', ':const:`CAN_J1939`'], translated: [':const:`AF_INET`', ':const:`AF_INET6`', ':const:`AF_UNIX`', ':const:`AF_CAN`', ':const:`AF_PACKET`', ':const:`AF_RDS`', ':const:`SOCK_STREAM`', ':const:`SOCK_DGRAM`', ':const:`SOCK_RAW`', ':const:`AF_CAN`', ':const:`CAN_BCM`', ':const:`CAN_ISOTP`', ':const:`CAN_J1939`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:1022: WARNING: inconsistent term references in translated message. original: [':func:`gethostbyname_ex`', ':func:`gethostbyname`', ':func:`getaddrinfo`'], translated: [':func:`gethostbyname`', ':func:`gethostbyname_ex`', ':func:`gethostbyname`', ':func:`getaddrinfo`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:1432: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`継承不可 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:1526: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`継承不可 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:2091: WARNING: inconsistent term references in translated message. original: [':func:`getdefaulttimeout`', ':const:`None`', ':meth:`~socket.accept`'], translated: [':func:`getdefaulttimeout`', ':const:`None`', ':meth:`~socket.accept`', ':const:`None`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:172: WARNING: inconsistent term references in translated message. original: [':class:`list`'], translated: [':class:`タプル `', ':class:`リスト `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:1711: WARNING: inconsistent term references in translated message. original: [':class:`tuple`', ':class:`sqlite3.Row`', ':term:`callable`', ':class:`Cursor`'], translated: [':class:`カーソル `', ':class:`タプル `', ':class:`sqlite3.Row`', ':class:`Cursor`', ':class:`タプル `', ':term:`呼び出し可能オブジェクト `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:1718: WARNING: inconsistent term references in translated message. original: [':attr:`Connection.row_factory`', ':attr:`Connection.row_factory`'], translated: [':class:`カーソル・オブジェクト `', ':attr:`Connection.row_factory`', ':attr:`Connection.row_factory`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2404: WARNING: inconsistent term references in translated message. original: [':class:`Connection`', ':keyword:`with`', ':attr:`~Connection.autocommit`'], translated: [':class:`Connection`', ':keyword:`with`', ':keyword:`with`', ':attr:`~Connection.autocommit`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2505: WARNING: inconsistent term references in translated message. original: [':class:`tuple`', ':class:`sqlite3.Row`', ':attr:`~Cursor.row_factory`'], translated: [':class:`タプル `', ':class:`タプル `', ':class:`sqlite3.Row`', ':attr:`~Cursor.row_factory`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2515: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`タプル `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2557: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`タプル `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2707: WARNING: inconsistent term references in translated message. original: [':attr:`Connection.autocommit`', ':data:`LEGACY_TRANSACTION_CONTROL`', ':attr:`Connection.isolation_level`'], translated: [':attr:`Connection.autocommit`', ':data:`LEGACY_TRANSACTION_CONTROL`', ':attr:`Connection.isolation_level`', ':data:`LEGACY_TRANSACTION_CONTROL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3206: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`bytearray.isspace`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3262: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`bytearray.isspace`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3339: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`bytearray.isspace`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3946: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`~memoryview.format`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:4401: WARNING: inconsistent term references in translated message. original: [':class:`set`'], translated: [':class:`set`', ':class:`frozenset`', ':class:`set`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:4410: WARNING: inconsistent term references in translated message. original: [':term:`hashable`', ':class:`frozenset`'], translated: [':class:`set`', ':class:`frozenset`', ':term:`ハッシュ可能 `', ':class:`frozenset`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:4570: WARNING: inconsistent term references in translated message. original: [':meth:`~object.__contains__`', ':meth:`remove`', ':meth:`discard`'], translated: [':meth:`~object.__contains__`', ':meth:`remove`', ':meth:`discard`', ':class:`frozenset`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:5031: WARNING: inconsistent term references in translated message. original: [':term:`generator`', ':class:`contextlib.contextmanager`', ':class:`contextlib.contextmanager`', ':meth:`~contextmanager.__enter__`', ':meth:`~contextmanager.__exit__`'], translated: [':term:`ジェネレータ `', ':class:`contextlib.contextmanager`', ':term:`デコレータ `', ':class:`contextlib.contextmanager`', ':meth:`~contextmanager.__enter__`', ':meth:`~contextmanager.__exit__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/subprocess.rst:46: WARNING: inconsistent term references in translated message. original: [':ref:`frequently-used-arguments`', ':class:`Popen`'], translated: [':ref:`frequently-used-arguments`', ':class:`Popen`', ':class:`Popen`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/subprocess.rst:353: WARNING: inconsistent term references in translated message. original: [':class:`Popen`'], translated: [':class:`Popen`', ':class:`Popen`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sys.rst:1868: WARNING: inconsistent term references in translated message. original: [':data:`~io.TextIOBase.buffer`', ':data:`stdout`'], translated: [':data:`~io.TextIOBase.buffer`', ':class:`bytes`', ':data:`stdout`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/tarfile.rst:559: WARNING: inconsistent term references in translated message. original: [':class:`TarInfo`', ':class:`io.BufferedReader`', ':const:`None`', ':exc:`KeyError`'], translated: [':class:`TarInfo`', ':class:`io.BufferedReader`', ':const:`None`', ':const:`None`', ':exc:`KeyError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/locale.rst:364: WARNING: inconsistent term references in translated message. original: [':func:`setlocale`'], translated: [':func:`setlocale`', ':func:`setlocale`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/logging.rst:946: WARNING: inconsistent term references in translated message. original: [':class:`LogRecord`', ':func:`getLogRecordFactory`', ':func:`setLogRecordFactory`'], translated: [':class:`LogRecord`', ':func:`getLogRecordFactory`', ':func:`setLogRecordFactory`', ':func:`setLogRecordFactory`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/logging.rst:1303: WARNING: inconsistent term references in translated message. original: [], translated: [':const:`INFO`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/logging.config.rst:30: WARNING: inconsistent term references in translated message. original: [':mod:`logging.config`', ':mod:`logging`', ':mod:`logging`', ':mod:`logging.handlers`'], translated: [':mod:`logging.config`', ':mod:`logging`', ':mod:`logging`', ':mod:`logging`', ':mod:`logging.handlers`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mailbox.rst:165: WARNING: inconsistent term references in translated message. original: [':term:`iterator`', ':class:`Message`'], translated: [':class:`Message`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mailbox.rst:598: WARNING: inconsistent term references in translated message. original: [':meth:`~Mailbox.flush`', ':meth:`~Mailbox.close`'], translated: [':meth:`~Mailbox.flush`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mailbox.rst:877: WARNING: inconsistent term references in translated message. original: [':meth:`~Mailbox.flush`', ':meth:`~Mailbox.close`'], translated: [':meth:`~Mailbox.flush`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mmap.rst:180: WARNING: inconsistent term references in translated message. original: [], translated: [':exc:`ValueError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/multiprocessing.rst:1330: WARNING: inconsistent term references in translated message. original: [':meth:`Lock.acquire`'], translated: [':class:`threading.BoundedSemaphore`', ':meth:`Lock.acquire`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/multiprocessing.rst:1468: WARNING: inconsistent term references in translated message. original: [':meth:`Lock.acquire`'], translated: [':class:`threading.BoundedSemaphore`', ':meth:`Lock.acquire`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/multiprocessing.rst:2832: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`threading`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:364: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:400: WARNING: inconsistent term references in translated message. original: [':meth:`~OptionParser.parse_args`'], translated: [':meth:`~OptionParser.parse_args`', ':mod:`optionparser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:567: WARNING: inconsistent term references in translated message. original: [':meth:`set_defaults`', ':meth:`~OptionParser.parse_args`'], translated: [':class:`OptionParser`', ':meth:`set_defaults`', ':meth:`~OptionParser.parse_args`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:585: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':attr:`~Option.help`'], translated: [':mod:`optparse`', ':attr:`~Option.help`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:606: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':meth:`parser.print_help`'], translated: [':mod:`optparse`', ':meth:`parser.print_help`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:782: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:788: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':mod:`optparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:868: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':meth:`~OptionParser.exit`', ':meth:`~OptionParser.error`'], translated: [':mod:`optparse`', ':class:`OptionParser`', ':meth:`~OptionParser.exit`', ':meth:`~OptionParser.error`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:981: WARNING: inconsistent term references in translated message. original: [':func:`make_option`'], translated: [':func:`make_option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:983: WARNING: inconsistent term references in translated message. original: [':func:`make_option`'], translated: [':func:`make_option`', ':class:`Option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:987: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:998: WARNING: inconsistent term references in translated message. original: [':func:`make_option`', ':mod:`optparse`', ':func:`make_option`'], translated: [':func:`make_option`', ':class:`Option`', ':class:`Option`', ':mod:`optparse`', ':class:`Option`', ':func:`make_option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1009: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1027: WARNING: inconsistent term references in translated message. original: [':attr:`~Option.action`', ':mod:`optparse`', ':exc:`OptionError`'], translated: [':class:`Option`', ':attr:`~Option.action`', ':mod:`optparse`', ':exc:`OptionError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1358: WARNING: inconsistent term references in translated message. original: [':attr:`~Option.help`'], translated: [':class:`OptionParser`', ':attr:`~Option.help`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1367: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':attr:`~Option.help`'], translated: [':mod:`optparse`', ':class:`OptionParser`', ':attr:`~Option.help`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1403: WARNING: inconsistent term references in translated message. original: [':attr:`~Option.help`', ':mod:`optparse`'], translated: [':class:`OptionParser`', ':class:`OptionParser`', ':meth:`print_version`', ':class:`OptionParser`', ':attr:`~Option.help`', ':mod:`optparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1495: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1526: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1531: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1554: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1584: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':mod:`optparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1595: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1755: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1772: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1992: WARNING: inconsistent term references in translated message. original: [':attr:`TYPES`'], translated: [':attr:`TYPES`', ':attr:`TYPES`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1997: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`TYPE_CHECKER`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:2161: WARNING: inconsistent term references in translated message. original: [':meth:`ensure_value`', ':meth:`ensure_value`'], translated: [':meth:`ensure_value`', ':meth:`ensure_value`', ':meth:`ensure_value`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:420: WARNING: inconsistent term references in translated message. original: [':func:`getpass.getuser`', ':envvar:`LOGNAME`', ':envvar:`USERNAME`'], translated: [':func:`getpass.getuser`', ':func:`getpass.getuser`', ':envvar:`LOGNAME`', ':envvar:`USERNAME`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:1272: WARNING: inconsistent term references in translated message. original: [':func:`open`', ':term:`file object`', ':meth:`~file.read`', ':meth:`~file.write`', ':func:`fdopen`'], translated: [':func:`open`', ':func:`open`', ':meth:`~file.read`', ':meth:`~file.write`', ':term:`ファイルオブジェクト `', ':func:`fdopen`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:1943: WARNING: inconsistent term references in translated message. original: [':data:`os.supports_fd`', ':exc:`NotImplementedError`'], translated: [':data:`os.supports_fd`', ':data:`os.supports_fd`', ':exc:`NotImplementedError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:4800: WARNING: inconsistent term references in translated message. original: [':mod:`subprocess`', ':ref:`subprocess-replacements`'], translated: [':mod:`subprocess`', ':mod:`subprocess`', ':mod:`subprocess`', ':ref:`subprocess-replacements`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:4966: WARNING: inconsistent term references in translated message. original: [':mod:`subprocess`', ':ref:`subprocess-replacements`', ':mod:`subprocess`'], translated: [':mod:`subprocess`', ':mod:`subprocess`', ':mod:`subprocess`', ':ref:`subprocess-replacements`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:31: WARNING: inconsistent term references in translated message. original: [':class:`Path`', ':ref:`concrete path `'], translated: [':class:`Path`', ':class:`Path`', ':ref:`具象パス `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:124: WARNING: inconsistent term references in translated message. original: [':class:`os.PathLike`', ':meth:`~os.PathLike.__fspath__`'], translated: [':class:`os.PathLike`', ':class:`os.PathLike`', ':meth:`~os.PathLike.__fspath__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:667: WARNING: inconsistent term references in translated message. original: [':attr:`name`'], translated: [':attr:`name`', ':attr:`name`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:684: WARNING: inconsistent term references in translated message. original: [':attr:`stem`'], translated: [':attr:`stem`', ':attr:`stem`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:987: WARNING: inconsistent term references in translated message. original: [':meth:`~Path.exists`', ':meth:`~Path.is_dir`', ':meth:`~Path.is_file`', ':meth:`~Path.is_mount`', ':meth:`~Path.is_symlink`', ':meth:`~Path.is_block_device`', ':meth:`~Path.is_char_device`', ':meth:`~Path.is_fifo`', ':meth:`~Path.is_socket`'], translated: [':meth:`~Path.exists`', ':meth:`~Path.is_dir`', ':meth:`~Path.is_file`', ':meth:`~Path.is_mount`', ':meth:`~Path.is_symlink`', ':meth:`~Path.is_block_device`', ':meth:`~Path.is_char_device`', ':meth:`~Path.is_socket`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:16: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`'], translated: [':mod:`doctest`', ':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:232: WARNING: inconsistent term references in translated message. original: [':func:`testfile`', ':ref:`doctest-basic-api`'], translated: [':func:`testfile`', ':func:`testfile`', ':ref:`doctest-basic-api`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:348: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:646: WARNING: inconsistent term references in translated message. original: [':const:`IGNORE_EXCEPTION_DETAIL`'], translated: [':mod:`doctest`', ':const:`IGNORE_EXCEPTION_DETAIL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:901: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`testfile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1051: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`DocFileSuite`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1165: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`', ':mod:`doctest`', ':mod:`unittest`'], translated: [':mod:`doctest`', ':mod:`unittest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1247: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`DocTest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1303: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Example`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1374: WARNING: inconsistent term references in translated message. original: [':class:`DocTestParser`'], translated: [':class:`DocTest`', ':class:`DocTestParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1402: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`DocTestFinder`', ':class:`DocTest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1451: WARNING: inconsistent term references in translated message. original: [':class:`Example`'], translated: [':class:`Example`', ':class:`Example`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1458: WARNING: inconsistent term references in translated message. original: [':class:`Example`', ':class:`Example`'], translated: [':class:`Example`', ':class:`Example`', ':class:`Example`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1661: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1671: WARNING: inconsistent term references in translated message. original: [':mod:`unittest`', ':func:`DocTestSuite`', ':meth:`debug`', ':class:`unittest.TestCase`'], translated: [':func:`DocTestSuite`', ':mod:`unittest`', ':meth:`debug`', ':meth:`debug`', ':class:`unittest.TestCase`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1813: WARNING: inconsistent term references in translated message. original: [':class:`DebugRunner`', ':class:`DebugRunner`'], translated: [':class:`DebugRunner`', ':class:`DebugRunner`', ':class:`DebugRunner`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1909: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`doctest`', ':mod:`doctest`', ':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/email.header.rst:110: WARNING: inconsistent term references in translated message. original: [], translated: [':exc:`UnicodeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/asyncio-protocol.rst:508: WARNING: inconsistent term references in translated message. original: [':const:`None`'], translated: [':const:`None`', ':const:`None`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/bdb.rst:28: WARNING: inconsistent term references in translated message. original: [':attr:`bpbynumber`', ':attr:`bplist`', ':class:`Breakpoint`'], translated: [':attr:`bpbynumber`', ':attr:`bplist`', ':attr:`bpbynumber`', ':class:`Breakpoint`', ':attr:`bplist`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/codecs.rst:929: WARNING: inconsistent term references in translated message. original: [':term:`text encodings `'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/codecs.rst:1494: WARNING: inconsistent term references in translated message. original: [':mod:`socket`', ':mod:`http.client`', ':mod:`ftplib`', ':mod:`http.client`'], translated: [':mod:`socket`', ':mod:`socket`', ':mod:`http.client`', ':mod:`ftplib`', ':mod:`http.client`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/collections.abc.rst:268: WARNING: inconsistent term references in translated message. original: [':term:`sequences `'], translated: [':term:`シーケンス `', ':term:`シーケンス `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/collections.abc.rst:297: WARNING: inconsistent term references in translated message. original: [':term:`mappings `'], translated: [':term:`マッピング `', ':term:`マッピング `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/concurrent.futures.rst:95: WARNING: inconsistent term references in translated message. original: [':keyword:`with`', ':class:`Executor`', ':meth:`Executor.shutdown`'], translated: [':keyword:`with`', ':keyword:`with`', ':class:`Executor`', ':meth:`Executor.shutdown`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/contextlib.rst:91: WARNING: inconsistent term references in translated message. original: [':func:`contextmanager`', ':class:`ContextDecorator`', ':keyword:`with`', ':func:`contextmanager`'], translated: [':func:`contextmanager`', ':class:`ContextDecorator`', ':func:`contextmanager`', ':keyword:`with`', ':func:`contextmanager`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/curses.rst:153: WARNING: inconsistent term references in translated message. original: [':meth:`~window.noutrefresh`', ':meth:`~window.addstr`', ':meth:`~window.refresh`'], translated: [':meth:`~window.addstr`', ':meth:`~window.noutrefresh`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:66: WARNING: inconsistent term references in translated message. original: [':class:`.datetime`', ':class:`.time`', ':class:`tzinfo`', ':class:`tzinfo`'], translated: [':class:`.datetime`', ':class:`.time`', ':attr:`tzinfo`', ':class:`tzinfo`', ':class:`tzinfo`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:1277: WARNING: inconsistent term references in translated message. original: [':class:`.datetime`', ':exc:`TypeError`'], translated: [':class:`datetime`', ':class:`datetime`', ':exc:`TypeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:1351: WARNING: inconsistent term references in translated message. original: [':class:`timezone`'], translated: [':class:`timezone`', ':class:`datetime`', ':class:`datetime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:2180: WARNING: inconsistent term references in translated message. original: [':meth:`datetime.astimezone`', ':meth:`fromutc`'], translated: [':meth:`datetime.astimezone`', ':meth:`fromutc`', ':class:`datetime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:2590: WARNING: inconsistent term references in translated message. original: [':class:`date`', ':class:`date`'], translated: [':class:`date`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/dbm.rst:24: WARNING: inconsistent term references in translated message. original: [':exc:`dbm.error`', ':exc:`dbm.error`'], translated: [':exc:`dbm.error`', ':exc:`dbm.error`', ':exc:`dbm.error`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:54: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:61: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:73: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:88: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:101: WARNING: inconsistent term references in translated message. original: [':const:`Clamped`', ':const:`InvalidOperation`', ':const:`DivisionByZero`', ':const:`Inexact`', ':const:`Rounded`', ':const:`Subnormal`', ':const:`Overflow`', ':const:`Underflow`', ':const:`FloatOperation`'], translated: [':mod:`decimal`', ':const:`Clamped`', ':const:`InvalidOperation`', ':const:`DivisionByZero`', ':const:`Inexact`', ':const:`Rounded`', ':const:`Subnormal`', ':const:`Overflow`', ':const:`Underflow`', ':const:`FloatOperation`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:127: WARNING: inconsistent term references in translated message. original: [':func:`getcontext`'], translated: [':mod:`decimal`', ':func:`getcontext`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:139: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Decimal`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:182: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:266: WARNING: inconsistent term references in translated message. original: [':func:`setcontext`'], translated: [':func:`Context`', ':func:`setcontext`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:331: WARNING: inconsistent term references in translated message. original: [':class:`Decimal`'], translated: [':class:`Decimal`', ':class:`Decimal`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:389: WARNING: inconsistent term references in translated message. original: [':const:`InvalidOperation`'], translated: [':const:`InvalidOperation`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:1017: WARNING: inconsistent term references in translated message. original: [':class:`Context`'], translated: [':class:`Context`', ':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:1192: WARNING: inconsistent term references in translated message. original: [':class:`Decimal`', ':class:`Decimal`'], translated: [':class:`Decimal`', ':class:`Decimal`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:677: WARNING: inconsistent references in translated message. original: [], translated: ['`Python 2.6 で既にあった変更`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:690: WARNING: inconsistent term references in translated message. original: [':exc:`BaseException`', ':exc:`BaseException`'], translated: [':exc:`BaseException`', ':exc:`BaseException`', ':exc:`BaseException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:900: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`pyporting-howto`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:920: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`pyporting-howto`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.1.rst:68: WARNING: inconsistent term references in translated message. original: [':mod:`configparser`', ':func:`collections.namedtuple`', ':mod:`json`'], translated: [':mod:`configparser`', ':func:`collections.namedtuple`', ':mod:`json`', ':class:`~json.JSONDecoder`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.1.rst:257: WARNING: inconsistent term references in translated message. original: [':mod:`tkinter.ttk`'], translated: [':mod:`tkinter.ttk`', ':mod:`tkinter.ttk`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.1.rst:361: WARNING: inconsistent term references in translated message. original: [':mod:`unittest`'], translated: [':mod:`unittest`', ':class:`TestResult`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:72: WARNING: inconsistent term references in translated message. original: [], translated: [':c:macro:`Py_LIMITED_API`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:521: WARNING: inconsistent term references in translated message. original: [':func:`str`', ':func:`repr`', ':func:`str`', ':func:`repr`'], translated: [':func:`str`', ':func:`repr`', ':func:`str`', ':func:`repr`', ':func:`str`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:594: WARNING: inconsistent term references in translated message. original: [':exc:`ResourceWarning`', ':mod:`warnings`'], translated: [':exc:`ResourceWarning`', ':mod:`warnings`', ':ref:`warning-filter`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:836: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`sortinghowto`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1003: WARNING: inconsistent term references in translated message. original: [':class:`~datetime.timedelta`', ':class:`float`', ':class:`float`', ':class:`int`', ':class:`~datetime.timedelta`'], translated: [':class:`~datetime.timedelta`', ':class:`float`', ':class:`float`', ':class:`int`', ':class:`~datetime.timedelta`', ':class:`~datetime.timedelta`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1270: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`~contextlib.contextmanager`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1630: WARNING: inconsistent term references in translated message. original: [':func:`socket.create_connection`', ':exc:`socket.error`'], translated: [':func:`socket.create_connection`', ':exc:`socket.error`', ':func:`socket.create_connection`', ':class:`socket.socket`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1885: WARNING: inconsistent term references in translated message. original: [':mod:`inspect`', ':func:`~inspect.getgeneratorstate`'], translated: [':mod:`inspect`', ':func:`~inspect.getgeneratorstate`', ':ref:`yield`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:2276: WARNING: inconsistent term references in translated message. original: [':mod:`email`'], translated: [':mod:`email`', ':class:`~email.generator.BytesGenerator`', ':func:`~email.message_from_bytes`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:150: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`buffer-structs`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:155: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`ドキュメント `', ':ref:`バッファ要求のフラグ `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:163: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`format-characters`', ':attr:`~memoryview.format`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:166: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`~memoryview.cast`', ':term:`contiguous`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:173: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`hashable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:182: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`次元 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:184: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`~memoryview.shape`', ':attr:`~memoryview.strides`', ':attr:`~memoryview.suboffsets`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:187: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`~memoryview.cast`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:332: WARNING: inconsistent term references in translated message. original: [':exc:`OSError`', ':exc:`IOError`', ':exc:`EnvironmentError`', ':exc:`WindowsError`', ':exc:`mmap.error`', ':exc:`socket.error`', ':exc:`select.error`', ':exc:`OSError`'], translated: [':exc:`OSError`', ':exc:`IOError`', ':exc:`EnvironmentError`', ':exc:`WindowsError`', ':exc:`mmap.error`', ':exc:`socket.error`', ':exc:`select.error`', ':exc:`OSError`', ':exc:`OSError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:424: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`~generator.send`', ':meth:`~generator.throw`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1081: WARNING: inconsistent term references in translated message. original: [':class:`~datetime.datetime`', ':const:`False`', ':exc:`TypeError`'], translated: [':class:`~datetime.datetime`', ':class:`~datetime.datetime`', ':exc:`TypeError`', ':const:`False`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1127: WARNING: inconsistent term references in translated message. original: [':exc:`~decimal.FloatOperation`'], translated: [':exc:`~decimal.FloatOperation`', ':ref:`シグナル `', ':ref:`decimal-tutorial`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1265: WARNING: inconsistent term references in translated message. original: [':class:`~email.policy.EmailPolicy`'], translated: [':class:`~email.policy.EmailPolicy`', ':data:`email.policy.default`', ':data:`email.policy.SMTP`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1360: WARNING: inconsistent term references in translated message. original: [':func:`~email.utils.parsedate_to_datetime`', ':class:`~datetime.datetime`', ':class:`~datetime.datetime`'], translated: [':func:`~email.utils.parsedate_to_datetime`', ':class:`~datetime.datetime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1374: WARNING: inconsistent term references in translated message. original: [':class:`ftplib.FTP`'], translated: [':class:`ftplib.FTP`', ':meth:`~socket.socket.bind`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1504: WARNING: inconsistent term references in translated message. original: [':func:`~logging.basicConfig`'], translated: [':func:`~logging.basicConfig`', ':term:`イテラブル `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1539: WARNING: inconsistent term references in translated message. original: [':class:`multiprocessing.Connection`'], translated: [':meth:`Connection.send`', ':meth:`Connection.recv`', ':class:`multiprocessing.Connection`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1552: WARNING: inconsistent term references in translated message. original: [':meth:`multiprocessing.pool.Pool.starmap`', ':meth:`~multiprocessing.pool.Pool.starmap_async`', ':func:`itertools.starmap`', ':meth:`multiprocessing.pool.Pool.map`', ':meth:`~multiprocessing.pool.Pool.map_async`'], translated: [':func:`map`', ':func:`itertools.starmap`', ':meth:`multiprocessing.pool.Pool.map`', ':meth:`~multiprocessing.pool.Pool.map_async`', ':meth:`multiprocessing.pool.Pool.starmap`', ':meth:`~multiprocessing.pool.Pool.starmap_async`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1843: WARNING: inconsistent term references in translated message. original: [':func:`signal.signal`', ':func:`signal.siginterrupt`'], translated: [':func:`signal.signal`', ':func:`signal.siginterrupt`', ':exc:`OSError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1862: WARNING: inconsistent term references in translated message. original: [':class:`~smtplib.SMTP`', ':class:`~smtplib.SMTP_SSL`', ':class:`~smtplib.LMTP`'], translated: [':class:`~smtplib.SMTP`', ':class:`~smtplib.SMTP_SSL`', ':class:`~smtplib.LMTP`', ':meth:`~socket.socket.bind`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:2351: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`sys.platform`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:435: WARNING: inconsistent references in translated message. original: [], translated: ['`Python API の変更`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:761: WARNING: inconsistent term references in translated message. original: [':class:`~dis.Bytecode`', ':meth:`~dis.Bytecode.from_traceback`'], translated: [':class:`~dis.Bytecode`', ':meth:`~dis.Bytecode.from_traceback`', ':class:`~dis.Bytecode`', ':func:`~dis.distb`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:781: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`', ':mod:`argparse`', ':ref:`doctest options\n`', ':mod:`unittest`'], translated: [':mod:`doctest`', ':mod:`argparse`', ':ref:`doctest オプション `', ':mod:`unittest`', ':ref:`サポートされる同じオプション `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:794: WARNING: inconsistent term references in translated message. original: [':meth:`~email.message.Message.as_string`', ':mod:`~email.generator`'], translated: [':meth:`~email.message.Message.as_string`', ':class:`~email.message.Message`', ':mod:`~email.generator`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1012: WARNING: inconsistent term references in translated message. original: [':mod:`importlib.util`', ':func:`~importlib.util.decode_source`', ':meth:`.InspectLoader.get_source`'], translated: [':mod:`importlib.util`', ':func:`~importlib.util.decode_source`', ':term:`universal newlines`', ':meth:`.InspectLoader.get_source`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1030: WARNING: inconsistent references in translated message. original: [], translated: ['`Python API の変更`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1041: WARNING: inconsistent term references in translated message. original: [':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`', ':func:`~inspect.signature`', ':func:`functools.partial`', ':func:`~inspect.signature`', ':func:`~inspect.signature`'], translated: [':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`', ':func:`~inspect.signature`', ':func:`functools.partial`', ':func:`~inspect.signature`', ':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`', ':func:`~inspect.signature`', ':func:`~inspect.signature`', ':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1353: WARNING: inconsistent term references in translated message. original: [':class:`~shelve.Shelf`', ':keyword:`with`'], translated: [':class:`~shelve.Shelf`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1440: WARNING: inconsistent term references in translated message. original: [':class:`~ssl.SSLContext`', ':meth:`~ssl.SSLContext.load_verify_locations`'], translated: [':class:`~ssl.SSLContext`', ':meth:`~ssl.SSLContext.load_verify_locations`', ':term:`bytes-like object`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1518: WARNING: inconsistent term references in translated message. original: [':func:`~subprocess.check_output`'], translated: [':func:`~subprocess.check_output`', ':func:`~subprocess.run`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1629: WARNING: inconsistent term references in translated message. original: [':class:`~urllib.request.Request`', ':class:`~urllib.request.Request.method`'], translated: [':class:`~urllib.request.Request`', ':class:`~urllib.request.Request.method`', ':class:`~urllib.request.Request.method`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1732: WARNING: inconsistent term references in translated message. original: [':meth:`~wave.getparams`'], translated: [':meth:`~wave.getparams`', ':class:`~collections.namedtuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:2150: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`site`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:2329: WARNING: inconsistent term references in translated message. original: [':func:`inspect.getfullargspec`', ':func:`inspect.signature`', ':func:`inspect.getfullargspec`'], translated: [':func:`inspect.getfullargspec`', ':func:`inspect.signature`', ':func:`open`', ':func:`inspect.getfullargspec`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:: ERROR: Anonymous hyperlink mismatch: 0 references but 1 targets.
+See "backrefs" attribute for IDs. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.7.rst:84: WARNING: inconsistent references in translated message. original: ['`has been declared`_'], translated: [] [i18n.inconsistent_references]
diff --git a/89/merge/warnings-ko.txt b/89/merge/warnings-ko.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-lint-ar.txt b/89/merge/warnings-lint-ar.txt
new file mode 100644
index 000000000..89f9e11ca
--- /dev/null
+++ b/89/merge/warnings-lint-ar.txt
@@ -0,0 +1 @@
+clones/rebased_translations/Abdur-rahmaanJ/python-docs-ar/tutorial/whatnow.po:145: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
\ No newline at end of file
diff --git a/89/merge/warnings-lint-es.txt b/89/merge/warnings-lint-es.txt
new file mode 100644
index 000000000..5391cab5f
--- /dev/null
+++ b/89/merge/warnings-lint-es.txt
@@ -0,0 +1,2 @@
+clones/rebased_translations/python/python-docs-es/howto/enum.po:27: Unnecessary parentheses in ':func:`repr()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-es/howto/enum.po:391: Unnecessary parentheses in ':func:`auto()`' (unnecessary-parentheses)
\ No newline at end of file
diff --git a/89/merge/warnings-lint-fa.txt b/89/merge/warnings-lint-fa.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-lint-fr.txt b/89/merge/warnings-lint-fr.txt
new file mode 100644
index 000000000..12b82f79a
--- /dev/null
+++ b/89/merge/warnings-lint-fr.txt
@@ -0,0 +1,4 @@
+clones/rebased_translations/python/python-docs-fr/library/html.entities.po:35: Unnecessary parentheses in ':func:`html.unescape()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-fr/library/filecmp.po:74: Unnecessary parentheses in ':func:`os.stat()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-fr/reference/import.po:542: Unnecessary parentheses in ':meth:`~importlib.abc.MetaPathFinder.find_spec()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-fr/reference/import.po:578: Unnecessary parentheses in ':meth:`~importlib.abc.MetaPathFinder.find_spec()`' (unnecessary-parentheses)
\ No newline at end of file
diff --git a/89/merge/warnings-lint-gr.txt b/89/merge/warnings-lint-gr.txt
new file mode 100644
index 000000000..3c78dcff4
--- /dev/null
+++ b/89/merge/warnings-lint-gr.txt
@@ -0,0 +1,53 @@
+clones/rebased_translations/pygreece/python-docs-gr/bugs.po:254: missing backtick before hyperlink reference: 'Σφαλμάτων `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:4964: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:4964: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:8550: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:8550: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:1564: missing space before default role: 'ass`bool`'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:4964: missing space before default role: 'ναι``N``'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:8550: missing space before default role: ', )``==``'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:1564: role missing colon before first backtick ( :class`). (missing-colon-in-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/gzip.po:214: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/platform.po:233: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/collections.abc.po:942: role missing opening tag colon ( meth:`). (missing-space-before-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: inline literal missing (escaped) space after literal: "``'10s'``σ" (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:46: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:227: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:353: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:382: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:779: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:804: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:534: inline literal missing (escaped) space after literal: '``False``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:1580: inline literal missing (escaped) space after literal: "``'-'``∙" (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3100: inline literal missing (escaped) space after literal: '``write(string)``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:534: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:534: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:1580: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:1580: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3100: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3100: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3178: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/using/unix.po:223: missing space before default role: 'ile`{exec_prefix}/bin/python{version}`'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/using/unix.po:184: missing backtick before hyperlink reference: 'κώδικα `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/pygreece/python-docs-gr/using/unix.po:223: role missing colon before first backtick ( :file`). (missing-colon-in-role)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/introduction.po:149: inline literal missing (escaped) space after literal: '``//``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/introduction.po:149: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/introduction.po:149: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:570: inline literal missing (escaped) space after literal: '``.py``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:570: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:570: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:1152: role missing (escaped) space after role: ':mod:`!sound.effects`ό' (missing-space-after-role)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/classes.po:1358: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/classes.po:1392: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/classes.po:1392: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/interpreter.po:157: inline literal missing (escaped) space after literal: '``sys.argv[0]``ο' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/interpreter.po:157: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/interpreter.po:157: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/controlflow.po:75: role missing opening tag colon ( keyword:`). (missing-space-before-role)
+clones/rebased_translations/pygreece/python-docs-gr/faq/installed.po:123: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/faq/extending.po:115: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/faq/extending.po:115: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/faq/extending.po:115: missing space before default role: 'στο``Python/pythonrun.c``'. (missing-space-before-default-role)
\ No newline at end of file
diff --git a/89/merge/warnings-lint-hi-in.txt b/89/merge/warnings-lint-hi-in.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-lint-id.txt b/89/merge/warnings-lint-id.txt
new file mode 100644
index 000000000..c619012c1
--- /dev/null
+++ b/89/merge/warnings-lint-id.txt
@@ -0,0 +1,34 @@
+clones/rebased_translations/python/python-docs-id/library/xmlrpc.client.po:621: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/distribution.po:29: missing underscore after closing backtick in hyperlink (missing-underscore-after-hyperlink)
+clones/rebased_translations/python/python-docs-id/library/binary.po:29: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/csv.po:514: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/calendar.po:35: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/calendar.po:373: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/json.po:212: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/functions.po:609: role missing opening tag colon ( ref:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/library/functions.po:2815: role missing opening tag colon ( class:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/library/functions.po:3466: role missing opening tag colon ( pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/using/editors.po:29: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/tutorial/stdlib.po:467: role missing opening tag colon ( mod:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/tutorial/stdlib2.po:302: missing space before role ( modul:mod:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/tutorial/whatnow.po:156: role missing (escaped) space after role: ':ref:`Pertanyaan yang Sering Diajukan `(' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-id/tutorial/classes.po:1142: inline literal missing (escaped) space after literal: '``issubclass(bool, int)``a' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-id/tutorial/classes.po:1142: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/classes.po:1142: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/interpreter.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/interpreter.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/interpreter.po:153: missing space before default role: " ke``'-c'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-id/tutorial/controlflow.po:1444: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/controlflow.po:1444: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/c-api/cell.po:31: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/c-api/cell.po:104: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/c-api/apiabiversion.po:187: missing space before role ( dalam:source:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/c-api/iterator.po:25: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/c-api/abstract.po:41: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/c-api/abstract.po:41: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/c-api/abstract.po:41: role missing opening tag colon ( func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/faq/general.po:231: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/faq/general.po:231: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/faq/general.po:231: missing space before default role: 'kas``Misc/HISTORY``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-id/faq/general.po:569: missing space before < in hyperlink (missing-space-in-hyperlink)
+clones/rebased_translations/python/python-docs-id/faq/windows.po:37: trailing whitespace (trailing-whitespace)
\ No newline at end of file
diff --git a/89/merge/warnings-lint-it.txt b/89/merge/warnings-lint-it.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-lint-ja.txt b/89/merge/warnings-lint-ja.txt
new file mode 100644
index 000000000..731d700bb
--- /dev/null
+++ b/89/merge/warnings-lint-ja.txt
@@ -0,0 +1,370 @@
+clones/rebased_translations/python/python-docs-ja/glossary.po:864: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/glossary.po:2218: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.6.po:3628: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.6.po:3564: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.7.po:4735: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.9.po:565: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.7.po:3793: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.5.po:457: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.5.po:1060: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.5.po:4357: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.4.po:1923: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:3597: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:240: Bad dedent in block (bad-dedent)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:469: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:633: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:659: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:694: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:807: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:892: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:1107: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.10.po:738: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.10.po:738: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.10.po:738: missing space before default role: 'ラルを``|``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.11.po:4362: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.3.po:1530: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.1.po:991: missing backtick before hyperlink reference: 'Machine `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.1.po:300: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.4.po:38: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.6.po:285: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.sax.handler.po:429: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.etree.elementtree.po:1829: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8079: missing space before default role: 'の数は``GenericAlias``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:2115: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:3246: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:7629: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8538: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:9103: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio.po:182: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:162: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:204: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:162: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:204: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/random.po:691: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:171: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:253: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:278: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:358: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-protocol.po:858: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/types.po:262: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/types.po:308: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.dom.minidom.po:305: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xmlrpc.client.po:81: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-dev.po:176: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-dev.po:222: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-dev.po:260: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/collections.po:1828: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xmlrpc.server.po:79: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:989: role missing opening tag colon ( const:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1409: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1437: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1464: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1491: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1518: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1536: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1950: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:2016: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:2513: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:2575: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:3141: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/select.po:509: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/gc.po:120: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/gc.po:233: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/gc.po:261: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/logging.po:1155: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/logging.po:2530: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:138: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:138: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:138: missing space before default role: 'を表す``12345678-1234-5678-1234-567812345678``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:85: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:215: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pdb.po:384: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:135: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:85: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:135: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:176: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/re.po:63: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/re.po:1229: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/re.po:2509: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:845: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:845: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:845: missing space before default role: 'ルトは``()``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:360: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/compileall.po:172: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/compileall.po:172: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/compileall.po:172: missing space before default role: '成した``.pyc``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:343: inline literal missing (escaped) space after literal: '``None``以' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:4206: inline literal missing (escaped) space after literal: '``addModuleCleanup``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:343: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:343: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:4206: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:4206: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:1353: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:188: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:188: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:209: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:209: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:228: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:228: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:188: missing space before default role: ' と``defects``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:209: missing space before default role: 'ような``init``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:228: missing space before default role: ' の``init``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/mailbox.po:893: role missing opening tag colon ( meth:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/mailbox.po:1309: role missing opening tag colon ( meth:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/codecs.po:1502: role missing opening tag colon ( term:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/signal.po:574: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ftplib.po:229: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ftplib.po:273: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sched.po:191: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/typing.po:1885: role missing opening tag colon ( ref:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:339: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:359: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:1334: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2342: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2538: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2571: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2579: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functools.po:806: Bad dedent in block (bad-dedent)
+clones/rebased_translations/python/python-docs-ja/library/msvcrt.po:86: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/subprocess.po:350: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/subprocess.po:350: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/subprocess.po:350: missing space before default role: 'わりに``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/tempfile.po:145: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/tempfile.po:341: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/smtplib.po:416: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/__main__.po:70: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/__main__.po:70: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/__main__.po:70: missing space before default role: '拡張子``.py``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3128: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3210: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3247: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3320: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3334: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3403: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3418: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3515: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2517: inline literal missing (escaped) space after literal: '``chdir``の' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6970: inline literal missing (escaped) space after literal: '``WIFEXITED(status)``が' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6980: inline literal missing (escaped) space after literal: '``WIFSIGNALED(status)``が' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2517: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2517: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6970: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6970: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6980: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6980: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:489: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:855: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:863: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1149: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1396: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1429: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1540: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1607: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1759: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2733: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2812: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3047: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3103: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3295: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3533: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3603: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3664: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3712: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4670: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4700: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4775: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4946: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5035: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5463: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5489: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5505: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5533: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5628: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5732: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5894: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5962: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6003: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6015: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6257: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6437: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6549: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6619: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-policy.po:154: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/imaplib.po:531: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/imaplib.po:632: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pkgutil.po:121: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/email.header.po:299: inline literal missing (escaped) space after literal: '``\\r\\n``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/email.header.po:299: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.header.po:299: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/io.po:1702: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/io.po:1702: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/io.po:1702: missing space before default role: "る前に``'\\n'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/io.po:386: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/token.po:36: role missing opening tag colon ( file:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:163: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:574: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:2638: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:2699: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:2925: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pty.po:144: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/configparser.po:1607: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-task.po:52: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.dom.pulldom.po:220: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/base64.po:212: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/base64.po:323: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/base64.po:364: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:2365: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:2365: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:2365: missing space before default role: '引数に``follow_symlinks=False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:199: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:1499: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:1912: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:1943: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/argparse.po:963: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/enum.po:507: Bad dedent in block (bad-dedent)
+clones/rebased_translations/python/python-docs-ja/library/glob.po:267: missing space before role ( および:file:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/glob.po:140: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/glob.po:148: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/statistics.po:464: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/statistics.po:464: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/statistics.po:464: missing space before default role: '平均は``3/(1/a + 1/b + 1/c)``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/ipaddress.po:749: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/ipaddress.po:749: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/ipaddress.po:749: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/ipaddress.po:749: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:532: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:540: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:1622: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:1687: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/turtle.po:3786: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:958: inline literal missing (escaped) space after literal: '``tearDown``メ' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: inline literal missing (escaped) space after literal: '``call_args_list``と' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: inline literal missing (escaped) space after literal: '``call_args_list``の' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1124: inline literal missing (escaped) space after literal: '``frob``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1202: inline literal missing (escaped) space after literal: '``side_effect``関' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:958: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:958: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1094: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1094: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1124: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1124: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1202: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1202: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1094: missing space before default role: '。 や``call_args_list``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:905: missing backtick before hyperlink reference: 'ジェネレータ式やジェネレータのより`高度な使い方 `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/python/python-docs-ja/library/math.po:1037: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/zipapp.po:242: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:127: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:183: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:266: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:456: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:538: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:626: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:697: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:1171: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:123: inline literal missing (escaped) space after literal: '``activeCount``は' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:139: inline literal missing (escaped) space after literal: '``currentThread``は' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:1479: inline literal missing (escaped) space after literal: '``notifyAll``は' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:123: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:123: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:139: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:139: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:566: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:566: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:1479: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:1479: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:566: missing space before default role: 't"は``target.__name__``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/ast.po:787: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ast.po:956: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ast.po:3343: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/json.po:338: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/json.po:644: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/marshal.po:122: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/marshal.po:144: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/marshal.po:190: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:106: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:161: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:169: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:263: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:289: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:364: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:386: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:471: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:515: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:547: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:582: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:647: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:704: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:775: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:795: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:811: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1043: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1043: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1043: missing space before default role: " と``')'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1624: Unnecessary parentheses in ':meth:`~object.__float__()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1876: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:2879: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:3533: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:210: inline literal missing (escaped) space after literal: '``1``ま' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:823: inline literal missing (escaped) space after literal: '``True``に' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:210: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:210: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:823: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:823: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/pickle.po:869: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pickle.po:1712: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:166: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:251: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:296: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:351: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/reference/lexical_analysis.po:691: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/reference/expressions.po:648: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/reference/datamodel.po:1047: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/datastructures.po:906: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/datastructures.po:1414: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:424: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:424: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:1186: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:1186: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:424: missing space before default role: '数個の``\\``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:36: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:424: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/floatingpoint.po:264: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/interpreter.po:167: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/controlflow.po:1454: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/howto/descriptor.po:993: missing space before role ( の中の:c:func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:410: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:410: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:543: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:543: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:995: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:995: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:1787: missing space before role ( や:class:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:410: missing space before default role: ' と``B``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:543: missing space before default role: ' と``Weekday.WEEKEND``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:995: missing space before default role: 'はなく``1``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/howto/regex.po:1316: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/howto/curses.po:425: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/installing/index.po:261: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init_config.po:29: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/file.po:179: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/call.po:469: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/call.po:493: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/call.po:503: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/sequence.po:270: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init.po:747: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init.po:1909: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init.po:1925: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/contextvars.po:217: inline literal missing (escaped) space after literal: '``NULL``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/c-api/contextvars.po:217: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/c-api/contextvars.po:217: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:3409: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:3409: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:3409: missing space before default role: 'または``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:859: trailing whitespace (trailing-whitespace)
\ No newline at end of file
diff --git a/89/merge/warnings-lint-ko.txt b/89/merge/warnings-lint-ko.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-lint-pl.txt b/89/merge/warnings-lint-pl.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-lint-pt-br.txt b/89/merge/warnings-lint-pt-br.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-lint-ro.txt b/89/merge/warnings-lint-ro.txt
new file mode 100644
index 000000000..d1d9c7f7b
--- /dev/null
+++ b/89/merge/warnings-lint-ro.txt
@@ -0,0 +1,2 @@
+clones/rebased_translations/octaG-M/python-docs-ro/about.po:27: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/octaG-M/python-docs-ro/tutorial/introduction.po:508: trailing whitespace (trailing-whitespace)
\ No newline at end of file
diff --git a/89/merge/warnings-lint-ru.txt b/89/merge/warnings-lint-ru.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-lint-tr.txt b/89/merge/warnings-lint-tr.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-lint-uk.txt b/89/merge/warnings-lint-uk.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-lint-zh-cn.txt b/89/merge/warnings-lint-zh-cn.txt
new file mode 100644
index 000000000..d5bcf7643
--- /dev/null
+++ b/89/merge/warnings-lint-zh-cn.txt
@@ -0,0 +1,307 @@
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.2.po:1532: inline literal missing (escaped) space after literal: '``/``操' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.2.po:1532: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.2.po:1532: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:2218: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:2218: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:3989: missing space before role ( 直接解码:attr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:2218: missing space before default role: '是调用``implicit0``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:1470: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:1470: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5328: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5328: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5676: missing space before role ( 在:gh:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:1470: missing space before default role: '中插入``..``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5328: missing space before default role: '重载了``PyType_From*``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5158: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5676: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: inline literal missing (escaped) space after literal: '``*``来' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:783: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:783: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:783: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:783: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: missing space before default role: '数列表``*args``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:783: missing space before default role: '拼写为``.... . .``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/changelog.po:1203: missing backtick before hyperlink reference: '节 `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.7.po:350: missing space before role ( 开关现在会自动启用:option:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.7.po:600: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.9.po:2608: missing space before role ( d:issue:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1265: inline literal missing (escaped) space after literal: '``return dict.setdefault(key, [])``语' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: inline literal missing (escaped) space after literal: '``
``写' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1265: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1265: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:2057: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:2057: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1908: missing space before role ( 类如:class:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: missing space before default role: '单地将````'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:2057: missing space before default role: '以支持``https://``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.7.po:1552: Unnecessary parentheses in ':meth:`datetime.isoformat()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.5.po:4756: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.5.po:4756: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.5.po:4756: missing space before default role: '移除了``.pyo``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2073: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2073: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2702: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2702: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2073: missing space before default role: ' (或``.pyo``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2702: missing space before default role: ' 和``capath``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.8.po:4609: missing space before role ( 的规范更新了:rfc:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.10.po:3485: missing space before role ( 和:data:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.11.po:931: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.11.po:931: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.11.po:931: missing space before default role: '须使用``1``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.3.po:1364: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:3534: missing space before role (弃用:program:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:5603: missing space before role ( 弃用的:c:func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6278: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6296: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6324: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6346: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6367: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6378: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:3534: role missing (escaped) space after role: ':option:`!--cgi`标' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6278: role missing (escaped) space after role: ':func:`!locals`得' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: inline literal missing (escaped) space after literal: '``D``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: inline literal missing (escaped) space after literal: '``(key, value)``键' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1320: role missing (escaped) space after role: ':func:`sys._getframe`返' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:154: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:154: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:386: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:386: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3962: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3962: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3962: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3962: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4214: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4214: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3780: missing space before role (得益于:pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3962: missing space before role (由于:pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:154: missing space before default role: '流行的``virtualenv``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:386: missing space before default role: '(即从``U+0000``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3962: missing space before default role: '( 或``utf-16-be``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3962: missing space before default role: '( 或``utf-32-be``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4214: missing space before default role: "模块的``'u'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/stdtypes.po:636: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/stdtypes.po:636: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/stdtypes.po:636: missing space before default role: ' 为``0``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/stdtypes.po:2869: missing backtick before hyperlink reference: '中描述 `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/python/python-docs-zh-cn/library/shlex.po:196: role missing (escaped) space after role: ':attr:`eof`(' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/collections.po:1559: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:312: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:312: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:323: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:323: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:312: missing space before default role: ' 和``stderr``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:323: missing space before default role: ',写入``stdout``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/select.po:360: missing space before role ( 这是与:c:func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/gc.po:356: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/uuid.po:513: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/tokenize.po:341: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/mailbox.po:1490: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/mailbox.po:1490: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/mailbox.po:1490: missing space before default role: 's()`` 中的 ``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:774: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:774: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:774: missing space before default role: '于使用``tuple[Any, ...]``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:3017: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:3249: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:6213: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:4111: role missing (escaped) space after role: ':class:`ParamSpec`的' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: inline literal missing (escaped) space after literal: '``oparg=0``时' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: inline literal missing (escaped) space after literal: '``oparg``将' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: inline literal missing (escaped) space after literal: '``cmp_op[opname >> 5]``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: inline literal missing (escaped) space after literal: '``opname``的' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1919: inline literal missing (escaped) space after literal: '``argc``指' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2038: inline literal missing (escaped) space after literal: '``STACK[-1]``的' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2115: inline literal missing (escaped) space after literal: '``oparg``指' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:549: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:549: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:674: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:674: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:683: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:683: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:710: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:710: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:714: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:714: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:861: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:861: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1611: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1611: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1919: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1919: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2038: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2038: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2115: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2115: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:549: missing space before default role: '可以是``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: missing space before default role: '或传入``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: missing space before default role: '会返回``oparg=0``时的结果 。当``opcode``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: missing space before default role: '始,为``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: missing space before default role: '否则为``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:674: missing space before default role: '否则为``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:683: missing space before default role: '否则为``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:710: missing space before default role: '了字段``starts_line``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:714: missing space before default role: '了字段``start_offset``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:861: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1611: missing space before default role: '全局的``super``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: missing space before default role: '可以在``cmp_op[opname >> 5]``中找到。如果``opname``的第五低位是1(),则结果将被强制转换为``bool``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2364: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2380: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:3303: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:3303: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:6158: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:6158: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:3303: missing space before default role: 'e*值``0o700``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:6158: missing space before default role: '在调用``fork()``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/importlib.metadata.po:1020: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/importlib.metadata.po:1020: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/importlib.metadata.po:1020: missing space before default role: ' 或``Context(name=None)``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/doctest.po:1282: role missing (escaped) space after role: ':file:`ndiff.py`工' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/configparser.po:1578: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: missing space before default role: '则返回``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: missing space before default role: '则返回``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: missing space before default role: '则返回``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: missing space before default role: '则返回``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:280: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:280: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:288: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:288: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:280: missing space before default role: ',则是``sys.argv[0]``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:288: missing space before default role: ',后接``sys.argv[0]``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: missing space before default role: '员属于``cls``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: missing space before default role: '则返回``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:1251: Unnecessary parentheses in ':func:`repr()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-zh-cn/library/wsgiref.po:1404: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/sqlite3.po:1108: missing space before role ( 如果:attr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/datetime.po:3687: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/datetime.po:3687: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/datetime.po:3687: missing space before default role: ' 例如``"GMT"``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/math.po:534: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/ast.po:1812: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/functions.po:2332: Unnecessary parentheses in ':func:`locale.getencoding()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-zh-cn/reference/grammar.po:139: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/grammar.po:700: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/grammar.po:1367: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/grammar.po:1373: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/grammar.po:1497: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: inline literal missing (escaped) space after literal: '``import __spam``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: inline literal missing (escaped) space after literal: '``import __foo.bar``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: inline literal missing (escaped) space after literal: '``__foo``不' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: inline literal missing (escaped) space after literal: '``from spam import __f``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: missing space before default role: ',例如``import __spam``中的``__spam``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: missing space before default role: ',比如``from spam import __f``中的``__f``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/reference/compound_stmts.po:2673: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/datamodel.po:4911: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/datamodel.po:4911: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/functional.po:925: role missing (escaped) space after role: ':meth:`~iterator.__next__`方' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/functional.po:1039: role missing (escaped) space after role: ':meth:`~generator.__next__`方' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/annotations.po:95: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/annotations.po:95: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/annotations.po:95: missing space before default role: '动访问``__annotations__``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/logging-cookbook.po:4292: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/howto/logging-cookbook.po:4292: missing space before < in hyperlink (missing-space-in-hyperlink)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1727: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1727: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1727: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: missing space before default role: ', 和``+a``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: missing space before default role: '们使用``type``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: missing space before default role: '数会将``-a``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: missing space before default role: '` 和``+a``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/isolating-extensions.po:682: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/isolating-extensions.po:682: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/isolating-extensions.po:682: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/free-threading-python.po:118: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/free-threading-python.po:118: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/free-threading-python.po:118: missing space before default role: '设置为``1``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/arg.po:711: missing space before role (将Python浮点数转换成C的:c:expr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/arg.po:719: missing space before role (将Python浮点数转换成C的:c:expr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/memory.po:1217: role missing (escaped) space after role: ':envvar:`PYTHONMALLOC`(' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:153: inline literal missing (escaped) space after literal: '``NULL``错' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:226: missing space before role (除非使用:pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: inline literal missing (escaped) space after literal: '``-1``(' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: inline literal missing (escaped) space after literal: '``*result``设' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: inline literal missing (escaped) space after literal: '``[PyTime_MIN; PyTime_MAX]``范' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:189: missing space before role ( C:c:expr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: missing space before default role: '数返回``0``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:178: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:455: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:455: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:2254: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:2254: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:455: missing space before default role: '编码和``replace``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:2254: missing space before default role: '* 为``NULL``'. (missing-space-before-default-role)
\ No newline at end of file
diff --git a/89/merge/warnings-lint-zh-tw.txt b/89/merge/warnings-lint-zh-tw.txt
new file mode 100644
index 000000000..0fb489ae7
--- /dev/null
+++ b/89/merge/warnings-lint-zh-tw.txt
@@ -0,0 +1,6 @@
+clones/rebased_translations/python/python-docs-zh-tw/whatsnew/3.13.po:2255: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-tw/whatsnew/3.13.po:2255: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-tw/whatsnew/3.13.po:2255: missing space before default role: ',在於``GET``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-tw/whatsnew/3.13.po:470: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-tw/library/importlib.po:37: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-tw/extending/extending.po:764: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
\ No newline at end of file
diff --git a/89/merge/warnings-pl.txt b/89/merge/warnings-pl.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-pt-br.txt b/89/merge/warnings-pt-br.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-ro.txt b/89/merge/warnings-ro.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-ru.txt b/89/merge/warnings-ru.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-tr.txt b/89/merge/warnings-tr.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/89/merge/warnings-uk.txt b/89/merge/warnings-uk.txt
new file mode 100644
index 000000000..2aecc945a
--- /dev/null
+++ b/89/merge/warnings-uk.txt
@@ -0,0 +1,11 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/clinic.rst:: ERROR: Anonymous hyperlink mismatch: 1 references but 0 targets.
+See "backrefs" attribute for IDs. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:184: WARNING: inconsistent term references in translated message. original: [':meth:`~object.__lt__`', ':meth:`~object.__le__`', ':meth:`~object.__gt__`', ':meth:`~object.__ge__`', ':meth:`~object.__lt__`', ':meth:`~object.__eq__`'], translated: [':meth:`~object.__lt__`', ':meth:`~object.__le__`', ':meth:`~object.__ge__`', ':meth:`~object.__lt__`', ':meth:`~object.__eq__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:577: WARNING: inconsistent term references in translated message. original: [':data:`sys.byteorder`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.12.rst:69: WARNING: inconsistent term references in translated message. original: [':term:`f-strings `', ':ref:`type parameter syntax `', ':keyword:`type`', ':term:`generic types\n`', ':term:`type aliases `'], translated: [':term:`f-рядок `', ':keyword:`type`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:12::1: WARNING: term not in glossary: 'інтерактивної' [ref.term]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:19::1: WARNING: term not in glossary: 'інтерактивної' [ref.term]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:1173::1: WARNING: term not in glossary: 'інтерактивної' [ref.term]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/email.parser.rst:176::1: WARNING: term not in glossary: 'bytes-подібного об’єкта' [ref.term]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:38::1: WARNING: undefined label: 'sqlite3-tutorial`вчить як використовувати :mod:' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.13.rst:216::1: WARNING: term not in glossary: 'інтерактивну' [ref.term]
diff --git a/89/merge/warnings-zh-cn.txt b/89/merge/warnings-zh-cn.txt
new file mode 100644
index 000000000..907356652
--- /dev/null
+++ b/89/merge/warnings-zh-cn.txt
@@ -0,0 +1,6 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/changelog.rst:555::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/changelog.rst:555::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/init.rst:964: WARNING: Lexing literal_block '将线程状态保存到一个局部变量中。\n释放全局解释器锁。\n... 执行某些阻塞式的 I/O 操作 ...\n重新获取全局解释器锁。\n从局部变量中恢复线程状态。' as "c" resulted in an error at token: '。'. Retrying in relaxed mode. [misc.highlighting_failure]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:446: WARNING: Lexing literal_block 'CREATE TABLE test(\n i integer primary key, ! 将查找名为 "integer" 的转换器\n p point, ! 将查找名为 "point" 的转换器\n n number(10) ! 将查找名为 "number" 的转换器\n )' as "sql" resulted in an error at token: '将'. Retrying in relaxed mode. [misc.highlighting_failure]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:471: WARNING: Lexing literal_block 'SELECT MAX(p) as "p [point]" FROM test; ! 将查找转换器 "point"' as "sql" resulted in an error at token: '将'. Retrying in relaxed mode. [misc.highlighting_failure]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/urllib.parse.rst:304: WARNING: Lexing literal_block '(寻址方案, 网络位置, 路径, 查询, 片段标识符)。' as "python3" resulted in an error at token: '('. Retrying in relaxed mode. [misc.highlighting_failure]
diff --git a/89/merge/warnings-zh-tw.txt b/89/merge/warnings-zh-tw.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/index.html b/91/merge/index.html
new file mode 100644
index 000000000..babe71584
--- /dev/null
+++ b/91/merge/index.html
@@ -0,0 +1,626 @@
+
+
+ Python Docs Translation Dashboard
+
+
+
+
+
+
+Python Docs Translation Dashboard
+
+main | meta
+
+
+
+
+ language
+ switcher
+ translators
+ completion*
+
+
+
+
+
+
+ Simplified Chinese (zh-cn)
+
+
+
+ ✓
+
+
+
+
+ 234
+
+
+
+
+ 81.55% (+0.83%)
+
+
+ 81.55% (+0.83%)
+
+
+
+
+
+
+ Spanish (es)
+
+
+
+ ✓
+
+
+
+
+ 312
+
+
+
+
+ 62.79% (+0.12%)
+
+
+ 62.79% (+0.12%)
+
+
+
+
+
+
+ Brazilian Portuguese (pt-br)
+
+
+
+ ✓
+
+
+
+
+ 155
+
+
+
+
+ 60.63% (+0.79%)
+
+
+ 60.63% (+0.79%)
+
+
+
+
+
+
+ Ukrainian (uk)
+
+
+
+ ✗
+
+
+
+
+ 13
+
+
+
+
+ 53.52% (+53.52%)
+
+
+ 53.52% (+53.52%)
+
+
+
+
+
+
+ Japanese (ja)
+
+
+
+ ✓
+
+
+
+
+ 47
+
+
+
+
+ 53.12% (+0.04%)
+
+
+ 53.12% (+0.04%)
+
+
+
+
+
+
+ Korean (ko)
+
+
+
+ ✓
+
+
+
+
+ 23
+
+
+
+
+ 44.15% (+1.27%)
+
+
+ 44.15% (+1.27%)
+
+
+
+
+
+
+ Traditional Chinese (zh-tw)
+
+
+
+ ✓
+
+
+
+
+ 120
+
+
+
+
+ 37.36%
+
+
+ 37.36%
+
+
+
+
+
+
+ French (fr)
+
+
+
+ ✓
+
+
+
+
+ 241
+
+
+
+
+ 35.80%
+
+
+ 35.80%
+
+
+
+
+
+
+ Polish (pl)
+
+
+
+ ✓
+
+
+
+
+ 25
+
+
+
+
+ 11.19% (+0.03%)
+
+
+ 11.19% (+0.03%)
+
+
+
+
+
+
+ Indonesian (id)
+
+
+
+ ✗
+
+
+
+
+ 24
+
+
+
+
+ 7.99%
+
+
+ 7.99%
+
+
+
+
+
+
+ Greek (gr)
+
+
+
+
+
+
+ 15
+
+
+
+
+ 6.83% (+0.41%)
+
+
+ 6.83% (+0.41%)
+
+
+
+
+
+
+ Turkish (tr)
+
+
+
+ ✓
+
+
+
+
+ 29
+
+
+
+
+ 5.07%
+
+
+ 5.07%
+
+
+
+
+
+
+ Italian (it)
+
+
+
+ ✓
+
+
+
+
+ 3
+
+
+
+
+ 3.62%
+
+
+ 3.62%
+
+
+
+
+
+
+ Romanian (ro)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.30%
+
+
+ 0.30%
+
+
+
+
+
+
+ Russian (ru)
+
+
+
+
+
+
+ 22
+
+
+
+
+ 0.20%
+
+
+ 0.20%
+
+
+
+
+
+
+ Persian (fa)
+
+
+
+
+
+
+ 10
+
+
+
+
+ 0.05% (+0.05%)
+
+
+ 0.05% (+0.05%)
+
+
+
+
+
+
+ Arabic (ar)
+
+
+
+
+
+
+ 3
+
+
+
+
+ 0.01%
+
+
+ 0.01%
+
+
+
+
+
+
+ Hindi (hi-in)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.01%
+
+
+ 0.01%
+
+
+
+
+
+
+ Marathi (mr)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Hungarian (hu)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Portuguese (pt)
+
+
+
+
+
+
+ 0
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Lithuanian (lt)
+
+
+
+
+
+
+ 0
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Bengali (bn-in)
+
+
+
+
+
+
+ 0
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+* the number in parentheses shows change in the last 30 days, included in the total completion
+The Python documentation currently has a word count of 1,526,598.
+For more information about translations, see the Python Developer’s Guide .
+Last updated at Thursday, 1 May 2025, 21:52:38 UTC (in 6:44 minutes).
+
+
+
\ No newline at end of file
diff --git a/91/merge/index.json b/91/merge/index.json
new file mode 100644
index 000000000..46f860b25
--- /dev/null
+++ b/91/merge/index.json
@@ -0,0 +1,416 @@
+[
+ {
+ "language": {
+ "code": "ar",
+ "name": "Arabic"
+ },
+ "repository": "Abdur-rahmaanJ/python-docs-ar",
+ "branch": "master",
+ "completion": 0.014501924800928124,
+ "change": 0.0,
+ "translators": {
+ "number": 3,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/Abdur-rahmaanJ/python-docs-ar"
+ },
+ {
+ "language": {
+ "code": "bn-in",
+ "name": "Bengali"
+ },
+ "repository": "python/python-docs-bn-in",
+ "branch": "",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 0,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-bn-in"
+ },
+ {
+ "language": {
+ "code": "fr",
+ "name": "French"
+ },
+ "repository": "python/python-docs-fr",
+ "branch": "3.13",
+ "completion": 35.801297263091286,
+ "change": 0.0,
+ "translators": {
+ "number": 241,
+ "link": "https://github.com/python/python-docs-fr/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://git.afpy.org/AFPy/python-docs-fr/src/branch/3.13/CONTRIBUTING.rst"
+ },
+ {
+ "language": {
+ "code": "gr",
+ "name": "Greek"
+ },
+ "repository": "pygreece/python-docs-gr",
+ "branch": "3.12",
+ "completion": 6.829088224437061,
+ "change": 0.4060538944259875,
+ "translators": {
+ "number": 15,
+ "link": "https://github.com/pygreece/python-docs-gr/blob/3.12/TRANSLATORS"
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/pygreece/python-docs-gr/blob/3.12/CONTRIBUTING.md"
+ },
+ {
+ "language": {
+ "code": "hi-in",
+ "name": "Hindi"
+ },
+ "repository": "CuriousLearner/python-docs-hi-in",
+ "branch": "master",
+ "completion": 0.005273427200337499,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/CuriousLearner/python-docs-hi-in"
+ },
+ {
+ "language": {
+ "code": "hu",
+ "name": "Hungarian"
+ },
+ "repository": "python/python-docs-hu",
+ "branch": "master",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-hu"
+ },
+ {
+ "language": {
+ "code": "id",
+ "name": "Indonesian"
+ },
+ "repository": "python/python-docs-id",
+ "branch": "3.9",
+ "completion": 7.994515635711649,
+ "change": 0.0,
+ "translators": {
+ "number": 24,
+ "link": "https://github.com/python/python-docs-id/blob/3.9/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": false,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-id/blob/master/README.md#berkontribusi-untuk-menerjemahkan"
+ },
+ {
+ "language": {
+ "code": "it",
+ "name": "Italian"
+ },
+ "repository": "python/python-docs-it",
+ "branch": "3.13",
+ "completion": 3.622844486631862,
+ "change": 0.0,
+ "translators": {
+ "number": 3,
+ "link": "https://github.com/python/python-docs-it/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-it"
+ },
+ {
+ "language": {
+ "code": "ja",
+ "name": "Japanese"
+ },
+ "repository": "python/python-docs-ja",
+ "branch": "3.11",
+ "completion": 53.12450561619997,
+ "change": 0.03955070400252936,
+ "translators": {
+ "number": 47,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "ko",
+ "name": "Korean"
+ },
+ "repository": "python/python-docs-ko",
+ "branch": "3.13",
+ "completion": 44.15045087802563,
+ "change": 1.274851025681592,
+ "translators": {
+ "number": 23,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://www.flowdas.com/pages/python-docs-ko.html"
+ },
+ {
+ "language": {
+ "code": "mr",
+ "name": "Marathi"
+ },
+ "repository": "sanketgarade/python-doc-mr",
+ "branch": "3.9",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/sanketgarade/python-doc-mr"
+ },
+ {
+ "language": {
+ "code": "lt",
+ "name": "Lithuanian"
+ },
+ "repository": null,
+ "branch": "",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 0,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": null
+ },
+ {
+ "language": {
+ "code": "fa",
+ "name": "Persian"
+ },
+ "repository": "revisto/python-docs-fa",
+ "branch": "3.13",
+ "completion": 0.05141591520329062,
+ "change": 0.05141591520329062,
+ "translators": {
+ "number": 10,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/revisto/python-docs-fa"
+ },
+ {
+ "language": {
+ "code": "pl",
+ "name": "Polish"
+ },
+ "repository": "python/python-docs-pl",
+ "branch": "3.13",
+ "completion": 11.187575805516005,
+ "change": 0.029003849601856757,
+ "translators": {
+ "number": 25,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "pt",
+ "name": "Portuguese"
+ },
+ "repository": null,
+ "branch": "",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 0,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": null
+ },
+ {
+ "language": {
+ "code": "pt-br",
+ "name": "Brazilian Portuguese"
+ },
+ "repository": "python/python-docs-pt-br",
+ "branch": "3.13",
+ "completion": 60.62859252228023,
+ "change": 0.7896957232505386,
+ "translators": {
+ "number": 155,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "ro",
+ "name": "Romanian"
+ },
+ "repository": "octaG-M/python-docs-ro",
+ "branch": "main",
+ "completion": 0.2953119232189,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/octaG-M/python-docs-ro"
+ },
+ {
+ "language": {
+ "code": "ru",
+ "name": "Russian"
+ },
+ "repository": "MLGRussianXP/python-docs-ru",
+ "branch": "3.13",
+ "completion": 0.20170859041290934,
+ "change": 0.0,
+ "translators": {
+ "number": 22,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/MLGRussianXP/python-docs-ru"
+ },
+ {
+ "language": {
+ "code": "zh-cn",
+ "name": "Simplified Chinese"
+ },
+ "repository": "python/python-docs-zh-cn",
+ "branch": "3.13",
+ "completion": 81.54564151241892,
+ "change": 0.8252913568528157,
+ "translators": {
+ "number": 234,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "es",
+ "name": "Spanish"
+ },
+ "repository": "python/python-docs-es",
+ "branch": "3.13",
+ "completion": 62.785424247218266,
+ "change": 0.11601539840742703,
+ "translators": {
+ "number": 312,
+ "link": "https://github.com/python/python-docs-es/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://python-docs-es.readthedocs.io/page/CONTRIBUTING.html"
+ },
+ {
+ "language": {
+ "code": "zh-tw",
+ "name": "Traditional Chinese"
+ },
+ "repository": "python/python-docs-zh-tw",
+ "branch": "3.13",
+ "completion": 37.35959500079102,
+ "change": 0.0,
+ "translators": {
+ "number": 120,
+ "link": "https://github.com/python/python-docs-zh-tw/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-zh-tw/blob/3.13/README.rst#%E5%8F%83%E8%88%87%E7%BF%BB%E8%AD%AF"
+ },
+ {
+ "language": {
+ "code": "tr",
+ "name": "Turkish"
+ },
+ "repository": "python/python-docs-tr",
+ "branch": "3.12",
+ "completion": 5.0690818963244215,
+ "change": 0.0,
+ "translators": {
+ "number": 29,
+ "link": "https://github.com/python/python-docs-tr/blob/3.12/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-tr/blob/3.12/README.md#%C3%A7eviriye-katk%C4%B1da-bulunmak"
+ },
+ {
+ "language": {
+ "code": "uk",
+ "name": "Ukrainian"
+ },
+ "repository": "python/python-docs-uk",
+ "branch": "3.13",
+ "completion": 53.51605758582503,
+ "change": 53.51605758582503,
+ "translators": {
+ "number": 13,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": false,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ }
+]
\ No newline at end of file
diff --git a/91/merge/metadata.html b/91/merge/metadata.html
new file mode 100644
index 000000000..32633daf5
--- /dev/null
+++ b/91/merge/metadata.html
@@ -0,0 +1,307 @@
+
+
+ Python Docs Translation Dashboard
+
+
+
+
+
+Python Docs Translation Dashboard
+
+main | meta
+
+
+
+
+ language
+ branch
+ last updated
+ build warnings*
+ lint failures
+
+
+
+
+
+ Simplified Chinese (zh-cn)
+ 3.13
+ 2025/03/31 14:55:55
+
+ 6
+
+
+ 307
+
+
+
+
+ Spanish (es)
+ 3.13
+ 2025/03/15 13:13:37
+
+ 0
+
+
+ 2
+
+
+
+
+ Brazilian Portuguese (pt-br)
+ 3.13
+ 2025/03/31 23:08:53
+
+ 0
+
+
+ 0
+
+
+
+
+ Ukrainian (uk)
+ 3.13
+ 2025/02/04 00:35:29
+
+ 0
+
+
+ 0
+
+
+
+
+ Japanese (ja)
+ 3.11
+ 2025/03/29 23:49:42
+
+ 323
+
+
+ 370
+
+
+
+
+ Korean (ko)
+ 3.13
+ 2023/09/23 14:35:35
+
+ 0
+
+
+ 0
+
+
+
+
+ Traditional Chinese (zh-tw)
+ 3.13
+ 2025/03/15 20:43:11
+
+ 0
+
+
+ 6
+
+
+
+
+ French (fr)
+ 3.13
+ 2024/11/15 23:05:57
+
+ 3
+
+
+ 4
+
+
+
+
+ Polish (pl)
+ 3.13
+ 2025/03/28 15:09:35
+
+ 0
+
+
+ 0
+
+
+
+
+ Indonesian (id)
+ 3.9
+ 2021/05/30 22:15:38
+
+ 46
+
+
+ 34
+
+
+
+
+ Greek (gr)
+ 3.12
+ 2025/03/06 22:14:23
+
+ 5
+
+
+ 53
+
+
+
+
+ Turkish (tr)
+ 3.12
+ 2024/12/15 06:56:02
+
+ 0
+
+
+ 0
+
+
+
+
+ Italian (it)
+ 3.13
+ 2024/06/08 12:26:23
+
+ 0
+
+
+ 0
+
+
+
+
+ Romanian (ro)
+ main
+ 2025/03/30 11:04:26
+
+ 0
+
+
+ 2
+
+
+
+
+ Russian (ru)
+ 3.13
+ 2025/03/30 07:57:20
+
+ 0
+
+
+ 0
+
+
+
+
+ Persian (fa)
+ 3.13
+ 2025/04/01 18:46:34
+
+ 0
+
+
+ 0
+
+
+
+
+ Arabic (ar)
+ master
+ 2024/05/24 14:10:55
+
+ 3
+
+
+ 1
+
+
+
+
+ Hindi (hi-in)
+ master
+ 2019/05/07 01:31:24
+
+ 0
+
+
+ 0
+
+
+
+
+ Marathi (mr)
+ 3.9
+ 2022/05/20 01:19:57
+
+ 0
+
+
+ 0
+
+
+
+
+ Hungarian (hu)
+ master
+ 2017/06/10 10:25:25
+
+ 0
+
+
+ 0
+
+
+
+
+ Portuguese (pt)
+
+
+
+ 0
+
+
+ 0
+
+
+
+
+ Lithuanian (lt)
+
+
+
+ 0
+
+
+ 0
+
+
+
+
+ Bengali (bn-in)
+
+
+
+ 0
+
+
+ 0
+
+
+
+
+
+* number of Sphinx build process warnings
+For more information about translations, see the Python Developer’s Guide .
+Last updated at Thursday, 1 May 2025, 21:59:26 UTC (in 32:25 minutes).
+
+
\ No newline at end of file
diff --git a/91/merge/style.css b/91/merge/style.css
new file mode 100644
index 000000000..18e3eaf12
--- /dev/null
+++ b/91/merge/style.css
@@ -0,0 +1,91 @@
+body {
+ font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
+}
+table {
+ border-collapse: collapse;
+}
+th, td {
+ border: 1px solid #ddd;
+ padding: 8px 12px;
+ text-align: left;
+ white-space: nowrap;
+}
+th {
+ background-color: #f4f4f4;
+}
+.progress-bar {
+ display: inline-block;
+ color: white;
+ height: 20px;
+ line-height: 20px;
+ text-align: center;
+ overflow: hidden;
+ white-space: nowrap;
+ box-sizing: border-box;
+}
+.progress-bar-outer-label {
+ display: none;
+ padding-left: .5em;
+ height: 20px;
+ line-height: 20px;
+ overflow: hidden;
+}
+.progress-bar.low {
+ color: transparent;
+ user-select: none;
+}
+.progress-bar.low + .progress-bar-outer-label {
+ display: inline-block;
+}
+td[data-label="translators"], td[data-label="warnings"], td[data-label="lint"] {
+ text-align: right;
+}
+td[data-label="completion"] {
+ width: 100%;
+ line-height: 0;
+}
+.switchpages{
+ position: absolute;
+ top: 10px;
+ right: 10px;
+ }
+
+@media screen and (max-width: 675px) {
+ .switchpages{
+ all: unset;
+ }
+}
+
+@media screen and (max-width: 600px) {
+ table, thead, tbody, th, td, tr {
+ display: block;
+ }
+ th {
+ position: absolute;
+ top: -9999px;
+ left: -9999px;
+ }
+ tr {
+ border: 1px solid #ccc;
+ margin-bottom: 5px;
+ }
+ td {
+ border: none;
+ border-bottom: 1px solid #eee;
+ padding-left: 50%;
+ position: relative;
+ }
+ td:before {
+ content: attr(data-label);
+ font-weight: bold;
+ left: 10px;
+ position: absolute;
+ }
+ td[data-label="completion"] {
+ width: inherit;
+ }
+ .progress-bar {
+ min-width: 0;
+ width: 100% !important;
+ }
+}
diff --git a/91/merge/warnings-ar.txt b/91/merge/warnings-ar.txt
new file mode 100644
index 000000000..c8862d765
--- /dev/null
+++ b/91/merge/warnings-ar.txt
@@ -0,0 +1,3 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:24: WARNING: inconsistent term references in translated message. original: [':ref:`installing-index`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:27: WARNING: inconsistent term references in translated message. original: [':ref:`reference-index`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64: WARNING: inconsistent term references in translated message. original: [':ref:`Frequently Asked Questions `'], translated: [] [i18n.inconsistent_references]
diff --git a/91/merge/warnings-es.txt b/91/merge/warnings-es.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-fa.txt b/91/merge/warnings-fa.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-fr.txt b/91/merge/warnings-fr.txt
new file mode 100644
index 000000000..70263ff9e
--- /dev/null
+++ b/91/merge/warnings-fr.txt
@@ -0,0 +1,3 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/classes.rst:772: WARNING: inconsistent term references in translated message. original: [':ref:`Instance method objects `', ':attr:`m.__self__ `', ':attr:`m.__func__ `', ':ref:`function object `'], translated: [':attr:`m.__self__ `', ':attr:`m.__func__ `', ':ref:`objet fonction `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/import.rst:602: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`__repr__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:323: WARNING: inconsistent term references in translated message. original: [':class:`int`', ':class:`int`', ':class:`float`', ':class:`float`', ':class:`int`'], translated: [':class:`int`', ':class:`int`', ':class:`float`', ':class:`float`'] [i18n.inconsistent_references]
diff --git a/91/merge/warnings-gr.txt b/91/merge/warnings-gr.txt
new file mode 100644
index 000000000..cfd9abfcb
--- /dev/null
+++ b/91/merge/warnings-gr.txt
@@ -0,0 +1,5 @@
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
diff --git a/91/merge/warnings-hi-in.txt b/91/merge/warnings-hi-in.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-id.txt b/91/merge/warnings-id.txt
new file mode 100644
index 000000000..adc299139
--- /dev/null
+++ b/91/merge/warnings-id.txt
@@ -0,0 +1,47 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/faq/general.rst:: ERROR: Anonymous hyperlink mismatch: 1 references but 0 targets.
+See "backrefs" attribute for IDs. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/faq/windows.rst:276: WARNING: inconsistent term references in translated message. original: [':mod:`msvcrt`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/cporting.rst:17: WARNING: inconsistent references in translated message. original: ['`Cython`_', '`CFFI`_'], translated: ['`Cython`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/abstract.rst:14: WARNING: inconsistent term references in translated message. original: [':c:func:`PyList_New`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/appendix.rst:50: WARNING: inconsistent term references in translated message. original: [':exc:`KeyboardInterrupt`', ':keyword:`try`'], translated: [':exc:`KeyboardInterrupt`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:872::1: WARNING: Inline literal start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:872::1: WARNING: Inline literal start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/datastructures.rst:407: WARNING: inconsistent term references in translated message. original: [':term:`immutable`', ':func:`namedtuples `', ':term:`mutable`'], translated: [':term:`immutable`', ':func:`namedtuples `). Daftar adalah :term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/datastructures.rst:693: WARNING: inconsistent term references in translated message. original: [':ref:`walrus operator `'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:108: WARNING: inconsistent term references in translated message. original: [':keyword:`try`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:423: WARNING: inconsistent term references in translated message. original: [':keyword:`break`', ':keyword:`continue`', ':keyword:`return`'], translated: [':keyword:`break`', ':keyword:`continue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/inputoutput.rst:522: WARNING: inconsistent term references in translated message. original: [':func:`~json.dumps`', ':func:`~json.dump`', ':term:`text file`', ':term:`text file`'], translated: [':func:`~json.dumps`', ':func:`~json.dump`', ':term:`text file`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/interpreter.rst:73: WARNING: inconsistent term references in translated message. original: [':option:`-c`', ':option:`-m`', ':option:`-c`', ':option:`-m`'], translated: [':option:`-c`', ':option:`-c`', ':option:`-m`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/introduction.rst:132: WARNING: inconsistent term references in translated message. original: [':class:`int`', ':class:`float`', ':class:`~decimal.Decimal`', ':class:`~fractions.Fraction`', ':ref:`complex numbers `'], translated: [':class:`int`', ':class:`~decimal.Decimal`', ':class:`~fractions.Fraction`', ':ref:`complex numbers `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/modules.rst:206: WARNING: inconsistent term references in translated message. original: [':data:`sys.path`', ':ref:`tut-standardmodules`'], translated: [':ref:`tut-standardmodules`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:238: WARNING: inconsistent term references in translated message. original: [':mod:`zlib`', ':mod:`gzip`', ':mod:`bz2`', ':mod:`lzma`', ':mod:`zipfile`', ':mod:`tarfile`'], translated: [':mod:`gzip`', ':mod:`bz2`', ':mod:`lzma`', ':mod:`zipfile`', ':mod:`tarfile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:264: WARNING: inconsistent term references in translated message. original: [':mod:`timeit`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:288: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:174: WARNING: inconsistent term references in translated message. original: [':mod:`threading`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64: WARNING: inconsistent term references in translated message. original: [':ref:`Frequently Asked Questions `'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:1324: WARNING: inconsistent term references in translated message. original: [':ref:`sortinghowto`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/html.entities.rst:13: WARNING: inconsistent term references in translated message. original: [':data:`html5`', ':data:`name2codepoint`', ':data:`codepoint2name`', ':data:`entitydefs`'], translated: [':data:`html5`', ':data:`name2codepoint`', ':data:`codepoint2name`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:213: WARNING: inconsistent term references in translated message. original: [':ref:`binaryseq`', ':ref:`typebytearray`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:473: WARNING: inconsistent term references in translated message. original: [':class:`list`', ':class:`set`', ':class:`tuple`', ':mod:`collections`'], translated: [':class:`set`', ':class:`tuple`', ':mod:`collections`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:848: WARNING: inconsistent term references in translated message. original: [':class:`set`', ':class:`list`', ':class:`tuple`', ':class:`dict`', ':mod:`collections`'], translated: [':class:`set`', ':class:`list`', ':class:`dict`', ':mod:`collections`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1040: WARNING: inconsistent term references in translated message. original: [':class:`int`', ':meth:`base.__index__ `', ':meth:`base.__int__ `', ':meth:`base.__index__\n`'], translated: [':class:`int`', ':meth:`base.__index__ `', ':meth:`base.__int__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1144: WARNING: inconsistent term references in translated message. original: [':class:`list`', ':ref:`typesseq-list`', ':ref:`typesseq`'], translated: [':class:`list`', ':ref:`typesseq-list`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1792: WARNING: inconsistent term references in translated message. original: [':class:`set`', ':class:`set`', ':ref:`types-set`'], translated: [':class:`set`', ':ref:`types-set`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1878: WARNING: inconsistent term references in translated message. original: [':ref:`sortinghowto`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functools.rst:146: WARNING: inconsistent term references in translated message. original: [':ref:`sortinghowto`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:205::1: WARNING: undefined label: 'buffer interface' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:962::1: WARNING: undefined label: 'auditing event' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:921::1: WARNING: undefined label: 'tuttuples' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:1134::1: WARNING: undefined label: 'tut-firstclass' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/datastructures.rst:335::1: WARNING: undefined label: 'tut-unpacking-argumen' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:368::1: WARNING: undefined label: 'tut-class' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/index.rst:40::1: WARNING: undefined label: 'glosarium' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:251::1: WARNING: unknown keyword: 'garbage collection' [ref.keyword]
diff --git a/91/merge/warnings-it.txt b/91/merge/warnings-it.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-ja.txt b/91/merge/warnings-ja.txt
new file mode 100644
index 000000000..0ee782189
--- /dev/null
+++ b/91/merge/warnings-ja.txt
@@ -0,0 +1,320 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:109: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`PyArg_ParseTuple`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:182: WARNING: inconsistent term references in translated message. original: [':c:func:`malloc`', ':c:func:`malloc`', ':c:func:`realloc`', ':c:func:`PyErr_NoMemory`', ':c:func:`PyLong_FromLong`', ':c:func:`malloc`'], translated: [':c:func:`malloc`', ':c:func:`malloc`', ':c:func:`realloc`', ':c:func:`PyErr_NoMemory`', ':c:func:`PyLong_FromLong`', ':c:func:`PyErr_NoMemory`', ':c:func:`malloc`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:585: WARNING: inconsistent term references in translated message. original: [':c:func:`PyObject_CallObject`', ':c:func:`PyErr_Clear`'], translated: [':c:func:`Py_DECREF`', ':c:func:`PyObject_CallObject`', ':c:func:`PyErr_Clear`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:653: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`PyArg_ParseTuple`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:813: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`Py_BuildValue`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:818: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`Py_BuildValue`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:823: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`', ':c:func:`Py_BuildValue`'], translated: [':c:func:`PyArg_ParseTuple`', ':c:func:`PyArg_ParseTuple`', ':c:func:`Py_BuildValue`', ':c:func:`Py_BuildValue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:961: WARNING: inconsistent term references in translated message. original: [':c:func:`Py_INCREF`'], translated: [':c:func:`Py_INCREF`', ':c:func:`Py_INCREF`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:91: WARNING: inconsistent term references in translated message. original: [':term:`asynchronous generator iterator`', ':keyword:`async def`', ':keyword:`yield`', ':keyword:`async for`'], translated: [':term:`asynchronous generator iterator`', ':keyword:`async def`', ':keyword:`yield`', ':keyword:`yield`', ':keyword:`async for`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:544: WARNING: inconsistent term references in translated message. original: [':term:`generator iterator`', ':keyword:`yield`', ':func:`next`'], translated: [':term:`generator iterator`', ':keyword:`yield`', ':keyword:`yield`', ':func:`next`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:800: WARNING: inconsistent term references in translated message. original: [':keyword:`if`'], translated: [':keyword:`if`', ':keyword:`if`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:983: WARNING: inconsistent term references in translated message. original: [':term:`function`', ':term:`argument`'], translated: [':term:`関数 `', ':term:`メソッド `', ':term:`実引数 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/argparse.rst:11: WARNING: inconsistent term references in translated message. original: [':mod:`argparse`'], translated: [':mod:`argparse`', ':mod:`argparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/typeobj.rst:961: WARNING: inconsistent term references in translated message. original: [':func:`str`', ':class:`str`', ':func:`str`', ':c:func:`PyObject_Str`', ':c:func:`PyObject_Str`'], translated: [':func:`str`', ':class:`str`', ':func:`str`', ':class:`str`', ':c:func:`PyObject_Str`', ':c:func:`PyObject_Str`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/typeobj.rst:1498: WARNING: inconsistent term references in translated message. original: [':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`'], translated: [':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/enum.rst:1089: WARNING: inconsistent term references in translated message. original: [':func:`dir`'], translated: [':func:`dir`', ':func:`dir`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/functional.rst:726: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`zip`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/logging-cookbook.rst:858: WARNING: inconsistent term references in translated message. original: [':class:`Logger`', ':class:`Logger`', ':class:`Logger`'], translated: [':class:`Logger`', ':class:`Logger`', ':class:`Logger`', ':class:`Logger`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/argparse.rst:986: WARNING: inconsistent references in translated message. original: ['type_', 'default_'], translated: ['type_', 'default_', 'default_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/array.rst:129: WARNING: inconsistent term references in translated message. original: [':ref:`bufferobjects`'], translated: [':meth:`buffer_info`', ':ref:`bufferobjects`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/ast.rst:2150: WARNING: inconsistent term references in translated message. original: [':func:`ast.parse`', ':class:`ast.operator`', ':class:`ast.unaryop`', ':class:`ast.cmpop`', ':class:`ast.boolop`', ':class:`ast.expr_context`', ':class:`ast.Add`'], translated: [':func:`ast.parse`', ':class:`ast.operator`', ':class:`ast.unaryop`', ':class:`ast.cmpop`', ':class:`ast.boolop`', ':class:`ast.expr_context`', ':class:`ast.Add`', ':class:`ast.Add`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/asyncio-dev.rst:89: WARNING: inconsistent term references in translated message. original: [':func:`run_coroutine_threadsafe`', ':class:`concurrent.futures.Future`'], translated: [':func:`run_coroutine_threadsafe`', ':func:`run_coroutine_threadsafe`', ':class:`concurrent.futures.Future`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:433: WARNING: inconsistent term references in translated message. original: [':keyword:`pass`'], translated: [':keyword:`pass`', ':keyword:`pass`', ':keyword:`pass`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:700: WARNING: inconsistent term references in translated message. original: [], translated: [':keyword:`break`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:728: WARNING: inconsistent term references in translated message. original: [':keyword:`continue`', ':keyword:`for`', ':keyword:`while`'], translated: [':keyword:`continue`', ':keyword:`for`', ':keyword:`while`', ':keyword:`continue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:922: WARNING: inconsistent term references in translated message. original: [':mod:`__future__`'], translated: [':mod:`__future__`', ':mod:`__future__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/toplevel_components.rst:28: WARNING: inconsistent term references in translated message. original: [':mod:`sys`', ':mod:`builtins`', ':mod:`__main__`'], translated: [':mod:`sys`', ':mod:`builtins`', ':mod:`__main__`', ':mod:`__main__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:556::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:51: WARNING: inconsistent term references in translated message. original: [':keyword:`for`'], translated: [':keyword:`for`', ':keyword:`for`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:259: WARNING: inconsistent term references in translated message. original: [':keyword:`pass`'], translated: [':keyword:`pass`', ':keyword:`pass`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:482: WARNING: inconsistent term references in translated message. original: [':keyword:`def`'], translated: [':keyword:`def`', ':keyword:`def`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:556::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:217: WARNING: inconsistent term references in translated message. original: [':keyword:`try`', ':keyword:`except`'], translated: [':keyword:`try`', ':keyword:`except`', ':keyword:`else`', ':keyword:`except`', ':keyword:`else`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/inputoutput.rst:263: WARNING: inconsistent term references in translated message. original: [':func:`print`'], translated: [':func:`print`', ':func:`print`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/interactive.rst:19: WARNING: inconsistent term references in translated message. original: [':ref:`automatically enabled `', ':meth:`~object.__getattr__`'], translated: [':ref:`自動的に有効化されます `', ':meth:`~object.__getattr__`', ':meth:`~object.__getattr__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/introduction.rst:542: WARNING: inconsistent term references in translated message. original: [':func:`print`'], translated: [':func:`print`', ':func:`print`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/modules.rst:309: WARNING: inconsistent term references in translated message. original: [':func:`dir`'], translated: [':func:`dir`', ':func:`dir`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:66: WARNING: inconsistent term references in translated message. original: [':mod:`sys`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:53: WARNING: inconsistent term references in translated message. original: [':mod:`locale`'], translated: [':mod:`locale`', ':mod:`locale`', ':func:`format`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:103: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`~string.Template`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:198: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`threading`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:234: WARNING: inconsistent term references in translated message. original: [':const:`~logging.DEBUG`', ':const:`~logging.INFO`', ':const:`~logging.WARNING`', ':const:`~logging.ERROR`', ':const:`~logging.CRITICAL`'], translated: [':meth:`~logging.Logger.info`', ':meth:`~logging.Logger.debug`', ':const:`~logging.DEBUG`', ':const:`~logging.INFO`', ':const:`~logging.WARNING`', ':const:`~logging.ERROR`', ':const:`~logging.CRITICAL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:380: WARNING: inconsistent term references in translated message. original: [':class:`~decimal.Decimal`'], translated: [':class:`~decimal.Decimal`', ':class:`~decimal.Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/using/windows.rst:629: WARNING: inconsistent term references in translated message. original: [':ref:`launcher`'], translated: [':envvar:`PATH`', ':envvar:`PATHEXT`', ':ref:`launcher`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:161: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:299: WARNING: inconsistent term references in translated message. original: [], translated: [':keyword:`if`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:411: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:1103: WARNING: inconsistent term references in translated message. original: [':mod:`mmap`', ':mod:`re`'], translated: [':mod:`mmap`', ':term:`mutable`', ':mod:`re`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.2.rst:571: WARNING: inconsistent term references in translated message. original: [':keyword:`yield`', ':keyword:`return`', ':keyword:`try`', ':keyword:`finally`'], translated: [':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:43: WARNING: inconsistent term references in translated message. original: [':class:`Set`'], translated: [':class:`Set`', ':term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:156: WARNING: inconsistent term references in translated message. original: [':keyword:`yield`', ':keyword:`return`', ':keyword:`try`'], translated: [':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:291: WARNING: inconsistent term references in translated message. original: [':mod:`zipimport`'], translated: [':mod:`zipimport`', ':mod:`zipimport`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:344: WARNING: inconsistent term references in translated message. original: [':func:`open`', ':func:`os.listdir`'], translated: [':func:`open`', ':func:`os.listdir`', ':func:`os.getcwdu`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:888: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:1698: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:1720: WARNING: inconsistent term references in translated message. original: [':meth:`~datetime.datetime.isoformat`', ':class:`~datetime.date`', ':class:`~datetime.datetime`', ':class:`~datetime.timedelta`', ':class:`~datetime.date`', ':class:`~datetime.datetime`'], translated: [':meth:`~datetime.datetime.isoformat`', ':class:`~datetime.datetime`', ':class:`~datetime.timedelta`', ':class:`~datetime.date`', ':class:`~datetime.datetime`', ':class:`~datetime.date`', ':class:`~datetime.datetime`', ':class:`~datetime.datetime`', ':meth:`~datetime.strptime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:1736: WARNING: inconsistent term references in translated message. original: [':mod:`getopt`', ':mod:`optparse`'], translated: [':mod:`getopt`', ':mod:`optparse`', ':mod:`optparse`', ':mod:`argparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.4.rst:71: WARNING: inconsistent term references in translated message. original: [':func:`frozenset`', ':func:`set`'], translated: [':func:`frozenset`', ':func:`set`', ':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.4.rst:75: WARNING: inconsistent term references in translated message. original: [':mod:`sets`', ':class:`Set`', ':class:`ImmutableSet`'], translated: [':mod:`sets`', ':class:`Set`', ':class:`ImmutableSet`', ':mod:`sets`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.4.rst:545: WARNING: inconsistent term references in translated message. original: [':class:`Decimal`', ':class:`Decimal`'], translated: [':class:`Decimal`', ':term:`immutable`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:504: WARNING: inconsistent term references in translated message. original: [':meth:`close`', ':exc:`GeneratorExit`', ':exc:`GeneratorExit`', ':exc:`StopIteration`', ':exc:`GeneratorExit`', ':exc:`RuntimeError`', ':meth:`close`'], translated: [':meth:`close`', ':exc:`GeneratorExit`', ':exc:`GeneratorExit`', ':exc:`StopIteration`', ':exc:`RuntimeError`', ':meth:`close`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:848: WARNING: inconsistent term references in translated message. original: [':exc:`BaseException`', ':exc:`BaseException`', ':exc:`Exception`'], translated: [':exc:`BaseException`', ':exc:`BaseException`', ':exc:`Exception`', ':exc:`BaseException`', ':exc:`BaseException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:1081: WARNING: inconsistent term references in translated message. original: [':class:`UnicodeDecodeError`', ':class:`UnicodeDecodeError`'], translated: [':class:`UnicodeDecodeError`', ':class:`UnicodeDecodeError`', ':class:`UnicodeDecodeError`', ':class:`UnicodeWarning`', ':exc:`KeyError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:1706: WARNING: inconsistent term references in translated message. original: [':func:`c_char_p`', ':func:`create_string_buffer`'], translated: [':func:`c_char_p`', ':term:`immutable`', ':func:`create_string_buffer`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:1998: WARNING: inconsistent term references in translated message. original: [':meth:`fetchone`', ':meth:`fetchall`'], translated: [':term:`iterator`', ':meth:`~Cursor.fetchone`', ':meth:`~Cursor.fetchall`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:984: WARNING: inconsistent term references in translated message. original: [':class:`bytes`', ':class:`bytearray`'], translated: [':class:`bytes`', ':term:`immutable`', ':class:`bytearray`', ':term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:999: WARNING: inconsistent term references in translated message. original: [':meth:`startswith`', ':meth:`endswith`', ':meth:`find`', ':meth:`rfind`', ':meth:`append`', ':meth:`pop`', ':meth:`reverse`'], translated: [':class:`bytearray`', ':meth:`startswith`', ':meth:`endswith`', ':meth:`find`', ':meth:`rfind`', ':meth:`append`', ':meth:`pop`', ':meth:`reverse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:1490: WARNING: inconsistent term references in translated message. original: [':func:`hasattr`', ':meth:`__getattr__`', ':func:`hasattr`', ':exc:`KeyboardInterrupt`', ':exc:`SystemExit`', ':func:`hasattr`'], translated: [':func:`hasattr`', ':meth:`__getattr__`', ':exc:`KeyboardInterrupt`', ':exc:`SystemExit`', ':func:`hasattr`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:1531: WARNING: inconsistent term references in translated message. original: [':meth:`index`', ':meth:`count`', ':meth:`index`', ':meth:`count`'], translated: [':meth:`index`', ':meth:`count`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:1954: WARNING: inconsistent term references in translated message. original: [':func:`reduce`', ':mod:`functools`', ':func:`reduce`', ':mod:`functools`'], translated: [':func:`reduce`', ':mod:`functools`', ':mod:`functools`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.rst:117: WARNING: inconsistent references in translated message. original: ['`ZIP bomb`_'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:406: WARNING: inconsistent term references in translated message. original: [':class:`NodeList`', ':class:`Element`', ':meth:`getElementsByTagName`', ':meth:`getElementsByTagNameNS`', ':class:`Node`'], translated: [':class:`NodeList`', ':class:`Element`', ':class:`NodeList`', ':class:`Node`', ':meth:`getElementsByTagName`', ':meth:`getElementsByTagNameNS`', ':class:`NodeList`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:505: WARNING: inconsistent term references in translated message. original: [':class:`Document`', ':class:`Node`'], translated: [':class:`Document`', ':class:`Document`', ':class:`Node`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:585: WARNING: inconsistent term references in translated message. original: [':class:`Element`', ':class:`Node`'], translated: [':class:`Element`', ':class:`Node`', ':class:`Node`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:746: WARNING: inconsistent term references in translated message. original: [':class:`Comment`', ':class:`Node`'], translated: [':class:`Comment`', ':class:`Comment`', ':class:`Node`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.minidom.rst:113: WARNING: inconsistent term references in translated message. original: [':mod:`xml.dom`', ':mod:`xml.dom.minidom`'], translated: [':mod:`xml.dom`', ':mod:`xml.dom`', ':mod:`xml.dom.minidom`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.etree.elementtree.rst:90: WARNING: inconsistent term references in translated message. original: [':func:`fromstring`', ':class:`Element`', ':class:`ElementTree`'], translated: [':func:`fromstring`', ':class:`Element`', ':class:`Element`', ':class:`ElementTree`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.sax.reader.rst:183: WARNING: inconsistent term references in translated message. original: [':exc:`SAXNotRecognizedException`'], translated: [':exc:`SAXNotRecognizedException`', ':exc:`SAXNotSupportedException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.sax.reader.rst:197: WARNING: inconsistent term references in translated message. original: [':exc:`SAXNotRecognizedException`'], translated: [':exc:`SAXNotRecognizedException`', ':exc:`SAXNotSupportedException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xmlrpc.client.rst:527: WARNING: inconsistent term references in translated message. original: [':exc:`Fault`', ':const:`None`'], translated: [':exc:`Fault`', ':const:`None`', ':const:`None`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xmlrpc.server.rst:100: WARNING: inconsistent term references in translated message. original: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`'], translated: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xmlrpc.server.rst:314: WARNING: inconsistent term references in translated message. original: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`'], translated: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/zipimport.rst:50: WARNING: inconsistent term references in translated message. original: [':mod:`importlib`'], translated: [':mod:`importlib`', ':keyword:`import`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:99: WARNING: inconsistent term references in translated message. original: [':ref:`booleans`', ':keyword:`if`', ':keyword:`else`'], translated: [':keyword:`if`', ':ref:`booleans`', ':keyword:`if`', ':keyword:`else`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:124: WARNING: inconsistent term references in translated message. original: [], translated: [':keyword:`while`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:259: WARNING: inconsistent term references in translated message. original: [':keyword:`try`'], translated: [':keyword:`except`', ':keyword:`try`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:442: WARNING: inconsistent term references in translated message. original: [':keyword:`return`', ':keyword:`break`', ':keyword:`continue`', ':keyword:`try`'], translated: [':keyword:`try`', ':keyword:`try`', ':keyword:`return`', ':keyword:`break`', ':keyword:`continue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:44: WARNING: inconsistent term references in translated message. original: [':func:`type`'], translated: [':func:`len`', ':func:`type`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:1893: WARNING: inconsistent term references in translated message. original: [':meth:`__new__`', ':meth:`__init__`', ':meth:`__init__`'], translated: [':meth:`__new__`', ':meth:`__init__`', ':meth:`__init__`', ':meth:`__init__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:1913: WARNING: inconsistent term references in translated message. original: [':meth:`__del__`', ':meth:`__del__`'], translated: [':meth:`__del__`', ':meth:`__del__`', ':meth:`__del__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:2239: WARNING: inconsistent term references in translated message. original: [':meth:`__getattr__`', ':meth:`__getattribute__`', ':exc:`AttributeError`', ':exc:`AttributeError`'], translated: [':meth:`__getattr__`', ':meth:`__getattr__`', ':meth:`__getattribute__`', ':exc:`AttributeError`', ':exc:`AttributeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/executionmodel.rst:81: WARNING: inconsistent term references in translated message. original: [':keyword:`del`'], translated: [':keyword:`del`', ':keyword:`del`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/executionmodel.rst:357: WARNING: inconsistent term references in translated message. original: [':keyword:`raise`', ':keyword:`try`', ':keyword:`except`', ':keyword:`finally`'], translated: [':keyword:`raise`', ':keyword:`try`', ':keyword:`except`', ':keyword:`try`', ':keyword:`finally`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/expressions.rst:1756: WARNING: inconsistent term references in translated message. original: [':keyword:`is`', ':keyword:`is not`', ':meth:`id`'], translated: [':keyword:`is`', ':keyword:`is not`', ':meth:`id`', ':keyword:`is`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/import.rst:225: WARNING: inconsistent term references in translated message. original: [':term:`import path`', ':term:`import path`'], translated: [':doc:`プログラミング FAQ <../faq/programming>`', ':term:`インポートパス `', ':term:`インポートパス `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/import.rst:427: WARNING: inconsistent term references in translated message. original: [':exc:`ImportError`', ':meth:`~importlib.abc.Loader.exec_module`'], translated: [':meth:`~importlib.abc.Loader.exec_module`', ':exc:`ImportError`', ':exc:`ImportError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:293: WARNING: inconsistent term references in translated message. original: [':meth:`~Thread.start`', ':meth:`~Thread.run`'], translated: [':meth:`~Thread.start`', ':meth:`start`', ':meth:`~Thread.run`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:328: WARNING: inconsistent term references in translated message. original: [':ref:`joined `'], translated: [':mod:`threading`', ':ref:`join `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:376: WARNING: inconsistent term references in translated message. original: [':meth:`~Thread.run`'], translated: [':meth:`~Thread.start`', ':meth:`~Thread.run`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:800: WARNING: inconsistent term references in translated message. original: [':class:`RLock`', ':meth:`release`', ':class:`RLock`'], translated: [':class:`RLock`', ':meth:`release`', ':meth:`release`', ':class:`RLock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:851: WARNING: inconsistent term references in translated message. original: [':meth:`wait`', ':meth:`notify`'], translated: [':meth:`wait`', ':meth:`notify`', ':meth:`notify`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:926: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`release`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:960: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`acquire`', ':meth:`release`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:989: WARNING: inconsistent term references in translated message. original: [':meth:`~Event.set`', ':meth:`clear`', ':meth:`wait`'], translated: [':meth:`~Event.set`', ':const:`True`', ':meth:`clear`', ':const:`False`', ':meth:`wait`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/time.rst:597: WARNING: inconsistent term references in translated message. original: [':func:`strftime`', ':func:`ctime`', ':exc:`ValueError`'], translated: [':func:`strftime`', ':func:`ctime`', ':exc:`ValueError`', ':exc:`ValueError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/time.rst:684: WARNING: inconsistent term references in translated message. original: [':func:`mktime`', ':attr:`tm_isdst`'], translated: [':func:`mktime`', ':attr:`tm_isdst`', ':attr:`tm_isdst`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/time.rst:688: WARNING: inconsistent term references in translated message. original: [':class:`struct_time`', ':exc:`TypeError`'], translated: [':class:`struct_time`', ':class:`struct_time`', ':class:`struct_time`', ':exc:`TypeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/tkinter.rst:758: WARNING: inconsistent term references in translated message. original: [':meth:`_root`'], translated: [':meth:`_root`', ':mod:`Tkinter`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/tkinter.ttk.rst:760: WARNING: inconsistent term references in translated message. original: [':class:`Sizegrip`'], translated: [':class:`Sizegrip`', ':class:`Sizegrip`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/typing.rst:1143: WARNING: inconsistent term references in translated message. original: [':ref:`union type expressions`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:399: WARNING: inconsistent term references in translated message. original: [':meth:`~TestCase.setUp`'], translated: [':meth:`~TestCase.setUp`', ':meth:`~TestCase.setUp`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:727: WARNING: inconsistent term references in translated message. original: [':class:`TestCase`', ':mod:`unittest`'], translated: [':class:`TestCase`', ':mod:`unittest`', ':class:`TestCase`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:813: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`TestCase`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1407: WARNING: inconsistent term references in translated message. original: [':exc:`AssertionError`'], translated: [':meth:`test`', ':exc:`AssertionError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1811: WARNING: inconsistent term references in translated message. original: [':class:`TestCase`'], translated: [':class:`TestCase`', ':meth:`loadTestsFromModule`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1845: WARNING: inconsistent term references in translated message. original: [':mod:`SampleTests`', ':class:`TestCase`', ':class:`SampleTestCase`', ':meth:`test_one`', ':meth:`test_two`', ':meth:`test_three`', ':meth:`test_two`'], translated: [':mod:`SampleTests`', ':class:`TestCase`', ':class:`SampleTestCase`', ':class:`SampleTestCase`', ':meth:`test_one`', ':meth:`test_two`', ':meth:`test_three`', ':class:`SampleTestCase`', ':meth:`test_two`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1995: WARNING: inconsistent term references in translated message. original: [':mod:`unittest`', ':class:`TestResult`', ':class:`TestResult`', ':meth:`TestRunner.run`'], translated: [':mod:`unittest`', ':meth:`TestRunner.run`', ':class:`TestResult`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:2082: WARNING: inconsistent term references in translated message. original: [':attr:`shouldStop`', ':class:`TestRunner`'], translated: [':class:`TestResult`', ':attr:`shouldStop`', ':class:`TestRunner`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:2212: WARNING: inconsistent term references in translated message. original: [':class:`TestLoader`', ':class:`TestLoader`'], translated: [':class:`TestLoader`', ':class:`TestLoader`', ':class:`TestLoader`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.mock.rst:59: WARNING: inconsistent term references in translated message. original: [':class:`Mock`', ':class:`MagicMock`'], translated: [':class:`Mock`', ':class:`MagicMock`', ':class:`Mock`', ':class:`MagicMock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.mock.rst:156: WARNING: inconsistent term references in translated message. original: [':class:`MagicMock`'], translated: [':class:`MagicMock`', ':class:`Mock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.mock.rst:1444: WARNING: inconsistent term references in translated message. original: [':class:`MagicMock`'], translated: [':class:`MagicMock`', ':class:`MagicMock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/urllib.request.rst:661: WARNING: inconsistent term references in translated message. original: [':func:`urlopen`', ':meth:`open`', ':class:`OpenerDirector`'], translated: [':func:`urlopen`', ':func:`urlopen`', ':class:`OpenerDirector`', ':meth:`open`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/urllib.request.rst:1533: WARNING: inconsistent term references in translated message. original: [':class:`FancyURLopener`', ':meth:`prompt_user_passwd`'], translated: [':class:`FancyURLopener`', ':meth:`prompt_user_passwd`', ':meth:`prompt_user_passwd`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pickle.rst:200: WARNING: inconsistent term references in translated message. original: [':ref:`protocol version `', ':data:`HIGHEST_PROTOCOL`'], translated: [':ref:`プロトコルバージョン `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/platform.rst:82: WARNING: inconsistent term references in translated message. original: [':func:`mac_ver`'], translated: [':func:`mac_ver`', ':func:`mac_ver`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/poplib.rst:22: WARNING: inconsistent term references in translated message. original: [':class:`POP3_SSL`'], translated: [':class:`POP3_SSL`', ':class:`POP3_SSL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:356: WARNING: inconsistent term references in translated message. original: [':mod:`profile`', ':mod:`cProfile`', ':class:`~pstats.Stats`', ':meth:`~pstats.Stats.add`'], translated: [':class:`Stats`', ':mod:`profile`', ':mod:`cProfile`', ':class:`~pstats.Stats`', ':meth:`~pstats.Stats.add`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:679: WARNING: inconsistent term references in translated message. original: [':class:`profile.Profile`', ':class:`cProfile.Profile`'], translated: [':func:`your_time_func`', ':class:`profile.Profile`', ':class:`cProfile.Profile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:684: WARNING: inconsistent term references in translated message. original: [':func:`os.times`'], translated: [':func:`your_time_func`', ':func:`os.times`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:700: WARNING: inconsistent term references in translated message. original: [':class:`Profile`'], translated: [':func:`your_time_func`', ':class:`Profile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pyexpat.rst:520: WARNING: inconsistent term references in translated message. original: [':attr:`DefaultHandler`'], translated: [':attr:`DefaultHandler`', ':attr:`DefaultHandler`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/readline.rst:12: WARNING: inconsistent term references in translated message. original: [':mod:`readline`', ':mod:`rlcompleter`', ':func:`input`'], translated: [':mod:`readline`', ':mod:`rlcompleter`', ':mod:`rlcompleter`', ':func:`input`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/secrets.rst:24: WARNING: inconsistent term references in translated message. original: [':mod:`secrets`', ':mod:`random`'], translated: [':mod:`random`', ':mod:`secrets`', ':mod:`random`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/gettext.rst:132: WARNING: inconsistent term references in translated message. original: [':envvar:`LANGUAGE`', ':envvar:`LC_ALL`', ':envvar:`LC_MESSAGES`', ':envvar:`LANG`'], translated: [':envvar:`LANGUAGE`', ':envvar:`LC_ALL`', ':envvar:`LC_MESSAGES`', ':envvar:`LANG`', ':func:`find`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/http.cookiejar.rst:630: WARNING: inconsistent term references in translated message. original: [':const:`None`', ':attr:`version`', ':mod:`http.cookiejar`', ':attr:`version`'], translated: [':const:`None`', ':mod:`http.cookiejar`', ':attr:`version`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/http.server.rst:27: WARNING: inconsistent term references in translated message. original: [':class:`HTTPServer`', ':class:`socketserver.TCPServer`'], translated: [':class:`HTTPServer`', ':class:`socketserver.TCPServer`', ':class:`HTTPServer`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/importlib.rst:193: WARNING: inconsistent term references in translated message. original: [':keyword:`from`', ':keyword:`import`', ':func:`reload`'], translated: [':keyword:`from`', ':keyword:`import`', ':func:`reload`', ':keyword:`from`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/importlib.rst:416: WARNING: inconsistent term references in translated message. original: [':exc:`ImportError`'], translated: [':class:`code`', ':exc:`ImportError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/importlib.rst:1439: WARNING: inconsistent term references in translated message. original: [':class:`~importlib.machinery.ModuleSpec`', ':term:`loader`', ':meth:`InspectLoader.is_package`'], translated: [':class:`~importlib.machinery.ModuleSpec`', ':term:`loader`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/io.rst:263: WARNING: inconsistent term references in translated message. original: [':class:`IOBase`', ':exc:`UnsupportedOperation`'], translated: [':class:`IOBase`', ':class:`IOBase`', ':exc:`UnsupportedOperation`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/itertools.rst:758: WARNING: inconsistent term references in translated message. original: [':func:`list`', ':func:`tee`'], translated: [':func:`tee`', ':func:`tee`', ':func:`list`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/shlex.rst:299: WARNING: inconsistent term references in translated message. original: [':meth:`~io.IOBase.close`'], translated: [':const:`None`', ':meth:`~io.IOBase.close`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/shutil.rst:310: WARNING: inconsistent term references in translated message. original: [':func:`rmtree`', ':func:`rmtree`', ':data:`rmtree.avoids_symlink_attacks`'], translated: [':func:`rmtree`', ':func:`rmtree`', ':func:`rmtree`', ':data:`rmtree.avoids_symlink_attacks`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/signal.rst:291: WARNING: inconsistent term references in translated message. original: [], translated: [':const:`SIGVTALRM`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/signal.rst:297: WARNING: inconsistent term references in translated message. original: [], translated: [':const:`SIGPROF`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/site.rst:165: WARNING: inconsistent term references in translated message. original: [':mod:`readline`', ':mod:`rlcompleter`', ':ref:`interactive mode `', ':option:`-S`', ':data:`sys.__interactivehook__`', ':mod:`sitecustomize`', ':mod:`usercustomize`', ':envvar:`PYTHONSTARTUP`'], translated: [':mod:`readline`', ':ref:`対話モード `', ':option:`-S`', ':mod:`rlcompleter`', ':mod:`sitecustomize`', ':mod:`usercustomize`', ':envvar:`PYTHONSTARTUP`', ':data:`sys.__interactivehook__`', ':data:`~sys.__interactivehook__`', ':mod:`sitecustomize`', ':data:`~sys.__interactivehook__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:729: WARNING: inconsistent term references in translated message. original: [':const:`AF_INET`', ':const:`AF_INET6`', ':const:`AF_UNIX`', ':const:`AF_CAN`', ':const:`AF_PACKET`', ':const:`AF_RDS`', ':const:`SOCK_STREAM`', ':const:`SOCK_DGRAM`', ':const:`SOCK_RAW`', ':const:`AF_CAN`', ':const:`CAN_RAW`', ':const:`CAN_BCM`', ':const:`CAN_ISOTP`', ':const:`CAN_J1939`'], translated: [':const:`AF_INET`', ':const:`AF_INET6`', ':const:`AF_UNIX`', ':const:`AF_CAN`', ':const:`AF_PACKET`', ':const:`AF_RDS`', ':const:`SOCK_STREAM`', ':const:`SOCK_DGRAM`', ':const:`SOCK_RAW`', ':const:`AF_CAN`', ':const:`CAN_BCM`', ':const:`CAN_ISOTP`', ':const:`CAN_J1939`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:1022: WARNING: inconsistent term references in translated message. original: [':func:`gethostbyname_ex`', ':func:`gethostbyname`', ':func:`getaddrinfo`'], translated: [':func:`gethostbyname`', ':func:`gethostbyname_ex`', ':func:`gethostbyname`', ':func:`getaddrinfo`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:1432: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`継承不可 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:1526: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`継承不可 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:2091: WARNING: inconsistent term references in translated message. original: [':func:`getdefaulttimeout`', ':const:`None`', ':meth:`~socket.accept`'], translated: [':func:`getdefaulttimeout`', ':const:`None`', ':meth:`~socket.accept`', ':const:`None`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:172: WARNING: inconsistent term references in translated message. original: [':class:`list`'], translated: [':class:`タプル `', ':class:`リスト `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:1711: WARNING: inconsistent term references in translated message. original: [':class:`tuple`', ':class:`sqlite3.Row`', ':term:`callable`', ':class:`Cursor`'], translated: [':class:`カーソル `', ':class:`タプル `', ':class:`sqlite3.Row`', ':class:`Cursor`', ':class:`タプル `', ':term:`呼び出し可能オブジェクト `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:1718: WARNING: inconsistent term references in translated message. original: [':attr:`Connection.row_factory`', ':attr:`Connection.row_factory`'], translated: [':class:`カーソル・オブジェクト `', ':attr:`Connection.row_factory`', ':attr:`Connection.row_factory`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2404: WARNING: inconsistent term references in translated message. original: [':class:`Connection`', ':keyword:`with`', ':attr:`~Connection.autocommit`'], translated: [':class:`Connection`', ':keyword:`with`', ':keyword:`with`', ':attr:`~Connection.autocommit`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2505: WARNING: inconsistent term references in translated message. original: [':class:`tuple`', ':class:`sqlite3.Row`', ':attr:`~Cursor.row_factory`'], translated: [':class:`タプル `', ':class:`タプル `', ':class:`sqlite3.Row`', ':attr:`~Cursor.row_factory`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2515: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`タプル `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2557: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`タプル `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2707: WARNING: inconsistent term references in translated message. original: [':attr:`Connection.autocommit`', ':data:`LEGACY_TRANSACTION_CONTROL`', ':attr:`Connection.isolation_level`'], translated: [':attr:`Connection.autocommit`', ':data:`LEGACY_TRANSACTION_CONTROL`', ':attr:`Connection.isolation_level`', ':data:`LEGACY_TRANSACTION_CONTROL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3206: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`bytearray.isspace`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3262: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`bytearray.isspace`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3339: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`bytearray.isspace`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3946: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`~memoryview.format`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:4401: WARNING: inconsistent term references in translated message. original: [':class:`set`'], translated: [':class:`set`', ':class:`frozenset`', ':class:`set`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:4410: WARNING: inconsistent term references in translated message. original: [':term:`hashable`', ':class:`frozenset`'], translated: [':class:`set`', ':class:`frozenset`', ':term:`ハッシュ可能 `', ':class:`frozenset`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:4570: WARNING: inconsistent term references in translated message. original: [':meth:`~object.__contains__`', ':meth:`remove`', ':meth:`discard`'], translated: [':meth:`~object.__contains__`', ':meth:`remove`', ':meth:`discard`', ':class:`frozenset`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:5031: WARNING: inconsistent term references in translated message. original: [':term:`generator`', ':class:`contextlib.contextmanager`', ':class:`contextlib.contextmanager`', ':meth:`~contextmanager.__enter__`', ':meth:`~contextmanager.__exit__`'], translated: [':term:`ジェネレータ `', ':class:`contextlib.contextmanager`', ':term:`デコレータ `', ':class:`contextlib.contextmanager`', ':meth:`~contextmanager.__enter__`', ':meth:`~contextmanager.__exit__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/subprocess.rst:46: WARNING: inconsistent term references in translated message. original: [':ref:`frequently-used-arguments`', ':class:`Popen`'], translated: [':ref:`frequently-used-arguments`', ':class:`Popen`', ':class:`Popen`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/subprocess.rst:353: WARNING: inconsistent term references in translated message. original: [':class:`Popen`'], translated: [':class:`Popen`', ':class:`Popen`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sys.rst:1868: WARNING: inconsistent term references in translated message. original: [':data:`~io.TextIOBase.buffer`', ':data:`stdout`'], translated: [':data:`~io.TextIOBase.buffer`', ':class:`bytes`', ':data:`stdout`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/tarfile.rst:559: WARNING: inconsistent term references in translated message. original: [':class:`TarInfo`', ':class:`io.BufferedReader`', ':const:`None`', ':exc:`KeyError`'], translated: [':class:`TarInfo`', ':class:`io.BufferedReader`', ':const:`None`', ':const:`None`', ':exc:`KeyError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/locale.rst:364: WARNING: inconsistent term references in translated message. original: [':func:`setlocale`'], translated: [':func:`setlocale`', ':func:`setlocale`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/logging.rst:946: WARNING: inconsistent term references in translated message. original: [':class:`LogRecord`', ':func:`getLogRecordFactory`', ':func:`setLogRecordFactory`'], translated: [':class:`LogRecord`', ':func:`getLogRecordFactory`', ':func:`setLogRecordFactory`', ':func:`setLogRecordFactory`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/logging.rst:1303: WARNING: inconsistent term references in translated message. original: [], translated: [':const:`INFO`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/logging.config.rst:30: WARNING: inconsistent term references in translated message. original: [':mod:`logging.config`', ':mod:`logging`', ':mod:`logging`', ':mod:`logging.handlers`'], translated: [':mod:`logging.config`', ':mod:`logging`', ':mod:`logging`', ':mod:`logging`', ':mod:`logging.handlers`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mailbox.rst:165: WARNING: inconsistent term references in translated message. original: [':term:`iterator`', ':class:`Message`'], translated: [':class:`Message`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mailbox.rst:598: WARNING: inconsistent term references in translated message. original: [':meth:`~Mailbox.flush`', ':meth:`~Mailbox.close`'], translated: [':meth:`~Mailbox.flush`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mailbox.rst:877: WARNING: inconsistent term references in translated message. original: [':meth:`~Mailbox.flush`', ':meth:`~Mailbox.close`'], translated: [':meth:`~Mailbox.flush`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mmap.rst:180: WARNING: inconsistent term references in translated message. original: [], translated: [':exc:`ValueError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/multiprocessing.rst:1330: WARNING: inconsistent term references in translated message. original: [':meth:`Lock.acquire`'], translated: [':class:`threading.BoundedSemaphore`', ':meth:`Lock.acquire`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/multiprocessing.rst:1468: WARNING: inconsistent term references in translated message. original: [':meth:`Lock.acquire`'], translated: [':class:`threading.BoundedSemaphore`', ':meth:`Lock.acquire`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/multiprocessing.rst:2832: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`threading`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:364: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:400: WARNING: inconsistent term references in translated message. original: [':meth:`~OptionParser.parse_args`'], translated: [':meth:`~OptionParser.parse_args`', ':mod:`optionparser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:567: WARNING: inconsistent term references in translated message. original: [':meth:`set_defaults`', ':meth:`~OptionParser.parse_args`'], translated: [':class:`OptionParser`', ':meth:`set_defaults`', ':meth:`~OptionParser.parse_args`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:585: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':attr:`~Option.help`'], translated: [':mod:`optparse`', ':attr:`~Option.help`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:606: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':meth:`parser.print_help`'], translated: [':mod:`optparse`', ':meth:`parser.print_help`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:782: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:788: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':mod:`optparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:868: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':meth:`~OptionParser.exit`', ':meth:`~OptionParser.error`'], translated: [':mod:`optparse`', ':class:`OptionParser`', ':meth:`~OptionParser.exit`', ':meth:`~OptionParser.error`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:981: WARNING: inconsistent term references in translated message. original: [':func:`make_option`'], translated: [':func:`make_option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:983: WARNING: inconsistent term references in translated message. original: [':func:`make_option`'], translated: [':func:`make_option`', ':class:`Option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:987: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:998: WARNING: inconsistent term references in translated message. original: [':func:`make_option`', ':mod:`optparse`', ':func:`make_option`'], translated: [':func:`make_option`', ':class:`Option`', ':class:`Option`', ':mod:`optparse`', ':class:`Option`', ':func:`make_option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1009: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1027: WARNING: inconsistent term references in translated message. original: [':attr:`~Option.action`', ':mod:`optparse`', ':exc:`OptionError`'], translated: [':class:`Option`', ':attr:`~Option.action`', ':mod:`optparse`', ':exc:`OptionError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1358: WARNING: inconsistent term references in translated message. original: [':attr:`~Option.help`'], translated: [':class:`OptionParser`', ':attr:`~Option.help`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1367: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':attr:`~Option.help`'], translated: [':mod:`optparse`', ':class:`OptionParser`', ':attr:`~Option.help`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1403: WARNING: inconsistent term references in translated message. original: [':attr:`~Option.help`', ':mod:`optparse`'], translated: [':class:`OptionParser`', ':class:`OptionParser`', ':meth:`print_version`', ':class:`OptionParser`', ':attr:`~Option.help`', ':mod:`optparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1495: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1526: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1531: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1554: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1584: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':mod:`optparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1595: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1755: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1772: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1992: WARNING: inconsistent term references in translated message. original: [':attr:`TYPES`'], translated: [':attr:`TYPES`', ':attr:`TYPES`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1997: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`TYPE_CHECKER`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:2161: WARNING: inconsistent term references in translated message. original: [':meth:`ensure_value`', ':meth:`ensure_value`'], translated: [':meth:`ensure_value`', ':meth:`ensure_value`', ':meth:`ensure_value`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:420: WARNING: inconsistent term references in translated message. original: [':func:`getpass.getuser`', ':envvar:`LOGNAME`', ':envvar:`USERNAME`'], translated: [':func:`getpass.getuser`', ':func:`getpass.getuser`', ':envvar:`LOGNAME`', ':envvar:`USERNAME`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:1272: WARNING: inconsistent term references in translated message. original: [':func:`open`', ':term:`file object`', ':meth:`~file.read`', ':meth:`~file.write`', ':func:`fdopen`'], translated: [':func:`open`', ':func:`open`', ':meth:`~file.read`', ':meth:`~file.write`', ':term:`ファイルオブジェクト `', ':func:`fdopen`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:1943: WARNING: inconsistent term references in translated message. original: [':data:`os.supports_fd`', ':exc:`NotImplementedError`'], translated: [':data:`os.supports_fd`', ':data:`os.supports_fd`', ':exc:`NotImplementedError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:4800: WARNING: inconsistent term references in translated message. original: [':mod:`subprocess`', ':ref:`subprocess-replacements`'], translated: [':mod:`subprocess`', ':mod:`subprocess`', ':mod:`subprocess`', ':ref:`subprocess-replacements`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:4966: WARNING: inconsistent term references in translated message. original: [':mod:`subprocess`', ':ref:`subprocess-replacements`', ':mod:`subprocess`'], translated: [':mod:`subprocess`', ':mod:`subprocess`', ':mod:`subprocess`', ':ref:`subprocess-replacements`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:31: WARNING: inconsistent term references in translated message. original: [':class:`Path`', ':ref:`concrete path `'], translated: [':class:`Path`', ':class:`Path`', ':ref:`具象パス `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:124: WARNING: inconsistent term references in translated message. original: [':class:`os.PathLike`', ':meth:`~os.PathLike.__fspath__`'], translated: [':class:`os.PathLike`', ':class:`os.PathLike`', ':meth:`~os.PathLike.__fspath__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:667: WARNING: inconsistent term references in translated message. original: [':attr:`name`'], translated: [':attr:`name`', ':attr:`name`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:684: WARNING: inconsistent term references in translated message. original: [':attr:`stem`'], translated: [':attr:`stem`', ':attr:`stem`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:16: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`'], translated: [':mod:`doctest`', ':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:232: WARNING: inconsistent term references in translated message. original: [':func:`testfile`', ':ref:`doctest-basic-api`'], translated: [':func:`testfile`', ':func:`testfile`', ':ref:`doctest-basic-api`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:348: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:646: WARNING: inconsistent term references in translated message. original: [':const:`IGNORE_EXCEPTION_DETAIL`'], translated: [':mod:`doctest`', ':const:`IGNORE_EXCEPTION_DETAIL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:901: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`testfile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1051: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`DocFileSuite`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1165: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`', ':mod:`doctest`', ':mod:`unittest`'], translated: [':mod:`doctest`', ':mod:`unittest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1247: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`DocTest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1303: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Example`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1374: WARNING: inconsistent term references in translated message. original: [':class:`DocTestParser`'], translated: [':class:`DocTest`', ':class:`DocTestParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1402: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`DocTestFinder`', ':class:`DocTest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1451: WARNING: inconsistent term references in translated message. original: [':class:`Example`'], translated: [':class:`Example`', ':class:`Example`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1458: WARNING: inconsistent term references in translated message. original: [':class:`Example`', ':class:`Example`'], translated: [':class:`Example`', ':class:`Example`', ':class:`Example`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1661: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1671: WARNING: inconsistent term references in translated message. original: [':mod:`unittest`', ':func:`DocTestSuite`', ':meth:`debug`', ':class:`unittest.TestCase`'], translated: [':func:`DocTestSuite`', ':mod:`unittest`', ':meth:`debug`', ':meth:`debug`', ':class:`unittest.TestCase`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1813: WARNING: inconsistent term references in translated message. original: [':class:`DebugRunner`', ':class:`DebugRunner`'], translated: [':class:`DebugRunner`', ':class:`DebugRunner`', ':class:`DebugRunner`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1909: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`doctest`', ':mod:`doctest`', ':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/email.header.rst:110: WARNING: inconsistent term references in translated message. original: [], translated: [':exc:`UnicodeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/asyncio-protocol.rst:508: WARNING: inconsistent term references in translated message. original: [':const:`None`'], translated: [':const:`None`', ':const:`None`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/bdb.rst:28: WARNING: inconsistent term references in translated message. original: [':attr:`bpbynumber`', ':attr:`bplist`', ':class:`Breakpoint`'], translated: [':attr:`bpbynumber`', ':attr:`bplist`', ':attr:`bpbynumber`', ':class:`Breakpoint`', ':attr:`bplist`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/codecs.rst:929: WARNING: inconsistent term references in translated message. original: [':term:`text encodings `'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/codecs.rst:1494: WARNING: inconsistent term references in translated message. original: [':mod:`socket`', ':mod:`http.client`', ':mod:`ftplib`', ':mod:`http.client`'], translated: [':mod:`socket`', ':mod:`socket`', ':mod:`http.client`', ':mod:`ftplib`', ':mod:`http.client`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/collections.abc.rst:268: WARNING: inconsistent term references in translated message. original: [':term:`sequences `'], translated: [':term:`シーケンス `', ':term:`シーケンス `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/collections.abc.rst:297: WARNING: inconsistent term references in translated message. original: [':term:`mappings `'], translated: [':term:`マッピング `', ':term:`マッピング `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/concurrent.futures.rst:95: WARNING: inconsistent term references in translated message. original: [':keyword:`with`', ':class:`Executor`', ':meth:`Executor.shutdown`'], translated: [':keyword:`with`', ':keyword:`with`', ':class:`Executor`', ':meth:`Executor.shutdown`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/contextlib.rst:91: WARNING: inconsistent term references in translated message. original: [':func:`contextmanager`', ':class:`ContextDecorator`', ':keyword:`with`', ':func:`contextmanager`'], translated: [':func:`contextmanager`', ':class:`ContextDecorator`', ':func:`contextmanager`', ':keyword:`with`', ':func:`contextmanager`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/curses.rst:153: WARNING: inconsistent term references in translated message. original: [':meth:`~window.noutrefresh`', ':meth:`~window.addstr`', ':meth:`~window.refresh`'], translated: [':meth:`~window.addstr`', ':meth:`~window.noutrefresh`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:66: WARNING: inconsistent term references in translated message. original: [':class:`.datetime`', ':class:`.time`', ':class:`tzinfo`', ':class:`tzinfo`'], translated: [':class:`.datetime`', ':class:`.time`', ':attr:`tzinfo`', ':class:`tzinfo`', ':class:`tzinfo`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:1277: WARNING: inconsistent term references in translated message. original: [':class:`.datetime`', ':exc:`TypeError`'], translated: [':class:`datetime`', ':class:`datetime`', ':exc:`TypeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:1351: WARNING: inconsistent term references in translated message. original: [':class:`timezone`'], translated: [':class:`timezone`', ':class:`datetime`', ':class:`datetime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:2180: WARNING: inconsistent term references in translated message. original: [':meth:`datetime.astimezone`', ':meth:`fromutc`'], translated: [':meth:`datetime.astimezone`', ':meth:`fromutc`', ':class:`datetime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:2590: WARNING: inconsistent term references in translated message. original: [':class:`date`', ':class:`date`'], translated: [':class:`date`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/dbm.rst:24: WARNING: inconsistent term references in translated message. original: [':exc:`dbm.error`', ':exc:`dbm.error`'], translated: [':exc:`dbm.error`', ':exc:`dbm.error`', ':exc:`dbm.error`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:54: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:61: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:73: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:88: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:101: WARNING: inconsistent term references in translated message. original: [':const:`Clamped`', ':const:`InvalidOperation`', ':const:`DivisionByZero`', ':const:`Inexact`', ':const:`Rounded`', ':const:`Subnormal`', ':const:`Overflow`', ':const:`Underflow`', ':const:`FloatOperation`'], translated: [':mod:`decimal`', ':const:`Clamped`', ':const:`InvalidOperation`', ':const:`DivisionByZero`', ':const:`Inexact`', ':const:`Rounded`', ':const:`Subnormal`', ':const:`Overflow`', ':const:`Underflow`', ':const:`FloatOperation`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:127: WARNING: inconsistent term references in translated message. original: [':func:`getcontext`'], translated: [':mod:`decimal`', ':func:`getcontext`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:139: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Decimal`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:182: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:266: WARNING: inconsistent term references in translated message. original: [':func:`setcontext`'], translated: [':func:`Context`', ':func:`setcontext`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:331: WARNING: inconsistent term references in translated message. original: [':class:`Decimal`'], translated: [':class:`Decimal`', ':class:`Decimal`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:389: WARNING: inconsistent term references in translated message. original: [':const:`InvalidOperation`'], translated: [':const:`InvalidOperation`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:1017: WARNING: inconsistent term references in translated message. original: [':class:`Context`'], translated: [':class:`Context`', ':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:1192: WARNING: inconsistent term references in translated message. original: [':class:`Decimal`', ':class:`Decimal`'], translated: [':class:`Decimal`', ':class:`Decimal`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:677: WARNING: inconsistent references in translated message. original: [], translated: ['`Python 2.6 で既にあった変更`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:690: WARNING: inconsistent term references in translated message. original: [':exc:`BaseException`', ':exc:`BaseException`'], translated: [':exc:`BaseException`', ':exc:`BaseException`', ':exc:`BaseException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:900: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`pyporting-howto`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:920: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`pyporting-howto`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.1.rst:68: WARNING: inconsistent term references in translated message. original: [':mod:`configparser`', ':func:`collections.namedtuple`', ':mod:`json`'], translated: [':mod:`configparser`', ':func:`collections.namedtuple`', ':mod:`json`', ':class:`~json.JSONDecoder`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.1.rst:257: WARNING: inconsistent term references in translated message. original: [':mod:`tkinter.ttk`'], translated: [':mod:`tkinter.ttk`', ':mod:`tkinter.ttk`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.1.rst:361: WARNING: inconsistent term references in translated message. original: [':mod:`unittest`'], translated: [':mod:`unittest`', ':class:`TestResult`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:72: WARNING: inconsistent term references in translated message. original: [], translated: [':c:macro:`Py_LIMITED_API`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:521: WARNING: inconsistent term references in translated message. original: [':func:`str`', ':func:`repr`', ':func:`str`', ':func:`repr`'], translated: [':func:`str`', ':func:`repr`', ':func:`str`', ':func:`repr`', ':func:`str`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:594: WARNING: inconsistent term references in translated message. original: [':exc:`ResourceWarning`', ':mod:`warnings`'], translated: [':exc:`ResourceWarning`', ':mod:`warnings`', ':ref:`warning-filter`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:836: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`sortinghowto`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1003: WARNING: inconsistent term references in translated message. original: [':class:`~datetime.timedelta`', ':class:`float`', ':class:`float`', ':class:`int`', ':class:`~datetime.timedelta`'], translated: [':class:`~datetime.timedelta`', ':class:`float`', ':class:`float`', ':class:`int`', ':class:`~datetime.timedelta`', ':class:`~datetime.timedelta`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1270: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`~contextlib.contextmanager`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1630: WARNING: inconsistent term references in translated message. original: [':func:`socket.create_connection`', ':exc:`socket.error`'], translated: [':func:`socket.create_connection`', ':exc:`socket.error`', ':func:`socket.create_connection`', ':class:`socket.socket`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1885: WARNING: inconsistent term references in translated message. original: [':mod:`inspect`', ':func:`~inspect.getgeneratorstate`'], translated: [':mod:`inspect`', ':func:`~inspect.getgeneratorstate`', ':ref:`yield`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:2276: WARNING: inconsistent term references in translated message. original: [':mod:`email`'], translated: [':mod:`email`', ':class:`~email.generator.BytesGenerator`', ':func:`~email.message_from_bytes`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:150: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`buffer-structs`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:155: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`ドキュメント `', ':ref:`バッファ要求のフラグ `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:163: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`format-characters`', ':attr:`~memoryview.format`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:166: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`~memoryview.cast`', ':term:`contiguous`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:173: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`hashable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:182: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`次元 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:184: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`~memoryview.shape`', ':attr:`~memoryview.strides`', ':attr:`~memoryview.suboffsets`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:187: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`~memoryview.cast`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:332: WARNING: inconsistent term references in translated message. original: [':exc:`OSError`', ':exc:`IOError`', ':exc:`EnvironmentError`', ':exc:`WindowsError`', ':exc:`mmap.error`', ':exc:`socket.error`', ':exc:`select.error`', ':exc:`OSError`'], translated: [':exc:`OSError`', ':exc:`IOError`', ':exc:`EnvironmentError`', ':exc:`WindowsError`', ':exc:`mmap.error`', ':exc:`socket.error`', ':exc:`select.error`', ':exc:`OSError`', ':exc:`OSError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:424: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`~generator.send`', ':meth:`~generator.throw`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1081: WARNING: inconsistent term references in translated message. original: [':class:`~datetime.datetime`', ':const:`False`', ':exc:`TypeError`'], translated: [':class:`~datetime.datetime`', ':class:`~datetime.datetime`', ':exc:`TypeError`', ':const:`False`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1127: WARNING: inconsistent term references in translated message. original: [':exc:`~decimal.FloatOperation`'], translated: [':exc:`~decimal.FloatOperation`', ':ref:`シグナル `', ':ref:`decimal-tutorial`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1265: WARNING: inconsistent term references in translated message. original: [':class:`~email.policy.EmailPolicy`'], translated: [':class:`~email.policy.EmailPolicy`', ':data:`email.policy.default`', ':data:`email.policy.SMTP`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1360: WARNING: inconsistent term references in translated message. original: [':func:`~email.utils.parsedate_to_datetime`', ':class:`~datetime.datetime`', ':class:`~datetime.datetime`'], translated: [':func:`~email.utils.parsedate_to_datetime`', ':class:`~datetime.datetime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1374: WARNING: inconsistent term references in translated message. original: [':class:`ftplib.FTP`'], translated: [':class:`ftplib.FTP`', ':meth:`~socket.socket.bind`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1504: WARNING: inconsistent term references in translated message. original: [':func:`~logging.basicConfig`'], translated: [':func:`~logging.basicConfig`', ':term:`イテラブル `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1539: WARNING: inconsistent term references in translated message. original: [':class:`multiprocessing.Connection`'], translated: [':meth:`Connection.send`', ':meth:`Connection.recv`', ':class:`multiprocessing.Connection`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1552: WARNING: inconsistent term references in translated message. original: [':meth:`multiprocessing.pool.Pool.starmap`', ':meth:`~multiprocessing.pool.Pool.starmap_async`', ':func:`itertools.starmap`', ':meth:`multiprocessing.pool.Pool.map`', ':meth:`~multiprocessing.pool.Pool.map_async`'], translated: [':func:`map`', ':func:`itertools.starmap`', ':meth:`multiprocessing.pool.Pool.map`', ':meth:`~multiprocessing.pool.Pool.map_async`', ':meth:`multiprocessing.pool.Pool.starmap`', ':meth:`~multiprocessing.pool.Pool.starmap_async`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1843: WARNING: inconsistent term references in translated message. original: [':func:`signal.signal`', ':func:`signal.siginterrupt`'], translated: [':func:`signal.signal`', ':func:`signal.siginterrupt`', ':exc:`OSError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1862: WARNING: inconsistent term references in translated message. original: [':class:`~smtplib.SMTP`', ':class:`~smtplib.SMTP_SSL`', ':class:`~smtplib.LMTP`'], translated: [':class:`~smtplib.SMTP`', ':class:`~smtplib.SMTP_SSL`', ':class:`~smtplib.LMTP`', ':meth:`~socket.socket.bind`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:2351: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`sys.platform`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:435: WARNING: inconsistent references in translated message. original: [], translated: ['`Python API の変更`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:761: WARNING: inconsistent term references in translated message. original: [':class:`~dis.Bytecode`', ':meth:`~dis.Bytecode.from_traceback`'], translated: [':class:`~dis.Bytecode`', ':meth:`~dis.Bytecode.from_traceback`', ':class:`~dis.Bytecode`', ':func:`~dis.distb`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:781: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`', ':mod:`argparse`', ':ref:`doctest options\n`', ':mod:`unittest`'], translated: [':mod:`doctest`', ':mod:`argparse`', ':ref:`doctest オプション `', ':mod:`unittest`', ':ref:`サポートされる同じオプション `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:794: WARNING: inconsistent term references in translated message. original: [':meth:`~email.message.Message.as_string`', ':mod:`~email.generator`'], translated: [':meth:`~email.message.Message.as_string`', ':class:`~email.message.Message`', ':mod:`~email.generator`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1012: WARNING: inconsistent term references in translated message. original: [':mod:`importlib.util`', ':func:`~importlib.util.decode_source`', ':meth:`.InspectLoader.get_source`'], translated: [':mod:`importlib.util`', ':func:`~importlib.util.decode_source`', ':term:`universal newlines`', ':meth:`.InspectLoader.get_source`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1030: WARNING: inconsistent references in translated message. original: [], translated: ['`Python API の変更`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1041: WARNING: inconsistent term references in translated message. original: [':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`', ':func:`~inspect.signature`', ':func:`functools.partial`', ':func:`~inspect.signature`', ':func:`~inspect.signature`'], translated: [':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`', ':func:`~inspect.signature`', ':func:`functools.partial`', ':func:`~inspect.signature`', ':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`', ':func:`~inspect.signature`', ':func:`~inspect.signature`', ':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1353: WARNING: inconsistent term references in translated message. original: [':class:`~shelve.Shelf`', ':keyword:`with`'], translated: [':class:`~shelve.Shelf`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1440: WARNING: inconsistent term references in translated message. original: [':class:`~ssl.SSLContext`', ':meth:`~ssl.SSLContext.load_verify_locations`'], translated: [':class:`~ssl.SSLContext`', ':meth:`~ssl.SSLContext.load_verify_locations`', ':term:`bytes-like object`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1518: WARNING: inconsistent term references in translated message. original: [':func:`~subprocess.check_output`'], translated: [':func:`~subprocess.check_output`', ':func:`~subprocess.run`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1629: WARNING: inconsistent term references in translated message. original: [':class:`~urllib.request.Request`', ':class:`~urllib.request.Request.method`'], translated: [':class:`~urllib.request.Request`', ':class:`~urllib.request.Request.method`', ':class:`~urllib.request.Request.method`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1732: WARNING: inconsistent term references in translated message. original: [':meth:`~wave.getparams`'], translated: [':meth:`~wave.getparams`', ':class:`~collections.namedtuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:2150: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`site`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:2329: WARNING: inconsistent term references in translated message. original: [':func:`inspect.getfullargspec`', ':func:`inspect.signature`', ':func:`inspect.getfullargspec`'], translated: [':func:`inspect.getfullargspec`', ':func:`inspect.signature`', ':func:`open`', ':func:`inspect.getfullargspec`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:: ERROR: Anonymous hyperlink mismatch: 0 references but 1 targets.
+See "backrefs" attribute for IDs. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.7.rst:84: WARNING: inconsistent references in translated message. original: ['`has been declared`_'], translated: [] [i18n.inconsistent_references]
diff --git a/91/merge/warnings-ko.txt b/91/merge/warnings-ko.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-lint-ar.txt b/91/merge/warnings-lint-ar.txt
new file mode 100644
index 000000000..89f9e11ca
--- /dev/null
+++ b/91/merge/warnings-lint-ar.txt
@@ -0,0 +1 @@
+clones/rebased_translations/Abdur-rahmaanJ/python-docs-ar/tutorial/whatnow.po:145: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
\ No newline at end of file
diff --git a/91/merge/warnings-lint-es.txt b/91/merge/warnings-lint-es.txt
new file mode 100644
index 000000000..5391cab5f
--- /dev/null
+++ b/91/merge/warnings-lint-es.txt
@@ -0,0 +1,2 @@
+clones/rebased_translations/python/python-docs-es/howto/enum.po:27: Unnecessary parentheses in ':func:`repr()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-es/howto/enum.po:391: Unnecessary parentheses in ':func:`auto()`' (unnecessary-parentheses)
\ No newline at end of file
diff --git a/91/merge/warnings-lint-fa.txt b/91/merge/warnings-lint-fa.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-lint-fr.txt b/91/merge/warnings-lint-fr.txt
new file mode 100644
index 000000000..12b82f79a
--- /dev/null
+++ b/91/merge/warnings-lint-fr.txt
@@ -0,0 +1,4 @@
+clones/rebased_translations/python/python-docs-fr/library/html.entities.po:35: Unnecessary parentheses in ':func:`html.unescape()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-fr/library/filecmp.po:74: Unnecessary parentheses in ':func:`os.stat()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-fr/reference/import.po:542: Unnecessary parentheses in ':meth:`~importlib.abc.MetaPathFinder.find_spec()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-fr/reference/import.po:578: Unnecessary parentheses in ':meth:`~importlib.abc.MetaPathFinder.find_spec()`' (unnecessary-parentheses)
\ No newline at end of file
diff --git a/91/merge/warnings-lint-gr.txt b/91/merge/warnings-lint-gr.txt
new file mode 100644
index 000000000..3c78dcff4
--- /dev/null
+++ b/91/merge/warnings-lint-gr.txt
@@ -0,0 +1,53 @@
+clones/rebased_translations/pygreece/python-docs-gr/bugs.po:254: missing backtick before hyperlink reference: 'Σφαλμάτων `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:4964: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:4964: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:8550: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:8550: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:1564: missing space before default role: 'ass`bool`'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:4964: missing space before default role: 'ναι``N``'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:8550: missing space before default role: ', )``==``'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:1564: role missing colon before first backtick ( :class`). (missing-colon-in-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/gzip.po:214: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/platform.po:233: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/collections.abc.po:942: role missing opening tag colon ( meth:`). (missing-space-before-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: inline literal missing (escaped) space after literal: "``'10s'``σ" (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:46: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:227: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:353: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:382: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:779: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:804: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:534: inline literal missing (escaped) space after literal: '``False``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:1580: inline literal missing (escaped) space after literal: "``'-'``∙" (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3100: inline literal missing (escaped) space after literal: '``write(string)``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:534: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:534: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:1580: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:1580: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3100: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3100: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3178: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/using/unix.po:223: missing space before default role: 'ile`{exec_prefix}/bin/python{version}`'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/using/unix.po:184: missing backtick before hyperlink reference: 'κώδικα `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/pygreece/python-docs-gr/using/unix.po:223: role missing colon before first backtick ( :file`). (missing-colon-in-role)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/introduction.po:149: inline literal missing (escaped) space after literal: '``//``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/introduction.po:149: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/introduction.po:149: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:570: inline literal missing (escaped) space after literal: '``.py``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:570: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:570: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:1152: role missing (escaped) space after role: ':mod:`!sound.effects`ό' (missing-space-after-role)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/classes.po:1358: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/classes.po:1392: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/classes.po:1392: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/interpreter.po:157: inline literal missing (escaped) space after literal: '``sys.argv[0]``ο' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/interpreter.po:157: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/interpreter.po:157: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/controlflow.po:75: role missing opening tag colon ( keyword:`). (missing-space-before-role)
+clones/rebased_translations/pygreece/python-docs-gr/faq/installed.po:123: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/faq/extending.po:115: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/faq/extending.po:115: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/faq/extending.po:115: missing space before default role: 'στο``Python/pythonrun.c``'. (missing-space-before-default-role)
\ No newline at end of file
diff --git a/91/merge/warnings-lint-hi-in.txt b/91/merge/warnings-lint-hi-in.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-lint-id.txt b/91/merge/warnings-lint-id.txt
new file mode 100644
index 000000000..84185179b
--- /dev/null
+++ b/91/merge/warnings-lint-id.txt
@@ -0,0 +1,34 @@
+clones/rebased_translations/python/python-docs-id/library/xmlrpc.client.po:621: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/distribution.po:29: missing underscore after closing backtick in hyperlink (missing-underscore-after-hyperlink)
+clones/rebased_translations/python/python-docs-id/library/binary.po:29: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/csv.po:514: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/calendar.po:35: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/calendar.po:373: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/json.po:212: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/functions.po:609: role missing opening tag colon ( ref:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/library/functions.po:2815: role missing opening tag colon ( class:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/library/functions.po:3466: role missing opening tag colon ( pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/using/editors.po:29: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/tutorial/stdlib.po:467: role missing opening tag colon ( mod:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/tutorial/stdlib2.po:302: missing space before role ( modul:mod:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/tutorial/whatnow.po:156: role missing (escaped) space after role: ':ref:`Pertanyaan yang Sering Diajukan `(' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-id/tutorial/classes.po:1142: inline literal missing (escaped) space after literal: '``issubclass(bool, int)``a' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-id/tutorial/classes.po:1142: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/classes.po:1142: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/interpreter.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/interpreter.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/interpreter.po:153: missing space before default role: " ke``'-c'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-id/tutorial/controlflow.po:1444: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/controlflow.po:1444: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/c-api/cell.po:31: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/c-api/cell.po:104: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/c-api/apiabiversion.po:187: missing space before role ( dalam:source:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/c-api/iterator.po:25: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/c-api/abstract.po:41: role missing opening tag colon ( func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/c-api/abstract.po:41: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/c-api/abstract.po:41: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/faq/general.po:569: missing space before < in hyperlink (missing-space-in-hyperlink)
+clones/rebased_translations/python/python-docs-id/faq/general.po:231: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/faq/general.po:231: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/faq/general.po:231: missing space before default role: 'kas``Misc/HISTORY``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-id/faq/windows.po:37: trailing whitespace (trailing-whitespace)
\ No newline at end of file
diff --git a/91/merge/warnings-lint-it.txt b/91/merge/warnings-lint-it.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-lint-ja.txt b/91/merge/warnings-lint-ja.txt
new file mode 100644
index 000000000..3f06d6183
--- /dev/null
+++ b/91/merge/warnings-lint-ja.txt
@@ -0,0 +1,370 @@
+clones/rebased_translations/python/python-docs-ja/glossary.po:864: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/glossary.po:2218: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.6.po:3628: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.6.po:3564: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.7.po:4735: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.9.po:565: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.7.po:3793: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.5.po:457: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.5.po:1060: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.5.po:4357: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.4.po:1923: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:3597: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:240: Bad dedent in block (bad-dedent)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:469: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:633: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:659: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:694: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:807: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:892: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:1107: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.10.po:738: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.10.po:738: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.10.po:738: missing space before default role: 'ラルを``|``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.11.po:4362: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.3.po:1530: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.1.po:991: missing backtick before hyperlink reference: 'Machine `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.1.po:300: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.4.po:38: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.6.po:285: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.sax.handler.po:429: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.etree.elementtree.po:1829: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8079: missing space before default role: 'の数は``GenericAlias``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:2115: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:3246: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:7629: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8538: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:9103: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio.po:182: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:162: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:204: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:162: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:204: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/random.po:691: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:171: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:253: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:278: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:358: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-protocol.po:858: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/types.po:262: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/types.po:308: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.dom.minidom.po:305: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xmlrpc.client.po:81: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-dev.po:176: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-dev.po:222: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-dev.po:260: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/collections.po:1828: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xmlrpc.server.po:79: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:989: role missing opening tag colon ( const:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1409: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1437: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1464: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1491: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1518: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1536: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1950: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:2016: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:2513: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:2575: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:3141: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/select.po:509: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/gc.po:120: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/gc.po:233: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/gc.po:261: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/logging.po:1155: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/logging.po:2530: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:138: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:138: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:138: missing space before default role: 'を表す``12345678-1234-5678-1234-567812345678``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:85: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:215: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pdb.po:384: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:135: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:85: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:135: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:176: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/re.po:63: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/re.po:1229: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/re.po:2509: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:845: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:845: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:845: missing space before default role: 'ルトは``()``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:360: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/compileall.po:172: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/compileall.po:172: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/compileall.po:172: missing space before default role: '成した``.pyc``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:343: inline literal missing (escaped) space after literal: '``None``以' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:4206: inline literal missing (escaped) space after literal: '``addModuleCleanup``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:343: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:343: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:4206: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:4206: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:1353: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:188: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:188: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:209: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:209: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:228: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:228: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:188: missing space before default role: ' と``defects``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:209: missing space before default role: 'ような``init``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:228: missing space before default role: ' の``init``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/mailbox.po:893: role missing opening tag colon ( meth:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/mailbox.po:1309: role missing opening tag colon ( meth:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/codecs.po:1502: role missing opening tag colon ( term:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/signal.po:574: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ftplib.po:229: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ftplib.po:273: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sched.po:191: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/typing.po:1885: role missing opening tag colon ( ref:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:339: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:359: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:1334: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2342: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2538: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2571: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2579: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functools.po:806: Bad dedent in block (bad-dedent)
+clones/rebased_translations/python/python-docs-ja/library/msvcrt.po:86: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/subprocess.po:350: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/subprocess.po:350: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/subprocess.po:350: missing space before default role: 'わりに``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/tempfile.po:145: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/tempfile.po:341: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/smtplib.po:416: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/__main__.po:70: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/__main__.po:70: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/__main__.po:70: missing space before default role: '拡張子``.py``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3128: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3210: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3247: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3320: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3334: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3403: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3418: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3515: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2517: inline literal missing (escaped) space after literal: '``chdir``の' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6970: inline literal missing (escaped) space after literal: '``WIFEXITED(status)``が' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6980: inline literal missing (escaped) space after literal: '``WIFSIGNALED(status)``が' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2517: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2517: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6970: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6970: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6980: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6980: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:489: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:855: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:863: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1149: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1396: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1429: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1540: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1607: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1759: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2733: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2812: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3047: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3103: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3295: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3533: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3603: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3664: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3712: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4670: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4700: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4775: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4946: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5035: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5463: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5489: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5505: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5533: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5628: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5732: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5894: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5962: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6003: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6015: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6257: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6437: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6549: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6619: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-policy.po:154: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/imaplib.po:531: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/imaplib.po:632: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pkgutil.po:121: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/email.header.po:299: inline literal missing (escaped) space after literal: '``\\r\\n``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/email.header.po:299: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.header.po:299: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/io.po:1702: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/io.po:1702: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/io.po:1702: missing space before default role: "る前に``'\\n'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/io.po:386: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/token.po:36: role missing opening tag colon ( file:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:163: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:574: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:2638: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:2699: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:2925: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pty.po:144: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/configparser.po:1607: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-task.po:52: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.dom.pulldom.po:220: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/base64.po:212: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/base64.po:323: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/base64.po:364: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:2365: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:2365: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:2365: missing space before default role: '引数に``follow_symlinks=False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:199: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:1499: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:1912: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:1943: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/argparse.po:963: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/enum.po:507: Bad dedent in block (bad-dedent)
+clones/rebased_translations/python/python-docs-ja/library/glob.po:267: missing space before role ( および:file:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/glob.po:140: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/glob.po:148: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/statistics.po:464: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/statistics.po:464: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/statistics.po:464: missing space before default role: '平均は``3/(1/a + 1/b + 1/c)``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/ipaddress.po:749: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/ipaddress.po:749: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/ipaddress.po:749: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/ipaddress.po:749: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:532: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:540: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:1622: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:1687: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/turtle.po:3786: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:958: inline literal missing (escaped) space after literal: '``tearDown``メ' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: inline literal missing (escaped) space after literal: '``call_args_list``と' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: inline literal missing (escaped) space after literal: '``call_args_list``の' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1124: inline literal missing (escaped) space after literal: '``frob``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1202: inline literal missing (escaped) space after literal: '``side_effect``関' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:958: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:958: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1094: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1094: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1124: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1124: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1202: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1202: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1094: missing space before default role: '。 や``call_args_list``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:905: missing backtick before hyperlink reference: 'ジェネレータ式やジェネレータのより`高度な使い方 `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/python/python-docs-ja/library/math.po:1037: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/zipapp.po:242: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:127: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:183: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:266: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:456: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:538: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:626: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:697: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:1171: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:123: inline literal missing (escaped) space after literal: '``activeCount``は' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:139: inline literal missing (escaped) space after literal: '``currentThread``は' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:1479: inline literal missing (escaped) space after literal: '``notifyAll``は' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:123: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:123: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:139: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:139: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:566: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:566: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:1479: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:1479: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:566: missing space before default role: 't"は``target.__name__``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/ast.po:787: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ast.po:956: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ast.po:3343: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/json.po:338: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/json.po:644: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/marshal.po:122: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/marshal.po:144: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/marshal.po:190: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:106: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:161: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:169: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:263: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:289: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:364: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:386: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:471: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:515: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:547: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:582: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:647: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:704: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:775: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:795: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:811: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1043: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1043: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1043: missing space before default role: " と``')'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1624: Unnecessary parentheses in ':meth:`~object.__float__()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1876: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:2879: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:3533: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:210: inline literal missing (escaped) space after literal: '``1``ま' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:823: inline literal missing (escaped) space after literal: '``True``に' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:210: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:210: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:823: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:823: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/pickle.po:869: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pickle.po:1712: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:166: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:251: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:296: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:351: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/reference/lexical_analysis.po:691: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/reference/expressions.po:648: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/reference/datamodel.po:1047: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/datastructures.po:906: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/datastructures.po:1414: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:424: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:424: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:1186: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:1186: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:424: missing space before default role: '数個の``\\``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:36: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:424: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/floatingpoint.po:264: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/interpreter.po:167: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/controlflow.po:1454: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/howto/descriptor.po:993: missing space before role ( の中の:c:func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:1787: missing space before role ( や:class:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:410: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:410: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:543: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:543: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:995: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:995: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:410: missing space before default role: ' と``B``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:543: missing space before default role: ' と``Weekday.WEEKEND``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:995: missing space before default role: 'はなく``1``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/howto/regex.po:1316: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/howto/curses.po:425: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/installing/index.po:261: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init_config.po:29: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/file.po:179: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/call.po:469: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/call.po:493: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/call.po:503: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/sequence.po:270: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init.po:747: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init.po:1909: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init.po:1925: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/contextvars.po:217: inline literal missing (escaped) space after literal: '``NULL``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/c-api/contextvars.po:217: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/c-api/contextvars.po:217: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:3409: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:3409: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:3409: missing space before default role: 'または``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:859: trailing whitespace (trailing-whitespace)
\ No newline at end of file
diff --git a/91/merge/warnings-lint-ko.txt b/91/merge/warnings-lint-ko.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-lint-pl.txt b/91/merge/warnings-lint-pl.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-lint-pt-br.txt b/91/merge/warnings-lint-pt-br.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-lint-ro.txt b/91/merge/warnings-lint-ro.txt
new file mode 100644
index 000000000..d1d9c7f7b
--- /dev/null
+++ b/91/merge/warnings-lint-ro.txt
@@ -0,0 +1,2 @@
+clones/rebased_translations/octaG-M/python-docs-ro/about.po:27: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/octaG-M/python-docs-ro/tutorial/introduction.po:508: trailing whitespace (trailing-whitespace)
\ No newline at end of file
diff --git a/91/merge/warnings-lint-ru.txt b/91/merge/warnings-lint-ru.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-lint-tr.txt b/91/merge/warnings-lint-tr.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-lint-uk.txt b/91/merge/warnings-lint-uk.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-lint-zh-cn.txt b/91/merge/warnings-lint-zh-cn.txt
new file mode 100644
index 000000000..1bfccb9f4
--- /dev/null
+++ b/91/merge/warnings-lint-zh-cn.txt
@@ -0,0 +1,307 @@
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.2.po:1532: inline literal missing (escaped) space after literal: '``/``操' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.2.po:1532: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.2.po:1532: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:3989: missing space before role ( 直接解码:attr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:2218: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:2218: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:2218: missing space before default role: '是调用``implicit0``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5676: missing space before role ( 在:gh:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:1470: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:1470: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5328: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5328: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:1470: missing space before default role: '中插入``..``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5328: missing space before default role: '重载了``PyType_From*``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5158: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5676: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: inline literal missing (escaped) space after literal: '``*``来' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:783: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:783: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:783: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:783: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:605: missing space before default role: '数列表``*args``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:783: missing space before default role: '拼写为``.... . .``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/changelog.po:1203: missing backtick before hyperlink reference: '节 `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.7.po:350: missing space before role ( 开关现在会自动启用:option:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.7.po:600: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.9.po:2608: missing space before role ( d:issue:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1265: inline literal missing (escaped) space after literal: '``return dict.setdefault(key, [])``语' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: inline literal missing (escaped) space after literal: '``
``写' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1908: missing space before role ( 类如:class:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1265: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1265: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:2057: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:2057: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: missing space before default role: '单地将````'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:2057: missing space before default role: '以支持``https://``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.7.po:1552: Unnecessary parentheses in ':meth:`datetime.isoformat()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.5.po:4756: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.5.po:4756: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.5.po:4756: missing space before default role: '移除了``.pyo``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2073: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2073: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2702: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2702: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2073: missing space before default role: ' (或``.pyo``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2702: missing space before default role: ' 和``capath``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.8.po:4609: missing space before role ( 的规范更新了:rfc:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.10.po:3485: missing space before role ( 和:data:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.11.po:931: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.11.po:931: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.11.po:931: missing space before default role: '须使用``1``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.3.po:1364: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:3534: missing space before role (弃用:program:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:5603: missing space before role ( 弃用的:c:func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6278: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6296: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6324: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6346: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6367: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6378: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:3534: role missing (escaped) space after role: ':option:`!--cgi`标' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6278: role missing (escaped) space after role: ':func:`!locals`得' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: inline literal missing (escaped) space after literal: '``D``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: inline literal missing (escaped) space after literal: '``(key, value)``键' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1320: role missing (escaped) space after role: ':func:`sys._getframe`返' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3780: missing space before role (得益于:pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3962: missing space before role (由于:pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:154: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:154: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:386: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:386: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3962: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3962: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3962: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3962: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4214: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4214: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:154: missing space before default role: '流行的``virtualenv``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:386: missing space before default role: '(即从``U+0000``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3962: missing space before default role: '( 或``utf-16-be``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3962: missing space before default role: '( 或``utf-32-be``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4214: missing space before default role: "模块的``'u'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/stdtypes.po:636: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/stdtypes.po:636: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/stdtypes.po:636: missing space before default role: ' 为``0``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/stdtypes.po:2869: missing backtick before hyperlink reference: '中描述 `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/python/python-docs-zh-cn/library/shlex.po:196: role missing (escaped) space after role: ':attr:`eof`(' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/collections.po:1559: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:312: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:312: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:323: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:323: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:312: missing space before default role: ' 和``stderr``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:323: missing space before default role: ',写入``stdout``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/select.po:360: missing space before role ( 这是与:c:func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/gc.po:356: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/uuid.po:513: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/tokenize.po:341: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/mailbox.po:1490: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/mailbox.po:1490: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/mailbox.po:1490: missing space before default role: 's()`` 中的 ``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:774: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:774: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:774: missing space before default role: '于使用``tuple[Any, ...]``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:3017: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:3249: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:6213: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:4111: role missing (escaped) space after role: ':class:`ParamSpec`的' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: inline literal missing (escaped) space after literal: '``oparg=0``时' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: inline literal missing (escaped) space after literal: '``oparg``将' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: inline literal missing (escaped) space after literal: '``cmp_op[opname >> 5]``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: inline literal missing (escaped) space after literal: '``opname``的' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1919: inline literal missing (escaped) space after literal: '``argc``指' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2038: inline literal missing (escaped) space after literal: '``STACK[-1]``的' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2115: inline literal missing (escaped) space after literal: '``oparg``指' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:549: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:549: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:674: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:674: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:683: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:683: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:710: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:710: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:714: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:714: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:861: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:861: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1611: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1611: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1919: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1919: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2038: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2038: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2115: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2115: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:549: missing space before default role: '可以是``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: missing space before default role: '或传入``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:581: missing space before default role: '会返回``oparg=0``时的结果 。当``opcode``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: missing space before default role: '始,为``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:670: missing space before default role: '否则为``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:674: missing space before default role: '否则为``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:683: missing space before default role: '否则为``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:710: missing space before default role: '了字段``starts_line``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:714: missing space before default role: '了字段``start_offset``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:861: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1611: missing space before default role: '全局的``super``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1640: missing space before default role: '可以在``cmp_op[opname >> 5]``中找到。如果``opname``的第五低位是1(),则结果将被强制转换为``bool``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2364: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2380: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:3303: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:3303: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:6158: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:6158: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:3303: missing space before default role: 'e*值``0o700``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:6158: missing space before default role: '在调用``fork()``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/importlib.metadata.po:1020: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/importlib.metadata.po:1020: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/importlib.metadata.po:1020: missing space before default role: ' 或``Context(name=None)``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/doctest.po:1282: role missing (escaped) space after role: ':file:`ndiff.py`工' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/configparser.po:1578: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: missing space before default role: '则返回``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1072: missing space before default role: '则返回``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: missing space before default role: '则返回``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1125: missing space before default role: '则返回``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:280: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:280: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:288: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:288: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:280: missing space before default role: ',则是``sys.argv[0]``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:288: missing space before default role: ',后接``sys.argv[0]``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: missing space before default role: '员属于``cls``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: missing space before default role: '则返回``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:1251: Unnecessary parentheses in ':func:`repr()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-zh-cn/library/wsgiref.po:1404: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/sqlite3.po:1108: missing space before role ( 如果:attr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/datetime.po:3687: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/datetime.po:3687: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/datetime.po:3687: missing space before default role: ' 例如``"GMT"``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/math.po:534: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/ast.po:1812: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/functions.po:2332: Unnecessary parentheses in ':func:`locale.getencoding()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-zh-cn/reference/grammar.po:139: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/grammar.po:700: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/grammar.po:1367: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/grammar.po:1373: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/grammar.po:1497: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: inline literal missing (escaped) space after literal: '``import __spam``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: inline literal missing (escaped) space after literal: '``import __foo.bar``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: inline literal missing (escaped) space after literal: '``__foo``不' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: inline literal missing (escaped) space after literal: '``from spam import __f``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:187: missing space before default role: ',例如``import __spam``中的``__spam``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:197: missing space before default role: ',比如``from spam import __f``中的``__f``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/reference/compound_stmts.po:2673: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/reference/datamodel.po:4911: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/datamodel.po:4911: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/functional.po:925: role missing (escaped) space after role: ':meth:`~iterator.__next__`方' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/functional.po:1039: role missing (escaped) space after role: ':meth:`~generator.__next__`方' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/annotations.po:95: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/annotations.po:95: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/annotations.po:95: missing space before default role: '动访问``__annotations__``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/logging-cookbook.po:4292: missing space before < in hyperlink (missing-space-in-hyperlink)
+clones/rebased_translations/python/python-docs-zh-cn/howto/logging-cookbook.po:4292: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1727: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1727: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1727: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: missing space before default role: ', 和``+a``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1733: missing space before default role: '们使用``type``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: missing space before default role: '数会将``-a``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1742: missing space before default role: '` 和``+a``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/isolating-extensions.po:682: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/isolating-extensions.po:682: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/isolating-extensions.po:682: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/free-threading-python.po:118: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/free-threading-python.po:118: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/free-threading-python.po:118: missing space before default role: '设置为``1``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/arg.po:711: missing space before role (将Python浮点数转换成C的:c:expr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/arg.po:719: missing space before role (将Python浮点数转换成C的:c:expr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/memory.po:1217: role missing (escaped) space after role: ':envvar:`PYTHONMALLOC`(' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:153: inline literal missing (escaped) space after literal: '``NULL``错' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:226: missing space before role (除非使用:pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: inline literal missing (escaped) space after literal: '``-1``(' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: inline literal missing (escaped) space after literal: '``*result``设' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: inline literal missing (escaped) space after literal: '``[PyTime_MIN; PyTime_MAX]``范' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:189: missing space before role ( C:c:expr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: missing space before default role: '数返回``0``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:178: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:455: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:455: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:2254: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:2254: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:455: missing space before default role: '编码和``replace``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:2254: missing space before default role: '* 为``NULL``'. (missing-space-before-default-role)
\ No newline at end of file
diff --git a/91/merge/warnings-lint-zh-tw.txt b/91/merge/warnings-lint-zh-tw.txt
new file mode 100644
index 000000000..0fb489ae7
--- /dev/null
+++ b/91/merge/warnings-lint-zh-tw.txt
@@ -0,0 +1,6 @@
+clones/rebased_translations/python/python-docs-zh-tw/whatsnew/3.13.po:2255: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-tw/whatsnew/3.13.po:2255: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-tw/whatsnew/3.13.po:2255: missing space before default role: ',在於``GET``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-tw/whatsnew/3.13.po:470: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-tw/library/importlib.po:37: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-tw/extending/extending.po:764: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
\ No newline at end of file
diff --git a/91/merge/warnings-pl.txt b/91/merge/warnings-pl.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-pt-br.txt b/91/merge/warnings-pt-br.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-ro.txt b/91/merge/warnings-ro.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-ru.txt b/91/merge/warnings-ru.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-tr.txt b/91/merge/warnings-tr.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-uk.txt b/91/merge/warnings-uk.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/91/merge/warnings-zh-cn.txt b/91/merge/warnings-zh-cn.txt
new file mode 100644
index 000000000..907356652
--- /dev/null
+++ b/91/merge/warnings-zh-cn.txt
@@ -0,0 +1,6 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/changelog.rst:555::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/changelog.rst:555::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/init.rst:964: WARNING: Lexing literal_block '将线程状态保存到一个局部变量中。\n释放全局解释器锁。\n... 执行某些阻塞式的 I/O 操作 ...\n重新获取全局解释器锁。\n从局部变量中恢复线程状态。' as "c" resulted in an error at token: '。'. Retrying in relaxed mode. [misc.highlighting_failure]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:446: WARNING: Lexing literal_block 'CREATE TABLE test(\n i integer primary key, ! 将查找名为 "integer" 的转换器\n p point, ! 将查找名为 "point" 的转换器\n n number(10) ! 将查找名为 "number" 的转换器\n )' as "sql" resulted in an error at token: '将'. Retrying in relaxed mode. [misc.highlighting_failure]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:471: WARNING: Lexing literal_block 'SELECT MAX(p) as "p [point]" FROM test; ! 将查找转换器 "point"' as "sql" resulted in an error at token: '将'. Retrying in relaxed mode. [misc.highlighting_failure]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/urllib.parse.rst:304: WARNING: Lexing literal_block '(寻址方案, 网络位置, 路径, 查询, 片段标识符)。' as "python3" resulted in an error at token: '('. Retrying in relaxed mode. [misc.highlighting_failure]
diff --git a/91/merge/warnings-zh-tw.txt b/91/merge/warnings-zh-tw.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/LICENSE b/LICENSE
deleted file mode 100644
index 0e259d42c..000000000
--- a/LICENSE
+++ /dev/null
@@ -1,121 +0,0 @@
-Creative Commons Legal Code
-
-CC0 1.0 Universal
-
- CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
- LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
- ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
- INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
- REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
- PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
- THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
- HEREUNDER.
-
-Statement of Purpose
-
-The laws of most jurisdictions throughout the world automatically confer
-exclusive Copyright and Related Rights (defined below) upon the creator
-and subsequent owner(s) (each and all, an "owner") of an original work of
-authorship and/or a database (each, a "Work").
-
-Certain owners wish to permanently relinquish those rights to a Work for
-the purpose of contributing to a commons of creative, cultural and
-scientific works ("Commons") that the public can reliably and without fear
-of later claims of infringement build upon, modify, incorporate in other
-works, reuse and redistribute as freely as possible in any form whatsoever
-and for any purposes, including without limitation commercial purposes.
-These owners may contribute to the Commons to promote the ideal of a free
-culture and the further production of creative, cultural and scientific
-works, or to gain reputation or greater distribution for their Work in
-part through the use and efforts of others.
-
-For these and/or other purposes and motivations, and without any
-expectation of additional consideration or compensation, the person
-associating CC0 with a Work (the "Affirmer"), to the extent that he or she
-is an owner of Copyright and Related Rights in the Work, voluntarily
-elects to apply CC0 to the Work and publicly distribute the Work under its
-terms, with knowledge of his or her Copyright and Related Rights in the
-Work and the meaning and intended legal effect of CC0 on those rights.
-
-1. Copyright and Related Rights. A Work made available under CC0 may be
-protected by copyright and related or neighboring rights ("Copyright and
-Related Rights"). Copyright and Related Rights include, but are not
-limited to, the following:
-
- i. the right to reproduce, adapt, distribute, perform, display,
- communicate, and translate a Work;
- ii. moral rights retained by the original author(s) and/or performer(s);
-iii. publicity and privacy rights pertaining to a person's image or
- likeness depicted in a Work;
- iv. rights protecting against unfair competition in regards to a Work,
- subject to the limitations in paragraph 4(a), below;
- v. rights protecting the extraction, dissemination, use and reuse of data
- in a Work;
- vi. database rights (such as those arising under Directive 96/9/EC of the
- European Parliament and of the Council of 11 March 1996 on the legal
- protection of databases, and under any national implementation
- thereof, including any amended or successor version of such
- directive); and
-vii. other similar, equivalent or corresponding rights throughout the
- world based on applicable law or treaty, and any national
- implementations thereof.
-
-2. Waiver. To the greatest extent permitted by, but not in contravention
-of, applicable law, Affirmer hereby overtly, fully, permanently,
-irrevocably and unconditionally waives, abandons, and surrenders all of
-Affirmer's Copyright and Related Rights and associated claims and causes
-of action, whether now known or unknown (including existing as well as
-future claims and causes of action), in the Work (i) in all territories
-worldwide, (ii) for the maximum duration provided by applicable law or
-treaty (including future time extensions), (iii) in any current or future
-medium and for any number of copies, and (iv) for any purpose whatsoever,
-including without limitation commercial, advertising or promotional
-purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
-member of the public at large and to the detriment of Affirmer's heirs and
-successors, fully intending that such Waiver shall not be subject to
-revocation, rescission, cancellation, termination, or any other legal or
-equitable action to disrupt the quiet enjoyment of the Work by the public
-as contemplated by Affirmer's express Statement of Purpose.
-
-3. Public License Fallback. Should any part of the Waiver for any reason
-be judged legally invalid or ineffective under applicable law, then the
-Waiver shall be preserved to the maximum extent permitted taking into
-account Affirmer's express Statement of Purpose. In addition, to the
-extent the Waiver is so judged Affirmer hereby grants to each affected
-person a royalty-free, non transferable, non sublicensable, non exclusive,
-irrevocable and unconditional license to exercise Affirmer's Copyright and
-Related Rights in the Work (i) in all territories worldwide, (ii) for the
-maximum duration provided by applicable law or treaty (including future
-time extensions), (iii) in any current or future medium and for any number
-of copies, and (iv) for any purpose whatsoever, including without
-limitation commercial, advertising or promotional purposes (the
-"License"). The License shall be deemed effective as of the date CC0 was
-applied by Affirmer to the Work. Should any part of the License for any
-reason be judged legally invalid or ineffective under applicable law, such
-partial invalidity or ineffectiveness shall not invalidate the remainder
-of the License, and in such case Affirmer hereby affirms that he or she
-will not (i) exercise any of his or her remaining Copyright and Related
-Rights in the Work or (ii) assert any associated claims and causes of
-action with respect to the Work, in either case contrary to Affirmer's
-express Statement of Purpose.
-
-4. Limitations and Disclaimers.
-
- a. No trademark or patent rights held by Affirmer are waived, abandoned,
- surrendered, licensed or otherwise affected by this document.
- b. Affirmer offers the Work as-is and makes no representations or
- warranties of any kind concerning the Work, express, implied,
- statutory or otherwise, including without limitation warranties of
- title, merchantability, fitness for a particular purpose, non
- infringement, or the absence of latent or other defects, accuracy, or
- the present or absence of errors, whether or not discoverable, all to
- the greatest extent permissible under applicable law.
- c. Affirmer disclaims responsibility for clearing rights of other persons
- that may apply to the Work or any use thereof, including without
- limitation any person's Copyright and Related Rights in the Work.
- Further, Affirmer disclaims responsibility for obtaining any necessary
- consents, permissions or other rights required for any use of the
- Work.
- d. Affirmer understands and acknowledges that Creative Commons is not a
- party to this document and has no duty or obligation with respect to
- this CC0 or use of the Work.
diff --git a/build_status.py b/build_status.py
deleted file mode 100644
index fdc2323a4..000000000
--- a/build_status.py
+++ /dev/null
@@ -1,36 +0,0 @@
-"""
-Fetch build status of languages in the https://docs.python.org.
-
-Yield a tuple of language code and a Boolean indicating
-whether it is in the language switcher.
-"""
-
-import tomllib
-from collections.abc import Iterator
-
-from urllib3 import PoolManager
-
-
-def get_languages(http: PoolManager) -> Iterator[tuple[str, bool]]:
- data = http.request(
- 'GET',
- 'https://raw.githubusercontent.com/python/docsbuild-scripts/refs/heads/main/config.toml',
- ).data
- config = tomllib.loads(data.decode())
- for code, language in config['languages'].items():
- language_code = code.lower().replace('_', '-')
- in_switcher = language.get('in_prod', config['defaults']['in_prod'])
- yield language_code, in_switcher
-
-
-def main() -> None:
- languages = {
- language: in_switcher for language, in_switcher in get_languages(PoolManager())
- }
- print(languages)
- for code in ('en', 'pl', 'ar', 'zh-cn', 'id'):
- print(f'{code}: {code in languages} {languages.get(code)}')
-
-
-if __name__ == '__main__':
- main()
diff --git a/build_warnings.py b/build_warnings.py
deleted file mode 100644
index d26a518e4..000000000
--- a/build_warnings.py
+++ /dev/null
@@ -1,37 +0,0 @@
-from pathlib import Path
-from re import findall
-from shutil import copyfile
-
-import sphinx.cmd.build
-
-
-def number(clones_dir: str, repo: str, language_code: str) -> int:
- language_part, *locale = language_code.split('-')
- if locale:
- lang_with_locale = f'{language_part}_{locale[0].upper()}'
- else:
- lang_with_locale = language_part
- locale_dir = Path(clones_dir, f'cpython/Doc/locales/{lang_with_locale}/LC_MESSAGES')
- locale_dir.mkdir(parents=True, exist_ok=True)
- for po_file in (repo_dir := Path(clones_dir, 'translations', repo)).rglob('*.po'):
- relative_path = po_file.relative_to(repo_dir)
- target_file = locale_dir / relative_path
- target_file.parent.mkdir(parents=True, exist_ok=True)
- copyfile(po_file, target_file)
- sphinx.cmd.build.main(
- (
- '--builder',
- 'html',
- '--jobs',
- 'auto',
- '--define',
- f'language={lang_with_locale}',
- '--verbose',
- '--warning-file',
- warning_file := f'{clones_dir}/warnings-{language_code}.txt',
- f'{clones_dir}/cpython/Doc', # sourcedir
- f'./sphinxbuild/{language_code}', # outputdir
- )
- )
- copyfile(warning_file, f'warnings-{language_code}.txt')
- return len(findall('ERROR|WARNING', Path(warning_file).read_text()))
diff --git a/completion.py b/completion.py
deleted file mode 100644
index a420b498c..000000000
--- a/completion.py
+++ /dev/null
@@ -1,84 +0,0 @@
-import json
-from dataclasses import dataclass
-from functools import cache
-from pathlib import Path
-from tempfile import TemporaryDirectory
-from typing import Literal
-
-import git
-from potodo import potodo
-
-import translators
-
-
-@cache
-def branches_from_devguide(devguide_dir: Path) -> list[str]:
- p = devguide_dir.joinpath('include/release-cycle.json')
- data = json.loads(p.read_text())
- return [
- branch for branch in data if data[branch]['status'] in ('bugfix', 'security')
- ]
-
-
-def get_completion(
- clones_dir: str, repo: str
-) -> tuple[float, 'TranslatorsData', str, float]:
- clone_path = Path(clones_dir, 'translations', repo)
- for branch in branches_from_devguide(Path(clones_dir, 'devguide')) + [
- 'master',
- 'main',
- ]:
- try:
- clone_repo = git.Repo.clone_from(
- f'https://github.com/{repo}.git', clone_path, branch=branch
- )
- except git.GitCommandError:
- print(f'failed to clone {repo} {branch}')
- translators_data = TranslatorsData(0, False)
- branch = ''
- continue
- else:
- translators_number = translators.get_number(clone_path)
- translators_link = translators.get_link(clone_path, repo, branch)
- translators_data = TranslatorsData(translators_number, translators_link)
- break
- path_for_merge = Path(clones_dir, 'rebased_translations', repo)
- completion = potodo.merge_and_scan_path(
- clone_path,
- pot_path=Path(clones_dir, 'cpython/Doc/build/gettext'),
- merge_path=path_for_merge,
- hide_reserved=False,
- api_url='',
- ).completion
-
- if completion:
- # Fetch commit from before 30 days ago and checkout
- try:
- commit = next(
- clone_repo.iter_commits('HEAD', max_count=1, before='30 days ago')
- )
- except StopIteration:
- month_ago_completion = 0.0
- else:
- clone_repo.git.checkout(commit.hexsha)
- with TemporaryDirectory() as tmpdir:
- month_ago_completion = potodo.merge_and_scan_path(
- clone_path,
- pot_path=Path(clones_dir, 'cpython/Doc/build/gettext'),
- merge_path=Path(tmpdir),
- hide_reserved=False,
- api_url='',
- ).completion
- clone_repo.git.checkout(branch) # restore the original state
- else:
- month_ago_completion = 0.0
-
- change = completion - month_ago_completion
-
- return completion, translators_data, branch, change
-
-
-@dataclass(frozen=True)
-class TranslatorsData:
- number: int
- link: str | Literal[False]
diff --git a/contribute.py b/contribute.py
deleted file mode 100644
index cc6b6f260..000000000
--- a/contribute.py
+++ /dev/null
@@ -1,33 +0,0 @@
-pulling_from_transifex = ('zh-cn', 'pt-br', 'ja', 'uk', 'pl')
-
-custom_contributing_links = {
- 'es': 'https://python-docs-es.readthedocs.io/page/CONTRIBUTING.html',
- 'ko': 'https://www.flowdas.com/pages/python-docs-ko.html',
- 'zh-tw': 'https://github.com/python/python-docs-zh-tw/blob/3.13/README.rst#%E5%8F%83%E8%88%87%E7%BF%BB%E8%AD%AF',
- 'fr': 'https://git.afpy.org/AFPy/python-docs-fr/src/branch/3.13/CONTRIBUTING.rst',
- 'id': 'https://github.com/python/python-docs-id/blob/master/README.md#berkontribusi-untuk-menerjemahkan',
- 'tr': 'https://github.com/python/python-docs-tr/blob/3.12/README.md#%C3%A7eviriye-katk%C4%B1da-bulunmak',
- 'gr': 'https://github.com/pygreece/python-docs-gr/blob/3.12/CONTRIBUTING.md',
-}
-
-
-def get_contrib_link(language: str, repo: str | None) -> str | None:
- return (
- custom_contributing_links.get(language)
- or (
- language in pulling_from_transifex
- and 'https://explore.transifex.com/python-doc/python-newest/'
- )
- or (repo and f'https://github.com/{repo}')
- )
-
-
-if __name__ == '__main__':
- for code, repo in (
- ('en', None),
- ('pl', None),
- ('ar', 'python/python-docs-ar'),
- ('zh-cn', None),
- ('id', None),
- ):
- print(f'{code}: {get_contrib_link(code, repo)}')
diff --git a/generate.py b/generate.py
deleted file mode 100644
index f773848b3..000000000
--- a/generate.py
+++ /dev/null
@@ -1,108 +0,0 @@
-import json
-import concurrent.futures
-import itertools
-import logging
-import subprocess
-from collections.abc import Iterator
-from dataclasses import dataclass, asdict
-from datetime import datetime, timezone
-from pathlib import Path
-
-from git import Repo
-from jinja2 import Template
-from urllib3 import PoolManager
-
-import build_status
-import contribute
-from completion import branches_from_devguide, get_completion, TranslatorsData
-from repositories import Language, get_languages_and_repos
-from word_count import get_word_count
-
-generation_time = datetime.now(timezone.utc)
-
-
-def get_completion_progress() -> Iterator['LanguageProjectData']:
- clones_dir = Path('clones')
- Repo.clone_from(
- 'https://github.com/python/devguide.git',
- devguide_dir := Path(clones_dir, 'devguide'),
- depth=1,
- )
- latest_branch = branches_from_devguide(devguide_dir)[0]
- Repo.clone_from(
- 'https://github.com/python/cpython.git',
- cpython_dir := Path(clones_dir, 'cpython'),
- depth=1,
- branch=latest_branch,
- )
- subprocess.run(['make', '-C', cpython_dir / 'Doc', 'venv'], check=True)
- subprocess.run(['make', '-C', cpython_dir / 'Doc', 'gettext'], check=True)
- languages_built = dict(build_status.get_languages(PoolManager()))
-
- with concurrent.futures.ThreadPoolExecutor() as executor:
- return executor.map(
- get_project_data,
- *zip(*get_languages_and_repos(devguide_dir)),
- itertools.repeat(languages_built),
- itertools.repeat(clones_dir),
- )
-
-
-def get_project_data(
- language: Language,
- repo: str | None,
- languages_built: dict[str, bool],
- clones_dir: str,
-) -> 'LanguageProjectData':
- built = language.code in languages_built
- if repo:
- completion, translators_data, branch, change = get_completion(clones_dir, repo)
- else:
- completion = 0.0
- translators_data = TranslatorsData(0, False)
- change = 0.0
- branch = ''
- return LanguageProjectData(
- language,
- repo,
- branch,
- completion,
- change,
- translators_data,
- built,
- in_switcher=languages_built.get(language.code),
- uses_platform=language.code in contribute.pulling_from_transifex,
- contribution_link=contribute.get_contrib_link(language.code, repo),
- )
-
-
-@dataclass(frozen=True)
-class LanguageProjectData:
- language: Language
- repository: str | None
- branch: str
- completion: float
- change: float
- translators: TranslatorsData
- built: bool
- in_switcher: bool | None
- uses_platform: bool
- contribution_link: str | None
-
-
-if __name__ == '__main__':
- logging.basicConfig(level=logging.INFO)
- logging.info(f'starting at {generation_time}')
- template = Template(Path('template.html.jinja').read_text())
-
- output = template.render(
- completion_progress=(completion_progress := list(get_completion_progress())),
- generation_time=generation_time,
- duration=(datetime.now(timezone.utc) - generation_time).seconds,
- word_count=get_word_count(Path('clones', 'cpython', 'Doc', 'build', 'gettext')),
- )
-
- Path('index.html').write_text(output)
- Path('index.json').write_text(
- json.dumps(completion_progress, indent=2, default=asdict)
- )
diff --git a/generate_metadata.py b/generate_metadata.py
deleted file mode 100644
index 1c0f534a8..000000000
--- a/generate_metadata.py
+++ /dev/null
@@ -1,74 +0,0 @@
-import concurrent.futures
-import itertools
-import logging
-from collections.abc import Iterator, Sequence
-from datetime import datetime, timezone
-from json import loads
-from pathlib import Path
-from sys import argv
-
-import dacite
-from git import Repo
-from jinja2 import Template
-from urllib3 import request
-
-import build_warnings
-import sphinx_lint
-from generate import LanguageProjectData
-from repositories import Language
-
-generation_time = datetime.now(timezone.utc)
-
-
-def get_projects_metadata(
- completion_progress: Sequence[LanguageProjectData],
-) -> Iterator[tuple[int, int, datetime | None]]:
- with concurrent.futures.ProcessPoolExecutor() as executor:
- return executor.map(
- get_metadata,
- *zip(*map(get_language_repo_and_completion, completion_progress)),
- itertools.repeat(Path('clones')),
- )
-
-
-def get_metadata(
- language: Language, repo: str | None, completion: float, clones_dir: str
-) -> tuple[int, int, datetime | None]:
- if not repo or not (repo_path := Path(clones_dir, 'translations', repo)).exists():
- return 0, 0, None
- latest_commit = Repo(repo_path).head.commit.committed_datetime
- if not completion:
- return 0, 0, latest_commit
- return (
- build_warnings.number(clones_dir, repo, language.code),
- sphinx_lint.store_and_count_failures(clones_dir, repo, language.code),
- latest_commit,
- )
-
-
-def get_language_repo_and_completion(
- project: LanguageProjectData,
-) -> tuple[Language, str | None, float]:
- return project.language, project.repository, project.completion
-
-
-if __name__ == '__main__':
- logging.basicConfig(level=logging.INFO)
- logging.info(f'starting at {generation_time}')
- template = Template(Path('metadata.html.jinja').read_text())
- if (index_path := Path('index.json')).exists():
- index_json = loads(Path('index.json').read_text())
- else:
- index_json = request('GET', argv[1]).json()
-
- completion_progress = [
- dacite.from_dict(LanguageProjectData, project) for project in index_json
- ]
-
- output = template.render(
- metadata=zip(completion_progress, get_projects_metadata(completion_progress)),
- generation_time=generation_time,
- duration=(datetime.now(timezone.utc) - generation_time).seconds,
- )
-
- Path('metadata.html').write_text(output)
diff --git a/index.html b/index.html
new file mode 100644
index 000000000..ff982d7c8
--- /dev/null
+++ b/index.html
@@ -0,0 +1,632 @@
+
+
+ Python Docs Translation Dashboard
+
+
+
+
+
+
+Python Docs Translation Dashboard
+
+main | meta
+
+
+
+
+ language
+ switcher
+ translators
+ completion*
+
+
+
+
+
+
+ Simplified Chinese (zh-cn)
+
+
+
+ ✓
+
+
+
+
+ 233
+
+
+
+
+ 80.21%
+
+
+ 80.21%
+
+
+
+
+
+
+ Spanish (es)
+
+
+
+ ✓
+
+
+
+
+ 312
+
+
+
+
+ 62.70% (+0.12%)
+
+
+ 62.70% (+0.12%)
+
+
+
+
+
+
+ Brazilian Portuguese (pt-br)
+
+
+
+ ✓
+
+
+
+
+ 6
+
+
+
+
+ 61.21% (+1.42%)
+
+
+ 61.21% (+1.42%)
+
+
+
+
+
+
+ Ukrainian (uk)
+
+
+
+ ✗
+
+
+
+
+ 13
+
+
+
+
+ 53.44% (+53.44%)
+
+
+ 53.44% (+53.44%)
+
+
+
+
+
+
+ Japanese (ja)
+
+
+
+ ✓
+
+
+
+
+ 46
+
+
+
+
+ 52.52%
+
+
+ 52.52%
+
+
+
+
+
+
+ Korean (ko)
+
+
+
+ ✓
+
+
+
+
+ 23
+
+
+
+
+ 45.83% (+3.02%)
+
+
+ 45.83% (+3.02%)
+
+
+
+
+
+
+ Traditional Chinese (zh-tw)
+
+
+
+ ✓
+
+
+
+
+ 120
+
+
+
+
+ 38.52% (+1.23%)
+
+
+ 38.52% (+1.23%)
+
+
+
+
+
+
+ French (fr)
+
+
+
+ ✓
+
+
+
+
+ 241
+
+
+
+
+ 35.74%
+
+
+ 35.74%
+
+
+
+
+
+
+ Polish (pl)
+
+
+
+ ✓
+
+
+
+
+ 8
+
+
+
+
+ 11.17% (+0.03%)
+
+
+ 11.17% (+0.03%)
+
+
+
+
+
+
+ Indonesian (id)
+
+
+
+ ✗
+
+
+
+
+ 24
+
+
+
+
+ 7.99%
+
+
+ 7.99%
+
+
+
+
+
+
+ Greek (gr)
+
+
+
+
+
+
+ 15
+
+
+
+
+ 7.16% (+0.38%)
+
+
+ 7.16% (+0.38%)
+
+
+
+
+
+
+ Turkish (tr)
+
+
+
+ ✓
+
+
+
+
+ 29
+
+
+
+
+ 5.06%
+
+
+ 5.06%
+
+
+
+
+
+
+ Italian (it)
+
+
+
+ ✓
+
+
+
+
+ 3
+
+
+
+
+ 3.62%
+
+
+ 3.62%
+
+
+
+
+
+
+ Romanian (ro)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.30%
+
+
+ 0.30%
+
+
+
+
+
+
+ Russian (ru)
+
+
+
+
+
+
+ 22
+
+
+
+
+ 0.20%
+
+
+ 0.20%
+
+
+
+
+
+
+ Persian (fa)
+
+
+
+
+
+
+ 13
+
+
+
+
+ 0.15% (+0.15%)
+
+
+ 0.15% (+0.15%)
+
+
+
+
+
+
+ Arabic (ar)
+
+
+
+
+
+
+ 3
+
+
+
+
+ 0.01%
+
+
+ 0.01%
+
+
+
+
+
+
+ Hindi (hi-in)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.01%
+
+
+ 0.01%
+
+
+
+
+
+
+ Marathi (mr)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Hungarian (hu)
+
+
+
+
+
+
+ 1
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Portuguese (pt)
+
+
+
+
+
+
+ 0
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Lithuanian (lt)
+
+
+
+
+
+
+ 0
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+ Bengali (bn-in)
+
+
+
+
+
+
+ 0
+
+
+
+
+ 0.00%
+
+
+ 0.00%
+
+
+
+
+
+
+* the number in parentheses shows change in the last 30 days, included in the total completion
+
+Currently being translated into 23 languages.
+The documentation has a total word count of 1,527,742.
+For more information about translations, see the Python Developer’s Guide .
+
+
+You can download the data on this page in JSON format .
+You can also find the scripts used to generate these pages here .
+Last updated at Friday, 9 May 2025, 20:32:13 UTC (in 6:42 minutes).
+
+
+
\ No newline at end of file
diff --git a/index.json b/index.json
new file mode 100644
index 000000000..9dcfcc43a
--- /dev/null
+++ b/index.json
@@ -0,0 +1,416 @@
+[
+ {
+ "language": {
+ "code": "ar",
+ "name": "Arabic"
+ },
+ "repository": "Abdur-rahmaanJ/python-docs-ar",
+ "branch": "master",
+ "completion": 0.014487981560750741,
+ "change": 0.0,
+ "translators": {
+ "number": 3,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/Abdur-rahmaanJ/python-docs-ar"
+ },
+ {
+ "language": {
+ "code": "bn-in",
+ "name": "Bengali"
+ },
+ "repository": "python/python-docs-bn-in",
+ "branch": "",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 0,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-bn-in"
+ },
+ {
+ "language": {
+ "code": "fr",
+ "name": "French"
+ },
+ "repository": "python/python-docs-fr",
+ "branch": "3.13",
+ "completion": 35.741850510372075,
+ "change": 0.0,
+ "translators": {
+ "number": 241,
+ "link": "https://github.com/python/python-docs-fr/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://git.afpy.org/AFPy/python-docs-fr/src/branch/3.13/CONTRIBUTING.rst"
+ },
+ {
+ "language": {
+ "code": "gr",
+ "name": "Greek"
+ },
+ "repository": "pygreece/python-docs-gr",
+ "branch": "3.13",
+ "completion": 7.157062891010866,
+ "change": 0.3793216990451098,
+ "translators": {
+ "number": 15,
+ "link": "https://github.com/pygreece/python-docs-gr/blob/3.13/TRANSLATORS"
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/pygreece/python-docs-gr/blob/3.12/CONTRIBUTING.md"
+ },
+ {
+ "language": {
+ "code": "hi-in",
+ "name": "Hindi"
+ },
+ "repository": "CuriousLearner/python-docs-hi-in",
+ "branch": "master",
+ "completion": 0.005268356931182087,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/CuriousLearner/python-docs-hi-in"
+ },
+ {
+ "language": {
+ "code": "hu",
+ "name": "Hungarian"
+ },
+ "repository": "python/python-docs-hu",
+ "branch": "master",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-hu"
+ },
+ {
+ "language": {
+ "code": "id",
+ "name": "Indonesian"
+ },
+ "repository": "python/python-docs-id",
+ "branch": "3.9",
+ "completion": 7.986829107672045,
+ "change": 0.0,
+ "translators": {
+ "number": 24,
+ "link": "https://github.com/python/python-docs-id/blob/3.9/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": false,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-id/blob/master/README.md#berkontribusi-untuk-menerjemahkan"
+ },
+ {
+ "language": {
+ "code": "it",
+ "name": "Italian"
+ },
+ "repository": "python/python-docs-it",
+ "branch": "3.13",
+ "completion": 3.616727033256503,
+ "change": 0.0,
+ "translators": {
+ "number": 3,
+ "link": "https://github.com/python/python-docs-it/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-it"
+ },
+ {
+ "language": {
+ "code": "ja",
+ "name": "Japanese"
+ },
+ "repository": "python/python-docs-ja",
+ "branch": "3.11",
+ "completion": 52.51629897925584,
+ "change": -0.4846888376687559,
+ "translators": {
+ "number": 46,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "ko",
+ "name": "Korean"
+ },
+ "repository": "python/python-docs-ko",
+ "branch": "3.13",
+ "completion": 45.83207112281857,
+ "change": 3.0227197892657216,
+ "translators": {
+ "number": 23,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://www.flowdas.com/pages/python-docs-ko.html"
+ },
+ {
+ "language": {
+ "code": "mr",
+ "name": "Marathi"
+ },
+ "repository": "sanketgarade/python-doc-mr",
+ "branch": "3.9",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/sanketgarade/python-doc-mr"
+ },
+ {
+ "language": {
+ "code": "lt",
+ "name": "Lithuanian"
+ },
+ "repository": null,
+ "branch": "",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 0,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": null
+ },
+ {
+ "language": {
+ "code": "fa",
+ "name": "Persian"
+ },
+ "repository": "revisto/python-docs-fa",
+ "branch": "3.13",
+ "completion": 0.14619690484030293,
+ "change": 0.14619690484030293,
+ "translators": {
+ "number": 13,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/revisto/python-docs-fa"
+ },
+ {
+ "language": {
+ "code": "pl",
+ "name": "Polish"
+ },
+ "repository": "python/python-docs-pl",
+ "branch": "3.13",
+ "completion": 11.172867961804412,
+ "change": 0.028975963121501636,
+ "translators": {
+ "number": 8,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "pt",
+ "name": "Portuguese"
+ },
+ "repository": null,
+ "branch": "",
+ "completion": 0.0,
+ "change": 0.0,
+ "translators": {
+ "number": 0,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": null
+ },
+ {
+ "language": {
+ "code": "pt-br",
+ "name": "Brazilian Portuguese"
+ },
+ "repository": "python/python-docs-pt-br",
+ "branch": "3.13",
+ "completion": 61.21172209417188,
+ "change": 1.422456371419166,
+ "translators": {
+ "number": 6,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "ro",
+ "name": "Romanian"
+ },
+ "repository": "octaG-M/python-docs-ro",
+ "branch": "main",
+ "completion": 0.2963450773789924,
+ "change": 0.0,
+ "translators": {
+ "number": 1,
+ "link": "https://github.com/octaG-M/python-docs-ro/blob/main/TRANSLATORS"
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/octaG-M/python-docs-ro"
+ },
+ {
+ "language": {
+ "code": "ru",
+ "name": "Russian"
+ },
+ "repository": "MLGRussianXP/python-docs-ru",
+ "branch": "3.13",
+ "completion": 0.20151465261771484,
+ "change": 0.0,
+ "translators": {
+ "number": 22,
+ "link": false
+ },
+ "built": false,
+ "in_switcher": null,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/MLGRussianXP/python-docs-ru"
+ },
+ {
+ "language": {
+ "code": "zh-cn",
+ "name": "Simplified Chinese"
+ },
+ "repository": "python/python-docs-zh-cn",
+ "branch": "3.13",
+ "completion": 80.2054659203161,
+ "change": -0.5149818900230514,
+ "translators": {
+ "number": 233,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ },
+ {
+ "language": {
+ "code": "es",
+ "name": "Spanish"
+ },
+ "repository": "python/python-docs-es",
+ "branch": "3.13",
+ "completion": 62.70003292723082,
+ "change": 0.11985512018439692,
+ "translators": {
+ "number": 312,
+ "link": "https://github.com/python/python-docs-es/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://python-docs-es.readthedocs.io/page/CONTRIBUTING.html"
+ },
+ {
+ "language": {
+ "code": "zh-tw",
+ "name": "Traditional Chinese"
+ },
+ "repository": "python/python-docs-zh-tw",
+ "branch": "3.13",
+ "completion": 38.522225880803425,
+ "change": 1.2314784326638133,
+ "translators": {
+ "number": 120,
+ "link": "https://github.com/python/python-docs-zh-tw/blob/3.13/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-zh-tw/blob/3.13/README.rst#%E5%8F%83%E8%88%87%E7%BF%BB%E8%AD%AF"
+ },
+ {
+ "language": {
+ "code": "tr",
+ "name": "Turkish"
+ },
+ "repository": "python/python-docs-tr",
+ "branch": "3.12",
+ "completion": 5.0642081000987815,
+ "change": 0.0,
+ "translators": {
+ "number": 29,
+ "link": "https://github.com/python/python-docs-tr/blob/3.12/TRANSLATORS"
+ },
+ "built": true,
+ "in_switcher": true,
+ "uses_platform": false,
+ "contribution_link": "https://github.com/python/python-docs-tr/blob/3.12/README.md#%C3%A7eviriye-katk%C4%B1da-bulunmak"
+ },
+ {
+ "language": {
+ "code": "uk",
+ "name": "Ukrainian"
+ },
+ "repository": "python/python-docs-uk",
+ "branch": "3.13",
+ "completion": 53.436944352979914,
+ "change": 53.436944352979914,
+ "translators": {
+ "number": 13,
+ "link": false
+ },
+ "built": true,
+ "in_switcher": false,
+ "uses_platform": true,
+ "contribution_link": "https://explore.transifex.com/python-doc/python-newest/"
+ }
+]
\ No newline at end of file
diff --git a/main/index.html b/main/index.html
new file mode 100644
index 000000000..8ed015f64
--- /dev/null
+++ b/main/index.html
@@ -0,0 +1,686 @@
+
+
+ Python Docs Translation Dashboard
+
+
+
+
+Python Docs Translation Dashboard
+
+
+
+ language
+ contribute
+ build
+ visitors*
+ translators
+ completion
+
+
+
+
+
+ Simplified Chinese (zh-cn)
+
+
+ platform
+
+
+
+
+ ✓ in switcher
+
+
+
+
+
+ 1,511,124
+
+
+
+
+
+ 234
+
+
+
+ 80.66%
+ 80.66%
+
+
+
+
+ Spanish (es)
+
+
+ repository
+
+
+
+
+ ✓ in switcher
+
+
+
+
+
+ 961,031
+
+
+
+
+
+ 310
+
+
+
+ 63.31%
+ 63.31%
+
+
+
+
+ Portuguese as spoken in Brasil (pt-br)
+
+
+ platform
+
+
+
+
+ ✓ in switcher
+
+
+
+
+
+ 458,523
+
+
+
+
+
+ 155
+
+
+
+ 58.42%
+ 58.42%
+
+
+
+
+ Japanese (ja)
+
+
+ platform
+
+
+
+
+ ✓ in switcher
+
+
+
+
+
+ 1,365,373
+
+
+
+
+
+ 47
+
+
+
+ 53.45%
+ 53.45%
+
+
+
+
+ Ukrainian (uk)
+
+
+ platform
+
+
+
+
+ ✓
+
+
+
+
+
+ 230,852
+
+
+
+
+
+ 15
+
+
+
+ 48.49%
+ 48.49%
+
+
+
+
+ Korean (ko)
+
+
+ repository
+
+
+
+
+ ✓ in switcher
+
+
+
+
+
+ 399,843
+
+
+
+
+
+ 22
+
+
+
+ 43.37%
+ 43.37%
+
+
+
+
+ Traditional Chinese (zh-tw)
+
+
+ repository
+
+
+
+
+ ✓ in switcher
+
+
+
+
+
+ 411,816
+
+
+
+
+
+ 116
+
+
+
+ 36.99%
+ 36.99%
+
+
+
+
+ French (fr)
+
+
+ repository
+
+
+
+
+ ✓ in switcher
+
+
+
+
+
+ 709,250
+
+
+
+
+
+ 241
+
+
+
+ 36.16%
+ 36.16%
+
+
+
+
+ Polish (pl)
+
+
+ platform
+
+
+
+
+ ✓ in switcher
+
+
+
+
+
+ 41,953
+
+
+
+
+
+ 26
+
+
+
+ 9.48%
+ 9.48%
+
+
+
+
+ Indonesian (id)
+
+
+ repository
+
+
+
+
+ ✓
+
+
+
+
+
+ 8,170
+
+
+
+
+
+ 24
+
+
+
+ 8.11%
+ 8.11%
+
+
+
+
+ Turkish (tr)
+
+
+ repository
+
+
+
+
+ ✓ in switcher
+
+
+
+
+
+ 23,839
+
+
+
+
+
+ 29
+
+
+
+ 5.10%
+ 5.10%
+
+
+
+
+ Greek (gr)
+
+
+ repository
+
+
+
+
+ ✗
+
+
+
+
+ 0
+
+
+
+
+ 12
+
+
+
+ 4.83%
+ 4.83%
+
+
+
+
+ Italian (it)
+
+
+ repository
+
+
+
+
+ ✓ in switcher
+
+
+
+
+
+ 26,994
+
+
+
+
+
+ 3
+
+
+
+ 3.65%
+ 3.65%
+
+
+
+
+ Russian (ru)
+
+
+ repository
+
+
+
+
+ ✗
+
+
+
+
+ 0
+
+
+
+
+ 16
+
+
+
+ 2.15%
+ 2.15%
+
+
+
+
+ Arabic (ar)
+
+
+ repository
+
+
+
+
+ ✗
+
+
+
+
+ 0
+
+
+
+
+ 3
+
+
+
+ 0.01%
+ 0.01%
+
+
+
+
+ Hindi as spoken in India (hi-in)
+
+
+ repository
+
+
+
+
+ ✗
+
+
+
+
+ 0
+
+
+
+
+ 1
+
+
+
+ 0.01%
+ 0.01%
+
+
+
+
+ Persian (fa)
+
+
+ repository
+
+
+
+
+ ✗
+
+
+
+
+ 0
+
+
+
+
+ 1
+
+
+
+ 0.00%
+ 0.00%
+
+
+
+
+ Marathi (mr)
+
+
+ repository
+
+
+
+
+ ✗
+
+
+
+
+ 0
+
+
+
+
+ 1
+
+
+
+ 0.00%
+ 0.00%
+
+
+
+
+ Hungarian (hu)
+
+
+ repository
+
+
+
+
+ ✗
+
+
+
+
+ 0
+
+
+
+
+ 1
+
+
+
+ 0.00%
+ 0.00%
+
+
+
+
+ Portuguese (pt)
+
+
+ repository
+
+
+
+
+ ✗
+
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+ 0.00%
+ 0.00%
+
+
+
+
+ Lithuanian (lt)
+
+
+ repository
+
+
+
+
+ ✗
+
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+ 0.00%
+ 0.00%
+
+
+
+
+ Bengali as spoken in India (bn-in)
+
+
+ repository
+
+
+
+
+ ✗
+
+
+
+
+ 0
+
+
+
+
+ 0
+
+
+
+ 0.00%
+ 0.00%
+
+
+
+
+
+* sum of daily unique visitors since 8 June 2024
+For more information about translations, see the Python Developer’s Guide .
+Last updated at Thursday, 6 February 2025, 14:16:00 UTC (in 4:48 minutes).
+
+
+
\ No newline at end of file
diff --git a/main/style.css b/main/style.css
new file mode 100644
index 000000000..3a67a64ad
--- /dev/null
+++ b/main/style.css
@@ -0,0 +1,81 @@
+body {
+ font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
+}
+table {
+ border-collapse: collapse;
+ width: 100%;
+}
+th, td {
+ border: 1px solid #ddd;
+ padding: 8px 12px;
+ text-align: left;
+ white-space: nowrap;
+}
+th {
+ background-color: #f4f4f4;
+}
+.progress-bar {
+ display: inline-block;
+ background-color: #4caf50;
+ color: white;
+ height: 20px;
+ line-height: 20px;
+ text-align: center;
+ overflow: hidden;
+ white-space: nowrap;
+ box-sizing: border-box;
+}
+.progress-bar-outer-label {
+ display: none;
+ padding-left: .5em;
+ height: 20px;
+ line-height: 20px;
+ overflow: hidden;
+}
+.progress-bar.low {
+ color: transparent;
+ user-select: none;
+}
+.progress-bar.low + .progress-bar-outer-label {
+ display: inline-block;
+}
+td[data-label="visitors"], td[data-label="translators"] {
+ text-align: right;
+}
+td[data-label="completion"] {
+ width: 100%;
+ line-height: 0;
+}
+@media screen and (max-width: 600px) {
+ table, thead, tbody, th, td, tr {
+ display: block;
+ }
+ th {
+ position: absolute;
+ top: -9999px;
+ left: -9999px;
+ }
+ tr {
+ border: 1px solid #ccc;
+ margin-bottom: 5px;
+ }
+ td {
+ border: none;
+ border-bottom: 1px solid #eee;
+ padding-left: 50%;
+ position: relative;
+ }
+ td:before {
+ content: attr(data-label);
+ font-weight: bold;
+ left: 10px;
+ position: absolute;
+ }
+ td[data-label="completion"] {
+ width: inherit;
+ }
+ .progress-bar {
+ min-width: 0;
+ width: 100% !important;
+ }
+}
diff --git a/metadata.html b/metadata.html
new file mode 100644
index 000000000..988fd5fcb
--- /dev/null
+++ b/metadata.html
@@ -0,0 +1,306 @@
+
+
+ Python Docs Translation Dashboard
+
+
+
+
+
+Python Docs Translation Dashboard
+
+main | meta
+
+
+
+
+ language
+ branch
+ last updated
+ build warnings*
+ lint failures
+
+
+
+
+
+ Simplified Chinese (zh-cn)
+ 3.13
+ 2025/05/09 15:55:39
+
+ 5
+
+
+ 293
+
+
+
+
+ Spanish (es)
+ 3.13
+ 2025/05/08 10:20:00
+
+ 0
+
+
+ 2
+
+
+
+
+ Brazilian Portuguese (pt-br)
+ 3.13
+ 2025/05/08 23:30:20
+
+ 0
+
+
+ 0
+
+
+
+
+ Ukrainian (uk)
+ 3.13
+ 2025/05/01 16:40:42
+
+ 10
+
+
+ 0
+
+
+
+
+ Japanese (ja)
+ 3.11
+ 2025/05/08 23:50:24
+
+ 319
+
+
+ 364
+
+
+
+
+ Korean (ko)
+ 3.13
+ 2025/05/09 19:10:42
+
+ 0
+
+
+ 0
+
+
+
+
+ Traditional Chinese (zh-tw)
+ 3.13
+ 2025/05/06 13:46:11
+
+ 0
+
+
+ 0
+
+
+
+
+ French (fr)
+ 3.13
+ 2024/11/15 23:05:57
+
+ 3
+
+
+ 4
+
+
+
+
+ Polish (pl)
+ 3.13
+ 2025/05/09 15:13:52
+
+ 0
+
+
+ 0
+
+
+
+
+ Indonesian (id)
+ 3.9
+ 2021/05/30 22:15:38
+
+ 46
+
+
+ 34
+
+
+
+
+ Greek (gr)
+ 3.13
+ 2025/05/09 12:44:52
+
+ 5
+
+
+ 60
+
+
+
+
+ Turkish (tr)
+ 3.12
+ 2024/12/15 06:56:02
+
+ 0
+
+
+ 0
+
+
+
+
+ Italian (it)
+ 3.13
+ 2024/06/08 12:26:23
+
+ 0
+
+
+ 0
+
+
+
+
+ Romanian (ro)
+ main
+ 2025/05/09 20:08:26
+
+ 0
+
+
+ 1
+
+
+
+
+ Russian (ru)
+ 3.13
+ 2025/05/08 04:02:12
+
+ 0
+
+
+ 0
+
+
+
+
+ Persian (fa)
+ 3.13
+ 2025/05/09 01:27:45
+
+ 1
+
+
+ 1
+
+
+
+
+ Arabic (ar)
+ master
+ 2024/05/24 14:10:55
+
+ 3
+
+
+ 1
+
+
+
+
+ Hindi (hi-in)
+ master
+ 2019/05/07 01:31:24
+
+ 0
+
+
+ 0
+
+
+
+
+ Marathi (mr)
+ 3.9
+ 2022/05/20 01:19:57
+
+ 0
+
+
+ 0
+
+
+
+
+ Hungarian (hu)
+ master
+ 2017/06/10 10:25:25
+
+ 0
+
+
+ 0
+
+
+
+
+ Portuguese (pt)
+
+
+
+ 0
+
+
+ 0
+
+
+
+
+ Lithuanian (lt)
+
+
+
+ 0
+
+
+ 0
+
+
+
+
+ Bengali (bn-in)
+
+
+
+ 0
+
+
+ 0
+
+
+
+
+
+* number of Sphinx build process warnings
+ Last updated at Friday, 9 May 2025, 19:32:09 UTC (in 36:17 minutes).
+
+
\ No newline at end of file
diff --git a/metadata.html.jinja b/metadata.html.jinja
deleted file mode 100644
index a23b40f86..000000000
--- a/metadata.html.jinja
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
- Python Docs Translation Dashboard
-
-
-
-
-
-Python Docs Translation Dashboard
-
-main | meta
-
-
-
-
- language
- branch
- last updated
- build warnings*
- lint failures
-
-
-
-{% for project, metadata in metadata | sort(attribute='0.completion,0.translators.number') | reverse %}
-
- {{ project.language.name }} ({{ project.language.code }})
- {{ project.branch }}
- {{ metadata[2].strftime('%Y/%m/%d %T') if metadata[2] else '' }}
-
- {% if project.completion %}{{ metadata[0] }} {% else %}{{ metadata[0] }}{% endif %}
-
-
- {% if project.completion %}{{ metadata[1] }} {% else %}{{ metadata[1] }}{% endif %}
-
-
-{% endfor %}
-
-
-* number of Sphinx build process warnings
- Last updated at {{ generation_time.strftime('%A, %-d %B %Y, %-H:%M:%S %Z') }} (in {{ duration // 60 }}:{{ "{:02}".format(duration % 60) }} minutes).
-
-
diff --git a/repositories.py b/repositories.py
deleted file mode 100644
index 2c69c9f0e..000000000
--- a/repositories.py
+++ /dev/null
@@ -1,46 +0,0 @@
-import re
-from collections.abc import Iterator
-from dataclasses import dataclass
-from pathlib import Path
-from tempfile import TemporaryDirectory
-
-from docutils import core
-from docutils.nodes import table, row
-from git import Repo
-
-
-def get_languages_and_repos(
- devguide_dir: Path,
-) -> Iterator[tuple['Language', str | None]]:
- translating = devguide_dir.joinpath('documentation/translating.rst').read_text()
- doctree = core.publish_doctree(translating)
-
- for node in doctree.traverse(table):
- for row_node in node.traverse(row)[1:]:
- language = row_node[0].astext()
- repo = row_node[2].astext()
- language_match = re.match(r'(.*) \((.*)\)', language)
- if not language_match:
- raise ValueError(
- f'Expected a language code in brackets in devguide table, found {language}'
- )
- language_name = language_match.group(1)
- language_code = language_match.group(2).lower().replace('_', '-')
- repo_match = re.match(':github:`GitHub <(.*)>`', repo)
- yield (
- Language(language_code, language_name),
- repo_match and repo_match.group(1),
- )
-
-
-@dataclass(frozen=True)
-class Language:
- code: str
- name: str
-
-
-if __name__ == '__main__':
- with TemporaryDirectory() as directory:
- Repo.clone_from('https://github.com/python/devguide.git', directory, depth=1)
- for item in get_languages_and_repos(Path(directory)):
- print(item)
diff --git a/requirements.txt b/requirements.txt
deleted file mode 100644
index 7090e1a90..000000000
--- a/requirements.txt
+++ /dev/null
@@ -1,10 +0,0 @@
-gitpython
-urllib3
-potodo
-polib
-jinja2
-docutils
-sphinx
-python-docs-theme
-dacite
-sphinx-lint
diff --git a/ruff.toml b/ruff.toml
deleted file mode 100644
index 9b30b0744..000000000
--- a/ruff.toml
+++ /dev/null
@@ -1,3 +0,0 @@
-[format]
-quote-style = "single"
-skip-magic-trailing-comma = true
diff --git a/sphinx_lint.py b/sphinx_lint.py
deleted file mode 100644
index 167cec1b4..000000000
--- a/sphinx_lint.py
+++ /dev/null
@@ -1,18 +0,0 @@
-from collections.abc import Iterator
-from itertools import chain
-from pathlib import Path
-
-from sphinxlint import check_file, checkers
-
-
-def store_and_count_failures(clones_dir: str, repo: str, language_code: str) -> int:
- failed_checks = list(chain.from_iterable(yield_failures(clones_dir, repo)))
- filepath = Path(f'warnings-lint-{language_code}.txt')
- filepath.write_text('\n'.join([str(c) for c in failed_checks]))
- return len(failed_checks)
-
-
-def yield_failures(clones_dir: str, repo: str) -> Iterator[str]:
- enabled_checkers = [c for c in checkers.all_checkers.values() if c.enabled]
- for path in Path(clones_dir, 'rebased_translations', repo).rglob('*.po'):
- yield check_file(path.as_posix(), enabled_checkers)
diff --git a/template.html.jinja b/template.html.jinja
deleted file mode 100644
index 676f83117..000000000
--- a/template.html.jinja
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
- Python Docs Translation Dashboard
-
-
-
-
-
-
-Python Docs Translation Dashboard
-
-main | meta
-
-
-
-
- language
- switcher
- translators
- completion*
-
-
-
-{% for project in completion_progress | sort(attribute='completion,translators.number') | reverse %}
-
-
- {{ project.language.name }} ({{ project.language.code }})
-
-
- {% if project.in_switcher %}
- ✓
- {% elif project.built %}
- ✗
- {% endif %}
-
-
- {% if project.translators.link %}{% endif %}
- {{ project.translators.number }}
- {% if project.translators.link %} {% endif %}
-
-
-
- {{ '{:.2f}%'.format(project.completion) }} {% if project.change >= 0.01 %}({{ '{:+.2f}%'.format(project.change) }}){% endif %}
-
-
- {{ '{:.2f}%'.format(project.completion) }} {% if project.change >= 0.01 %}({{ '{:+.2f}%'.format(project.change) }}){% endif %}
-
-
-
-{% endfor %}
-
-
-* the number in parentheses shows change in the last 30 days, included in the total completion
-
-Currently being translated into {{ completion_progress|length }} languages.
-The documentation has a total word count of {{ '{:,}'.format(word_count) }}.
-For more information about translations, see the Python Developer’s Guide .
-
-
-You can download the data on this page in JSON format .
-You can also find the scripts used to generate these pages here .
-Last updated at {{ generation_time.strftime('%A, %-d %B %Y, %-H:%M:%S %Z') }} (in {{ duration // 60 }}:{{ "{:02}".format(duration % 60) }} minutes).
-
-
-
diff --git a/translators.py b/translators.py
deleted file mode 100644
index aaae2399f..000000000
--- a/translators.py
+++ /dev/null
@@ -1,79 +0,0 @@
-from collections.abc import Iterator
-from pathlib import Path
-from re import fullmatch
-from tempfile import TemporaryDirectory
-from typing import Literal
-
-from git import Repo
-from polib import pofile
-
-
-def get_number(path: Path) -> int:
- from_headers = len(set(yield_from_headers(path)))
- from_git_history = get_number_from_git_history(path)
- from_translators_file = len(get_from_translators_file(path))
- return max(from_headers, from_git_history, from_translators_file)
-
-
-def get_number_from_git_history(path: Path) -> int:
- return len(Repo(path).git.shortlog('-s', 'HEAD').splitlines())
-
-
-def yield_from_headers(path: Path) -> Iterator[str]:
- for file in path.rglob('*.po'):
- try:
- header = pofile(file).header.splitlines()
- except IOError:
- continue
- if 'Translators:' not in header:
- continue
- for translator_record in header[header.index('Translators:') + 1 :]:
- try:
- translator, _year = translator_record.split(', ')
- except ValueError:
- yield translator_record
- else:
- yield translator
-
-
-def get_from_translators_file(path: Path) -> list[str]:
- if not (file := path.joinpath('TRANSLATORS')).exists():
- return []
- return list(
- line
- for line in file.read_text().splitlines()
- if line != 'Translators'
- and not fullmatch(r'-*', line)
- and not line.startswith('# ')
- )
-
-
-def get_link(clone_path: Path, repo: str, branch: str) -> str | Literal[False]:
- return (
- clone_path.joinpath('TRANSLATORS').exists()
- and f'https://github.com/{repo}/blob/{branch}/TRANSLATORS'
- )
-
-
-if __name__ == '__main__':
- for lang, branch in (
- ('es', '3.13'),
- ('hu', '3.6'),
- ('pl', '3.13'),
- ('zh-tw', '3.13'),
- ('id', '3.9'),
- ('fr', '3.13'),
- ('hu', '3.6'),
- ):
- with TemporaryDirectory() as directory:
- Repo.clone_from(
- f'https://github.com/python/python-docs-{lang}',
- directory,
- branch=branch,
- )
- from_headers = len(set(yield_from_headers(path := Path(directory))))
- from_git_history = get_number_from_git_history(path)
- from_translators_file = len(get_from_translators_file(path))
- print(
- f'{lang}: {from_headers=}, {from_git_history=}, {from_translators_file=}'
- )
diff --git a/warnings-ar.txt b/warnings-ar.txt
new file mode 100644
index 000000000..c8862d765
--- /dev/null
+++ b/warnings-ar.txt
@@ -0,0 +1,3 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:24: WARNING: inconsistent term references in translated message. original: [':ref:`installing-index`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:27: WARNING: inconsistent term references in translated message. original: [':ref:`reference-index`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64: WARNING: inconsistent term references in translated message. original: [':ref:`Frequently Asked Questions `'], translated: [] [i18n.inconsistent_references]
diff --git a/warnings-es.txt b/warnings-es.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-fa.txt b/warnings-fa.txt
new file mode 100644
index 000000000..1dc52779d
--- /dev/null
+++ b/warnings-fa.txt
@@ -0,0 +1 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/allocation.rst:38: WARNING: inconsistent term references in translated message. original: [':c:macro:`Py_TPFLAGS_HAVE_GC`', ':c:func:`PyObject_GC_New`'], translated: [':c:func:`PyObject_GC_New`'] [i18n.inconsistent_references]
diff --git a/warnings-fr.txt b/warnings-fr.txt
new file mode 100644
index 000000000..70263ff9e
--- /dev/null
+++ b/warnings-fr.txt
@@ -0,0 +1,3 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/classes.rst:772: WARNING: inconsistent term references in translated message. original: [':ref:`Instance method objects `', ':attr:`m.__self__ `', ':attr:`m.__func__ `', ':ref:`function object `'], translated: [':attr:`m.__self__ `', ':attr:`m.__func__ `', ':ref:`objet fonction `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/import.rst:602: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`__repr__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:323: WARNING: inconsistent term references in translated message. original: [':class:`int`', ':class:`int`', ':class:`float`', ':class:`float`', ':class:`int`'], translated: [':class:`int`', ':class:`int`', ':class:`float`', ':class:`float`'] [i18n.inconsistent_references]
diff --git a/warnings-gr.txt b/warnings-gr.txt
new file mode 100644
index 000000000..cfd9abfcb
--- /dev/null
+++ b/warnings-gr.txt
@@ -0,0 +1,5 @@
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
+WARNING: Invalid Babel locale: 'gr'. [i18n.babel]
diff --git a/warnings-hi-in.txt b/warnings-hi-in.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-id.txt b/warnings-id.txt
new file mode 100644
index 000000000..adc299139
--- /dev/null
+++ b/warnings-id.txt
@@ -0,0 +1,47 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/faq/general.rst:: ERROR: Anonymous hyperlink mismatch: 1 references but 0 targets.
+See "backrefs" attribute for IDs. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/faq/windows.rst:276: WARNING: inconsistent term references in translated message. original: [':mod:`msvcrt`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/cporting.rst:17: WARNING: inconsistent references in translated message. original: ['`Cython`_', '`CFFI`_'], translated: ['`Cython`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/abstract.rst:14: WARNING: inconsistent term references in translated message. original: [':c:func:`PyList_New`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/cell.rst:48::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/appendix.rst:50: WARNING: inconsistent term references in translated message. original: [':exc:`KeyboardInterrupt`', ':keyword:`try`'], translated: [':exc:`KeyboardInterrupt`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:872::1: WARNING: Inline literal start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:872::1: WARNING: Inline literal start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/datastructures.rst:407: WARNING: inconsistent term references in translated message. original: [':term:`immutable`', ':func:`namedtuples `', ':term:`mutable`'], translated: [':term:`immutable`', ':func:`namedtuples `). Daftar adalah :term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/datastructures.rst:693: WARNING: inconsistent term references in translated message. original: [':ref:`walrus operator `'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:108: WARNING: inconsistent term references in translated message. original: [':keyword:`try`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:423: WARNING: inconsistent term references in translated message. original: [':keyword:`break`', ':keyword:`continue`', ':keyword:`return`'], translated: [':keyword:`break`', ':keyword:`continue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/inputoutput.rst:522: WARNING: inconsistent term references in translated message. original: [':func:`~json.dumps`', ':func:`~json.dump`', ':term:`text file`', ':term:`text file`'], translated: [':func:`~json.dumps`', ':func:`~json.dump`', ':term:`text file`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/interpreter.rst:73: WARNING: inconsistent term references in translated message. original: [':option:`-c`', ':option:`-m`', ':option:`-c`', ':option:`-m`'], translated: [':option:`-c`', ':option:`-c`', ':option:`-m`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/introduction.rst:132: WARNING: inconsistent term references in translated message. original: [':class:`int`', ':class:`float`', ':class:`~decimal.Decimal`', ':class:`~fractions.Fraction`', ':ref:`complex numbers `'], translated: [':class:`int`', ':class:`~decimal.Decimal`', ':class:`~fractions.Fraction`', ':ref:`complex numbers `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/modules.rst:206: WARNING: inconsistent term references in translated message. original: [':data:`sys.path`', ':ref:`tut-standardmodules`'], translated: [':ref:`tut-standardmodules`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:238: WARNING: inconsistent term references in translated message. original: [':mod:`zlib`', ':mod:`gzip`', ':mod:`bz2`', ':mod:`lzma`', ':mod:`zipfile`', ':mod:`tarfile`'], translated: [':mod:`gzip`', ':mod:`bz2`', ':mod:`lzma`', ':mod:`zipfile`', ':mod:`tarfile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:264: WARNING: inconsistent term references in translated message. original: [':mod:`timeit`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:288: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:174: WARNING: inconsistent term references in translated message. original: [':mod:`threading`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/whatnow.rst:64: WARNING: inconsistent term references in translated message. original: [':ref:`Frequently Asked Questions `'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:1324: WARNING: inconsistent term references in translated message. original: [':ref:`sortinghowto`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/html.entities.rst:13: WARNING: inconsistent term references in translated message. original: [':data:`html5`', ':data:`name2codepoint`', ':data:`codepoint2name`', ':data:`entitydefs`'], translated: [':data:`html5`', ':data:`name2codepoint`', ':data:`codepoint2name`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:213: WARNING: inconsistent term references in translated message. original: [':ref:`binaryseq`', ':ref:`typebytearray`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:473: WARNING: inconsistent term references in translated message. original: [':class:`list`', ':class:`set`', ':class:`tuple`', ':mod:`collections`'], translated: [':class:`set`', ':class:`tuple`', ':mod:`collections`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:848: WARNING: inconsistent term references in translated message. original: [':class:`set`', ':class:`list`', ':class:`tuple`', ':class:`dict`', ':mod:`collections`'], translated: [':class:`set`', ':class:`list`', ':class:`dict`', ':mod:`collections`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1040: WARNING: inconsistent term references in translated message. original: [':class:`int`', ':meth:`base.__index__ `', ':meth:`base.__int__ `', ':meth:`base.__index__\n`'], translated: [':class:`int`', ':meth:`base.__index__ `', ':meth:`base.__int__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1144: WARNING: inconsistent term references in translated message. original: [':class:`list`', ':ref:`typesseq-list`', ':ref:`typesseq`'], translated: [':class:`list`', ':ref:`typesseq-list`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1792: WARNING: inconsistent term references in translated message. original: [':class:`set`', ':class:`set`', ':ref:`types-set`'], translated: [':class:`set`', ':ref:`types-set`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:1878: WARNING: inconsistent term references in translated message. original: [':ref:`sortinghowto`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functools.rst:146: WARNING: inconsistent term references in translated message. original: [':ref:`sortinghowto`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:205::1: WARNING: undefined label: 'buffer interface' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/functions.rst:962::1: WARNING: undefined label: 'auditing event' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:921::1: WARNING: undefined label: 'tuttuples' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:1134::1: WARNING: undefined label: 'tut-firstclass' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/datastructures.rst:335::1: WARNING: undefined label: 'tut-unpacking-argumen' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:368::1: WARNING: undefined label: 'tut-class' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/index.rst:40::1: WARNING: undefined label: 'glosarium' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:251::1: WARNING: unknown keyword: 'garbage collection' [ref.keyword]
diff --git a/warnings-it.txt b/warnings-it.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-ja.txt b/warnings-ja.txt
new file mode 100644
index 000000000..5af345ffc
--- /dev/null
+++ b/warnings-ja.txt
@@ -0,0 +1,316 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:109: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`PyArg_ParseTuple`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:182: WARNING: inconsistent term references in translated message. original: [':c:func:`malloc`', ':c:func:`malloc`', ':c:func:`realloc`', ':c:func:`PyErr_NoMemory`', ':c:func:`PyLong_FromLong`', ':c:func:`malloc`'], translated: [':c:func:`malloc`', ':c:func:`malloc`', ':c:func:`realloc`', ':c:func:`PyErr_NoMemory`', ':c:func:`PyLong_FromLong`', ':c:func:`PyErr_NoMemory`', ':c:func:`malloc`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:585: WARNING: inconsistent term references in translated message. original: [':c:func:`PyObject_CallObject`', ':c:func:`PyErr_Clear`'], translated: [':c:func:`Py_DECREF`', ':c:func:`PyObject_CallObject`', ':c:func:`PyErr_Clear`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:653: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`PyArg_ParseTuple`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:813: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`Py_BuildValue`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:818: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`'], translated: [':c:func:`Py_BuildValue`', ':c:func:`PyArg_ParseTuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:823: WARNING: inconsistent term references in translated message. original: [':c:func:`PyArg_ParseTuple`', ':c:func:`Py_BuildValue`'], translated: [':c:func:`PyArg_ParseTuple`', ':c:func:`PyArg_ParseTuple`', ':c:func:`Py_BuildValue`', ':c:func:`Py_BuildValue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/extending/extending.rst:961: WARNING: inconsistent term references in translated message. original: [':c:func:`Py_INCREF`'], translated: [':c:func:`Py_INCREF`', ':c:func:`Py_INCREF`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:91: WARNING: inconsistent term references in translated message. original: [':term:`asynchronous generator iterator`', ':keyword:`async def`', ':keyword:`yield`', ':keyword:`async for`'], translated: [':term:`asynchronous generator iterator`', ':keyword:`async def`', ':keyword:`yield`', ':keyword:`yield`', ':keyword:`async for`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:544: WARNING: inconsistent term references in translated message. original: [':term:`generator iterator`', ':keyword:`yield`', ':func:`next`'], translated: [':term:`generator iterator`', ':keyword:`yield`', ':keyword:`yield`', ':func:`next`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:800: WARNING: inconsistent term references in translated message. original: [':keyword:`if`'], translated: [':keyword:`if`', ':keyword:`if`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:983: WARNING: inconsistent term references in translated message. original: [':term:`function`', ':term:`argument`'], translated: [':term:`関数 `', ':term:`メソッド `', ':term:`実引数 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/argparse.rst:11: WARNING: inconsistent term references in translated message. original: [':mod:`argparse`'], translated: [':mod:`argparse`', ':mod:`argparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/typeobj.rst:961: WARNING: inconsistent term references in translated message. original: [':func:`str`', ':class:`str`', ':func:`str`', ':c:func:`PyObject_Str`', ':c:func:`PyObject_Str`'], translated: [':func:`str`', ':class:`str`', ':func:`str`', ':class:`str`', ':c:func:`PyObject_Str`', ':c:func:`PyObject_Str`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/c-api/typeobj.rst:1498: WARNING: inconsistent term references in translated message. original: [':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`'], translated: [':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`', ':c:member:`~PyTypeObject.tp_clear`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/enum.rst:1089: WARNING: inconsistent term references in translated message. original: [':func:`dir`'], translated: [':func:`dir`', ':func:`dir`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/functional.rst:726: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`zip`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/logging-cookbook.rst:858: WARNING: inconsistent term references in translated message. original: [':class:`Logger`', ':class:`Logger`', ':class:`Logger`'], translated: [':class:`Logger`', ':class:`Logger`', ':class:`Logger`', ':class:`Logger`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/argparse.rst:986: WARNING: inconsistent references in translated message. original: ['type_', 'default_'], translated: ['type_', 'default_', 'default_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/array.rst:129: WARNING: inconsistent term references in translated message. original: [':ref:`bufferobjects`'], translated: [':meth:`buffer_info`', ':ref:`bufferobjects`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/asyncio-dev.rst:89: WARNING: inconsistent term references in translated message. original: [':func:`run_coroutine_threadsafe`', ':class:`concurrent.futures.Future`'], translated: [':func:`run_coroutine_threadsafe`', ':func:`run_coroutine_threadsafe`', ':class:`concurrent.futures.Future`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:433: WARNING: inconsistent term references in translated message. original: [':keyword:`pass`'], translated: [':keyword:`pass`', ':keyword:`pass`', ':keyword:`pass`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:700: WARNING: inconsistent term references in translated message. original: [], translated: [':keyword:`break`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:728: WARNING: inconsistent term references in translated message. original: [':keyword:`continue`', ':keyword:`for`', ':keyword:`while`'], translated: [':keyword:`continue`', ':keyword:`for`', ':keyword:`while`', ':keyword:`continue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/simple_stmts.rst:922: WARNING: inconsistent term references in translated message. original: [':mod:`__future__`'], translated: [':mod:`__future__`', ':mod:`__future__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/toplevel_components.rst:28: WARNING: inconsistent term references in translated message. original: [':mod:`sys`', ':mod:`builtins`', ':mod:`__main__`'], translated: [':mod:`sys`', ':mod:`builtins`', ':mod:`__main__`', ':mod:`__main__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:556::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:51: WARNING: inconsistent term references in translated message. original: [':keyword:`for`'], translated: [':keyword:`for`', ':keyword:`for`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:259: WARNING: inconsistent term references in translated message. original: [':keyword:`pass`'], translated: [':keyword:`pass`', ':keyword:`pass`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:482: WARNING: inconsistent term references in translated message. original: [':keyword:`def`'], translated: [':keyword:`def`', ':keyword:`def`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/controlflow.rst:556::1: WARNING: Inline emphasis start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/errors.rst:217: WARNING: inconsistent term references in translated message. original: [':keyword:`try`', ':keyword:`except`'], translated: [':keyword:`try`', ':keyword:`except`', ':keyword:`else`', ':keyword:`except`', ':keyword:`else`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/inputoutput.rst:263: WARNING: inconsistent term references in translated message. original: [':func:`print`'], translated: [':func:`print`', ':func:`print`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/interactive.rst:19: WARNING: inconsistent term references in translated message. original: [':ref:`automatically enabled `', ':meth:`~object.__getattr__`'], translated: [':ref:`自動的に有効化されます `', ':meth:`~object.__getattr__`', ':meth:`~object.__getattr__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/introduction.rst:544: WARNING: inconsistent term references in translated message. original: [':func:`print`'], translated: [':func:`print`', ':func:`print`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/modules.rst:309: WARNING: inconsistent term references in translated message. original: [':func:`dir`'], translated: [':func:`dir`', ':func:`dir`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib.rst:66: WARNING: inconsistent term references in translated message. original: [':mod:`sys`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:53: WARNING: inconsistent term references in translated message. original: [':mod:`locale`'], translated: [':mod:`locale`', ':mod:`locale`', ':func:`format`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:103: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`~string.Template`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:198: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`threading`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:234: WARNING: inconsistent term references in translated message. original: [':const:`~logging.DEBUG`', ':const:`~logging.INFO`', ':const:`~logging.WARNING`', ':const:`~logging.ERROR`', ':const:`~logging.CRITICAL`'], translated: [':meth:`~logging.Logger.info`', ':meth:`~logging.Logger.debug`', ':const:`~logging.DEBUG`', ':const:`~logging.INFO`', ':const:`~logging.WARNING`', ':const:`~logging.ERROR`', ':const:`~logging.CRITICAL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/tutorial/stdlib2.rst:380: WARNING: inconsistent term references in translated message. original: [':class:`~decimal.Decimal`'], translated: [':class:`~decimal.Decimal`', ':class:`~decimal.Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:161: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:299: WARNING: inconsistent term references in translated message. original: [], translated: [':keyword:`if`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:411: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.0.rst:1103: WARNING: inconsistent term references in translated message. original: [':mod:`mmap`', ':mod:`re`'], translated: [':mod:`mmap`', ':term:`mutable`', ':mod:`re`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.2.rst:571: WARNING: inconsistent term references in translated message. original: [':keyword:`yield`', ':keyword:`return`', ':keyword:`try`', ':keyword:`finally`'], translated: [':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:43: WARNING: inconsistent term references in translated message. original: [':class:`Set`'], translated: [':class:`Set`', ':term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:156: WARNING: inconsistent term references in translated message. original: [':keyword:`yield`', ':keyword:`return`', ':keyword:`try`'], translated: [':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`', ':keyword:`finally`', ':keyword:`try`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:291: WARNING: inconsistent term references in translated message. original: [':mod:`zipimport`'], translated: [':mod:`zipimport`', ':mod:`zipimport`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:344: WARNING: inconsistent term references in translated message. original: [':func:`open`', ':func:`os.listdir`'], translated: [':func:`open`', ':func:`os.listdir`', ':func:`os.getcwdu`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:888: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:1698: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:1720: WARNING: inconsistent term references in translated message. original: [':meth:`~datetime.datetime.isoformat`', ':class:`~datetime.date`', ':class:`~datetime.datetime`', ':class:`~datetime.timedelta`', ':class:`~datetime.date`', ':class:`~datetime.datetime`'], translated: [':meth:`~datetime.datetime.isoformat`', ':class:`~datetime.datetime`', ':class:`~datetime.timedelta`', ':class:`~datetime.date`', ':class:`~datetime.datetime`', ':class:`~datetime.date`', ':class:`~datetime.datetime`', ':class:`~datetime.datetime`', ':meth:`~datetime.strptime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.3.rst:1736: WARNING: inconsistent term references in translated message. original: [':mod:`getopt`', ':mod:`optparse`'], translated: [':mod:`getopt`', ':mod:`optparse`', ':mod:`optparse`', ':mod:`argparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.4.rst:71: WARNING: inconsistent term references in translated message. original: [':func:`frozenset`', ':func:`set`'], translated: [':func:`frozenset`', ':func:`set`', ':term:`immutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.4.rst:75: WARNING: inconsistent term references in translated message. original: [':mod:`sets`', ':class:`Set`', ':class:`ImmutableSet`'], translated: [':mod:`sets`', ':class:`Set`', ':class:`ImmutableSet`', ':mod:`sets`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.4.rst:545: WARNING: inconsistent term references in translated message. original: [':class:`Decimal`', ':class:`Decimal`'], translated: [':class:`Decimal`', ':term:`immutable`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:504: WARNING: inconsistent term references in translated message. original: [':meth:`close`', ':exc:`GeneratorExit`', ':exc:`GeneratorExit`', ':exc:`StopIteration`', ':exc:`GeneratorExit`', ':exc:`RuntimeError`', ':meth:`close`'], translated: [':meth:`close`', ':exc:`GeneratorExit`', ':exc:`GeneratorExit`', ':exc:`StopIteration`', ':exc:`RuntimeError`', ':meth:`close`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:848: WARNING: inconsistent term references in translated message. original: [':exc:`BaseException`', ':exc:`BaseException`', ':exc:`Exception`'], translated: [':exc:`BaseException`', ':exc:`BaseException`', ':exc:`Exception`', ':exc:`BaseException`', ':exc:`BaseException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:1081: WARNING: inconsistent term references in translated message. original: [':class:`UnicodeDecodeError`', ':class:`UnicodeDecodeError`'], translated: [':class:`UnicodeDecodeError`', ':class:`UnicodeDecodeError`', ':class:`UnicodeDecodeError`', ':class:`UnicodeWarning`', ':exc:`KeyError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:1706: WARNING: inconsistent term references in translated message. original: [':func:`c_char_p`', ':func:`create_string_buffer`'], translated: [':func:`c_char_p`', ':term:`immutable`', ':func:`create_string_buffer`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.5.rst:1998: WARNING: inconsistent term references in translated message. original: [':meth:`fetchone`', ':meth:`fetchall`'], translated: [':term:`iterator`', ':meth:`~Cursor.fetchone`', ':meth:`~Cursor.fetchall`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:984: WARNING: inconsistent term references in translated message. original: [':class:`bytes`', ':class:`bytearray`'], translated: [':class:`bytes`', ':term:`immutable`', ':class:`bytearray`', ':term:`mutable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:999: WARNING: inconsistent term references in translated message. original: [':meth:`startswith`', ':meth:`endswith`', ':meth:`find`', ':meth:`rfind`', ':meth:`append`', ':meth:`pop`', ':meth:`reverse`'], translated: [':class:`bytearray`', ':meth:`startswith`', ':meth:`endswith`', ':meth:`find`', ':meth:`rfind`', ':meth:`append`', ':meth:`pop`', ':meth:`reverse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:1490: WARNING: inconsistent term references in translated message. original: [':func:`hasattr`', ':meth:`__getattr__`', ':func:`hasattr`', ':exc:`KeyboardInterrupt`', ':exc:`SystemExit`', ':func:`hasattr`'], translated: [':func:`hasattr`', ':meth:`__getattr__`', ':exc:`KeyboardInterrupt`', ':exc:`SystemExit`', ':func:`hasattr`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:1531: WARNING: inconsistent term references in translated message. original: [':meth:`index`', ':meth:`count`', ':meth:`index`', ':meth:`count`'], translated: [':meth:`index`', ':meth:`count`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/2.6.rst:1954: WARNING: inconsistent term references in translated message. original: [':func:`reduce`', ':mod:`functools`', ':func:`reduce`', ':mod:`functools`'], translated: [':func:`reduce`', ':mod:`functools`', ':mod:`functools`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.rst:117: WARNING: inconsistent references in translated message. original: ['`ZIP bomb`_'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:406: WARNING: inconsistent term references in translated message. original: [':class:`NodeList`', ':class:`Element`', ':meth:`getElementsByTagName`', ':meth:`getElementsByTagNameNS`', ':class:`Node`'], translated: [':class:`NodeList`', ':class:`Element`', ':class:`NodeList`', ':class:`Node`', ':meth:`getElementsByTagName`', ':meth:`getElementsByTagNameNS`', ':class:`NodeList`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:505: WARNING: inconsistent term references in translated message. original: [':class:`Document`', ':class:`Node`'], translated: [':class:`Document`', ':class:`Document`', ':class:`Node`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:585: WARNING: inconsistent term references in translated message. original: [':class:`Element`', ':class:`Node`'], translated: [':class:`Element`', ':class:`Node`', ':class:`Node`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.rst:746: WARNING: inconsistent term references in translated message. original: [':class:`Comment`', ':class:`Node`'], translated: [':class:`Comment`', ':class:`Comment`', ':class:`Node`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.dom.minidom.rst:113: WARNING: inconsistent term references in translated message. original: [':mod:`xml.dom`', ':mod:`xml.dom.minidom`'], translated: [':mod:`xml.dom`', ':mod:`xml.dom`', ':mod:`xml.dom.minidom`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.etree.elementtree.rst:90: WARNING: inconsistent term references in translated message. original: [':func:`fromstring`', ':class:`Element`', ':class:`ElementTree`'], translated: [':func:`fromstring`', ':class:`Element`', ':class:`Element`', ':class:`ElementTree`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.sax.reader.rst:183: WARNING: inconsistent term references in translated message. original: [':exc:`SAXNotRecognizedException`'], translated: [':exc:`SAXNotRecognizedException`', ':exc:`SAXNotSupportedException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xml.sax.reader.rst:197: WARNING: inconsistent term references in translated message. original: [':exc:`SAXNotRecognizedException`'], translated: [':exc:`SAXNotRecognizedException`', ':exc:`SAXNotSupportedException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xmlrpc.client.rst:527: WARNING: inconsistent term references in translated message. original: [':exc:`Fault`', ':const:`None`'], translated: [':exc:`Fault`', ':const:`None`', ':const:`None`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xmlrpc.server.rst:100: WARNING: inconsistent term references in translated message. original: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`'], translated: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/xmlrpc.server.rst:314: WARNING: inconsistent term references in translated message. original: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`'], translated: [':meth:`register_function`', ':meth:`_dispatch`', ':meth:`_dispatch`', ':meth:`_dispatch`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/zipimport.rst:50: WARNING: inconsistent term references in translated message. original: [':mod:`importlib`'], translated: [':mod:`importlib`', ':keyword:`import`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:99: WARNING: inconsistent term references in translated message. original: [':ref:`booleans`', ':keyword:`if`', ':keyword:`else`'], translated: [':keyword:`if`', ':ref:`booleans`', ':keyword:`if`', ':keyword:`else`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:124: WARNING: inconsistent term references in translated message. original: [], translated: [':keyword:`while`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:259: WARNING: inconsistent term references in translated message. original: [':keyword:`try`'], translated: [':keyword:`except`', ':keyword:`try`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/compound_stmts.rst:442: WARNING: inconsistent term references in translated message. original: [':keyword:`return`', ':keyword:`break`', ':keyword:`continue`', ':keyword:`try`'], translated: [':keyword:`try`', ':keyword:`try`', ':keyword:`return`', ':keyword:`break`', ':keyword:`continue`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:44: WARNING: inconsistent term references in translated message. original: [':func:`type`'], translated: [':func:`len`', ':func:`type`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:1893: WARNING: inconsistent term references in translated message. original: [':meth:`__new__`', ':meth:`__init__`', ':meth:`__init__`'], translated: [':meth:`__new__`', ':meth:`__init__`', ':meth:`__init__`', ':meth:`__init__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:1913: WARNING: inconsistent term references in translated message. original: [':meth:`__del__`', ':meth:`__del__`'], translated: [':meth:`__del__`', ':meth:`__del__`', ':meth:`__del__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/datamodel.rst:2239: WARNING: inconsistent term references in translated message. original: [':meth:`__getattr__`', ':meth:`__getattribute__`', ':exc:`AttributeError`', ':exc:`AttributeError`'], translated: [':meth:`__getattr__`', ':meth:`__getattr__`', ':meth:`__getattribute__`', ':exc:`AttributeError`', ':exc:`AttributeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/executionmodel.rst:81: WARNING: inconsistent term references in translated message. original: [':keyword:`del`'], translated: [':keyword:`del`', ':keyword:`del`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/executionmodel.rst:357: WARNING: inconsistent term references in translated message. original: [':keyword:`raise`', ':keyword:`try`', ':keyword:`except`', ':keyword:`finally`'], translated: [':keyword:`raise`', ':keyword:`try`', ':keyword:`except`', ':keyword:`try`', ':keyword:`finally`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/expressions.rst:1756: WARNING: inconsistent term references in translated message. original: [':keyword:`is`', ':keyword:`is not`', ':meth:`id`'], translated: [':keyword:`is`', ':keyword:`is not`', ':meth:`id`', ':keyword:`is`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/import.rst:225: WARNING: inconsistent term references in translated message. original: [':term:`import path`', ':term:`import path`'], translated: [':doc:`プログラミング FAQ <../faq/programming>`', ':term:`インポートパス `', ':term:`インポートパス `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/reference/import.rst:427: WARNING: inconsistent term references in translated message. original: [':exc:`ImportError`', ':meth:`~importlib.abc.Loader.exec_module`'], translated: [':meth:`~importlib.abc.Loader.exec_module`', ':exc:`ImportError`', ':exc:`ImportError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:402: WARNING: inconsistent term references in translated message. original: [':meth:`~Thread.start`', ':meth:`~Thread.run`'], translated: [':meth:`~Thread.start`', ':meth:`start`', ':meth:`~Thread.run`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:437: WARNING: inconsistent term references in translated message. original: [':ref:`joined `'], translated: [':mod:`threading`', ':ref:`join `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:485: WARNING: inconsistent term references in translated message. original: [':meth:`~Thread.run`'], translated: [':meth:`~Thread.start`', ':meth:`~Thread.run`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:909: WARNING: inconsistent term references in translated message. original: [':class:`RLock`', ':meth:`release`', ':class:`RLock`'], translated: [':class:`RLock`', ':meth:`release`', ':meth:`release`', ':class:`RLock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:960: WARNING: inconsistent term references in translated message. original: [':meth:`wait`', ':meth:`notify`'], translated: [':meth:`wait`', ':meth:`notify`', ':meth:`notify`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:1035: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`release`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:1069: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`acquire`', ':meth:`release`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/threading.rst:1098: WARNING: inconsistent term references in translated message. original: [':meth:`~Event.set`', ':meth:`clear`', ':meth:`wait`'], translated: [':meth:`~Event.set`', ':const:`True`', ':meth:`clear`', ':const:`False`', ':meth:`wait`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/time.rst:597: WARNING: inconsistent term references in translated message. original: [':func:`strftime`', ':func:`ctime`', ':exc:`ValueError`'], translated: [':func:`strftime`', ':func:`ctime`', ':exc:`ValueError`', ':exc:`ValueError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/time.rst:684: WARNING: inconsistent term references in translated message. original: [':func:`mktime`', ':attr:`tm_isdst`'], translated: [':func:`mktime`', ':attr:`tm_isdst`', ':attr:`tm_isdst`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/time.rst:688: WARNING: inconsistent term references in translated message. original: [':class:`struct_time`', ':exc:`TypeError`'], translated: [':class:`struct_time`', ':class:`struct_time`', ':class:`struct_time`', ':exc:`TypeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/tkinter.rst:758: WARNING: inconsistent term references in translated message. original: [':meth:`_root`'], translated: [':meth:`_root`', ':mod:`Tkinter`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/tkinter.ttk.rst:760: WARNING: inconsistent term references in translated message. original: [':class:`Sizegrip`'], translated: [':class:`Sizegrip`', ':class:`Sizegrip`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/typing.rst:1149: WARNING: inconsistent term references in translated message. original: [':ref:`union type expressions`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:399: WARNING: inconsistent term references in translated message. original: [':meth:`~TestCase.setUp`'], translated: [':meth:`~TestCase.setUp`', ':meth:`~TestCase.setUp`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:727: WARNING: inconsistent term references in translated message. original: [':class:`TestCase`', ':mod:`unittest`'], translated: [':class:`TestCase`', ':mod:`unittest`', ':class:`TestCase`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:813: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`TestCase`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1407: WARNING: inconsistent term references in translated message. original: [':exc:`AssertionError`'], translated: [':meth:`test`', ':exc:`AssertionError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1811: WARNING: inconsistent term references in translated message. original: [':class:`TestCase`'], translated: [':class:`TestCase`', ':meth:`loadTestsFromModule`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1845: WARNING: inconsistent term references in translated message. original: [':mod:`SampleTests`', ':class:`TestCase`', ':class:`SampleTestCase`', ':meth:`test_one`', ':meth:`test_two`', ':meth:`test_three`', ':meth:`test_two`'], translated: [':mod:`SampleTests`', ':class:`TestCase`', ':class:`SampleTestCase`', ':class:`SampleTestCase`', ':meth:`test_one`', ':meth:`test_two`', ':meth:`test_three`', ':class:`SampleTestCase`', ':meth:`test_two`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:1995: WARNING: inconsistent term references in translated message. original: [':mod:`unittest`', ':class:`TestResult`', ':class:`TestResult`', ':meth:`TestRunner.run`'], translated: [':mod:`unittest`', ':meth:`TestRunner.run`', ':class:`TestResult`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:2082: WARNING: inconsistent term references in translated message. original: [':attr:`shouldStop`', ':class:`TestRunner`'], translated: [':class:`TestResult`', ':attr:`shouldStop`', ':class:`TestRunner`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.rst:2212: WARNING: inconsistent term references in translated message. original: [':class:`TestLoader`', ':class:`TestLoader`'], translated: [':class:`TestLoader`', ':class:`TestLoader`', ':class:`TestLoader`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.mock.rst:59: WARNING: inconsistent term references in translated message. original: [':class:`Mock`', ':class:`MagicMock`'], translated: [':class:`Mock`', ':class:`MagicMock`', ':class:`Mock`', ':class:`MagicMock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.mock.rst:156: WARNING: inconsistent term references in translated message. original: [':class:`MagicMock`'], translated: [':class:`MagicMock`', ':class:`Mock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/unittest.mock.rst:1444: WARNING: inconsistent term references in translated message. original: [':class:`MagicMock`'], translated: [':class:`MagicMock`', ':class:`MagicMock`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/urllib.request.rst:661: WARNING: inconsistent term references in translated message. original: [':func:`urlopen`', ':meth:`open`', ':class:`OpenerDirector`'], translated: [':func:`urlopen`', ':func:`urlopen`', ':class:`OpenerDirector`', ':meth:`open`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/platform.rst:82: WARNING: inconsistent term references in translated message. original: [':func:`mac_ver`'], translated: [':func:`mac_ver`', ':func:`mac_ver`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/poplib.rst:22: WARNING: inconsistent term references in translated message. original: [':class:`POP3_SSL`'], translated: [':class:`POP3_SSL`', ':class:`POP3_SSL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:356: WARNING: inconsistent term references in translated message. original: [':mod:`profile`', ':mod:`cProfile`', ':class:`~pstats.Stats`', ':meth:`~pstats.Stats.add`'], translated: [':class:`Stats`', ':mod:`profile`', ':mod:`cProfile`', ':class:`~pstats.Stats`', ':meth:`~pstats.Stats.add`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:679: WARNING: inconsistent term references in translated message. original: [':class:`profile.Profile`', ':class:`cProfile.Profile`'], translated: [':func:`your_time_func`', ':class:`profile.Profile`', ':class:`cProfile.Profile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:684: WARNING: inconsistent term references in translated message. original: [':func:`os.times`'], translated: [':func:`your_time_func`', ':func:`os.times`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/profile.rst:700: WARNING: inconsistent term references in translated message. original: [':class:`Profile`'], translated: [':func:`your_time_func`', ':class:`Profile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pyexpat.rst:520: WARNING: inconsistent term references in translated message. original: [':attr:`DefaultHandler`'], translated: [':attr:`DefaultHandler`', ':attr:`DefaultHandler`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/readline.rst:12: WARNING: inconsistent term references in translated message. original: [':mod:`readline`', ':mod:`rlcompleter`', ':func:`input`'], translated: [':mod:`readline`', ':mod:`rlcompleter`', ':mod:`rlcompleter`', ':func:`input`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/secrets.rst:24: WARNING: inconsistent term references in translated message. original: [':mod:`secrets`', ':mod:`random`'], translated: [':mod:`random`', ':mod:`secrets`', ':mod:`random`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/gettext.rst:132: WARNING: inconsistent term references in translated message. original: [':envvar:`LANGUAGE`', ':envvar:`LC_ALL`', ':envvar:`LC_MESSAGES`', ':envvar:`LANG`'], translated: [':envvar:`LANGUAGE`', ':envvar:`LC_ALL`', ':envvar:`LC_MESSAGES`', ':envvar:`LANG`', ':func:`find`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/http.cookiejar.rst:630: WARNING: inconsistent term references in translated message. original: [':const:`None`', ':attr:`version`', ':mod:`http.cookiejar`', ':attr:`version`'], translated: [':const:`None`', ':mod:`http.cookiejar`', ':attr:`version`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/http.server.rst:27: WARNING: inconsistent term references in translated message. original: [':class:`HTTPServer`', ':class:`socketserver.TCPServer`'], translated: [':class:`HTTPServer`', ':class:`socketserver.TCPServer`', ':class:`HTTPServer`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/importlib.rst:193: WARNING: inconsistent term references in translated message. original: [':keyword:`from`', ':keyword:`import`', ':func:`reload`'], translated: [':keyword:`from`', ':keyword:`import`', ':func:`reload`', ':keyword:`from`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/importlib.rst:416: WARNING: inconsistent term references in translated message. original: [':exc:`ImportError`'], translated: [':class:`code`', ':exc:`ImportError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/importlib.rst:1439: WARNING: inconsistent term references in translated message. original: [':class:`~importlib.machinery.ModuleSpec`', ':term:`loader`', ':meth:`InspectLoader.is_package`'], translated: [':class:`~importlib.machinery.ModuleSpec`', ':term:`loader`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/io.rst:263: WARNING: inconsistent term references in translated message. original: [':class:`IOBase`', ':exc:`UnsupportedOperation`'], translated: [':class:`IOBase`', ':class:`IOBase`', ':exc:`UnsupportedOperation`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/itertools.rst:758: WARNING: inconsistent term references in translated message. original: [':func:`list`', ':func:`tee`'], translated: [':func:`tee`', ':func:`tee`', ':func:`list`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/shlex.rst:299: WARNING: inconsistent term references in translated message. original: [':meth:`~io.IOBase.close`'], translated: [':const:`None`', ':meth:`~io.IOBase.close`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/shutil.rst:310: WARNING: inconsistent term references in translated message. original: [':func:`rmtree`', ':func:`rmtree`', ':data:`rmtree.avoids_symlink_attacks`'], translated: [':func:`rmtree`', ':func:`rmtree`', ':func:`rmtree`', ':data:`rmtree.avoids_symlink_attacks`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/signal.rst:291: WARNING: inconsistent term references in translated message. original: [], translated: [':const:`SIGVTALRM`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/signal.rst:297: WARNING: inconsistent term references in translated message. original: [], translated: [':const:`SIGPROF`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/site.rst:165: WARNING: inconsistent term references in translated message. original: [':mod:`readline`', ':mod:`rlcompleter`', ':ref:`interactive mode `', ':option:`-S`', ':data:`sys.__interactivehook__`', ':mod:`sitecustomize`', ':mod:`usercustomize`', ':envvar:`PYTHONSTARTUP`'], translated: [':mod:`readline`', ':ref:`対話モード `', ':option:`-S`', ':mod:`rlcompleter`', ':mod:`sitecustomize`', ':mod:`usercustomize`', ':envvar:`PYTHONSTARTUP`', ':data:`sys.__interactivehook__`', ':data:`~sys.__interactivehook__`', ':mod:`sitecustomize`', ':data:`~sys.__interactivehook__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:729: WARNING: inconsistent term references in translated message. original: [':const:`AF_INET`', ':const:`AF_INET6`', ':const:`AF_UNIX`', ':const:`AF_CAN`', ':const:`AF_PACKET`', ':const:`AF_RDS`', ':const:`SOCK_STREAM`', ':const:`SOCK_DGRAM`', ':const:`SOCK_RAW`', ':const:`AF_CAN`', ':const:`CAN_RAW`', ':const:`CAN_BCM`', ':const:`CAN_ISOTP`', ':const:`CAN_J1939`'], translated: [':const:`AF_INET`', ':const:`AF_INET6`', ':const:`AF_UNIX`', ':const:`AF_CAN`', ':const:`AF_PACKET`', ':const:`AF_RDS`', ':const:`SOCK_STREAM`', ':const:`SOCK_DGRAM`', ':const:`SOCK_RAW`', ':const:`AF_CAN`', ':const:`CAN_BCM`', ':const:`CAN_ISOTP`', ':const:`CAN_J1939`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:1022: WARNING: inconsistent term references in translated message. original: [':func:`gethostbyname_ex`', ':func:`gethostbyname`', ':func:`getaddrinfo`'], translated: [':func:`gethostbyname`', ':func:`gethostbyname_ex`', ':func:`gethostbyname`', ':func:`getaddrinfo`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:1432: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`継承不可 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:1526: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`継承不可 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/socket.rst:2091: WARNING: inconsistent term references in translated message. original: [':func:`getdefaulttimeout`', ':const:`None`', ':meth:`~socket.accept`'], translated: [':func:`getdefaulttimeout`', ':const:`None`', ':meth:`~socket.accept`', ':const:`None`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:172: WARNING: inconsistent term references in translated message. original: [':class:`list`'], translated: [':class:`タプル `', ':class:`リスト `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:1711: WARNING: inconsistent term references in translated message. original: [':class:`tuple`', ':class:`sqlite3.Row`', ':term:`callable`', ':class:`Cursor`'], translated: [':class:`カーソル `', ':class:`タプル `', ':class:`sqlite3.Row`', ':class:`Cursor`', ':class:`タプル `', ':term:`呼び出し可能オブジェクト `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:1718: WARNING: inconsistent term references in translated message. original: [':attr:`Connection.row_factory`', ':attr:`Connection.row_factory`'], translated: [':class:`カーソル・オブジェクト `', ':attr:`Connection.row_factory`', ':attr:`Connection.row_factory`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2404: WARNING: inconsistent term references in translated message. original: [':class:`Connection`', ':keyword:`with`', ':attr:`~Connection.autocommit`'], translated: [':class:`Connection`', ':keyword:`with`', ':keyword:`with`', ':attr:`~Connection.autocommit`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2505: WARNING: inconsistent term references in translated message. original: [':class:`tuple`', ':class:`sqlite3.Row`', ':attr:`~Cursor.row_factory`'], translated: [':class:`タプル `', ':class:`タプル `', ':class:`sqlite3.Row`', ':attr:`~Cursor.row_factory`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2515: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`タプル `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2557: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`タプル `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:2707: WARNING: inconsistent term references in translated message. original: [':attr:`Connection.autocommit`', ':data:`LEGACY_TRANSACTION_CONTROL`', ':attr:`Connection.isolation_level`'], translated: [':attr:`Connection.autocommit`', ':data:`LEGACY_TRANSACTION_CONTROL`', ':attr:`Connection.isolation_level`', ':data:`LEGACY_TRANSACTION_CONTROL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3206: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`bytearray.isspace`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3262: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`bytearray.isspace`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3339: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`bytearray.isspace`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:3946: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`~memoryview.format`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:4401: WARNING: inconsistent term references in translated message. original: [':class:`set`'], translated: [':class:`set`', ':class:`frozenset`', ':class:`set`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:4410: WARNING: inconsistent term references in translated message. original: [':term:`hashable`', ':class:`frozenset`'], translated: [':class:`set`', ':class:`frozenset`', ':term:`ハッシュ可能 `', ':class:`frozenset`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:4570: WARNING: inconsistent term references in translated message. original: [':meth:`~object.__contains__`', ':meth:`remove`', ':meth:`discard`'], translated: [':meth:`~object.__contains__`', ':meth:`remove`', ':meth:`discard`', ':class:`frozenset`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:5032: WARNING: inconsistent term references in translated message. original: [':term:`generator`', ':class:`contextlib.contextmanager`', ':class:`contextlib.contextmanager`', ':meth:`~contextmanager.__enter__`', ':meth:`~contextmanager.__exit__`'], translated: [':term:`ジェネレータ `', ':class:`contextlib.contextmanager`', ':term:`デコレータ `', ':class:`contextlib.contextmanager`', ':meth:`~contextmanager.__enter__`', ':meth:`~contextmanager.__exit__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/subprocess.rst:46: WARNING: inconsistent term references in translated message. original: [':ref:`frequently-used-arguments`', ':class:`Popen`'], translated: [':ref:`frequently-used-arguments`', ':class:`Popen`', ':class:`Popen`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/subprocess.rst:353: WARNING: inconsistent term references in translated message. original: [':class:`Popen`'], translated: [':class:`Popen`', ':class:`Popen`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sys.rst:1868: WARNING: inconsistent term references in translated message. original: [':data:`~io.TextIOBase.buffer`', ':data:`stdout`'], translated: [':data:`~io.TextIOBase.buffer`', ':class:`bytes`', ':data:`stdout`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/tarfile.rst:559: WARNING: inconsistent term references in translated message. original: [':class:`TarInfo`', ':class:`io.BufferedReader`', ':const:`None`', ':exc:`KeyError`'], translated: [':class:`TarInfo`', ':class:`io.BufferedReader`', ':const:`None`', ':const:`None`', ':exc:`KeyError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/locale.rst:364: WARNING: inconsistent term references in translated message. original: [':func:`setlocale`'], translated: [':func:`setlocale`', ':func:`setlocale`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/logging.rst:946: WARNING: inconsistent term references in translated message. original: [':class:`LogRecord`', ':func:`getLogRecordFactory`', ':func:`setLogRecordFactory`'], translated: [':class:`LogRecord`', ':func:`getLogRecordFactory`', ':func:`setLogRecordFactory`', ':func:`setLogRecordFactory`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/logging.rst:1303: WARNING: inconsistent term references in translated message. original: [], translated: [':const:`INFO`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/logging.config.rst:30: WARNING: inconsistent term references in translated message. original: [':mod:`logging.config`', ':mod:`logging`', ':mod:`logging`', ':mod:`logging.handlers`'], translated: [':mod:`logging.config`', ':mod:`logging`', ':mod:`logging`', ':mod:`logging`', ':mod:`logging.handlers`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mailbox.rst:165: WARNING: inconsistent term references in translated message. original: [':term:`iterator`', ':class:`Message`'], translated: [':class:`Message`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mailbox.rst:598: WARNING: inconsistent term references in translated message. original: [':meth:`~Mailbox.flush`', ':meth:`~Mailbox.close`'], translated: [':meth:`~Mailbox.flush`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mailbox.rst:877: WARNING: inconsistent term references in translated message. original: [':meth:`~Mailbox.flush`', ':meth:`~Mailbox.close`'], translated: [':meth:`~Mailbox.flush`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/mmap.rst:180: WARNING: inconsistent term references in translated message. original: [], translated: [':exc:`ValueError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/multiprocessing.rst:1330: WARNING: inconsistent term references in translated message. original: [':meth:`Lock.acquire`'], translated: [':class:`threading.BoundedSemaphore`', ':meth:`Lock.acquire`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/multiprocessing.rst:1468: WARNING: inconsistent term references in translated message. original: [':meth:`Lock.acquire`'], translated: [':class:`threading.BoundedSemaphore`', ':meth:`Lock.acquire`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/multiprocessing.rst:2832: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`threading`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:364: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:400: WARNING: inconsistent term references in translated message. original: [':meth:`~OptionParser.parse_args`'], translated: [':meth:`~OptionParser.parse_args`', ':mod:`optionparser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:567: WARNING: inconsistent term references in translated message. original: [':meth:`set_defaults`', ':meth:`~OptionParser.parse_args`'], translated: [':class:`OptionParser`', ':meth:`set_defaults`', ':meth:`~OptionParser.parse_args`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:585: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':attr:`~Option.help`'], translated: [':mod:`optparse`', ':attr:`~Option.help`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:606: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':meth:`parser.print_help`'], translated: [':mod:`optparse`', ':meth:`parser.print_help`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:782: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:788: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':mod:`optparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:868: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':meth:`~OptionParser.exit`', ':meth:`~OptionParser.error`'], translated: [':mod:`optparse`', ':class:`OptionParser`', ':meth:`~OptionParser.exit`', ':meth:`~OptionParser.error`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:981: WARNING: inconsistent term references in translated message. original: [':func:`make_option`'], translated: [':func:`make_option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:983: WARNING: inconsistent term references in translated message. original: [':func:`make_option`'], translated: [':func:`make_option`', ':class:`Option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:987: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:998: WARNING: inconsistent term references in translated message. original: [':func:`make_option`', ':mod:`optparse`', ':func:`make_option`'], translated: [':func:`make_option`', ':class:`Option`', ':class:`Option`', ':mod:`optparse`', ':class:`Option`', ':func:`make_option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1009: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`', ':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1027: WARNING: inconsistent term references in translated message. original: [':attr:`~Option.action`', ':mod:`optparse`', ':exc:`OptionError`'], translated: [':class:`Option`', ':attr:`~Option.action`', ':mod:`optparse`', ':exc:`OptionError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1358: WARNING: inconsistent term references in translated message. original: [':attr:`~Option.help`'], translated: [':class:`OptionParser`', ':attr:`~Option.help`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1367: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`', ':attr:`~Option.help`'], translated: [':mod:`optparse`', ':class:`OptionParser`', ':attr:`~Option.help`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1403: WARNING: inconsistent term references in translated message. original: [':attr:`~Option.help`', ':mod:`optparse`'], translated: [':class:`OptionParser`', ':class:`OptionParser`', ':meth:`print_version`', ':class:`OptionParser`', ':attr:`~Option.help`', ':mod:`optparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1495: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1526: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1531: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1554: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1584: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':mod:`optparse`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1595: WARNING: inconsistent term references in translated message. original: [':mod:`optparse`'], translated: [':mod:`optparse`', ':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1755: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Option`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1772: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`OptionParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1992: WARNING: inconsistent term references in translated message. original: [':attr:`TYPES`'], translated: [':attr:`TYPES`', ':attr:`TYPES`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:1997: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`TYPE_CHECKER`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/optparse.rst:2161: WARNING: inconsistent term references in translated message. original: [':meth:`ensure_value`', ':meth:`ensure_value`'], translated: [':meth:`ensure_value`', ':meth:`ensure_value`', ':meth:`ensure_value`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:420: WARNING: inconsistent term references in translated message. original: [':func:`getpass.getuser`', ':envvar:`LOGNAME`', ':envvar:`USERNAME`'], translated: [':func:`getpass.getuser`', ':func:`getpass.getuser`', ':envvar:`LOGNAME`', ':envvar:`USERNAME`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:1272: WARNING: inconsistent term references in translated message. original: [':func:`open`', ':term:`file object`', ':meth:`~file.read`', ':meth:`~file.write`', ':func:`fdopen`'], translated: [':func:`open`', ':func:`open`', ':meth:`~file.read`', ':meth:`~file.write`', ':term:`ファイルオブジェクト `', ':func:`fdopen`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:1943: WARNING: inconsistent term references in translated message. original: [':data:`os.supports_fd`', ':exc:`NotImplementedError`'], translated: [':data:`os.supports_fd`', ':data:`os.supports_fd`', ':exc:`NotImplementedError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/os.rst:4800: WARNING: inconsistent term references in translated message. original: [':mod:`subprocess`', ':ref:`subprocess-replacements`'], translated: [':mod:`subprocess`', ':mod:`subprocess`', ':mod:`subprocess`', ':ref:`subprocess-replacements`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:31: WARNING: inconsistent term references in translated message. original: [':class:`Path`', ':ref:`concrete path `'], translated: [':class:`Path`', ':class:`Path`', ':ref:`具象パス `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:124: WARNING: inconsistent term references in translated message. original: [':class:`os.PathLike`', ':meth:`~os.PathLike.__fspath__`'], translated: [':class:`os.PathLike`', ':class:`os.PathLike`', ':meth:`~os.PathLike.__fspath__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:667: WARNING: inconsistent term references in translated message. original: [':attr:`name`'], translated: [':attr:`name`', ':attr:`name`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:684: WARNING: inconsistent term references in translated message. original: [':attr:`stem`'], translated: [':attr:`stem`', ':attr:`stem`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/pathlib.rst:987: WARNING: inconsistent term references in translated message. original: [':meth:`~Path.exists`', ':meth:`~Path.is_dir`', ':meth:`~Path.is_file`', ':meth:`~Path.is_mount`', ':meth:`~Path.is_symlink`', ':meth:`~Path.is_block_device`', ':meth:`~Path.is_char_device`', ':meth:`~Path.is_fifo`', ':meth:`~Path.is_socket`'], translated: [':meth:`~Path.exists`', ':meth:`~Path.is_dir`', ':meth:`~Path.is_file`', ':meth:`~Path.is_mount`', ':meth:`~Path.is_symlink`', ':meth:`~Path.is_block_device`', ':meth:`~Path.is_char_device`', ':meth:`~Path.is_socket`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:16: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`'], translated: [':mod:`doctest`', ':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:232: WARNING: inconsistent term references in translated message. original: [':func:`testfile`', ':ref:`doctest-basic-api`'], translated: [':func:`testfile`', ':func:`testfile`', ':ref:`doctest-basic-api`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:348: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:646: WARNING: inconsistent term references in translated message. original: [':const:`IGNORE_EXCEPTION_DETAIL`'], translated: [':mod:`doctest`', ':const:`IGNORE_EXCEPTION_DETAIL`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:901: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`testfile`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1051: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`DocFileSuite`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1165: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`', ':mod:`doctest`', ':mod:`unittest`'], translated: [':mod:`doctest`', ':mod:`unittest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1247: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`DocTest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1303: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Example`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1374: WARNING: inconsistent term references in translated message. original: [':class:`DocTestParser`'], translated: [':class:`DocTest`', ':class:`DocTestParser`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1402: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`DocTestFinder`', ':class:`DocTest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1451: WARNING: inconsistent term references in translated message. original: [':class:`Example`'], translated: [':class:`Example`', ':class:`Example`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1458: WARNING: inconsistent term references in translated message. original: [':class:`Example`', ':class:`Example`'], translated: [':class:`Example`', ':class:`Example`', ':class:`Example`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1661: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1671: WARNING: inconsistent term references in translated message. original: [':mod:`unittest`', ':func:`DocTestSuite`', ':meth:`debug`', ':class:`unittest.TestCase`'], translated: [':func:`DocTestSuite`', ':mod:`unittest`', ':meth:`debug`', ':meth:`debug`', ':class:`unittest.TestCase`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1813: WARNING: inconsistent term references in translated message. original: [':class:`DebugRunner`', ':class:`DebugRunner`'], translated: [':class:`DebugRunner`', ':class:`DebugRunner`', ':class:`DebugRunner`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/doctest.rst:1909: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`doctest`', ':mod:`doctest`', ':mod:`doctest`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/email.header.rst:110: WARNING: inconsistent term references in translated message. original: [], translated: [':exc:`UnicodeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/collections.abc.rst:268: WARNING: inconsistent term references in translated message. original: [':term:`sequences `'], translated: [':term:`シーケンス `', ':term:`シーケンス `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/collections.abc.rst:297: WARNING: inconsistent term references in translated message. original: [':term:`mappings `'], translated: [':term:`マッピング `', ':term:`マッピング `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/concurrent.futures.rst:95: WARNING: inconsistent term references in translated message. original: [':keyword:`with`', ':class:`Executor`', ':meth:`Executor.shutdown`'], translated: [':keyword:`with`', ':keyword:`with`', ':class:`Executor`', ':meth:`Executor.shutdown`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/contextlib.rst:91: WARNING: inconsistent term references in translated message. original: [':func:`contextmanager`', ':class:`ContextDecorator`', ':keyword:`with`', ':func:`contextmanager`'], translated: [':func:`contextmanager`', ':class:`ContextDecorator`', ':func:`contextmanager`', ':keyword:`with`', ':func:`contextmanager`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/curses.rst:153: WARNING: inconsistent term references in translated message. original: [':meth:`~window.noutrefresh`', ':meth:`~window.addstr`', ':meth:`~window.refresh`'], translated: [':meth:`~window.addstr`', ':meth:`~window.noutrefresh`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:66: WARNING: inconsistent term references in translated message. original: [':class:`.datetime`', ':class:`.time`', ':class:`tzinfo`', ':class:`tzinfo`'], translated: [':class:`.datetime`', ':class:`.time`', ':attr:`tzinfo`', ':class:`tzinfo`', ':class:`tzinfo`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:1277: WARNING: inconsistent term references in translated message. original: [':class:`.datetime`', ':exc:`TypeError`'], translated: [':class:`datetime`', ':class:`datetime`', ':exc:`TypeError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:1351: WARNING: inconsistent term references in translated message. original: [':class:`timezone`'], translated: [':class:`timezone`', ':class:`datetime`', ':class:`datetime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:2180: WARNING: inconsistent term references in translated message. original: [':meth:`datetime.astimezone`', ':meth:`fromutc`'], translated: [':meth:`datetime.astimezone`', ':meth:`fromutc`', ':class:`datetime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/datetime.rst:2590: WARNING: inconsistent term references in translated message. original: [':class:`date`', ':class:`date`'], translated: [':class:`date`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/dbm.rst:24: WARNING: inconsistent term references in translated message. original: [':exc:`dbm.error`', ':exc:`dbm.error`'], translated: [':exc:`dbm.error`', ':exc:`dbm.error`', ':exc:`dbm.error`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:54: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:61: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:73: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:88: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:101: WARNING: inconsistent term references in translated message. original: [':const:`Clamped`', ':const:`InvalidOperation`', ':const:`DivisionByZero`', ':const:`Inexact`', ':const:`Rounded`', ':const:`Subnormal`', ':const:`Overflow`', ':const:`Underflow`', ':const:`FloatOperation`'], translated: [':mod:`decimal`', ':const:`Clamped`', ':const:`InvalidOperation`', ':const:`DivisionByZero`', ':const:`Inexact`', ':const:`Rounded`', ':const:`Subnormal`', ':const:`Overflow`', ':const:`Underflow`', ':const:`FloatOperation`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:127: WARNING: inconsistent term references in translated message. original: [':func:`getcontext`'], translated: [':mod:`decimal`', ':func:`getcontext`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:139: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Decimal`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:182: WARNING: inconsistent term references in translated message. original: [], translated: [':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:266: WARNING: inconsistent term references in translated message. original: [':func:`setcontext`'], translated: [':func:`Context`', ':func:`setcontext`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:331: WARNING: inconsistent term references in translated message. original: [':class:`Decimal`'], translated: [':class:`Decimal`', ':class:`Decimal`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:389: WARNING: inconsistent term references in translated message. original: [':const:`InvalidOperation`'], translated: [':const:`InvalidOperation`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:1017: WARNING: inconsistent term references in translated message. original: [':class:`Context`'], translated: [':class:`Context`', ':mod:`decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/decimal.rst:1192: WARNING: inconsistent term references in translated message. original: [':class:`Decimal`', ':class:`Decimal`'], translated: [':class:`Decimal`', ':class:`Decimal`', ':class:`Decimal`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/asyncio-protocol.rst:508: WARNING: inconsistent term references in translated message. original: [':const:`None`'], translated: [':const:`None`', ':const:`None`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/bdb.rst:28: WARNING: inconsistent term references in translated message. original: [':attr:`bpbynumber`', ':attr:`bplist`', ':class:`Breakpoint`'], translated: [':attr:`bpbynumber`', ':attr:`bplist`', ':attr:`bpbynumber`', ':class:`Breakpoint`', ':attr:`bplist`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/codecs.rst:929: WARNING: inconsistent term references in translated message. original: [':term:`text encodings `'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/codecs.rst:1494: WARNING: inconsistent term references in translated message. original: [':mod:`socket`', ':mod:`http.client`', ':mod:`ftplib`', ':mod:`http.client`'], translated: [':mod:`socket`', ':mod:`socket`', ':mod:`http.client`', ':mod:`ftplib`', ':mod:`http.client`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:677: WARNING: inconsistent references in translated message. original: [], translated: ['`Python 2.6 で既にあった変更`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:690: WARNING: inconsistent term references in translated message. original: [':exc:`BaseException`', ':exc:`BaseException`'], translated: [':exc:`BaseException`', ':exc:`BaseException`', ':exc:`BaseException`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:900: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`pyporting-howto`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.0.rst:920: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`pyporting-howto`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.1.rst:68: WARNING: inconsistent term references in translated message. original: [':mod:`configparser`', ':func:`collections.namedtuple`', ':mod:`json`'], translated: [':mod:`configparser`', ':func:`collections.namedtuple`', ':mod:`json`', ':class:`~json.JSONDecoder`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.1.rst:257: WARNING: inconsistent term references in translated message. original: [':mod:`tkinter.ttk`'], translated: [':mod:`tkinter.ttk`', ':mod:`tkinter.ttk`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.1.rst:361: WARNING: inconsistent term references in translated message. original: [':mod:`unittest`'], translated: [':mod:`unittest`', ':class:`TestResult`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:72: WARNING: inconsistent term references in translated message. original: [], translated: [':c:macro:`Py_LIMITED_API`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:521: WARNING: inconsistent term references in translated message. original: [':func:`str`', ':func:`repr`', ':func:`str`', ':func:`repr`'], translated: [':func:`str`', ':func:`repr`', ':func:`str`', ':func:`repr`', ':func:`str`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:594: WARNING: inconsistent term references in translated message. original: [':exc:`ResourceWarning`', ':mod:`warnings`'], translated: [':exc:`ResourceWarning`', ':mod:`warnings`', ':ref:`warning-filter`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:836: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`sortinghowto`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1003: WARNING: inconsistent term references in translated message. original: [':class:`~datetime.timedelta`', ':class:`float`', ':class:`float`', ':class:`int`', ':class:`~datetime.timedelta`'], translated: [':class:`~datetime.timedelta`', ':class:`float`', ':class:`float`', ':class:`int`', ':class:`~datetime.timedelta`', ':class:`~datetime.timedelta`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1270: WARNING: inconsistent term references in translated message. original: [], translated: [':func:`~contextlib.contextmanager`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1630: WARNING: inconsistent term references in translated message. original: [':func:`socket.create_connection`', ':exc:`socket.error`'], translated: [':func:`socket.create_connection`', ':exc:`socket.error`', ':func:`socket.create_connection`', ':class:`socket.socket`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:1885: WARNING: inconsistent term references in translated message. original: [':mod:`inspect`', ':func:`~inspect.getgeneratorstate`'], translated: [':mod:`inspect`', ':func:`~inspect.getgeneratorstate`', ':ref:`yield`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.2.rst:2276: WARNING: inconsistent term references in translated message. original: [':mod:`email`'], translated: [':mod:`email`', ':class:`~email.generator.BytesGenerator`', ':func:`~email.message_from_bytes`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:150: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`buffer-structs`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:155: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`ドキュメント `', ':ref:`バッファ要求のフラグ `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:163: WARNING: inconsistent term references in translated message. original: [], translated: [':ref:`format-characters`', ':attr:`~memoryview.format`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:166: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`~memoryview.cast`', ':term:`contiguous`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:173: WARNING: inconsistent term references in translated message. original: [], translated: [':term:`hashable`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:182: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`次元 `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:184: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`~memoryview.shape`', ':attr:`~memoryview.strides`', ':attr:`~memoryview.suboffsets`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:187: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`~memoryview.cast`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:332: WARNING: inconsistent term references in translated message. original: [':exc:`OSError`', ':exc:`IOError`', ':exc:`EnvironmentError`', ':exc:`WindowsError`', ':exc:`mmap.error`', ':exc:`socket.error`', ':exc:`select.error`', ':exc:`OSError`'], translated: [':exc:`OSError`', ':exc:`IOError`', ':exc:`EnvironmentError`', ':exc:`WindowsError`', ':exc:`mmap.error`', ':exc:`socket.error`', ':exc:`select.error`', ':exc:`OSError`', ':exc:`OSError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:424: WARNING: inconsistent term references in translated message. original: [], translated: [':meth:`~generator.send`', ':meth:`~generator.throw`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1081: WARNING: inconsistent term references in translated message. original: [':class:`~datetime.datetime`', ':const:`False`', ':exc:`TypeError`'], translated: [':class:`~datetime.datetime`', ':class:`~datetime.datetime`', ':exc:`TypeError`', ':const:`False`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1127: WARNING: inconsistent term references in translated message. original: [':exc:`~decimal.FloatOperation`'], translated: [':exc:`~decimal.FloatOperation`', ':ref:`シグナル `', ':ref:`decimal-tutorial`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1265: WARNING: inconsistent term references in translated message. original: [':class:`~email.policy.EmailPolicy`'], translated: [':class:`~email.policy.EmailPolicy`', ':data:`email.policy.default`', ':data:`email.policy.SMTP`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1360: WARNING: inconsistent term references in translated message. original: [':func:`~email.utils.parsedate_to_datetime`', ':class:`~datetime.datetime`', ':class:`~datetime.datetime`'], translated: [':func:`~email.utils.parsedate_to_datetime`', ':class:`~datetime.datetime`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1374: WARNING: inconsistent term references in translated message. original: [':class:`ftplib.FTP`'], translated: [':class:`ftplib.FTP`', ':meth:`~socket.socket.bind`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1504: WARNING: inconsistent term references in translated message. original: [':func:`~logging.basicConfig`'], translated: [':func:`~logging.basicConfig`', ':term:`イテラブル `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1539: WARNING: inconsistent term references in translated message. original: [':class:`multiprocessing.Connection`'], translated: [':meth:`Connection.send`', ':meth:`Connection.recv`', ':class:`multiprocessing.Connection`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1552: WARNING: inconsistent term references in translated message. original: [':meth:`multiprocessing.pool.Pool.starmap`', ':meth:`~multiprocessing.pool.Pool.starmap_async`', ':func:`itertools.starmap`', ':meth:`multiprocessing.pool.Pool.map`', ':meth:`~multiprocessing.pool.Pool.map_async`'], translated: [':func:`map`', ':func:`itertools.starmap`', ':meth:`multiprocessing.pool.Pool.map`', ':meth:`~multiprocessing.pool.Pool.map_async`', ':meth:`multiprocessing.pool.Pool.starmap`', ':meth:`~multiprocessing.pool.Pool.starmap_async`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1843: WARNING: inconsistent term references in translated message. original: [':func:`signal.signal`', ':func:`signal.siginterrupt`'], translated: [':func:`signal.signal`', ':func:`signal.siginterrupt`', ':exc:`OSError`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:1862: WARNING: inconsistent term references in translated message. original: [':class:`~smtplib.SMTP`', ':class:`~smtplib.SMTP_SSL`', ':class:`~smtplib.LMTP`'], translated: [':class:`~smtplib.SMTP`', ':class:`~smtplib.SMTP_SSL`', ':class:`~smtplib.LMTP`', ':meth:`~socket.socket.bind`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.3.rst:2351: WARNING: inconsistent term references in translated message. original: [], translated: [':attr:`sys.platform`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:435: WARNING: inconsistent references in translated message. original: [], translated: ['`Python API の変更`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:761: WARNING: inconsistent term references in translated message. original: [':class:`~dis.Bytecode`', ':meth:`~dis.Bytecode.from_traceback`'], translated: [':class:`~dis.Bytecode`', ':meth:`~dis.Bytecode.from_traceback`', ':class:`~dis.Bytecode`', ':func:`~dis.distb`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:781: WARNING: inconsistent term references in translated message. original: [':mod:`doctest`', ':mod:`argparse`', ':ref:`doctest options\n`', ':mod:`unittest`'], translated: [':mod:`doctest`', ':mod:`argparse`', ':ref:`doctest オプション `', ':mod:`unittest`', ':ref:`サポートされる同じオプション `'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:794: WARNING: inconsistent term references in translated message. original: [':meth:`~email.message.Message.as_string`', ':mod:`~email.generator`'], translated: [':meth:`~email.message.Message.as_string`', ':class:`~email.message.Message`', ':mod:`~email.generator`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1012: WARNING: inconsistent term references in translated message. original: [':mod:`importlib.util`', ':func:`~importlib.util.decode_source`', ':meth:`.InspectLoader.get_source`'], translated: [':mod:`importlib.util`', ':func:`~importlib.util.decode_source`', ':term:`universal newlines`', ':meth:`.InspectLoader.get_source`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1030: WARNING: inconsistent references in translated message. original: [], translated: ['`Python API の変更`_'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1041: WARNING: inconsistent term references in translated message. original: [':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`', ':func:`~inspect.signature`', ':func:`functools.partial`', ':func:`~inspect.signature`', ':func:`~inspect.signature`'], translated: [':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`', ':func:`~inspect.signature`', ':func:`functools.partial`', ':func:`~inspect.signature`', ':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`', ':func:`~inspect.signature`', ':func:`~inspect.signature`', ':func:`~inspect.getfullargspec`', ':func:`~inspect.getargspec`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1353: WARNING: inconsistent term references in translated message. original: [':class:`~shelve.Shelf`', ':keyword:`with`'], translated: [':class:`~shelve.Shelf`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1440: WARNING: inconsistent term references in translated message. original: [':class:`~ssl.SSLContext`', ':meth:`~ssl.SSLContext.load_verify_locations`'], translated: [':class:`~ssl.SSLContext`', ':meth:`~ssl.SSLContext.load_verify_locations`', ':term:`bytes-like object`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1518: WARNING: inconsistent term references in translated message. original: [':func:`~subprocess.check_output`'], translated: [':func:`~subprocess.check_output`', ':func:`~subprocess.run`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1629: WARNING: inconsistent term references in translated message. original: [':class:`~urllib.request.Request`', ':class:`~urllib.request.Request.method`'], translated: [':class:`~urllib.request.Request`', ':class:`~urllib.request.Request.method`', ':class:`~urllib.request.Request.method`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:1732: WARNING: inconsistent term references in translated message. original: [':meth:`~wave.getparams`'], translated: [':meth:`~wave.getparams`', ':class:`~collections.namedtuple`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:2150: WARNING: inconsistent term references in translated message. original: [], translated: [':mod:`site`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:2329: WARNING: inconsistent term references in translated message. original: [':func:`inspect.getfullargspec`', ':func:`inspect.signature`', ':func:`inspect.getfullargspec`'], translated: [':func:`inspect.getfullargspec`', ':func:`inspect.signature`', ':func:`open`', ':func:`inspect.getfullargspec`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.4.rst:: ERROR: Anonymous hyperlink mismatch: 0 references but 1 targets.
+See "backrefs" attribute for IDs. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.7.rst:84: WARNING: inconsistent references in translated message. original: ['`has been declared`_'], translated: [] [i18n.inconsistent_references]
diff --git a/warnings-ko.txt b/warnings-ko.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-lint-ar.txt b/warnings-lint-ar.txt
new file mode 100644
index 000000000..89f9e11ca
--- /dev/null
+++ b/warnings-lint-ar.txt
@@ -0,0 +1 @@
+clones/rebased_translations/Abdur-rahmaanJ/python-docs-ar/tutorial/whatnow.po:145: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
\ No newline at end of file
diff --git a/warnings-lint-es.txt b/warnings-lint-es.txt
new file mode 100644
index 000000000..5391cab5f
--- /dev/null
+++ b/warnings-lint-es.txt
@@ -0,0 +1,2 @@
+clones/rebased_translations/python/python-docs-es/howto/enum.po:27: Unnecessary parentheses in ':func:`repr()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-es/howto/enum.po:391: Unnecessary parentheses in ':func:`auto()`' (unnecessary-parentheses)
\ No newline at end of file
diff --git a/warnings-lint-fa.txt b/warnings-lint-fa.txt
new file mode 100644
index 000000000..5f9732909
--- /dev/null
+++ b/warnings-lint-fa.txt
@@ -0,0 +1 @@
+clones/rebased_translations/revisto/python-docs-fa/c-api/allocation.po:60: missing space before role ( دارای:c:macro:`). (missing-space-before-role)
\ No newline at end of file
diff --git a/warnings-lint-fr.txt b/warnings-lint-fr.txt
new file mode 100644
index 000000000..2d3e528e7
--- /dev/null
+++ b/warnings-lint-fr.txt
@@ -0,0 +1,4 @@
+clones/rebased_translations/python/python-docs-fr/reference/import.po:542: Unnecessary parentheses in ':meth:`~importlib.abc.MetaPathFinder.find_spec()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-fr/reference/import.po:578: Unnecessary parentheses in ':meth:`~importlib.abc.MetaPathFinder.find_spec()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-fr/library/html.entities.po:35: Unnecessary parentheses in ':func:`html.unescape()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-fr/library/filecmp.po:74: Unnecessary parentheses in ':func:`os.stat()`' (unnecessary-parentheses)
\ No newline at end of file
diff --git a/warnings-lint-gr.txt b/warnings-lint-gr.txt
new file mode 100644
index 000000000..70d931fd5
--- /dev/null
+++ b/warnings-lint-gr.txt
@@ -0,0 +1,60 @@
+clones/rebased_translations/pygreece/python-docs-gr/bugs.po:254: missing backtick before hyperlink reference: 'Σφαλμάτων `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/pygreece/python-docs-gr/reference/grammar.po:138: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/reference/grammar.po:699: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/reference/grammar.po:1366: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/reference/grammar.po:1372: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/reference/grammar.po:1496: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/collections.abc.po:957: role missing opening tag colon ( meth:`). (missing-space-before-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:534: inline literal missing (escaped) space after literal: '``False``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:1629: inline literal missing (escaped) space after literal: "``'-'``∙" (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3196: inline literal missing (escaped) space after literal: '``write(string)``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:534: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:534: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:1629: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:1629: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3196: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3196: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/functions.po:3274: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:5074: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:5074: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:8651: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:8651: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:1563: missing space before default role: 'ass`bool`'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:5074: missing space before default role: 'ναι``N``'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:8651: missing space before default role: ', )``==``'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:3151: missing backtick before hyperlink reference: 'Unicode `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:3627: missing backtick before hyperlink reference: 'Unicode `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/pygreece/python-docs-gr/library/stdtypes.po:1563: role missing colon before first backtick ( :class`). (missing-colon-in-role)
+clones/rebased_translations/pygreece/python-docs-gr/library/platform.po:233: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/gzip.po:214: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: inline literal missing (escaped) space after literal: "``'10s'``σ" (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:46: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:227: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:353: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:382: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:779: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:804: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/library/struct.po:830: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/using/unix.po:223: missing space before default role: 'ile`{exec_prefix}/bin/python{version}`'. (missing-space-before-default-role)
+clones/rebased_translations/pygreece/python-docs-gr/using/unix.po:184: missing backtick before hyperlink reference: 'κώδικα `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/pygreece/python-docs-gr/using/unix.po:223: role missing colon before first backtick ( :file`). (missing-colon-in-role)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:570: inline literal missing (escaped) space after literal: '``.py``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:570: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:570: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/modules.po:1216: role missing (escaped) space after role: ':mod:`!sound.effects`ό' (missing-space-after-role)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/controlflow.po:75: role missing opening tag colon ( keyword:`). (missing-space-before-role)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/interpreter.po:166: inline literal missing (escaped) space after literal: '``sys.argv[0]``ο' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/interpreter.po:166: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/interpreter.po:166: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/classes.po:1358: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/classes.po:1392: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/classes.po:1392: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/introduction.po:149: inline literal missing (escaped) space after literal: '``//``∙' (missing-space-after-literal)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/introduction.po:149: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/tutorial/introduction.po:149: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/faq/installed.po:123: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/pygreece/python-docs-gr/faq/extending.po:115: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/faq/extending.po:115: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/pygreece/python-docs-gr/faq/extending.po:115: missing space before default role: 'στο``Python/pythonrun.c``'. (missing-space-before-default-role)
\ No newline at end of file
diff --git a/warnings-lint-hi-in.txt b/warnings-lint-hi-in.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-lint-id.txt b/warnings-lint-id.txt
new file mode 100644
index 000000000..63212fe92
--- /dev/null
+++ b/warnings-lint-id.txt
@@ -0,0 +1,34 @@
+clones/rebased_translations/python/python-docs-id/library/functions.po:609: role missing opening tag colon ( ref:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/library/functions.po:2815: role missing opening tag colon ( class:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/library/functions.po:3466: role missing opening tag colon ( pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/library/distribution.po:29: missing underscore after closing backtick in hyperlink (missing-underscore-after-hyperlink)
+clones/rebased_translations/python/python-docs-id/library/csv.po:514: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/calendar.po:35: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/calendar.po:373: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/xmlrpc.client.po:621: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/json.po:212: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/library/binary.po:29: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/using/editors.po:29: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/tutorial/whatnow.po:156: role missing (escaped) space after role: ':ref:`Pertanyaan yang Sering Diajukan `(' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-id/tutorial/stdlib2.po:302: missing space before role ( modul:mod:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/tutorial/controlflow.po:1444: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/controlflow.po:1444: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/interpreter.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/interpreter.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/interpreter.po:153: missing space before default role: " ke``'-c'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-id/tutorial/stdlib.po:467: role missing opening tag colon ( mod:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/tutorial/classes.po:1142: inline literal missing (escaped) space after literal: '``issubclass(bool, int)``a' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-id/tutorial/classes.po:1142: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/tutorial/classes.po:1142: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/faq/general.po:569: missing space before < in hyperlink (missing-space-in-hyperlink)
+clones/rebased_translations/python/python-docs-id/faq/general.po:231: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/faq/general.po:231: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/faq/general.po:231: missing space before default role: 'kas``Misc/HISTORY``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-id/faq/windows.po:37: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/c-api/iterator.po:25: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/c-api/apiabiversion.po:187: missing space before role ( dalam:source:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/c-api/abstract.po:41: role missing opening tag colon ( func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-id/c-api/abstract.po:41: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/c-api/abstract.po:41: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-id/c-api/cell.po:31: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-id/c-api/cell.po:104: trailing whitespace (trailing-whitespace)
\ No newline at end of file
diff --git a/warnings-lint-it.txt b/warnings-lint-it.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-lint-ja.txt b/warnings-lint-ja.txt
new file mode 100644
index 000000000..80ef7a7a0
--- /dev/null
+++ b/warnings-lint-ja.txt
@@ -0,0 +1,364 @@
+clones/rebased_translations/python/python-docs-ja/glossary.po:858: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/glossary.po:2212: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:1787: missing space before role ( や:class:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:410: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:410: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:543: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:543: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:995: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:995: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:410: missing space before default role: ' と``B``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:543: missing space before default role: ' と``Weekday.WEEKEND``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/howto/enum.po:995: missing space before default role: 'はなく``1``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/howto/regex.po:1316: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/howto/descriptor.po:993: missing space before role ( の中の:c:func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/howto/curses.po:425: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/reference/expressions.po:646: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/reference/lexical_analysis.po:691: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/reference/datamodel.po:1047: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/installing/index.po:261: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1043: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1043: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1043: missing space before default role: " と``')'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1624: Unnecessary parentheses in ':meth:`~object.__float__()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:1876: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:2863: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functions.po:3517: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/functools.po:802: Bad dedent in block (bad-dedent)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-dev.po:176: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-dev.po:256: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8048: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8048: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8048: missing space before default role: 'の数は``GenericAlias``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:2109: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:3230: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:7598: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:8503: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/stdtypes.po:9065: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/logging.po:1155: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/logging.po:2524: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/msvcrt.po:86: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:106: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:161: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:169: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:263: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:289: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:364: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:386: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:471: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:515: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:547: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:582: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:647: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:704: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:775: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:795: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/winreg.po:811: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/collections.po:1828: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/enum.po:507: Bad dedent in block (bad-dedent)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:135: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:85: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:135: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/syslog.po:176: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:327: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:347: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:1317: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2322: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2518: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2551: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sys.po:2559: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/re.po:63: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/re.po:1229: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/re.po:2509: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pdb.po:384: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:188: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:188: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:209: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:209: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:228: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:228: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:188: missing space before default role: ' と``defects``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:209: missing space before default role: 'ような``init``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/email.headerregistry.po:228: missing space before default role: ' の``init``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:983: role missing opening tag colon ( const:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1403: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1431: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1458: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1485: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1512: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1530: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:1944: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:2010: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:2507: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:2569: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/socket.po:3135: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-policy.po:151: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sched.po:191: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/__main__.po:70: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/__main__.po:70: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/__main__.po:70: missing space before default role: '拡張子``.py``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/compileall.po:172: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/compileall.po:172: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/compileall.po:172: missing space before default role: '成した``.pyc``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/pickle.po:857: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pickle.po:1700: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/smtplib.po:416: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio.po:182: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:2343: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:2343: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:2343: missing space before default role: '引数に``follow_symlinks=False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:199: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:1499: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:1890: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/pathlib.po:1921: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ftplib.po:229: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ftplib.po:273: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xmlrpc.client.po:81: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:127: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:183: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:266: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:456: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:538: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:626: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:697: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/shutil.po:1171: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/signal.po:574: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/math.po:1037: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/json.po:339: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/json.po:645: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/token.po:36: role missing opening tag colon ( file:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/typing.po:1896: role missing opening tag colon ( ref:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/pkgutil.po:116: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/marshal.po:122: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/marshal.po:144: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/marshal.po:190: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.dom.minidom.po:305: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/base64.po:212: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/base64.po:323: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/base64.po:364: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/turtle.po:3785: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:128: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:128: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:128: missing space before default role: 'を表す``12345678-1234-5678-1234-567812345678``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/uuid.po:80: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:958: inline literal missing (escaped) space after literal: '``tearDown``メ' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: inline literal missing (escaped) space after literal: '``call_args_list``と' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: inline literal missing (escaped) space after literal: '``call_args_list``の' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1124: inline literal missing (escaped) space after literal: '``frob``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1202: inline literal missing (escaped) space after literal: '``side_effect``関' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:958: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:958: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1079: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1094: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1094: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1124: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1124: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1202: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1202: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:1094: missing space before default role: '。 や``call_args_list``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/unittest.mock-examples.po:905: missing backtick before hyperlink reference: 'ジェネレータ式やジェネレータのより`高度な使い方 `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/python/python-docs-ja/library/pty.po:144: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.sax.handler.po:429: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3127: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3209: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3246: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3319: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3333: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3402: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3417: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ctypes.po:3514: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/statistics.po:464: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/statistics.po:464: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/statistics.po:464: missing space before default role: '平均は``3/(1/a + 1/b + 1/c)``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/subprocess.po:350: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/subprocess.po:350: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/subprocess.po:350: missing space before default role: 'わりに``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/xmlrpc.server.po:79: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ast.po:788: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ast.po:957: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/ast.po:3338: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/mailbox.po:893: role missing opening tag colon ( meth:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/mailbox.po:1309: role missing opening tag colon ( meth:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/gc.po:120: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/gc.po:233: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/gc.po:261: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/types.po:262: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/types.po:308: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:210: inline literal missing (escaped) space after literal: '``1``ま' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:816: inline literal missing (escaped) space after literal: '``True``に' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:210: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:210: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:816: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/curses.po:816: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/select.po:509: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/imaplib.po:526: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/imaplib.po:627: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:532: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:540: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:1615: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/sqlite3.po:1680: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/io.po:1703: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/io.po:1703: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/io.po:1703: missing space before default role: "る前に``'\\n'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/io.po:386: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:171: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:253: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:278: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/fcntl.po:358: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:163: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:574: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:2638: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:2699: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-eventloop.po:2925: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/random.po:691: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:123: inline literal missing (escaped) space after literal: '``activeCount``は' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:139: inline literal missing (escaped) space after literal: '``currentThread``は' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:1652: inline literal missing (escaped) space after literal: '``notifyAll``は' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:123: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:123: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:139: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:139: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:739: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:739: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:1652: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:1652: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/threading.po:739: missing space before default role: 't"は``target.__name__``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/configparser.po:1607: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/glob.po:267: missing space before role ( および:file:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/glob.po:140: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/glob.po:148: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.dom.pulldom.po:220: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/zipapp.po:242: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:162: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:204: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:162: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/resource.po:204: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:840: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:840: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:840: missing space before default role: 'ルトは``()``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/library/multiprocessing.po:360: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/xml.etree.elementtree.po:1829: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/argparse.po:958: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-protocol.po:858: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/codecs.po:1502: role missing opening tag colon ( term:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-ja/library/email.header.po:299: inline literal missing (escaped) space after literal: '``\\r\\n``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/email.header.po:299: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/email.header.po:299: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/asyncio-task.po:52: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2517: inline literal missing (escaped) space after literal: '``chdir``の' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6963: inline literal missing (escaped) space after literal: '``WIFEXITED(status)``が' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6973: inline literal missing (escaped) space after literal: '``WIFSIGNALED(status)``が' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2517: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2517: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6963: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6963: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6973: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6973: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/os.po:489: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:855: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:863: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1149: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1396: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1429: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1540: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1607: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:1759: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2733: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:2812: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3044: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3100: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3292: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3530: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3600: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3661: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:3709: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4667: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4697: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4772: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:4943: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5032: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5460: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5486: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5502: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5530: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5625: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5729: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5891: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:5959: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6000: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6012: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6254: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6434: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6546: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/os.po:6612: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:344: inline literal missing (escaped) space after literal: '``None``以' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:4203: inline literal missing (escaped) space after literal: '``addModuleCleanup``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:344: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:344: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:4203: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:4203: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/library/unittest.po:1350: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/tempfile.po:145: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/library/tempfile.po:341: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:166: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:251: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:296: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/using/cmdline.po:351: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.1.po:991: missing backtick before hyperlink reference: 'Machine `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.1.po:300: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.3.po:1530: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.11.po:4362: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.7.po:3793: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.6.po:3624: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.6.po:3560: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.7.po:4735: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.4.po:1923: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.9.po:565: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.10.po:738: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.10.po:738: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.10.po:738: missing space before default role: 'ラルを``|``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.5.po:453: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.5.po:1056: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.5.po:4353: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:3597: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:240: Bad dedent in block (bad-dedent)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:469: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:633: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:659: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:694: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:807: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:892: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/3.8.po:1107: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.6.po:285: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/whatsnew/2.4.po:38: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/controlflow.po:1446: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/interpreter.po:167: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/floatingpoint.po:264: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/datastructures.po:906: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/datastructures.po:1414: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:434: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:434: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:1196: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:1196: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:434: missing space before default role: '数個の``\\``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:36: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/tutorial/introduction.po:434: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:3409: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:3409: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:3409: missing space before default role: 'または``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-ja/faq/programming.po:859: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init.po:746: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init.po:1827: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init.po:1841: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/sequence.po:270: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/call.po:469: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/call.po:493: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/call.po:503: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/contextvars.po:217: inline literal missing (escaped) space after literal: '``NULL``を' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-ja/c-api/contextvars.po:217: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/c-api/contextvars.po:217: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-ja/c-api/file.po:179: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-ja/c-api/init_config.po:29: trailing whitespace (trailing-whitespace)
\ No newline at end of file
diff --git a/warnings-lint-ko.txt b/warnings-lint-ko.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-lint-pl.txt b/warnings-lint-pl.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-lint-pt-br.txt b/warnings-lint-pt-br.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-lint-ro.txt b/warnings-lint-ro.txt
new file mode 100644
index 000000000..598886192
--- /dev/null
+++ b/warnings-lint-ro.txt
@@ -0,0 +1 @@
+clones/rebased_translations/octaG-M/python-docs-ro/tutorial/introduction.po:525: trailing whitespace (trailing-whitespace)
\ No newline at end of file
diff --git a/warnings-lint-ru.txt b/warnings-lint-ru.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-lint-tr.txt b/warnings-lint-tr.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-lint-uk.txt b/warnings-lint-uk.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-lint-zh-cn.txt b/warnings-lint-zh-cn.txt
new file mode 100644
index 000000000..07095f9a1
--- /dev/null
+++ b/warnings-lint-zh-cn.txt
@@ -0,0 +1,293 @@
+clones/rebased_translations/python/python-docs-zh-cn/howto/isolating-extensions.po:682: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/isolating-extensions.po:682: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/isolating-extensions.po:682: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/free-threading-python.po:118: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/free-threading-python.po:118: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/free-threading-python.po:118: missing space before default role: '设置为``1``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/annotations.po:92: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/annotations.po:92: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/annotations.po:92: missing space before default role: '动访问``__annotations__``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/logging-cookbook.po:4292: missing space before < in hyperlink (missing-space-in-hyperlink)
+clones/rebased_translations/python/python-docs-zh-cn/howto/logging-cookbook.po:4292: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/howto/functional.po:925: role missing (escaped) space after role: ':meth:`~iterator.__next__`方' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/functional.po:1039: role missing (escaped) space after role: ':meth:`~generator.__next__`方' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1728: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1728: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1734: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1734: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1734: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1734: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1743: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1743: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1743: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1743: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1728: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1734: missing space before default role: ', 和``+a``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1734: missing space before default role: '们使用``type``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1743: missing space before default role: '数会将``-a``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/howto/argparse.po:1743: missing space before default role: '` 和``+a``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:185: inline literal missing (escaped) space after literal: '``import __spam``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:185: inline literal missing (escaped) space after literal: '``import __foo.bar``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:185: inline literal missing (escaped) space after literal: '``__foo``不' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:195: inline literal missing (escaped) space after literal: '``from spam import __f``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:185: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:185: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:185: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:185: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:185: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:185: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:185: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:185: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:195: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:195: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:195: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:195: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:185: missing space before default role: ',例如``import __spam``中的``__spam``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/reference/expressions.po:195: missing space before default role: ',比如``from spam import __f``中的``__f``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/reference/compound_stmts.po:2633: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/functions.po:2323: Unnecessary parentheses in ':func:`locale.getencoding()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-zh-cn/library/stdtypes.po:633: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/stdtypes.po:633: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/stdtypes.po:633: missing space before default role: ' 为``0``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/collections.po:1559: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: missing space before default role: '员属于``cls``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/enum.po:458: missing space before default role: '则返回``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/datetime.po:3687: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/datetime.po:3687: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/datetime.po:3687: missing space before default role: ' 例如``"GMT"``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/importlib.metadata.po:982: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/importlib.metadata.po:982: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/importlib.metadata.po:982: missing space before default role: ' 或``Context(name=None)``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/wsgiref.po:1404: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/doctest.po:1282: role missing (escaped) space after role: ':file:`ndiff.py`工' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1073: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1073: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1073: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1073: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1126: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1126: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1126: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1126: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1073: missing space before default role: '则返回``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1073: missing space before default role: '则返回``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1126: missing space before default role: '则返回``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/pathlib.po:1126: missing space before default role: '则返回``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/math.po:535: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:775: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:775: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:775: missing space before default role: '于使用``tuple[Any, ...]``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:3100: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:3332: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:6296: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/typing.po:4194: role missing (escaped) space after role: ':class:`ParamSpec`的' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:565: inline literal missing (escaped) space after literal: '``oparg=0``时' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:565: inline literal missing (escaped) space after literal: '``oparg``将' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1613: inline literal missing (escaped) space after literal: '``cmp_op[opname >> 5]``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1613: inline literal missing (escaped) space after literal: '``opname``的' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1892: inline literal missing (escaped) space after literal: '``argc``指' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2011: inline literal missing (escaped) space after literal: '``STACK[-1]``的' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2088: inline literal missing (escaped) space after literal: '``oparg``指' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:533: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:533: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:565: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:565: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:565: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:565: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:565: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:565: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:565: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:565: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:565: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:565: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:654: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:654: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:654: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:654: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:658: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:658: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:667: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:667: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:694: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:694: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:698: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:698: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:845: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:845: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1584: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1584: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1613: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1613: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1613: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1613: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1613: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1613: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1892: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1892: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2011: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2011: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2088: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2088: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:533: missing space before default role: '可以是``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:565: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:565: missing space before default role: '或传入``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:565: missing space before default role: '会返回``oparg=0``时的结果 。当``opcode``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:654: missing space before default role: '始,为``True``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:654: missing space before default role: '否则为``False``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:658: missing space before default role: '否则为``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:667: missing space before default role: '否则为``None``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:694: missing space before default role: '了字段``starts_line``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:698: missing space before default role: '了字段``start_offset``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:845: missing space before default role: ''. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1584: missing space before default role: '全局的``super``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:1613: missing space before default role: '可以在``cmp_op[opname >> 5]``中找到。如果``opname``的第五低位是1(),则结果将被强制转换为``bool``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2336: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/dis.po:2352: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/shlex.po:196: role missing (escaped) space after role: ':attr:`eof`(' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/tokenize.po:341: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/ast.po:1641: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/mailbox.po:1490: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/mailbox.po:1490: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/mailbox.po:1490: missing space before default role: 's()`` 中的 ``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/gc.po:329: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/select.po:360: missing space before role ( 这是与:c:func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/sqlite3.po:1104: missing space before role ( 如果:attr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/configparser.po:1607: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:312: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:312: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:323: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:323: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:312: missing space before default role: ' 和``stderr``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/intro.po:323: missing space before default role: ',写入``stdout``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:280: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:280: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:288: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:288: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:280: missing space before default role: ',则是``sys.argv[0]``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/argparse.po:288: missing space before default role: ',后接``sys.argv[0]``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:3295: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:3295: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:6150: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:6150: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:3295: missing space before default role: 'e*值``0o700``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/library/os.po:6150: missing space before default role: '在调用``fork()``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: inline literal missing (escaped) space after literal: '``D``中' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: inline literal missing (escaped) space after literal: '``(key, value)``键' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.1.po:1320: role missing (escaped) space after role: ':func:`sys._getframe`返' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.3.po:1364: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.11.po:931: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.11.po:931: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.11.po:931: missing space before default role: '须使用``1``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5624: missing space before role ( 在:gh:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:1463: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:1463: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5276: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5276: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:1463: missing space before default role: '中插入``..``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5276: missing space before default role: '重载了``PyType_From*``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5106: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.12.po:5624: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1265: inline literal missing (escaped) space after literal: '``return dict.setdefault(key, [])``语' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: inline literal missing (escaped) space after literal: '``
``写' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1908: missing space before role ( 类如:class:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1265: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1265: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:2057: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:2057: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:1875: missing space before default role: '单地将````'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.0.po:2057: missing space before default role: '以支持``https://``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:3530: missing space before role (弃用:program:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:5571: missing space before role ( 弃用的:c:func:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6217: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6235: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6263: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6285: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6306: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6317: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:3530: role missing (escaped) space after role: ':option:`!--cgi`标' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.13.po:6217: role missing (escaped) space after role: ':func:`!locals`得' (missing-space-after-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.7.po:1552: Unnecessary parentheses in ':meth:`datetime.isoformat()`' (unnecessary-parentheses)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:3986: missing space before role ( 直接解码:attr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:2215: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:2215: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.6.po:2215: missing space before default role: '是调用``implicit0``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.7.po:350: missing space before role ( 开关现在会自动启用:option:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.7.po:600: trailing whitespace (trailing-whitespace)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2073: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2073: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2702: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2702: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2073: missing space before default role: ' (或``.pyo``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.4.po:2702: missing space before default role: ' 和``capath``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.2.po:1532: inline literal missing (escaped) space after literal: '``/``操' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.2.po:1532: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/2.2.po:1532: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:3895: missing space before role (得益于:pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4077: missing space before role (由于:pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:154: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:154: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:386: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:386: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4077: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4077: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4077: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4077: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4331: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4331: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:154: missing space before default role: '流行的``virtualenv``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:386: missing space before default role: '(即从``U+0000``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4077: missing space before default role: '( 或``utf-16-be``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4077: missing space before default role: '( 或``utf-32-be``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.3.po:4331: missing space before default role: "模块的``'u'``". (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.9.po:2595: missing space before role ( d:issue:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.10.po:3481: missing space before role ( 和:data:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.5.po:4753: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.5.po:4753: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.5.po:4753: missing space before default role: '移除了``.pyo``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.8.po:4603: missing space before role ( 的规范更新了:rfc:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/changelog.po:1366: missing backtick before hyperlink reference: '节 `_'. (hyperlink-reference-missing-backtick)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:603: inline literal missing (escaped) space after literal: '``*``来' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:603: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:603: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:603: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:603: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:781: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:781: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:781: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:781: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:603: missing space before default role: '数列表``*args``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/whatsnew/3.0.po:781: missing space before default role: '拼写为``.... . .``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:454: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/init.po:454: missing space before default role: '编码和``replace``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:153: inline literal missing (escaped) space after literal: '``NULL``错' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:226: missing space before role (除非使用:pep:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/frame.po:153: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: inline literal missing (escaped) space after literal: '``-1``(' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: inline literal missing (escaped) space after literal: '``*result``设' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: inline literal missing (escaped) space after literal: '``[PyTime_MIN; PyTime_MAX]``范' (missing-space-after-literal)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:179: missing space before role ( C:c:expr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:97: found an unbalanced inline literal markup. (unbalanced-inline-literals-delimiters)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/time.po:91: missing space before default role: '数返回``0``'. (missing-space-before-default-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/arg.po:705: missing space before role (将Python浮点数转换成C的:c:expr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/arg.po:713: missing space before role (将Python浮点数转换成C的:c:expr:`). (missing-space-before-role)
+clones/rebased_translations/python/python-docs-zh-cn/c-api/memory.po:1192: role missing (escaped) space after role: ':envvar:`PYTHONMALLOC`(' (missing-space-after-role)
\ No newline at end of file
diff --git a/warnings-lint-zh-tw.txt b/warnings-lint-zh-tw.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-pl.txt b/warnings-pl.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-pt-br.txt b/warnings-pt-br.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-ro.txt b/warnings-ro.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-ru.txt b/warnings-ru.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-tr.txt b/warnings-tr.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/warnings-uk.txt b/warnings-uk.txt
new file mode 100644
index 000000000..2aecc945a
--- /dev/null
+++ b/warnings-uk.txt
@@ -0,0 +1,11 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/howto/clinic.rst:: ERROR: Anonymous hyperlink mismatch: 1 references but 0 targets.
+See "backrefs" attribute for IDs. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:184: WARNING: inconsistent term references in translated message. original: [':meth:`~object.__lt__`', ':meth:`~object.__le__`', ':meth:`~object.__gt__`', ':meth:`~object.__ge__`', ':meth:`~object.__lt__`', ':meth:`~object.__eq__`'], translated: [':meth:`~object.__lt__`', ':meth:`~object.__le__`', ':meth:`~object.__ge__`', ':meth:`~object.__lt__`', ':meth:`~object.__eq__`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/stdtypes.rst:577: WARNING: inconsistent term references in translated message. original: [':data:`sys.byteorder`'], translated: [] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.12.rst:69: WARNING: inconsistent term references in translated message. original: [':term:`f-strings `', ':ref:`type parameter syntax `', ':keyword:`type`', ':term:`generic types\n`', ':term:`type aliases `'], translated: [':term:`f-рядок `', ':keyword:`type`'] [i18n.inconsistent_references]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:12::1: WARNING: term not in glossary: 'інтерактивної' [ref.term]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:19::1: WARNING: term not in glossary: 'інтерактивної' [ref.term]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/glossary.rst:1173::1: WARNING: term not in glossary: 'інтерактивної' [ref.term]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/email.parser.rst:176::1: WARNING: term not in glossary: 'bytes-подібного об’єкта' [ref.term]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:38::1: WARNING: undefined label: 'sqlite3-tutorial`вчить як використовувати :mod:' [ref.ref]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/3.13.rst:216::1: WARNING: term not in glossary: 'інтерактивну' [ref.term]
diff --git a/warnings-zh-cn.txt b/warnings-zh-cn.txt
new file mode 100644
index 000000000..a8ee83f47
--- /dev/null
+++ b/warnings-zh-cn.txt
@@ -0,0 +1,5 @@
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/changelog.rst:634::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/whatsnew/changelog.rst:634::1: WARNING: Inline interpreted text or phrase reference start-string without end-string. [docutils]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:446: WARNING: Lexing literal_block 'CREATE TABLE test(\n i integer primary key, ! 将查找名为 "integer" 的转换器\n p point, ! 将查找名为 "point" 的转换器\n n number(10) ! 将查找名为 "number" 的转换器\n )' as "sql" resulted in an error at token: '将'. Retrying in relaxed mode. [misc.highlighting_failure]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/sqlite3.rst:471: WARNING: Lexing literal_block 'SELECT MAX(p) as "p [point]" FROM test; ! 将查找转换器 "point"' as "sql" resulted in an error at token: '将'. Retrying in relaxed mode. [misc.highlighting_failure]
+/home/runner/work/dashboard/dashboard/clones/cpython/Doc/library/urllib.parse.rst:304: WARNING: Lexing literal_block '(寻址方案, 网络位置, 路径, 查询, 片段标识符)。' as "python3" resulted in an error at token: '('. Retrying in relaxed mode. [misc.highlighting_failure]
diff --git a/warnings-zh-tw.txt b/warnings-zh-tw.txt
new file mode 100644
index 000000000..e69de29bb
diff --git a/word_count.py b/word_count.py
deleted file mode 100644
index b7c9f1972..000000000
--- a/word_count.py
+++ /dev/null
@@ -1,20 +0,0 @@
-import os
-from polib import pofile
-
-
-def _count_words(pot) -> int:
- pot = pofile(pot)
- word_count = 0
- for entry in pot:
- word_count += len(entry.msgid.split())
- return word_count
-
-
-def get_word_count(dir) -> int:
- total_word_count = 0
- for root, dirs, files in os.walk(dir):
- for file in files:
- if file.endswith('.pot'):
- pot = os.path.join(root, file)
- total_word_count += _count_words(pot)
- return total_word_count