diff --git a/.github/workflows/delete_pr_built_doc.yml b/.github/workflows/delete_pr_built_doc.yml new file mode 100644 index 000000000..44452162c --- /dev/null +++ b/.github/workflows/delete_pr_built_doc.yml @@ -0,0 +1,42 @@ +name: Delete docs built with PR + +on: + pull_request: + branches: [ "3.9" ] + types: + - closed # PR closed + +jobs: + delete_pr_docs: + runs-on: ubuntu-latest + + steps: + - name: Prepare environment variables + run: | + ref=${GITHUB_REF#refs/pull/} + pr_num=${ref%/merge} + + echo "::set-env name=PR_NUM::${pr_num}" + echo "::set-env name=PR_BUILD_ID::${GITHUB_BASE_REF}/${pr_num}" + echo "::set-env name=DOCS_BASE_DIR::build/html" + echo "::set-env name=DOCS_OUTPUT_DIR::build/html/${GITHUB_BASE_REF}/${pr_num}" + + - name: Checkout GitHub Pages + uses: actions/checkout@v2 + with: + ref: gh-pages + path: build/html + + - name: Delete docs + run: | + cd ${GITHUB_WORKSPACE}/${DOCS_BASE_DIR} + pwd + git rm -r ${GITHUB_WORKSPACE}/${DOCS_OUTPUT_DIR} + git config --local user.name "Autobuild bot on GitHub Actions" + git config --local user.email "githubaction-build-bot@example.com" + pwd + git add . + # if [ $(git status -s | wc -l) -eq 0 ]; then echo "nothing to commit"; exit 0; fi + git commit -m "Delete docs, branch: ${GITHUB_BASE_REF} pr_num: ${PR_NUM}" + git push --quiet "https://${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" gh-pages:gh-pages + diff --git a/.github/workflows/lint-and-built.yml b/.github/workflows/lint-and-built.yml deleted file mode 100644 index 822034569..000000000 --- a/.github/workflows/lint-and-built.yml +++ /dev/null @@ -1,65 +0,0 @@ -# From python-docs-translations/transifex-automations -# Orignals: https://github.com/python-docs-translations/transifex-automations/tree/main/sample-workflows -name: Linting and Building Workflow - -on: - schedule: - - cron: '34 12 * * SAT' - push: - branches: - - '*' - workflow_dispatch: - -permissions: - contents: read - -jobs: - build-translation: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - version: [ '3.14', '3.13' ] - format: [ html ] - steps: - - uses: actions/setup-python@master - with: - python-version: 3.12 # pinned for Sphinx 3.4.3 to build 3.10 - - uses: actions/checkout@master - with: - repository: python/cpython - ref: ${{ matrix.version }} - - run: make venv - working-directory: ./Doc - - uses: actions/checkout@master - with: - ref: ${{ matrix.version }} - path: Doc/locales/ja/LC_MESSAGES - - run: git pull - working-directory: ./Doc/locales/ja/LC_MESSAGES - - uses: sphinx-doc/github-problem-matcher@v1.1 - - run: make -e SPHINXOPTS="--color -D language='ja' -W --keep-going" ${{ matrix.format }} - working-directory: ./Doc - - uses: actions/upload-artifact@master - if: success() || failure() - with: - name: build-${{ matrix.version }}-${{ matrix.format }} - path: Doc/build/${{ matrix.format }} - - lint: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - version: [ '3.14', '3.13' ] - continue-on-error: true - steps: - - uses: actions/setup-python@master - with: - python-version: 3 - - run: pip install sphinx-lint - - uses: actions/checkout@master - with: - ref: ${{ matrix.version }} - - uses: rffontenelle/sphinx-lint-problem-matcher@v1.0.0 - - run: sphinx-lint diff --git a/.github/workflows/pr_build.yml b/.github/workflows/pr_build.yml new file mode 100644 index 000000000..5a80f70bd --- /dev/null +++ b/.github/workflows/pr_build.yml @@ -0,0 +1,72 @@ +name: PR build for ver 3.8 + +on: + pull_request: + branches: [ "3.9" ] + types: + - opened # open PR + - synchronize # update the branch which pulled from + - reopened # re-open PR + +jobs: + pr_build: + runs-on: ubuntu-latest + + steps: + - name: Prepare environment variables + run: | + ref=${GITHUB_REF#refs/pull/} + pr_num=${ref%/merge} + + echo "::set-env name=PR_BUILD_ID::${GITHUB_BASE_REF}/${pr_num}" + echo "::set-env name=DOCS_BASE_DIR::build/html" + echo "::set-env name=DOCS_OUTPUT_DIR::build/html/${GITHUB_BASE_REF}/${pr_num}" + + - name: Checkout cpython repository + uses: actions/checkout@v2 + with: + repository: python-doc-ja/cpython-doc-catalog + ref: catalog-3.8 + path: cpython + + + - name: Checkout PR branch + uses: actions/checkout@v2 + with: + ref: ${{ github.ref }} + path: cpython/Doc/locales/ja/LC_MESSAGES + + - name: Checkout GitHub Pages + uses: actions/checkout@v2 + with: + ref: gh-pages + path: build/html + + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install -y --no-install-recommends python3-venv + + - name: Build docs + run: | + cd cpython/Doc + make venv + rm -rf ${DOCS_OUTPUT_DIR} + make build ALLSPHINXOPTS="-b html -D language=ja -D gettext_compact=0 -E -d build/doctrees . ${GITHUB_WORKSPACE}/${DOCS_OUTPUT_DIR}" + ls -l ${GITHUB_WORKSPACE}/${DOCS_OUTPUT_DIR} + + - name: Publish docs + run: | + cd ${GITHUB_WORKSPACE}/${DOCS_BASE_DIR} + git config --local user.name "Autobuild bot on GitHub Actions" + git config --local user.email "githubaction-build-bot@example.com" + git add . + if [ $(git status -s | wc -l) -eq 0 ]; then echo "nothing to commit"; exit 0; fi + git commit -m 'update html' + git push --quiet "https://${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" gh-pages:gh-pages + + - name: Notify the URL of the built docs + uses: thollander/actions-comment-pull-request@master + with: + message: 'Please check the built documentation!!! https://python.github.io/python-docs-ja/${{ env.PR_BUILD_ID }}' + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml deleted file mode 100644 index 444a70e6c..000000000 --- a/.github/workflows/update.yml +++ /dev/null @@ -1,115 +0,0 @@ -# Modification along rffontenelle/python-docs-pt-br -name: Update translations - -on: - workflow_dispatch: - schedule: - - cron: '40 23 * * *' - #push: - # paths: - # - '.github/workflows/update.yml' - # - 'scripts/update.sh' - # branches: - # - '3.11' - -env: - CPYTHON_BRANCH: '3.14' - LANGUAGE: 'ja' - -jobs: - update: - # Job to pull translation from Transifex platform, and commit & push changes - runs-on: ubuntu-latest - steps: - - name: Check out ${{ github.repository }} - uses: actions/checkout@v4 - - name: Check out CPython - uses: actions/checkout@v4 - with: - repository: python/cpython - persist-credentials: false - ref: ${{ env.CPYTHON_BRANCH }} - path: cpython - - name: Set up Python - uses: actions/setup-python@v5 - with: - cache: 'pip' - cache-dependency-path: '**/requirements*.txt' - - name: Install Transifex CLI - run: | - curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash - working-directory: /usr/local/bin - - name: Install dependencies - run: | - sudo apt-get update -y && sudo apt-get install gettext -y - pip install --upgrade pip - pip install -r requirements.txt -r cpython/Doc/requirements.txt - - name: Update translations - run: | - sh scripts/update.sh - env: - TX_TOKEN: ${{ secrets.TX_TOKEN }} - LANGUAGE: ${{ env.LANGUAGE }} - - name: Wrap catalog message files - run: | - powrap --modified - - name: Commit and push changes - if: github.repository == 'python/python-docs-ja' - run: | - git config user.name github-actions - git config user.email github-actions@github.com - git status - git add -A - git diff-index --quiet HEAD || ( git commit -m "Update translations from Transifex" && git push ) - - merge: - # Merge translations previously updated into older branches to make sure - # older versions of Python Docs gets translated as well. - name: merge into ${{ matrix.branch }} - needs: [update] - strategy: - matrix: - branch: [ "3.13", "3.12", "3.11" ] - - runs-on: ubuntu-latest - steps: - - name: Check out source branch (${{ env.CPYTHON_BRANCH }}) - uses: actions/checkout@v4 - with: - path: ${{ env.CPYTHON_BRANCH }} - - - name: Check out target branch (${{ matrix.branch }}) - uses: actions/checkout@v4 - with: - ref: ${{ matrix.branch }} - path: ${{ matrix.branch }} - - - name: Set up Python - uses: actions/setup-python@v5 - with: - cache: 'pip' - cache-dependency-path: '**/requirements*.txt' - - - name: Install dependencies - run: | - sudo apt-get update -y && sudo apt-get install gettext -y - pip install pomerge powrap - - - name: Merge overwriting on stable release branch - run: | - pomerge --from "${{ env.CPYTHON_BRANCH }}"/**/*.po --to "${{ matrix.branch }}"/**/*.po - - - name: Wrap catalog message files - run: | - powrap --modified -C "${{ matrix.branch }}" - - - name: Commit and push changes - if: github.repository == 'python/python-docs-ja' - run: | - cd "${{ matrix.branch }}" - git config user.name github-actions - git config user.email github-actions@github.com - git status - git add -A - git diff-index --quiet HEAD || ( git commit -m "Merge ${{ env.CPYTHON_BRANCH }} into ${{ matrix.branch }}" && git push ) - diff --git a/.gitignore b/.gitignore index 74581d6ed..ed3e15c6d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -cpython +secrets_3.9.tar diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..449d75afe --- /dev/null +++ b/.travis.yml @@ -0,0 +1,30 @@ +dist: bionic +language: python +python: '3.8' +branches: + only: + - 3.9 +env: + global: + # branch name of python-docs-ja repository + - DOCS_BRANCH=3.9 + # branch name of cpython repository + - CPYTHON_BRANCH=3.9 + # branch name of cpython-doc-catalog repository + - CATALOG_BRANCH=catalog-3.9 + # Transifex project name + - TRANSIFEX_PROJECT=python-39 + # Directory where repositories are cloned + - BASEDIR="$(dirname ${TRAVIS_BUILD_DIR})" + # Number of parent commits + - NUM_PARENTS=$(git log --pretty=%P -n 1 HEAD | awk '{ print NF }') +install: + - pip install sphinx + - pip install blurb + - pip install transifex-client + - pip install sphinx-intl +before_script: + - build_type=$(bash ${TRAVIS_BUILD_DIR}/scripts/determine-build-type) + - export build_type +script: + - bash ${TRAVIS_BUILD_DIR}/scripts/${build_type}/main.sh diff --git a/.tx/config b/.tx/config deleted file mode 100644 index 81dfbbeac..000000000 --- a/.tx/config +++ /dev/null @@ -1,4291 +0,0 @@ -[main] -host = https://www.transifex.com - -[o:python-doc:p:python-newest:r:about] -file_filter = .//LC_MESSAGES/about.po -source_file = pot/about.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:bugs] -file_filter = .//LC_MESSAGES/bugs.po -source_file = pot/bugs.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--abstract] -file_filter = .//LC_MESSAGES/c-api/abstract.po -source_file = pot/c-api/abstract.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--allocation] -file_filter = .//LC_MESSAGES/c-api/allocation.po -source_file = pot/c-api/allocation.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--apiabiversion] -file_filter = .//LC_MESSAGES/c-api/apiabiversion.po -source_file = pot/c-api/apiabiversion.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--arg] -file_filter = .//LC_MESSAGES/c-api/arg.po -source_file = pot/c-api/arg.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--bool] -file_filter = .//LC_MESSAGES/c-api/bool.po -source_file = pot/c-api/bool.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--buffer] -file_filter = .//LC_MESSAGES/c-api/buffer.po -source_file = pot/c-api/buffer.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--bytearray] -file_filter = .//LC_MESSAGES/c-api/bytearray.po -source_file = pot/c-api/bytearray.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--bytes] -file_filter = .//LC_MESSAGES/c-api/bytes.po -source_file = pot/c-api/bytes.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--call] -file_filter = .//LC_MESSAGES/c-api/call.po -source_file = pot/c-api/call.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--capsule] -file_filter = .//LC_MESSAGES/c-api/capsule.po -source_file = pot/c-api/capsule.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--cell] -file_filter = .//LC_MESSAGES/c-api/cell.po -source_file = pot/c-api/cell.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--code] -file_filter = .//LC_MESSAGES/c-api/code.po -source_file = pot/c-api/code.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--codec] -file_filter = .//LC_MESSAGES/c-api/codec.po -source_file = pot/c-api/codec.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--complex] -file_filter = .//LC_MESSAGES/c-api/complex.po -source_file = pot/c-api/complex.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--concrete] -file_filter = .//LC_MESSAGES/c-api/concrete.po -source_file = pot/c-api/concrete.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--contextvars] -file_filter = .//LC_MESSAGES/c-api/contextvars.po -source_file = pot/c-api/contextvars.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--conversion] -file_filter = .//LC_MESSAGES/c-api/conversion.po -source_file = pot/c-api/conversion.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--coro] -file_filter = .//LC_MESSAGES/c-api/coro.po -source_file = pot/c-api/coro.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--curses] -file_filter = .//LC_MESSAGES/c-api/curses.po -source_file = pot/c-api/curses.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--datetime] -file_filter = .//LC_MESSAGES/c-api/datetime.po -source_file = pot/c-api/datetime.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--descriptor] -file_filter = .//LC_MESSAGES/c-api/descriptor.po -source_file = pot/c-api/descriptor.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--dict] -file_filter = .//LC_MESSAGES/c-api/dict.po -source_file = pot/c-api/dict.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--exceptions] -file_filter = .//LC_MESSAGES/c-api/exceptions.po -source_file = pot/c-api/exceptions.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--extension-modules] -file_filter = .//LC_MESSAGES/c-api/extension-modules.po -source_file = pot/c-api/extension-modules.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--file] -file_filter = .//LC_MESSAGES/c-api/file.po -source_file = pot/c-api/file.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--float] -file_filter = .//LC_MESSAGES/c-api/float.po -source_file = pot/c-api/float.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--frame] -file_filter = .//LC_MESSAGES/c-api/frame.po -source_file = pot/c-api/frame.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--function] -file_filter = .//LC_MESSAGES/c-api/function.po -source_file = pot/c-api/function.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--gcsupport] -file_filter = .//LC_MESSAGES/c-api/gcsupport.po -source_file = pot/c-api/gcsupport.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--gen] -file_filter = .//LC_MESSAGES/c-api/gen.po -source_file = pot/c-api/gen.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--hash] -file_filter = .//LC_MESSAGES/c-api/hash.po -source_file = pot/c-api/hash.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--import] -file_filter = .//LC_MESSAGES/c-api/import.po -source_file = pot/c-api/import.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--index] -file_filter = .//LC_MESSAGES/c-api/index.po -source_file = pot/c-api/index.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--init] -file_filter = .//LC_MESSAGES/c-api/init.po -source_file = pot/c-api/init.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--init_config] -file_filter = .//LC_MESSAGES/c-api/init_config.po -source_file = pot/c-api/init_config.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--interp-lifecycle] -file_filter = .//LC_MESSAGES/c-api/interp-lifecycle.po -source_file = pot/c-api/interp-lifecycle.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--intro] -file_filter = .//LC_MESSAGES/c-api/intro.po -source_file = pot/c-api/intro.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--iter] -file_filter = .//LC_MESSAGES/c-api/iter.po -source_file = pot/c-api/iter.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--iterator] -file_filter = .//LC_MESSAGES/c-api/iterator.po -source_file = pot/c-api/iterator.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--lifecycle] -file_filter = .//LC_MESSAGES/c-api/lifecycle.po -source_file = pot/c-api/lifecycle.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--list] -file_filter = .//LC_MESSAGES/c-api/list.po -source_file = pot/c-api/list.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--long] -file_filter = .//LC_MESSAGES/c-api/long.po -source_file = pot/c-api/long.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--mapping] -file_filter = .//LC_MESSAGES/c-api/mapping.po -source_file = pot/c-api/mapping.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--marshal] -file_filter = .//LC_MESSAGES/c-api/marshal.po -source_file = pot/c-api/marshal.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--memory] -file_filter = .//LC_MESSAGES/c-api/memory.po -source_file = pot/c-api/memory.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--memoryview] -file_filter = .//LC_MESSAGES/c-api/memoryview.po -source_file = pot/c-api/memoryview.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--method] -file_filter = .//LC_MESSAGES/c-api/method.po -source_file = pot/c-api/method.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--module] -file_filter = .//LC_MESSAGES/c-api/module.po -source_file = pot/c-api/module.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--monitoring] -file_filter = .//LC_MESSAGES/c-api/monitoring.po -source_file = pot/c-api/monitoring.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--none] -file_filter = .//LC_MESSAGES/c-api/none.po -source_file = pot/c-api/none.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--number] -file_filter = .//LC_MESSAGES/c-api/number.po -source_file = pot/c-api/number.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--object] -file_filter = .//LC_MESSAGES/c-api/object.po -source_file = pot/c-api/object.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--objimpl] -file_filter = .//LC_MESSAGES/c-api/objimpl.po -source_file = pot/c-api/objimpl.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--perfmaps] -file_filter = .//LC_MESSAGES/c-api/perfmaps.po -source_file = pot/c-api/perfmaps.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--picklebuffer] -file_filter = .//LC_MESSAGES/c-api/picklebuffer.po -source_file = pot/c-api/picklebuffer.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--profiling] -file_filter = .//LC_MESSAGES/c-api/profiling.po -source_file = pot/c-api/profiling.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--refcounting] -file_filter = .//LC_MESSAGES/c-api/refcounting.po -source_file = pot/c-api/refcounting.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--reflection] -file_filter = .//LC_MESSAGES/c-api/reflection.po -source_file = pot/c-api/reflection.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--sequence] -file_filter = .//LC_MESSAGES/c-api/sequence.po -source_file = pot/c-api/sequence.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--set] -file_filter = .//LC_MESSAGES/c-api/set.po -source_file = pot/c-api/set.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--slice] -file_filter = .//LC_MESSAGES/c-api/slice.po -source_file = pot/c-api/slice.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--stable] -file_filter = .//LC_MESSAGES/c-api/stable.po -source_file = pot/c-api/stable.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--structures] -file_filter = .//LC_MESSAGES/c-api/structures.po -source_file = pot/c-api/structures.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--subinterpreters] -file_filter = .//LC_MESSAGES/c-api/subinterpreters.po -source_file = pot/c-api/subinterpreters.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--synchronization] -file_filter = .//LC_MESSAGES/c-api/synchronization.po -source_file = pot/c-api/synchronization.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--sys] -file_filter = .//LC_MESSAGES/c-api/sys.po -source_file = pot/c-api/sys.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--threads] -file_filter = .//LC_MESSAGES/c-api/threads.po -source_file = pot/c-api/threads.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--time] -file_filter = .//LC_MESSAGES/c-api/time.po -source_file = pot/c-api/time.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--tls] -file_filter = .//LC_MESSAGES/c-api/tls.po -source_file = pot/c-api/tls.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--tuple] -file_filter = .//LC_MESSAGES/c-api/tuple.po -source_file = pot/c-api/tuple.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--type] -file_filter = .//LC_MESSAGES/c-api/type.po -source_file = pot/c-api/type.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--typehints] -file_filter = .//LC_MESSAGES/c-api/typehints.po -source_file = pot/c-api/typehints.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--typeobj] -file_filter = .//LC_MESSAGES/c-api/typeobj.po -source_file = pot/c-api/typeobj.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--unicode] -file_filter = .//LC_MESSAGES/c-api/unicode.po -source_file = pot/c-api/unicode.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--utilities] -file_filter = .//LC_MESSAGES/c-api/utilities.po -source_file = pot/c-api/utilities.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--veryhigh] -file_filter = .//LC_MESSAGES/c-api/veryhigh.po -source_file = pot/c-api/veryhigh.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:c-api--weakref] -file_filter = .//LC_MESSAGES/c-api/weakref.po -source_file = pot/c-api/weakref.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:contents] -file_filter = .//LC_MESSAGES/contents.po -source_file = pot/contents.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:copyright] -file_filter = .//LC_MESSAGES/copyright.po -source_file = pot/copyright.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:deprecations--c-api-pending-removal-in-3_14] -file_filter = .//LC_MESSAGES/deprecations/c-api-pending-removal-in-3.14.po -source_file = pot/deprecations/c-api-pending-removal-in-3.14.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:deprecations--c-api-pending-removal-in-3_15] -file_filter = .//LC_MESSAGES/deprecations/c-api-pending-removal-in-3.15.po -source_file = pot/deprecations/c-api-pending-removal-in-3.15.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:deprecations--c-api-pending-removal-in-3_16] -file_filter = .//LC_MESSAGES/deprecations/c-api-pending-removal-in-3.16.po -source_file = pot/deprecations/c-api-pending-removal-in-3.16.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:deprecations--c-api-pending-removal-in-3_18] -file_filter = .//LC_MESSAGES/deprecations/c-api-pending-removal-in-3.18.po -source_file = pot/deprecations/c-api-pending-removal-in-3.18.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:deprecations--c-api-pending-removal-in-future] -file_filter = .//LC_MESSAGES/deprecations/c-api-pending-removal-in-future.po -source_file = pot/deprecations/c-api-pending-removal-in-future.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:deprecations--index] -file_filter = .//LC_MESSAGES/deprecations/index.po -source_file = pot/deprecations/index.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:deprecations--pending-removal-in-3_13] -file_filter = .//LC_MESSAGES/deprecations/pending-removal-in-3.13.po -source_file = pot/deprecations/pending-removal-in-3.13.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:deprecations--pending-removal-in-3_14] -file_filter = .//LC_MESSAGES/deprecations/pending-removal-in-3.14.po -source_file = pot/deprecations/pending-removal-in-3.14.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:deprecations--pending-removal-in-3_15] -file_filter = .//LC_MESSAGES/deprecations/pending-removal-in-3.15.po -source_file = pot/deprecations/pending-removal-in-3.15.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:deprecations--pending-removal-in-3_16] -file_filter = .//LC_MESSAGES/deprecations/pending-removal-in-3.16.po -source_file = pot/deprecations/pending-removal-in-3.16.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:deprecations--pending-removal-in-3_17] -file_filter = .//LC_MESSAGES/deprecations/pending-removal-in-3.17.po -source_file = pot/deprecations/pending-removal-in-3.17.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:deprecations--pending-removal-in-3_18] -file_filter = .//LC_MESSAGES/deprecations/pending-removal-in-3.18.po -source_file = pot/deprecations/pending-removal-in-3.18.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:deprecations--pending-removal-in-3_19] -file_filter = .//LC_MESSAGES/deprecations/pending-removal-in-3.19.po -source_file = pot/deprecations/pending-removal-in-3.19.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:deprecations--pending-removal-in-future] -file_filter = .//LC_MESSAGES/deprecations/pending-removal-in-future.po -source_file = pot/deprecations/pending-removal-in-future.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:distributing--index] -file_filter = .//LC_MESSAGES/distributing/index.po -source_file = pot/distributing/index.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:extending--building] -file_filter = .//LC_MESSAGES/extending/building.po -source_file = pot/extending/building.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:extending--embedding] -file_filter = .//LC_MESSAGES/extending/embedding.po -source_file = pot/extending/embedding.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:extending--extending] -file_filter = .//LC_MESSAGES/extending/extending.po -source_file = pot/extending/extending.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:extending--index] -file_filter = .//LC_MESSAGES/extending/index.po -source_file = pot/extending/index.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:extending--newtypes] -file_filter = .//LC_MESSAGES/extending/newtypes.po -source_file = pot/extending/newtypes.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:extending--newtypes_tutorial] -file_filter = .//LC_MESSAGES/extending/newtypes_tutorial.po -source_file = pot/extending/newtypes_tutorial.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:extending--windows] -file_filter = .//LC_MESSAGES/extending/windows.po -source_file = pot/extending/windows.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:faq--design] -file_filter = .//LC_MESSAGES/faq/design.po -source_file = pot/faq/design.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:faq--extending] -file_filter = .//LC_MESSAGES/faq/extending.po -source_file = pot/faq/extending.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:faq--general] -file_filter = .//LC_MESSAGES/faq/general.po -source_file = pot/faq/general.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:faq--gui] -file_filter = .//LC_MESSAGES/faq/gui.po -source_file = pot/faq/gui.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:faq--index] -file_filter = .//LC_MESSAGES/faq/index.po -source_file = pot/faq/index.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:faq--installed] -file_filter = .//LC_MESSAGES/faq/installed.po -source_file = pot/faq/installed.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:faq--library] -file_filter = .//LC_MESSAGES/faq/library.po -source_file = pot/faq/library.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:faq--programming] -file_filter = .//LC_MESSAGES/faq/programming.po -source_file = pot/faq/programming.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:faq--windows] -file_filter = .//LC_MESSAGES/faq/windows.po -source_file = pot/faq/windows.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:glossary_] -file_filter = .//LC_MESSAGES/glossary.po -source_file = pot/glossary.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--a-conceptual-overview-of-asyncio] -file_filter = .//LC_MESSAGES/howto/a-conceptual-overview-of-asyncio.po -source_file = pot/howto/a-conceptual-overview-of-asyncio.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--annotations] -file_filter = .//LC_MESSAGES/howto/annotations.po -source_file = pot/howto/annotations.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--argparse] -file_filter = .//LC_MESSAGES/howto/argparse.po -source_file = pot/howto/argparse.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--argparse-optparse] -file_filter = .//LC_MESSAGES/howto/argparse-optparse.po -source_file = pot/howto/argparse-optparse.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--clinic] -file_filter = .//LC_MESSAGES/howto/clinic.po -source_file = pot/howto/clinic.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--cporting] -file_filter = .//LC_MESSAGES/howto/cporting.po -source_file = pot/howto/cporting.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--curses] -file_filter = .//LC_MESSAGES/howto/curses.po -source_file = pot/howto/curses.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--descriptor] -file_filter = .//LC_MESSAGES/howto/descriptor.po -source_file = pot/howto/descriptor.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--enum] -file_filter = .//LC_MESSAGES/howto/enum.po -source_file = pot/howto/enum.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--free-threading-extensions] -file_filter = .//LC_MESSAGES/howto/free-threading-extensions.po -source_file = pot/howto/free-threading-extensions.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--free-threading-python] -file_filter = .//LC_MESSAGES/howto/free-threading-python.po -source_file = pot/howto/free-threading-python.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--functional] -file_filter = .//LC_MESSAGES/howto/functional.po -source_file = pot/howto/functional.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--gdb_helpers] -file_filter = .//LC_MESSAGES/howto/gdb_helpers.po -source_file = pot/howto/gdb_helpers.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--index] -file_filter = .//LC_MESSAGES/howto/index.po -source_file = pot/howto/index.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--instrumentation] -file_filter = .//LC_MESSAGES/howto/instrumentation.po -source_file = pot/howto/instrumentation.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--ipaddress] -file_filter = .//LC_MESSAGES/howto/ipaddress.po -source_file = pot/howto/ipaddress.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--isolating-extensions] -file_filter = .//LC_MESSAGES/howto/isolating-extensions.po -source_file = pot/howto/isolating-extensions.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--logging] -file_filter = .//LC_MESSAGES/howto/logging.po -source_file = pot/howto/logging.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--logging-cookbook] -file_filter = .//LC_MESSAGES/howto/logging-cookbook.po -source_file = pot/howto/logging-cookbook.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--mro] -file_filter = .//LC_MESSAGES/howto/mro.po -source_file = pot/howto/mro.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--perf_profiling] -file_filter = .//LC_MESSAGES/howto/perf_profiling.po -source_file = pot/howto/perf_profiling.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--pyporting] -file_filter = .//LC_MESSAGES/howto/pyporting.po -source_file = pot/howto/pyporting.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--regex] -file_filter = .//LC_MESSAGES/howto/regex.po -source_file = pot/howto/regex.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--remote_debugging] -file_filter = .//LC_MESSAGES/howto/remote_debugging.po -source_file = pot/howto/remote_debugging.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--sockets] -file_filter = .//LC_MESSAGES/howto/sockets.po -source_file = pot/howto/sockets.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--sorting] -file_filter = .//LC_MESSAGES/howto/sorting.po -source_file = pot/howto/sorting.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--timerfd] -file_filter = .//LC_MESSAGES/howto/timerfd.po -source_file = pot/howto/timerfd.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--unicode] -file_filter = .//LC_MESSAGES/howto/unicode.po -source_file = pot/howto/unicode.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:howto--urllib2] -file_filter = .//LC_MESSAGES/howto/urllib2.po -source_file = pot/howto/urllib2.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:improve-page] -file_filter = .//LC_MESSAGES/improve-page.po -source_file = pot/improve-page.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:improve-page-nojs] -file_filter = .//LC_MESSAGES/improve-page-nojs.po -source_file = pot/improve-page-nojs.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:installing--index] -file_filter = .//LC_MESSAGES/installing/index.po -source_file = pot/installing/index.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--__future__] -file_filter = .//LC_MESSAGES/library/__future__.po -source_file = pot/library/__future__.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--__main__] -file_filter = .//LC_MESSAGES/library/__main__.po -source_file = pot/library/__main__.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--_thread] -file_filter = .//LC_MESSAGES/library/_thread.po -source_file = pot/library/_thread.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--abc] -file_filter = .//LC_MESSAGES/library/abc.po -source_file = pot/library/abc.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--aifc] -file_filter = .//LC_MESSAGES/library/aifc.po -source_file = pot/library/aifc.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--allos] -file_filter = .//LC_MESSAGES/library/allos.po -source_file = pot/library/allos.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--annotationlib] -file_filter = .//LC_MESSAGES/library/annotationlib.po -source_file = pot/library/annotationlib.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--archiving] -file_filter = .//LC_MESSAGES/library/archiving.po -source_file = pot/library/archiving.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--argparse] -file_filter = .//LC_MESSAGES/library/argparse.po -source_file = pot/library/argparse.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--array] -file_filter = .//LC_MESSAGES/library/array.po -source_file = pot/library/array.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--ast] -file_filter = .//LC_MESSAGES/library/ast.po -source_file = pot/library/ast.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asynchat] -file_filter = .//LC_MESSAGES/library/asynchat.po -source_file = pot/library/asynchat.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio] -file_filter = .//LC_MESSAGES/library/asyncio.po -source_file = pot/library/asyncio.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-api-index] -file_filter = .//LC_MESSAGES/library/asyncio-api-index.po -source_file = pot/library/asyncio-api-index.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-dev] -file_filter = .//LC_MESSAGES/library/asyncio-dev.po -source_file = pot/library/asyncio-dev.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-eventloop] -file_filter = .//LC_MESSAGES/library/asyncio-eventloop.po -source_file = pot/library/asyncio-eventloop.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-exceptions] -file_filter = .//LC_MESSAGES/library/asyncio-exceptions.po -source_file = pot/library/asyncio-exceptions.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-extending] -file_filter = .//LC_MESSAGES/library/asyncio-extending.po -source_file = pot/library/asyncio-extending.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-future] -file_filter = .//LC_MESSAGES/library/asyncio-future.po -source_file = pot/library/asyncio-future.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-graph] -file_filter = .//LC_MESSAGES/library/asyncio-graph.po -source_file = pot/library/asyncio-graph.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-llapi-index] -file_filter = .//LC_MESSAGES/library/asyncio-llapi-index.po -source_file = pot/library/asyncio-llapi-index.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-platforms] -file_filter = .//LC_MESSAGES/library/asyncio-platforms.po -source_file = pot/library/asyncio-platforms.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-policy] -file_filter = .//LC_MESSAGES/library/asyncio-policy.po -source_file = pot/library/asyncio-policy.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-protocol] -file_filter = .//LC_MESSAGES/library/asyncio-protocol.po -source_file = pot/library/asyncio-protocol.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-queue] -file_filter = .//LC_MESSAGES/library/asyncio-queue.po -source_file = pot/library/asyncio-queue.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-runner] -file_filter = .//LC_MESSAGES/library/asyncio-runner.po -source_file = pot/library/asyncio-runner.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-stream] -file_filter = .//LC_MESSAGES/library/asyncio-stream.po -source_file = pot/library/asyncio-stream.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-subprocess] -file_filter = .//LC_MESSAGES/library/asyncio-subprocess.po -source_file = pot/library/asyncio-subprocess.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-sync] -file_filter = .//LC_MESSAGES/library/asyncio-sync.po -source_file = pot/library/asyncio-sync.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-task] -file_filter = .//LC_MESSAGES/library/asyncio-task.po -source_file = pot/library/asyncio-task.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncio-threading] -file_filter = .//LC_MESSAGES/library/asyncio-threading.po -source_file = pot/library/asyncio-threading.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--asyncore] -file_filter = .//LC_MESSAGES/library/asyncore.po -source_file = pot/library/asyncore.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--atexit] -file_filter = .//LC_MESSAGES/library/atexit.po -source_file = pot/library/atexit.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--audioop] -file_filter = .//LC_MESSAGES/library/audioop.po -source_file = pot/library/audioop.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--audit_events] -file_filter = .//LC_MESSAGES/library/audit_events.po -source_file = pot/library/audit_events.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--base64] -file_filter = .//LC_MESSAGES/library/base64.po -source_file = pot/library/base64.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--bdb] -file_filter = .//LC_MESSAGES/library/bdb.po -source_file = pot/library/bdb.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--binary] -file_filter = .//LC_MESSAGES/library/binary.po -source_file = pot/library/binary.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--binascii] -file_filter = .//LC_MESSAGES/library/binascii.po -source_file = pot/library/binascii.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--bisect] -file_filter = .//LC_MESSAGES/library/bisect.po -source_file = pot/library/bisect.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--builtins] -file_filter = .//LC_MESSAGES/library/builtins.po -source_file = pot/library/builtins.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--bz2] -file_filter = .//LC_MESSAGES/library/bz2.po -source_file = pot/library/bz2.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--calendar] -file_filter = .//LC_MESSAGES/library/calendar.po -source_file = pot/library/calendar.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--cgi] -file_filter = .//LC_MESSAGES/library/cgi.po -source_file = pot/library/cgi.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--cgitb] -file_filter = .//LC_MESSAGES/library/cgitb.po -source_file = pot/library/cgitb.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--chunk] -file_filter = .//LC_MESSAGES/library/chunk.po -source_file = pot/library/chunk.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--cmath] -file_filter = .//LC_MESSAGES/library/cmath.po -source_file = pot/library/cmath.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--cmd] -file_filter = .//LC_MESSAGES/library/cmd.po -source_file = pot/library/cmd.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--cmdline] -file_filter = .//LC_MESSAGES/library/cmdline.po -source_file = pot/library/cmdline.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--cmdlinelibs] -file_filter = .//LC_MESSAGES/library/cmdlinelibs.po -source_file = pot/library/cmdlinelibs.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--code] -file_filter = .//LC_MESSAGES/library/code.po -source_file = pot/library/code.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--codecs] -file_filter = .//LC_MESSAGES/library/codecs.po -source_file = pot/library/codecs.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--codeop] -file_filter = .//LC_MESSAGES/library/codeop.po -source_file = pot/library/codeop.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--collections] -file_filter = .//LC_MESSAGES/library/collections.po -source_file = pot/library/collections.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--collections_abc] -file_filter = .//LC_MESSAGES/library/collections.abc.po -source_file = pot/library/collections.abc.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--colorsys] -file_filter = .//LC_MESSAGES/library/colorsys.po -source_file = pot/library/colorsys.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--compileall] -file_filter = .//LC_MESSAGES/library/compileall.po -source_file = pot/library/compileall.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--compression] -file_filter = .//LC_MESSAGES/library/compression.po -source_file = pot/library/compression.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--compression_zstd] -file_filter = .//LC_MESSAGES/library/compression.zstd.po -source_file = pot/library/compression.zstd.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--concurrency] -file_filter = .//LC_MESSAGES/library/concurrency.po -source_file = pot/library/concurrency.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--concurrent] -file_filter = .//LC_MESSAGES/library/concurrent.po -source_file = pot/library/concurrent.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--concurrent_futures] -file_filter = .//LC_MESSAGES/library/concurrent.futures.po -source_file = pot/library/concurrent.futures.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--concurrent_interpreters] -file_filter = .//LC_MESSAGES/library/concurrent.interpreters.po -source_file = pot/library/concurrent.interpreters.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--configparser] -file_filter = .//LC_MESSAGES/library/configparser.po -source_file = pot/library/configparser.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--constants] -file_filter = .//LC_MESSAGES/library/constants.po -source_file = pot/library/constants.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--contextlib] -file_filter = .//LC_MESSAGES/library/contextlib.po -source_file = pot/library/contextlib.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--contextvars] -file_filter = .//LC_MESSAGES/library/contextvars.po -source_file = pot/library/contextvars.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--copy] -file_filter = .//LC_MESSAGES/library/copy.po -source_file = pot/library/copy.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--copyreg] -file_filter = .//LC_MESSAGES/library/copyreg.po -source_file = pot/library/copyreg.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--crypt] -file_filter = .//LC_MESSAGES/library/crypt.po -source_file = pot/library/crypt.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--crypto] -file_filter = .//LC_MESSAGES/library/crypto.po -source_file = pot/library/crypto.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--csv] -file_filter = .//LC_MESSAGES/library/csv.po -source_file = pot/library/csv.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--ctypes] -file_filter = .//LC_MESSAGES/library/ctypes.po -source_file = pot/library/ctypes.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--curses] -file_filter = .//LC_MESSAGES/library/curses.po -source_file = pot/library/curses.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--curses_ascii] -file_filter = .//LC_MESSAGES/library/curses.ascii.po -source_file = pot/library/curses.ascii.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--curses_panel] -file_filter = .//LC_MESSAGES/library/curses.panel.po -source_file = pot/library/curses.panel.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--custominterp] -file_filter = .//LC_MESSAGES/library/custominterp.po -source_file = pot/library/custominterp.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--dataclasses] -file_filter = .//LC_MESSAGES/library/dataclasses.po -source_file = pot/library/dataclasses.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--datatypes] -file_filter = .//LC_MESSAGES/library/datatypes.po -source_file = pot/library/datatypes.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--datetime] -file_filter = .//LC_MESSAGES/library/datetime.po -source_file = pot/library/datetime.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--dbm] -file_filter = .//LC_MESSAGES/library/dbm.po -source_file = pot/library/dbm.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--debug] -file_filter = .//LC_MESSAGES/library/debug.po -source_file = pot/library/debug.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--decimal] -file_filter = .//LC_MESSAGES/library/decimal.po -source_file = pot/library/decimal.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--development] -file_filter = .//LC_MESSAGES/library/development.po -source_file = pot/library/development.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--devmode] -file_filter = .//LC_MESSAGES/library/devmode.po -source_file = pot/library/devmode.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--dialog] -file_filter = .//LC_MESSAGES/library/dialog.po -source_file = pot/library/dialog.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--difflib] -file_filter = .//LC_MESSAGES/library/difflib.po -source_file = pot/library/difflib.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--dis] -file_filter = .//LC_MESSAGES/library/dis.po -source_file = pot/library/dis.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--distribution] -file_filter = .//LC_MESSAGES/library/distribution.po -source_file = pot/library/distribution.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--distutils] -file_filter = .//LC_MESSAGES/library/distutils.po -source_file = pot/library/distutils.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--doctest] -file_filter = .//LC_MESSAGES/library/doctest.po -source_file = pot/library/doctest.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email] -file_filter = .//LC_MESSAGES/library/email.po -source_file = pot/library/email.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email_charset] -file_filter = .//LC_MESSAGES/library/email.charset.po -source_file = pot/library/email.charset.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email_compat32-message] -file_filter = .//LC_MESSAGES/library/email.compat32-message.po -source_file = pot/library/email.compat32-message.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email_contentmanager] -file_filter = .//LC_MESSAGES/library/email.contentmanager.po -source_file = pot/library/email.contentmanager.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email_encoders] -file_filter = .//LC_MESSAGES/library/email.encoders.po -source_file = pot/library/email.encoders.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email_errors] -file_filter = .//LC_MESSAGES/library/email.errors.po -source_file = pot/library/email.errors.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email_examples] -file_filter = .//LC_MESSAGES/library/email.examples.po -source_file = pot/library/email.examples.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email_generator] -file_filter = .//LC_MESSAGES/library/email.generator.po -source_file = pot/library/email.generator.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email_header] -file_filter = .//LC_MESSAGES/library/email.header.po -source_file = pot/library/email.header.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email_headerregistry] -file_filter = .//LC_MESSAGES/library/email.headerregistry.po -source_file = pot/library/email.headerregistry.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email_iterators] -file_filter = .//LC_MESSAGES/library/email.iterators.po -source_file = pot/library/email.iterators.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email_message] -file_filter = .//LC_MESSAGES/library/email.message.po -source_file = pot/library/email.message.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email_mime] -file_filter = .//LC_MESSAGES/library/email.mime.po -source_file = pot/library/email.mime.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email_parser] -file_filter = .//LC_MESSAGES/library/email.parser.po -source_file = pot/library/email.parser.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email_policy] -file_filter = .//LC_MESSAGES/library/email.policy.po -source_file = pot/library/email.policy.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--email_utils] -file_filter = .//LC_MESSAGES/library/email.utils.po -source_file = pot/library/email.utils.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--ensurepip] -file_filter = .//LC_MESSAGES/library/ensurepip.po -source_file = pot/library/ensurepip.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--enum] -file_filter = .//LC_MESSAGES/library/enum.po -source_file = pot/library/enum.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--errno] -file_filter = .//LC_MESSAGES/library/errno.po -source_file = pot/library/errno.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--exceptions] -file_filter = .//LC_MESSAGES/library/exceptions.po -source_file = pot/library/exceptions.pot -type = PO -minimum_perc = 0 -replace_edited_strings = false -keep_translations = false - -[o:python-doc:p:python-newest:r:library--faulthandler] -file_filter = ./