From 9a6855e8911da9b3efea4d0d14078125a5b14411 Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Sat, 6 Jun 2026 14:11:29 +0200 Subject: [PATCH 01/14] Split linting jobs into a separate workflow file --- .github/workflows/lint.yml | 44 +++++++++++++++++++ ...int-and-build.yml => update-and-build.yml} | 39 +--------------- 2 files changed, 45 insertions(+), 38 deletions(-) create mode 100644 .github/workflows/lint.yml rename .github/workflows/{update-lint-and-build.yml => update-and-build.yml} (79%) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000000..9a2b2cbd0b --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,44 @@ +name: lint + +on: # zizmor: ignore[dangerous-triggers] + workflow_run: + workflows: [update-and-build] + types: [completed] + +permissions: {} + +jobs: + lint: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + version: [3.15, 3.14, 3.13, 3.12, 3.11] + continue-on-error: true + steps: + - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 + with: + python-version: 3 + - run: pip install sphinx-lint + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + with: + ref: ${{ matrix.version }} + persist-credentials: false + - uses: rffontenelle/sphinx-lint-problem-matcher@4270bf50b2c93640a7cbb231c09f8e694699af9f # v1.0.0 + - run: sphinx-lint + + lint-epub: + runs-on: ubuntu-latest + strategy: + matrix: + version: [3.15, 3.14] + continue-on-error: true + steps: + - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 + with: + python-version: 3.x + - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 + - uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 + with: + name: build-${{ matrix.version }}-epub + - run: uvx epubcheck diff --git a/.github/workflows/update-lint-and-build.yml b/.github/workflows/update-and-build.yml similarity index 79% rename from .github/workflows/update-lint-and-build.yml rename to .github/workflows/update-and-build.yml index 603383c523..b060071466 100644 --- a/.github/workflows/update-lint-and-build.yml +++ b/.github/workflows/update-and-build.yml @@ -1,4 +1,4 @@ -name: Translation and Linting Workflow +name: update and build on: schedule: @@ -71,26 +71,6 @@ jobs: branch: ${{ matrix.version }} github_token: ${{ secrets.GITHUB_TOKEN }} - lint: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - version: [3.15, 3.14, 3.13, 3.12, 3.11] - needs: [update] - continue-on-error: true - steps: - - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 - with: - python-version: 3 - - run: pip install sphinx-lint - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - with: - ref: ${{ matrix.version }} - persist-credentials: false - - uses: rffontenelle/sphinx-lint-problem-matcher@4270bf50b2c93640a7cbb231c09f8e694699af9f # v1.0.0 - - run: sphinx-lint - build: runs-on: ubuntu-latest strategy: @@ -145,20 +125,3 @@ jobs: with: name: build-${{ matrix.version }}-pdf path: . - - lint-epub: - runs-on: ubuntu-latest - strategy: - matrix: - version: [3.15, 3.14] - needs: [build] - continue-on-error: true - steps: - - uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 - with: - python-version: 3.x - - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 - - uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 - with: - name: build-${{ matrix.version }}-epub - - run: uvx epubcheck From c54b55a2c85f0426ac29695bb2a91c71d832bd6b Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Sat, 6 Jun 2026 14:18:40 +0200 Subject: [PATCH 02/14] Set SPHINXERRORHANDLING environment variable to 0 in build workflow --- .github/workflows/update-and-build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/update-and-build.yml b/.github/workflows/update-and-build.yml index b060071466..fcc8b44501 100644 --- a/.github/workflows/update-and-build.yml +++ b/.github/workflows/update-and-build.yml @@ -102,6 +102,8 @@ jobs: - uses: sphinx-doc/github-problem-matcher@1f74d6599f4a5e89a20d3c99aab4e6a70f7bda0f # v1.1 - run: make -e SPHINXOPTS="--color -D language='pl' -W --keep-going" ${{ matrix.format }} working-directory: ./Doc + env: + SPHINXERRORHANDLING: 0 - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 if: success() || failure() with: From d0ab3baa5c8d302e6cbe2e0e602d275921e9c70d Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Sat, 6 Jun 2026 15:29:52 +0200 Subject: [PATCH 03/14] Set SPHINXERRORHANDLING environment variable to '' in build workflow --- .github/workflows/update-and-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-and-build.yml b/.github/workflows/update-and-build.yml index fcc8b44501..9747185003 100644 --- a/.github/workflows/update-and-build.yml +++ b/.github/workflows/update-and-build.yml @@ -103,7 +103,7 @@ jobs: - run: make -e SPHINXOPTS="--color -D language='pl' -W --keep-going" ${{ matrix.format }} working-directory: ./Doc env: - SPHINXERRORHANDLING: 0 + SPHINXERRORHANDLING: '' - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 if: success() || failure() with: From 08b7f0bd7452510e11ca0a7106b557c834266892 Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Sat, 6 Jun 2026 15:50:09 +0200 Subject: [PATCH 04/14] Remove fail-on-warning flag from Sphinx build options in update-and-build workflow --- .github/workflows/update-and-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-and-build.yml b/.github/workflows/update-and-build.yml index 9747185003..be89c07a90 100644 --- a/.github/workflows/update-and-build.yml +++ b/.github/workflows/update-and-build.yml @@ -100,7 +100,7 @@ jobs: - run: sudo apt-get update && sudo apt-get install -y librsvg2-bin if: ${{ matrix.format == 'latex' && fromJSON(matrix.version) >= 3.14 }} - uses: sphinx-doc/github-problem-matcher@1f74d6599f4a5e89a20d3c99aab4e6a70f7bda0f # v1.1 - - run: make -e SPHINXOPTS="--color -D language='pl' -W --keep-going" ${{ matrix.format }} + - run: make -e SPHINXOPTS="--color -D language='pl' --keep-going" ${{ matrix.format }} working-directory: ./Doc env: SPHINXERRORHANDLING: '' From de91514d3735b0ad7dc51a518871ef5542c50a3d Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Sat, 6 Jun 2026 17:14:23 +0200 Subject: [PATCH 05/14] Install librsvg2-bin in output-pdf step --- .github/workflows/update-and-build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/update-and-build.yml b/.github/workflows/update-and-build.yml index be89c07a90..350643999b 100644 --- a/.github/workflows/update-and-build.yml +++ b/.github/workflows/update-and-build.yml @@ -122,6 +122,8 @@ jobs: name: build-${{ matrix.version }}-latex - run: sudo apt-get update - run: sudo apt-get install -y latexmk texlive-xetex fonts-freefont-otf xindy + - run: sudo apt-get install -y librsvg2-bin + if: ${{ fromJSON(matrix.version) >= 3.14 }} - run: make - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: From 9a081e815d265b5c47cf11f62732b8e467a6e1d2 Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Sat, 6 Jun 2026 18:42:20 +0200 Subject: [PATCH 06/14] Disable fail-fast in output-pdf job strategy --- .github/workflows/update-and-build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/update-and-build.yml b/.github/workflows/update-and-build.yml index 350643999b..a50e3793d7 100644 --- a/.github/workflows/update-and-build.yml +++ b/.github/workflows/update-and-build.yml @@ -113,6 +113,7 @@ jobs: output-pdf: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: version: [3.15, 3.14, 3.13, 3.12, 3.11, '3.10'] needs: [build] From 24516e487ee80fbf65f9a3866104e300a51c3868 Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Thu, 11 Jun 2026 19:50:47 +0200 Subject: [PATCH 07/14] Update lint.yml --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9a2b2cbd0b..77e7f1cdf3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,7 +2,7 @@ name: lint on: # zizmor: ignore[dangerous-triggers] workflow_run: - workflows: [update-and-build] + workflows: ['update and build'] types: [completed] permissions: {} From 2c4d6f433e7c0de466d213a5fd26e6e830bbdba1 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 11 Jun 2026 17:51:07 +0000 Subject: [PATCH 08/14] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 77e7f1cdf3..6e6e746fe4 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,7 +2,7 @@ name: lint on: # zizmor: ignore[dangerous-triggers] workflow_run: - workflows: ['update and build'] + workflows: [update and build] types: [completed] permissions: {} From 2ac374827811a03857f688ad80fe53e886492995 Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Thu, 11 Jun 2026 21:03:04 +0200 Subject: [PATCH 09/14] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3fd0a527cb..4e71b53e1d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ core_words, _ = progress_from_resources(list(filter(language_switcher, stats))) total_words, total_strings = progress_from_resources(stats) print( -f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml) +f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-and-build.yml) [![podstawowe artykuły {core_words:.2f}%](https://img.shields.io/badge/podstawowe_artykuły-{core_words:.2f}%25-0.svg)](https://translations.python.org/#pl) [![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-{total_words:.2f}%25-0.svg)](https://translations.python.org/#pl) [![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-{total_strings:.2f}%25-0.svg)](https://translations.python.org/#pl) From 9577fed68931e5fd0a29f90eb28c7fd388f81814 Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Thu, 11 Jun 2026 21:03:30 +0200 Subject: [PATCH 10/14] Update README.en.md --- README.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.en.md b/README.en.md index 9b38962731..fb9895bc20 100644 --- a/README.en.md +++ b/README.en.md @@ -8,7 +8,7 @@ core_words, _ = progress_from_resources(list(filter(language_switcher, stats))) total_words, total_strings = progress_from_resources(stats) print( -f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml) +f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-and-build.yml) [![core {core_words:.2f}%](https://img.shields.io/badge/core-{core_words:.2f}%25-0.svg)](https://translations.python.org/#pl) [![Total Translation of Documentation](https://img.shields.io/badge/total_words-{total_words:.2f}%25-0.svg)](https://translations.python.org/#pl) [![Total Translation of Documentation](https://img.shields.io/badge/total_strings-{total_strings:.2f}%25-0.svg)](https://translations.python.org/#pl) From 79d6f8b36a3f3174706045d3e863d468f1bf858a Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Thu, 11 Jun 2026 21:35:56 +0200 Subject: [PATCH 11/14] Update update-and-build.yml, partial revert --- .github/workflows/update-and-build.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/update-and-build.yml b/.github/workflows/update-and-build.yml index a50e3793d7..5266f7b033 100644 --- a/.github/workflows/update-and-build.yml +++ b/.github/workflows/update-and-build.yml @@ -123,8 +123,6 @@ jobs: name: build-${{ matrix.version }}-latex - run: sudo apt-get update - run: sudo apt-get install -y latexmk texlive-xetex fonts-freefont-otf xindy - - run: sudo apt-get install -y librsvg2-bin - if: ${{ fromJSON(matrix.version) >= 3.14 }} - run: make - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: From 977eacf49f93192321e8f6fbc1d11518516a1f6c Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Fri, 12 Jun 2026 11:37:21 +0200 Subject: [PATCH 12/14] Update README files to link to the new lint workflow --- README.en.md | 6 +++--- README.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.en.md b/README.en.md index fb9895bc20..b9d6bb8931 100644 --- a/README.en.md +++ b/README.en.md @@ -12,14 +12,14 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update- [![core {core_words:.2f}%](https://img.shields.io/badge/core-{core_words:.2f}%25-0.svg)](https://translations.python.org/#pl) [![Total Translation of Documentation](https://img.shields.io/badge/total_words-{total_words:.2f}%25-0.svg)](https://translations.python.org/#pl) [![Total Translation of Documentation](https://img.shields.io/badge/total_strings-{total_strings:.2f}%25-0.svg)](https://translations.python.org/#pl) -[![lint errors count](https://shields.io/badge/dynamic/xml?url=https%3A%2F%2Ftranslations.python.org%2Fbuild-details.html&query=%2F%2Ftr%5Btd%5B%40data-label%3D%27language%27%20and%20contains%28.%2C%20%27%28pl%29%27%29%5D%5D%20%20%20%2F%2Ftd%5B%40data-label%3D%27lint%27%5D%2Fa%2Ftext()&label=lint%20errors)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml) +[![lint errors count](https://shields.io/badge/dynamic/xml?url=https%3A%2F%2Ftranslations.python.org%2Fbuild-details.html&query=%2F%2Ftr%5Btd%5B%40data-label%3D%27language%27%20and%20contains%28.%2C%20%27%28pl%29%27%29%5D%5D%20%20%20%2F%2Ftd%5B%40data-label%3D%27lint%27%5D%2Fa%2Ftext()&label=lint%20errors)](https://github.com/python/python-docs-pl/actions/workflows/lint.yml) ''') ]]] --> -[![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml) +[![build](https://github.com/python/python-docs-pl/actions/workflows/update-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-and-build.yml) [![core 100.00%](https://img.shields.io/badge/core-100.00%25-0.svg)](https://translations.python.org/#pl) [![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.75%25-0.svg)](https://translations.python.org/#pl) [![Total Translation of Documentation](https://img.shields.io/badge/total_strings-12.64%25-0.svg)](https://translations.python.org/#pl) -[![lint errors count](https://shields.io/badge/dynamic/xml?url=https%3A%2F%2Ftranslations.python.org%2Fbuild-details.html&query=%2F%2Ftr%5Btd%5B%40data-label%3D%27language%27%20and%20contains%28.%2C%20%27%28pl%29%27%29%5D%5D%20%20%20%2F%2Ftd%5B%40data-label%3D%27lint%27%5D%2Fa%2Ftext()&label=lint%20errors)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml) +[![lint errors count](https://shields.io/badge/dynamic/xml?url=https%3A%2F%2Ftranslations.python.org%2Fbuild-details.html&query=%2F%2Ftr%5Btd%5B%40data-label%3D%27language%27%20and%20contains%28.%2C%20%27%28pl%29%27%29%5D%5D%20%20%20%2F%2Ftd%5B%40data-label%3D%27lint%27%5D%2Fa%2Ftext()&label=lint%20errors)](https://github.com/python/python-docs-pl/actions/workflows/lint.yml) diff --git a/README.md b/README.md index 4e71b53e1d..d09d3c1c1a 100644 --- a/README.md +++ b/README.md @@ -12,14 +12,14 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update- [![podstawowe artykuły {core_words:.2f}%](https://img.shields.io/badge/podstawowe_artykuły-{core_words:.2f}%25-0.svg)](https://translations.python.org/#pl) [![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-{total_words:.2f}%25-0.svg)](https://translations.python.org/#pl) [![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-{total_strings:.2f}%25-0.svg)](https://translations.python.org/#pl) -[![liczba błędów lintowania](https://shields.io/badge/dynamic/xml?url=https%3A%2F%2Ftranslations.python.org%2Fbuild-details.html&query=%2F%2Ftr%5Btd%5B%40data-label%3D%27language%27%20and%20contains%28.%2C%20%27%28pl%29%27%29%5D%5D%20%20%20%2F%2Ftd%5B%40data-label%3D%27lint%27%5D%2Fa%2Ftext()&label=b%C5%82%C4%99dy%20lintowania)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml) +[![liczba błędów lintowania](https://shields.io/badge/dynamic/xml?url=https%3A%2F%2Ftranslations.python.org%2Fbuild-details.html&query=%2F%2Ftr%5Btd%5B%40data-label%3D%27language%27%20and%20contains%28.%2C%20%27%28pl%29%27%29%5D%5D%20%20%20%2F%2Ftd%5B%40data-label%3D%27lint%27%5D%2Fa%2Ftext()&label=b%C5%82%C4%99dy%20lintowania)](https://github.com/python/python-docs-pl/actions/workflows/lint.yml) ''') ]]] --> -[![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml) +[![build](https://github.com/python/python-docs-pl/actions/workflows/update-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml) [![podstawowe artykuły 100.00%](https://img.shields.io/badge/podstawowe_artykuły-100.00%25-0.svg)](https://translations.python.org/#pl) [![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-5.75%25-0.svg)](https://translations.python.org/#pl) [![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-12.64%25-0.svg)](https://translations.python.org/#pl) -[![liczba błędów lintowania](https://shields.io/badge/dynamic/xml?url=https%3A%2F%2Ftranslations.python.org%2Fbuild-details.html&query=%2F%2Ftr%5Btd%5B%40data-label%3D%27language%27%20and%20contains%28.%2C%20%27%28pl%29%27%29%5D%5D%20%20%20%2F%2Ftd%5B%40data-label%3D%27lint%27%5D%2Fa%2Ftext()&label=b%C5%82%C4%99dy%20lintowania)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml) +[![liczba błędów lintowania](https://shields.io/badge/dynamic/xml?url=https%3A%2F%2Ftranslations.python.org%2Fbuild-details.html&query=%2F%2Ftr%5Btd%5B%40data-label%3D%27language%27%20and%20contains%28.%2C%20%27%28pl%29%27%29%5D%5D%20%20%20%2F%2Ftd%5B%40data-label%3D%27lint%27%5D%2Fa%2Ftext()&label=b%C5%82%C4%99dy%20lintowania)](https://github.com/python/python-docs-pl/actions/workflows/lint.yml) From cf763316d0415fabebbb054482a2af39ee4ea8f0 Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Fri, 12 Jun 2026 11:37:52 +0200 Subject: [PATCH 13/14] Remove Python translations mailing list link from README files --- README.en.md | 1 - README.md | 1 - 2 files changed, 2 deletions(-) diff --git a/README.en.md b/README.en.md index b9d6bb8931..045150762d 100644 --- a/README.en.md +++ b/README.en.md @@ -55,7 +55,6 @@ The documentation at https://docs.python.org/pl/ is updated around once daily. * [Discord Python Polska #dokumentacja](https://discord.gg/QB3h2Sxc) * [Python Documentation Community](https://docs-community.readthedocs.io/) -* [Python translations mailing list](https://mail.python.org/mailman3/lists/translation.python.org/) * [Python Documentation Special Interest Group](https://www.python.org/community/sigs/current/doc-sig/) **Translation progress** diff --git a/README.md b/README.md index d09d3c1c1a..95a645ceb8 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,6 @@ Dokumentacja na https://docs.python.org/pl/ aktualizowana jest około raz dzienn * [Discord Python Polska #dokumentacja](https://discord.gg/VCyBDGH38e) * [Python Documentation Community](https://docs-community.readthedocs.io/en/latest/) -* [Python translations mailing list](https://mail.python.org/mailman3/lists/translation.python.org/) * [Python Documentation Special Interest Group](https://www.python.org/community/sigs/current/doc-sig/) **Postęp tłumaczenia** From db9f6e96d08c44f78f9b0782a726525e4d189898 Mon Sep 17 00:00:00 2001 From: Maciej Olko Date: Fri, 12 Jun 2026 11:38:39 +0200 Subject: [PATCH 14/14] Add Sphinx translation link to README files --- README.en.md | 1 + README.md | 1 + 2 files changed, 2 insertions(+) diff --git a/README.en.md b/README.en.md index 045150762d..5eb42685cc 100644 --- a/README.en.md +++ b/README.en.md @@ -88,4 +88,5 @@ You signify your acceptance of this agreement by submitting your work for inclus * [Projects of the Python Packaging Authority](https://hosted.weblate.org/projects/pypa/-/pl/) * [Scientific Python Translations](https://scientific-python-translations.github.io/) * [micro:bit translation programme](https://microbit.org/translate/) +* [Sphinx translation](https://www.sphinx-doc.org/en/master/usage/advanced/intl.html#contributing-to-sphinx-reference-translation) * [Localizing Django](https://docs.djangoproject.com/en/dev/internals/contributing/localizing/) diff --git a/README.md b/README.md index 95a645ceb8..7fa5d6ecb2 100644 --- a/README.md +++ b/README.md @@ -90,4 +90,5 @@ Wyrażasz akceptację tej umowy przesyłając swoją pracę do włączenia do do * [projekty Python Packaging Authority](https://hosted.weblate.org/projects/pypa/-/pl/) * [Scientific Python Translations](https://scientific-python-translations.github.io/) * [micro:bit translation programme](https://microbit.org/translate/) +* [tłumaczenie Sphinksa](https://www.sphinx-doc.org/en/master/usage/advanced/intl.html#contributing-to-sphinx-reference-translation) * [Localizing Django](https://docs.djangoproject.com/en/dev/internals/contributing/localizing/)