diff --git a/.gitattributes b/.gitattributes
index d0f6ad06464..d44a1f75076 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -51,6 +51,8 @@ tests/roots/test-pycode/cp_1251_coded.py dos
# Non UTF-8 encodings
tests/roots/test-pycode/cp_1251_coded.py working-tree-encoding=windows-1251
+tests/roots/test-root/wrongenc.inc working-tree-encoding=iso-8859
+tests/roots/test-warnings/wrongenc.inc working-tree-encoding=iso-8859
# Generated files
# https://github.com/github/linguist/blob/master/docs/overrides.md
@@ -62,4 +64,5 @@ tests/roots/test-pycode/cp_1251_coded.py working-tree-encoding=windows-1251
tests/js/fixtures/**/*.js generated
sphinx/search/minified-js/*.js generated
+sphinx/search/_stopwords/ generated
sphinx/themes/bizstyle/static/css3-mediaqueries.js generated
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 47a31bc9d65..acd0c7a6cff 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -8,3 +8,11 @@ updates:
directory: "/"
schedule:
interval: "daily"
+ - package-ecosystem: "uv"
+ directory: "/"
+ schedule:
+ interval: "daily"
+ groups:
+ all-dependencies:
+ patterns:
+ - "*"
diff --git a/.github/workflows/builddoc.yml b/.github/workflows/builddoc.yml
index 7f8471deecb..e709d3dbb26 100644
--- a/.github/workflows/builddoc.yml
+++ b/.github/workflows/builddoc.yml
@@ -21,22 +21,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: "3"
- name: Install graphviz
run: sudo apt-get install --no-install-recommends --yes graphviz
- name: Install uv
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
with:
version: latest
enable-cache: false
- name: Install dependencies
- run: uv pip install .[docs]
+ run: uv pip install . --group docs
- name: Render the documentation
run: >
sphinx-build
diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml
index 6f3ebf264a8..0c6bdbefbcd 100644
--- a/.github/workflows/create-release.yml
+++ b/.github/workflows/create-release.yml
@@ -27,31 +27,27 @@ jobs:
attestations: write # for actions/attest
id-token: write # for actions/attest & PyPI trusted publishing
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: "3"
- name: Install uv
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
with:
version: latest
enable-cache: false
- name: Install build dependencies (pypa/build, twine)
- run: |
- uv pip install build "twine>=5.1"
- # resolution fails without betterproto
- uv pip install pypi-attestations==0.0.21 betterproto==2.0.0b6
+ run: uv pip install --group package
- name: Build distribution
run: python -m build
- name: Check distribution
- run: |
- twine check dist/*
+ run: twine check dist/*
- name: Create Sigstore attestations for built distributions
uses: actions/attest@v1
@@ -85,44 +81,15 @@ jobs:
BUNDLE_PATH: "${{ steps.attest.outputs.bundle-path }}"
- name: Upload attestation bundles
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v6
with:
name: attestation-bundles
path: /tmp/attestation-bundles/
- - name: Mint PyPI API token
- id: mint-token
- uses: actions/github-script@v7
- with:
- # language=JavaScript
- script: |
- // retrieve the ambient OIDC token
- const oidc_request_token = process.env.ACTIONS_ID_TOKEN_REQUEST_TOKEN;
- const oidc_request_url = process.env.ACTIONS_ID_TOKEN_REQUEST_URL;
- const oidc_resp = await fetch(`${oidc_request_url}&audience=pypi`, {
- headers: {Authorization: `bearer ${oidc_request_token}`},
- });
- const oidc_token = (await oidc_resp.json()).value;
-
- // exchange the OIDC token for an API token
- const mint_resp = await fetch('https://pypi.org/_/oidc/github/mint-token', {
- method: 'post',
- body: `{"token": "${oidc_token}"}` ,
- headers: {'Content-Type': 'application/json'},
- });
- const api_token = (await mint_resp.json()).token;
-
- // mask the newly minted API token, so that we don't accidentally leak it
- core.setSecret(api_token)
- core.setOutput('api-token', api_token)
-
- name: Upload to PyPI
env:
TWINE_NON_INTERACTIVE: "true"
- TWINE_USERNAME: "__token__"
- TWINE_PASSWORD: "${{ steps.mint-token.outputs.api-token }}"
- run: |
- twine upload dist/* --attestations
+ run: twine upload dist/* --attestations
github-release:
runs-on: ubuntu-latest
@@ -130,20 +97,18 @@ jobs:
environment: release
if: github.repository_owner == 'sphinx-doc'
permissions:
- contents: write # for softprops/action-gh-release to create GitHub release
+ contents: write # needed to create a GitHub release
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- - name: Get release version
- id: get_version
- uses: actions/github-script@v7
- with:
- script: core.setOutput('version', context.ref.replace("refs/tags/v", ""))
- name: Create GitHub release
- uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
- with:
- name: "Sphinx ${{ steps.get_version.outputs.version }}"
- body: "Changelog: https://www.sphinx-doc.org/en/master/changes.html"
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ TAG: ${{ github.ref_name }}
+ run: >-
+ gh release create "${TAG}"
+ --title "Sphinx ${TAG#v}"
+ --notes "Changelog: https://www.sphinx-doc.org/en/master/changes.html"
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index a3b5cf7ae52..7a073f7f39e 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
@@ -42,20 +42,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: "3"
- name: Install uv
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
with:
version: latest
enable-cache: false
- name: Install dependencies
- run: uv pip install ".[lint,test]"
+ run: uv pip install -r pyproject.toml --group package --group test --group types
- name: Type check with mypy
run: mypy
@@ -63,41 +63,63 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: "3"
- name: Install uv
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
with:
version: latest
enable-cache: false
- name: Install dependencies
- run: uv pip install ".[lint,test]"
+ run: uv pip install -r pyproject.toml --group package --group test --group types
- name: Type check with pyright
run: pyright
+ ty:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v6
+ with:
+ persist-credentials: false
+ - name: Set up Python
+ uses: actions/setup-python@v6
+ with:
+ python-version: "3"
+ - name: Install uv
+ uses: astral-sh/setup-uv@v7
+ with:
+ version: latest
+ enable-cache: false
+ - name: Install dependencies
+ run: uv pip install -r pyproject.toml --group package --group test --group types
+ - run: echo "$(which python)"
+ - name: Type check with ty
+ run: ty check --color=always --python="$(which python)"
+
docs-lint:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: "3"
- name: Install uv
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
with:
version: latest
enable-cache: false
- name: Install dependencies
- run: uv pip install --upgrade sphinx-lint
+ run: uv pip install --group lint
- name: Lint documentation with sphinx-lint
run: make doclinter
@@ -105,21 +127,39 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: "3"
- name: Install uv
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
with:
version: latest
enable-cache: false
- name: Install dependencies
- run: uv pip install --upgrade twine build
+ run: uv pip install --group package
- name: Lint with twine
run: |
python -m build .
twine check dist/*
+
+ prettier:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v6
+ - name: Set up Node.js
+ uses: actions/setup-node@v6
+ with:
+ node-version: "20"
+ cache: "npm"
+ - run: >
+ npx prettier@3.5
+ --check
+ "sphinx/themes/**/*.js"
+ "!sphinx/themes/bizstyle/static/css3-mediaqueries*.js"
+ "tests/js/**/*.{js,mjs}"
+ "!tests/js/fixtures/**"
diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml
index e9d58e4896a..04831b72dcc 100644
--- a/.github/workflows/lock.yml
+++ b/.github/workflows/lock.yml
@@ -15,7 +15,7 @@ jobs:
issues: write
pull-requests: write
steps:
- - uses: actions/github-script@v7
+ - uses: actions/github-script@v8
with:
retries: 3
# language=JavaScript
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 1758254c633..235f44ced16 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -4,11 +4,13 @@ on:
push:
paths:
- ".github/workflows/main.yml"
+ - ".pytest.toml"
- "sphinx/**"
- "tests/**"
pull_request:
paths:
- ".github/workflows/main.yml"
+ - ".pytest.toml"
- "sphinx/**"
- "tests/**"
@@ -34,19 +36,21 @@ jobs:
fail-fast: false
matrix:
python:
- - "3.11"
- "3.12"
- "3.13"
+ - "3.13t"
+ - "3.14"
+ - "3.14t"
docutils:
- - "0.20"
- "0.21"
+ - "0.22"
# include:
# # test every supported Docutils version for the latest supported Python
-# - python: "3.13"
-# docutils: "0.20"
+# - python: "3.14"
+# docutils: "0.21"
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Mount the test roots as read-only
@@ -54,7 +58,7 @@ jobs:
mkdir -p ./tests/roots-read-only
sudo mount -v --bind --read-only ./tests/roots ./tests/roots-read-only
- name: Set up Python ${{ matrix.python }}
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
- name: Check Python version
@@ -62,14 +66,18 @@ jobs:
- name: Install graphviz
run: sudo apt-get install --no-install-recommends --yes graphviz
- name: Install uv
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
with:
version: latest
enable-cache: false
- name: Install dependencies
- run: uv pip install .[test]
+ run: uv pip install . --group test
+ env:
+ UV_PYTHON: "python${{ matrix.python }}"
- name: Install Docutils ${{ matrix.docutils }}
run: uv pip install --upgrade "docutils~=${{ matrix.docutils }}.0"
+ env:
+ UV_PYTHON: "python${{ matrix.python }}"
- name: Test with pytest
run: python -m pytest -n logical --dist=worksteal -vv --durations 25
env:
@@ -83,13 +91,13 @@ jobs:
fail-fast: false
matrix:
python:
- - "3.14"
+ - "3.15"
docutils:
- - "0.20"
- "0.21"
+ - "0.22"
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python }} (deadsnakes)
@@ -103,7 +111,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- python -m pip install .[test]
+ python -m pip install . --group test
- name: Install Docutils ${{ matrix.docutils }}
run: python -m pip install --upgrade "docutils~=${{ matrix.docutils }}.0"
- name: Test with pytest
@@ -111,38 +119,6 @@ jobs:
env:
PYTHONWARNINGS: "error" # treat all warnings as errors
- free-threaded:
- runs-on: ubuntu-latest
- name: Python ${{ matrix.python }} (free-threaded)
- timeout-minutes: 15
- strategy:
- fail-fast: false
- matrix:
- python:
- - "3.13"
-
- steps:
- - uses: actions/checkout@v4
- with:
- persist-credentials: false
- - name: Set up Python ${{ matrix.python }} (deadsnakes)
- uses: deadsnakes/action@v3.2.0
- with:
- python-version: ${{ matrix.python }}
- nogil: true
- - name: Check Python version
- run: python --version --version
- - name: Install graphviz
- run: sudo apt-get install --no-install-recommends --yes graphviz
- - name: Install dependencies
- run: |
- python -m pip install --upgrade pip
- python -m pip install .[test]
- - name: Test with pytest
- run: python -m pytest -n logical --dist=worksteal -vv --durations 25
- env:
- PYTHONWARNINGS: "error" # treat all warnings as errors
-
deadsnakes-free-threaded:
runs-on: ubuntu-latest
name: Python ${{ matrix.python }} (free-threaded)
@@ -151,10 +127,10 @@ jobs:
fail-fast: false
matrix:
python:
- - "3.14"
+ - "3.15"
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python ${{ matrix.python }} (deadsnakes)
@@ -169,7 +145,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- python -m pip install .[test]
+ python -m pip install . --group test
- name: Test with pytest
run: python -m pytest -n logical --dist=worksteal -vv --durations 25
env:
@@ -181,11 +157,19 @@ jobs:
timeout-minutes: 15
steps:
- - uses: actions/checkout@v4
+ # https://github.com/actions/runner-images/issues/8755
+ # On standard runners, the D: drive is much faster.
+ - name: Set %TMP% and %TEMP% to D:\\Temp
+ run: |
+ mkdir "D:\\Tmp"
+ echo "TMP=D:\\Tmp" >> $env:GITHUB_ENV
+ echo "TEMP=D:\\Tmp" >> $env:GITHUB_ENV
+
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: "3"
- name: Check Python version
@@ -193,12 +177,12 @@ jobs:
- name: Install graphviz
run: choco install --no-progress graphviz
- name: Install uv
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
with:
version: latest
enable-cache: false
- name: Install dependencies
- run: uv pip install .[test]
+ run: uv pip install . --group test
- name: Test with pytest
run: python -m pytest -vv --durations 25
env:
@@ -210,11 +194,11 @@ jobs:
timeout-minutes: 15
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: "3"
- name: Check Python version
@@ -222,12 +206,12 @@ jobs:
- name: Install graphviz
run: brew install graphviz
- name: Install uv
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
with:
version: latest
enable-cache: false
- name: Install dependencies
- run: uv pip install .[test]
+ run: uv pip install . --group test
- name: Test with pytest
run: python -m pytest -vv --durations 25
env:
@@ -245,11 +229,11 @@ jobs:
mkdir /tmp/epubcheck && cd /tmp/epubcheck
wget --no-verbose https://github.com/w3c/epubcheck/releases/download/v${EPUBCHECK_VERSION}/epubcheck-${EPUBCHECK_VERSION}.zip
unzip epubcheck-${EPUBCHECK_VERSION}.zip
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: "3"
- name: Check Python version
@@ -257,12 +241,12 @@ jobs:
- name: Install graphviz
run: sudo apt-get install --no-install-recommends --yes graphviz
- name: Install uv
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
with:
version: latest
enable-cache: false
- name: Install dependencies
- run: uv pip install .[test]
+ run: uv pip install . --group test
- name: Install Docutils' HEAD
run: uv pip install "docutils @ git+https://repo.or.cz/docutils.git#subdirectory=docutils"
- name: Test with pytest
@@ -278,11 +262,11 @@ jobs:
timeout-minutes: 15
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: "3"
- name: Check Python version
@@ -290,13 +274,13 @@ jobs:
- name: Install graphviz
run: sudo apt-get install --no-install-recommends --yes graphviz
- name: Install uv
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
with:
version: latest
enable-cache: false
- name: Install dependencies
run: |
- uv pip install .[test] --resolution lowest-direct
+ uv pip install . --group test --resolution lowest-direct
uv pip install alabaster==1.0.0
- name: Test with pytest
run: python -m pytest -n logical --dist=worksteal -vv --durations 25
@@ -311,22 +295,24 @@ jobs:
image: ghcr.io/sphinx-doc/sphinx-ci
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: "3"
- name: Check Python version
run: python --version --version
- name: Install uv
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
with:
version: latest
enable-cache: false
- name: Install dependencies
- run: uv pip install .[test]
+ run: uv pip install . --group test
+ - name: Install Docutils' HEAD
+ run: uv pip install "docutils @ git+https://repo.or.cz/docutils.git#subdirectory=docutils"
- name: Test with pytest
run: python -m pytest -vv --durations 25
env:
@@ -340,11 +326,11 @@ jobs:
timeout-minutes: 15
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: "3"
- name: Check Python version
@@ -352,12 +338,12 @@ jobs:
- name: Install graphviz
run: sudo apt-get install --no-install-recommends --yes graphviz
- name: Install uv
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
with:
version: latest
enable-cache: false
- name: Install dependencies
- run: uv pip install .[test] pytest-cov
+ run: uv pip install . --group test pytest-cov
- name: Test with pytest
run: python -m pytest -vv --cov . --cov-append --cov-config pyproject.toml
env:
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml
index 84727288fde..0f26b2ae00a 100644
--- a/.github/workflows/nodejs.yml
+++ b/.github/workflows/nodejs.yml
@@ -33,11 +33,11 @@ jobs:
node-version: "20"
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Use Node.js ${{ env.node-version }}
- uses: actions/setup-node@v4
+ uses: actions/setup-node@v6
with:
node-version: ${{ env.node-version }}
cache: "npm"
diff --git a/.github/workflows/transifex.yml b/.github/workflows/transifex.yml
index 09437cb7ece..209b00cf709 100644
--- a/.github/workflows/transifex.yml
+++ b/.github/workflows/transifex.yml
@@ -23,11 +23,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: "3"
- name: Install transifex client
@@ -36,12 +36,12 @@ jobs:
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash
shell: bash
- name: Install uv
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
with:
version: latest
enable-cache: false
- name: Install dependencies
- run: uv pip install --upgrade babel jinja2
+ run: uv pip install --group translations
- name: Extract translations from source code
run: python utils/babel_runner.py extract
- name: Push translations to transifex.com
@@ -59,11 +59,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Python
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v6
with:
python-version: "3"
- name: Install transifex client
@@ -72,12 +72,12 @@ jobs:
curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash
shell: bash
- name: Install uv
- uses: astral-sh/setup-uv@v5
+ uses: astral-sh/setup-uv@v7
with:
version: latest
enable-cache: false
- name: Install dependencies
- run: uv pip install --upgrade babel jinja2
+ run: uv pip install --group translations
- name: Extract translations from source code
run: python utils/babel_runner.py extract
- name: Pull translations from transifex.com
diff --git a/.gitignore b/.gitignore
index 35fd23178f5..5a50535097e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,6 +3,7 @@
*.so
*.swp
+.auto/
.dir-locals.el
.cache/
.idea
diff --git a/.prettierrc.toml b/.prettierrc.toml
new file mode 100644
index 00000000000..1799612bfdd
--- /dev/null
+++ b/.prettierrc.toml
@@ -0,0 +1,2 @@
+# https://prettier.io/docs/options
+experimentalOperatorPosition = "start"
diff --git a/.pytest.toml b/.pytest.toml
new file mode 100644
index 00000000000..3d4c9798028
--- /dev/null
+++ b/.pytest.toml
@@ -0,0 +1,31 @@
+# https://docs.pytest.org/en/stable/reference/reference.html#configuration-options
+
+[pytest]
+minversion = "9.0"
+
+# https://docs.pytest.org/en/stable/reference/reference.html#command-line-flags
+addopts = [
+ "-ra",
+ "--import-mode=prepend",
+# "--pythonwarnings=error",
+]
+
+empty_parameter_set_mark = "xfail"
+filterwarnings = [
+ "all",
+ "ignore::DeprecationWarning:docutils.io",
+ "ignore:Distutils was imported before Setuptools:UserWarning:_distutils_hack",
+ "ignore:Setuptools is replacing distutils:UserWarning:_distutils_hack",
+ "ignore::DeprecationWarning:pyximport.pyximport",
+ "ignore::ImportWarning:importlib._bootstrap",
+]
+log_cli_level = "INFO"
+markers = [
+ "apidoc",
+]
+testpaths = ["tests"]
+
+strict_config = true
+strict_markers = true
+#strict_parametrization_ids = true
+strict_xfail = true
diff --git a/.ruff.toml b/.ruff.toml
index f82928eca65..256928e8a34 100644
--- a/.ruff.toml
+++ b/.ruff.toml
@@ -1,4 +1,4 @@
-target-version = "py311" # Pin Ruff to Python 3.11
+target-version = "py312" # Pin Ruff to Python 3.12
line-length = 88
output-format = "full"
@@ -275,6 +275,7 @@ select = [
logger-objects = [
"sphinx.ext.apidoc._shared.LOGGER",
+ "sphinx.ext.autodoc._shared.LOGGER",
"sphinx.ext.intersphinx._shared.LOGGER",
]
diff --git a/AUTHORS.rst b/AUTHORS.rst
index ff92ab7eab7..4646facb231 100644
--- a/AUTHORS.rst
+++ b/AUTHORS.rst
@@ -53,9 +53,11 @@ Contributors
* Eric Larson -- better error messages
* Eric N. Vander Weele -- autodoc improvements
* Eric Wieser -- autodoc improvements
+* Erik Bedard -- config options for :mod:`sphinx.ext.duration`
* Etienne Desautels -- apidoc module
* Ezio Melotti -- collapsible sidebar JavaScript
* Filip Vavera -- napoleon todo directive
+* Florian Best -- log improvements
* Glenn Matthews -- python domain signature improvements
* Gregory Szorc -- performance improvements
* Henrique Bastos -- SVG support for graphviz extension
@@ -63,6 +65,7 @@ Contributors
* Hong Xu -- svg support in imgmath extension and various bug fixes
* Horst Gutmann -- internationalization support
* Hugo van Kemenade -- support FORCE_COLOR and NO_COLOR
+* Ian Hunt-Isaak -- typealias reference improvement
* Ian Lee -- quickstart improvements
* Jacob Mason -- websupport library (GSOC project)
* James Addison -- linkcheck and HTML search improvements
@@ -83,10 +86,12 @@ Contributors
* Louis Maddox -- better docstrings
* Łukasz Langa -- partial support for autodoc
* Marco Buttu -- doctest extension (pyversion option)
+* Mark Ostroth -- semantic HTML contributions
* Martin Hans -- autodoc improvements
* Martin Larralde -- additional napoleon admonitions
* Martin Liška -- option directive and role improvements
* Martin Mahner -- nature theme
+* Martin Matouš -- initial support for PEP 695
* Matthew Fernandez -- todo extension fix
* Matthew Woodcraft -- text output improvements
* Matthias Geier -- style improvements
@@ -97,16 +102,23 @@ Contributors
* Pauli Virtanen -- autodoc improvements, autosummary extension
* Rafael Fontenelle -- internationalisation
* \A. Rafey Khan -- improved intersphinx typing
+* Rui Pinheiro -- Python 3.14 forward references support
* Roland Meister -- epub builder
* Sebastian Wiesner -- image handling, distutils support
* Slawek Figiel -- additional warning suppression
* Stefan Seefeld -- toctree improvements
* Stefan van der Walt -- autosummary extension
+* Steve Piercy -- documentation improvements
+* Szymon Karpinski -- intersphinx improvements
* \T. Powers -- HTML output improvements
* Taku Shimizu -- epub3 builder
+* Tamika Nomara -- bug fixes
* Thomas Lamb -- linkcheck builder
* Thomas Waldmann -- apidoc module fixes
+* Till Hoffmann -- doctest option to exit after first failed test
* Tim Hoffmann -- theme improvements
+* Valentin Heinisch -- warning types improvement
+* Victor Wheeler -- documentation improvements
* Vince Salvino -- JavaScript search improvements
* Will Maier -- directory HTML builder
* Zac Hatfield-Dodds -- doctest reporting improvements, intersphinx performance
diff --git a/CHANGES.rst b/CHANGES.rst
index c257b3b11b1..a71b6c6fef1 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,9 +1,13 @@
-Release 8.3.0 (in development)
+Release 9.1.0 (in development)
==============================
Dependencies
------------
+* #14153: Drop Python 3.11 support.
+* #12555: Drop Docutils 0.20 support.
+ Patch by Adam Turner
+
Incompatible changes
--------------------
@@ -16,5 +20,8 @@ Features added
Bugs fixed
----------
+* #14189: autodoc: Fix duplicate ``:no-index-entry:`` for modules.
+ Patch by Adam Turner
+
Testing
-------
diff --git a/EXAMPLES.rst b/EXAMPLES.rst
index 42d42a515f8..46657ee6d39 100644
--- a/EXAMPLES.rst
+++ b/EXAMPLES.rst
@@ -323,6 +323,7 @@ Documentation using PyData Sphinx Theme
* `Binder `__
* `Bokeh `__
* `CuPy `__
+* `DAMASK `__
* `EnOSlib `__
* `Fairlearn `__
* `Feature-engine `__
diff --git a/doc/changes/5.3.rst b/doc/changes/5.3.rst
index b2a2e5a78f1..171b0792bbe 100644
--- a/doc/changes/5.3.rst
+++ b/doc/changes/5.3.rst
@@ -8,7 +8,10 @@ Release 5.3.0 (released Oct 16, 2022)
* #10759: LaTeX: add :confval:`latex_table_style` and support the
``'booktabs'``, ``'borderless'``, and ``'colorrows'`` styles.
- (thanks to Stefan Wiehler for initial pull requests #6666, #6671)
+ (thanks to Stefan Wiehler for initial pull requests #6666, #6671).
+ Using the ``'booktabs'`` style solves #6740 (Removing LaTeX
+ column borders for automatic colspec).
+ Patch by Jean-François B.
* #10840: One can cross-reference including an option value like
``:option:`--module=foobar```, ``:option:`--module[=foobar]```,
or ``:option:`--module foobar```.
diff --git a/doc/changes/7.3.rst b/doc/changes/7.3.rst
index b544a722041..c9395c18c4a 100644
--- a/doc/changes/7.3.rst
+++ b/doc/changes/7.3.rst
@@ -86,7 +86,7 @@ Dependencies
* #11858: Increase the minimum supported version of Alabaster to 0.7.14.
Patch by Adam Turner.
-* #11411: Support `Docutils 0.21`_. Patch by Adam Turner.
+* #12267: Support `Docutils 0.21`_. Patch by Adam Turner.
.. _Docutils 0.21: https://docutils.sourceforge.io/RELEASE-NOTES.html#release-0-21-2024-04-09
* #12012: Use ``types-docutils`` instead of ``docutils-stubs``.
diff --git a/doc/changes/9.0.rst b/doc/changes/9.0.rst
new file mode 100644
index 00000000000..af51f075f0b
--- /dev/null
+++ b/doc/changes/9.0.rst
@@ -0,0 +1,244 @@
+==========
+Sphinx 9.0
+==========
+
+
+Release 9.0.4 (released Dec 04, 2025)
+=====================================
+
+Bugs fixed
+----------
+
+* #14143: Fix spurious build warnings when translators reorder references
+ in strings, or use translated display text in references.
+ Patch by Matt Wang.
+
+Release 9.0.3 (released Dec 04, 2025)
+=====================================
+
+Bugs fixed
+----------
+
+* #14142: autodoc: Restore some missing exports in :mod:`!sphinx.ext.autodoc`.
+ Patch by Adam Turner.
+
+Release 9.0.2 (released Dec 03, 2025)
+=====================================
+
+Bugs fixed
+----------
+
+* #14142: autodoc: Restore :mod:`!sphinx.ext.autodoc.mock`.
+ Patch by Adam Turner.
+
+Release 9.0.1 (released Dec 01, 2025)
+=====================================
+
+Bugs fixed
+----------
+
+* #13942: autodoc: Restore the mapping interface for options objects.
+ Patch by Adam Turner.
+* #13942: autodoc: Deprecate the mapping interface for options objects.
+ Patch by Adam Turner.
+* #13387: Update translations.
+
+Release 9.0.0 (released Nov 30, 2025)
+=====================================
+
+Dependencies
+------------
+
+* #13786: Support `Docutils 0.22`_. Patch by Adam Turner.
+
+ .. _Docutils 0.22: https://docutils.sourceforge.io/RELEASE-NOTES.html#release-0-22-2026-07-29
+
+Incompatible changes
+--------------------
+
+* #13639: :py:meth:`!SphinxComponentRegistry.create_source_parser` no longer
+ has an *app* parameter, instead taking *config* and *env*.
+ Patch by Adam Turner.
+* #13679: Non-decodable characters in source files now raise an error.
+ Such bytes have been replaced with '?' along with logging a warning
+ since Sphinx 2.0.
+ Patch by Adam Turner.
+* #13751, #14089: :mod:`sphinx.ext.autodoc` has been substantially rewritten,
+ and there may be some incompatible changes in edge cases, especially when
+ extensions interact with autodoc internals.
+ The :confval:`autodoc_use_legacy_class_based` option has been added to
+ use the legacy (pre-9.0) implementation of autodoc.
+ Patches by Adam Turner.
+* #13355: Don't include escaped title content in the search index.
+ Patch by Will Lachance.
+
+Deprecated
+----------
+
+* 13627: Deprecate remaining public :py:attr:`!.app` attributes,
+ including ``builder.app``, ``env.app``, ``events.app``,
+ and ``SphinxTransform.app``.
+ Patch by Adam Turner.
+* #13637: Deprecate the :py:meth:`!set_application` method
+ of :py:class:`~sphinx.parsers.Parser` objects.
+ Patch by Adam Turner.
+* #13644: Deprecate the :py:attr:`!Parser.config` and :py:attr:`!env` attributes.
+ Patch by Adam Turner.
+* #13665: Deprecate support for non-UTF 8 source encodings,
+ scheduled for removal in Sphinx 10.
+ Patch by Adam Turner.
+* #13682: Deprecate :py:mod:`!sphinx.io`.
+ Sphinx no longer uses the :py:mod:`!sphinx.io` classes,
+ having replaced them with standard Python I/O.
+ The entire :py:mod:`!sphinx.io` module will be removed in Sphinx 10.
+ Patch by Adam Turner.
+* #13631: :func:`!sphinx.environment.adapters.toctree.global_toctree_for_doc`
+ and :meth:`!sphinx.environment.BuildEnvironment.get_and_resolve_doctree`
+ will require a *tags* keyword argument from Sphinx 11.
+ It may optionally be passed from Sphinx 9 onwards.
+ Patch by Adam Turner.
+
+Features added
+--------------
+
+* #13332: Add :confval:`doctest_fail_fast` option to exit after the first failed
+ test.
+ Patch by Till Hoffmann.
+* #13439: linkcheck: Permit warning on every redirect with
+ ``linkcheck_allowed_redirects = {}``.
+ Patch by Adam Turner and James Addison.
+* #13497: Support C domain objects in the table of contents.
+* #13500: LaTeX: add support for ``fontawesome6`` package.
+ Patch by Jean-François B.
+* #13509: autodoc: Detect :py:func:`typing_extensions.overload `
+ and :py:func:`~typing.final` decorators.
+ Patch by Spencer Brown.
+* #13535: html search: Update to the latest version of Snowball (v3.0.1).
+ Patch by Adam Turner.
+* #13647: LaTeX: allow more cases of table nesting.
+ Patch by Jean-François B.
+* #13657: LaTeX: support CSS3 length units.
+ Patch by Jean-François B.
+* #13684: intersphinx: Add a file-based cache for remote inventories.
+ The location of the cache directory must not be relied upon externally,
+ as it may change without notice or warning in future releases.
+ Patch by Adam Turner.
+* #13805: LaTeX: add support for ``fontawesome7`` package.
+ Patch by Jean-François B.
+* #13508: autodoc: Initial support for :pep:`695` type aliases.
+ Patch by Martin Matouš, Jeremy Maitin-Shepard, and Adam Turner.
+* #14023: Add the new :confval:`mathjax_config_path` option
+ to load MathJax configuration from a file.
+ Patch by Randolf Scholz and Adam Turner.
+* #14046: linkcheck: Add the :confval:`linkcheck_case_insensitive_urls` option
+ to allow case-insensitive URL comparison for specific URL patterns.
+ This is useful for links to websites that normalise URL casing (e.g. GitHub)
+ or case-insensitive servers.
+ Patch by Fazeel Usmani and James Addison.
+* #14075: autosummary: Provide more context in import exception stack traces.
+ Patch by Philipp A.
+* #13468: Add config options to :mod:`sphinx.ext.duration`.
+ Patch by Erik Bedard and Adam Turner.
+* #14022: Use MathJax v4 by default in the :mod:`sphinx.ext.mathjax` extension,
+ from v3 previously.
+ To keep using an older version, set the :confval:`mathjax_path` option.
+ Also add the new :confval:`mathjax4_config` option to configure MathJax v4.
+ Note that MathJax v3 is mostly compatible with MathJax v4, so existing
+ :confval:`mathjax3_config` settings should not need to change.
+ Patch by Matthias Geier.
+* #14029: intersphinx: Fix error in format string interpolation.
+ Patch by Matthieu de Cibeins.
+* #13894: Add ``source_code_parser`` type to :confval:`suppress_warnings`
+ for grouping issues related to the C and C++ parsers.
+ Patch by Valentin H.
+
+Bugs fixed
+----------
+
+* #13926: multiple py:type directives for the same canonical type no
+ longer result in spurious duplicate object description warnings.
+ Patch by Jeremy Maitin-Shepard.
+* #1327: LaTeX: tables using longtable raise error if
+ :rst:dir:`tabularcolumns` specifies automatic widths
+ (``L``, ``R``, ``C``, or ``J``).
+ Patch by Jean-François B.
+* #3447: LaTeX: when assigning longtable class to table for PDF, it may render
+ "horizontally" and overflow in right margin.
+ Patch by Jean-François B.
+* #8828: LaTeX: adding a footnote to a longtable cell causes table to occupy
+ full width.
+ Patch by Jean-François B.
+* #11498: LaTeX: Table in cell fails to build if it has many rows.
+ Patch by Jean-François B.
+* #11515: LaTeX: longtable does not allow nested table.
+ Patch by Jean-François B.
+* #11973: LaTeX: links in table captions do not work in PDF.
+ Patch by Jean-François B.
+* #12821: LaTeX: URLs/links in section titles should render in PDF.
+ Patch by Jean-François B.
+* #13369: Correctly parse and cross-reference unpacked type annotations.
+ Patch by Alicia Garcia-Raboso.
+* #13528: Add tilde ``~`` prefix support for :rst:role:`py:deco`.
+ Patch by Shengyu Zhang and Adam Turner.
+* #13597: LaTeX: table nested in a merged cell leads to invalid LaTeX mark-up
+ and PDF cannot be built.
+ Patch by Jean-François B.
+* #13619: LaTeX: possible duplicated footnotes in PDF from object signatures
+ (typically if :confval:`latex_show_urls` ``= 'footnote'``).
+ Patch by Jean-François B.
+* #13635: LaTeX: if a cell contains a table, row coloring is turned off for
+ the next table cells.
+ Patch by Jean-François B.
+* #13685: gettext: Correctly ignore trailing backslashes.
+ Patch by Bénédikt Tran.
+* #13712: intersphinx: Don't add "v" prefix to non-numeric versions.
+ Patch by Szymon Karpinski.
+* #13688: HTML builder: Replace ```` with
+ ```` for attribute type annotations
+ to improve `semantic HTML structure
+ `__.
+ Patch by Mark Ostroth.
+* #13812 (discussion): LaTeX: long :rst:dir:`confval` value does not wrap at
+ spaces in PDF.
+ Patch by Jean-François B.
+* #10785: Autodoc: Allow type aliases defined in the project to be properly
+ cross-referenced when used as type annotations. This makes it possible
+ for objects documented as ``:py:data:`` to be hyperlinked in function signatures.
+* #13858: doctest: doctest blocks are now correctly added to a group defined by the
+ configuration variable ``doctest_test_doctest_blocks``.
+* #13885: Coverage builder: Fix TypeError when warning about missing modules.
+ Patch by Damien Ayers.
+* #13929: Duplicate equation label warnings now have a new warning
+ sub-type, ``ref.equation``.
+ Patch by Jared Dillard.
+* #13935: autoclass: parent class members no longer considered
+ directly defined in certain cases, depending on autodoc processing
+ order.
+ Patch by Jeremy Maitin-Shepard.
+* #13939: LaTeX: page break can separate admonition title from contents.
+ Patch by Jean-François B.
+* #14004: Fix :confval:`autodoc_type_aliases` when they appear in PEP 604
+ union syntax (``Alias | Type``).
+ Patch by Tamika Nomara.
+* #14059: LaTeX: Footnotes cause pdflatex error with French language
+ (since late June 2025 upstream change to LaTeX ``babel-french``).
+ Patch by Jean-François B.
+* #13916: HTML Search: do not clear text fragments from the URL on page load.
+ Patch by Harmen Stoppels.
+* #13944: autodoc: show traceback during import in human readable representation.
+ Patch by Florian Best.
+* #14006: Support images with data URIs that aren't base64-encoded.
+ Patch by Shengyu Zhang and Adam Turner.
+* #12797: Fix ``Some type variables (...) are not listed in Generic[...]``
+ TypeError when inheriting from both Generic and autodoc mocked class.
+ Patch by Ikor Jefocur and Daniel Sperber.
+* #13945: autodoc: Fix handling of undefined names in annotations by using
+ the ``FORWARDREF`` :mod:`annotationlib` format.
+ Patch by Rui Pinheiro and Adam Turner.
+* #14067: EPUB: unify path separators in manifest items to forward slashes;
+ resolve duplicates in the manifest on Windows.
+ Patch by Akihiro Takizawa.
+* #13741: text builder: fix an infinite loop when processing CSV tables.
+ Patch by Bénédikt Tran.
+* #13217: Remove extra parentheses from :rst:dir:`js:function` arguments and errors.
+ Patch by Shengyu Zhang.
diff --git a/doc/changes/index.rst b/doc/changes/index.rst
index a1748f2cdd4..cc79f1a7065 100644
--- a/doc/changes/index.rst
+++ b/doc/changes/index.rst
@@ -24,6 +24,7 @@ Prior releases
.. toctree::
:maxdepth: 2
+ 9.0
8.2
8.1
8.0
diff --git a/doc/conf.py b/doc/conf.py
index 9cf2f9b4856..8e9e5241caf 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -181,11 +181,18 @@
'template template Wrapper::Outer::Inner',
),
('cpp:identifier', 'MyContainer'),
- ('js:func', 'SomeError'),
- ('js:func', 'number'),
- ('js:func', 'string'),
+ ('js:class', 'SomeError'),
+ ('js:class', 'number'),
+ ('js:class', 'string'),
('py:attr', 'srcline'),
+ # sphinx.application.Sphinx.connect
('py:class', '_AutodocProcessDocstringListener'),
+ # sphinx.application.Sphinx.connect
+ ('py:class', '_AutodocBeforeProcessSignatureListener'),
+ # sphinx.application.Sphinx.connect
+ ('py:class', '_AutodocProcessSignatureListener'),
+ ('py:class', '_AutodocProcessBasesListener'), # sphinx.application.Sphinx.connect
+ ('py:class', '_AutodocSkipMemberListener'), # sphinx.application.Sphinx.connect
('py:class', '_ConfigRebuild'), # sphinx.application.Sphinx.add_config_value
# sphinx.application.Sphinx.add_html_math_renderer
('py:class', '_MathsBlockRenderers'),
@@ -231,6 +238,7 @@
('py:class', 'pygments.lexer.Lexer'),
('py:class', 'sphinx.directives.ObjDescT'),
('py:class', 'sphinx.domains.IndexEntry'),
+ # sphinx.application.Sphinx.add_autodocumenter
('py:class', 'sphinx.ext.autodoc.Documenter'),
('py:class', 'sphinx.errors.NoUri'),
('py:class', 'sphinx.roles.XRefRole'),
@@ -297,14 +305,12 @@ def linkify_issues_in_changelog(
) -> None:
"""Linkify issue references like #123 in changelog to GitHub."""
if docname == 'changes':
+ linkified_changelog = re.sub(r'(?:PR)?#([0-9]+)\b', _linkify, source[0])
+ source[0] = linkified_changelog
- def linkify(match: re.Match[str]) -> str:
- url = 'https://github.com/sphinx-doc/sphinx/issues/' + match[1]
- return f'`{match[0]} <{url}>`_'
-
- linkified_changelog = re.sub(r'(?:PR)?#([0-9]+)\b', linkify, source[0])
- source[0] = linkified_changelog
+def _linkify(match: re.Match[str], /) -> str:
+ return f'`{match[0]} `__'
REDIRECT_TEMPLATE = """
diff --git a/doc/development/html_themes/templating.rst b/doc/development/html_themes/templating.rst
index e7c1d11f453..77b43882f86 100644
--- a/doc/development/html_themes/templating.rst
+++ b/doc/development/html_themes/templating.rst
@@ -6,6 +6,32 @@
Templating
==========
+What Is Templating?
+-------------------
+
+Templating is a method of generating HTML pages by combining static templates
+with variable data.
+The template files contain the static parts of the desired HTML output
+and include special syntax describing how variable content will be inserted.
+For example, this can be used to insert the current date in the footer of each page,
+or to surround the main content of the document with a scaffold of HTML for layout
+and formatting purposes.
+Doing so only requires an understanding of HTML and the templating syntax.
+Knowledge of Python can be helpful, but is not required.
+
+Templating uses an inheritance mechanism which allows child templates files
+(e.g. in a theme) to override as much (or as little) of their 'parents' as desired.
+Likewise, content authors can use their own local templates to override as much (or
+as little) of the theme templates as desired.
+
+The result is that the Sphinx core, without needing to be changed, provides basic
+HTML generation, independent of the structure and appearance of the final output,
+while granting a great deal of flexibility to theme and content authors.
+
+
+Sphinx Templating
+-----------------
+
Sphinx uses the `Jinja `_ templating engine
for its HTML templates. Jinja is a text-based engine, inspired by Django
templates, so anyone having used Django will already be familiar with it. It
diff --git a/doc/development/tutorials/examples/autodoc_intenum.py b/doc/development/tutorials/examples/autodoc_intenum.py
index 2dd8d6324e6..ebddcbbd4d9 100644
--- a/doc/development/tutorials/examples/autodoc_intenum.py
+++ b/doc/development/tutorials/examples/autodoc_intenum.py
@@ -3,7 +3,7 @@
from enum import IntEnum
from typing import TYPE_CHECKING
-from sphinx.ext.autodoc import ClassDocumenter, bool_option
+from sphinx.ext.autodoc import ClassDocumenter, Documenter, bool_option
if TYPE_CHECKING:
from typing import Any
@@ -23,7 +23,7 @@ class IntEnumDocumenter(ClassDocumenter):
@classmethod
def can_document_member(
- cls, member: Any, membername: str, isattr: bool, parent: Any
+ cls, member: Any, membername: str, isattr: bool, parent: Documenter
) -> bool:
try:
return issubclass(member, IntEnum)
diff --git a/doc/development/tutorials/examples/recipe.py b/doc/development/tutorials/examples/recipe.py
index 9848629216a..da52fa2df67 100644
--- a/doc/development/tutorials/examples/recipe.py
+++ b/doc/development/tutorials/examples/recipe.py
@@ -165,7 +165,7 @@ def add_recipe(self, signature, ingredients):
name,
signature,
'Recipe',
- self.env.docname,
+ self.env.current_document.docname,
anchor,
0,
))
diff --git a/doc/development/tutorials/examples/todo.py b/doc/development/tutorials/examples/todo.py
index a8aa1ec4a1d..c9993eda198 100644
--- a/doc/development/tutorials/examples/todo.py
+++ b/doc/development/tutorials/examples/todo.py
@@ -44,7 +44,7 @@ def run(self):
self.env.todo_all_todos = []
self.env.todo_all_todos.append({
- 'docname': self.env.docname,
+ 'docname': self.env.current_document.docname,
'lineno': self.lineno,
'todo': todo_node.deepcopy(),
'target': targetnode,
diff --git a/doc/development/tutorials/extending_build.rst b/doc/development/tutorials/extending_build.rst
index 4d3606a0a33..9894d656fed 100644
--- a/doc/development/tutorials/extending_build.rst
+++ b/doc/development/tutorials/extending_build.rst
@@ -143,7 +143,7 @@ Looking first at the ``TodolistDirective`` directive:
.. literalinclude:: examples/todo.py
:language: python
:linenos:
- :lines: 24-27
+ :pyobject: TodolistDirective
It's very simple, creating and returning an instance of our ``todolist`` node
class. The ``TodolistDirective`` directive itself has neither content nor
@@ -153,7 +153,7 @@ directive:
.. literalinclude:: examples/todo.py
:language: python
:linenos:
- :lines: 30-53
+ :pyobject: TodoDirective
Several important things are covered here. First, as you can see, we're now
subclassing the :class:`~sphinx.util.docutils.SphinxDirective` helper class
@@ -168,16 +168,16 @@ new unique integer on each call and therefore leads to unique target names. The
target node is instantiated without any text (the first two arguments).
On creating admonition node, the content body of the directive are parsed using
-``self.state.nested_parse``. The first argument gives the content body, and
-the second one gives content offset. The third argument gives the parent node
-of parsed result, in our case the ``todo`` node. Following this, the ``todo``
-node is added to the environment. This is needed to be able to create a list of
-all todo entries throughout the documentation, in the place where the author
-puts a ``todolist`` directive. For this case, the environment attribute
-``todo_all_todos`` is used (again, the name should be unique, so it is prefixed
-by the extension name). It does not exist when a new environment is created, so
-the directive must check and create it if necessary. Various information about
-the todo entry's location are stored along with a copy of the node.
+``self.parse_content_to_nodes()``.
+Following this, the ``todo`` node is added to the environment.
+This is needed to be able to create a list of all todo entries throughout
+the documentation, in the place where the author puts a ``todolist`` directive.
+For this case, the environment attribute ``todo_all_todos`` is used
+(again, the name should be unique, so it is prefixed by the extension name).
+It does not exist when a new environment is created, so the directive must
+check and create it if necessary.
+Various information about the todo entry's location are stored along with
+a copy of the node.
In the last line, the nodes that should be put into the doctree are returned:
the target node and the admonition node.
@@ -211,7 +211,7 @@ the :event:`env-purge-doc` event:
.. literalinclude:: examples/todo.py
:language: python
:linenos:
- :lines: 56-61
+ :pyobject: purge_todos
Since we store information from source files in the environment, which is
persistent, it may become out of date when the source file changes. Therefore,
@@ -229,7 +229,7 @@ to be merged:
.. literalinclude:: examples/todo.py
:language: python
:linenos:
- :lines: 64-68
+ :pyobject: merge_todos
The other handler belongs to the :event:`doctree-resolved` event:
@@ -237,12 +237,13 @@ The other handler belongs to the :event:`doctree-resolved` event:
.. literalinclude:: examples/todo.py
:language: python
:linenos:
- :lines: 71-113
+ :pyobject: process_todo_nodes
-The :event:`doctree-resolved` event is emitted at the end of :ref:`phase 3
-(resolving) ` and allows custom resolving to be done. The handler
-we have written for this event is a bit more involved. If the
-``todo_include_todos`` config value (which we'll describe shortly) is false,
+The :event:`doctree-resolved` event is emitted for each document that is
+about to be written at the end of :ref:`phase 3 (resolving) `
+and allows custom resolving to be done on that document.
+The handler we have written for this event is a bit more involved.
+If the ``todo_include_todos`` config value (which we'll describe shortly) is false,
all ``todo`` and ``todolist`` nodes are removed from the documents. If not,
``todo`` nodes just stay where and how they are. ``todolist`` nodes are
replaced by a list of todo entries, complete with backlinks to the location
@@ -266,17 +267,17 @@ the other parts of our extension. Let's look at our ``setup`` function:
.. literalinclude:: examples/todo.py
:language: python
:linenos:
- :lines: 116-
+ :pyobject: setup
The calls in this function refer to the classes and functions we added earlier.
What the individual calls do is the following:
* :meth:`~Sphinx.add_config_value` lets Sphinx know that it should recognize the
- new *config value* ``todo_include_todos``, whose default value should be
- ``False`` (this also tells Sphinx that it is a boolean value).
+ new *config value* ``todo_include_todos``, whose default value is ``False``
+ (which also tells Sphinx that it is a boolean value).
- If the third argument was ``'html'``, HTML documents would be full rebuild if the
- config value changed its value. This is needed for config values that
+ If the third argument was ``'html'``, HTML documents would be fully rebuilt
+ if the config value changed its value. This is needed for config values that
influence reading (build :ref:`phase 1 (reading) `).
* :meth:`~Sphinx.add_node` adds a new *node class* to the build system. It also
diff --git a/doc/extdev/appapi.rst b/doc/extdev/appapi.rst
index abf202e19b3..c7b17e796a4 100644
--- a/doc/extdev/appapi.rst
+++ b/doc/extdev/appapi.rst
@@ -106,6 +106,13 @@ package.
Emitting events
---------------
+.. attention::
+
+ Extension developers should prefer using the event manager (``events``)
+ object directly, via :meth:`.EventManager.emit`
+ and :meth:`.EventManager.emit_firstresult`,
+ which have identical behaviour to the methods below.
+
.. class:: Sphinx
:no-index:
diff --git a/doc/extdev/deprecated.rst b/doc/extdev/deprecated.rst
index ad05b054d99..b7583b0e37d 100644
--- a/doc/extdev/deprecated.rst
+++ b/doc/extdev/deprecated.rst
@@ -22,6 +22,36 @@ The following is a list of deprecated interfaces.
- Removed
- Alternatives
+ * - ``sphinx.io`` (entire module)
+ - 9.0
+ - 11.0
+ - ``docutils.io`` or standard Python I/O
+
+ * - ``sphinx.builders.Builder.app``
+ - 9.0
+ - 11.0
+ - N/A
+
+ * - ``sphinx.environment.BuildEnvironment.app``
+ - 9.0
+ - 11.0
+ - N/A
+
+ * - ``sphinx.transforms.Transform.app``
+ - 9.0
+ - 11.0
+ - N/A
+
+ * - ``sphinx.transforms.post_transforms.SphinxPostTransform.app``
+ - 9.0
+ - 11.0
+ - N/A
+
+ * - ``sphinx.events.EventManager.app``
+ - 9.0
+ - 11.0
+ - N/A
+
* - ``sphinx.builders.singlehtml.SingleFileHTMLBuilder.fix_refuris``
- 8.2
- 10.0
diff --git a/doc/extdev/event_callbacks.rst b/doc/extdev/event_callbacks.rst
index 04eae51be1d..7ce7ad4cf22 100644
--- a/doc/extdev/event_callbacks.rst
+++ b/doc/extdev/event_callbacks.rst
@@ -7,7 +7,7 @@ Connecting callback functions to events is a simple way to extend Sphinx,
by hooking into the build process at various points.
Use :meth:`.Sphinx.connect` in an extension's ``setup`` function,
-or a ``setup`` function in your projects :file:`conf.py`,
+or a ``setup`` function in your project's :file:`conf.py`,
to connect functions to the events:
.. code-block:: python
@@ -22,7 +22,7 @@ to connect functions to the events:
Extensions can add their own events by using :meth:`.Sphinx.add_event`,
and calling them them with
- :meth:`.Sphinx.emit` or :meth:`.Sphinx.emit_firstresult`.
+ :meth:`.EventManager.emit` or :meth:`.EventManager.emit_firstresult`.
Core events overview
--------------------
@@ -70,8 +70,8 @@ Below is an overview of the core event that happens during a build.
14. apply post-transforms (by priority): docutils.document -> docutils.document
15. event.doctree-resolved(app, doctree, docname)
- In the event that any reference nodes fail to resolve, the following may emit:
- - event.missing-reference(env, node, contnode)
- - event.warn-missing-reference(domain, node)
+ - event.missing-reference(app, env, node, contnode)
+ - event.warn-missing-reference(app, domain, node)
16. Generate output files
17. event.build-finished(app, exception)
diff --git a/doc/extdev/eventapi.rst b/doc/extdev/eventapi.rst
new file mode 100644
index 00000000000..7db6ac9fa10
--- /dev/null
+++ b/doc/extdev/eventapi.rst
@@ -0,0 +1,9 @@
+.. _event-api:
+
+Event Manager API
+-----------------
+
+.. module:: sphinx.events
+
+.. autoclass:: EventManager
+ :members:
diff --git a/doc/extdev/index.rst b/doc/extdev/index.rst
index 2eff8f0738d..149a85edd67 100644
--- a/doc/extdev/index.rst
+++ b/doc/extdev/index.rst
@@ -49,11 +49,9 @@ extension. These are:
**Application**
The application object (usually called ``app``) is an instance of
- :class:`.Sphinx`. It controls most high-level functionality, such as the
- setup of extensions, event dispatching and producing output (logging).
-
- If you have the environment object, the application is available as
- ``env.app``.
+ :class:`.Sphinx`.
+ It controls most high-level functionality, such as loading config,
+ initialising the environment, and the setup of extensions.
**Environment**
The build environment object (usually called ``env``) is an instance of
@@ -67,6 +65,8 @@ extension. These are:
If you have the application or builder object, the environment is available
as ``app.env`` or ``builder.env``.
+ In :class:`.SphinxDirective`, :class:`.SphinxRole`, or :class:`.SphinxTransform`
+ subclasses, the environment is available as ``self.env``.
**Builder**
The builder object (usually called ``builder``) is an instance of a specific
@@ -82,7 +82,17 @@ extension. These are:
configuration values set in :file:`conf.py` as attributes. It is an instance
of :class:`.Config`.
- The config is available as ``app.config`` or ``env.config``.
+ The config is available as ``env.config``, ``builder.config``, or ``app.config``.
+ In :class:`.SphinxDirective`, :class:`.SphinxRole`, or :class:`.SphinxTransform`
+ subclasses, the environment is available as ``self.config``.
+
+**Events**
+ The event manager object (usually called ``events``) manages and dispatches
+ Sphinx's events system.
+ It is an instance of :class:`.EventManager`.
+
+ The event manager is available as ``env.events``, ``builder.events``,
+ or ``app.events``.
To see an example of use of these objects, refer to
:ref:`the tutorials `.
@@ -232,6 +242,7 @@ disposal when developing Sphinx extensions. Some are core to Sphinx
projectapi
envapi
builderapi
+ eventapi
collectorapi
markupapi
domainapi
diff --git a/doc/extdev/markupapi.rst b/doc/extdev/markupapi.rst
index 7aa632446da..184bd2bd8e4 100644
--- a/doc/extdev/markupapi.rst
+++ b/doc/extdev/markupapi.rst
@@ -173,9 +173,9 @@ The methods are used as follows:
def run(self) -> list[Node]:
container = docutils.nodes.Element()
# either
- nested_parse_with_titles(self.state, self.result, container)
+ nested_parse_with_titles(self.state, self.result, container, self.content_offset)
# or
- self.state.nested_parse(self.result, 0, container)
+ self.state.nested_parse(self.result, self.content_offset, container)
parsed = container.children
return parsed
diff --git a/doc/extdev/utils.rst b/doc/extdev/utils.rst
index 9e10a0ded85..26974b00691 100644
--- a/doc/extdev/utils.rst
+++ b/doc/extdev/utils.rst
@@ -32,13 +32,6 @@ components (e.g. :class:`.Config`, :class:`.BuildEnvironment` and so on) easily.
:members:
-Utility components
-------------------
-
-.. autoclass:: sphinx.events.EventManager
- :members:
-
-
Utility functions
-----------------
diff --git a/doc/internals/contributing.rst b/doc/internals/contributing.rst
index 4b8ca84a945..5a4f10c37bb 100644
--- a/doc/internals/contributing.rst
+++ b/doc/internals/contributing.rst
@@ -93,17 +93,29 @@ These are the basic steps needed to start developing on Sphinx.
git clone https://github.com//sphinx
cd sphinx
-#. Setup a virtual environment.
+#. Install uv and set up your environment.
- This is not necessary for unit testing, thanks to :program:`tox`,
- but it is necessary if you wish to run :program:`sphinx-build` locally
- or run unit tests without the help of :program:`tox`:
+ We recommend using :program:`uv` for dependency management.
+ Install it with:
.. code-block:: shell
- virtualenv ~/.venv
- . ~/.venv/bin/activate
- pip install -e .
+ python -m pip install -U uv
+
+ Then, set up your environment:
+
+ .. code-block:: shell
+
+ uv sync
+
+ **Alternative:** If you prefer not to use :program:`uv`, you can use
+ :program:`pip`:
+
+ .. code-block:: shell
+
+ python -m venv .venv
+ . .venv/bin/activate
+ python -m pip install -e .
#. Create a new working branch. Choose any name you like.
@@ -138,6 +150,10 @@ These are the basic steps needed to start developing on Sphinx.
#. Wait for a core developer or contributor to review your changes.
+ You may be asked to address comments on the review. If so, please avoid
+ force pushing to the branch. Sphinx uses the *squash merge* strategy when
+ merging PRs, so follow-up commits will all be combined.
+
Coding style
~~~~~~~~~~~~
@@ -163,8 +179,9 @@ Style and type checks can be run as follows:
.. code-block:: shell
- ruff check .
- mypy
+ uv run ruff check
+ uv run ruff format
+ uv run mypy
Unit tests
@@ -184,24 +201,31 @@ of targets and allows testing against multiple different Python environments:
tox -av
-* To run unit tests for a specific Python version, such as Python 3.13:
+* To run unit tests for a specific Python version, such as Python 3.14:
.. code-block:: shell
- tox -e py313
+ tox -e py314
* Arguments to :program:`pytest` can be passed via :program:`tox`,
e.g., in order to run a particular test:
.. code-block:: shell
- tox -e py313 tests/test_module.py::test_new_feature
+ tox -e py314 tests/test_module.py::test_new_feature
You can also test by installing dependencies in your local environment:
.. code-block:: shell
- pip install .[test]
+ uv run pytest
+
+Or with :program:`pip`:
+
+ .. code-block:: shell
+
+ python -m pip install . --group test
+ pytest
To run JavaScript tests, use :program:`npm`:
@@ -276,15 +300,34 @@ To do so, use `sphinx-autobuild`_ to run the following command:
.. _sphinx-autobuild: https://github.com/sphinx-doc/sphinx-autobuild
Translations
-~~~~~~~~~~~~
+------------
The parts of messages in Sphinx that go into builds are translated into several
locales. The translations are kept as gettext ``.po`` files translated from the
master template :file:`sphinx/locale/sphinx.pot`.
+These Sphinx core messages are translated using the online `Transifex
+`__ platform.
+
+Translated strings from the platform are pulled into the Sphinx repository
+by a maintainer before a new release.
+
+We do not accept pull requests altering the translation files directly.
+Instead, please contribute translations via the Transifex platform.
+
+Translations notes for maintainers
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+The `transifex CLI `__ (``tx``)
+can be used to pull translations in ``.po`` format from Transifex.
+To do this, go to :file:`sphinx/locale` and then run ``tx pull -f -l LANG``
+where ``LANG`` is an existing language identifier.
+It is good practice to run ``python utils/babel_runner.py update`` afterwards
+to make sure the ``.po`` file has the canonical Babel formatting.
+
Sphinx uses `Babel `_ to extract messages
and maintain the catalog files. The :file:`utils` directory contains a helper
-script, ``babel_runner.py``.
+script, :file:`utils/babel_runner.py`.
* Use ``python babel_runner.py extract`` to update the ``.pot`` template.
* Use ``python babel_runner.py update`` to update all existing language
@@ -297,19 +340,10 @@ When an updated ``.po`` file is submitted, run
``python babel_runner.py compile`` to commit both the source and the compiled
catalogs.
-When a new locale is submitted, add a new directory with the ISO 639-1 language
+When a new locale is added, add a new directory with the ISO 639-1 language
identifier and put ``sphinx.po`` in there. Don't forget to update the possible
values for :confval:`language` in :file:`doc/usage/configuration.rst`.
-The Sphinx core messages can also be translated on `Transifex
-`_. There ``tx`` client tool,
-which is provided by the ``transifex_client`` Python package, can be used to
-pull translations in ``.po`` format from Transifex. To do this, go to
-:file:`sphinx/locale` and then run ``tx pull -f -l LANG`` where ``LANG`` is an
-existing language identifier. It is good practice to run
-``python babel_runner.py update`` afterwards to make sure the ``.po`` file has the
-canonical Babel formatting.
-
Debugging tips
--------------
@@ -337,13 +371,15 @@ Updating generated files
------------------------
* JavaScript stemming algorithms in :file:`sphinx/search/non-minified-js/*.js`
- are generated using `snowball `_
- by cloning the repository, executing ``make dist_libstemmer_js`` and then
- unpacking the tarball which is generated in :file:`dist` directory.
+ and stopword files in :file:`sphinx/search/_stopwords/`
+ are generated from the `Snowball project`_
+ by running :file:`utils/generate_snowball.py`.
Minified files in :file:`sphinx/search/minified-js/*.js` are generated from
- non-minified ones using :program:`uglifyjs` (installed via npm), with ``-m``
- option to enable mangling.
+ non-minified ones using :program:`uglifyjs` (installed via npm).
+ See :file:`sphinx/search/minified-js/README.rst`.
+
+ .. _Snowball project: https://snowballstem.org/
* The :file:`searchindex.js` files found in
the :file:`tests/js/fixtures/*` directories
diff --git a/doc/latex.rst b/doc/latex.rst
index fce61480941..edb2f0c18cb 100644
--- a/doc/latex.rst
+++ b/doc/latex.rst
@@ -500,7 +500,7 @@ Keys that don't need to be overridden unless in special cases are:
.. hint::
If the key value is set to
- :code-tex:`r'\\newcommand\sphinxbackoftitlepage{}\\sphinxmaketitle'`, then ```` will be
typeset on back of title page (``'manual'`` docclass only).
@@ -1006,18 +1006,20 @@ The color used in the above example is available from having passed the
``iconpackage``
- The name of the LaTeX package used for icons in the admonition titles. It
- defaults to ``fontawesome5`` or to fall-back ``fontawesome``. In case
- neither one is available the option value will automatically default to
- ``none``, which means that no attempt at loading a package is done.
- Independently of this setting, arbitrary LaTeX code can be associated to
- each admonition type via ``div._icon-title`` keys which are
- described in the :ref:`additionalcss` section. If these keys are not
- used, Sphinx will either apply its default choices of icons (if
- ``fontawesome{5,}`` is available) or not draw the icon at all. Notice that
- if fall-back ``fontawesome`` is used the common icon for :dudir:`caution`
- and :dudir:`danger` will default to "bolt" not "radiation", which is only
- found in ``fontawesome5``.
+ The name of the LaTeX package used for rendering icons in the admonition
+ titles. Its default is set dynamically to either ``fontawesome7``,
+ ``fontawesome6``,
+ ``fontawesome5``, ``fontawesome``, or ``none``, in decreasing order of
+ priority and depending on whether
+ packages with those names exist in the used LaTeX installation. The LaTeX
+ code for each admonition icon will use ``\faIcon`` command if with
+ ``fontawesome{5,6,7}`` and
+ ``\faicon`` if with ``fontawesome``.
+ If no "Font Awesome" related package is found (or if the option is set
+ forcefully to ``none``) the icons are silently dropped. User can set this
+ option to some specific package and must configure then the
+ ``div.note_title-icon`` and similar keys to use then that LaTeX package
+ interface (see the :ref:`additionalcss` section about this).
.. versionadded:: 7.4.0
@@ -1410,17 +1412,21 @@ The next keys, for admonitions, :dudir:`topic`, contents_, and
(it applies only to the icon, not to the title of the admonition).
- ``div._title-icon``: the LaTeX code responsible for producing the
- icon. For example, the default for :dudir:`note` is
- ``div.note_title-icon=\faIcon{info-circle}``. This uses a command from the
- LaTeX ``fontawesome5`` package, which is loaded automatically if available.
-
- If neither ``fontawesome5`` nor fall-back ``fontawesome`` (for which the
- associated command is :code-tex:`\\faicon`, not :code-tex:`\\faIcon`) are
- found, or if the ``iconpackage`` key of :ref:`'sphinxsetup'
- ` is set to load some other user-chosen package, or no
- package at all, all the ``title-icons`` default to empty LaTeX code. It is
- up to user to employ this interface to inject the icon (or anything else)
- into the PDF output.
+ icon for the given ````.
+ For example the default for :dudir:`note` is
+ ``div.note_title-icon=\faIcon{info-circle}`` with ``fontawesome5``, but
+ ``div.note_title-icon=\faIcon{circle-info}`` with ``fontawesome6``
+ and ``fontawesome7``.
+ If you want to modify the icons used by Sphinx, employ in these keys
+ the ``\faIcon`` LaTeX command if one of ``fontawesome5``, ``6`` or ``7`` is
+ on your LaTeX installation.
+ If your system only provides the
+ ``fontawesome`` package use its command ``\faicon`` (not ``\faIcon``)
+ in order to modify the choice of icons. The ``iconpackage`` key of
+ ``'sphinxsetup'`` can be used to force usage of one among
+ ``fontawesome{,5,6,7}`` or be the name of some other icon-providing package.
+ In that latter case you must configure the ``div._title-icon`` keys
+ to use the LaTeX commands appropriate to that custom icon package.
.. note::
@@ -1694,7 +1700,7 @@ Macros
.. hint::
If adding to preamble the loading of ``tocloft`` package, also add to
- preamble :code-tex:`\\renewcommand\sphinxtableofcontentshook{}` else it
+ preamble :code-tex:`\\renewcommand\\sphinxtableofcontentshook{}` else it
will reset :code-tex:`\\l@section` and :code-tex:`\\l@subsection`
cancelling ``tocloft`` customization.
diff --git a/doc/man/sphinx-build.rst b/doc/man/sphinx-build.rst
index 63af7e49b4c..6815d10a424 100644
--- a/doc/man/sphinx-build.rst
+++ b/doc/man/sphinx-build.rst
@@ -58,6 +58,9 @@ Options
*info*
Build Texinfo files and run them through :program:`makeinfo`.
+ *help*
+ Output a list of valid builder targets, and exit.
+
.. note::
The default output directory locations when using *make-mode*
@@ -272,13 +275,13 @@ Options
From Sphinx 8.1, :option:`!--keep-going` is always enabled.
Previously, it was only applicable whilst using :option:`--fail-on-warning`,
which by default exited :program:`sphinx-build` on the first warning.
- Using :option:`!--keep-going` runs :program:`!sphinx-build` to completion
+ Using :option:`!--keep-going` runs :program:`sphinx-build` to completion
and exits with exit status 1 if errors are encountered.
.. versionadded:: 1.8
.. versionchanged:: 8.1
:program:`sphinx-build` no longer exits on the first warning,
- meaning that in effect :option:`!--fail-on-warning` is always enabled.
+ meaning that in effect :option:`!--keep-going` is always enabled.
The option is retained for compatibility, but may be removed at some
later date.
diff --git a/doc/tutorial/deploying.rst b/doc/tutorial/deploying.rst
index 1873d6783f2..e3dcb0593ab 100644
--- a/doc/tutorial/deploying.rst
+++ b/doc/tutorial/deploying.rst
@@ -175,7 +175,7 @@ After you have published your sources on GitHub, create a file named
contents:
.. code-block:: yaml
- :caption: .github/workflows/
+ :caption: .github/workflows/sphinx.yml
name: "Sphinx: Render docs"
@@ -222,13 +222,14 @@ following contents:
furo==2021.11.16
-And finally, you are ready to `enable GitHub Pages on your repository`_. For
+And finally, you are ready to `publish GitHub Pages from a branch`_. For
that, go to :guilabel:`Settings`, then :guilabel:`Pages` on the left sidebar,
-select the ``gh-pages`` branch in the "Source" dropdown menu, and click
+select the ``Deploy from a branch`` item in the "Source" dropdown menu,
+select the ``gh-page`` branch in the "Branch" dropdown menu, and click
:guilabel:`Save`. After a few minutes, you should be able to see your HTML at
the designated URL.
-.. _enable GitHub Pages on your repository: https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site
+.. _publish GitHub Pages from a branch: https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site#publishing-from-a-branch
GitLab Pages
~~~~~~~~~~~~
@@ -248,7 +249,7 @@ After you have published your sources on GitLab, create a file named
pages:
stage: deploy
- image: python:3.12-slim
+ image: python:3.14-slim
before_script:
- apt-get update && apt-get install make --no-install-recommends -y
- python -m pip install sphinx furo
diff --git a/doc/tutorial/first-steps.rst b/doc/tutorial/first-steps.rst
index fd5c631353e..dccf1838de3 100644
--- a/doc/tutorial/first-steps.rst
+++ b/doc/tutorial/first-steps.rst
@@ -73,6 +73,7 @@ shown right after the corresponding link, in parentheses. You can change that
behavior by adding the following code at the end of your ``conf.py``:
.. code-block:: python
+ :caption: docs/source/conf.py
# EPUB options
epub_show_urls = 'footnote'
diff --git a/doc/usage/advanced/intl.rst b/doc/usage/advanced/intl.rst
index 4d52c34debe..4ae26f943fb 100644
--- a/doc/usage/advanced/intl.rst
+++ b/doc/usage/advanced/intl.rst
@@ -375,10 +375,11 @@ Contributing to Sphinx reference translation
The recommended way for new contributors to translate Sphinx reference is to
join the translation team on Transifex.
-There is a `sphinx translation page`_ for Sphinx (master) documentation.
+There is a `Sphinx translation page`_ for Sphinx (master) documentation.
1. Login to Transifex_ service.
-2. Go to `sphinx translation page`_.
+2. Go to the `"Sphinx's documentation" translation project
+ `__.
3. Click ``Request language`` and fill form.
4. Wait acceptance by Transifex sphinx translation maintainers.
5. (After acceptance) Translate on Transifex.
@@ -414,7 +415,7 @@ percentage of nodes that have been translated on a per-document basis.
.. _`sphinx-intl`: https://pypi.org/project/sphinx-intl/
.. _Transifex: https://app.transifex.com/
.. _Weblate's documentation: https://docs.weblate.org/en/latest/devel/sphinx.html
-.. _`sphinx translation page`: https://app.transifex.com/sphinx-doc/sphinx-doc/
+.. _`Sphinx translation page`: https://explore.transifex.com/sphinx-doc/sphinx-doc/
.. _`Transifex Client documentation`: https://developers.transifex.com/docs/using-the-client
.. _`Transifex API token`: https://app.transifex.com/user/settings/api/
.. _`sphinx-intl update-txconfig-resources documentation`: https://sphinx-intl.readthedocs.io/en/master/refs.html#sphinx-intl-update-txconfig-resources
diff --git a/doc/usage/advanced/websupport/index.rst b/doc/usage/advanced/websupport/index.rst
index 08166405196..7edef89895e 100644
--- a/doc/usage/advanced/websupport/index.rst
+++ b/doc/usage/advanced/websupport/index.rst
@@ -8,6 +8,20 @@ Sphinx Web Support
Sphinx provides a Python API to easily integrate Sphinx documentation into your
web application. To learn more read the :ref:`websupportquickstart`.
+.. _Pocoo: https://www.pocoo.org
+.. _sphinx-websupport-app: https://github.com/shimizukawa/sphinx-websupport-app
+
+.. note::
+
+ **Historical context**: Web Support originated from the `Pocoo`_ community,
+ the original creators of Sphinx, Jinja, Flask, Pygments, and more. Web
+ Support was part of a plan to create a forum application that tied together
+ Jinja, Flask, Sphinx, etc. The core goal behind Web Support was to enable a
+ user editing and suggestion layer on top of documentation. While the concept
+ has merit, the feature has seen limited adoption and development over the
+ years. As of 2025, there are few real-world examples of its use. See
+ `sphinx-websupport-app`_ for one such example.
+
.. toctree::
quickstart
diff --git a/doc/usage/configuration.rst b/doc/usage/configuration.rst
index 75e08d7654b..70de2ca3c14 100644
--- a/doc/usage/configuration.rst
+++ b/doc/usage/configuration.rst
@@ -1157,6 +1157,9 @@ Options for source files
The recommended encoding is ``'utf-8-sig'``.
.. versionadded:: 0.5
+ .. deprecated:: 9.0
+ Support for source encodings other than UTF-8 is deprecated.
+ Sphinx 11 will only support UTF-8 files.
.. confval:: source_suffix
:type: :code-py:`dict[str, str] | Sequence[str] | str`
@@ -1391,6 +1394,7 @@ Options for warning control
* ``ref.any``
* ``ref.citation``
* ``ref.doc``
+ * ``ref.equation``
* ``ref.footnote``
* ``ref.keyword``
* ``ref.numref``
@@ -1398,6 +1402,8 @@ Options for warning control
* ``ref.python``
* ``ref.ref``
* ``ref.term``
+ * ``source_code_parser.c``
+ * ``source_code_parser.cpp``
* ``toc.circular``
* ``toc.duplicate_entry``
* ``toc.empty_glob``
@@ -1416,6 +1422,7 @@ Options for warning control
* ``autosectionlabel.``
* ``autosummary``
* ``autosummary.import_cycle``
+ * ``duration``
* ``intersphinx.external``
You can choose from these types. You can also give only the first
@@ -1481,6 +1488,9 @@ Options for warning control
``ref.any``,
``toc.duplicate_entry``, ``toc.empty_glob``, and ``toc.not_included``.
+ .. versionadded:: 9.0
+ ``duration``.
+
Builder options
===============
@@ -3083,7 +3093,7 @@ These options influence LaTeX output.
the :code-tex:`\\rowcolors` LaTeX command becomes a no-op
(this command has limitations and has never correctly
supported all types of tables Sphinx produces in LaTeX).
- Please update your project to use the
+ Please use the
:ref:`latex table color configuration ` keys instead.
To customise the styles for a table,
@@ -3096,7 +3106,7 @@ These options influence LaTeX output.
The latter two can be combined with any of the first three.
The ``standard`` class produces tables with
both horizontal and vertical lines
- (as has been the default so far with Sphinx).
+ (as had been the default prior to Sphinx 6.0.0).
A single-row multi-column merged cell will obey the row colour,
if it is set.
@@ -3642,7 +3652,6 @@ and which failures and redirects it ignores.
.. confval:: linkcheck_allowed_redirects
:type: :code-py:`dict[str, str]`
- :default: :code-py:`{}`
A dictionary that maps a pattern of the source URI
to a pattern of the canonical URI.
@@ -3668,6 +3677,11 @@ and which failures and redirects it ignores.
.. versionadded:: 4.1
+ .. versionchanged:: 9.0
+ Setting :confval:`!linkcheck_allowed_redirects` to an empty dictionary
+ may now be used to warn on all redirects encountered
+ by the *linkcheck* builder.
+
.. confval:: linkcheck_anchors
:type: :code-py:`bool`
:default: :code-py:`True`
@@ -3805,6 +3819,42 @@ and the number of workers to use.
.. versionadded:: 7.3
+.. confval:: linkcheck_case_insensitive_urls
+ :type: :code-py:`Set[str] | Sequence[str]`
+ :default: :code-py:`()`
+
+ A collection of regular expressions that match URLs for which the *linkcheck*
+ builder should perform case-insensitive comparisons. This is useful for
+ links to websites that are case-insensitive or normalise URL casing.
+
+ By default, *linkcheck* requires the destination URL to match the
+ documented URL case-sensitively.
+ For example, a link to ``http://example.org/PATH`` that redirects to
+ ``http://example.org/path`` will be reported as ``redirected``.
+
+ If the URL matches a pattern contained in
+ :confval:`!linkcheck_case_insensitive_urls`,
+ it would instead be reported as ``working``.
+
+ For example, to treat all GitHub URLs as case-insensitive:
+
+ .. code-block:: python
+
+ linkcheck_case_insensitive_urls = [
+ r'https://github\.com/.*',
+ ]
+
+ Or, to treat all URLs as case-insensitive:
+
+ .. code-block:: python
+
+ linkcheck_case_insensitive_urls = ['.*']
+
+ .. note:: URI fragments (HTML anchors) are not affected by this option.
+ They are always checked with case-sensitive comparisons.
+
+ .. versionadded:: 9.0
+
.. confval:: linkcheck_rate_limit_timeout
:type: :code-py:`int`
:default: :code-py:`300`
diff --git a/doc/usage/domains/index.rst b/doc/usage/domains/index.rst
index cc3f272646c..acb0f2ee97b 100644
--- a/doc/usage/domains/index.rst
+++ b/doc/usage/domains/index.rst
@@ -35,6 +35,71 @@ easier to write.
This section describes what the domains that are included with Sphinx provide.
The domain API is documented as well, in the section :ref:`domain-api`.
+Built-in domains
+----------------
+
+The following domains are included within Sphinx:
+
+.. toctree::
+ :maxdepth: 1
+
+ standard
+ c
+ cpp
+ javascript
+ mathematics
+ python
+ restructuredtext
+
+
+Third-party domains
+-------------------
+
+Several third-party domains are available as extensions, including:
+
+* `Ada `__
+* `Antlr4 `__
+* `Bazel `__
+* `BibTex `__
+* `Bison/YACC `__
+* `Chapel `__
+* `CMake `__
+* `Common Lisp `__
+* `Erlang `__
+* `Fortran `__
+* `GraphQL `__
+* `Go `__
+* `HTTP `__
+* `Hy `__
+* `Lua `__
+* `MATLAB `__
+* `PHP `__
+* `Ruby `__
+* `Rust `__
+* `Verilog `__
+* `VHDL `__
+* `Visual Basic `__
+
+Other domains may be found on the Python Package Index
+(via the `Framework :: Sphinx :: Domain`__ classifier),
+`GitHub `__, or
+`GitLab `__.
+
+__ https://pypi.org/search/?c=Framework+%3A%3A+Sphinx+%3A%3A+Domain
+
+.. NOTE: The following all seem unmaintained, last released 2018 or earlier.
+ The links are preserved in this comment for reference.
+
+ * `CoffeeScript `__
+ * `DotNET `__
+ * `dqn `__
+ * `Jinja `__
+ * `JSON `__
+ * `Lasso `__
+ * `Operation `__
+ * `Scala `__
+ * `Lua `__
+
.. _basic-domain-markup:
@@ -174,40 +239,3 @@ In short:
component of the target.
For example, ``:py:meth:`~queue.Queue.get``` will
refer to ``queue.Queue.get`` but only display ``get`` as the link text.
-
-Built-in domains
-----------------
-
-The following domains are included within Sphinx:
-
-.. toctree::
- :maxdepth: 1
-
- standard
- c
- cpp
- javascript
- mathematics
- python
- restructuredtext
-
-More domains
-------------
-
-There are several third-party domains available as extensions, including:
-
-* `Ada `__
-* `Chapel `__
-* `CoffeeScript `__
-* `Common Lisp `__
-* `dqn `__
-* `Erlang `__
-* `Go `__
-* `HTTP `__
-* `Jinja `__
-* `Lasso `__
-* `MATLAB `__
-* `Operation `__
-* `PHP `__
-* `Ruby `__
-* `Scala `__
diff --git a/doc/usage/extensions/autodoc.rst b/doc/usage/extensions/autodoc.rst
index 1b873f0d819..17445b19635 100644
--- a/doc/usage/extensions/autodoc.rst
+++ b/doc/usage/extensions/autodoc.rst
@@ -966,11 +966,63 @@ Automatically document attributes or data
``:no-value:`` has no effect.
+Automatically document type aliases
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+.. rst:directive:: autotype
+
+ .. versionadded:: 9.0
+
+ Document a :pep:`695` type alias (the :keyword:`type` statement).
+ By default, the directive only inserts the docstring of the alias itself:
+
+ The directive can also contain content of its own,
+ which will be inserted into the resulting non-auto directive source
+ after the docstring (but before any automatic member documentation).
+
+ Therefore, you can also mix automatic and non-automatic member documentation.
+
+ .. rubric:: Options
+
+ .. rst:directive:option:: no-index
+ :type:
+
+ Do not generate an index entry for the documented class
+ or any auto-documented members.
+
+ .. rst:directive:option:: no-index-entry
+ :type:
+
+ Do not generate an index entry for the documented class
+ or any auto-documented members.
+ Unlike ``:no-index:``, cross-references are still created.
+
+
Configuration
-------------
There are also config values that you can set:
+.. confval:: autodoc_use_legacy_class_based
+ :type: :code-py:`bool`
+ :default: :code-py:`False`
+
+ If true, autodoc will use the legacy class-based implementation.
+ This is the behaviour prior to Sphinx 9.0.
+ It is based on the ``Documenter`` class hierarchy.
+
+ This setting is provided for backwards compatibility if your documentation
+ or an extension you use uses or monkeypatches the legacy class-based API
+ in Python code.
+ If this is the case, set ``autodoc_use_legacy_class_based = True``
+ in your :file:`conf.py`.
+ Please also add a comment to `the tracking issue on GitHub
+ `__ so that the maintainers
+ are aware of your use case, for possible future improvements.
+
+ .. note:: The legacy class-based implementation does not support
+ PEP 695 type aliases.
+
.. confval:: autoclass_content
:type: :code-py:`str`
:default: :code-py:`'class'`
@@ -1326,7 +1378,7 @@ Docstring preprocessing
autodoc provides the following additional events:
-.. event:: autodoc-process-docstring (app, what, name, obj, options, lines)
+.. event:: autodoc-process-docstring (app, obj_type, name, obj, options, lines)
.. versionadded:: 0.4
@@ -1335,15 +1387,14 @@ autodoc provides the following additional events:
can modify **in place** to change what Sphinx puts into the output.
:param app: the Sphinx application object
- :param what: the type of the object which the docstring belongs to (one of
- ``'module'``, ``'class'``, ``'exception'``, ``'function'``, ``'method'``,
- ``'attribute'``)
+ :param obj_type: the type of the object which the docstring belongs to (one of
+ ``'module'``, ``'class'``, ``'exception'``, ``'function'``, ``'decorator'``,
+ ``'method'``, ``'property'``, ``'attribute'``, ``'data'``, or ``'type'``)
:param name: the fully qualified name of the object
:param obj: the object itself
:param options: the options given to the directive: an object with attributes
- ``inherited_members``, ``undoc_members``, ``show_inheritance`` and
- ``no-index`` that are true if the flag option of same name was given to the
- auto directive
+ corresponding to the options used in the auto directive, e.g.
+ ``inherited_members``, ``undoc_members``, or ``show_inheritance``.
:param lines: the lines of the docstring, see above
.. event:: autodoc-before-process-signature (app, obj, bound_method)
@@ -1357,7 +1408,7 @@ autodoc provides the following additional events:
:param obj: the object itself
:param bound_method: a boolean indicates an object is bound method or not
-.. event:: autodoc-process-signature (app, what, name, obj, options, signature, return_annotation)
+.. event:: autodoc-process-signature (app, obj_type, name, obj, options, signature, return_annotation)
.. versionadded:: 0.5
@@ -1366,20 +1417,19 @@ autodoc provides the following additional events:
what Sphinx puts into the output.
:param app: the Sphinx application object
- :param what: the type of the object which the docstring belongs to (one of
- ``'module'``, ``'class'``, ``'exception'``, ``'function'``, ``'method'``,
- ``'attribute'``)
+ :param obj_type: the type of the object which the docstring belongs to (one of
+ ``'module'``, ``'class'``, ``'exception'``, ``'function'``, ``'decorator'``,
+ ``'method'``, ``'property'``, ``'attribute'``, ``'data'``, or ``'type'``)
:param name: the fully qualified name of the object
:param obj: the object itself
:param options: the options given to the directive: an object with attributes
- ``inherited_members``, ``undoc_members``, ``show_inheritance`` and
- ``no-index`` that are true if the flag option of same name was given to the
- auto directive
+ corresponding to the options used in the auto directive, e.g.
+ ``inherited_members``, ``undoc_members``, or ``show_inheritance``.
:param signature: function signature, as a string of the form
``'(parameter_1, parameter_2)'``, or ``None`` if introspection didn't
succeed and signature wasn't specified in the directive.
:param return_annotation: function return annotation as a string of the form
- ``' -> annotation'``, or ``None`` if there is no return annotation
+ ``'annotation'``, or ``''`` if there is no return annotation.
The :mod:`sphinx.ext.autodoc` module provides factory functions for commonly
needed docstring processing in event :event:`autodoc-process-docstring`:
@@ -1387,17 +1437,17 @@ needed docstring processing in event :event:`autodoc-process-docstring`:
.. autofunction:: cut_lines
.. autofunction:: between
-.. event:: autodoc-process-bases (app, name, obj, options, bases)
+.. event:: autodoc-process-bases (app, name, obj, _unused, bases)
Emitted when autodoc has read and processed a class to determine the
base-classes. *bases* is a list of classes that the event handler can
modify **in place** to change what Sphinx puts into the output. It's
- emitted only if ``show-inheritance`` option given.
+ emitted only if the ``show-inheritance`` option is given.
:param app: the Sphinx application object
:param name: the fully qualified name of the object
:param obj: the object itself
- :param options: the options given to the class directive
+ :param _unused: unused placeholder
:param bases: the list of base classes signature. see above.
.. versionadded:: 4.1
@@ -1413,7 +1463,7 @@ Skipping members
autodoc allows the user to define a custom method for determining whether a
member should be included in the documentation by using the following event:
-.. event:: autodoc-skip-member (app, what, name, obj, skip, options)
+.. event:: autodoc-skip-member (app, obj_type, name, obj, skip, options)
.. versionadded:: 0.5
@@ -1427,14 +1477,13 @@ member should be included in the documentation by using the following event:
autodoc and other enabled extensions.
:param app: the Sphinx application object
- :param what: the type of the object which the docstring belongs to (one of
- ``'module'``, ``'class'``, ``'exception'``, ``'function'``, ``'method'``,
- ``'attribute'``)
+ :param obj_type: the type of the object which the docstring belongs to (one of
+ ``'module'``, ``'class'``, ``'exception'``, ``'function'``, ``'decorator'``,
+ ``'method'``, ``'property'``, ``'attribute'``, ``'data'``, or ``'type'``)
:param name: the fully qualified name of the object
:param obj: the object itself
:param skip: a boolean indicating if autodoc will skip this member if the
user handler does not override the decision
:param options: the options given to the directive: an object with attributes
- ``inherited_members``, ``undoc_members``, ``show_inheritance`` and
- ``no-index`` that are true if the flag option of same name was given to the
- auto directive
+ corresponding to the options used in the auto directive, e.g.
+ ``inherited_members``, ``undoc_members``, or ``show_inheritance``.
diff --git a/doc/usage/extensions/autosectionlabel.rst b/doc/usage/extensions/autosectionlabel.rst
index 1e9e1dba722..161b285a290 100644
--- a/doc/usage/extensions/autosectionlabel.rst
+++ b/doc/usage/extensions/autosectionlabel.rst
@@ -8,6 +8,9 @@
.. versionadded:: 1.4
+.. role:: code-py(code)
+ :language: Python
+
By default, cross-references to sections use labels (see :rst:role:`ref`).
This extension allows you to instead refer to sections by their title.
diff --git a/doc/usage/extensions/autosummary.rst b/doc/usage/extensions/autosummary.rst
index 456faee1830..3b993348a78 100644
--- a/doc/usage/extensions/autosummary.rst
+++ b/doc/usage/extensions/autosummary.rst
@@ -107,7 +107,7 @@ The :mod:`sphinx.ext.autosummary` extension does this in two parts:
How to display signatures. Valid values are
- ``long`` (*default*): use a long signature. This is still cut off so that name
- plus signature do not exceeed a certain length.
+ plus signature do not exceed a certain length.
- ``short``: Function and class signatures are displayed as ``(…)`` if they have
arguments and as ``()`` if they don't have arguments.
- ``none``: do not show signatures.
@@ -412,3 +412,27 @@ the title of a page.
Stub pages are generated also based on these directives.
.. _`escape filter`: https://jinja.palletsprojects.com/en/3.0.x/templates/#jinja-filters.escape
+
+Autolink role
+-------------
+
+.. rst:role:: autolink
+
+ The ``:autolink:`` role functions as ``:py:obj:`` when the referenced *name*
+ can be resolved to a Python object, and otherwise it becomes simple emphasis.
+
+ There are some known design flaws.
+ For example, in the case of multiple objects having the same name,
+ :rst:role:`!autolink` could resolve to the wrong object.
+ It will fail silently if the referenced object is not found,
+ for example due to a spelling mistake or renaming.
+ This is sometimes unwanted behaviour.
+
+ Some users choose to configure their :confval:`default_role` to ``autolink``
+ for 'smart' referencing using the default interpreted text role (```content```).
+
+ .. seealso::
+
+ :rst:role:`any`
+
+ :rst:role:`py:obj`
diff --git a/doc/usage/extensions/doctest.rst b/doc/usage/extensions/doctest.rst
index 60c67827967..a418f1bf744 100644
--- a/doc/usage/extensions/doctest.rst
+++ b/doc/usage/extensions/doctest.rst
@@ -116,10 +116,10 @@ a comma-separated list of group names.
Specify the required Python version for the example to be tested. For instance,
in the following case the example will be tested only for Python versions greater
- than 3.12::
+ than 3.14::
.. doctest::
- :pyversion: > 3.12
+ :pyversion: > 3.14
The following operands are supported:
@@ -452,3 +452,11 @@ The doctest extension uses the following configuration values:
Also, removal of ```` and ``# doctest:`` options only works in
:rst:dir:`doctest` blocks, though you may set :confval:`trim_doctest_flags`
to achieve that in all code blocks with Python console content.
+
+.. confval:: doctest_fail_fast
+ :type: :code-py:`bool`
+ :default: :code-py:`False`
+
+ Exit when the first failure is encountered.
+
+ .. versionadded:: 9.0
diff --git a/doc/usage/extensions/duration.rst b/doc/usage/extensions/duration.rst
index 1213811daf0..eb7d66ccaaa 100644
--- a/doc/usage/extensions/duration.rst
+++ b/doc/usage/extensions/duration.rst
@@ -6,6 +6,87 @@
.. versionadded:: 2.4
-This extension measures durations of Sphinx processing and show its
-result at end of the build. It is useful for inspecting what document
-is slowly built.
+This extension measures durations of Sphinx processing when reading
+documents and is useful for inspecting what document is slowly built.
+Durations are printed to console at the end of the build and saved
+to a JSON file in the output directory by default.
+
+Enable this extension by adding ``'sphinx.ext.duration'`` to
+the :confval:`extensions` list in your :file:`conf.py`:
+
+.. code-block:: python
+
+ extensions = [
+ ...
+ 'sphinx.ext.duration',
+ ]
+
+
+Configuration
+-------------
+
+.. confval:: duration_print_total
+ :type: :code-py:`bool`
+ :default: :code-py:`True`
+
+ Show the total reading duration in the build summary, e.g.:
+
+ .. code-block:: text
+
+ ====================== total reading duration ==========================
+ Total time reading 31 files: 0m 3.142s
+
+ .. versionadded:: 9.0
+
+.. confval:: duration_print_slowest
+ :type: :code-py:`bool`
+ :default: :code-py:`True`
+
+ Show the slowest durations in the build summary.
+ The durations are sorted in order from slowest to fastest.
+ This prints up to :confval:`duration_n_slowest` durations, e.g.:
+
+ .. code-block:: text
+
+ ====================== slowest 5 reading durations =======================
+ 0.012s spam
+ 0.011s ham
+ 0.011s eggs
+ 0.006s lobster
+ 0.005s beans
+
+ .. versionadded:: 9.0
+
+.. confval:: duration_n_slowest
+ :type: :code-py:`int`
+ :default: :code-py:`5`
+
+ Maximum number of slowest durations to show in the build summary
+ when :confval:`duration_print_slowest` is enabled.
+ By default, only the ``5`` slowest durations are shown.
+ Set this to ``0`` to show all durations.
+
+ .. versionadded:: 9.0
+
+.. confval:: duration_write_json
+ :type: :code-py:`str | None`
+ :default: :code-py:`'sphinx-reading-durations.json'`
+
+ Write all reading durations to a JSON file in the output directory
+ The file contents are a map of the document names to reading durations,
+ where document names are strings and durations are floats in seconds.
+ Set this value to an empty string or ``None`` to disable writing the file,
+ or set it to a relative path to customize it.
+
+ This may be useful for testing and setting a limit on reading times.
+
+ .. versionadded:: 9.0
+
+.. confval:: duration_limit
+ :type: :code-py:`float | int | None`
+ :default: :code-py:`None`
+
+ Set a duration limit (in seconds) for reading a document.
+ If any duration exceeds this value, a warning is emitted.
+
+ .. versionadded:: 9.0
diff --git a/doc/usage/extensions/math.rst b/doc/usage/extensions/math.rst
index 6fa8ab851f8..f79ce23a5bf 100644
--- a/doc/usage/extensions/math.rst
+++ b/doc/usage/extensions/math.rst
@@ -196,12 +196,15 @@ are built:
.. module:: sphinx.ext.mathjax
:synopsis: Render math using JavaScript via MathJax.
-.. warning::
- Version 4.0 changes the version of MathJax used to version 3. You may need to
- override ``mathjax_path`` to
- ``https://cdn.jsdelivr.net/npm/mathjax@2/MathJax.js?config=TeX-AMS-MML_HTMLorMML``
- or update your configuration options for version 3
- (see :confval:`mathjax3_config`).
+.. attention::
+
+ The default version of MathJax changed
+ from version 2 to version 3 in Sphinx 4.0, and
+ from version 3 to version 4 in Sphinx 9.0.
+
+ You may need to override :confval:`mathjax_path` to load an older version,
+ or update your :confval:`configuration options `.
+ In general, MathJax v3 and v4 options are compatible.
.. versionadded:: 1.1
@@ -217,10 +220,17 @@ Sphinx but is set to automatically include it from a third-party site.
You should use the math :rst:dir:`directive
\n'
)
else:
- if self.builder.config.imgmath_embed:
- image_format = self.builder.config.imgmath_image_format.lower()
+ if config.imgmath_embed:
+ image_format = config.imgmath_image_format.lower()
img_src = render_maths_to_base64(image_format, rendered_path)
else:
bname = os.path.basename(rendered_path)
relative_path = Path(self.builder.imgpath, 'math', bname)
img_src = relative_path.as_posix()
- self.body.append(f'
\n')
+ tooltip = get_tooltip(self, node, config=config)
+ self.body.append(f'
\n')
raise nodes.SkipNode
diff --git a/sphinx/ext/inheritance_diagram.py b/sphinx/ext/inheritance_diagram.py
index ce05626abe5..f44bbb860ab 100644
--- a/sphinx/ext/inheritance_diagram.py
+++ b/sphinx/ext/inheritance_diagram.py
@@ -429,6 +429,7 @@ def run(self) -> list[Node]:
include_subclasses='include-subclasses' in self.options,
)
except InheritanceException as err:
+ assert node.document is not None
return [node.document.reporter.warning(err, line=self.lineno)]
# Create xref nodes for each target of the graph's image map and
@@ -436,7 +437,7 @@ def run(self) -> list[Node]:
# references to real URLs later. These nodes will eventually be
# removed from the doctree after we're done with them.
for name in graph.get_all_class_names():
- refnodes, x = class_role( # type: ignore[misc]
+ refnodes, _x = class_role( # type: ignore[misc]
'class', f':class:`{name}`', name, 0, self.state.inliner
)
node.extend(refnodes)
diff --git a/sphinx/ext/intersphinx/_cli.py b/sphinx/ext/intersphinx/_cli.py
index 720f080ebde..bf3a333eb95 100644
--- a/sphinx/ext/intersphinx/_cli.py
+++ b/sphinx/ext/intersphinx/_cli.py
@@ -5,7 +5,11 @@
import sys
from pathlib import Path
-from sphinx.ext.intersphinx._load import _fetch_inventory, _InvConfig
+from sphinx.ext.intersphinx._load import (
+ _fetch_inventory_data,
+ _InvConfig,
+ _load_inventory,
+)
def inspect_main(argv: list[str], /) -> int:
@@ -28,12 +32,14 @@ def inspect_main(argv: list[str], /) -> int:
)
try:
- inv = _fetch_inventory(
+ raw_data, _ = _fetch_inventory_data(
target_uri='',
inv_location=filename,
config=config,
srcdir=Path(),
+ cache_path=None,
)
+ inv = _load_inventory(raw_data, target_uri='')
for key in sorted(inv.data):
print(key)
inv_entries = sorted(inv.data[key].items())
diff --git a/sphinx/ext/intersphinx/_load.py b/sphinx/ext/intersphinx/_load.py
index 6a07dbbc3f0..ab6a373fea0 100644
--- a/sphinx/ext/intersphinx/_load.py
+++ b/sphinx/ext/intersphinx/_load.py
@@ -19,6 +19,7 @@
from sphinx.util.inventory import InventoryFile
if TYPE_CHECKING:
+ from collections.abc import Sequence
from pathlib import Path
from sphinx.application import Sphinx
@@ -65,7 +66,7 @@ def validate_intersphinx_mapping(app: Sphinx, config: Config) -> None:
continue
# ensure values are properly formatted
- if not isinstance(value, (tuple | list)):
+ if not isinstance(value, (tuple, list)):
errors += 1
msg = __(
'Invalid value `%r` in intersphinx_mapping[%r]. '
@@ -107,7 +108,7 @@ def validate_intersphinx_mapping(app: Sphinx, config: Config) -> None:
continue
seen[uri] = name
- if not isinstance(inv, tuple | list):
+ if not isinstance(inv, (tuple, list)):
inv = (inv,)
# ensure inventory locations are None or non-empty
@@ -181,6 +182,9 @@ def load_mappings(app: Sphinx) -> None:
now=now,
config=inv_config,
srcdir=app.srcdir,
+ # the location of this cache directory must not be relied upon
+ # externally, it may change without notice or warning.
+ cache_dir=app.doctreedir / '__intersphinx_cache__',
)
for project in projects
]
@@ -223,6 +227,17 @@ def from_config(cls, config: Config) -> _InvConfig:
)
+def _display_failures(failures: Sequence[tuple[str, ...]]) -> str:
+ """Format a list of failure tuples into a readable multi-line string."""
+ formatted = []
+ for failure_args in failures:
+ try:
+ formatted.append(failure_args[0] % failure_args[1:])
+ except TypeError:
+ formatted.append(' - '.join(failure_args))
+ return '\n'.join(formatted)
+
+
def _fetch_inventory_group(
*,
project: _IntersphinxProject,
@@ -230,6 +245,7 @@ def _fetch_inventory_group(
now: int,
config: _InvConfig,
srcdir: Path,
+ cache_dir: Path | None,
) -> bool:
if config.intersphinx_cache_limit >= 0:
# Positive value: cache is expired if its timestamp is below
@@ -250,6 +266,26 @@ def _fetch_inventory_group(
else:
inv_location = location
+ if cache_dir is not None:
+ cache_path = cache_dir / f'{project.name}_{INVENTORY_FILENAME}'
+ else:
+ cache_path = None
+
+ if (
+ cache_path is not None
+ and '://' in inv_location
+ and project.target_uri not in cache
+ and cache_path.is_file()
+ # the saved 'objects.inv' is not older than the cache expiry time
+ and cache_path.stat().st_mtime >= cache_time
+ ):
+ raw_data = cache_path.read_bytes()
+ inv = _load_inventory(raw_data, target_uri=project.target_uri)
+ cache_path_mtime = int(cache_path.stat().st_mtime)
+ cache[project.target_uri] = project.name, cache_path_mtime, inv.data
+ updated = True
+ break
+
# decide whether the inventory must be read: always read local
# files; remote ones only if the cache time is expired
if (
@@ -264,17 +300,18 @@ def _fetch_inventory_group(
)
try:
- inv = _fetch_inventory(
+ raw_data, target_uri = _fetch_inventory_data(
target_uri=project.target_uri,
inv_location=inv_location,
config=config,
srcdir=srcdir,
+ cache_path=cache_path,
)
+ inv = _load_inventory(raw_data, target_uri=target_uri)
except Exception as err:
failures.append(err.args)
continue
-
- if inv:
+ else:
cache[project.target_uri] = project.name, now, inv.data
updated = True
break
@@ -291,29 +328,34 @@ def _fetch_inventory_group(
for fail in failures:
LOGGER.info(*fail)
else:
- issues = '\n'.join(f[0] % f[1:] for f in failures)
LOGGER.warning(
- '%s\n%s',
- __('failed to reach any of the inventories with the following issues:'),
- issues,
+ __('failed to reach any of the inventories with the following issues:\n%s'),
+ _display_failures(failures),
)
return updated
def fetch_inventory(app: Sphinx, uri: InventoryURI, inv: str) -> Inventory:
"""Fetch, parse and return an intersphinx inventory file."""
- return _fetch_inventory(
+ raw_data, uri = _fetch_inventory_data(
target_uri=uri,
inv_location=inv,
config=_InvConfig.from_config(app.config),
srcdir=app.srcdir,
- ).data
+ cache_path=None,
+ )
+ return _load_inventory(raw_data, target_uri=uri).data
-def _fetch_inventory(
- *, target_uri: InventoryURI, inv_location: str, config: _InvConfig, srcdir: Path
-) -> _Inventory:
- """Fetch, parse and return an intersphinx inventory file."""
+def _fetch_inventory_data(
+ *,
+ target_uri: InventoryURI,
+ inv_location: str,
+ config: _InvConfig,
+ srcdir: Path,
+ cache_path: Path | None,
+) -> tuple[bytes, str]:
+ """Fetch inventory data from a local or remote source."""
# both *target_uri* (base URI of the links to generate)
# and *inv_location* (actual location of the inventory file)
# can be local or remote URIs
@@ -324,9 +366,17 @@ def _fetch_inventory(
raw_data, target_uri = _fetch_inventory_url(
target_uri=target_uri, inv_location=inv_location, config=config
)
+ if cache_path is not None:
+ cache_path.parent.mkdir(parents=True, exist_ok=True)
+ cache_path.write_bytes(raw_data)
else:
raw_data = _fetch_inventory_file(inv_location=inv_location, srcdir=srcdir)
+ return raw_data, target_uri
+
+def _load_inventory(raw_data: bytes, /, *, target_uri: InventoryURI) -> _Inventory:
+ """Parse and return an intersphinx inventory file."""
+ # *target_uri* (base URI of the links to generate) can be a local or remote URI
try:
inv = InventoryFile.loads(raw_data, uri=target_uri)
except ValueError as exc:
diff --git a/sphinx/ext/intersphinx/_resolve.py b/sphinx/ext/intersphinx/_resolve.py
index 102c5d3ab07..aa7a365df78 100644
--- a/sphinx/ext/intersphinx/_resolve.py
+++ b/sphinx/ext/intersphinx/_resolve.py
@@ -9,7 +9,6 @@
from docutils import nodes
from sphinx.addnodes import pending_xref
-from sphinx.deprecation import _deprecation_warning
from sphinx.errors import ExtensionError
from sphinx.ext.intersphinx._shared import LOGGER, InventoryAdapter
from sphinx.locale import _, __
@@ -46,7 +45,12 @@ def _create_element_from_result(
# get correct path in case of subdirectories
uri = (_relative_path(Path(), Path(node['refdoc']).parent) / uri).as_posix()
if inv_item.project_version:
- reftitle = _('(in %s v%s)') % (inv_item.project_name, inv_item.project_version)
+ if not inv_item.project_version[0].isdigit():
+ # Do not append 'v' to non-numeric version
+ version = inv_item.project_version
+ else:
+ version = f'v{inv_item.project_version}'
+ reftitle = _('(in %s %s)') % (inv_item.project_name, version)
else:
reftitle = _('(in %s)') % (inv_item.project_name,)
@@ -493,7 +497,7 @@ def get_inventory_and_name_suffix(self, name: str) -> tuple[str | None, str]:
assert name.startswith('external'), name
suffix = name[9:]
if name[8] == '+':
- inv_name, suffix = suffix.split(':', 1)
+ inv_name, _, suffix = suffix.partition(':')
return inv_name, suffix
elif name[8] == ':':
return None, suffix
@@ -522,74 +526,12 @@ def _emit_warning(self, msg: str, /, *args: Any) -> None:
*args,
type='intersphinx',
subtype='external',
- location=(self.env.docname, self.lineno),
+ location=(self.env.current_document.docname, self.lineno),
)
def _concat_strings(self, strings: Iterable[str]) -> str:
return ', '.join(f'{s!r}' for s in sorted(strings))
- # deprecated methods
-
- def get_role_name(self, name: str) -> tuple[str, str] | None:
- _deprecation_warning(
- __name__, f'{self.__class__.__name__}.get_role_name', '', remove=(9, 0)
- )
- names = name.split(':')
- if len(names) == 1:
- # role
- if (domain := self.env.current_document.default_domain) is not None:
- domain_name = domain.name
- else:
- domain_name = None
- role = names[0]
- elif len(names) == 2:
- # domain:role:
- domain_name, role = names
- else:
- return None
-
- if domain_name and self.is_existent_role(domain_name, role):
- return domain_name, role
- elif self.is_existent_role('std', role):
- return 'std', role
- else:
- return None
-
- def is_existent_role(self, domain_name: str, role_name: str) -> bool:
- _deprecation_warning(
- __name__, f'{self.__class__.__name__}.is_existent_role', '', remove=(9, 0)
- )
- try:
- domain = self.env.domains[domain_name]
- except KeyError:
- return False
- else:
- return role_name in domain.roles
-
- def invoke_role(
- self, role: tuple[str, str]
- ) -> tuple[list[Node], list[system_message]]:
- """Invoke the role described by a ``(domain, role name)`` pair."""
- _deprecation_warning(
- __name__, f'{self.__class__.__name__}.invoke_role', '', remove=(9, 0)
- )
- domain = self.env.get_domain(role[0])
- if domain:
- role_func = domain.role(role[1])
- assert role_func is not None
-
- return role_func(
- ':'.join(role),
- self.rawtext,
- self.text,
- self.lineno,
- self.inliner,
- self.options,
- self.content,
- )
- else:
- return [], []
-
class IntersphinxRoleResolver(ReferencesResolver):
"""pending_xref node resolver for intersphinx role.
diff --git a/sphinx/ext/intersphinx/_shared.py b/sphinx/ext/intersphinx/_shared.py
index 87612b50151..cbedbf1b380 100644
--- a/sphinx/ext/intersphinx/_shared.py
+++ b/sphinx/ext/intersphinx/_shared.py
@@ -8,7 +8,7 @@
if TYPE_CHECKING:
from collections.abc import Sequence
- from typing import Any, Final, NoReturn, TypeAlias
+ from typing import Any, Final, NoReturn
from sphinx.environment import BuildEnvironment
from sphinx.util.typing import Inventory
@@ -30,7 +30,7 @@
InventoryLocation = str | None
#: Inventory cache entry. The integer field is the cache expiration time.
- InventoryCacheEntry: TypeAlias = tuple[InventoryName, int, Inventory]
+ type InventoryCacheEntry = tuple[InventoryName, int, Inventory]
#: The type of :confval:`intersphinx_mapping` *after* normalisation.
IntersphinxMapping = dict[
diff --git a/sphinx/ext/mathjax.py b/sphinx/ext/mathjax.py
index 62220cc697f..35766ddcac3 100644
--- a/sphinx/ext/mathjax.py
+++ b/sphinx/ext/mathjax.py
@@ -28,7 +28,7 @@
# more information for mathjax secure url is here:
# https://docs.mathjax.org/en/latest/web/start.html#using-mathjax-from-a-content-delivery-network-cdn
-MATHJAX_URL = 'https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js'
+MATHJAX_URL = 'https://cdn.jsdelivr.net/npm/mathjax@4/tex-mml-chtml.js'
logger = sphinx.util.logging.getLogger(__name__)
@@ -95,30 +95,47 @@ def install_mathjax(
builder = cast('StandaloneHTMLBuilder', app.builder)
page_has_equations = context.get('has_maths_elements', False)
+
+ # Enable mathjax only if equations exists
if app.registry.html_assets_policy == 'always' or page_has_equations:
- # Enable mathjax only if equations exists
if app.config.mathjax2_config:
if app.config.mathjax_path == MATHJAX_URL:
logger.warning(
'mathjax_config/mathjax2_config does not work '
- 'for the current MathJax version, use mathjax3_config instead'
+ 'for the current MathJax version, use mathjax4_config instead'
)
- body = 'MathJax.Hub.Config(%s)' % json.dumps(app.config.mathjax2_config)
+ body = f'MathJax.Hub.Config({json.dumps(app.config.mathjax2_config)})'
builder.add_js_file('', type='text/x-mathjax-config', body=body)
+
if app.config.mathjax3_config:
- body = 'window.MathJax = %s' % json.dumps(app.config.mathjax3_config)
+ body = f'window.MathJax = {json.dumps(app.config.mathjax3_config)}'
+ builder.add_js_file('', body=body)
+
+ if app.config.mathjax4_config:
+ body = f'window.MathJax = {json.dumps(app.config.mathjax4_config)}'
+ builder.add_js_file('', body=body)
+
+ if app.config.mathjax_config_path:
+ config_path = app.confdir / app.config.mathjax_config_path
+ if not config_path.exists():
+ msg = f'mathjax_config_path file not found: {config_path}'
+ raise ExtensionError(msg)
+ if not config_path.is_file() or config_path.suffix != '.js':
+ msg = f'mathjax_config_path: expected a .js file, but got {config_path}'
+ raise ExtensionError(msg)
+ body = config_path.read_text(encoding='utf-8')
builder.add_js_file('', body=body)
options = {}
if app.config.mathjax_options:
options.update(app.config.mathjax_options)
if 'async' not in options and 'defer' not in options:
- if app.config.mathjax3_config:
- # Load MathJax v3 via "defer" method
- options['defer'] = 'defer'
- else:
- # Load other MathJax via "async" method
+ if app.config.mathjax2_config or app.config.mathjax_config:
+ # Load old MathJax versions via the 'async' method
options['async'] = 'async'
+ else:
+ # Load MathJax v3+ via the 'defer' method
+ options['defer'] = 'defer'
builder.add_js_file(app.config.mathjax_path, **options)
@@ -149,6 +166,10 @@ def setup(app: Sphinx) -> ExtensionMetadata:
app.add_config_value(
'mathjax3_config', None, 'html', types=frozenset({dict, NoneType})
)
+ app.add_config_value(
+ 'mathjax4_config', None, 'html', types=frozenset({dict, NoneType})
+ )
+ app.add_config_value('mathjax_config_path', '', 'html', types=frozenset({str}))
app.connect('html-page-context', install_mathjax)
return {
diff --git a/sphinx/ext/napoleon/__init__.py b/sphinx/ext/napoleon/__init__.py
index 6d8f1b22e2d..9509a4f7d5d 100644
--- a/sphinx/ext/napoleon/__init__.py
+++ b/sphinx/ext/napoleon/__init__.py
@@ -15,6 +15,7 @@
from typing import Any
from sphinx.config import _ConfigRebuild
+ from sphinx.ext.autodoc._property_types import _AutodocObjType
from sphinx.util.typing import ExtensionMetadata
@@ -362,7 +363,12 @@ def _patch_python_domain() -> None:
def _process_docstring(
- app: Sphinx, what: str, name: str, obj: Any, options: Any, lines: list[str]
+ app: Sphinx,
+ what: _AutodocObjType,
+ name: str,
+ obj: Any,
+ options: Any,
+ lines: list[str],
) -> None:
"""Process the docstring for a given python object.
@@ -415,7 +421,7 @@ def _process_docstring(
def _skip_member(
- app: Sphinx, what: str, name: str, obj: Any, skip: bool, options: Any
+ app: Sphinx, what: _AutodocObjType, name: str, obj: Any, skip: bool, options: Any
) -> bool | None:
"""Determine if private and special class members are included in docs.
diff --git a/sphinx/ext/napoleon/docstring.py b/sphinx/ext/napoleon/docstring.py
index d1317e9d841..6c866f3db42 100644
--- a/sphinx/ext/napoleon/docstring.py
+++ b/sphinx/ext/napoleon/docstring.py
@@ -16,9 +16,11 @@
if TYPE_CHECKING:
from collections.abc import Callable, Iterator
+ from typing import Literal
from sphinx.application import Sphinx
from sphinx.config import Config as SphinxConfig
+ from sphinx.ext.autodoc._property_types import _AutodocObjType
logger = logging.getLogger(__name__)
@@ -328,10 +330,10 @@ def __init__(
docstring: str | list[str],
config: SphinxConfig | None = None,
app: Sphinx | None = None,
- what: str = '',
+ what: _AutodocObjType | Literal['object'] = 'object',
name: str = '',
- obj: Any = None,
- options: Any = None,
+ obj: Any | None = None,
+ options: Any | None = None,
) -> None:
self._app = app
if config:
@@ -343,7 +345,7 @@ def __init__(
self._config = Config() # type: ignore[assignment]
- if not what:
+ if what == 'object':
if inspect.isclass(obj):
what = 'class'
elif inspect.ismodule(obj):
@@ -353,10 +355,16 @@ def __init__(
else:
what = 'object'
- self._what = what
+ self._what: _AutodocObjType | Literal['object'] = what
self._name = name
self._obj = obj
- self._opt = options
+ if options:
+ try:
+ self._no_index = options.no_index or options.noindex
+ except (AttributeError, TypeError):
+ self._no_index = False
+ else:
+ self._no_index = False
if isinstance(docstring, str):
lines = docstring.splitlines()
else:
@@ -476,7 +484,7 @@ def _consume_field(
) -> tuple[str, str, list[str]]:
line = self._lines.next()
- before, colon, after = self._partition_field_on_colon(line)
+ before, _colon, after = self._partition_field_on_colon(line)
_name, _type, _desc = before, '', after
if parse_type:
@@ -535,7 +543,7 @@ def _consume_returns_section(
if colon:
if after:
- _desc = [after] + lines[1:]
+ _desc = [after, *lines[1:]]
else:
_desc = lines[1:]
@@ -684,7 +692,7 @@ def _format_field(self, _name: str, _type: str, _desc: list[str]) -> list[str]:
if has_desc:
_desc = self._fix_field_desc(_desc)
if _desc[0]:
- return [field + _desc[0]] + _desc[1:]
+ return [field + _desc[0], *_desc[1:]]
else:
return [field, *_desc]
else:
@@ -875,9 +883,8 @@ def _parse_attributes_section(self, section: str) -> list[str]:
lines.append(f':vartype {_name}: {_type}')
else:
lines.append('.. attribute:: ' + _name)
- if self._opt:
- if 'no-index' in self._opt or 'noindex' in self._opt:
- lines.append(' :no-index:')
+ if self._no_index:
+ lines.append(' :no-index:')
lines.append('')
fields = self._format_field('', '', _desc)
@@ -943,9 +950,8 @@ def _parse_methods_section(self, section: str) -> list[str]:
lines: list[str] = []
for _name, _type, _desc in self._consume_fields(parse_type=False):
lines.append(f'.. method:: {_name}')
- if self._opt:
- if 'no-index' in self._opt or 'noindex' in self._opt:
- lines.append(' :no-index:')
+ if self._no_index:
+ lines.append(' :no-index:')
if _desc:
lines.extend(['', *self._indent(_desc, 3)])
lines.append('')
@@ -1206,10 +1212,10 @@ def __init__(
docstring: str | list[str],
config: SphinxConfig | None = None,
app: Sphinx | None = None,
- what: str = '',
+ what: _AutodocObjType | Literal['object'] = 'object',
name: str = '',
- obj: Any = None,
- options: Any = None,
+ obj: Any | None = None,
+ options: Any | None = None,
) -> None:
self._directive_sections = ['.. index::']
super().__init__(docstring, config, app, what, name, obj, options)
@@ -1387,7 +1393,7 @@ def translate(
if m and line[m.end() :].strip().startswith(':'):
push_item(current_func, rest)
current_func, line = line[: m.end()], line[m.end() :]
- rest = [line.split(':', 1)[1].strip()]
+ rest = [line.partition(':')[-1].strip()]
if not rest[0]:
rest = []
elif not line.startswith(' '):
diff --git a/sphinx/ext/todo.py b/sphinx/ext/todo.py
index 53c4d57b4f1..4b2e32bc9c4 100644
--- a/sphinx/ext/todo.py
+++ b/sphinx/ext/todo.py
@@ -59,7 +59,7 @@ def run(self) -> list[Node]:
return [todo]
todo.insert(0, nodes.title(text=_('Todo')))
- todo['docname'] = self.env.docname
+ todo['docname'] = self.env.current_document.docname
self.add_name(todo)
self.set_source_info(todo)
self.state.document.note_explicit_target(todo)
diff --git a/sphinx/ext/viewcode.py b/sphinx/ext/viewcode.py
index 4b1c62ad0d1..e3e302563c9 100644
--- a/sphinx/ext/viewcode.py
+++ b/sphinx/ext/viewcode.py
@@ -103,11 +103,11 @@ def _get_full_modname(modname: str, attribute: str) -> str | None:
return None
-def is_supported_builder(builder: Builder) -> bool:
+def is_supported_builder(builder: type[Builder], viewcode_enable_epub: bool) -> bool:
return (
builder.format == 'html'
and builder.name != 'singlehtml'
- and (not builder.name.startswith('epub') or builder.config.viewcode_enable_epub)
+ and (not builder.name.startswith('epub') or viewcode_enable_epub)
)
@@ -166,7 +166,7 @@ def has_tag(modname: str, fullname: str, docname: str, refname: str) -> bool:
if not modname:
continue
fullname = signode.get('fullname')
- if not has_tag(modname, fullname, env.docname, refname):
+ if not has_tag(modname, fullname, env.current_document.docname, refname):
continue
if fullname in names:
# only one link per name, please
@@ -174,7 +174,7 @@ def has_tag(modname: str, fullname: str, docname: str, refname: str) -> bool:
names.add(fullname)
pagename = posixpath.join(OUTPUT_DIRNAME, modname.replace('.', '/'))
signode += viewcode_anchor(
- reftarget=pagename, refid=fullname, refdoc=env.docname
+ reftarget=pagename, refid=fullname, refdoc=env.current_document.docname
)
@@ -187,7 +187,7 @@ def env_merge_info(
if not hasattr(env, '_viewcode_modules'):
env._viewcode_modules = {} # type: ignore[attr-defined]
# now merge in the information from the subprocess
- for modname, entry in other._viewcode_modules.items():
+ for modname, entry in other._viewcode_modules.items(): # ty: ignore[unresolved-attribute]
if modname not in env._viewcode_modules: # type: ignore[attr-defined]
env._viewcode_modules[modname] = entry # type: ignore[attr-defined]
else:
@@ -205,7 +205,7 @@ def env_purge_doc(app: Sphinx, env: BuildEnvironment, docname: str) -> None:
if entry is False:
continue
- code, tags, used, refname = entry
+ _code, _tags, used, _refname = entry
for fullname in list(used):
if used[fullname] == docname:
used.pop(fullname)
@@ -220,7 +220,9 @@ class ViewcodeAnchorTransform(SphinxPostTransform):
default_priority = 100
def run(self, **kwargs: Any) -> None:
- if is_supported_builder(self.app.builder):
+ if is_supported_builder(
+ self.env._builder_cls, self.config.viewcode_enable_epub
+ ):
self.convert_viewcode_anchors()
else:
self.remove_viewcode_anchors()
@@ -229,7 +231,7 @@ def convert_viewcode_anchors(self) -> None:
for node in self.document.findall(viewcode_anchor):
anchor = nodes.inline('', _('[source]'), classes=['viewcode-link'])
refnode = make_refnode(
- self.app.builder,
+ self.env._app.builder,
node['refdoc'],
node['reftarget'],
node['refid'],
@@ -250,7 +252,7 @@ def get_module_filename(app: Sphinx, modname: str) -> _StrPath | None:
return None
else:
try:
- filename, source = ModuleAnalyzer.get_module_source(modname)
+ filename, _source = ModuleAnalyzer.get_module_source(modname)
return filename
except Exception:
return None
@@ -281,7 +283,7 @@ def collect_pages(app: Sphinx) -> Iterator[tuple[str, dict[str, Any], str]]:
env = app.env
if not hasattr(env, '_viewcode_modules'):
return
- if not is_supported_builder(app.builder):
+ if not is_supported_builder(env._builder_cls, env.config.viewcode_enable_epub):
return
highlighter = app.builder.highlighter # type: ignore[attr-defined]
urito = app.builder.get_relative_uri
@@ -289,11 +291,11 @@ def collect_pages(app: Sphinx) -> Iterator[tuple[str, dict[str, Any], str]]:
modnames = set(env._viewcode_modules)
for modname, entry in status_iterator(
- sorted(env._viewcode_modules.items()),
+ sorted(env._viewcode_modules.items()), # ty: ignore[unresolved-attribute]
__('highlighting module code... '),
'blue',
len(env._viewcode_modules),
- app.verbosity,
+ app.config.verbosity,
operator.itemgetter(0),
):
if not entry:
@@ -323,7 +325,7 @@ def collect_pages(app: Sphinx) -> Iterator[tuple[str, dict[str, Any], str]]:
max_index = len(lines) - 1
link_text = _('[docs]')
for name, docname in used.items():
- type, start, end = tags[name]
+ _type, start, end = tags[name]
backlink = urito(pagename, docname) + '#' + refname + '.' + name
lines[start] = (
f'\n'
diff --git a/sphinx/io.py b/sphinx/io.py
index 009cd38bf68..446ec81b8ee 100644
--- a/sphinx/io.py
+++ b/sphinx/io.py
@@ -2,62 +2,51 @@
from __future__ import annotations
+import warnings
from typing import TYPE_CHECKING
-from docutils.core import Publisher
-from docutils.io import FileInput, NullOutput
+from docutils.io import FileInput
from docutils.readers import standalone
from docutils.transforms.references import DanglingReferences
from docutils.writers import UnfilteredWriter
-from sphinx.transforms import AutoIndexUpgrader, DoctreeReadEvent, SphinxTransformer
-from sphinx.transforms.i18n import (
- Locale,
- PreserveTranslatableMessages,
- RemoveTranslatableInline,
-)
-from sphinx.transforms.references import SphinxDomains
+from sphinx.deprecation import RemovedInSphinx10Warning
+from sphinx.transforms import SphinxTransformer
from sphinx.util import logging
from sphinx.util.docutils import LoggingReporter
-from sphinx.versioning import UIDTransform
if TYPE_CHECKING:
from typing import Any
from docutils import nodes
- from docutils.frontend import Values
from docutils.io import Input
from docutils.parsers import Parser
from docutils.transforms import Transform
- from sphinx.application import Sphinx
from sphinx.environment import BuildEnvironment
+ from sphinx.util.docutils import _DocutilsSettings
logger = logging.getLogger(__name__)
+warnings.warn('sphinx.io is deprecated', RemovedInSphinx10Warning, stacklevel=2)
-class SphinxBaseReader(standalone.Reader): # type: ignore[misc]
+
+class SphinxBaseReader(standalone.Reader['Any']):
"""A base class of readers for Sphinx.
This replaces reporter by Sphinx's on generating document.
"""
- transforms: list[type[Transform]] = []
-
def __init__(self, *args: Any, **kwargs: Any) -> None:
- from sphinx.application import Sphinx
-
- if len(args) > 0 and isinstance(args[0], Sphinx):
- self._app = args[0]
- self._env = self._app.env
- args = args[1:]
-
super().__init__(*args, **kwargs)
+ warnings.warn(
+ 'sphinx.io.SphinxBaseReader is deprecated',
+ RemovedInSphinx10Warning,
+ stacklevel=2,
+ )
- def setup(self, app: Sphinx) -> None:
- self._app = app # hold application object only for compatibility
- self._env = app.env
+ transforms: list[type[Transform]] = []
def get_transforms(self) -> list[type[Transform]]:
transforms = super().get_transforms() + self.transforms
@@ -90,58 +79,54 @@ def new_document(self) -> nodes.document:
class SphinxStandaloneReader(SphinxBaseReader):
"""A basic document reader for Sphinx."""
- def setup(self, app: Sphinx) -> None:
- self.transforms = self.transforms + app.registry.get_transforms()
- super().setup(app)
-
- def read(self, source: Input, parser: Parser, settings: Values) -> nodes.document: # type: ignore[type-arg]
+ def __init__(self, *args: Any, **kwargs: Any) -> None:
+ super().__init__(*args, **kwargs)
+ warnings.warn(
+ 'sphinx.io.SphinxStandaloneReader is deprecated',
+ RemovedInSphinx10Warning,
+ stacklevel=2,
+ )
+
+ def _setup_transforms(self, transforms: list[type[Transform]], /) -> None:
+ self.transforms = self.transforms + transforms
+
+ def read(
+ self,
+ source: Input, # type: ignore[type-arg]
+ parser: Parser,
+ settings: _DocutilsSettings,
+ ) -> nodes.document:
self.source = source
- if not self.parser: # type: ignore[has-type]
+ if not self.parser:
self.parser = parser
self.settings = settings
self.input = self.read_source(settings.env)
self.parse()
+ assert self.document is not None
return self.document
def read_source(self, env: BuildEnvironment) -> str:
"""Read content from source and do post-process."""
+ assert self.source is not None
content = self.source.read()
# emit "source-read" event
arg = [content]
- env.events.emit('source-read', env.docname, arg)
+ env.events.emit('source-read', env.current_document.docname, arg)
return arg[0]
-class SphinxI18nReader(SphinxBaseReader):
- """A document reader for i18n.
-
- This returns the source line number of original text as current source line number
- to let users know where the error happened.
- Because the translated texts are partial and they don't have correct line numbers.
- """
-
- def setup(self, app: Sphinx) -> None:
- super().setup(app)
-
- self.transforms = self.transforms + app.registry.get_transforms()
- unused = [
- PreserveTranslatableMessages,
- Locale,
- RemoveTranslatableInline,
- AutoIndexUpgrader,
- SphinxDomains,
- DoctreeReadEvent,
- UIDTransform,
- ]
- for transform in unused:
- if transform in self.transforms:
- self.transforms.remove(transform)
-
-
class SphinxDummyWriter(UnfilteredWriter): # type: ignore[type-arg]
"""Dummy writer module used for generating doctree."""
+ def __init__(self) -> None:
+ super().__init__()
+ warnings.warn(
+ 'sphinx.io.SphinxDummyWriter is deprecated',
+ RemovedInSphinx10Warning,
+ stacklevel=2,
+ )
+
supported = ('html',) # needed to keep "meta" nodes
def translate(self) -> None:
@@ -150,6 +135,11 @@ def translate(self) -> None:
def SphinxDummySourceClass(source: Any, *args: Any, **kwargs: Any) -> Any:
"""Bypass source object as is to cheat Publisher."""
+ warnings.warn(
+ 'sphinx.io.SphinxDummySourceClass is deprecated',
+ RemovedInSphinx10Warning,
+ stacklevel=2,
+ )
return source
@@ -159,32 +149,8 @@ class SphinxFileInput(FileInput):
def __init__(self, *args: Any, **kwargs: Any) -> None:
kwargs['error_handler'] = 'sphinx'
super().__init__(*args, **kwargs)
-
-
-def create_publisher(app: Sphinx, filetype: str) -> Publisher:
- reader = SphinxStandaloneReader()
- reader.setup(app)
-
- parser = app.registry.create_source_parser(app, filetype)
- if parser.__class__.__name__ == 'CommonMarkParser' and parser.settings_spec == ():
- # a workaround for recommonmark
- # If recommonmark.AutoStrictify is enabled, the parser invokes reST parser
- # internally. But recommonmark-0.4.0 does not provide settings_spec for reST
- # parser. As a workaround, this copies settings_spec for RSTParser to the
- # CommonMarkParser.
- from docutils.parsers.rst import Parser as RSTParser
-
- parser.settings_spec = RSTParser.settings_spec # type: ignore[misc]
-
- pub = Publisher(
- reader=reader,
- parser=parser,
- writer=SphinxDummyWriter(),
- source_class=SphinxFileInput,
- destination=NullOutput(),
- )
- # Propagate exceptions by default when used programmatically:
- defaults = {'traceback': True, **app.env.settings}
- # Set default settings
- pub.get_settings(**defaults)
- return pub
+ warnings.warn(
+ 'sphinx.io.SphinxFileInput is deprecated',
+ RemovedInSphinx10Warning,
+ stacklevel=2,
+ )
diff --git a/sphinx/jinja2glue.py b/sphinx/jinja2glue.py
index 2f33070fa50..fd44a84bcbb 100644
--- a/sphinx/jinja2glue.py
+++ b/sphinx/jinja2glue.py
@@ -3,7 +3,6 @@
from __future__ import annotations
import os
-import os.path
from pathlib import Path
from pprint import pformat
from typing import TYPE_CHECKING
diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo
index 2e7b5677b1a..db06bc3f2c7 100644
Binary files a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo differ
diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po
index 656ca9fa623..caf8bcf0ecd 100644
--- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po
+++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2025-02-18 00:33+0000\n"
+"POT-Creation-Date: 2025-12-01 16:14+0000\n"
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
"Last-Translator: Abdullah ahmed
, 2020\n"
"Language-Team: Arabic (http://app.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n"
@@ -20,6 +20,127 @@ msgstr ""
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+#: roles.py:205
+#, python-format
+msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgstr ""
+
+#: roles.py:228
+#, python-format
+msgid "invalid CVE number %s"
+msgstr ""
+
+#: roles.py:250
+#, python-format
+msgid "Common Weakness Enumeration; CWE %s"
+msgstr ""
+
+#: roles.py:273
+#, python-format
+msgid "invalid CWE number %s"
+msgstr ""
+
+#: roles.py:293
+#, python-format
+msgid "Python Enhancement Proposals; PEP %s"
+msgstr ""
+
+#: roles.py:316
+#, python-format
+msgid "invalid PEP number %s"
+msgstr ""
+
+#: roles.py:354
+#, python-format
+msgid "invalid RFC number %s"
+msgstr ""
+
+#: theming.py:117
+#, python-format
+msgid ""
+"Theme configuration sections other than [theme] and [options] are not "
+"supported (tried to get a value from %r)."
+msgstr ""
+
+#: theming.py:122
+#, python-format
+msgid "setting %s.%s occurs in none of the searched theme configs"
+msgstr ""
+
+#: theming.py:137
+#, python-format
+msgid "unsupported theme option %r given"
+msgstr ""
+
+#: theming.py:218
+#, python-format
+msgid "file %r on theme path is not a valid zipfile or contains no theme"
+msgstr ""
+
+#: theming.py:238
+#, python-format
+msgid "no theme named %r found (missing theme.toml?)"
+msgstr ""
+
+#: theming.py:278
+#, python-format
+msgid "The %r theme has circular inheritance"
+msgstr ""
+
+#: theming.py:286
+#, python-format
+msgid ""
+"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
+"are: %s"
+msgstr ""
+
+#: theming.py:292
+#, python-format
+msgid "The %r theme has too many ancestors"
+msgstr ""
+
+#: theming.py:320
+#, python-format
+msgid "no theme configuration file found in %r"
+msgstr ""
+
+#: theming.py:345 theming.py:398
+#, python-format
+msgid "theme %r doesn't have the \"theme\" table"
+msgstr ""
+
+#: theming.py:349
+#, python-format
+msgid "The %r theme \"[theme]\" table is not a table"
+msgstr ""
+
+#: theming.py:353 theming.py:401
+#, python-format
+msgid "The %r theme must define the \"theme.inherit\" setting"
+msgstr ""
+
+#: theming.py:357
+#, python-format
+msgid "The %r theme \"[options]\" table is not a table"
+msgstr ""
+
+#: theming.py:376
+#, python-format
+msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+msgstr ""
+
+#: project.py:72
+#, python-format
+msgid ""
+"multiple files found for the document \"%s\": %s\n"
+"Use %r for the build."
+msgstr ""
+
+#: project.py:87
+#, python-format
+msgid "Ignored unreadable document %r."
+msgstr ""
+
#: extension.py:58
#, python-format
msgid ""
@@ -34,127 +155,154 @@ msgid ""
"cannot be built with the loaded version (%s)."
msgstr ""
-#: application.py:212
+#: highlighting.py:170
+#, python-format
+msgid "Pygments lexer name %r is not known"
+msgstr ""
+
+#: highlighting.py:209
+#, python-format
+msgid ""
+"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
+"Retrying in relaxed mode."
+msgstr ""
+
+#: events.py:92
+#, python-format
+msgid "Event %r already present"
+msgstr ""
+
+#: events.py:386
+#, python-format
+msgid "Unknown event name: %s"
+msgstr "حدث غير معروف: %s"
+
+#: events.py:451
+#, python-format
+msgid "Handler %r for event %r threw an exception"
+msgstr ""
+
+#: application.py:218
#, python-format
msgid "Cannot find source directory (%s)"
msgstr "لا يمكن العثور على المجلد المصدر (%s)"
-#: application.py:217
+#: application.py:223
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
-#: application.py:222
+#: application.py:228
msgid "Source directory and destination directory cannot be identical"
msgstr "لا يمكن ان يكون المجلد المصدر والمجلد الهدف متطابقين"
-#: application.py:252
+#: application.py:258
#, python-format
msgid "Running Sphinx v%s"
msgstr "تشغيل Sphinx v%s"
-#: application.py:278
+#: application.py:286
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr "يحتاج هذا المشروع على الاقل الى الاصدار %s من Sphinx وبالتالي لا يمكن بناءه باستخدام الاصدار الحالي"
-#: application.py:297
+#: application.py:305
msgid "making output directory"
msgstr ""
-#: application.py:302 registry.py:538
+#: application.py:310 registry.py:540
#, python-format
msgid "while setting up extension %s:"
msgstr ""
-#: application.py:309
+#: application.py:317
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
-#: application.py:346
+#: application.py:360
#, python-format
msgid "loading translations [%s]... "
msgstr "تحميل الترجمات [ %s ]"
-#: application.py:370 util/display.py:89
+#: application.py:384 util/display.py:89
msgid "done"
msgstr "تم"
-#: application.py:372
+#: application.py:386
msgid "not available for built-in messages"
msgstr "غير متوفرة للرسائل الافتراضية المدمجة"
-#: application.py:386
+#: application.py:400
msgid "loading pickled environment"
msgstr ""
-#: application.py:394
+#: application.py:408
#, python-format
msgid "failed: %s"
msgstr "فشل: %s"
-#: application.py:407
+#: application.py:423
msgid "No builder selected, using default: html"
msgstr "لم يتم اختيار نوع البناء، تم استخدام نوع البناء الافتراضي: html"
-#: application.py:439
+#: application.py:455
msgid "build finished with problems."
msgstr ""
-#: application.py:441
+#: application.py:457
msgid "build succeeded."
msgstr ""
-#: application.py:446
+#: application.py:462
msgid ""
"build finished with problems, 1 warning (with warnings treated as errors)."
msgstr ""
-#: application.py:450
+#: application.py:466
msgid "build finished with problems, 1 warning."
msgstr ""
-#: application.py:452
+#: application.py:468
msgid "build succeeded, 1 warning."
msgstr ""
-#: application.py:458
+#: application.py:474
#, python-format
msgid ""
"build finished with problems, %s warnings (with warnings treated as errors)."
msgstr ""
-#: application.py:462
+#: application.py:478
#, python-format
msgid "build finished with problems, %s warnings."
msgstr ""
-#: application.py:464
+#: application.py:480
#, python-format
msgid "build succeeded, %s warnings."
msgstr ""
-#: application.py:1026
+#: application.py:1020
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
-#: application.py:1119
+#: application.py:1113
#, python-format
msgid "directive %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1145 application.py:1173
+#: application.py:1139 application.py:1167
#, python-format
msgid "role %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1770
+#: application.py:1766
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@@ -162,12 +310,12 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1775
+#: application.py:1771
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
-#: application.py:1779
+#: application.py:1775
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@@ -175,82 +323,214 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1784
+#: application.py:1780
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
-#: application.py:1792 application.py:1796
+#: application.py:1788 application.py:1792
#, python-format
msgid "doing serial %s"
msgstr ""
-#: config.py:355
+#: registry.py:162
#, python-format
-msgid "config directory doesn't contain a conf.py file (%s)"
-msgstr "مجلد الاعدادات لا يحتوي على ملف conf.py (%s)"
+msgid "Builder class %s has no \"name\" attribute"
+msgstr ""
+
+#: registry.py:166
+#, python-format
+msgid "Builder %r already exists (in module %s)"
+msgstr ""
+
+#: registry.py:182
+#, python-format
+msgid "Builder name %s not registered or available through entry point"
+msgstr ""
+
+#: registry.py:192
+#, python-format
+msgid "Builder name %s not registered"
+msgstr ""
+
+#: registry.py:199
+#, python-format
+msgid "domain %s already registered"
+msgstr ""
+
+#: registry.py:223 registry.py:244 registry.py:257
+#, python-format
+msgid "domain %s not yet registered"
+msgstr ""
+
+#: registry.py:230
+#, python-format
+msgid "The %r directive is already registered to domain %s"
+msgstr ""
+
+#: registry.py:248
+#, python-format
+msgid "The %r role is already registered to domain %s"
+msgstr ""
+
+#: registry.py:261
+#, python-format
+msgid "The %r index is already registered to domain %s"
+msgstr ""
+
+#: registry.py:308
+#, python-format
+msgid "The %r object_type is already registered"
+msgstr ""
+
+#: registry.py:339
+#, python-format
+msgid "The %r crossref_type is already registered"
+msgstr ""
+
+#: registry.py:348
+#, python-format
+msgid "source_suffix %r is already registered"
+msgstr ""
+
+#: registry.py:358
+#, python-format
+msgid "source_parser for %r is already registered"
+msgstr ""
+
+#: registry.py:367
+#, python-format
+msgid "Source parser for %s not registered"
+msgstr ""
+
+#: registry.py:388
+#, python-format
+msgid "Translator for %r already exists"
+msgstr ""
+
+#: registry.py:405
+#, python-format
+msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
+msgstr ""
+
+#: registry.py:498
+#, python-format
+msgid "enumerable_node %r already registered"
+msgstr ""
+
+#: registry.py:514
+#, python-format
+msgid "math renderer %s is already registered"
+msgstr ""
-#: config.py:366
+#: registry.py:531
+#, python-format
msgid ""
-"Invalid configuration value found: 'language = None'. Update your "
-"configuration to a valid language code. Falling back to 'en' (English)."
+"the extension %r was already merged with Sphinx since version %s; this "
+"extension is ignored."
+msgstr ""
+
+#: registry.py:545
+msgid "Original exception:\n"
+msgstr ""
+
+#: registry.py:547
+#, python-format
+msgid "Could not import extension %s"
+msgstr ""
+
+#: registry.py:554
+#, python-format
+msgid ""
+"extension %r has no setup() function; is it really a Sphinx extension "
+"module?"
+msgstr ""
+
+#: registry.py:567
+#, python-format
+msgid ""
+"The %s extension used by this project needs at least Sphinx v%s; it "
+"therefore cannot be built with this version."
+msgstr ""
+
+#: registry.py:579
+#, python-format
+msgid ""
+"extension %r returned an unsupported object from its setup() function; it "
+"should return None or a metadata dictionary"
+msgstr ""
+
+#: registry.py:605
+#, python-format
+msgid "`None` is not a valid filetype for %r."
msgstr ""
-#: config.py:394
+#: config.py:351
+#, python-format
+msgid "config directory doesn't contain a conf.py file (%s)"
+msgstr "مجلد الاعدادات لا يحتوي على ملف conf.py (%s)"
+
+#: config.py:374
#, python-format
msgid "'%s' must be '0' or '1', got '%s'"
msgstr ""
-#: config.py:399
+#: config.py:379
#, python-format
msgid ""
"cannot override dictionary config setting %r, ignoring (use %r to set "
"individual elements)"
msgstr ""
-#: config.py:411
+#: config.py:391
#, python-format
msgid "invalid number %r for config value %r, ignoring"
msgstr ""
-#: config.py:419
+#: config.py:399
#, python-format
msgid "cannot override config setting %r with unsupported type, ignoring"
msgstr ""
-#: config.py:442
+#: config.py:422
#, python-format
msgid "unknown config value %r in override, ignoring"
msgstr ""
-#: config.py:496
+#: config.py:476
#, python-format
msgid "No such config value: %r"
msgstr ""
-#: config.py:524
+#: config.py:504
#, python-format
msgid "Config value %r already present"
msgstr ""
-#: config.py:561
+#: config.py:541
#, python-format
msgid ""
"cannot cache unpickleable configuration value: %r (because it contains a "
"function, class, or module object)"
msgstr ""
-#: config.py:603
+#: config.py:577
+msgid ""
+"Invalid configuration value found: 'language = None'. Update your "
+"configuration to a valid language code. Falling back to 'en' (English)."
+msgstr ""
+
+#: config.py:599
#, python-format
msgid "There is a syntax error in your configuration file: %s\n"
msgstr ""
-#: config.py:607
+#: config.py:603
msgid ""
"The configuration file (or one of the modules it imports) called sys.exit()"
msgstr ""
-#: config.py:615
+#: config.py:611
#, python-format
msgid ""
"There is a programmable error in your configuration file:\n"
@@ -258,468 +538,624 @@ msgid ""
"%s"
msgstr ""
-#: config.py:637
+#: config.py:633
#, python-format
msgid "Failed to convert %r to a frozenset"
msgstr ""
-#: config.py:655 config.py:663
+#: config.py:651 config.py:659
#, python-format
msgid "Converting `source_suffix = %r` to `source_suffix = %r`."
msgstr ""
-#: config.py:669
+#: config.py:665
#, python-format
msgid ""
"The config value `source_suffix' expects a dictionary, a string, or a list "
"of strings. Got `%r' instead (type %s)."
msgstr ""
-#: config.py:690
+#: config.py:686
#, python-format
msgid "Section %s"
msgstr "قسم %s"
-#: config.py:691
+#: config.py:687
#, python-format
msgid "Fig. %s"
msgstr ""
-#: config.py:692
+#: config.py:688
#, python-format
msgid "Table %s"
msgstr "جدول %s"
-#: config.py:693
+#: config.py:689
#, python-format
msgid "Listing %s"
msgstr ""
-#: config.py:802
+#: config.py:798
#, python-brace-format
msgid ""
"The config value `{name}` has to be a one of {candidates}, but `{current}` "
"is given."
msgstr ""
-#: config.py:833
+#: config.py:829
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}'; expected "
"{permitted}."
msgstr ""
-#: config.py:850
+#: config.py:846
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}', defaults to "
"`{default.__name__}'."
msgstr ""
-#: config.py:862
+#: config.py:858
#, python-format
msgid "primary_domain %r not found, ignored."
msgstr "primary_domain %r لتم يتم العثور عليه، لهذا تم تجاهلة"
-#: config.py:882
+#: config.py:878
msgid ""
"Sphinx now uses \"index\" as the master document by default. To keep pre-2.0"
" behaviour, set \"master_doc = 'contents'\"."
msgstr ""
-#: highlighting.py:170
-#, python-format
-msgid "Pygments lexer name %r is not known"
+#: config.py:892
+msgid ""
+"Support for source encodings other than UTF-8 is deprecated and will be "
+"removed in Sphinx 10. Please comment at https://github.com/sphinx-"
+"doc/sphinx/issues/13665 if this causes a problem."
msgstr ""
-#: highlighting.py:209
-#, python-format
-msgid ""
-"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
-"Retrying in relaxed mode."
+#: environment/__init__.py:89
+msgid "new config"
msgstr ""
-#: theming.py:115
-#, python-format
-msgid ""
-"Theme configuration sections other than [theme] and [options] are not "
-"supported (tried to get a value from %r)."
+#: environment/__init__.py:90
+msgid "config changed"
msgstr ""
-#: theming.py:120
-#, python-format
-msgid "setting %s.%s occurs in none of the searched theme configs"
+#: environment/__init__.py:91
+msgid "extensions changed"
msgstr ""
-#: theming.py:135
-#, python-format
-msgid "unsupported theme option %r given"
+#: environment/__init__.py:261
+msgid "build environment version not current"
msgstr ""
-#: theming.py:208
-#, python-format
-msgid "file %r on theme path is not a valid zipfile or contains no theme"
+#: environment/__init__.py:263
+msgid "source directory has changed"
msgstr ""
-#: theming.py:228
+#: environment/__init__.py:350
#, python-format
-msgid "no theme named %r found (missing theme.toml?)"
+msgid "The configuration has changed (1 option: %r)"
msgstr ""
-#: theming.py:268
+#: environment/__init__.py:355
#, python-format
-msgid "The %r theme has circular inheritance"
+msgid "The configuration has changed (%d options: %s)"
msgstr ""
-#: theming.py:276
+#: environment/__init__.py:361
#, python-format
+msgid "The configuration has changed (%d options: %s, ...)"
+msgstr ""
+
+#: environment/__init__.py:404
msgid ""
-"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
-"are: %s"
+"This environment is incompatible with the selected builder, please choose "
+"another doctree directory."
msgstr ""
-#: theming.py:282
+#: environment/__init__.py:518
#, python-format
-msgid "The %r theme has too many ancestors"
+msgid "Failed to scan documents in %s: %r"
msgstr ""
-#: theming.py:310
+#: environment/__init__.py:645 ext/intersphinx/_resolve.py:238
#, python-format
-msgid "no theme configuration file found in %r"
+msgid "Domain %r is not registered"
msgstr ""
-#: theming.py:335 theming.py:388
-#, python-format
-msgid "theme %r doesn't have the \"theme\" table"
+#: environment/__init__.py:811
+msgid "document isn't included in any toctree"
msgstr ""
-#: theming.py:339
-#, python-format
-msgid "The %r theme \"[theme]\" table is not a table"
+#: environment/__init__.py:922
+msgid "self referenced toctree found. Ignored."
msgstr ""
-#: theming.py:343 theming.py:391
+#: environment/__init__.py:952
#, python-format
-msgid "The %r theme must define the \"theme.inherit\" setting"
+msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
msgstr ""
-#: theming.py:347
+#: locale/__init__.py:229
+msgid "Attention"
+msgstr "تنبيه"
+
+#: locale/__init__.py:230
+msgid "Caution"
+msgstr "احتياط"
+
+#: locale/__init__.py:231
+msgid "Danger"
+msgstr "خطر"
+
+#: locale/__init__.py:232
+msgid "Error"
+msgstr "خطأ"
+
+#: locale/__init__.py:233
+msgid "Hint"
+msgstr "تلميح"
+
+#: locale/__init__.py:234
+msgid "Important"
+msgstr "مهم"
+
+#: locale/__init__.py:235
+msgid "Note"
+msgstr "ملاحظة"
+
+#: locale/__init__.py:236
+msgid "See also"
+msgstr "شاهد أيضا"
+
+#: locale/__init__.py:237
+msgid "Tip"
+msgstr "نصيحة"
+
+#: locale/__init__.py:238
+msgid "Warning"
+msgstr "تحذير"
+
+#: builders/texinfo.py:41
#, python-format
-msgid "The %r theme \"[options]\" table is not a table"
+msgid "The Texinfo files are in %(outdir)s."
msgstr ""
-#: theming.py:366
-#, python-format
-msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+#: builders/texinfo.py:44
+msgid ""
+"\n"
+"Run 'make' in that directory to run these through makeinfo\n"
+"(use 'make info' here to do that automatically)."
msgstr ""
-#: events.py:77
-#, python-format
-msgid "Event %r already present"
+#: builders/texinfo.py:73
+msgid "no \"texinfo_documents\" config value found; no documents will be written"
msgstr ""
-#: events.py:370
+#: builders/texinfo.py:85
#, python-format
-msgid "Unknown event name: %s"
-msgstr "حدث غير معروف: %s"
+msgid "\"texinfo_documents\" config value references unknown document %s"
+msgstr ""
-#: events.py:416
+#: builders/latex/__init__.py:310 builders/texinfo.py:105
#, python-format
-msgid "Handler %r for event %r threw an exception"
+msgid "processing %s"
+msgstr "معالجة %s"
+
+#: builders/latex/__init__.py:332 builders/manpage.py:54
+#: builders/singlehtml.py:176 builders/texinfo.py:111
+msgid "writing"
msgstr ""
-#: project.py:72
-#, python-format
-msgid ""
-"multiple files found for the document \"%s\": %s\n"
-"Use %r for the build."
+#: builders/latex/__init__.py:398 builders/texinfo.py:160
+msgid "resolving references..."
msgstr ""
-#: project.py:87
-#, python-format
-msgid "Ignored unreadable document %r."
+#: builders/latex/__init__.py:409 builders/texinfo.py:170
+msgid " (in "
msgstr ""
-#: registry.py:167
+#: builders/_epub_base.py:425 builders/html/__init__.py:768
+#: builders/latex/__init__.py:474 builders/texinfo.py:186
+msgid "copying images... "
+msgstr "نسخ الصور..."
+
+#: builders/_epub_base.py:447 builders/latex/__init__.py:489
+#: builders/texinfo.py:203
#, python-format
-msgid "Builder class %s has no \"name\" attribute"
+msgid "cannot copy image file %r: %s"
msgstr ""
-#: registry.py:171
-#, python-format
-msgid "Builder %r already exists (in module %s)"
+#: builders/texinfo.py:210
+msgid "copying Texinfo support files"
msgstr ""
-#: registry.py:187
+#: builders/texinfo.py:218
#, python-format
-msgid "Builder name %s not registered or available through entry point"
+msgid "error writing file Makefile: %s"
msgstr ""
-#: registry.py:197
+#: builders/manpage.py:37
#, python-format
-msgid "Builder name %s not registered"
+msgid "The manual pages are in %(outdir)s."
msgstr ""
-#: registry.py:204
-#, python-format
-msgid "domain %s already registered"
+#: builders/manpage.py:45
+msgid "no \"man_pages\" config value found; no manual pages will be written"
msgstr ""
-#: registry.py:228 registry.py:249 registry.py:262
+#: builders/manpage.py:64
#, python-format
-msgid "domain %s not yet registered"
+msgid "\"man_pages\" config value references unknown document %s"
msgstr ""
-#: registry.py:235
+#: builders/singlehtml.py:35
#, python-format
-msgid "The %r directive is already registered to domain %s"
+msgid "The HTML page is in %(outdir)s."
+msgstr "صفحة الHTML موجودة في %(outdir)s"
+
+#: builders/singlehtml.py:171
+msgid "assembling single document"
msgstr ""
-#: registry.py:253
-#, python-format
-msgid "The %r role is already registered to domain %s"
+#: builders/singlehtml.py:189
+msgid "writing additional files"
+msgstr "كتابة ملفات إضافية"
+
+#: builders/dummy.py:19
+msgid "The dummy builder generates no files."
msgstr ""
-#: registry.py:266
+#: builders/gettext.py:243
#, python-format
-msgid "The %r index is already registered to domain %s"
+msgid "The message catalogs are in %(outdir)s."
msgstr ""
-#: registry.py:313
+#: builders/__init__.py:400 builders/gettext.py:264
#, python-format
-msgid "The %r object_type is already registered"
-msgstr ""
+msgid "building [%s]: "
+msgstr "بناء [%s]"
-#: registry.py:344
+#: builders/gettext.py:265
#, python-format
-msgid "The %r crossref_type is already registered"
+msgid "targets for %d template files"
msgstr ""
-#: registry.py:353
-#, python-format
-msgid "source_suffix %r is already registered"
+#: builders/gettext.py:271
+msgid "reading templates... "
+msgstr "قراءة القوالب"
+
+#: builders/gettext.py:310
+msgid "writing message catalogs... "
msgstr ""
-#: registry.py:363
+#: builders/linkcheck.py:87
#, python-format
-msgid "source_parser for %r is already registered"
+msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
msgstr ""
-#: registry.py:372
+#: builders/linkcheck.py:159
#, python-format
-msgid "Source parser for %s not registered"
+msgid "broken link: %s (%s)"
msgstr ""
-#: registry.py:390
+#: builders/linkcheck.py:561
#, python-format
-msgid "Translator for %r already exists"
+msgid "Anchor '%s' not found"
msgstr ""
-#: registry.py:407
-#, python-format
-msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
+#: builders/linkcheck.py:789
+msgid "linkcheck_allowed_redirects. Expected a dictionary."
msgstr ""
-#: registry.py:496
+#: builders/linkcheck.py:799
#, python-format
-msgid "enumerable_node %r already registered"
+msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
-#: registry.py:512
+#: builders/epub3.py:83
#, python-format
-msgid "math renderer %s is already registered"
+msgid "The ePub file is in %(outdir)s."
msgstr ""
-#: registry.py:529
-#, python-format
-msgid ""
-"the extension %r was already merged with Sphinx since version %s; this "
-"extension is ignored."
+#: builders/epub3.py:188
+msgid "writing nav.xhtml file..."
msgstr ""
-#: registry.py:543
-msgid "Original exception:\n"
+#: builders/epub3.py:224
+msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
msgstr ""
-#: registry.py:545
-#, python-format
-msgid "Could not import extension %s"
+#: builders/epub3.py:230
+msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
msgstr ""
-#: registry.py:552
-#, python-format
-msgid ""
-"extension %r has no setup() function; is it really a Sphinx extension "
-"module?"
+#: builders/epub3.py:235
+msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
msgstr ""
-#: registry.py:565
-#, python-format
-msgid ""
-"The %s extension used by this project needs at least Sphinx v%s; it "
-"therefore cannot be built with this version."
+#: builders/epub3.py:241
+msgid "conf value \"epub_author\" should not be empty for EPUB3"
msgstr ""
-#: registry.py:577
-#, python-format
-msgid ""
-"extension %r returned an unsupported object from its setup() function; it "
-"should return None or a metadata dictionary"
+#: builders/epub3.py:245
+msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
msgstr ""
-#: registry.py:612
-#, python-format
-msgid "`None` is not a valid filetype for %r."
+#: builders/epub3.py:250
+msgid "conf value \"epub_description\" should not be empty for EPUB3"
msgstr ""
-#: roles.py:206
-#, python-format
-msgid "Common Vulnerabilities and Exposures; CVE %s"
+#: builders/epub3.py:254
+msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+msgstr ""
+
+#: builders/epub3.py:259
+msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+msgstr ""
+
+#: builders/epub3.py:265
+msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+msgstr ""
+
+#: builders/epub3.py:268
+msgid "conf value \"version\" should not be empty for EPUB3"
msgstr ""
-#: roles.py:229
+#: builders/epub3.py:282 builders/html/__init__.py:1296
#, python-format
-msgid "invalid CVE number %s"
+msgid "invalid css_file: %r, ignored"
msgstr ""
-#: roles.py:251
+#: builders/xml.py:29
#, python-format
-msgid "Common Weakness Enumeration; CWE %s"
+msgid "The XML files are in %(outdir)s."
+msgstr "ملفات الXML موجودة في %(outdir)s"
+
+#: builders/html/__init__.py:1242 builders/text.py:71 builders/xml.py:81
+#, python-format
+msgid "error writing file %s: %s"
msgstr ""
-#: roles.py:274
+#: builders/xml.py:103
#, python-format
-msgid "invalid CWE number %s"
+msgid "The pseudo-XML files are in %(outdir)s."
msgstr ""
-#: roles.py:294
+#: builders/_epub_base.py:223
#, python-format
-msgid "Python Enhancement Proposals; PEP %s"
+msgid "duplicated ToC entry found: %s"
msgstr ""
-#: roles.py:317
+#: builders/_epub_base.py:436
#, python-format
-msgid "invalid PEP number %s"
+msgid "cannot read image file %r: copying it instead"
msgstr ""
-#: roles.py:355
+#: builders/_epub_base.py:467
#, python-format
-msgid "invalid RFC number %s"
+msgid "cannot write image file %r: %s"
msgstr ""
-#: ext/linkcode.py:86 ext/viewcode.py:226
-msgid "[source]"
-msgstr "[المصدر]"
+#: builders/_epub_base.py:479
+msgid "Pillow not found - copying image files"
+msgstr ""
-#: ext/viewcode.py:289
-msgid "highlighting module code... "
+#: builders/_epub_base.py:514
+msgid "writing mimetype file..."
msgstr ""
-#: ext/viewcode.py:320
-msgid "[docs]"
-msgstr "[المستندات]"
+#: builders/_epub_base.py:523
+msgid "writing META-INF/container.xml file..."
+msgstr ""
-#: ext/viewcode.py:346
-msgid "Module code"
+#: builders/_epub_base.py:561
+msgid "writing content.opf file..."
msgstr ""
-#: ext/viewcode.py:353
+#: builders/_epub_base.py:594
#, python-format
-msgid "Source code for %s
"
+msgid "unknown mimetype for %s, ignoring"
msgstr ""
-#: ext/viewcode.py:380
-msgid "Overview: module code"
+#: builders/_epub_base.py:749
+msgid "node has an invalid level"
msgstr ""
-#: ext/viewcode.py:381
-msgid "All modules for which code is available
"
+#: builders/_epub_base.py:769
+msgid "writing toc.ncx file..."
msgstr ""
-#: ext/extlinks.py:82
+#: builders/_epub_base.py:802
#, python-format
-msgid ""
-"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgid "writing %s file..."
msgstr ""
-#: ext/autosectionlabel.py:52
+#: builders/text.py:27
#, python-format
-msgid "section \"%s\" gets labeled as \"%s\""
+msgid "The text files are in %(outdir)s."
msgstr ""
-#: domains/std/__init__.py:833 domains/std/__init__.py:960
-#: ext/autosectionlabel.py:61
+#: builders/__init__.py:229
#, python-format
-msgid "duplicate label %s, other instance in %s"
+msgid "a suitable image for %s builder not found: %s (%s)"
msgstr ""
-#: ext/imgmath.py:387 ext/mathjax.py:60
-msgid "Link to this equation"
+#: builders/__init__.py:237
+#, python-format
+msgid "a suitable image for %s builder not found: %s"
msgstr ""
-#: ext/duration.py:90
-msgid ""
-"====================== slowest reading durations ======================="
+#: builders/__init__.py:260
+msgid "building [mo]: "
+msgstr "بناء [mo]:"
+
+#: builders/__init__.py:263 builders/__init__.py:771 builders/__init__.py:795
+msgid "writing output... "
msgstr ""
-#: ext/doctest.py:118
+#: builders/__init__.py:280
#, python-format
-msgid "missing '+' or '-' in '%s' option."
+msgid "all of %d po files"
msgstr ""
-#: ext/doctest.py:124
+#: builders/__init__.py:302
#, python-format
-msgid "'%s' is not a valid option."
+msgid "targets for %d po files that are specified"
msgstr ""
-#: ext/doctest.py:139
+#: builders/__init__.py:314
#, python-format
-msgid "'%s' is not a valid pyversion option"
+msgid "targets for %d po files that are out of date"
msgstr ""
-#: ext/doctest.py:226
-msgid "invalid TestCode type"
+#: builders/__init__.py:324
+msgid "all source files"
+msgstr "جميع ملفات المصدر"
+
+#: builders/__init__.py:335
+#, python-format
+msgid "file %r given on command line does not exist, "
msgstr ""
-#: ext/doctest.py:297
+#: builders/__init__.py:342
#, python-format
msgid ""
-"Testing of doctests in the sources finished, look at the results in "
-"%(outdir)s/output.txt."
+"file %r given on command line is not under the source directory, ignoring"
msgstr ""
-#: ext/doctest.py:457
+#: builders/__init__.py:353
#, python-format
-msgid "no code/output in %s block at %s:%s"
+msgid "file %r given on command line is not a valid document, ignoring"
msgstr ""
-#: ext/doctest.py:568
+#: builders/__init__.py:366
#, python-format
-msgid "ignoring invalid doctest code: %r"
+msgid "%d source files given on command line"
+msgstr ""
+
+#: builders/__init__.py:382
+#, python-format
+msgid "targets for %d source files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:411
+msgid "looking for now-outdated files... "
+msgstr ""
+
+#: builders/__init__.py:415
+#, python-format
+msgid "%d found"
+msgstr ""
+
+#: builders/__init__.py:417
+msgid "none found"
+msgstr ""
+
+#: builders/__init__.py:424
+msgid "pickling environment"
+msgstr ""
+
+#: builders/__init__.py:431
+msgid "checking consistency"
+msgstr "التحقق من التوافق"
+
+#: builders/__init__.py:435
+msgid "no targets are out of date."
+msgstr ""
+
+#: builders/__init__.py:474
+msgid "updating environment: "
+msgstr "تحديث البيئة:"
+
+#: builders/__init__.py:499
+#, python-format
+msgid "%s added, %s changed, %s removed"
msgstr ""
-#: ext/imgmath.py:162
+#: builders/__init__.py:536
#, python-format
msgid ""
-"LaTeX command %r cannot be run (needed for math display), check the "
-"imgmath_latex setting"
+"Sphinx is unable to load the master document (%s) because it matches a "
+"built-in exclude pattern %r. Please move your master document to a different"
+" location."
msgstr ""
-#: ext/imgmath.py:181
+#: builders/__init__.py:545
#, python-format
msgid ""
-"%s command %r cannot be run (needed for math display), check the imgmath_%s "
-"setting"
+"Sphinx is unable to load the master document (%s) because it matches an "
+"exclude pattern specified in conf.py, %r. Please remove this pattern from "
+"conf.py."
msgstr ""
-#: ext/imgmath.py:344
+#: builders/__init__.py:556
#, python-format
-msgid "display latex %r: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s) because it is not included"
+" in the custom include_patterns = %r. Ensure that a pattern in "
+"include_patterns matches the master document."
msgstr ""
-#: ext/imgmath.py:380
+#: builders/__init__.py:563
#, python-format
-msgid "inline latex %r: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s). The master document must "
+"be within the source directory or a subdirectory of it."
+msgstr ""
+
+#: builders/__init__.py:581 builders/__init__.py:598
+msgid "reading sources... "
+msgstr ""
+
+#: builders/__init__.py:725
+#, python-format
+msgid "docnames to write: %s"
+msgstr ""
+
+#: builders/__init__.py:727
+msgid "no docnames to write!"
+msgstr ""
+
+#: builders/__init__.py:740
+msgid "preparing documents"
+msgstr "تجهيز المستندات"
+
+#: builders/__init__.py:743
+msgid "copying assets"
+msgstr ""
+
+#: builders/changes.py:29
+#, python-format
+msgid "The overview file is in %(outdir)s."
+msgstr ""
+
+#: builders/changes.py:65
+#, python-format
+msgid "no changes in version %s."
+msgstr ""
+
+#: builders/changes.py:67
+msgid "writing summary file..."
+msgstr ""
+
+#: builders/changes.py:79
+msgid "Builtins"
+msgstr ""
+
+#: builders/changes.py:81
+msgid "Module level"
+msgstr ""
+
+#: builders/changes.py:137
+msgid "copying source files..."
+msgstr ""
+
+#: builders/changes.py:146
+#, python-format
+msgid "could not read %r for changelog creation"
msgstr ""
#: ext/coverage.py:48
@@ -740,9 +1176,10 @@ msgid ""
msgstr ""
#: ext/coverage.py:158
+#, python-format
msgid ""
"the following modules are specified in coverage_modules but were not "
-"documented"
+"documented: %s"
msgstr ""
#: ext/coverage.py:172
@@ -777,6 +1214,34 @@ msgstr ""
msgid "undocumented python method: %s :: %s :: %s"
msgstr ""
+#: ext/extlinks.py:82
+#, python-format
+msgid ""
+"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgstr ""
+
+#: ext/todo.py:61
+msgid "Todo"
+msgstr ""
+
+#: ext/todo.py:94
+#, python-format
+msgid "TODO entry found: %s"
+msgstr ""
+
+#: ext/todo.py:152
+msgid "<>"
+msgstr ""
+
+#: ext/todo.py:154
+#, python-format
+msgid "(The <> is located in %s, line %d.)"
+msgstr ""
+
+#: ext/todo.py:166
+msgid "original entry"
+msgstr ""
+
#: ext/imgconverter.py:44
#, python-format
msgid ""
@@ -864,947 +1329,993 @@ msgstr ""
msgid "[graph]"
msgstr ""
-#: ext/todo.py:61
-msgid "Todo"
-msgstr ""
-
-#: ext/todo.py:94
+#: ext/imgmath.py:148
#, python-format
-msgid "TODO entry found: %s"
+msgid ""
+"LaTeX command %r cannot be run (needed for math display), check the "
+"imgmath_latex setting"
msgstr ""
-#: ext/todo.py:152
-msgid "<>"
+#: ext/imgmath.py:167
+#, python-format
+msgid ""
+"%s command %r cannot be run (needed for math display), check the imgmath_%s "
+"setting"
msgstr ""
-#: ext/todo.py:154
+#: ext/imgmath.py:326
#, python-format
-msgid "(The <> is located in %s, line %d.)"
+msgid "display latex %r: %s"
msgstr ""
-#: ext/todo.py:166
-msgid "original entry"
+#: ext/imgmath.py:362
+#, python-format
+msgid "inline latex %r: %s"
msgstr ""
-#: directives/code.py:66
-msgid "non-whitespace stripped by dedent"
+#: ext/imgmath.py:369 ext/mathjax.py:60
+msgid "Link to this equation"
msgstr ""
-#: directives/code.py:87
+#: ext/doctest.py:118
#, python-format
-msgid "Invalid caption: %s"
+msgid "missing '+' or '-' in '%s' option."
msgstr ""
-#: directives/code.py:131 directives/code.py:297 directives/code.py:483
+#: ext/doctest.py:124
#, python-format
-msgid "line number spec is out of range(1-%d): %r"
+msgid "'%s' is not a valid option."
msgstr ""
-#: directives/code.py:216
+#: ext/doctest.py:139
#, python-format
-msgid "Cannot use both \"%s\" and \"%s\" options"
+msgid "'%s' is not a valid pyversion option"
msgstr ""
-#: directives/code.py:231
-#, python-format
-msgid "Include file '%s' not found or reading it failed"
+#: ext/doctest.py:226
+msgid "invalid TestCode type"
msgstr ""
-#: directives/code.py:235
+#: ext/doctest.py:297
#, python-format
msgid ""
-"Encoding %r used for reading included file '%s' seems to be wrong, try "
-"giving an :encoding: option"
+"Testing of doctests in the sources finished, look at the results in "
+"%(outdir)s/output.txt."
msgstr ""
-#: directives/code.py:276
+#: ext/doctest.py:451
#, python-format
-msgid "Object named %r not found in include file %r"
+msgid "no code/output in %s block at %s:%s"
msgstr ""
-#: directives/code.py:309
-msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
+#: ext/doctest.py:568
+#, python-format
+msgid "ignoring invalid doctest code: %r"
msgstr ""
-#: directives/code.py:314
+#: ext/autosectionlabel.py:52
#, python-format
-msgid "Line spec %r: no lines pulled from include file %r"
+msgid "section \"%s\" gets labeled as \"%s\""
msgstr ""
-#: directives/patches.py:71
-msgid ""
-"\":file:\" option for csv-table directive now recognizes an absolute path as"
-" a relative path from source directory. Please update your document."
+#: domains/std/__init__.py:833 domains/std/__init__.py:960
+#: ext/autosectionlabel.py:61
+#, python-format
+msgid "duplicate label %s, other instance in %s"
msgstr ""
-#: directives/other.py:119
+#: ext/duration.py:47
#, python-format
-msgid "toctree glob pattern %r didn't match any documents"
+msgid "Reading duration %.3fs exceeded the duration limit %.3fs"
msgstr ""
-#: directives/other.py:153 environment/adapters/toctree.py:361
-#, python-format
-msgid "toctree contains reference to excluded document %r"
+#: ext/duration.py:117
+msgid ""
+"====================== total reading duration =========================="
msgstr ""
-#: directives/other.py:156
+#: ext/duration.py:124
#, python-format
-msgid "toctree contains reference to nonexisting document %r"
+msgid "Total time reading %d file%s: %dm %.3fs"
msgstr ""
-#: directives/other.py:169
+#: ext/duration.py:136
+msgid ""
+"====================== slowest reading durations ======================="
+msgstr ""
+
+#: ext/duration.py:139
#, python-format
-msgid "duplicated entry found in toctree: %s"
+msgid "%.3fs %s"
msgstr ""
-#: directives/other.py:203
-msgid "Section author: "
-msgstr "مؤلف القسم:"
+#: ext/linkcode.py:86 ext/viewcode.py:232
+msgid "[source]"
+msgstr "[المصدر]"
-#: directives/other.py:205
-msgid "Module author: "
+#: ext/viewcode.py:295
+msgid "highlighting module code... "
msgstr ""
-#: directives/other.py:207
-msgid "Code author: "
-msgstr "كاتب الكود:"
-
-#: directives/other.py:209
-msgid "Author: "
-msgstr "المؤلف"
+#: ext/viewcode.py:326
+msgid "[docs]"
+msgstr "[المستندات]"
-#: directives/other.py:269
-msgid ".. acks content is not a list"
+#: ext/viewcode.py:352
+msgid "Module code"
msgstr ""
-#: directives/other.py:292
-msgid ".. hlist content is not a list"
-msgstr ""
-
-#: builders/changes.py:29
+#: ext/viewcode.py:359
#, python-format
-msgid "The overview file is in %(outdir)s."
+msgid "Source code for %s
"
msgstr ""
-#: builders/changes.py:56
-#, python-format
-msgid "no changes in version %s."
+#: ext/viewcode.py:386
+msgid "Overview: module code"
msgstr ""
-#: builders/changes.py:58
-msgid "writing summary file..."
+#: ext/viewcode.py:387
+msgid "All modules for which code is available
"
msgstr ""
-#: builders/changes.py:70
-msgid "Builtins"
+#: domains/citation.py:75
+#, python-format
+msgid "duplicate citation %s, other instance in %s"
msgstr ""
-#: builders/changes.py:72
-msgid "Module level"
+#: domains/citation.py:92
+#, python-format
+msgid "Citation [%s] is not referenced."
msgstr ""
-#: builders/changes.py:124
-msgid "copying source files..."
+#: domains/math.py:73
+#, python-format
+msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
-#: builders/changes.py:133
+#: domains/math.py:130 writers/latex.py:2500
#, python-format
-msgid "could not read %r for changelog creation"
+msgid "Invalid math_eqref_format: %r"
msgstr ""
-#: builders/manpage.py:37
+#: domains/javascript.py:183
#, python-format
-msgid "The manual pages are in %(outdir)s."
+msgid "%s() (built-in function)"
msgstr ""
-#: builders/manpage.py:45
-msgid "no \"man_pages\" config value found; no manual pages will be written"
+#: domains/javascript.py:184 domains/python/__init__.py:279
+#, python-format
+msgid "%s() (%s method)"
msgstr ""
-#: builders/latex/__init__.py:347 builders/manpage.py:54
-#: builders/singlehtml.py:176 builders/texinfo.py:119
-msgid "writing"
+#: domains/javascript.py:186
+#, python-format
+msgid "%s() (class)"
msgstr ""
-#: builders/manpage.py:71
+#: domains/javascript.py:188
#, python-format
-msgid "\"man_pages\" config value references unknown document %s"
+msgid "%s (global variable or constant)"
msgstr ""
-#: builders/__init__.py:224
+#: domains/javascript.py:190 domains/python/__init__.py:370
#, python-format
-msgid "a suitable image for %s builder not found: %s (%s)"
+msgid "%s (%s attribute)"
msgstr ""
-#: builders/__init__.py:232
-#, python-format
-msgid "a suitable image for %s builder not found: %s"
+#: domains/javascript.py:274
+msgid "Arguments"
msgstr ""
-#: builders/__init__.py:255
-msgid "building [mo]: "
-msgstr "بناء [mo]:"
+#: domains/cpp/__init__.py:491 domains/javascript.py:281
+msgid "Throws"
+msgstr ""
-#: builders/__init__.py:258 builders/__init__.py:759 builders/__init__.py:791
-msgid "writing output... "
+#: domains/c/__init__.py:367 domains/cpp/__init__.py:504
+#: domains/javascript.py:288 domains/python/_object.py:221
+msgid "Returns"
msgstr ""
-#: builders/__init__.py:275
-#, python-format
-msgid "all of %d po files"
+#: domains/c/__init__.py:373 domains/javascript.py:294
+#: domains/python/_object.py:227
+msgid "Return type"
msgstr ""
-#: builders/__init__.py:297
+#: domains/javascript.py:374
#, python-format
-msgid "targets for %d po files that are specified"
+msgid "%s (module)"
msgstr ""
-#: builders/__init__.py:309
-#, python-format
-msgid "targets for %d po files that are out of date"
+#: domains/c/__init__.py:779 domains/cpp/__init__.py:943
+#: domains/javascript.py:419 domains/python/__init__.py:726
+msgid "function"
msgstr ""
-#: builders/__init__.py:319
-msgid "all source files"
-msgstr "جميع ملفات المصدر"
+#: domains/javascript.py:420 domains/python/__init__.py:730
+msgid "method"
+msgstr ""
-#: builders/__init__.py:330
-#, python-format
-msgid "file %r given on command line does not exist, "
+#: domains/cpp/__init__.py:941 domains/javascript.py:421
+#: domains/python/__init__.py:728
+msgid "class"
+msgstr "كائن"
+
+#: domains/javascript.py:422 domains/python/__init__.py:727
+msgid "data"
msgstr ""
-#: builders/__init__.py:337
-#, python-format
-msgid ""
-"file %r given on command line is not under the source directory, ignoring"
+#: domains/javascript.py:423 domains/python/__init__.py:733
+msgid "attribute"
msgstr ""
-#: builders/__init__.py:348
-#, python-format
-msgid "file %r given on command line is not a valid document, ignoring"
+#: domains/javascript.py:424 domains/python/__init__.py:736
+msgid "module"
msgstr ""
-#: builders/__init__.py:361
+#: domains/javascript.py:458
#, python-format
-msgid "%d source files given on command line"
+msgid "duplicate %s description of %s, other %s in %s"
msgstr ""
-#: builders/__init__.py:377
+#: domains/rst.py:131 domains/rst.py:190
#, python-format
-msgid "targets for %d source files that are out of date"
+msgid "%s (directive)"
msgstr ""
-#: builders/__init__.py:395 builders/gettext.py:265
+#: domains/rst.py:191 domains/rst.py:202
#, python-format
-msgid "building [%s]: "
-msgstr "بناء [%s]"
-
-#: builders/__init__.py:406
-msgid "looking for now-outdated files... "
+msgid ":%s: (directive option)"
msgstr ""
-#: builders/__init__.py:410
+#: domains/rst.py:224
#, python-format
-msgid "%d found"
+msgid "%s (role)"
msgstr ""
-#: builders/__init__.py:412
-msgid "none found"
+#: domains/rst.py:234
+msgid "directive"
msgstr ""
-#: builders/__init__.py:419
-msgid "pickling environment"
+#: domains/rst.py:235
+msgid "directive-option"
msgstr ""
-#: builders/__init__.py:426
-msgid "checking consistency"
-msgstr "التحقق من التوافق"
+#: domains/rst.py:236
+msgid "role"
+msgstr "متغير بيئة العمل"
-#: builders/__init__.py:430
-msgid "no targets are out of date."
+#: domains/rst.py:262
+#, python-format
+msgid "duplicate description of %s %s, other instance in %s"
msgstr ""
-#: builders/__init__.py:469
-msgid "updating environment: "
-msgstr "تحديث البيئة:"
-
-#: builders/__init__.py:494
+#: domains/changeset.py:32
#, python-format
-msgid "%s added, %s changed, %s removed"
+msgid "Added in version %s"
msgstr ""
-#: builders/__init__.py:531
+#: domains/changeset.py:33
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches a "
-"built-in exclude pattern %r. Please move your master document to a different"
-" location."
+msgid "Changed in version %s"
msgstr ""
-#: builders/__init__.py:540
+#: domains/changeset.py:34
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches an "
-"exclude pattern specified in conf.py, %r. Please remove this pattern from "
-"conf.py."
+msgid "Deprecated since version %s"
msgstr ""
-#: builders/__init__.py:551
+#: domains/changeset.py:35
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it is not included"
-" in the custom include_patterns = %r. Ensure that a pattern in "
-"include_patterns matches the master document."
+msgid "Removed in version %s"
msgstr ""
-#: builders/__init__.py:558
+#: domains/__init__.py:322
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s). The master document must "
-"be within the source directory or a subdirectory of it."
+msgid "%s %s"
msgstr ""
-#: builders/__init__.py:576 builders/__init__.py:592
-msgid "reading sources... "
+#: cmd/build.py:64
+msgid "job number should be a positive number"
msgstr ""
-#: builders/__init__.py:713
-#, python-format
-msgid "docnames to write: %s"
+#: cmd/build.py:73 cmd/quickstart.py:582 ext/apidoc/_cli.py:27
+#: ext/autosummary/generate.py:876
+msgid "For more information, visit ."
msgstr ""
-#: builders/__init__.py:715
-msgid "no docnames to write!"
+#: cmd/build.py:74
+msgid ""
+"\n"
+"Generate documentation from source files.\n"
+"\n"
+"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
+"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
+"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
+"including 'conf.py'\n"
+"\n"
+"sphinx-build can create documentation in different formats. A format is\n"
+"selected by specifying the builder name on the command line; it defaults to\n"
+"HTML. Builders can also perform other tasks related to documentation\n"
+"processing.\n"
+"\n"
+"By default, everything that is outdated is built. Output only for selected\n"
+"files can be built by specifying individual filenames.\n"
msgstr ""
-#: builders/__init__.py:728
-msgid "preparing documents"
-msgstr "تجهيز المستندات"
+#: cmd/build.py:100
+msgid "path to documentation source files"
+msgstr ""
-#: builders/__init__.py:731
-msgid "copying assets"
+#: cmd/build.py:103
+msgid "path to output directory"
msgstr ""
-#: builders/__init__.py:883
-#, python-format
-msgid "undecodable source characters, replacing with \"?\": %r"
+#: cmd/build.py:109
+msgid ""
+"(optional) a list of specific files to rebuild. Ignored if --write-all is "
+"specified"
msgstr ""
-#: builders/epub3.py:84
-#, python-format
-msgid "The ePub file is in %(outdir)s."
+#: cmd/build.py:114
+msgid "general options"
msgstr ""
-#: builders/epub3.py:189
-msgid "writing nav.xhtml file..."
+#: cmd/build.py:121
+msgid "builder to use (default: 'html')"
msgstr ""
-#: builders/epub3.py:221
-msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
+#: cmd/build.py:131
+msgid ""
+"run in parallel with N processes, when possible. 'auto' uses the number of "
+"CPU cores"
msgstr ""
-#: builders/epub3.py:227
-msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
+#: cmd/build.py:140
+msgid "write all files (default: only write new and changed files)"
msgstr ""
-#: builders/epub3.py:232
-msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
+#: cmd/build.py:147
+msgid "don't use a saved environment, always read all files"
msgstr ""
-#: builders/epub3.py:238
-msgid "conf value \"epub_author\" should not be empty for EPUB3"
+#: cmd/build.py:150
+msgid "path options"
msgstr ""
-#: builders/epub3.py:242
-msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
+#: cmd/build.py:157
+msgid ""
+"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
msgstr ""
-#: builders/epub3.py:247
-msgid "conf value \"epub_description\" should not be empty for EPUB3"
+#: cmd/build.py:166
+msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
msgstr ""
-#: builders/epub3.py:251
-msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+#: cmd/build.py:175
+msgid "use no configuration file, only use settings from -D options"
msgstr ""
-#: builders/epub3.py:256
-msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+#: cmd/build.py:184
+msgid "override a setting in configuration file"
msgstr ""
-#: builders/epub3.py:262
-msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+#: cmd/build.py:193
+msgid "pass a value into HTML templates"
msgstr ""
-#: builders/epub3.py:265
-msgid "conf value \"version\" should not be empty for EPUB3"
+#: cmd/build.py:202
+msgid "define tag: include \"only\" blocks with TAG"
msgstr ""
-#: builders/epub3.py:279 builders/html/__init__.py:1291
-#, python-format
-msgid "invalid css_file: %r, ignored"
+#: cmd/build.py:209
+msgid "nitpicky mode: warn about all missing references"
msgstr ""
-#: builders/xml.py:31
-#, python-format
-msgid "The XML files are in %(outdir)s."
-msgstr "ملفات الXML موجودة في %(outdir)s"
+#: cmd/build.py:212
+msgid "console output options"
+msgstr ""
-#: builders/html/__init__.py:1241 builders/text.py:76 builders/xml.py:90
-#, python-format
-msgid "error writing file %s: %s"
+#: cmd/build.py:219
+msgid "increase verbosity (can be repeated)"
msgstr ""
-#: builders/xml.py:101
-#, python-format
-msgid "The pseudo-XML files are in %(outdir)s."
+#: cmd/build.py:226 ext/apidoc/_cli.py:66
+msgid "no output on stdout, just warnings on stderr"
msgstr ""
-#: builders/texinfo.py:45
-#, python-format
-msgid "The Texinfo files are in %(outdir)s."
+#: cmd/build.py:233
+msgid "no output at all, not even warnings"
msgstr ""
-#: builders/texinfo.py:48
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through makeinfo\n"
-"(use 'make info' here to do that automatically)."
+#: cmd/build.py:241
+msgid "do emit colored output (default: auto-detect)"
msgstr ""
-#: builders/texinfo.py:77
-msgid "no \"texinfo_documents\" config value found; no documents will be written"
+#: cmd/build.py:249
+msgid "do not emit colored output (default: auto-detect)"
msgstr ""
-#: builders/texinfo.py:89
-#, python-format
-msgid "\"texinfo_documents\" config value references unknown document %s"
+#: cmd/build.py:252
+msgid "warning control options"
msgstr ""
-#: builders/latex/__init__.py:325 builders/texinfo.py:113
-#, python-format
-msgid "processing %s"
-msgstr "معالجة %s"
+#: cmd/build.py:258
+msgid "write warnings (and errors) to given file"
+msgstr ""
-#: builders/latex/__init__.py:405 builders/texinfo.py:172
-msgid "resolving references..."
+#: cmd/build.py:265
+msgid "turn warnings into errors"
msgstr ""
-#: builders/latex/__init__.py:416 builders/texinfo.py:182
-msgid " (in "
+#: cmd/build.py:273
+msgid "show full traceback on exception"
msgstr ""
-#: builders/_epub_base.py:422 builders/html/__init__.py:779
-#: builders/latex/__init__.py:481 builders/texinfo.py:198
-msgid "copying images... "
-msgstr "نسخ الصور..."
-
-#: builders/_epub_base.py:444 builders/latex/__init__.py:496
-#: builders/texinfo.py:215
-#, python-format
-msgid "cannot copy image file %r: %s"
+#: cmd/build.py:276
+msgid "run Pdb on exception"
msgstr ""
-#: builders/texinfo.py:222
-msgid "copying Texinfo support files"
+#: cmd/build.py:282
+msgid "raise an exception on warnings"
msgstr ""
-#: builders/texinfo.py:230
-#, python-format
-msgid "error writing file Makefile: %s"
+#: cmd/build.py:325
+msgid "cannot combine -a option and filenames"
msgstr ""
-#: builders/_epub_base.py:223
+#: cmd/build.py:357
#, python-format
-msgid "duplicated ToC entry found: %s"
+msgid "cannot open warning file '%s': %s"
msgstr ""
-#: builders/_epub_base.py:433
-#, python-format
-msgid "cannot read image file %r: copying it instead"
+#: cmd/build.py:376
+msgid "-D option argument must be in the form name=value"
msgstr ""
-#: builders/_epub_base.py:464
-#, python-format
-msgid "cannot write image file %r: %s"
+#: cmd/build.py:383
+msgid "-A option argument must be in the form name=value"
msgstr ""
-#: builders/_epub_base.py:476
-msgid "Pillow not found - copying image files"
+#: cmd/quickstart.py:52
+msgid "automatically insert docstrings from modules"
msgstr ""
-#: builders/_epub_base.py:511
-msgid "writing mimetype file..."
+#: cmd/quickstart.py:53
+msgid "automatically test code snippets in doctest blocks"
msgstr ""
-#: builders/_epub_base.py:520
-msgid "writing META-INF/container.xml file..."
+#: cmd/quickstart.py:54
+msgid "link between Sphinx documentation of different projects"
msgstr ""
-#: builders/_epub_base.py:558
-msgid "writing content.opf file..."
+#: cmd/quickstart.py:55
+msgid "write \"todo\" entries that can be shown or hidden on build"
msgstr ""
-#: builders/_epub_base.py:591
-#, python-format
-msgid "unknown mimetype for %s, ignoring"
+#: cmd/quickstart.py:56
+msgid "checks for documentation coverage"
msgstr ""
-#: builders/_epub_base.py:745
-msgid "node has an invalid level"
+#: cmd/quickstart.py:57
+msgid "include math, rendered as PNG or SVG images"
msgstr ""
-#: builders/_epub_base.py:765
-msgid "writing toc.ncx file..."
+#: cmd/quickstart.py:58
+msgid "include math, rendered in the browser by MathJax"
msgstr ""
-#: builders/_epub_base.py:794
-#, python-format
-msgid "writing %s file..."
+#: cmd/quickstart.py:59
+msgid "conditional inclusion of content based on config values"
msgstr ""
-#: builders/dummy.py:19
-msgid "The dummy builder generates no files."
+#: cmd/quickstart.py:60
+msgid "include links to the source code of documented Python objects"
msgstr ""
-#: builders/gettext.py:244
-#, python-format
-msgid "The message catalogs are in %(outdir)s."
+#: cmd/quickstart.py:61
+msgid "create .nojekyll file to publish the document on GitHub pages"
msgstr ""
-#: builders/gettext.py:266
-#, python-format
-msgid "targets for %d template files"
+#: cmd/quickstart.py:111
+msgid "Please enter a valid path name."
msgstr ""
-#: builders/gettext.py:271
-msgid "reading templates... "
-msgstr "قراءة القوالب"
-
-#: builders/gettext.py:307
-msgid "writing message catalogs... "
-msgstr ""
+#: cmd/quickstart.py:127
+msgid "Please enter some text."
+msgstr "الرجاء ادخال بعض النصوص"
-#: builders/singlehtml.py:35
+#: cmd/quickstart.py:134
#, python-format
-msgid "The HTML page is in %(outdir)s."
-msgstr "صفحة الHTML موجودة في %(outdir)s"
-
-#: builders/singlehtml.py:171
-msgid "assembling single document"
+msgid "Please enter one of %s."
msgstr ""
-#: builders/singlehtml.py:189
-msgid "writing additional files"
-msgstr "كتابة ملفات إضافية"
+#: cmd/quickstart.py:142
+msgid "Please enter either 'y' or 'n'."
+msgstr "أدخل إما 'نعم' أو'لا'"
+
+#: cmd/quickstart.py:148
+msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
+msgstr "أدخل امتداد الملف, مثلا '.rst' أو '.txt'"
-#: builders/linkcheck.py:77
+#: cmd/quickstart.py:230
#, python-format
-msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
+msgid "Welcome to the Sphinx %s quickstart utility."
msgstr ""
-#: builders/linkcheck.py:149
-#, python-format
-msgid "broken link: %s (%s)"
+#: cmd/quickstart.py:235
+msgid ""
+"Please enter values for the following settings (just press Enter to\n"
+"accept a default value, if one is given in brackets)."
msgstr ""
-#: builders/linkcheck.py:548
+#: cmd/quickstart.py:242
#, python-format
-msgid "Anchor '%s' not found"
+msgid "Selected root path: %s"
msgstr ""
-#: builders/linkcheck.py:758
-#, python-format
-msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
+#: cmd/quickstart.py:245
+msgid "Enter the root path for documentation."
msgstr ""
-#: builders/text.py:29
-#, python-format
-msgid "The text files are in %(outdir)s."
+#: cmd/quickstart.py:246
+msgid "Root path for the documentation"
msgstr ""
-#: transforms/i18n.py:227 transforms/i18n.py:302
-#, python-brace-format
-msgid ""
-"inconsistent footnote references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:255
+msgid "Error: an existing conf.py has been found in the selected root path."
msgstr ""
-#: transforms/i18n.py:272
-#, python-brace-format
-msgid ""
-"inconsistent references in translated message. original: {0}, translated: "
-"{1}"
+#: cmd/quickstart.py:260
+msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
msgstr ""
-#: transforms/i18n.py:322
-#, python-brace-format
-msgid ""
-"inconsistent citation references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:263
+msgid "Please enter a new root path (or just Enter to exit)"
msgstr ""
-#: transforms/i18n.py:344
-#, python-brace-format
+#: cmd/quickstart.py:274
msgid ""
-"inconsistent term references in translated message. original: {0}, "
-"translated: {1}"
+"You have two options for placing the build directory for Sphinx output.\n"
+"Either, you use a directory \"_build\" within the root path, or you separate\n"
+"\"source\" and \"build\" directories within the root path."
msgstr ""
-#: builders/html/__init__.py:486 builders/latex/__init__.py:199
-#: transforms/__init__.py:129 writers/manpage.py:98 writers/texinfo.py:220
-#, python-format
-msgid "%b %d, %Y"
+#: cmd/quickstart.py:280
+msgid "Separate source and build directories (y/n)"
msgstr ""
-#: transforms/__init__.py:139
-msgid "could not calculate translation progress!"
+#: cmd/quickstart.py:287
+msgid ""
+"Inside the root directory, two more directories will be created; \"_templates\"\n"
+"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
+"files. You can enter another prefix (such as \".\") to replace the underscore."
msgstr ""
-#: transforms/__init__.py:144
-msgid "no translated elements!"
+#: cmd/quickstart.py:292
+msgid "Name prefix for templates and static dir"
msgstr ""
-#: transforms/__init__.py:253
-#, python-format
+#: cmd/quickstart.py:298
msgid ""
-"4 column based index found. It might be a bug of extensions you use: %r"
+"The project name will occur in several places in the built documentation."
msgstr ""
-#: transforms/__init__.py:294
-#, python-format
-msgid "Footnote [%s] is not referenced."
-msgstr ""
+#: cmd/quickstart.py:301
+msgid "Project name"
+msgstr "اسم المشروع"
-#: transforms/__init__.py:303
-msgid "Footnote [*] is not referenced."
-msgstr ""
+#: cmd/quickstart.py:303
+msgid "Author name(s)"
+msgstr "اسم المؤلف(ون)"
-#: transforms/__init__.py:314
-msgid "Footnote [#] is not referenced."
+#: cmd/quickstart.py:309
+msgid ""
+"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
+"software. Each version can have multiple releases. For example, for\n"
+"Python the version is something like 2.5 or 3.0, while the release is\n"
+"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
+"just set both to the same value."
msgstr ""
-#: _cli/__init__.py:73
-msgid "Usage:"
-msgstr ""
+#: cmd/quickstart.py:316
+msgid "Project version"
+msgstr "نسخة المشروع"
-#: _cli/__init__.py:75
-#, python-brace-format
-msgid "{0} [OPTIONS] []"
-msgstr ""
+#: cmd/quickstart.py:318
+msgid "Project release"
+msgstr "إصدار المشروع"
-#: _cli/__init__.py:78
-msgid " The Sphinx documentation generator."
+#: cmd/quickstart.py:324
+msgid ""
+"If the documents are to be written in a language other than English,\n"
+"you can select a language here by its language code. Sphinx will then\n"
+"translate text that it generates into that language.\n"
+"\n"
+"For a list of supported codes, see\n"
+"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
msgstr ""
-#: _cli/__init__.py:87
-msgid "Commands:"
-msgstr ""
+#: cmd/quickstart.py:332
+msgid "Project language"
+msgstr "لغة المشروع"
-#: _cli/__init__.py:98
-msgid "Options"
+#: cmd/quickstart.py:340
+msgid ""
+"The file name suffix for source files. Commonly, this is either \".txt\"\n"
+"or \".rst\". Only files with this suffix are considered documents."
msgstr ""
-#: _cli/__init__.py:113 _cli/__init__.py:181
-msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
-msgstr ""
+#: cmd/quickstart.py:344
+msgid "Source file suffix"
+msgstr "امتداد ملف المصدر"
-#: _cli/__init__.py:171
-#, python-brace-format
+#: cmd/quickstart.py:350
msgid ""
-"{0}: error: {1}\n"
-"Run '{0} --help' for information"
+"One document is special in that it is considered the top node of the\n"
+"\"contents tree\", that is, it is the root of the hierarchical structure\n"
+"of the documents. Normally, this is \"index\", but if your \"index\"\n"
+"document is a custom template, you can also set this to another filename."
msgstr ""
-#: _cli/__init__.py:179
-msgid " Manage documentation with Sphinx."
+#: cmd/quickstart.py:357
+msgid "Name of your master document (without suffix)"
msgstr ""
-#: _cli/__init__.py:191
-msgid "Show the version and exit."
+#: cmd/quickstart.py:368
+#, python-format
+msgid ""
+"Error: the master file %s has already been found in the selected root path."
msgstr ""
-#: _cli/__init__.py:199
-msgid "Show this message and exit."
+#: cmd/quickstart.py:374
+msgid "sphinx-quickstart will not overwrite the existing file."
msgstr ""
-#: _cli/__init__.py:203
-msgid "Logging"
+#: cmd/quickstart.py:378
+msgid ""
+"Please enter a new file name, or rename the existing file and press Enter"
msgstr ""
-#: _cli/__init__.py:210
-msgid "Increase verbosity (can be repeated)"
+#: cmd/quickstart.py:386
+msgid "Indicate which of the following Sphinx extensions should be enabled:"
msgstr ""
-#: _cli/__init__.py:218
-msgid "Only print errors and warnings."
+#: cmd/quickstart.py:397
+msgid ""
+"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
+"been deselected."
msgstr ""
-#: _cli/__init__.py:225
-msgid "No output at all"
+#: cmd/quickstart.py:407
+msgid ""
+"A Makefile and a Windows command file can be generated for you so that you\n"
+"only have to run e.g. `make html' instead of invoking sphinx-build\n"
+"directly."
msgstr ""
-#: _cli/__init__.py:231
-msgid ""
-msgstr ""
+#: cmd/quickstart.py:412
+msgid "Create Makefile? (y/n)"
+msgstr "إنشاء Makefile ؟ (نعم / لا)"
-#: _cli/__init__.py:263
-msgid "See 'sphinx --help'.\n"
-msgstr ""
+#: cmd/quickstart.py:416
+msgid "Create Windows command file? (y/n)"
+msgstr "إنشاء ملف أوامر للويندوز؟ (نعم/لا)"
-#: environment/__init__.py:86
-msgid "new config"
+#: cmd/quickstart.py:468 ext/apidoc/_generate.py:76
+#, python-format
+msgid "Creating file %s."
msgstr ""
-#: environment/__init__.py:87
-msgid "config changed"
+#: cmd/quickstart.py:473 ext/apidoc/_generate.py:73
+#, python-format
+msgid "File %s already exists, skipping."
msgstr ""
-#: environment/__init__.py:88
-msgid "extensions changed"
+#: cmd/quickstart.py:516
+msgid "Finished: An initial directory structure has been created."
msgstr ""
-#: environment/__init__.py:253
-msgid "build environment version not current"
+#: cmd/quickstart.py:520
+#, python-format
+msgid ""
+"You should now populate your master file %s and create other documentation\n"
+"source files. "
msgstr ""
-#: environment/__init__.py:255
-msgid "source directory has changed"
+#: cmd/quickstart.py:527
+msgid ""
+"Use the Makefile to build the docs, like so:\n"
+" make builder"
msgstr ""
-#: environment/__init__.py:325
+#: cmd/quickstart.py:531
#, python-format
-msgid "The configuration has changed (1 option: %r)"
+msgid ""
+"Use the sphinx-build command to build the docs, like so:\n"
+" sphinx-build -b builder %s %s"
msgstr ""
-#: environment/__init__.py:330
-#, python-format
-msgid "The configuration has changed (%d options: %s)"
+#: cmd/quickstart.py:538
+msgid ""
+"where \"builder\" is one of the supported builders, e.g. html, latex or "
+"linkcheck."
msgstr ""
-#: environment/__init__.py:336
-#, python-format
-msgid "The configuration has changed (%d options: %s, ...)"
+#: cmd/quickstart.py:573
+msgid ""
+"\n"
+"Generate required files for a Sphinx project.\n"
+"\n"
+"sphinx-quickstart is an interactive tool that asks some questions about your\n"
+"project and then generates a complete documentation directory and sample\n"
+"Makefile to be used with sphinx-build.\n"
msgstr ""
-#: environment/__init__.py:379
-msgid ""
-"This environment is incompatible with the selected builder, please choose "
-"another doctree directory."
+#: cmd/quickstart.py:592
+msgid "quiet mode"
msgstr ""
-#: environment/__init__.py:493
-#, python-format
-msgid "Failed to scan documents in %s: %r"
+#: cmd/quickstart.py:602
+msgid "project root"
msgstr ""
-#: environment/__init__.py:658 ext/intersphinx/_resolve.py:234
-#, python-format
-msgid "Domain %r is not registered"
+#: cmd/quickstart.py:605
+msgid "Structure options"
msgstr ""
-#: environment/__init__.py:813
-msgid "document isn't included in any toctree"
+#: cmd/quickstart.py:611
+msgid "if specified, separate source and build dirs"
msgstr ""
-#: environment/__init__.py:859
-msgid "self referenced toctree found. Ignored."
+#: cmd/quickstart.py:617
+msgid "if specified, create build dir under source dir"
msgstr ""
-#: environment/__init__.py:889
-#, python-format
-msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
+#: cmd/quickstart.py:623
+msgid "replacement for dot in _templates etc."
msgstr ""
-#: util/i18n.py:100
-#, python-format
-msgid "reading error: %s, %s"
+#: cmd/quickstart.py:626
+msgid "Project basic options"
msgstr ""
-#: util/i18n.py:113
-#, python-format
-msgid "writing error: %s, %s"
+#: cmd/quickstart.py:628
+msgid "project name"
+msgstr "اسم المشروع"
+
+#: cmd/quickstart.py:631
+msgid "author names"
+msgstr "أسماء المؤلفين"
+
+#: cmd/quickstart.py:638
+msgid "version of project"
msgstr ""
-#: util/i18n.py:146
-#, python-format
-msgid "locale_dir %s does not exist"
+#: cmd/quickstart.py:645
+msgid "release of project"
msgstr ""
-#: util/i18n.py:236
-#, python-format
-msgid "Invalid Babel locale: %r."
+#: cmd/quickstart.py:652
+msgid "document language"
msgstr ""
-#: util/i18n.py:245
-#, python-format
-msgid ""
-"Invalid date format. Quote the string by single quote if you want to output "
-"it directly: %s"
+#: cmd/quickstart.py:655
+msgid "source file suffix"
msgstr ""
-#: util/docfields.py:103
-#, python-format
-msgid ""
-"Problem in %s domain: field is supposed to use role '%s', but that role is "
-"not in the domain."
+#: cmd/quickstart.py:658
+msgid "master document name"
msgstr ""
-#: util/nodes.py:423
-#, python-format
-msgid ""
-"%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead."
+#: cmd/quickstart.py:661
+msgid "use epub"
msgstr ""
-#: util/nodes.py:490
-#, python-format
-msgid "toctree contains ref to nonexisting file %r"
+#: cmd/quickstart.py:664
+msgid "Extension options"
msgstr ""
-#: util/nodes.py:706
+#: cmd/quickstart.py:671
#, python-format
-msgid "exception while evaluating only directive expression: %s"
+msgid "enable %s extension"
msgstr ""
-#: util/display.py:82
-msgid "skipped"
+#: cmd/quickstart.py:678
+msgid "enable arbitrary extensions"
msgstr ""
-#: util/display.py:87
-msgid "failed"
-msgstr "فشل"
+#: cmd/quickstart.py:681
+msgid "Makefile and Batchfile creation"
+msgstr ""
-#: util/osutil.py:131
-#, python-format
-msgid ""
-"Aborted attempted copy from %s to %s (the destination path has existing "
-"data)."
+#: cmd/quickstart.py:687
+msgid "create makefile"
+msgstr "إنشاء Makefile"
+
+#: cmd/quickstart.py:693
+msgid "do not create makefile"
msgstr ""
-#: util/docutils.py:309
-#, python-format
-msgid "unknown directive name: %s"
+#: cmd/quickstart.py:700
+msgid "create batchfile"
+msgstr "إنشاء Batchfile ؟"
+
+#: cmd/quickstart.py:706
+msgid "do not create batchfile"
msgstr ""
-#: util/docutils.py:345
-#, python-format
-msgid "unknown role name: %s"
+#: cmd/quickstart.py:715
+msgid "use make-mode for Makefile/make.bat"
msgstr ""
-#: util/docutils.py:789
-#, python-format
-msgid "unknown node type: %r"
+#: cmd/quickstart.py:718 ext/apidoc/_cli.py:243
+msgid "Project templating"
msgstr ""
-#: util/fileutil.py:76
-#, python-format
+#: cmd/quickstart.py:724 ext/apidoc/_cli.py:249
+msgid "template directory for template files"
+msgstr ""
+
+#: cmd/quickstart.py:731
+msgid "define a template variable"
+msgstr "عرف متغير للقالب"
+
+#: cmd/quickstart.py:767
+msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
+msgstr ""
+
+#: cmd/quickstart.py:786
msgid ""
-"Aborted attempted copy from rendered template %s to %s (the destination path"
-" has existing data)."
+"Error: specified path is not a directory, or sphinx files already exist."
msgstr ""
-#: util/fileutil.py:89
-#, python-format
-msgid "Writing evaluated template result to %s"
+#: cmd/quickstart.py:793
+msgid ""
+"sphinx-quickstart only generate into a empty directory. Please specify a new"
+" root path."
msgstr ""
-#: util/rst.py:73
+#: cmd/quickstart.py:810
#, python-format
-msgid "default role %s not found"
+msgid "Invalid template variable: %s"
msgstr ""
-#: util/inventory.py:147
+#: directives/other.py:119
#, python-format
-msgid "inventory <%s> contains duplicate definitions of %s"
+msgid "toctree glob pattern %r didn't match any documents"
msgstr ""
-#: util/inventory.py:166
+#: directives/other.py:153 environment/adapters/toctree.py:372
#, python-format
-msgid "inventory <%s> contains multiple definitions for %s"
+msgid "toctree contains reference to excluded document %r"
msgstr ""
-#: writers/latex.py:1097 writers/manpage.py:259 writers/texinfo.py:663
-msgid "Footnotes"
+#: directives/other.py:156
+#, python-format
+msgid "toctree contains reference to nonexisting document %r"
msgstr ""
-#: writers/manpage.py:289 writers/text.py:945
+#: directives/other.py:169
#, python-format
-msgid "[image: %s]"
+msgid "duplicated entry found in toctree: %s"
msgstr ""
-#: writers/manpage.py:290 writers/text.py:946
-msgid "[image]"
+#: directives/other.py:203
+msgid "Section author: "
+msgstr "مؤلف القسم:"
+
+#: directives/other.py:205
+msgid "Module author: "
msgstr ""
-#: builders/latex/__init__.py:206 domains/std/__init__.py:771
-#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:106
-#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
-#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
-#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
-#: themes/basic/genindex.html:59 themes/basic/layout.html:127
-#: writers/texinfo.py:514
-msgid "Index"
+#: directives/other.py:207
+msgid "Code author: "
+msgstr "كاتب الكود:"
+
+#: directives/other.py:209
+msgid "Author: "
+msgstr "المؤلف"
+
+#: directives/other.py:269
+msgid ".. acks content is not a list"
+msgstr ""
+
+#: directives/other.py:292
+msgid ".. hlist content is not a list"
msgstr ""
-#: writers/latex.py:743 writers/texinfo.py:646
+#: directives/patches.py:70
msgid ""
-"encountered title node not in section, topic, table, admonition or sidebar"
+"\":file:\" option for csv-table directive now recognizes an absolute path as"
+" a relative path from source directory. Please update your document."
msgstr ""
-#: writers/texinfo.py:1217
-msgid "caption not inside a figure."
+#: directives/code.py:66
+msgid "non-whitespace stripped by dedent"
msgstr ""
-#: writers/texinfo.py:1303
+#: directives/code.py:87
#, python-format
-msgid "unimplemented node type: %r"
+msgid "Invalid caption: %s"
msgstr ""
-#: writers/latex.py:361
+#: directives/code.py:131 directives/code.py:297 directives/code.py:483
#, python-format
-msgid "unknown %r toplevel_sectioning for class %r"
+msgid "line number spec is out of range(1-%d): %r"
msgstr ""
-#: builders/latex/__init__.py:224 writers/latex.py:411
+#: directives/code.py:216
#, python-format
-msgid "no Babel option known for language %r"
+msgid "Cannot use both \"%s\" and \"%s\" options"
msgstr ""
-#: writers/latex.py:429
-msgid "too large :maxdepth:, ignored."
+#: directives/code.py:231
+#, python-format
+msgid "Include file '%s' not found or reading it failed"
msgstr ""
-#: writers/latex.py:591
+#: directives/code.py:235
#, python-format
-msgid "template %s not found; loading from legacy %s instead"
+msgid ""
+"Encoding %r used for reading included file '%s' seems to be wrong, try "
+"giving an :encoding: option"
msgstr ""
-#: writers/latex.py:707
-msgid "document title is not a single Text node"
+#: directives/code.py:276
+#, python-format
+msgid "Object named %r not found in include file %r"
msgstr ""
-#: writers/html5.py:572 writers/latex.py:1106
+#: directives/code.py:309
+msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
+msgstr ""
+
+#: directives/code.py:314
#, python-format
-msgid "unsupported rubric heading level: %s"
+msgid "Line spec %r: no lines pulled from include file %r"
+msgstr ""
+
+#: builders/html/__init__.py:475 builders/latex/__init__.py:196
+#: transforms/__init__.py:134 writers/manpage.py:97 writers/texinfo.py:220
+#, python-format
+msgid "%b %d, %Y"
+msgstr ""
+
+#: builders/latex/__init__.py:203 domains/std/__init__.py:771
+#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:107
+#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
+#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
+#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
+#: themes/basic/genindex.html:59 themes/basic/layout.html:127
+#: writers/texinfo.py:514
+msgid "Index"
msgstr ""
-#: writers/latex.py:1183
+#: writers/latex.py:768 writers/texinfo.py:646
msgid ""
-"both tabularcolumns and :widths: option are given. :widths: is ignored."
+"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
-#: writers/latex.py:1580
-#, python-format
-msgid "dimension unit %s is invalid. Ignored."
+#: writers/latex.py:1118 writers/manpage.py:258 writers/texinfo.py:663
+msgid "Footnotes"
msgstr ""
-#: writers/latex.py:1939
+#: writers/texinfo.py:1217
+msgid "caption not inside a figure."
+msgstr ""
+
+#: writers/texinfo.py:1303
#, python-format
-msgid "unknown index entry type %s found"
+msgid "unimplemented node type: %r"
msgstr ""
-#: domains/math.py:128 writers/latex.py:2495
+#: writers/manpage.py:288 writers/text.py:971
#, python-format
-msgid "Invalid math_eqref_format: %r"
+msgid "[image: %s]"
+msgstr ""
+
+#: writers/manpage.py:289 writers/text.py:972
+msgid "[image]"
msgstr ""
#: writers/html5.py:96 writers/html5.py:105
@@ -1833,6 +2344,11 @@ msgstr ""
msgid "Link to this table"
msgstr ""
+#: writers/html5.py:572 writers/latex.py:1127
+#, python-format
+msgid "unsupported rubric heading level: %s"
+msgstr ""
+
#: writers/html5.py:636
msgid "Link to this code"
msgstr ""
@@ -1849,795 +2365,479 @@ msgstr ""
msgid "Could not obtain image size. :scale: option is ignored."
msgstr ""
-#: domains/__init__.py:322
+#: writers/latex.py:386
#, python-format
-msgid "%s %s"
+msgid "unknown %r toplevel_sectioning for class %r"
msgstr ""
-#: domains/math.py:73
+#: builders/latex/__init__.py:221 writers/latex.py:436
#, python-format
-msgid "duplicate label of equation %s, other instance in %s"
+msgid "no Babel option known for language %r"
msgstr ""
-#: domains/javascript.py:182
-#, python-format
-msgid "%s() (built-in function)"
+#: writers/latex.py:454
+msgid "too large :maxdepth:, ignored."
msgstr ""
-#: domains/javascript.py:183 domains/python/__init__.py:287
+#: writers/latex.py:616
#, python-format
-msgid "%s() (%s method)"
+msgid "template %s not found; loading from legacy %s instead"
msgstr ""
-#: domains/javascript.py:185
-#, python-format
-msgid "%s() (class)"
+#: writers/latex.py:732
+msgid "document title is not a single Text node"
msgstr ""
-#: domains/javascript.py:187
-#, python-format
-msgid "%s (global variable or constant)"
+#: writers/latex.py:1198
+msgid ""
+"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
-#: domains/javascript.py:189 domains/python/__init__.py:378
+#: writers/latex.py:1228
#, python-format
-msgid "%s (%s attribute)"
+msgid ""
+"colspec %s was given which appears to use tabulary syntax. But this table "
+"can not be rendered as a tabulary; the given colspec will be ignored."
msgstr ""
-#: domains/javascript.py:273
-msgid "Arguments"
+#: writers/latex.py:1615
+#, python-format
+msgid "dimension unit %s is invalid. Ignored."
msgstr ""
-#: domains/cpp/__init__.py:489 domains/javascript.py:280
-msgid "Throws"
-msgstr ""
-
-#: domains/c/__init__.py:339 domains/cpp/__init__.py:502
-#: domains/javascript.py:287 domains/python/_object.py:221
-msgid "Returns"
-msgstr ""
-
-#: domains/c/__init__.py:345 domains/javascript.py:293
-#: domains/python/_object.py:227
-msgid "Return type"
-msgstr ""
-
-#: domains/javascript.py:370
+#: writers/latex.py:1950
#, python-format
-msgid "%s (module)"
+msgid "unknown index entry type %s found"
msgstr ""
-#: domains/c/__init__.py:751 domains/cpp/__init__.py:941
-#: domains/javascript.py:415 domains/python/__init__.py:740
-msgid "function"
+#: _cli/__init__.py:73
+msgid "Usage:"
msgstr ""
-#: domains/javascript.py:416 domains/python/__init__.py:744
-msgid "method"
+#: _cli/__init__.py:75
+#, python-brace-format
+msgid "{0} [OPTIONS] []"
msgstr ""
-#: domains/cpp/__init__.py:939 domains/javascript.py:417
-#: domains/python/__init__.py:742
-msgid "class"
-msgstr "كائن"
-
-#: domains/javascript.py:418 domains/python/__init__.py:741
-msgid "data"
+#: _cli/__init__.py:78
+msgid " The Sphinx documentation generator."
msgstr ""
-#: domains/javascript.py:419 domains/python/__init__.py:747
-msgid "attribute"
+#: _cli/__init__.py:87
+msgid "Commands:"
msgstr ""
-#: domains/javascript.py:420 domains/python/__init__.py:750
-msgid "module"
+#: _cli/__init__.py:98
+msgid "Options"
msgstr ""
-#: domains/javascript.py:454
-#, python-format
-msgid "duplicate %s description of %s, other %s in %s"
+#: _cli/__init__.py:113 _cli/__init__.py:181
+msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
msgstr ""
-#: domains/changeset.py:26
-#, python-format
-msgid "Added in version %s"
+#: _cli/__init__.py:171
+#, python-brace-format
+msgid ""
+"{0}: error: {1}\n"
+"Run '{0} --help' for information"
msgstr ""
-#: domains/changeset.py:27
-#, python-format
-msgid "Changed in version %s"
+#: _cli/__init__.py:179
+msgid " Manage documentation with Sphinx."
msgstr ""
-#: domains/changeset.py:28
-#, python-format
-msgid "Deprecated since version %s"
+#: _cli/__init__.py:191
+msgid "Show the version and exit."
msgstr ""
-#: domains/changeset.py:29
-#, python-format
-msgid "Removed in version %s"
+#: _cli/__init__.py:199
+msgid "Show this message and exit."
msgstr ""
-#: domains/rst.py:131 domains/rst.py:190
-#, python-format
-msgid "%s (directive)"
+#: _cli/__init__.py:203
+msgid "Logging"
msgstr ""
-#: domains/rst.py:191 domains/rst.py:202
-#, python-format
-msgid ":%s: (directive option)"
+#: _cli/__init__.py:210
+msgid "Increase verbosity (can be repeated)"
msgstr ""
-#: domains/rst.py:224
-#, python-format
-msgid "%s (role)"
+#: _cli/__init__.py:218
+msgid "Only print errors and warnings."
msgstr ""
-#: domains/rst.py:234
-msgid "directive"
+#: _cli/__init__.py:225
+msgid "No output at all"
msgstr ""
-#: domains/rst.py:235
-msgid "directive-option"
+#: _cli/__init__.py:231
+msgid ""
msgstr ""
-#: domains/rst.py:236
-msgid "role"
-msgstr "متغير بيئة العمل"
-
-#: domains/rst.py:262
-#, python-format
-msgid "duplicate description of %s %s, other instance in %s"
+#: _cli/__init__.py:263
+msgid "See 'sphinx --help'.\n"
msgstr ""
-#: domains/citation.py:75
-#, python-format
-msgid "duplicate citation %s, other instance in %s"
+#: transforms/i18n.py:230 transforms/i18n.py:305
+#, python-brace-format
+msgid ""
+"inconsistent footnote references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: domains/citation.py:92
-#, python-format
-msgid "Citation [%s] is not referenced."
+#: transforms/i18n.py:275
+#, python-brace-format
+msgid ""
+"inconsistent references in translated message. original: {0}, translated: "
+"{1}"
msgstr ""
-#: locale/__init__.py:228
-msgid "Attention"
-msgstr "تنبيه"
-
-#: locale/__init__.py:229
-msgid "Caution"
-msgstr "احتياط"
-
-#: locale/__init__.py:230
-msgid "Danger"
-msgstr "خطر"
-
-#: locale/__init__.py:231
-msgid "Error"
-msgstr "خطأ"
-
-#: locale/__init__.py:232
-msgid "Hint"
-msgstr "تلميح"
-
-#: locale/__init__.py:233
-msgid "Important"
-msgstr "مهم"
-
-#: locale/__init__.py:234
-msgid "Note"
-msgstr "ملاحظة"
-
-#: locale/__init__.py:235
-msgid "See also"
-msgstr "شاهد أيضا"
-
-#: locale/__init__.py:236
-msgid "Tip"
-msgstr "نصيحة"
-
-#: locale/__init__.py:237
-msgid "Warning"
-msgstr "تحذير"
-
-#: cmd/quickstart.py:52
-msgid "automatically insert docstrings from modules"
+#: transforms/i18n.py:325
+#, python-brace-format
+msgid ""
+"inconsistent citation references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:53
-msgid "automatically test code snippets in doctest blocks"
+#: transforms/i18n.py:347
+#, python-brace-format
+msgid ""
+"inconsistent term references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:54
-msgid "link between Sphinx documentation of different projects"
+#: transforms/__init__.py:144
+msgid "could not calculate translation progress!"
msgstr ""
-#: cmd/quickstart.py:55
-msgid "write \"todo\" entries that can be shown or hidden on build"
+#: transforms/__init__.py:149
+msgid "no translated elements!"
msgstr ""
-#: cmd/quickstart.py:56
-msgid "checks for documentation coverage"
+#: transforms/__init__.py:258
+#, python-format
+msgid ""
+"4 column based index found. It might be a bug of extensions you use: %r"
msgstr ""
-#: cmd/quickstart.py:57
-msgid "include math, rendered as PNG or SVG images"
+#: transforms/__init__.py:299
+#, python-format
+msgid "Footnote [%s] is not referenced."
msgstr ""
-#: cmd/quickstart.py:58
-msgid "include math, rendered in the browser by MathJax"
+#: transforms/__init__.py:308
+msgid "Footnote [*] is not referenced."
msgstr ""
-#: cmd/quickstart.py:59
-msgid "conditional inclusion of content based on config values"
+#: transforms/__init__.py:319
+msgid "Footnote [#] is not referenced."
msgstr ""
-#: cmd/quickstart.py:60
-msgid "include links to the source code of documented Python objects"
+#: util/inventory.py:147
+#, python-format
+msgid "inventory <%s> contains duplicate definitions of %s"
msgstr ""
-#: cmd/quickstart.py:61
-msgid "create .nojekyll file to publish the document on GitHub pages"
+#: util/inventory.py:166
+#, python-format
+msgid "inventory <%s> contains multiple definitions for %s"
msgstr ""
-#: cmd/quickstart.py:110
-msgid "Please enter a valid path name."
+#: util/i18n.py:100
+#, python-format
+msgid "reading error: %s, %s"
msgstr ""
-#: cmd/quickstart.py:126
-msgid "Please enter some text."
-msgstr "الرجاء ادخال بعض النصوص"
-
-#: cmd/quickstart.py:133
+#: util/i18n.py:113
#, python-format
-msgid "Please enter one of %s."
+msgid "writing error: %s, %s"
msgstr ""
-#: cmd/quickstart.py:141
-msgid "Please enter either 'y' or 'n'."
-msgstr "أدخل إما 'نعم' أو'لا'"
-
-#: cmd/quickstart.py:147
-msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
-msgstr "أدخل امتداد الملف, مثلا '.rst' أو '.txt'"
+#: util/i18n.py:146
+#, python-format
+msgid "locale_dir %s does not exist"
+msgstr ""
-#: cmd/quickstart.py:229
+#: util/i18n.py:244
#, python-format
-msgid "Welcome to the Sphinx %s quickstart utility."
+msgid "Invalid Babel locale: %r."
msgstr ""
-#: cmd/quickstart.py:234
+#: util/i18n.py:253
+#, python-format
msgid ""
-"Please enter values for the following settings (just press Enter to\n"
-"accept a default value, if one is given in brackets)."
+"Invalid date format. Quote the string by single quote if you want to output "
+"it directly: %s"
msgstr ""
-#: cmd/quickstart.py:241
+#: util/osutil.py:131
#, python-format
-msgid "Selected root path: %s"
+msgid ""
+"Aborted attempted copy from %s to %s (the destination path has existing "
+"data)."
msgstr ""
-#: cmd/quickstart.py:244
-msgid "Enter the root path for documentation."
+#: util/display.py:82
+msgid "skipped"
msgstr ""
-#: cmd/quickstart.py:245
-msgid "Root path for the documentation"
-msgstr ""
+#: util/display.py:87
+msgid "failed"
+msgstr "فشل"
-#: cmd/quickstart.py:254
-msgid "Error: an existing conf.py has been found in the selected root path."
+#: util/docutils.py:325
+#, python-format
+msgid "unknown directive name: %s"
msgstr ""
-#: cmd/quickstart.py:259
-msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
+#: util/docutils.py:361
+#, python-format
+msgid "unknown role name: %s"
msgstr ""
-#: cmd/quickstart.py:262
-msgid "Please enter a new root path (or just Enter to exit)"
+#: util/docutils.py:805
+#, python-format
+msgid "unknown node type: %r"
msgstr ""
-#: cmd/quickstart.py:273
+#: util/fileutil.py:76
+#, python-format
msgid ""
-"You have two options for placing the build directory for Sphinx output.\n"
-"Either, you use a directory \"_build\" within the root path, or you separate\n"
-"\"source\" and \"build\" directories within the root path."
+"Aborted attempted copy from rendered template %s to %s (the destination path"
+" has existing data)."
msgstr ""
-#: cmd/quickstart.py:279
-msgid "Separate source and build directories (y/n)"
+#: util/fileutil.py:89
+#, python-format
+msgid "Writing evaluated template result to %s"
msgstr ""
-#: cmd/quickstart.py:286
+#: util/docfields.py:103
+#, python-format
msgid ""
-"Inside the root directory, two more directories will be created; \"_templates\"\n"
-"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
-"files. You can enter another prefix (such as \".\") to replace the underscore."
+"Problem in %s domain: field is supposed to use role '%s', but that role is "
+"not in the domain."
msgstr ""
-#: cmd/quickstart.py:291
-msgid "Name prefix for templates and static dir"
+#: util/rst.py:73
+#, python-format
+msgid "default role %s not found"
msgstr ""
-#: cmd/quickstart.py:297
+#: util/nodes.py:462
+#, python-format
msgid ""
-"The project name will occur in several places in the built documentation."
+"%r is no longer supported for index entries (from entry %r). Use 'pair: %s' "
+"instead."
msgstr ""
-#: cmd/quickstart.py:300
-msgid "Project name"
-msgstr "اسم المشروع"
-
-#: cmd/quickstart.py:302
-msgid "Author name(s)"
-msgstr "اسم المؤلف(ون)"
-
-#: cmd/quickstart.py:308
-msgid ""
-"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
-"software. Each version can have multiple releases. For example, for\n"
-"Python the version is something like 2.5 or 3.0, while the release is\n"
-"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
-"just set both to the same value."
-msgstr ""
-
-#: cmd/quickstart.py:315
-msgid "Project version"
-msgstr "نسخة المشروع"
-
-#: cmd/quickstart.py:317
-msgid "Project release"
-msgstr "إصدار المشروع"
-
-#: cmd/quickstart.py:323
-msgid ""
-"If the documents are to be written in a language other than English,\n"
-"you can select a language here by its language code. Sphinx will then\n"
-"translate text that it generates into that language.\n"
-"\n"
-"For a list of supported codes, see\n"
-"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
-msgstr ""
-
-#: cmd/quickstart.py:331
-msgid "Project language"
-msgstr "لغة المشروع"
-
-#: cmd/quickstart.py:339
-msgid ""
-"The file name suffix for source files. Commonly, this is either \".txt\"\n"
-"or \".rst\". Only files with this suffix are considered documents."
-msgstr ""
-
-#: cmd/quickstart.py:343
-msgid "Source file suffix"
-msgstr "امتداد ملف المصدر"
-
-#: cmd/quickstart.py:349
-msgid ""
-"One document is special in that it is considered the top node of the\n"
-"\"contents tree\", that is, it is the root of the hierarchical structure\n"
-"of the documents. Normally, this is \"index\", but if your \"index\"\n"
-"document is a custom template, you can also set this to another filename."
-msgstr ""
-
-#: cmd/quickstart.py:356
-msgid "Name of your master document (without suffix)"
-msgstr ""
-
-#: cmd/quickstart.py:367
+#: util/nodes.py:523
#, python-format
-msgid ""
-"Error: the master file %s has already been found in the selected root path."
+msgid "toctree contains ref to nonexisting file %r"
msgstr ""
-#: cmd/quickstart.py:373
-msgid "sphinx-quickstart will not overwrite the existing file."
+#: util/nodes.py:739
+#, python-format
+msgid "exception while evaluating only directive expression: %s"
msgstr ""
-#: cmd/quickstart.py:377
-msgid ""
-"Please enter a new file name, or rename the existing file and press Enter"
+#: templates/latex/longtable.tex.jinja:52
+#: templates/latex/sphinxmessages.sty.jinja:8
+msgid "continued from previous page"
msgstr ""
-#: cmd/quickstart.py:385
-msgid "Indicate which of the following Sphinx extensions should be enabled:"
-msgstr ""
+#: templates/latex/longtable.tex.jinja:63
+#: templates/latex/sphinxmessages.sty.jinja:9
+msgid "continues on next page"
+msgstr "استمرار في الصفحة التالية"
-#: cmd/quickstart.py:396
-msgid ""
-"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
-"been deselected."
+#: templates/latex/sphinxmessages.sty.jinja:10
+msgid "Non-alphabetical"
msgstr ""
-#: cmd/quickstart.py:406
-msgid ""
-"A Makefile and a Windows command file can be generated for you so that you\n"
-"only have to run e.g. `make html' instead of invoking sphinx-build\n"
-"directly."
+#: environment/adapters/indexentries.py:267
+#: templates/latex/sphinxmessages.sty.jinja:11
+msgid "Symbols"
msgstr ""
-#: cmd/quickstart.py:411
-msgid "Create Makefile? (y/n)"
-msgstr "إنشاء Makefile ؟ (نعم / لا)"
+#: templates/latex/sphinxmessages.sty.jinja:12
+msgid "Numbers"
+msgstr "أرقام"
-#: cmd/quickstart.py:415
-msgid "Create Windows command file? (y/n)"
-msgstr "إنشاء ملف أوامر للويندوز؟ (نعم/لا)"
+#: templates/latex/sphinxmessages.sty.jinja:13
+msgid "page"
+msgstr "صفحة"
-#: cmd/quickstart.py:467 ext/apidoc/_generate.py:76
-#, python-format
-msgid "Creating file %s."
+#: builders/latex/__init__.py:206 templates/latex/latex.tex.jinja:92
+msgid "Release"
msgstr ""
-#: cmd/quickstart.py:472 ext/apidoc/_generate.py:73
+#: transforms/post_transforms/images.py:79
#, python-format
-msgid "File %s already exists, skipping."
-msgstr ""
-
-#: cmd/quickstart.py:515
-msgid "Finished: An initial directory structure has been created."
+msgid "Could not fetch remote image: %s [%s]"
msgstr ""
-#: cmd/quickstart.py:519
+#: transforms/post_transforms/images.py:96
#, python-format
-msgid ""
-"You should now populate your master file %s and create other documentation\n"
-"source files. "
-msgstr ""
-
-#: cmd/quickstart.py:526
-msgid ""
-"Use the Makefile to build the docs, like so:\n"
-" make builder"
+msgid "Could not fetch remote image: %s [%d]"
msgstr ""
-#: cmd/quickstart.py:530
+#: transforms/post_transforms/images.py:143
#, python-format
-msgid ""
-"Use the sphinx-build command to build the docs, like so:\n"
-" sphinx-build -b builder %s %s"
-msgstr ""
-
-#: cmd/quickstart.py:537
-msgid ""
-"where \"builder\" is one of the supported builders, e.g. html, latex or "
-"linkcheck."
+msgid "Unknown image format: %s..."
msgstr ""
-#: cmd/quickstart.py:572
+#: transforms/post_transforms/__init__.py:88
msgid ""
-"\n"
-"Generate required files for a Sphinx project.\n"
-"\n"
-"sphinx-quickstart is an interactive tool that asks some questions about your\n"
-"project and then generates a complete documentation directory and sample\n"
-"Makefile to be used with sphinx-build.\n"
-msgstr ""
-
-#: cmd/build.py:73 cmd/quickstart.py:581 ext/apidoc/_cli.py:27
-#: ext/autosummary/generate.py:835
-msgid "For more information, visit ."
-msgstr ""
-
-#: cmd/quickstart.py:591
-msgid "quiet mode"
-msgstr ""
-
-#: cmd/quickstart.py:601
-msgid "project root"
-msgstr ""
-
-#: cmd/quickstart.py:604
-msgid "Structure options"
-msgstr ""
-
-#: cmd/quickstart.py:610
-msgid "if specified, separate source and build dirs"
-msgstr ""
-
-#: cmd/quickstart.py:616
-msgid "if specified, create build dir under source dir"
-msgstr ""
-
-#: cmd/quickstart.py:622
-msgid "replacement for dot in _templates etc."
-msgstr ""
-
-#: cmd/quickstart.py:625
-msgid "Project basic options"
-msgstr ""
-
-#: cmd/quickstart.py:627
-msgid "project name"
-msgstr "اسم المشروع"
-
-#: cmd/quickstart.py:630
-msgid "author names"
-msgstr "أسماء المؤلفين"
-
-#: cmd/quickstart.py:637
-msgid "version of project"
-msgstr ""
-
-#: cmd/quickstart.py:644
-msgid "release of project"
-msgstr ""
-
-#: cmd/quickstart.py:651
-msgid "document language"
-msgstr ""
-
-#: cmd/quickstart.py:654
-msgid "source file suffix"
-msgstr ""
-
-#: cmd/quickstart.py:657
-msgid "master document name"
-msgstr ""
-
-#: cmd/quickstart.py:660
-msgid "use epub"
-msgstr ""
-
-#: cmd/quickstart.py:663
-msgid "Extension options"
+"Could not determine the fallback text for the cross-reference. Might be a "
+"bug."
msgstr ""
-#: cmd/quickstart.py:670
+#: transforms/post_transforms/__init__.py:233
#, python-format
-msgid "enable %s extension"
-msgstr ""
-
-#: cmd/quickstart.py:677
-msgid "enable arbitrary extensions"
-msgstr ""
-
-#: cmd/quickstart.py:680
-msgid "Makefile and Batchfile creation"
-msgstr ""
-
-#: cmd/quickstart.py:686
-msgid "create makefile"
-msgstr "إنشاء Makefile"
-
-#: cmd/quickstart.py:692
-msgid "do not create makefile"
-msgstr ""
-
-#: cmd/quickstart.py:699
-msgid "create batchfile"
-msgstr "إنشاء Batchfile ؟"
-
-#: cmd/quickstart.py:705
-msgid "do not create batchfile"
-msgstr ""
-
-#: cmd/quickstart.py:714
-msgid "use make-mode for Makefile/make.bat"
-msgstr ""
-
-#: cmd/quickstart.py:717 ext/apidoc/_cli.py:243
-msgid "Project templating"
-msgstr ""
-
-#: cmd/quickstart.py:723 ext/apidoc/_cli.py:249
-msgid "template directory for template files"
-msgstr ""
-
-#: cmd/quickstart.py:730
-msgid "define a template variable"
-msgstr "عرف متغير للقالب"
-
-#: cmd/quickstart.py:766
-msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
-msgstr ""
-
-#: cmd/quickstart.py:785
-msgid ""
-"Error: specified path is not a directory, or sphinx files already exist."
+msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr ""
-#: cmd/quickstart.py:792
-msgid ""
-"sphinx-quickstart only generate into a empty directory. Please specify a new"
-" root path."
+#: transforms/post_transforms/__init__.py:291
+#, python-format
+msgid "%s:%s reference target not found: %s"
msgstr ""
-#: cmd/quickstart.py:809
+#: transforms/post_transforms/__init__.py:297
#, python-format
-msgid "Invalid template variable: %s"
+msgid "%r reference target not found: %s"
msgstr ""
-#: cmd/build.py:64
-msgid "job number should be a positive number"
+#: _cli/util/errors.py:190
+msgid "Interrupted!"
msgstr ""
-#: cmd/build.py:74
-msgid ""
-"\n"
-"Generate documentation from source files.\n"
-"\n"
-"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
-"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
-"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
-"including 'conf.py'\n"
-"\n"
-"sphinx-build can create documentation in different formats. A format is\n"
-"selected by specifying the builder name on the command line; it defaults to\n"
-"HTML. Builders can also perform other tasks related to documentation\n"
-"processing.\n"
-"\n"
-"By default, everything that is outdated is built. Output only for selected\n"
-"files can be built by specifying individual filenames.\n"
+#: _cli/util/errors.py:194
+msgid "reStructuredText markup error!"
msgstr ""
-#: cmd/build.py:100
-msgid "path to documentation source files"
+#: _cli/util/errors.py:200
+msgid "Encoding error!"
msgstr ""
-#: cmd/build.py:103
-msgid "path to output directory"
+#: _cli/util/errors.py:203
+msgid "Recursion error!"
msgstr ""
-#: cmd/build.py:109
+#: _cli/util/errors.py:207
msgid ""
-"(optional) a list of specific files to rebuild. Ignored if --write-all is "
-"specified"
+"This can happen with very large or deeply nested source files. You can "
+"carefully increase the default Python recursion limit of 1,000 in conf.py "
+"with e.g.:"
msgstr ""
-#: cmd/build.py:114
-msgid "general options"
+#: _cli/util/errors.py:227
+msgid "Starting debugger:"
msgstr ""
-#: cmd/build.py:121
-msgid "builder to use (default: 'html')"
+#: _cli/util/errors.py:235
+msgid "The full traceback has been saved in:"
msgstr ""
-#: cmd/build.py:131
+#: _cli/util/errors.py:240
msgid ""
-"run in parallel with N processes, when possible. 'auto' uses the number of "
-"CPU cores"
-msgstr ""
-
-#: cmd/build.py:140
-msgid "write all files (default: only write new and changed files)"
-msgstr ""
-
-#: cmd/build.py:147
-msgid "don't use a saved environment, always read all files"
-msgstr ""
-
-#: cmd/build.py:150
-msgid "path options"
+"To report this error to the developers, please open an issue at "
+". Thanks!"
msgstr ""
-#: cmd/build.py:157
+#: _cli/util/errors.py:246
msgid ""
-"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
-msgstr ""
-
-#: cmd/build.py:166
-msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
-msgstr ""
-
-#: cmd/build.py:175
-msgid "use no configuration file, only use settings from -D options"
-msgstr ""
-
-#: cmd/build.py:184
-msgid "override a setting in configuration file"
-msgstr ""
-
-#: cmd/build.py:193
-msgid "pass a value into HTML templates"
-msgstr ""
-
-#: cmd/build.py:202
-msgid "define tag: include \"only\" blocks with TAG"
-msgstr ""
-
-#: cmd/build.py:209
-msgid "nitpicky mode: warn about all missing references"
+"Please also report this if it was a user error, so that a better error "
+"message can be provided next time."
msgstr ""
-#: cmd/build.py:212
-msgid "console output options"
+#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
+msgid "Collapse sidebar"
msgstr ""
-#: cmd/build.py:219
-msgid "increase verbosity (can be repeated)"
+#: themes/basic/layout.html:18
+msgid "Navigation"
msgstr ""
-#: cmd/build.py:226 ext/apidoc/_cli.py:66
-msgid "no output on stdout, just warnings on stderr"
-msgstr ""
+#: themes/basic/layout.html:115
+#, python-format
+msgid "Search within %(docstitle)s"
+msgstr "البحث ضمن %(docstitle)s"
-#: cmd/build.py:233
-msgid "no output at all, not even warnings"
+#: themes/basic/layout.html:124
+msgid "About these documents"
msgstr ""
-#: cmd/build.py:241
-msgid "do emit colored output (default: auto-detect)"
-msgstr ""
+#: themes/agogo/layout.html:34 themes/basic/layout.html:130
+#: themes/basic/search.html:3 themes/basic/search.html:15
+msgid "Search"
+msgstr "بحث"
-#: cmd/build.py:249
-msgid "do not emit colored output (default: auto-detect)"
-msgstr ""
+#: themes/basic/layout.html:133 themes/basic/layout.html:177
+#: themes/basic/layout.html:179
+msgid "Copyright"
+msgstr "الحقوق"
-#: cmd/build.py:252
-msgid "warning control options"
+#: themes/basic/layout.html:183 themes/basic/layout.html:189
+#, python-format
+msgid "© %(copyright_prefix)s %(copyright)s."
msgstr ""
-#: cmd/build.py:258
-msgid "write warnings (and errors) to given file"
+#: themes/basic/layout.html:201
+#, python-format
+msgid "Last updated on %(last_updated)s."
msgstr ""
-#: cmd/build.py:265
-msgid "turn warnings into errors"
+#: themes/basic/layout.html:204
+#, python-format
+msgid ""
+"Created using Sphinx "
+"%(sphinx_version)s."
msgstr ""
-#: cmd/build.py:273
-msgid "show full traceback on exception"
-msgstr ""
+#: themes/basic/relations.html:4
+msgid "Previous topic"
+msgstr "الموضوع السابق"
-#: cmd/build.py:276
-msgid "run Pdb on exception"
-msgstr ""
+#: themes/basic/relations.html:6
+msgid "previous chapter"
+msgstr "القسم السابق"
-#: cmd/build.py:282
-msgid "raise an exception on warnings"
-msgstr ""
+#: themes/basic/relations.html:11
+msgid "Next topic"
+msgstr "الموضوع التالي"
-#: cmd/build.py:325
-msgid "cannot combine -a option and filenames"
-msgstr ""
+#: themes/basic/relations.html:13
+msgid "next chapter"
+msgstr "الفصل التالي"
-#: cmd/build.py:357
+#: themes/basic/genindex-single.html:26
#, python-format
-msgid "cannot open warning file '%s': %s"
-msgstr ""
-
-#: cmd/build.py:376
-msgid "-D option argument must be in the form name=value"
+msgid "Index – %(key)s"
msgstr ""
-#: cmd/build.py:383
-msgid "-A option argument must be in the form name=value"
+#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
+#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
+msgid "Full index on one page"
msgstr ""
-#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
-msgid "Collapse sidebar"
-msgstr ""
+#: themes/basic/sourcelink.html:4
+msgid "This Page"
+msgstr "هذه الصفحة"
-#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
-#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
-msgid "Table of Contents"
-msgstr "قائمة المحتويات"
+#: themes/agogo/layout.html:81 themes/basic/sourcelink.html:7
+msgid "Show Source"
+msgstr "إظهار المصدر"
-#: themes/agogo/layout.html:34 themes/basic/layout.html:130
-#: themes/basic/search.html:3 themes/basic/search.html:15
-msgid "Search"
-msgstr "بحث"
+#: themes/basic/searchbox.html:4
+msgid "Quick search"
+msgstr "البحث السريع"
#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
#: themes/basic/searchfield.html:12
msgid "Go"
msgstr ""
-#: themes/agogo/layout.html:81 themes/basic/sourcelink.html:7
-msgid "Show Source"
-msgstr "إظهار المصدر"
-
-#: themes/haiku/layout.html:16
-msgid "Contents"
-msgstr "المحتوى"
-
-#: themes/basic/opensearch.xml:4
-#, python-format
-msgid "Search %(docstitle)s"
-msgstr "البحث %(docstitle)s"
-
#: themes/basic/defindex.html:4
msgid "Overview"
msgstr ""
@@ -2662,110 +2862,51 @@ msgstr ""
msgid "Complete Table of Contents"
msgstr ""
-#: themes/basic/defindex.html:17
-msgid "lists all sections and subsections"
-msgstr ""
-
-#: domains/std/__init__.py:773 domains/std/__init__.py:786
-#: themes/basic/defindex.html:18
-msgid "Search Page"
-msgstr "صفحة البحث"
-
-#: themes/basic/defindex.html:19
-msgid "search this documentation"
-msgstr ""
-
-#: themes/basic/defindex.html:21
-msgid "Global Module Index"
-msgstr ""
-
-#: themes/basic/defindex.html:22
-msgid "quick access to all modules"
-msgstr ""
-
-#: builders/html/__init__.py:507 themes/basic/defindex.html:23
-msgid "General Index"
-msgstr "الفهرس العام"
-
-#: themes/basic/defindex.html:24
-msgid "all functions, classes, terms"
-msgstr ""
-
-#: themes/basic/sourcelink.html:4
-msgid "This Page"
-msgstr "هذه الصفحة"
-
-#: themes/basic/genindex-single.html:26
-#, python-format
-msgid "Index – %(key)s"
-msgstr ""
-
-#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
-#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
-msgid "Full index on one page"
-msgstr ""
-
-#: themes/basic/searchbox.html:4
-msgid "Quick search"
-msgstr "البحث السريع"
-
-#: themes/basic/genindex-split.html:8
-msgid "Index pages by letter"
-msgstr ""
-
-#: themes/basic/genindex-split.html:17
-msgid "can be huge"
-msgstr ""
-
-#: themes/basic/relations.html:4
-msgid "Previous topic"
-msgstr "الموضوع السابق"
-
-#: themes/basic/relations.html:6
-msgid "previous chapter"
-msgstr "القسم السابق"
-
-#: themes/basic/relations.html:11
-msgid "Next topic"
-msgstr "الموضوع التالي"
+#: themes/basic/defindex.html:17
+msgid "lists all sections and subsections"
+msgstr ""
-#: themes/basic/relations.html:13
-msgid "next chapter"
-msgstr "الفصل التالي"
+#: domains/std/__init__.py:773 domains/std/__init__.py:786
+#: themes/basic/defindex.html:18
+msgid "Search Page"
+msgstr "صفحة البحث"
-#: themes/basic/layout.html:18
-msgid "Navigation"
+#: themes/basic/defindex.html:19
+msgid "search this documentation"
msgstr ""
-#: themes/basic/layout.html:115
-#, python-format
-msgid "Search within %(docstitle)s"
-msgstr "البحث ضمن %(docstitle)s"
+#: themes/basic/defindex.html:21
+msgid "Global Module Index"
+msgstr ""
-#: themes/basic/layout.html:124
-msgid "About these documents"
+#: themes/basic/defindex.html:22
+msgid "quick access to all modules"
msgstr ""
-#: themes/basic/layout.html:133 themes/basic/layout.html:177
-#: themes/basic/layout.html:179
-msgid "Copyright"
-msgstr "الحقوق"
+#: builders/html/__init__.py:496 themes/basic/defindex.html:23
+msgid "General Index"
+msgstr "الفهرس العام"
-#: themes/basic/layout.html:183 themes/basic/layout.html:189
-#, python-format
-msgid "© %(copyright_prefix)s %(copyright)s."
+#: themes/basic/defindex.html:24
+msgid "all functions, classes, terms"
msgstr ""
-#: themes/basic/layout.html:201
+#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
+#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
+msgid "Table of Contents"
+msgstr "قائمة المحتويات"
+
+#: themes/basic/opensearch.xml:4
#, python-format
-msgid "Last updated on %(last_updated)s."
+msgid "Search %(docstitle)s"
+msgstr "البحث %(docstitle)s"
+
+#: themes/basic/genindex-split.html:8
+msgid "Index pages by letter"
msgstr ""
-#: themes/basic/layout.html:204
-#, python-format
-msgid ""
-"Created using Sphinx "
-"%(sphinx_version)s."
+#: themes/basic/genindex-split.html:17
+msgid "can be huge"
msgstr ""
#: themes/basic/search.html:20
@@ -2784,21 +2925,21 @@ msgstr ""
msgid "search"
msgstr "بحث"
-#: themes/basic/static/sphinx_highlight.js:112
-msgid "Hide Search Matches"
-msgstr ""
+#: themes/haiku/layout.html:16
+msgid "Contents"
+msgstr "المحتوى"
-#: themes/basic/static/searchtools.js:117
+#: themes/basic/static/searchtools.js:132
msgid "Search Results"
msgstr "نتائج البحث"
-#: themes/basic/static/searchtools.js:119
+#: themes/basic/static/searchtools.js:134
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
msgstr ""
-#: themes/basic/static/searchtools.js:123
+#: themes/basic/static/searchtools.js:138
#, python-brace-format
msgid "Search finished, found one page matching the search query."
msgid_plural ""
@@ -2810,21 +2951,20 @@ msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
-#: themes/basic/static/searchtools.js:253
+#: themes/basic/static/searchtools.js:276
msgid "Searching"
msgstr ""
-#: themes/basic/static/searchtools.js:270
+#: themes/basic/static/searchtools.js:293
msgid "Preparing search..."
msgstr ""
-#: themes/basic/static/searchtools.js:474
+#: themes/basic/static/searchtools.js:526
msgid ", in "
msgstr ""
-#: themes/basic/changes/rstsource.html:5
-#, python-format
-msgid "%(filename)s — %(docstitle)s"
+#: themes/basic/static/sphinx_highlight.js:112
+msgid "Hide Search Matches"
msgstr ""
#: themes/basic/changes/frameset.html:5
@@ -2833,6 +2973,11 @@ msgstr ""
msgid "Changes in Version %(version)s — %(docstitle)s"
msgstr ""
+#: themes/basic/changes/rstsource.html:5
+#, python-format
+msgid "%(filename)s — %(docstitle)s"
+msgstr ""
+
#: themes/basic/changes/versionchanges.html:17
#, python-format
msgid "Automatically generated list of changes in version %(version)s"
@@ -2854,119 +2999,126 @@ msgstr ""
msgid "Expand sidebar"
msgstr ""
-#: domains/python/_annotations.py:529
+#: domains/python/_annotations.py:522
msgid "Positional-only parameter separator (PEP 570)"
msgstr ""
-#: domains/python/_annotations.py:540
+#: domains/python/_annotations.py:533
msgid "Keyword-only parameters separator (PEP 3102)"
msgstr ""
-#: domains/python/__init__.py:113 domains/python/__init__.py:278
+#: domains/c/__init__.py:354 domains/cpp/__init__.py:485
+#: domains/python/_object.py:190 ext/napoleon/docstring.py:980
+msgid "Parameters"
+msgstr ""
+
+#: domains/python/_object.py:206
+msgid "Variables"
+msgstr "متغيرات"
+
+#: domains/python/_object.py:214
+msgid "Raises"
+msgstr ""
+
+#: domains/python/__init__.py:105 domains/python/__init__.py:270
#, python-format
msgid "%s() (in module %s)"
msgstr ""
-#: domains/python/__init__.py:180 domains/python/__init__.py:374
-#: domains/python/__init__.py:434 domains/python/__init__.py:474
+#: domains/python/__init__.py:172 domains/python/__init__.py:366
+#: domains/python/__init__.py:426 domains/python/__init__.py:466
#, python-format
msgid "%s (in module %s)"
msgstr ""
-#: domains/python/__init__.py:182
+#: domains/python/__init__.py:174
#, python-format
msgid "%s (built-in variable)"
msgstr ""
-#: domains/python/__init__.py:217
+#: domains/python/__init__.py:209
#, python-format
msgid "%s (built-in class)"
msgstr ""
-#: domains/python/__init__.py:218
+#: domains/python/__init__.py:210
#, python-format
msgid "%s (class in %s)"
msgstr ""
-#: domains/python/__init__.py:283
+#: domains/python/__init__.py:275
#, python-format
msgid "%s() (%s class method)"
msgstr ""
-#: domains/python/__init__.py:285
+#: domains/python/__init__.py:277
#, python-format
msgid "%s() (%s static method)"
msgstr ""
-#: domains/python/__init__.py:438
+#: domains/python/__init__.py:430
#, python-format
msgid "%s (%s property)"
msgstr ""
-#: domains/python/__init__.py:478
+#: domains/python/__init__.py:470
#, python-format
msgid "%s (type alias in %s)"
msgstr ""
-#: domains/python/__init__.py:638
+#: domains/python/__init__.py:624
msgid "Python Module Index"
msgstr ""
-#: domains/python/__init__.py:639
+#: domains/python/__init__.py:625
msgid "modules"
msgstr ""
-#: domains/python/__init__.py:717
+#: domains/python/__init__.py:703
msgid "Deprecated"
msgstr ""
-#: domains/python/__init__.py:743
+#: domains/python/__init__.py:729
msgid "exception"
msgstr ""
-#: domains/python/__init__.py:745
+#: domains/python/__init__.py:731
msgid "class method"
msgstr ""
-#: domains/python/__init__.py:746
+#: domains/python/__init__.py:732
msgid "static method"
msgstr ""
-#: domains/python/__init__.py:748
+#: domains/python/__init__.py:734
msgid "property"
msgstr ""
-#: domains/python/__init__.py:749
+#: domains/python/__init__.py:735
msgid "type alias"
msgstr ""
-#: domains/python/__init__.py:818
+#: domains/python/__init__.py:804
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :no-index: for"
" one of them"
msgstr ""
-#: domains/python/__init__.py:978
+#: domains/python/__init__.py:974
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
-#: domains/python/__init__.py:1052
+#: domains/python/__init__.py:1048
msgid " (deprecated)"
msgstr ""
-#: domains/c/__init__.py:326 domains/cpp/__init__.py:483
-#: domains/python/_object.py:190 ext/napoleon/docstring.py:974
-msgid "Parameters"
-msgstr ""
-
-#: domains/python/_object.py:206
-msgid "Variables"
-msgstr "متغيرات"
-
-#: domains/python/_object.py:214
-msgid "Raises"
+#: domains/cpp/__init__.py:394 domains/cpp/_symbol.py:946
+#, python-format
+msgid ""
+"Duplicate C++ declaration, also defined at %s:%s.\n"
+"Declaration is '.. cpp:%s:: %s'."
msgstr ""
#: domains/cpp/__init__.py:159
@@ -2978,92 +3130,85 @@ msgstr ""
msgid "%s (C++ %s)"
msgstr ""
-#: domains/cpp/__init__.py:392 domains/cpp/_symbol.py:942
-#, python-format
-msgid ""
-"Duplicate C++ declaration, also defined at %s:%s.\n"
-"Declaration is '.. cpp:%s:: %s'."
-msgstr ""
-
-#: domains/c/__init__.py:333 domains/cpp/__init__.py:496
+#: domains/c/__init__.py:361 domains/cpp/__init__.py:498
msgid "Return values"
msgstr ""
-#: domains/c/__init__.py:754 domains/cpp/__init__.py:940
+#: domains/c/__init__.py:782 domains/cpp/__init__.py:942
msgid "union"
msgstr ""
-#: domains/c/__init__.py:749 domains/cpp/__init__.py:942
+#: domains/c/__init__.py:777 domains/cpp/__init__.py:944
msgid "member"
msgstr ""
-#: domains/c/__init__.py:757 domains/cpp/__init__.py:943
+#: domains/c/__init__.py:785 domains/cpp/__init__.py:945
msgid "type"
msgstr "نوع"
-#: domains/cpp/__init__.py:944
+#: domains/cpp/__init__.py:946
msgid "concept"
msgstr ""
-#: domains/c/__init__.py:755 domains/cpp/__init__.py:945
+#: domains/c/__init__.py:783 domains/cpp/__init__.py:947
msgid "enum"
msgstr ""
-#: domains/c/__init__.py:756 domains/cpp/__init__.py:946
+#: domains/c/__init__.py:784 domains/cpp/__init__.py:948
msgid "enumerator"
msgstr ""
-#: domains/c/__init__.py:760 domains/cpp/__init__.py:949
+#: domains/c/__init__.py:788 domains/cpp/__init__.py:951
msgid "function parameter"
msgstr ""
-#: domains/cpp/__init__.py:952
+#: domains/cpp/__init__.py:954
msgid "template parameter"
msgstr ""
-#: domains/c/__init__.py:211
-#, python-format
-msgid "%s (C %s)"
-msgstr ""
-
-#: domains/c/__init__.py:277 domains/c/_symbol.py:557
+#: domains/c/__init__.py:279 domains/c/_symbol.py:569
#, python-format
msgid ""
"Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'."
msgstr ""
-#: domains/c/__init__.py:750
+#: domains/c/__init__.py:211
+#, python-format
+msgid "%s (C %s)"
+msgstr ""
+
+#: domains/c/__init__.py:778
msgid "variable"
msgstr "متغير"
-#: domains/c/__init__.py:752
+#: domains/c/__init__.py:780
msgid "macro"
msgstr ""
-#: domains/c/__init__.py:753
+#: domains/c/__init__.py:781
msgid "struct"
msgstr ""
-#: domains/std/__init__.py:91 domains/std/__init__.py:111
+#: domains/std/__init__.py:88 domains/std/__init__.py:108
#, python-format
msgid "environment variable; %s"
msgstr ""
-#: domains/std/__init__.py:119
+#: domains/std/__init__.py:116
#, python-format
msgid "%s; configuration value"
msgstr ""
-#: domains/std/__init__.py:175
+#: domains/std/__init__.py:172
msgid "Type"
msgstr ""
-#: domains/std/__init__.py:185
+#: domains/std/__init__.py:182
msgid "Default"
msgstr ""
-#: domains/std/__init__.py:242
+#: domains/std/__init__.py:239
#, python-format
msgid ""
"Malformed option description %r, should look like \"opt\", \"-opt args\", \""
@@ -3119,605 +3264,392 @@ msgstr ""
msgid "Module Index"
msgstr ""
-#: domains/std/__init__.py:857
-#, python-format
-msgid "duplicate %s description of %s, other instance in %s"
-msgstr ""
-
-#: domains/std/__init__.py:1113
-msgid "numfig is disabled. :numref: is ignored."
-msgstr ""
-
-#: domains/std/__init__.py:1124
-#, python-format
-msgid "Failed to create a cross reference. Any number is not assigned: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1138
-#, python-format
-msgid "the link has no caption: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1153
-#, python-format
-msgid "invalid numfig_format: %s (%r)"
-msgstr ""
-
-#: domains/std/__init__.py:1157
-#, python-format
-msgid "invalid numfig_format: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1453
-#, python-format
-msgid "undefined label: %r"
-msgstr ""
-
-#: domains/std/__init__.py:1456
-#, python-format
-msgid "Failed to create a cross reference. A title or caption not found: %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:324
-#, python-format
-msgid "circular toctree references detected, ignoring: %s <- %s"
-msgstr ""
-
-#: environment/adapters/toctree.py:349
-#, python-format
-msgid ""
-"toctree contains reference to document %r that doesn't have a title: no link"
-" will be generated"
-msgstr ""
-
-#: environment/adapters/toctree.py:364
-#, python-format
-msgid "toctree contains reference to non-included document %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:367
-#, python-format
-msgid "toctree contains reference to non-existing document %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:123
-#, python-format
-msgid "see %s"
-msgstr ""
-
-#: environment/adapters/indexentries.py:133
-#, python-format
-msgid "see also %s"
-msgstr ""
-
-#: environment/adapters/indexentries.py:141
-#, python-format
-msgid "unknown index entry type %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:268
-#: templates/latex/sphinxmessages.sty.jinja:11
-msgid "Symbols"
-msgstr ""
-
-#: environment/collectors/asset.py:98
-#, python-format
-msgid "image file not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:126
-#, python-format
-msgid "image file %s not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:163
-#, python-format
-msgid "download file not readable: %s"
-msgstr ""
-
-#: environment/collectors/toctree.py:259
-#, python-format
-msgid "%s is already assigned section numbers (nested numbered toctree?)"
-msgstr ""
-
-#: _cli/util/errors.py:190
-msgid "Interrupted!"
-msgstr ""
-
-#: _cli/util/errors.py:194
-msgid "reStructuredText markup error!"
-msgstr ""
-
-#: _cli/util/errors.py:200
-msgid "Encoding error!"
-msgstr ""
-
-#: _cli/util/errors.py:203
-msgid "Recursion error!"
-msgstr ""
-
-#: _cli/util/errors.py:207
-msgid ""
-"This can happen with very large or deeply nested source files. You can "
-"carefully increase the default Python recursion limit of 1,000 in conf.py "
-"with e.g.:"
-msgstr ""
-
-#: _cli/util/errors.py:227
-msgid "Starting debugger:"
-msgstr ""
-
-#: _cli/util/errors.py:235
-msgid "The full traceback has been saved in:"
-msgstr ""
-
-#: _cli/util/errors.py:240
-msgid ""
-"To report this error to the developers, please open an issue at "
-". Thanks!"
-msgstr ""
-
-#: _cli/util/errors.py:246
-msgid ""
-"Please also report this if it was a user error, so that a better error "
-"message can be provided next time."
-msgstr ""
-
-#: transforms/post_transforms/__init__.py:88
-msgid ""
-"Could not determine the fallback text for the cross-reference. Might be a "
-"bug."
-msgstr ""
-
-#: transforms/post_transforms/__init__.py:237
+#: domains/std/__init__.py:857
#, python-format
-msgid "more than one target found for 'any' cross-reference %r: could be %s"
+msgid "duplicate %s description of %s, other instance in %s"
msgstr ""
-#: transforms/post_transforms/__init__.py:299
-#, python-format
-msgid "%s:%s reference target not found: %s"
+#: domains/std/__init__.py:1113
+msgid "numfig is disabled. :numref: is ignored."
msgstr ""
-#: transforms/post_transforms/__init__.py:305
+#: domains/std/__init__.py:1124
#, python-format
-msgid "%r reference target not found: %s"
+msgid "Failed to create a cross reference. Any number is not assigned: %s"
msgstr ""
-#: transforms/post_transforms/images.py:79
+#: domains/std/__init__.py:1138
#, python-format
-msgid "Could not fetch remote image: %s [%s]"
+msgid "the link has no caption: %s"
msgstr ""
-#: transforms/post_transforms/images.py:96
+#: domains/std/__init__.py:1153
#, python-format
-msgid "Could not fetch remote image: %s [%d]"
+msgid "invalid numfig_format: %s (%r)"
msgstr ""
-#: transforms/post_transforms/images.py:143
+#: domains/std/__init__.py:1157
#, python-format
-msgid "Unknown image format: %s..."
+msgid "invalid numfig_format: %s"
msgstr ""
-#: builders/html/__init__.py:113
-#, python-format
-msgid "The HTML pages are in %(outdir)s."
-msgstr "صفحة الHTML موجودة في %(outdir)s"
-
-#: builders/html/__init__.py:348
+#: domains/std/__init__.py:1453
#, python-format
-msgid "Failed to read build info file: %r"
+msgid "undefined label: %r"
msgstr ""
-#: builders/html/__init__.py:364
-msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+#: domains/std/__init__.py:1456
+#, python-format
+msgid "Failed to create a cross reference. A title or caption not found: %r"
msgstr ""
-#: builders/html/__init__.py:366
-msgid "building [html]: "
+#: ext/napoleon/docstring.py:178
+#, python-format
+msgid "invalid value set (missing closing brace): %s"
msgstr ""
-#: builders/html/__init__.py:383
+#: ext/napoleon/docstring.py:185
#, python-format
-msgid ""
-"template %s has been changed since the previous build, all docs will be "
-"rebuilt"
+msgid "invalid value set (missing opening brace): %s"
msgstr ""
-#: builders/html/__init__.py:507
-msgid "index"
-msgstr "الفهرس"
-
-#: builders/html/__init__.py:560
+#: ext/napoleon/docstring.py:192
#, python-format
-msgid "Logo of %s"
+msgid "malformed string literal (missing closing quote): %s"
msgstr ""
-#: builders/html/__init__.py:589
-msgid "next"
-msgstr "التالي"
-
-#: builders/html/__init__.py:598
-msgid "previous"
-msgstr "السابق"
-
-#: builders/html/__init__.py:696
-msgid "generating indices"
-msgstr "إنشاء الفهرس"
-
-#: builders/html/__init__.py:711
-msgid "writing additional pages"
-msgstr "كتابة صفحات إضافية "
-
-#: builders/html/__init__.py:794
+#: ext/napoleon/docstring.py:199
#, python-format
-msgid "cannot copy image file '%s': %s"
+msgid "malformed string literal (missing opening quote): %s"
msgstr ""
-#: builders/html/__init__.py:806
-msgid "copying downloadable files... "
-msgstr "نسخ الملفات القابلة للتحميل للنسخ..."
+#: ext/napoleon/docstring.py:902
+msgid "Example"
+msgstr "مثال"
-#: builders/html/__init__.py:818
-#, python-format
-msgid "cannot copy downloadable file %r: %s"
-msgstr "غير قادر على نسخ الملفات القابلة للتحميل %r : %s"
+#: ext/napoleon/docstring.py:903
+msgid "Examples"
+msgstr "أمثلة"
-#: builders/html/__init__.py:864
-#, python-format
-msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
+#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:947
+msgid "Keyword Arguments"
msgstr ""
-#: builders/html/__init__.py:882
-#, python-format
-msgid "Failed to copy a file in html_static_file: %s: %r"
-msgstr ""
+#: ext/napoleon/docstring.py:962
+msgid "Notes"
+msgstr "ملاحظات"
-#: builders/html/__init__.py:917
-msgid "copying static files"
+#: ext/napoleon/docstring.py:971
+msgid "Other Parameters"
msgstr ""
-#: builders/html/__init__.py:934
-#, python-format
-msgid "cannot copy static file %r"
-msgstr "غير قادر على نسخ الملف الثابت %r"
-
-#: builders/html/__init__.py:939
-msgid "copying extra files"
-msgstr "نسخ ملفات إضافية"
+#: ext/napoleon/docstring.py:1007
+msgid "Receives"
+msgstr ""
-#: builders/html/__init__.py:949
-#, python-format
-msgid "cannot copy extra file %r"
-msgstr "غير قادر على نسخ المف الإضافي %r"
+#: ext/napoleon/docstring.py:1011
+msgid "References"
+msgstr "مراجع"
-#: builders/html/__init__.py:955
-#, python-format
-msgid "Failed to write build info file: %r"
+#: ext/napoleon/docstring.py:1043
+msgid "Warns"
msgstr ""
-#: builders/html/__init__.py:1005
-msgid ""
-"search index couldn't be loaded, but not all documents will be built: the "
-"index will be incomplete."
+#: ext/napoleon/docstring.py:1047
+msgid "Yields"
msgstr ""
-#: builders/html/__init__.py:1052
+#: ext/autodoc/_generate.py:151
+#: ext/autodoc/_legacy_class_based/_documenters.py:859
#, python-format
-msgid "page %s matches two patterns in html_sidebars: %r and %r"
+msgid "A mocked object is detected: %r"
msgstr ""
-#: builders/html/__init__.py:1216
+#: ext/autodoc/_generate.py:334 ext/autodoc/_generate.py:348
+#: ext/autodoc/_generate.py:370 ext/autodoc/_generate.py:386
+#: ext/autodoc/_legacy_class_based/_documenters.py:1860
+#: ext/autodoc/_legacy_class_based/_documenters.py:1889
+#: ext/autodoc/_legacy_class_based/_documenters.py:1983
#, python-format
-msgid ""
-"a Unicode error occurred when rendering the page %s. Please make sure all "
-"config values that contain non-ASCII content are Unicode strings."
+msgid "alias of %s"
msgstr ""
-#: builders/html/__init__.py:1224
+#: ext/autodoc/_legacy_class_based/_documenters.py:1745
+#: ext/autodoc/_renderer.py:88
#, python-format
-msgid ""
-"An error happened in rendering the page %s.\n"
-"Reason: %r"
-msgstr ""
-
-#: builders/html/__init__.py:1257
-msgid "dumping object inventory"
+msgid "Bases: %s"
msgstr ""
-#: builders/html/__init__.py:1265
+#: ext/autodoc/_directive_options.py:226
+#: ext/autodoc/_legacy_class_based/_directive_options.py:47
#, python-format
-msgid "dumping search index in %s"
+msgid "invalid value for member-order option: %s"
msgstr ""
-#: builders/html/__init__.py:1308
+#: ext/autodoc/_directive_options.py:233
+#: ext/autodoc/_legacy_class_based/_directive_options.py:55
#, python-format
-msgid "invalid js_file: %r, ignored"
-msgstr ""
-
-#: builders/html/__init__.py:1342
-msgid "Many math_renderers are registered. But no math_renderer is selected."
+msgid "invalid value for class-doc-from option: %s"
msgstr ""
-#: builders/html/__init__.py:1346
+#: ext/autodoc/_legacy_class_based/_documenters.py:239
+#: ext/autodoc/_names.py:45
#, python-format
-msgid "Unknown math_renderer %r is given."
+msgid "invalid signature for auto%s (%r)"
msgstr ""
-#: builders/html/__init__.py:1360
+#: ext/autodoc/_legacy_class_based/_documenters.py:800
+#: ext/autodoc/_names.py:53 ext/autodoc/_names.py:101
#, python-format
-msgid "html_extra_path entry %r is placed inside outdir"
+msgid ""
+"don't know which module to import for autodocumenting %r (try placing a "
+"\"module\" or \"currentmodule\" directive in the document, or giving an "
+"explicit module name)"
msgstr ""
-#: builders/html/__init__.py:1365
+#: ext/autodoc/_names.py:89
#, python-format
-msgid "html_extra_path entry %r does not exist"
+msgid "signature arguments given for automodule: '%s'"
msgstr ""
-#: builders/html/__init__.py:1380
+#: ext/autodoc/_names.py:93
#, python-format
-msgid "html_static_path entry %r is placed inside outdir"
+msgid "return annotation given for automodule: '%s'"
msgstr ""
-#: builders/html/__init__.py:1385
-#, python-format
-msgid "html_static_path entry %r does not exist"
+#: ext/autodoc/_legacy_class_based/_documenters.py:956
+#: ext/autodoc/_names.py:134
+msgid "\"::\" in automodule name doesn't make sense"
msgstr ""
-#: builders/html/__init__.py:1396 builders/latex/__init__.py:504
-#, python-format
-msgid "logo file %r does not exist"
-msgstr "ملف الشعار %r غير موجود"
-
-#: builders/html/__init__.py:1407
+#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:984
#, python-format
-msgid "favicon file %r does not exist"
-msgstr "ملف الايقونة %r غير موجود"
+msgid "Failed to remove %s: %s"
+msgstr ""
-#: builders/html/__init__.py:1420
+#: ext/apidoc/_generate.py:69
#, python-format
-msgid ""
-"Values in 'html_sidebars' must be a list of strings. At least one pattern "
-"has a string value: %s. Change to `html_sidebars = %r`."
+msgid "Would create file %s."
msgstr ""
-#: builders/html/__init__.py:1433
+#: ext/apidoc/_cli.py:28
msgid ""
-"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
-"configuration options)"
+"\n"
+"Look recursively in for Python modules and packages and create\n"
+"one reST file with automodule directives per package in the .\n"
+"\n"
+"The s can be file and/or directory patterns that will be\n"
+"excluded from generation.\n"
+"\n"
+"Note: By default this script will not overwrite already created files."
msgstr ""
-#: builders/html/__init__.py:1449
-#, python-format
-msgid "%s %s documentation"
+#: ext/apidoc/_cli.py:45
+msgid "path to module to document"
msgstr ""
-#: builders/html/_build_info.py:32
-msgid "failed to read broken build info file (unknown version)"
+#: ext/apidoc/_cli.py:50
+msgid ""
+"fnmatch-style file and/or directory patterns to exclude from generation"
msgstr ""
-#: builders/html/_build_info.py:36
-msgid "failed to read broken build info file (missing config entry)"
+#: ext/apidoc/_cli.py:60
+msgid "directory to place all output"
msgstr ""
-#: builders/html/_build_info.py:39
-msgid "failed to read broken build info file (missing tags entry)"
+#: ext/apidoc/_cli.py:75
+msgid "maximum depth of submodules to show in the TOC (default: 4)"
msgstr ""
-#: builders/latex/__init__.py:118
-#, python-format
-msgid "The LaTeX files are in %(outdir)s."
+#: ext/apidoc/_cli.py:82
+msgid "overwrite existing files"
msgstr ""
-#: builders/latex/__init__.py:121
+#: ext/apidoc/_cli.py:91
msgid ""
-"\n"
-"Run 'make' in that directory to run these through (pdf)latex\n"
-"(use `make latexpdf' here to do that automatically)."
-msgstr ""
-
-#: builders/latex/__init__.py:159
-msgid "no \"latex_documents\" config value found; no documents will be written"
-msgstr ""
-
-#: builders/latex/__init__.py:170
-#, python-format
-msgid "\"latex_documents\" config value references unknown document %s"
+"follow symbolic links. Powerful when combined with "
+"collective.recipe.omelette."
msgstr ""
-#: builders/latex/__init__.py:209 templates/latex/latex.tex.jinja:91
-msgid "Release"
+#: ext/apidoc/_cli.py:99
+msgid "run the script without creating files"
msgstr ""
-#: builders/latex/__init__.py:428
-msgid "copying TeX support files"
+#: ext/apidoc/_cli.py:106
+msgid "put documentation for each module on its own page"
msgstr ""
-#: builders/latex/__init__.py:465
-msgid "copying additional files"
+#: ext/apidoc/_cli.py:113
+msgid "include \"_private\" modules"
msgstr ""
-#: builders/latex/__init__.py:536
-#, python-format
-msgid "Unknown configure key: latex_elements[%r], ignored."
+#: ext/apidoc/_cli.py:120
+msgid "filename of table of contents (default: modules)"
msgstr ""
-#: builders/latex/__init__.py:544
-#, python-format
-msgid "Unknown theme option: latex_theme_options[%r], ignored."
+#: ext/apidoc/_cli.py:127
+msgid "don't create a table of contents file"
msgstr ""
-#: builders/latex/transforms.py:120
-msgid "Failed to get a docname!"
+#: ext/apidoc/_cli.py:135
+msgid ""
+"don't create headings for the module/package packages (e.g. when the "
+"docstrings already contain them)"
msgstr ""
-#: builders/latex/transforms.py:121
-#, python-format
-msgid "Failed to get a docname for source %r!"
+#: ext/apidoc/_cli.py:145
+msgid "put module documentation before submodule documentation"
msgstr ""
-#: builders/latex/transforms.py:487
-#, python-format
-msgid "No footnote was found for given reference node %r"
+#: ext/apidoc/_cli.py:152
+msgid ""
+"interpret module paths according to PEP-0420 implicit namespaces "
+"specification"
msgstr ""
-#: builders/latex/theming.py:88
-#, python-format
-msgid "%r doesn't have \"theme\" setting"
+#: ext/apidoc/_cli.py:160
+msgid ""
+"Comma-separated list of options to pass to automodule directive (or use "
+"SPHINX_APIDOC_OPTIONS)."
msgstr ""
-#: builders/latex/theming.py:91
-#, python-format
-msgid "%r doesn't have \"%s\" setting"
+#: ext/apidoc/_cli.py:170
+msgid "file suffix (default: rst)"
msgstr ""
-#: templates/latex/longtable.tex.jinja:52
-#: templates/latex/sphinxmessages.sty.jinja:8
-msgid "continued from previous page"
+#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:950
+msgid "Remove existing files in the output directory that were not generated"
msgstr ""
-#: templates/latex/longtable.tex.jinja:63
-#: templates/latex/sphinxmessages.sty.jinja:9
-msgid "continues on next page"
-msgstr "استمرار في الصفحة التالية"
-
-#: templates/latex/sphinxmessages.sty.jinja:10
-msgid "Non-alphabetical"
+#: ext/apidoc/_cli.py:186
+msgid "generate a full project with sphinx-quickstart"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:12
-msgid "Numbers"
-msgstr "أرقام"
-
-#: templates/latex/sphinxmessages.sty.jinja:13
-msgid "page"
-msgstr "صفحة"
+#: ext/apidoc/_cli.py:193
+msgid "append module_path to sys.path, used when --full is given"
+msgstr ""
-#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:940
-msgid "Keyword Arguments"
+#: ext/apidoc/_cli.py:200
+msgid "project name (default: root module name)"
msgstr ""
-#: ext/napoleon/docstring.py:176
-#, python-format
-msgid "invalid value set (missing closing brace): %s"
+#: ext/apidoc/_cli.py:207
+msgid "project author(s), used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:183
-#, python-format
-msgid "invalid value set (missing opening brace): %s"
+#: ext/apidoc/_cli.py:214
+msgid "project version, used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:190
-#, python-format
-msgid "malformed string literal (missing closing quote): %s"
+#: ext/apidoc/_cli.py:222
+msgid "project release, used when --full is given, defaults to --doc-version"
msgstr ""
-#: ext/napoleon/docstring.py:197
-#, python-format
-msgid "malformed string literal (missing opening quote): %s"
+#: ext/apidoc/_cli.py:226
+msgid "extension options"
msgstr ""
-#: ext/napoleon/docstring.py:895
-msgid "Example"
-msgstr "مثال"
+#: ext/apidoc/_cli.py:232
+msgid "enable arbitrary extensions, used when --full is given"
+msgstr ""
-#: ext/napoleon/docstring.py:896
-msgid "Examples"
-msgstr "أمثلة"
+#: ext/apidoc/_cli.py:240
+#, python-format
+msgid "enable %s extension, used when --full is given"
+msgstr ""
-#: ext/napoleon/docstring.py:956
-msgid "Notes"
-msgstr "ملاحظات"
+#: ext/apidoc/_cli.py:291
+#, python-format
+msgid "%s is not a directory."
+msgstr "%s ليس مجلد."
-#: ext/napoleon/docstring.py:965
-msgid "Other Parameters"
+#: ext/apidoc/_extension.py:50
+msgid "Running apidoc"
msgstr ""
-#: ext/napoleon/docstring.py:1001
-msgid "Receives"
+#: ext/apidoc/_extension.py:102
+#, python-format
+msgid "apidoc_modules item %i must be a dict"
msgstr ""
-#: ext/napoleon/docstring.py:1005
-msgid "References"
-msgstr "مراجع"
+#: ext/apidoc/_extension.py:110
+#, python-format
+msgid "apidoc_modules item %i must have a 'path' key"
+msgstr ""
-#: ext/napoleon/docstring.py:1037
-msgid "Warns"
+#: ext/apidoc/_extension.py:115
+#, python-format
+msgid "apidoc_modules item %i 'path' must be a string"
msgstr ""
-#: ext/napoleon/docstring.py:1041
-msgid "Yields"
+#: ext/apidoc/_extension.py:121
+#, python-format
+msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
msgstr ""
-#: ext/autosummary/__init__.py:284
+#: ext/apidoc/_extension.py:133
#, python-format
-msgid "autosummary references excluded document %r. Ignored."
+msgid "apidoc_modules item %i must have a 'destination' key"
msgstr ""
-#: ext/autosummary/__init__.py:288
+#: ext/apidoc/_extension.py:140
#, python-format
-msgid ""
-"autosummary: stub file not found %r. Check your autosummary_generate "
-"setting."
+msgid "apidoc_modules item %i 'destination' must be a string"
msgstr ""
-#: ext/autosummary/__init__.py:309
-msgid "A captioned autosummary requires :toctree: option. ignored."
+#: ext/apidoc/_extension.py:147
+#, python-format
+msgid "apidoc_modules item %i 'destination' should be a relative path"
msgstr ""
-#: ext/autosummary/__init__.py:384
+#: ext/apidoc/_extension.py:157
#, python-format
-msgid ""
-"autosummary: failed to import %s.\n"
-"Possible hints:\n"
-"%s"
+msgid "apidoc_modules item %i cannot create destination directory: %s"
msgstr ""
-#: ext/autosummary/__init__.py:404
+#: ext/apidoc/_extension.py:178
#, python-format
-msgid "failed to parse name %s"
+msgid "apidoc_modules item %i '%s' must be an int"
msgstr ""
-#: ext/autosummary/__init__.py:412
+#: ext/apidoc/_extension.py:192
#, python-format
-msgid "failed to import object %s"
+msgid "apidoc_modules item %i '%s' must be a boolean"
msgstr ""
-#: ext/autosummary/__init__.py:730
+#: ext/apidoc/_extension.py:210
#, python-format
-msgid ""
-"Summarised items should not include the current module. Replace %r with %r."
+msgid "apidoc_modules item %i has unexpected keys: %s"
msgstr ""
-#: ext/autosummary/__init__.py:927
+#: ext/apidoc/_extension.py:248
#, python-format
-msgid "autosummary_generate: file not found: %s"
+msgid "apidoc_modules item %i '%s' must be a sequence"
msgstr ""
-#: ext/autosummary/__init__.py:937
-msgid ""
-"autosummary generates .rst files internally. But your source_suffix does not"
-" contain .rst. Skipped."
+#: ext/apidoc/_extension.py:257
+#, python-format
+msgid "apidoc_modules item %i '%s' must contain strings"
msgstr ""
-#: ext/autosummary/generate.py:232 ext/autosummary/generate.py:450
+#: ext/autosummary/generate.py:212 ext/autosummary/generate.py:425
#, python-format
msgid ""
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
"%s"
msgstr ""
-#: ext/autosummary/generate.py:588
+#: ext/autosummary/generate.py:630
#, python-format
msgid "[autosummary] generating autosummary for: %s"
msgstr ""
-#: ext/autosummary/generate.py:592
+#: ext/autosummary/generate.py:634
#, python-format
msgid "[autosummary] writing to %s"
msgstr ""
-#: ext/autosummary/generate.py:637
+#: ext/autosummary/generate.py:679
#, python-format
msgid ""
"[autosummary] failed to import %s.\n"
@@ -3725,7 +3657,7 @@ msgid ""
"%s"
msgstr ""
-#: ext/autosummary/generate.py:836
+#: ext/autosummary/generate.py:877
msgid ""
"\n"
"Generate ReStructuredText using autosummary directives.\n"
@@ -3740,481 +3672,639 @@ msgid ""
" pydoc sphinx.ext.autosummary\n"
msgstr ""
-#: ext/autosummary/generate.py:858
+#: ext/autosummary/generate.py:899
msgid "source files to generate rST files for"
msgstr ""
-#: ext/autosummary/generate.py:866
+#: ext/autosummary/generate.py:907
msgid "directory to place all output in"
msgstr ""
-#: ext/autosummary/generate.py:874
+#: ext/autosummary/generate.py:915
#, python-format
msgid "default suffix for files (default: %(default)s)"
msgstr ""
-#: ext/autosummary/generate.py:882
+#: ext/autosummary/generate.py:923
#, python-format
msgid "custom template directory (default: %(default)s)"
msgstr ""
-#: ext/autosummary/generate.py:890
+#: ext/autosummary/generate.py:931
#, python-format
msgid "document imported members (default: %(default)s)"
msgstr ""
-#: ext/autosummary/generate.py:899
+#: ext/autosummary/generate.py:940
#, python-format
msgid ""
"document exactly the members in module __all__ attribute. (default: "
"%(default)s)"
msgstr ""
-#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:909
-msgid "Remove existing files in the output directory that were not generated"
+#: ext/autosummary/__init__.py:235
+#, python-format
+msgid "autosummary references excluded document %r. Ignored."
msgstr ""
-#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:944
+#: ext/autosummary/__init__.py:239
#, python-format
-msgid "Failed to remove %s: %s"
+msgid ""
+"autosummary: stub file not found %r. Check your autosummary_generate "
+"setting."
msgstr ""
-#: ext/apidoc/_cli.py:28
+#: ext/autosummary/__init__.py:260
+msgid "A captioned autosummary requires :toctree: option. ignored."
+msgstr ""
+
+#: ext/autosummary/__init__.py:329
+#, python-format
msgid ""
-"\n"
-"Look recursively in for Python modules and packages and create\n"
-"one reST file with automodule directives per package in the .\n"
-"\n"
-"The s can be file and/or directory patterns that will be\n"
-"excluded from generation.\n"
-"\n"
-"Note: By default this script will not overwrite already created files."
+"autosummary: failed to import %s.\n"
+"Possible hints:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:45
-msgid "path to module to document"
+#: ext/autosummary/__init__.py:358
+#, python-format
+msgid "failed to import object %s"
msgstr ""
-#: ext/apidoc/_cli.py:50
+#: ext/autosummary/__init__.py:652
+#, python-format
msgid ""
-"fnmatch-style file and/or directory patterns to exclude from generation"
+"Summarised items should not include the current module. Replace %r with %r."
msgstr ""
-#: ext/apidoc/_cli.py:60
-msgid "directory to place all output"
+#: ext/autosummary/__init__.py:850
+#, python-format
+msgid "autosummary_generate: file not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:75
-msgid "maximum depth of submodules to show in the TOC (default: 4)"
+#: ext/autosummary/__init__.py:860
+msgid ""
+"autosummary generates .rst files internally. But your source_suffix does not"
+" contain .rst. Skipped."
msgstr ""
-#: ext/apidoc/_cli.py:82
-msgid "overwrite existing files"
+#: ext/intersphinx/_load.py:61
+#, python-format
+msgid ""
+"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
+"identifiers must be non-empty strings."
msgstr ""
-#: ext/apidoc/_cli.py:91
+#: ext/intersphinx/_load.py:72
+#, python-format
msgid ""
-"follow symbolic links. Powerful when combined with "
-"collective.recipe.omelette."
+"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
+"or list."
msgstr ""
-#: ext/apidoc/_cli.py:99
-msgid "run the script without creating files"
+#: ext/intersphinx/_load.py:83
+#, python-format
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
+" inventory locations) pair."
msgstr ""
-#: ext/apidoc/_cli.py:106
-msgid "put documentation for each module on its own page"
+#: ext/intersphinx/_load.py:94
+#, python-format
+msgid ""
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique non-empty strings."
msgstr ""
-#: ext/apidoc/_cli.py:113
-msgid "include \"_private\" modules"
+#: ext/intersphinx/_load.py:103
+#, python-format
+msgid ""
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique (other instance in intersphinx_mapping[%r])."
msgstr ""
-#: ext/apidoc/_cli.py:120
-msgid "filename of table of contents (default: modules)"
+#: ext/intersphinx/_load.py:122
+#, python-format
+msgid ""
+"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
+"Inventory locations must be non-empty strings or None."
msgstr ""
-#: ext/apidoc/_cli.py:127
-msgid "don't create a table of contents file"
+#: ext/intersphinx/_load.py:132
+msgid "Invalid `intersphinx_mapping` configuration (1 error)."
msgstr ""
-#: ext/apidoc/_cli.py:135
-msgid ""
-"don't create headings for the module/package packages (e.g. when the "
-"docstrings already contain them)"
+#: ext/intersphinx/_load.py:135
+#, python-format
+msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
msgstr ""
-#: ext/apidoc/_cli.py:145
-msgid "put module documentation before submodule documentation"
+#: ext/intersphinx/_load.py:158
+msgid "An invalid intersphinx_mapping entry was added after normalisation."
msgstr ""
-#: ext/apidoc/_cli.py:152
+#: ext/intersphinx/_load.py:297
+#, python-format
+msgid "loading intersphinx inventory '%s' from %s ..."
+msgstr ""
+
+#: ext/intersphinx/_load.py:324
msgid ""
-"interpret module paths according to PEP-0420 implicit namespaces "
-"specification"
+"encountered some issues with some of the inventories, but they had working "
+"alternatives:"
msgstr ""
-#: ext/apidoc/_cli.py:160
+#: ext/intersphinx/_load.py:332
+#, python-format
msgid ""
-"Comma-separated list of options to pass to automodule directive (or use "
-"SPHINX_APIDOC_OPTIONS)."
+"failed to reach any of the inventories with the following issues:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:170
-msgid "file suffix (default: rst)"
+#: ext/intersphinx/_load.py:411
+#, python-format
+msgid "intersphinx inventory has moved: %s -> %s"
msgstr ""
-#: ext/apidoc/_cli.py:186
-msgid "generate a full project with sphinx-quickstart"
+#: ext/intersphinx/_resolve.py:53
+#, python-format
+msgid "(in %s %s)"
msgstr ""
-#: ext/apidoc/_cli.py:193
-msgid "append module_path to sys.path, used when --full is given"
+#: ext/intersphinx/_resolve.py:55
+#, python-format
+msgid "(in %s)"
msgstr ""
-#: ext/apidoc/_cli.py:200
-msgid "project name (default: root module name)"
+#: ext/intersphinx/_resolve.py:112
+#, python-format
+msgid "inventory '%s': duplicate matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:207
-msgid "project author(s), used when --full is given"
+#: ext/intersphinx/_resolve.py:122
+#, python-format
+msgid "inventory '%s': multiple matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:214
-msgid "project version, used when --full is given"
+#: ext/intersphinx/_resolve.py:387
+#, python-format
+msgid "inventory for external cross-reference not found: %r"
msgstr ""
-#: ext/apidoc/_cli.py:222
-msgid "project release, used when --full is given, defaults to --doc-version"
+#: ext/intersphinx/_resolve.py:396
+#, python-format
+msgid "invalid external cross-reference suffix: %r"
msgstr ""
-#: ext/apidoc/_cli.py:226
-msgid "extension options"
+#: ext/intersphinx/_resolve.py:407
+#, python-format
+msgid "domain for external cross-reference not found: %r"
msgstr ""
-#: ext/apidoc/_cli.py:232
-msgid "enable arbitrary extensions, used when --full is given"
+#: ext/intersphinx/_resolve.py:561
+#, python-format
+msgid "external %s:%s reference target not found: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_loader.py:144
+#: ext/autodoc/_legacy_class_based/_documenters.py:882
+#, python-format
+msgid "error while formatting signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_loader.py:193
+#, python-format
+msgid "Ignoring invalid __all__ in module %s: %r"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_loader.py:332 ext/autodoc/_dynamic/_signatures.py:496
+#: ext/autodoc/_dynamic/_signatures.py:612
+#: ext/autodoc/_legacy_class_based/_documenters.py:1284
+#: ext/autodoc/_legacy_class_based/_documenters.py:1372
+#: ext/autodoc/_legacy_class_based/_documenters.py:2906
+#, python-format
+msgid "Failed to get a function signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_type_comments.py:120
+#, python-format
+msgid "Failed to update signature for %r: parameter not found: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_type_comments.py:123
+#, python-format
+msgid "Failed to parse type_comment for %r: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_docstrings.py:268
+#: ext/autodoc/_legacy_class_based/_documenters.py:2499
+#, python-format
+msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
-#: ext/apidoc/_cli.py:240
+#: ext/autodoc/_dynamic/_signatures.py:102
+#: ext/autodoc/_legacy_class_based/_documenters.py:358
#, python-format
-msgid "enable %s extension, used when --full is given"
+msgid "error while formatting arguments for %s: %s"
msgstr ""
-#: ext/apidoc/_cli.py:291
+#: ext/autodoc/_dynamic/_signatures.py:494
+#: ext/autodoc/_legacy_class_based/_documenters.py:1607
#, python-format
-msgid "%s is not a directory."
-msgstr "%s ليس مجلد."
-
-#: ext/apidoc/_extension.py:50
-msgid "Running apidoc"
+msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:102
+#: ext/autodoc/_dynamic/_signatures.py:498
+#: ext/autodoc/_legacy_class_based/_documenters.py:2235
+#: ext/autodoc/_legacy_class_based/_documenters.py:2355
#, python-format
-msgid "apidoc_modules item %i must be a dict"
+msgid "Failed to get a method signature for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:110
+#: ext/autodoc/_dynamic/_signatures.py:500
#, python-format
-msgid "apidoc_modules item %i must have a 'path' key"
+msgid "Failed to get a signature for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:115
+#: ext/autodoc/_dynamic/_preserve_defaults.py:156
#, python-format
-msgid "apidoc_modules item %i 'path' must be a string"
+msgid "Failed to parse a default argument value for %r: %s"
msgstr ""
-#: ext/apidoc/_extension.py:121
+#: ext/autodoc/_dynamic/_member_finder.py:420
#, python-format
-msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
+msgid ""
+"attribute %s is listed in :members: but is missing as it was not found in "
+"object %r"
msgstr ""
-#: ext/apidoc/_extension.py:133
+#: ext/autodoc/_dynamic/_member_finder.py:473
+#: ext/autodoc/_legacy_class_based/_documenters.py:677
#, python-format
-msgid "apidoc_modules item %i must have a 'destination' key"
+msgid ""
+"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_extension.py:140
+#: ext/autodoc/_legacy_class_based/_documenters.py:964
#, python-format
-msgid "apidoc_modules item %i 'destination' must be a string"
+msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
-#: ext/apidoc/_extension.py:147
+#: ext/autodoc/_legacy_class_based/_documenters.py:980
#, python-format
-msgid "apidoc_modules item %i 'destination' should be a relative path"
+msgid ""
+"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
+"__all__"
msgstr ""
-#: ext/apidoc/_extension.py:157
+#: ext/autodoc/_legacy_class_based/_documenters.py:1057
#, python-format
-msgid "apidoc_modules item %i cannot create destination directory: %s"
+msgid ""
+"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
-#: ext/apidoc/_extension.py:178
+#: ext/autodoc/_legacy_class_based/_documenters.py:1764
#, python-format
-msgid "apidoc_modules item %i '%s' must be an int"
+msgid "missing attribute %s in object %s"
msgstr ""
-#: ext/apidoc/_extension.py:192
+#: ext/autodoc/_legacy_class_based/_documenters.py:1876
#, python-format
-msgid "apidoc_modules item %i '%s' must be a boolean"
+msgid "alias of TypeVar(%s)"
msgstr ""
-#: ext/apidoc/_extension.py:210
-#, python-format
-msgid "apidoc_modules item %i has unexpected keys: %s"
+#: builders/html/_build_info.py:32
+msgid "failed to read broken build info file (unknown version)"
msgstr ""
-#: ext/apidoc/_extension.py:247
-#, python-format
-msgid "apidoc_modules item %i '%s' must be a sequence"
+#: builders/html/_build_info.py:36
+msgid "failed to read broken build info file (missing config entry)"
msgstr ""
-#: ext/apidoc/_extension.py:256
-#, python-format
-msgid "apidoc_modules item %i '%s' must contain strings"
+#: builders/html/_build_info.py:39
+msgid "failed to read broken build info file (missing tags entry)"
msgstr ""
-#: ext/apidoc/_generate.py:69
+#: builders/html/__init__.py:114
#, python-format
-msgid "Would create file %s."
-msgstr ""
+msgid "The HTML pages are in %(outdir)s."
+msgstr "صفحة الHTML موجودة في %(outdir)s"
-#: ext/intersphinx/_resolve.py:49
+#: builders/html/__init__.py:337
#, python-format
-msgid "(in %s v%s)"
+msgid "Failed to read build info file: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:51
+#: builders/html/__init__.py:353
+msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+msgstr ""
+
+#: builders/html/__init__.py:355
+msgid "building [html]: "
+msgstr ""
+
+#: builders/html/__init__.py:372
#, python-format
-msgid "(in %s)"
+msgid ""
+"template %s has been changed since the previous build, all docs will be "
+"rebuilt"
msgstr ""
-#: ext/intersphinx/_resolve.py:108
+#: builders/html/__init__.py:496
+msgid "index"
+msgstr "الفهرس"
+
+#: builders/html/__init__.py:549
#, python-format
-msgid "inventory '%s': duplicate matches found for %s:%s"
+msgid "Logo of %s"
msgstr ""
-#: ext/intersphinx/_resolve.py:118
+#: builders/html/__init__.py:578
+msgid "next"
+msgstr "التالي"
+
+#: builders/html/__init__.py:587
+msgid "previous"
+msgstr "السابق"
+
+#: builders/html/__init__.py:685
+msgid "generating indices"
+msgstr "إنشاء الفهرس"
+
+#: builders/html/__init__.py:700
+msgid "writing additional pages"
+msgstr "كتابة صفحات إضافية "
+
+#: builders/html/__init__.py:783
#, python-format
-msgid "inventory '%s': multiple matches found for %s:%s"
+msgid "cannot copy image file '%s': %s"
msgstr ""
-#: ext/intersphinx/_resolve.py:383
+#: builders/html/__init__.py:795
+msgid "copying downloadable files... "
+msgstr "نسخ الملفات القابلة للتحميل للنسخ..."
+
+#: builders/html/__init__.py:807
#, python-format
-msgid "inventory for external cross-reference not found: %r"
+msgid "cannot copy downloadable file %r: %s"
+msgstr "غير قادر على نسخ الملفات القابلة للتحميل %r : %s"
+
+#: builders/html/__init__.py:853
+#, python-format
+msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:392
+#: builders/html/__init__.py:871
#, python-format
-msgid "invalid external cross-reference suffix: %r"
+msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:403
+#: builders/html/__init__.py:906
+msgid "copying static files"
+msgstr ""
+
+#: builders/html/__init__.py:923
#, python-format
-msgid "domain for external cross-reference not found: %r"
+msgid "cannot copy static file %r"
+msgstr "غير قادر على نسخ الملف الثابت %r"
+
+#: builders/html/__init__.py:928
+msgid "copying extra files"
+msgstr "نسخ ملفات إضافية"
+
+#: builders/html/__init__.py:938
+#, python-format
+msgid "cannot copy extra file %r"
+msgstr "غير قادر على نسخ المف الإضافي %r"
+
+#: builders/html/__init__.py:944
+#, python-format
+msgid "Failed to write build info file: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:619
+#: builders/html/__init__.py:994
+msgid ""
+"search index couldn't be loaded, but not all documents will be built: the "
+"index will be incomplete."
+msgstr ""
+
+#: builders/html/__init__.py:1038
#, python-format
-msgid "external %s:%s reference target not found: %s"
+msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr ""
-#: ext/intersphinx/_load.py:60
+#: builders/html/__init__.py:1204
#, python-format
msgid ""
-"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
-"identifiers must be non-empty strings."
+"a Unicode error occurred when rendering the page %s. Please make sure all "
+"config values that contain non-ASCII content are Unicode strings."
msgstr ""
-#: ext/intersphinx/_load.py:71
+#: builders/html/__init__.py:1217
#, python-format
msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
-"or list."
+"The '%s' theme does not support this version of Sphinx, because it uses the "
+"'style' field in HTML templates, which was was deprecated in Sphinx 5.1 and"
+" removed in Sphinx 7.0. The theme must be updated to use the 'styles' field "
+"instead. See https://www.sphinx-"
+"doc.org/en/master/development/html_themes/templating.html#styles"
msgstr ""
-#: ext/intersphinx/_load.py:82
+#: builders/html/__init__.py:1225
#, python-format
msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
-" inventory locations) pair."
+"An error happened in rendering the page %s.\n"
+"Reason: %r"
+msgstr ""
+
+#: builders/html/__init__.py:1258
+msgid "dumping object inventory"
msgstr ""
-#: ext/intersphinx/_load.py:93
+#: builders/html/__init__.py:1266
#, python-format
-msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique non-empty strings."
+msgid "dumping search index in %s"
msgstr ""
-#: ext/intersphinx/_load.py:102
+#: builders/html/__init__.py:1313
#, python-format
-msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique (other instance in intersphinx_mapping[%r])."
+msgid "invalid js_file: %r, ignored"
msgstr ""
-#: ext/intersphinx/_load.py:121
+#: builders/html/__init__.py:1347
+msgid "Many math_renderers are registered. But no math_renderer is selected."
+msgstr ""
+
+#: builders/html/__init__.py:1351
#, python-format
-msgid ""
-"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
-"Inventory locations must be non-empty strings or None."
+msgid "Unknown math_renderer %r is given."
msgstr ""
-#: ext/intersphinx/_load.py:131
-msgid "Invalid `intersphinx_mapping` configuration (1 error)."
+#: builders/html/__init__.py:1365
+#, python-format
+msgid "html_extra_path entry %r is placed inside outdir"
msgstr ""
-#: ext/intersphinx/_load.py:134
+#: builders/html/__init__.py:1370
#, python-format
-msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
+msgid "html_extra_path entry %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:157
-msgid "An invalid intersphinx_mapping entry was added after normalisation."
+#: builders/html/__init__.py:1385
+#, python-format
+msgid "html_static_path entry %r is placed inside outdir"
msgstr ""
-#: ext/intersphinx/_load.py:261
+#: builders/html/__init__.py:1390
#, python-format
-msgid "loading intersphinx inventory '%s' from %s ..."
+msgid "html_static_path entry %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:287
+#: builders/html/__init__.py:1401 builders/latex/__init__.py:497
+#, python-format
+msgid "logo file %r does not exist"
+msgstr "ملف الشعار %r غير موجود"
+
+#: builders/html/__init__.py:1412
+#, python-format
+msgid "favicon file %r does not exist"
+msgstr "ملف الايقونة %r غير موجود"
+
+#: builders/html/__init__.py:1425
+#, python-format
msgid ""
-"encountered some issues with some of the inventories, but they had working "
-"alternatives:"
+"Values in 'html_sidebars' must be a list of strings. At least one pattern "
+"has a string value: %s. Change to `html_sidebars = %r`."
msgstr ""
-#: ext/intersphinx/_load.py:297
-msgid "failed to reach any of the inventories with the following issues:"
+#: builders/html/__init__.py:1438
+msgid ""
+"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
+"configuration options)"
msgstr ""
-#: ext/intersphinx/_load.py:361
+#: builders/html/__init__.py:1454
#, python-format
-msgid "intersphinx inventory has moved: %s -> %s"
+msgid "%s %s documentation"
msgstr ""
-#: ext/autodoc/__init__.py:150
+#: builders/latex/theming.py:87
#, python-format
-msgid "invalid value for member-order option: %s"
+msgid "%r doesn't have \"theme\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:158
+#: builders/latex/theming.py:90
#, python-format
-msgid "invalid value for class-doc-from option: %s"
+msgid "%r doesn't have \"%s\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:460
-#, python-format
-msgid "invalid signature for auto%s (%r)"
+#: builders/latex/transforms.py:120
+msgid "Failed to get a docname!"
msgstr ""
-#: ext/autodoc/__init__.py:579
+#: builders/latex/transforms.py:121
#, python-format
-msgid "error while formatting arguments for %s: %s"
+msgid "Failed to get a docname for source %r!"
msgstr ""
-#: ext/autodoc/__init__.py:898
+#: builders/latex/transforms.py:487
#, python-format
-msgid ""
-"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
-"%s"
+msgid "No footnote was found for given reference node %r"
msgstr ""
-#: ext/autodoc/__init__.py:1021
+#: builders/latex/__init__.py:115
#, python-format
+msgid "The LaTeX files are in %(outdir)s."
+msgstr ""
+
+#: builders/latex/__init__.py:118
msgid ""
-"don't know which module to import for autodocumenting %r (try placing a "
-"\"module\" or \"currentmodule\" directive in the document, or giving an "
-"explicit module name)"
+"\n"
+"Run 'make' in that directory to run these through (pdf)latex\n"
+"(use `make latexpdf' here to do that automatically)."
msgstr ""
-#: ext/autodoc/__init__.py:1080
-#, python-format
-msgid "A mocked object is detected: %r"
+#: builders/latex/__init__.py:156
+msgid "no \"latex_documents\" config value found; no documents will be written"
msgstr ""
-#: ext/autodoc/__init__.py:1103
+#: builders/latex/__init__.py:167
#, python-format
-msgid "error while formatting signature for %s: %s"
+msgid "\"latex_documents\" config value references unknown document %s"
msgstr ""
-#: ext/autodoc/__init__.py:1177
-msgid "\"::\" in automodule name doesn't make sense"
+#: builders/latex/__init__.py:421
+msgid "copying TeX support files"
msgstr ""
-#: ext/autodoc/__init__.py:1185
-#, python-format
-msgid "signature arguments or return annotation given for automodule %s"
+#: builders/latex/__init__.py:458
+msgid "copying additional files"
msgstr ""
-#: ext/autodoc/__init__.py:1201
+#: builders/latex/__init__.py:529
#, python-format
-msgid ""
-"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
-"__all__"
+msgid "Unknown configure key: latex_elements[%r], ignored."
msgstr ""
-#: ext/autodoc/__init__.py:1278
+#: builders/latex/__init__.py:537
#, python-format
-msgid ""
-"missing attribute mentioned in :members: option: module %s, attribute %s"
+msgid "Unknown theme option: latex_theme_options[%r], ignored."
msgstr ""
-#: ext/autodoc/__init__.py:1505 ext/autodoc/__init__.py:1593
-#: ext/autodoc/__init__.py:3127
+#: environment/collectors/toctree.py:259
#, python-format
-msgid "Failed to get a function signature for %s: %s"
+msgid "%s is already assigned section numbers (nested numbered toctree?)"
msgstr ""
-#: ext/autodoc/__init__.py:1828
+#: environment/collectors/asset.py:98
#, python-format
-msgid "Failed to get a constructor signature for %s: %s"
+msgid "image file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:1966
+#: environment/collectors/asset.py:126
#, python-format
-msgid "Bases: %s"
+msgid "image file %s not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:1985
+#: environment/collectors/asset.py:165
#, python-format
-msgid "missing attribute %s in object %s"
+msgid "download file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2081 ext/autodoc/__init__.py:2110
-#: ext/autodoc/__init__.py:2204
+#: environment/adapters/toctree.py:335
#, python-format
-msgid "alias of %s"
+msgid "circular toctree references detected, ignoring: %s <- %s"
msgstr ""
-#: ext/autodoc/__init__.py:2097
+#: environment/adapters/toctree.py:360
#, python-format
-msgid "alias of TypeVar(%s)"
+msgid ""
+"toctree contains reference to document %r that doesn't have a title: no link"
+" will be generated"
msgstr ""
-#: ext/autodoc/__init__.py:2456 ext/autodoc/__init__.py:2576
+#: environment/adapters/toctree.py:375
#, python-format
-msgid "Failed to get a method signature for %s: %s"
+msgid "toctree contains reference to non-included document %r"
msgstr ""
-#: ext/autodoc/__init__.py:2720
+#: environment/adapters/toctree.py:378
#, python-format
-msgid "Invalid __slots__ found on %s. Ignored."
+msgid "toctree contains reference to non-existing document %r"
msgstr ""
-#: ext/autodoc/preserve_defaults.py:195
+#: environment/adapters/indexentries.py:122
#, python-format
-msgid "Failed to parse a default argument value for %r: %s"
+msgid "see %s"
msgstr ""
-#: ext/autodoc/type_comment.py:151
+#: environment/adapters/indexentries.py:132
#, python-format
-msgid "Failed to update signature for %r: parameter not found: %s"
+msgid "see also %s"
msgstr ""
-#: ext/autodoc/type_comment.py:154
+#: environment/adapters/indexentries.py:140
#, python-format
-msgid "Failed to parse type_comment for %r: %s"
+msgid "unknown index entry type %r"
msgstr ""
diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo
index 0ce9ef8dfcc..fc9f176c432 100644
Binary files a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo differ
diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po
index 083d7a9bb34..de995394dda 100644
--- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po
+++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2025-02-18 00:33+0000\n"
+"POT-Creation-Date: 2025-12-01 16:14+0000\n"
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
"Last-Translator: Nikolay Stoykov , 2024\n"
"Language-Team: Bulgarian (http://app.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n"
@@ -19,6 +19,127 @@ msgstr ""
"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: roles.py:205
+#, python-format
+msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgstr ""
+
+#: roles.py:228
+#, python-format
+msgid "invalid CVE number %s"
+msgstr ""
+
+#: roles.py:250
+#, python-format
+msgid "Common Weakness Enumeration; CWE %s"
+msgstr ""
+
+#: roles.py:273
+#, python-format
+msgid "invalid CWE number %s"
+msgstr ""
+
+#: roles.py:293
+#, python-format
+msgid "Python Enhancement Proposals; PEP %s"
+msgstr ""
+
+#: roles.py:316
+#, python-format
+msgid "invalid PEP number %s"
+msgstr ""
+
+#: roles.py:354
+#, python-format
+msgid "invalid RFC number %s"
+msgstr ""
+
+#: theming.py:117
+#, python-format
+msgid ""
+"Theme configuration sections other than [theme] and [options] are not "
+"supported (tried to get a value from %r)."
+msgstr ""
+
+#: theming.py:122
+#, python-format
+msgid "setting %s.%s occurs in none of the searched theme configs"
+msgstr ""
+
+#: theming.py:137
+#, python-format
+msgid "unsupported theme option %r given"
+msgstr ""
+
+#: theming.py:218
+#, python-format
+msgid "file %r on theme path is not a valid zipfile or contains no theme"
+msgstr ""
+
+#: theming.py:238
+#, python-format
+msgid "no theme named %r found (missing theme.toml?)"
+msgstr ""
+
+#: theming.py:278
+#, python-format
+msgid "The %r theme has circular inheritance"
+msgstr ""
+
+#: theming.py:286
+#, python-format
+msgid ""
+"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
+"are: %s"
+msgstr ""
+
+#: theming.py:292
+#, python-format
+msgid "The %r theme has too many ancestors"
+msgstr ""
+
+#: theming.py:320
+#, python-format
+msgid "no theme configuration file found in %r"
+msgstr ""
+
+#: theming.py:345 theming.py:398
+#, python-format
+msgid "theme %r doesn't have the \"theme\" table"
+msgstr ""
+
+#: theming.py:349
+#, python-format
+msgid "The %r theme \"[theme]\" table is not a table"
+msgstr ""
+
+#: theming.py:353 theming.py:401
+#, python-format
+msgid "The %r theme must define the \"theme.inherit\" setting"
+msgstr ""
+
+#: theming.py:357
+#, python-format
+msgid "The %r theme \"[options]\" table is not a table"
+msgstr ""
+
+#: theming.py:376
+#, python-format
+msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+msgstr ""
+
+#: project.py:72
+#, python-format
+msgid ""
+"multiple files found for the document \"%s\": %s\n"
+"Use %r for the build."
+msgstr ""
+
+#: project.py:87
+#, python-format
+msgid "Ignored unreadable document %r."
+msgstr ""
+
#: extension.py:58
#, python-format
msgid ""
@@ -33,127 +154,154 @@ msgid ""
"cannot be built with the loaded version (%s)."
msgstr ""
-#: application.py:212
+#: highlighting.py:170
+#, python-format
+msgid "Pygments lexer name %r is not known"
+msgstr ""
+
+#: highlighting.py:209
+#, python-format
+msgid ""
+"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
+"Retrying in relaxed mode."
+msgstr ""
+
+#: events.py:92
+#, python-format
+msgid "Event %r already present"
+msgstr ""
+
+#: events.py:386
+#, python-format
+msgid "Unknown event name: %s"
+msgstr ""
+
+#: events.py:451
+#, python-format
+msgid "Handler %r for event %r threw an exception"
+msgstr ""
+
+#: application.py:218
#, python-format
msgid "Cannot find source directory (%s)"
msgstr "Не може да се намери изходна директория (%s)"
-#: application.py:217
+#: application.py:223
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr "Изходната директория (%s) не е директория"
-#: application.py:222
+#: application.py:228
msgid "Source directory and destination directory cannot be identical"
msgstr "Изходната директория и целевата директория не могат да бъдат идентични"
-#: application.py:252
+#: application.py:258
#, python-format
msgid "Running Sphinx v%s"
msgstr ""
-#: application.py:278
+#: application.py:286
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr ""
-#: application.py:297
+#: application.py:305
msgid "making output directory"
msgstr "създаване на изходна директория"
-#: application.py:302 registry.py:538
+#: application.py:310 registry.py:540
#, python-format
msgid "while setting up extension %s:"
msgstr ""
-#: application.py:309
+#: application.py:317
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
-#: application.py:346
+#: application.py:360
#, python-format
msgid "loading translations [%s]... "
msgstr ""
-#: application.py:370 util/display.py:89
+#: application.py:384 util/display.py:89
msgid "done"
msgstr ""
-#: application.py:372
+#: application.py:386
msgid "not available for built-in messages"
msgstr ""
-#: application.py:386
+#: application.py:400
msgid "loading pickled environment"
msgstr ""
-#: application.py:394
+#: application.py:408
#, python-format
msgid "failed: %s"
msgstr ""
-#: application.py:407
+#: application.py:423
msgid "No builder selected, using default: html"
msgstr ""
-#: application.py:439
+#: application.py:455
msgid "build finished with problems."
msgstr ""
-#: application.py:441
+#: application.py:457
msgid "build succeeded."
msgstr ""
-#: application.py:446
+#: application.py:462
msgid ""
"build finished with problems, 1 warning (with warnings treated as errors)."
msgstr ""
-#: application.py:450
+#: application.py:466
msgid "build finished with problems, 1 warning."
msgstr ""
-#: application.py:452
+#: application.py:468
msgid "build succeeded, 1 warning."
msgstr ""
-#: application.py:458
+#: application.py:474
#, python-format
msgid ""
"build finished with problems, %s warnings (with warnings treated as errors)."
msgstr ""
-#: application.py:462
+#: application.py:478
#, python-format
msgid "build finished with problems, %s warnings."
msgstr ""
-#: application.py:464
+#: application.py:480
#, python-format
msgid "build succeeded, %s warnings."
msgstr ""
-#: application.py:1026
+#: application.py:1020
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
-#: application.py:1119
+#: application.py:1113
#, python-format
msgid "directive %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1145 application.py:1173
+#: application.py:1139 application.py:1167
#, python-format
msgid "role %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1770
+#: application.py:1766
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@@ -161,12 +309,12 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1775
+#: application.py:1771
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
-#: application.py:1779
+#: application.py:1775
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@@ -174,82 +322,214 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1784
+#: application.py:1780
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
-#: application.py:1792 application.py:1796
+#: application.py:1788 application.py:1792
#, python-format
msgid "doing serial %s"
msgstr ""
-#: config.py:355
+#: registry.py:162
#, python-format
-msgid "config directory doesn't contain a conf.py file (%s)"
+msgid "Builder class %s has no \"name\" attribute"
+msgstr ""
+
+#: registry.py:166
+#, python-format
+msgid "Builder %r already exists (in module %s)"
+msgstr ""
+
+#: registry.py:182
+#, python-format
+msgid "Builder name %s not registered or available through entry point"
+msgstr ""
+
+#: registry.py:192
+#, python-format
+msgid "Builder name %s not registered"
+msgstr ""
+
+#: registry.py:199
+#, python-format
+msgid "domain %s already registered"
+msgstr ""
+
+#: registry.py:223 registry.py:244 registry.py:257
+#, python-format
+msgid "domain %s not yet registered"
+msgstr ""
+
+#: registry.py:230
+#, python-format
+msgid "The %r directive is already registered to domain %s"
+msgstr ""
+
+#: registry.py:248
+#, python-format
+msgid "The %r role is already registered to domain %s"
+msgstr ""
+
+#: registry.py:261
+#, python-format
+msgid "The %r index is already registered to domain %s"
+msgstr ""
+
+#: registry.py:308
+#, python-format
+msgid "The %r object_type is already registered"
+msgstr ""
+
+#: registry.py:339
+#, python-format
+msgid "The %r crossref_type is already registered"
+msgstr ""
+
+#: registry.py:348
+#, python-format
+msgid "source_suffix %r is already registered"
+msgstr ""
+
+#: registry.py:358
+#, python-format
+msgid "source_parser for %r is already registered"
+msgstr ""
+
+#: registry.py:367
+#, python-format
+msgid "Source parser for %s not registered"
+msgstr ""
+
+#: registry.py:388
+#, python-format
+msgid "Translator for %r already exists"
+msgstr ""
+
+#: registry.py:405
+#, python-format
+msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
msgstr ""
-#: config.py:366
+#: registry.py:498
+#, python-format
+msgid "enumerable_node %r already registered"
+msgstr ""
+
+#: registry.py:514
+#, python-format
+msgid "math renderer %s is already registered"
+msgstr ""
+
+#: registry.py:531
+#, python-format
msgid ""
-"Invalid configuration value found: 'language = None'. Update your "
-"configuration to a valid language code. Falling back to 'en' (English)."
+"the extension %r was already merged with Sphinx since version %s; this "
+"extension is ignored."
+msgstr ""
+
+#: registry.py:545
+msgid "Original exception:\n"
+msgstr ""
+
+#: registry.py:547
+#, python-format
+msgid "Could not import extension %s"
+msgstr ""
+
+#: registry.py:554
+#, python-format
+msgid ""
+"extension %r has no setup() function; is it really a Sphinx extension "
+"module?"
+msgstr ""
+
+#: registry.py:567
+#, python-format
+msgid ""
+"The %s extension used by this project needs at least Sphinx v%s; it "
+"therefore cannot be built with this version."
+msgstr ""
+
+#: registry.py:579
+#, python-format
+msgid ""
+"extension %r returned an unsupported object from its setup() function; it "
+"should return None or a metadata dictionary"
+msgstr ""
+
+#: registry.py:605
+#, python-format
+msgid "`None` is not a valid filetype for %r."
+msgstr ""
+
+#: config.py:351
+#, python-format
+msgid "config directory doesn't contain a conf.py file (%s)"
msgstr ""
-#: config.py:394
+#: config.py:374
#, python-format
msgid "'%s' must be '0' or '1', got '%s'"
msgstr ""
-#: config.py:399
+#: config.py:379
#, python-format
msgid ""
"cannot override dictionary config setting %r, ignoring (use %r to set "
"individual elements)"
msgstr ""
-#: config.py:411
+#: config.py:391
#, python-format
msgid "invalid number %r for config value %r, ignoring"
msgstr ""
-#: config.py:419
+#: config.py:399
#, python-format
msgid "cannot override config setting %r with unsupported type, ignoring"
msgstr ""
-#: config.py:442
+#: config.py:422
#, python-format
msgid "unknown config value %r in override, ignoring"
msgstr ""
-#: config.py:496
+#: config.py:476
#, python-format
msgid "No such config value: %r"
msgstr ""
-#: config.py:524
+#: config.py:504
#, python-format
msgid "Config value %r already present"
msgstr ""
-#: config.py:561
+#: config.py:541
#, python-format
msgid ""
"cannot cache unpickleable configuration value: %r (because it contains a "
"function, class, or module object)"
msgstr ""
-#: config.py:603
+#: config.py:577
+msgid ""
+"Invalid configuration value found: 'language = None'. Update your "
+"configuration to a valid language code. Falling back to 'en' (English)."
+msgstr ""
+
+#: config.py:599
#, python-format
msgid "There is a syntax error in your configuration file: %s\n"
msgstr ""
-#: config.py:607
+#: config.py:603
msgid ""
"The configuration file (or one of the modules it imports) called sys.exit()"
msgstr ""
-#: config.py:615
+#: config.py:611
#, python-format
msgid ""
"There is a programmable error in your configuration file:\n"
@@ -257,491 +537,648 @@ msgid ""
"%s"
msgstr ""
-#: config.py:637
+#: config.py:633
#, python-format
msgid "Failed to convert %r to a frozenset"
msgstr ""
-#: config.py:655 config.py:663
+#: config.py:651 config.py:659
#, python-format
msgid "Converting `source_suffix = %r` to `source_suffix = %r`."
msgstr ""
-#: config.py:669
+#: config.py:665
#, python-format
msgid ""
"The config value `source_suffix' expects a dictionary, a string, or a list "
"of strings. Got `%r' instead (type %s)."
msgstr ""
-#: config.py:690
+#: config.py:686
#, python-format
msgid "Section %s"
msgstr ""
-#: config.py:691
+#: config.py:687
#, python-format
msgid "Fig. %s"
msgstr ""
-#: config.py:692
+#: config.py:688
#, python-format
msgid "Table %s"
msgstr ""
-#: config.py:693
+#: config.py:689
#, python-format
msgid "Listing %s"
msgstr ""
-#: config.py:802
+#: config.py:798
#, python-brace-format
msgid ""
"The config value `{name}` has to be a one of {candidates}, but `{current}` "
"is given."
msgstr ""
-#: config.py:833
+#: config.py:829
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}'; expected "
"{permitted}."
msgstr ""
-#: config.py:850
+#: config.py:846
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}', defaults to "
"`{default.__name__}'."
msgstr ""
-#: config.py:862
+#: config.py:858
#, python-format
msgid "primary_domain %r not found, ignored."
msgstr ""
-#: config.py:882
+#: config.py:878
msgid ""
"Sphinx now uses \"index\" as the master document by default. To keep pre-2.0"
" behaviour, set \"master_doc = 'contents'\"."
msgstr ""
-#: highlighting.py:170
-#, python-format
-msgid "Pygments lexer name %r is not known"
+#: config.py:892
+msgid ""
+"Support for source encodings other than UTF-8 is deprecated and will be "
+"removed in Sphinx 10. Please comment at https://github.com/sphinx-"
+"doc/sphinx/issues/13665 if this causes a problem."
msgstr ""
-#: highlighting.py:209
-#, python-format
-msgid ""
-"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
-"Retrying in relaxed mode."
+#: environment/__init__.py:89
+msgid "new config"
msgstr ""
-#: theming.py:115
-#, python-format
-msgid ""
-"Theme configuration sections other than [theme] and [options] are not "
-"supported (tried to get a value from %r)."
+#: environment/__init__.py:90
+msgid "config changed"
msgstr ""
-#: theming.py:120
-#, python-format
-msgid "setting %s.%s occurs in none of the searched theme configs"
+#: environment/__init__.py:91
+msgid "extensions changed"
msgstr ""
-#: theming.py:135
-#, python-format
-msgid "unsupported theme option %r given"
+#: environment/__init__.py:261
+msgid "build environment version not current"
msgstr ""
-#: theming.py:208
-#, python-format
-msgid "file %r on theme path is not a valid zipfile or contains no theme"
+#: environment/__init__.py:263
+msgid "source directory has changed"
msgstr ""
-#: theming.py:228
+#: environment/__init__.py:350
#, python-format
-msgid "no theme named %r found (missing theme.toml?)"
+msgid "The configuration has changed (1 option: %r)"
msgstr ""
-#: theming.py:268
+#: environment/__init__.py:355
#, python-format
-msgid "The %r theme has circular inheritance"
+msgid "The configuration has changed (%d options: %s)"
msgstr ""
-#: theming.py:276
+#: environment/__init__.py:361
#, python-format
+msgid "The configuration has changed (%d options: %s, ...)"
+msgstr ""
+
+#: environment/__init__.py:404
msgid ""
-"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
-"are: %s"
+"This environment is incompatible with the selected builder, please choose "
+"another doctree directory."
msgstr ""
-#: theming.py:282
+#: environment/__init__.py:518
#, python-format
-msgid "The %r theme has too many ancestors"
+msgid "Failed to scan documents in %s: %r"
msgstr ""
-#: theming.py:310
+#: environment/__init__.py:645 ext/intersphinx/_resolve.py:238
#, python-format
-msgid "no theme configuration file found in %r"
+msgid "Domain %r is not registered"
msgstr ""
-#: theming.py:335 theming.py:388
-#, python-format
-msgid "theme %r doesn't have the \"theme\" table"
+#: environment/__init__.py:811
+msgid "document isn't included in any toctree"
msgstr ""
-#: theming.py:339
-#, python-format
-msgid "The %r theme \"[theme]\" table is not a table"
+#: environment/__init__.py:922
+msgid "self referenced toctree found. Ignored."
msgstr ""
-#: theming.py:343 theming.py:391
+#: environment/__init__.py:952
#, python-format
-msgid "The %r theme must define the \"theme.inherit\" setting"
+msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
msgstr ""
-#: theming.py:347
-#, python-format
-msgid "The %r theme \"[options]\" table is not a table"
+#: locale/__init__.py:229
+msgid "Attention"
msgstr ""
-#: theming.py:366
-#, python-format
-msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+#: locale/__init__.py:230
+msgid "Caution"
msgstr ""
-#: events.py:77
-#, python-format
-msgid "Event %r already present"
+#: locale/__init__.py:231
+msgid "Danger"
msgstr ""
-#: events.py:370
-#, python-format
-msgid "Unknown event name: %s"
+#: locale/__init__.py:232
+msgid "Error"
msgstr ""
-#: events.py:416
-#, python-format
-msgid "Handler %r for event %r threw an exception"
+#: locale/__init__.py:233
+msgid "Hint"
msgstr ""
-#: project.py:72
-#, python-format
-msgid ""
-"multiple files found for the document \"%s\": %s\n"
-"Use %r for the build."
+#: locale/__init__.py:234
+msgid "Important"
msgstr ""
-#: project.py:87
-#, python-format
-msgid "Ignored unreadable document %r."
+#: locale/__init__.py:235
+msgid "Note"
msgstr ""
-#: registry.py:167
-#, python-format
-msgid "Builder class %s has no \"name\" attribute"
+#: locale/__init__.py:236
+msgid "See also"
msgstr ""
-#: registry.py:171
-#, python-format
-msgid "Builder %r already exists (in module %s)"
+#: locale/__init__.py:237
+msgid "Tip"
msgstr ""
-#: registry.py:187
-#, python-format
-msgid "Builder name %s not registered or available through entry point"
+#: locale/__init__.py:238
+msgid "Warning"
msgstr ""
-#: registry.py:197
+#: builders/texinfo.py:41
#, python-format
-msgid "Builder name %s not registered"
+msgid "The Texinfo files are in %(outdir)s."
msgstr ""
-#: registry.py:204
-#, python-format
-msgid "domain %s already registered"
+#: builders/texinfo.py:44
+msgid ""
+"\n"
+"Run 'make' in that directory to run these through makeinfo\n"
+"(use 'make info' here to do that automatically)."
msgstr ""
-#: registry.py:228 registry.py:249 registry.py:262
-#, python-format
-msgid "domain %s not yet registered"
+#: builders/texinfo.py:73
+msgid "no \"texinfo_documents\" config value found; no documents will be written"
msgstr ""
-#: registry.py:235
+#: builders/texinfo.py:85
#, python-format
-msgid "The %r directive is already registered to domain %s"
+msgid "\"texinfo_documents\" config value references unknown document %s"
msgstr ""
-#: registry.py:253
+#: builders/latex/__init__.py:310 builders/texinfo.py:105
#, python-format
-msgid "The %r role is already registered to domain %s"
+msgid "processing %s"
msgstr ""
-#: registry.py:266
-#, python-format
-msgid "The %r index is already registered to domain %s"
+#: builders/latex/__init__.py:332 builders/manpage.py:54
+#: builders/singlehtml.py:176 builders/texinfo.py:111
+msgid "writing"
msgstr ""
-#: registry.py:313
-#, python-format
-msgid "The %r object_type is already registered"
+#: builders/latex/__init__.py:398 builders/texinfo.py:160
+msgid "resolving references..."
msgstr ""
-#: registry.py:344
-#, python-format
-msgid "The %r crossref_type is already registered"
+#: builders/latex/__init__.py:409 builders/texinfo.py:170
+msgid " (in "
msgstr ""
-#: registry.py:353
-#, python-format
-msgid "source_suffix %r is already registered"
+#: builders/_epub_base.py:425 builders/html/__init__.py:768
+#: builders/latex/__init__.py:474 builders/texinfo.py:186
+msgid "copying images... "
msgstr ""
-#: registry.py:363
+#: builders/_epub_base.py:447 builders/latex/__init__.py:489
+#: builders/texinfo.py:203
#, python-format
-msgid "source_parser for %r is already registered"
+msgid "cannot copy image file %r: %s"
msgstr ""
-#: registry.py:372
-#, python-format
-msgid "Source parser for %s not registered"
+#: builders/texinfo.py:210
+msgid "copying Texinfo support files"
msgstr ""
-#: registry.py:390
+#: builders/texinfo.py:218
#, python-format
-msgid "Translator for %r already exists"
+msgid "error writing file Makefile: %s"
msgstr ""
-#: registry.py:407
+#: builders/manpage.py:37
#, python-format
-msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
+msgid "The manual pages are in %(outdir)s."
msgstr ""
-#: registry.py:496
-#, python-format
-msgid "enumerable_node %r already registered"
+#: builders/manpage.py:45
+msgid "no \"man_pages\" config value found; no manual pages will be written"
msgstr ""
-#: registry.py:512
+#: builders/manpage.py:64
#, python-format
-msgid "math renderer %s is already registered"
+msgid "\"man_pages\" config value references unknown document %s"
msgstr ""
-#: registry.py:529
+#: builders/singlehtml.py:35
#, python-format
-msgid ""
-"the extension %r was already merged with Sphinx since version %s; this "
-"extension is ignored."
+msgid "The HTML page is in %(outdir)s."
msgstr ""
-#: registry.py:543
-msgid "Original exception:\n"
+#: builders/singlehtml.py:171
+msgid "assembling single document"
msgstr ""
-#: registry.py:545
-#, python-format
-msgid "Could not import extension %s"
+#: builders/singlehtml.py:189
+msgid "writing additional files"
msgstr ""
-#: registry.py:552
-#, python-format
-msgid ""
-"extension %r has no setup() function; is it really a Sphinx extension "
-"module?"
+#: builders/dummy.py:19
+msgid "The dummy builder generates no files."
msgstr ""
-#: registry.py:565
+#: builders/gettext.py:243
#, python-format
-msgid ""
-"The %s extension used by this project needs at least Sphinx v%s; it "
-"therefore cannot be built with this version."
+msgid "The message catalogs are in %(outdir)s."
msgstr ""
-#: registry.py:577
+#: builders/__init__.py:400 builders/gettext.py:264
#, python-format
-msgid ""
-"extension %r returned an unsupported object from its setup() function; it "
-"should return None or a metadata dictionary"
+msgid "building [%s]: "
msgstr ""
-#: registry.py:612
+#: builders/gettext.py:265
#, python-format
-msgid "`None` is not a valid filetype for %r."
+msgid "targets for %d template files"
msgstr ""
-#: roles.py:206
-#, python-format
-msgid "Common Vulnerabilities and Exposures; CVE %s"
+#: builders/gettext.py:271
+msgid "reading templates... "
msgstr ""
-#: roles.py:229
-#, python-format
-msgid "invalid CVE number %s"
+#: builders/gettext.py:310
+msgid "writing message catalogs... "
msgstr ""
-#: roles.py:251
+#: builders/linkcheck.py:87
#, python-format
-msgid "Common Weakness Enumeration; CWE %s"
+msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
msgstr ""
-#: roles.py:274
+#: builders/linkcheck.py:159
#, python-format
-msgid "invalid CWE number %s"
+msgid "broken link: %s (%s)"
msgstr ""
-#: roles.py:294
+#: builders/linkcheck.py:561
#, python-format
-msgid "Python Enhancement Proposals; PEP %s"
+msgid "Anchor '%s' not found"
msgstr ""
-#: roles.py:317
-#, python-format
-msgid "invalid PEP number %s"
+#: builders/linkcheck.py:789
+msgid "linkcheck_allowed_redirects. Expected a dictionary."
msgstr ""
-#: roles.py:355
+#: builders/linkcheck.py:799
#, python-format
-msgid "invalid RFC number %s"
+msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
-#: ext/linkcode.py:86 ext/viewcode.py:226
-msgid "[source]"
+#: builders/epub3.py:83
+#, python-format
+msgid "The ePub file is in %(outdir)s."
msgstr ""
-#: ext/viewcode.py:289
-msgid "highlighting module code... "
+#: builders/epub3.py:188
+msgid "writing nav.xhtml file..."
msgstr ""
-#: ext/viewcode.py:320
-msgid "[docs]"
+#: builders/epub3.py:224
+msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:346
-msgid "Module code"
+#: builders/epub3.py:230
+msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
msgstr ""
-#: ext/viewcode.py:353
-#, python-format
-msgid "Source code for %s
"
+#: builders/epub3.py:235
+msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:380
-msgid "Overview: module code"
+#: builders/epub3.py:241
+msgid "conf value \"epub_author\" should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:381
-msgid "All modules for which code is available
"
+#: builders/epub3.py:245
+msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
msgstr ""
-#: ext/extlinks.py:82
-#, python-format
-msgid ""
-"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+#: builders/epub3.py:250
+msgid "conf value \"epub_description\" should not be empty for EPUB3"
msgstr ""
-#: ext/autosectionlabel.py:52
-#, python-format
-msgid "section \"%s\" gets labeled as \"%s\""
+#: builders/epub3.py:254
+msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
msgstr ""
-#: domains/std/__init__.py:833 domains/std/__init__.py:960
-#: ext/autosectionlabel.py:61
-#, python-format
-msgid "duplicate label %s, other instance in %s"
+#: builders/epub3.py:259
+msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
msgstr ""
-#: ext/imgmath.py:387 ext/mathjax.py:60
-msgid "Link to this equation"
+#: builders/epub3.py:265
+msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
msgstr ""
-#: ext/duration.py:90
-msgid ""
-"====================== slowest reading durations ======================="
+#: builders/epub3.py:268
+msgid "conf value \"version\" should not be empty for EPUB3"
msgstr ""
-#: ext/doctest.py:118
+#: builders/epub3.py:282 builders/html/__init__.py:1296
#, python-format
-msgid "missing '+' or '-' in '%s' option."
+msgid "invalid css_file: %r, ignored"
msgstr ""
-#: ext/doctest.py:124
+#: builders/xml.py:29
#, python-format
-msgid "'%s' is not a valid option."
+msgid "The XML files are in %(outdir)s."
msgstr ""
-#: ext/doctest.py:139
+#: builders/html/__init__.py:1242 builders/text.py:71 builders/xml.py:81
#, python-format
-msgid "'%s' is not a valid pyversion option"
+msgid "error writing file %s: %s"
msgstr ""
-#: ext/doctest.py:226
-msgid "invalid TestCode type"
+#: builders/xml.py:103
+#, python-format
+msgid "The pseudo-XML files are in %(outdir)s."
msgstr ""
-#: ext/doctest.py:297
+#: builders/_epub_base.py:223
#, python-format
-msgid ""
-"Testing of doctests in the sources finished, look at the results in "
-"%(outdir)s/output.txt."
+msgid "duplicated ToC entry found: %s"
msgstr ""
-#: ext/doctest.py:457
+#: builders/_epub_base.py:436
#, python-format
-msgid "no code/output in %s block at %s:%s"
+msgid "cannot read image file %r: copying it instead"
msgstr ""
-#: ext/doctest.py:568
+#: builders/_epub_base.py:467
#, python-format
-msgid "ignoring invalid doctest code: %r"
+msgid "cannot write image file %r: %s"
msgstr ""
-#: ext/imgmath.py:162
-#, python-format
-msgid ""
-"LaTeX command %r cannot be run (needed for math display), check the "
-"imgmath_latex setting"
+#: builders/_epub_base.py:479
+msgid "Pillow not found - copying image files"
msgstr ""
-#: ext/imgmath.py:181
-#, python-format
-msgid ""
-"%s command %r cannot be run (needed for math display), check the imgmath_%s "
-"setting"
+#: builders/_epub_base.py:514
+msgid "writing mimetype file..."
msgstr ""
-#: ext/imgmath.py:344
-#, python-format
-msgid "display latex %r: %s"
+#: builders/_epub_base.py:523
+msgid "writing META-INF/container.xml file..."
msgstr ""
-#: ext/imgmath.py:380
-#, python-format
-msgid "inline latex %r: %s"
+#: builders/_epub_base.py:561
+msgid "writing content.opf file..."
msgstr ""
-#: ext/coverage.py:48
+#: builders/_epub_base.py:594
#, python-format
-msgid "invalid regex %r in %s"
+msgid "unknown mimetype for %s, ignoring"
msgstr ""
-#: ext/coverage.py:140 ext/coverage.py:301
-#, python-format
-msgid "module %s could not be imported: %s"
+#: builders/_epub_base.py:749
+msgid "node has an invalid level"
msgstr ""
-#: ext/coverage.py:148
-#, python-format
+#: builders/_epub_base.py:769
+msgid "writing toc.ncx file..."
+msgstr ""
+
+#: builders/_epub_base.py:802
+#, python-format
+msgid "writing %s file..."
+msgstr ""
+
+#: builders/text.py:27
+#, python-format
+msgid "The text files are in %(outdir)s."
+msgstr ""
+
+#: builders/__init__.py:229
+#, python-format
+msgid "a suitable image for %s builder not found: %s (%s)"
+msgstr ""
+
+#: builders/__init__.py:237
+#, python-format
+msgid "a suitable image for %s builder not found: %s"
+msgstr ""
+
+#: builders/__init__.py:260
+msgid "building [mo]: "
+msgstr ""
+
+#: builders/__init__.py:263 builders/__init__.py:771 builders/__init__.py:795
+msgid "writing output... "
+msgstr ""
+
+#: builders/__init__.py:280
+#, python-format
+msgid "all of %d po files"
+msgstr ""
+
+#: builders/__init__.py:302
+#, python-format
+msgid "targets for %d po files that are specified"
+msgstr ""
+
+#: builders/__init__.py:314
+#, python-format
+msgid "targets for %d po files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:324
+msgid "all source files"
+msgstr ""
+
+#: builders/__init__.py:335
+#, python-format
+msgid "file %r given on command line does not exist, "
+msgstr ""
+
+#: builders/__init__.py:342
+#, python-format
+msgid ""
+"file %r given on command line is not under the source directory, ignoring"
+msgstr ""
+
+#: builders/__init__.py:353
+#, python-format
+msgid "file %r given on command line is not a valid document, ignoring"
+msgstr ""
+
+#: builders/__init__.py:366
+#, python-format
+msgid "%d source files given on command line"
+msgstr ""
+
+#: builders/__init__.py:382
+#, python-format
+msgid "targets for %d source files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:411
+msgid "looking for now-outdated files... "
+msgstr ""
+
+#: builders/__init__.py:415
+#, python-format
+msgid "%d found"
+msgstr ""
+
+#: builders/__init__.py:417
+msgid "none found"
+msgstr ""
+
+#: builders/__init__.py:424
+msgid "pickling environment"
+msgstr ""
+
+#: builders/__init__.py:431
+msgid "checking consistency"
+msgstr ""
+
+#: builders/__init__.py:435
+msgid "no targets are out of date."
+msgstr ""
+
+#: builders/__init__.py:474
+msgid "updating environment: "
+msgstr ""
+
+#: builders/__init__.py:499
+#, python-format
+msgid "%s added, %s changed, %s removed"
+msgstr ""
+
+#: builders/__init__.py:536
+#, python-format
+msgid ""
+"Sphinx is unable to load the master document (%s) because it matches a "
+"built-in exclude pattern %r. Please move your master document to a different"
+" location."
+msgstr ""
+
+#: builders/__init__.py:545
+#, python-format
+msgid ""
+"Sphinx is unable to load the master document (%s) because it matches an "
+"exclude pattern specified in conf.py, %r. Please remove this pattern from "
+"conf.py."
+msgstr ""
+
+#: builders/__init__.py:556
+#, python-format
+msgid ""
+"Sphinx is unable to load the master document (%s) because it is not included"
+" in the custom include_patterns = %r. Ensure that a pattern in "
+"include_patterns matches the master document."
+msgstr ""
+
+#: builders/__init__.py:563
+#, python-format
+msgid ""
+"Sphinx is unable to load the master document (%s). The master document must "
+"be within the source directory or a subdirectory of it."
+msgstr ""
+
+#: builders/__init__.py:581 builders/__init__.py:598
+msgid "reading sources... "
+msgstr ""
+
+#: builders/__init__.py:725
+#, python-format
+msgid "docnames to write: %s"
+msgstr ""
+
+#: builders/__init__.py:727
+msgid "no docnames to write!"
+msgstr ""
+
+#: builders/__init__.py:740
+msgid "preparing documents"
+msgstr ""
+
+#: builders/__init__.py:743
+msgid "copying assets"
+msgstr ""
+
+#: builders/changes.py:29
+#, python-format
+msgid "The overview file is in %(outdir)s."
+msgstr ""
+
+#: builders/changes.py:65
+#, python-format
+msgid "no changes in version %s."
+msgstr ""
+
+#: builders/changes.py:67
+msgid "writing summary file..."
+msgstr ""
+
+#: builders/changes.py:79
+msgid "Builtins"
+msgstr ""
+
+#: builders/changes.py:81
+msgid "Module level"
+msgstr ""
+
+#: builders/changes.py:137
+msgid "copying source files..."
+msgstr ""
+
+#: builders/changes.py:146
+#, python-format
+msgid "could not read %r for changelog creation"
+msgstr ""
+
+#: ext/coverage.py:48
+#, python-format
+msgid "invalid regex %r in %s"
+msgstr ""
+
+#: ext/coverage.py:140 ext/coverage.py:301
+#, python-format
+msgid "module %s could not be imported: %s"
+msgstr ""
+
+#: ext/coverage.py:148
+#, python-format
msgid ""
"the following modules are documented but were not specified in "
"coverage_modules: %s"
msgstr ""
#: ext/coverage.py:158
+#, python-format
msgid ""
"the following modules are specified in coverage_modules but were not "
-"documented"
+"documented: %s"
msgstr ""
#: ext/coverage.py:172
@@ -776,6 +1213,34 @@ msgstr ""
msgid "undocumented python method: %s :: %s :: %s"
msgstr ""
+#: ext/extlinks.py:82
+#, python-format
+msgid ""
+"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgstr ""
+
+#: ext/todo.py:61
+msgid "Todo"
+msgstr ""
+
+#: ext/todo.py:94
+#, python-format
+msgid "TODO entry found: %s"
+msgstr ""
+
+#: ext/todo.py:152
+msgid "<>"
+msgstr ""
+
+#: ext/todo.py:154
+#, python-format
+msgid "(The <> is located in %s, line %d.)"
+msgstr ""
+
+#: ext/todo.py:166
+msgid "original entry"
+msgstr ""
+
#: ext/imgconverter.py:44
#, python-format
msgid ""
@@ -863,947 +1328,993 @@ msgstr ""
msgid "[graph]"
msgstr ""
-#: ext/todo.py:61
-msgid "Todo"
-msgstr ""
-
-#: ext/todo.py:94
+#: ext/imgmath.py:148
#, python-format
-msgid "TODO entry found: %s"
+msgid ""
+"LaTeX command %r cannot be run (needed for math display), check the "
+"imgmath_latex setting"
msgstr ""
-#: ext/todo.py:152
-msgid "<>"
+#: ext/imgmath.py:167
+#, python-format
+msgid ""
+"%s command %r cannot be run (needed for math display), check the imgmath_%s "
+"setting"
msgstr ""
-#: ext/todo.py:154
+#: ext/imgmath.py:326
#, python-format
-msgid "(The <> is located in %s, line %d.)"
+msgid "display latex %r: %s"
msgstr ""
-#: ext/todo.py:166
-msgid "original entry"
+#: ext/imgmath.py:362
+#, python-format
+msgid "inline latex %r: %s"
msgstr ""
-#: directives/code.py:66
-msgid "non-whitespace stripped by dedent"
+#: ext/imgmath.py:369 ext/mathjax.py:60
+msgid "Link to this equation"
msgstr ""
-#: directives/code.py:87
+#: ext/doctest.py:118
#, python-format
-msgid "Invalid caption: %s"
+msgid "missing '+' or '-' in '%s' option."
msgstr ""
-#: directives/code.py:131 directives/code.py:297 directives/code.py:483
+#: ext/doctest.py:124
#, python-format
-msgid "line number spec is out of range(1-%d): %r"
+msgid "'%s' is not a valid option."
msgstr ""
-#: directives/code.py:216
+#: ext/doctest.py:139
#, python-format
-msgid "Cannot use both \"%s\" and \"%s\" options"
+msgid "'%s' is not a valid pyversion option"
msgstr ""
-#: directives/code.py:231
-#, python-format
-msgid "Include file '%s' not found or reading it failed"
+#: ext/doctest.py:226
+msgid "invalid TestCode type"
msgstr ""
-#: directives/code.py:235
+#: ext/doctest.py:297
#, python-format
msgid ""
-"Encoding %r used for reading included file '%s' seems to be wrong, try "
-"giving an :encoding: option"
+"Testing of doctests in the sources finished, look at the results in "
+"%(outdir)s/output.txt."
msgstr ""
-#: directives/code.py:276
+#: ext/doctest.py:451
#, python-format
-msgid "Object named %r not found in include file %r"
+msgid "no code/output in %s block at %s:%s"
msgstr ""
-#: directives/code.py:309
-msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
+#: ext/doctest.py:568
+#, python-format
+msgid "ignoring invalid doctest code: %r"
msgstr ""
-#: directives/code.py:314
+#: ext/autosectionlabel.py:52
#, python-format
-msgid "Line spec %r: no lines pulled from include file %r"
+msgid "section \"%s\" gets labeled as \"%s\""
msgstr ""
-#: directives/patches.py:71
-msgid ""
-"\":file:\" option for csv-table directive now recognizes an absolute path as"
-" a relative path from source directory. Please update your document."
-msgstr ""
-
-#: directives/other.py:119
+#: domains/std/__init__.py:833 domains/std/__init__.py:960
+#: ext/autosectionlabel.py:61
#, python-format
-msgid "toctree glob pattern %r didn't match any documents"
+msgid "duplicate label %s, other instance in %s"
msgstr ""
-#: directives/other.py:153 environment/adapters/toctree.py:361
+#: ext/duration.py:47
#, python-format
-msgid "toctree contains reference to excluded document %r"
+msgid "Reading duration %.3fs exceeded the duration limit %.3fs"
msgstr ""
-#: directives/other.py:156
-#, python-format
-msgid "toctree contains reference to nonexisting document %r"
+#: ext/duration.py:117
+msgid ""
+"====================== total reading duration =========================="
msgstr ""
-#: directives/other.py:169
+#: ext/duration.py:124
#, python-format
-msgid "duplicated entry found in toctree: %s"
-msgstr ""
-
-#: directives/other.py:203
-msgid "Section author: "
+msgid "Total time reading %d file%s: %dm %.3fs"
msgstr ""
-#: directives/other.py:205
-msgid "Module author: "
+#: ext/duration.py:136
+msgid ""
+"====================== slowest reading durations ======================="
msgstr ""
-#: directives/other.py:207
-msgid "Code author: "
+#: ext/duration.py:139
+#, python-format
+msgid "%.3fs %s"
msgstr ""
-#: directives/other.py:209
-msgid "Author: "
+#: ext/linkcode.py:86 ext/viewcode.py:232
+msgid "[source]"
msgstr ""
-#: directives/other.py:269
-msgid ".. acks content is not a list"
+#: ext/viewcode.py:295
+msgid "highlighting module code... "
msgstr ""
-#: directives/other.py:292
-msgid ".. hlist content is not a list"
+#: ext/viewcode.py:326
+msgid "[docs]"
msgstr ""
-#: builders/changes.py:29
-#, python-format
-msgid "The overview file is in %(outdir)s."
+#: ext/viewcode.py:352
+msgid "Module code"
msgstr ""
-#: builders/changes.py:56
+#: ext/viewcode.py:359
#, python-format
-msgid "no changes in version %s."
+msgid "Source code for %s
"
msgstr ""
-#: builders/changes.py:58
-msgid "writing summary file..."
+#: ext/viewcode.py:386
+msgid "Overview: module code"
msgstr ""
-#: builders/changes.py:70
-msgid "Builtins"
+#: ext/viewcode.py:387
+msgid "All modules for which code is available
"
msgstr ""
-#: builders/changes.py:72
-msgid "Module level"
+#: domains/citation.py:75
+#, python-format
+msgid "duplicate citation %s, other instance in %s"
msgstr ""
-#: builders/changes.py:124
-msgid "copying source files..."
+#: domains/citation.py:92
+#, python-format
+msgid "Citation [%s] is not referenced."
msgstr ""
-#: builders/changes.py:133
+#: domains/math.py:73
#, python-format
-msgid "could not read %r for changelog creation"
+msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
-#: builders/manpage.py:37
+#: domains/math.py:130 writers/latex.py:2500
#, python-format
-msgid "The manual pages are in %(outdir)s."
+msgid "Invalid math_eqref_format: %r"
msgstr ""
-#: builders/manpage.py:45
-msgid "no \"man_pages\" config value found; no manual pages will be written"
+#: domains/javascript.py:183
+#, python-format
+msgid "%s() (built-in function)"
msgstr ""
-#: builders/latex/__init__.py:347 builders/manpage.py:54
-#: builders/singlehtml.py:176 builders/texinfo.py:119
-msgid "writing"
+#: domains/javascript.py:184 domains/python/__init__.py:279
+#, python-format
+msgid "%s() (%s method)"
msgstr ""
-#: builders/manpage.py:71
+#: domains/javascript.py:186
#, python-format
-msgid "\"man_pages\" config value references unknown document %s"
+msgid "%s() (class)"
msgstr ""
-#: builders/__init__.py:224
+#: domains/javascript.py:188
#, python-format
-msgid "a suitable image for %s builder not found: %s (%s)"
+msgid "%s (global variable or constant)"
msgstr ""
-#: builders/__init__.py:232
+#: domains/javascript.py:190 domains/python/__init__.py:370
#, python-format
-msgid "a suitable image for %s builder not found: %s"
+msgid "%s (%s attribute)"
msgstr ""
-#: builders/__init__.py:255
-msgid "building [mo]: "
+#: domains/javascript.py:274
+msgid "Arguments"
msgstr ""
-#: builders/__init__.py:258 builders/__init__.py:759 builders/__init__.py:791
-msgid "writing output... "
+#: domains/cpp/__init__.py:491 domains/javascript.py:281
+msgid "Throws"
msgstr ""
-#: builders/__init__.py:275
-#, python-format
-msgid "all of %d po files"
+#: domains/c/__init__.py:367 domains/cpp/__init__.py:504
+#: domains/javascript.py:288 domains/python/_object.py:221
+msgid "Returns"
msgstr ""
-#: builders/__init__.py:297
-#, python-format
-msgid "targets for %d po files that are specified"
+#: domains/c/__init__.py:373 domains/javascript.py:294
+#: domains/python/_object.py:227
+msgid "Return type"
msgstr ""
-#: builders/__init__.py:309
+#: domains/javascript.py:374
#, python-format
-msgid "targets for %d po files that are out of date"
+msgid "%s (module)"
msgstr ""
-#: builders/__init__.py:319
-msgid "all source files"
+#: domains/c/__init__.py:779 domains/cpp/__init__.py:943
+#: domains/javascript.py:419 domains/python/__init__.py:726
+msgid "function"
msgstr ""
-#: builders/__init__.py:330
-#, python-format
-msgid "file %r given on command line does not exist, "
+#: domains/javascript.py:420 domains/python/__init__.py:730
+msgid "method"
msgstr ""
-#: builders/__init__.py:337
-#, python-format
-msgid ""
-"file %r given on command line is not under the source directory, ignoring"
+#: domains/cpp/__init__.py:941 domains/javascript.py:421
+#: domains/python/__init__.py:728
+msgid "class"
msgstr ""
-#: builders/__init__.py:348
-#, python-format
-msgid "file %r given on command line is not a valid document, ignoring"
+#: domains/javascript.py:422 domains/python/__init__.py:727
+msgid "data"
msgstr ""
-#: builders/__init__.py:361
-#, python-format
-msgid "%d source files given on command line"
+#: domains/javascript.py:423 domains/python/__init__.py:733
+msgid "attribute"
msgstr ""
-#: builders/__init__.py:377
-#, python-format
-msgid "targets for %d source files that are out of date"
+#: domains/javascript.py:424 domains/python/__init__.py:736
+msgid "module"
msgstr ""
-#: builders/__init__.py:395 builders/gettext.py:265
+#: domains/javascript.py:458
#, python-format
-msgid "building [%s]: "
+msgid "duplicate %s description of %s, other %s in %s"
msgstr ""
-#: builders/__init__.py:406
-msgid "looking for now-outdated files... "
+#: domains/rst.py:131 domains/rst.py:190
+#, python-format
+msgid "%s (directive)"
msgstr ""
-#: builders/__init__.py:410
+#: domains/rst.py:191 domains/rst.py:202
#, python-format
-msgid "%d found"
+msgid ":%s: (directive option)"
msgstr ""
-#: builders/__init__.py:412
-msgid "none found"
+#: domains/rst.py:224
+#, python-format
+msgid "%s (role)"
msgstr ""
-#: builders/__init__.py:419
-msgid "pickling environment"
+#: domains/rst.py:234
+msgid "directive"
msgstr ""
-#: builders/__init__.py:426
-msgid "checking consistency"
+#: domains/rst.py:235
+msgid "directive-option"
msgstr ""
-#: builders/__init__.py:430
-msgid "no targets are out of date."
+#: domains/rst.py:236
+msgid "role"
msgstr ""
-#: builders/__init__.py:469
-msgid "updating environment: "
+#: domains/rst.py:262
+#, python-format
+msgid "duplicate description of %s %s, other instance in %s"
msgstr ""
-#: builders/__init__.py:494
+#: domains/changeset.py:32
#, python-format
-msgid "%s added, %s changed, %s removed"
+msgid "Added in version %s"
msgstr ""
-#: builders/__init__.py:531
+#: domains/changeset.py:33
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches a "
-"built-in exclude pattern %r. Please move your master document to a different"
-" location."
+msgid "Changed in version %s"
msgstr ""
-#: builders/__init__.py:540
+#: domains/changeset.py:34
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches an "
-"exclude pattern specified in conf.py, %r. Please remove this pattern from "
-"conf.py."
+msgid "Deprecated since version %s"
msgstr ""
-#: builders/__init__.py:551
+#: domains/changeset.py:35
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it is not included"
-" in the custom include_patterns = %r. Ensure that a pattern in "
-"include_patterns matches the master document."
+msgid "Removed in version %s"
msgstr ""
-#: builders/__init__.py:558
+#: domains/__init__.py:322
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s). The master document must "
-"be within the source directory or a subdirectory of it."
+msgid "%s %s"
msgstr ""
-#: builders/__init__.py:576 builders/__init__.py:592
-msgid "reading sources... "
+#: cmd/build.py:64
+msgid "job number should be a positive number"
msgstr ""
-#: builders/__init__.py:713
-#, python-format
-msgid "docnames to write: %s"
+#: cmd/build.py:73 cmd/quickstart.py:582 ext/apidoc/_cli.py:27
+#: ext/autosummary/generate.py:876
+msgid "For more information, visit ."
msgstr ""
-#: builders/__init__.py:715
-msgid "no docnames to write!"
+#: cmd/build.py:74
+msgid ""
+"\n"
+"Generate documentation from source files.\n"
+"\n"
+"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
+"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
+"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
+"including 'conf.py'\n"
+"\n"
+"sphinx-build can create documentation in different formats. A format is\n"
+"selected by specifying the builder name on the command line; it defaults to\n"
+"HTML. Builders can also perform other tasks related to documentation\n"
+"processing.\n"
+"\n"
+"By default, everything that is outdated is built. Output only for selected\n"
+"files can be built by specifying individual filenames.\n"
msgstr ""
-#: builders/__init__.py:728
-msgid "preparing documents"
+#: cmd/build.py:100
+msgid "path to documentation source files"
msgstr ""
-#: builders/__init__.py:731
-msgid "copying assets"
+#: cmd/build.py:103
+msgid "path to output directory"
msgstr ""
-#: builders/__init__.py:883
-#, python-format
-msgid "undecodable source characters, replacing with \"?\": %r"
+#: cmd/build.py:109
+msgid ""
+"(optional) a list of specific files to rebuild. Ignored if --write-all is "
+"specified"
msgstr ""
-#: builders/epub3.py:84
-#, python-format
-msgid "The ePub file is in %(outdir)s."
+#: cmd/build.py:114
+msgid "general options"
msgstr ""
-#: builders/epub3.py:189
-msgid "writing nav.xhtml file..."
+#: cmd/build.py:121
+msgid "builder to use (default: 'html')"
msgstr ""
-#: builders/epub3.py:221
-msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
+#: cmd/build.py:131
+msgid ""
+"run in parallel with N processes, when possible. 'auto' uses the number of "
+"CPU cores"
msgstr ""
-#: builders/epub3.py:227
-msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
+#: cmd/build.py:140
+msgid "write all files (default: only write new and changed files)"
msgstr ""
-#: builders/epub3.py:232
-msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
+#: cmd/build.py:147
+msgid "don't use a saved environment, always read all files"
msgstr ""
-#: builders/epub3.py:238
-msgid "conf value \"epub_author\" should not be empty for EPUB3"
+#: cmd/build.py:150
+msgid "path options"
msgstr ""
-#: builders/epub3.py:242
-msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
+#: cmd/build.py:157
+msgid ""
+"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
msgstr ""
-#: builders/epub3.py:247
-msgid "conf value \"epub_description\" should not be empty for EPUB3"
+#: cmd/build.py:166
+msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
msgstr ""
-#: builders/epub3.py:251
-msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+#: cmd/build.py:175
+msgid "use no configuration file, only use settings from -D options"
msgstr ""
-#: builders/epub3.py:256
-msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+#: cmd/build.py:184
+msgid "override a setting in configuration file"
msgstr ""
-#: builders/epub3.py:262
-msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+#: cmd/build.py:193
+msgid "pass a value into HTML templates"
msgstr ""
-#: builders/epub3.py:265
-msgid "conf value \"version\" should not be empty for EPUB3"
+#: cmd/build.py:202
+msgid "define tag: include \"only\" blocks with TAG"
msgstr ""
-#: builders/epub3.py:279 builders/html/__init__.py:1291
-#, python-format
-msgid "invalid css_file: %r, ignored"
+#: cmd/build.py:209
+msgid "nitpicky mode: warn about all missing references"
msgstr ""
-#: builders/xml.py:31
-#, python-format
-msgid "The XML files are in %(outdir)s."
+#: cmd/build.py:212
+msgid "console output options"
msgstr ""
-#: builders/html/__init__.py:1241 builders/text.py:76 builders/xml.py:90
-#, python-format
-msgid "error writing file %s: %s"
+#: cmd/build.py:219
+msgid "increase verbosity (can be repeated)"
msgstr ""
-#: builders/xml.py:101
-#, python-format
-msgid "The pseudo-XML files are in %(outdir)s."
+#: cmd/build.py:226 ext/apidoc/_cli.py:66
+msgid "no output on stdout, just warnings on stderr"
msgstr ""
-#: builders/texinfo.py:45
-#, python-format
-msgid "The Texinfo files are in %(outdir)s."
+#: cmd/build.py:233
+msgid "no output at all, not even warnings"
msgstr ""
-#: builders/texinfo.py:48
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through makeinfo\n"
-"(use 'make info' here to do that automatically)."
+#: cmd/build.py:241
+msgid "do emit colored output (default: auto-detect)"
msgstr ""
-#: builders/texinfo.py:77
-msgid "no \"texinfo_documents\" config value found; no documents will be written"
-msgstr ""
-
-#: builders/texinfo.py:89
-#, python-format
-msgid "\"texinfo_documents\" config value references unknown document %s"
-msgstr ""
-
-#: builders/latex/__init__.py:325 builders/texinfo.py:113
-#, python-format
-msgid "processing %s"
+#: cmd/build.py:249
+msgid "do not emit colored output (default: auto-detect)"
msgstr ""
-#: builders/latex/__init__.py:405 builders/texinfo.py:172
-msgid "resolving references..."
+#: cmd/build.py:252
+msgid "warning control options"
msgstr ""
-#: builders/latex/__init__.py:416 builders/texinfo.py:182
-msgid " (in "
+#: cmd/build.py:258
+msgid "write warnings (and errors) to given file"
msgstr ""
-#: builders/_epub_base.py:422 builders/html/__init__.py:779
-#: builders/latex/__init__.py:481 builders/texinfo.py:198
-msgid "copying images... "
+#: cmd/build.py:265
+msgid "turn warnings into errors"
msgstr ""
-#: builders/_epub_base.py:444 builders/latex/__init__.py:496
-#: builders/texinfo.py:215
-#, python-format
-msgid "cannot copy image file %r: %s"
+#: cmd/build.py:273
+msgid "show full traceback on exception"
msgstr ""
-#: builders/texinfo.py:222
-msgid "copying Texinfo support files"
+#: cmd/build.py:276
+msgid "run Pdb on exception"
msgstr ""
-#: builders/texinfo.py:230
-#, python-format
-msgid "error writing file Makefile: %s"
+#: cmd/build.py:282
+msgid "raise an exception on warnings"
msgstr ""
-#: builders/_epub_base.py:223
-#, python-format
-msgid "duplicated ToC entry found: %s"
+#: cmd/build.py:325
+msgid "cannot combine -a option and filenames"
msgstr ""
-#: builders/_epub_base.py:433
+#: cmd/build.py:357
#, python-format
-msgid "cannot read image file %r: copying it instead"
+msgid "cannot open warning file '%s': %s"
msgstr ""
-#: builders/_epub_base.py:464
-#, python-format
-msgid "cannot write image file %r: %s"
+#: cmd/build.py:376
+msgid "-D option argument must be in the form name=value"
msgstr ""
-#: builders/_epub_base.py:476
-msgid "Pillow not found - copying image files"
+#: cmd/build.py:383
+msgid "-A option argument must be in the form name=value"
msgstr ""
-#: builders/_epub_base.py:511
-msgid "writing mimetype file..."
+#: cmd/quickstart.py:52
+msgid "automatically insert docstrings from modules"
msgstr ""
-#: builders/_epub_base.py:520
-msgid "writing META-INF/container.xml file..."
+#: cmd/quickstart.py:53
+msgid "automatically test code snippets in doctest blocks"
msgstr ""
-#: builders/_epub_base.py:558
-msgid "writing content.opf file..."
+#: cmd/quickstart.py:54
+msgid "link between Sphinx documentation of different projects"
msgstr ""
-#: builders/_epub_base.py:591
-#, python-format
-msgid "unknown mimetype for %s, ignoring"
+#: cmd/quickstart.py:55
+msgid "write \"todo\" entries that can be shown or hidden on build"
msgstr ""
-#: builders/_epub_base.py:745
-msgid "node has an invalid level"
+#: cmd/quickstart.py:56
+msgid "checks for documentation coverage"
msgstr ""
-#: builders/_epub_base.py:765
-msgid "writing toc.ncx file..."
+#: cmd/quickstart.py:57
+msgid "include math, rendered as PNG or SVG images"
msgstr ""
-#: builders/_epub_base.py:794
-#, python-format
-msgid "writing %s file..."
+#: cmd/quickstart.py:58
+msgid "include math, rendered in the browser by MathJax"
msgstr ""
-#: builders/dummy.py:19
-msgid "The dummy builder generates no files."
+#: cmd/quickstart.py:59
+msgid "conditional inclusion of content based on config values"
msgstr ""
-#: builders/gettext.py:244
-#, python-format
-msgid "The message catalogs are in %(outdir)s."
+#: cmd/quickstart.py:60
+msgid "include links to the source code of documented Python objects"
msgstr ""
-#: builders/gettext.py:266
-#, python-format
-msgid "targets for %d template files"
+#: cmd/quickstart.py:61
+msgid "create .nojekyll file to publish the document on GitHub pages"
msgstr ""
-#: builders/gettext.py:271
-msgid "reading templates... "
+#: cmd/quickstart.py:111
+msgid "Please enter a valid path name."
msgstr ""
-#: builders/gettext.py:307
-msgid "writing message catalogs... "
+#: cmd/quickstart.py:127
+msgid "Please enter some text."
msgstr ""
-#: builders/singlehtml.py:35
+#: cmd/quickstart.py:134
#, python-format
-msgid "The HTML page is in %(outdir)s."
+msgid "Please enter one of %s."
msgstr ""
-#: builders/singlehtml.py:171
-msgid "assembling single document"
+#: cmd/quickstart.py:142
+msgid "Please enter either 'y' or 'n'."
msgstr ""
-#: builders/singlehtml.py:189
-msgid "writing additional files"
+#: cmd/quickstart.py:148
+msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
msgstr ""
-#: builders/linkcheck.py:77
+#: cmd/quickstart.py:230
#, python-format
-msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
+msgid "Welcome to the Sphinx %s quickstart utility."
msgstr ""
-#: builders/linkcheck.py:149
-#, python-format
-msgid "broken link: %s (%s)"
+#: cmd/quickstart.py:235
+msgid ""
+"Please enter values for the following settings (just press Enter to\n"
+"accept a default value, if one is given in brackets)."
msgstr ""
-#: builders/linkcheck.py:548
+#: cmd/quickstart.py:242
#, python-format
-msgid "Anchor '%s' not found"
+msgid "Selected root path: %s"
msgstr ""
-#: builders/linkcheck.py:758
-#, python-format
-msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
+#: cmd/quickstart.py:245
+msgid "Enter the root path for documentation."
msgstr ""
-#: builders/text.py:29
-#, python-format
-msgid "The text files are in %(outdir)s."
+#: cmd/quickstart.py:246
+msgid "Root path for the documentation"
msgstr ""
-#: transforms/i18n.py:227 transforms/i18n.py:302
-#, python-brace-format
-msgid ""
-"inconsistent footnote references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:255
+msgid "Error: an existing conf.py has been found in the selected root path."
msgstr ""
-#: transforms/i18n.py:272
-#, python-brace-format
-msgid ""
-"inconsistent references in translated message. original: {0}, translated: "
-"{1}"
+#: cmd/quickstart.py:260
+msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
msgstr ""
-#: transforms/i18n.py:322
-#, python-brace-format
-msgid ""
-"inconsistent citation references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:263
+msgid "Please enter a new root path (or just Enter to exit)"
msgstr ""
-#: transforms/i18n.py:344
-#, python-brace-format
+#: cmd/quickstart.py:274
msgid ""
-"inconsistent term references in translated message. original: {0}, "
-"translated: {1}"
-msgstr ""
-
-#: builders/html/__init__.py:486 builders/latex/__init__.py:199
-#: transforms/__init__.py:129 writers/manpage.py:98 writers/texinfo.py:220
-#, python-format
-msgid "%b %d, %Y"
-msgstr ""
-
-#: transforms/__init__.py:139
-msgid "could not calculate translation progress!"
+"You have two options for placing the build directory for Sphinx output.\n"
+"Either, you use a directory \"_build\" within the root path, or you separate\n"
+"\"source\" and \"build\" directories within the root path."
msgstr ""
-#: transforms/__init__.py:144
-msgid "no translated elements!"
+#: cmd/quickstart.py:280
+msgid "Separate source and build directories (y/n)"
msgstr ""
-#: transforms/__init__.py:253
-#, python-format
+#: cmd/quickstart.py:287
msgid ""
-"4 column based index found. It might be a bug of extensions you use: %r"
+"Inside the root directory, two more directories will be created; \"_templates\"\n"
+"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
+"files. You can enter another prefix (such as \".\") to replace the underscore."
msgstr ""
-#: transforms/__init__.py:294
-#, python-format
-msgid "Footnote [%s] is not referenced."
+#: cmd/quickstart.py:292
+msgid "Name prefix for templates and static dir"
msgstr ""
-#: transforms/__init__.py:303
-msgid "Footnote [*] is not referenced."
+#: cmd/quickstart.py:298
+msgid ""
+"The project name will occur in several places in the built documentation."
msgstr ""
-#: transforms/__init__.py:314
-msgid "Footnote [#] is not referenced."
+#: cmd/quickstart.py:301
+msgid "Project name"
msgstr ""
-#: _cli/__init__.py:73
-msgid "Usage:"
+#: cmd/quickstart.py:303
+msgid "Author name(s)"
msgstr ""
-#: _cli/__init__.py:75
-#, python-brace-format
-msgid "{0} [OPTIONS] []"
+#: cmd/quickstart.py:309
+msgid ""
+"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
+"software. Each version can have multiple releases. For example, for\n"
+"Python the version is something like 2.5 or 3.0, while the release is\n"
+"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
+"just set both to the same value."
msgstr ""
-#: _cli/__init__.py:78
-msgid " The Sphinx documentation generator."
+#: cmd/quickstart.py:316
+msgid "Project version"
msgstr ""
-#: _cli/__init__.py:87
-msgid "Commands:"
+#: cmd/quickstart.py:318
+msgid "Project release"
msgstr ""
-#: _cli/__init__.py:98
-msgid "Options"
+#: cmd/quickstart.py:324
+msgid ""
+"If the documents are to be written in a language other than English,\n"
+"you can select a language here by its language code. Sphinx will then\n"
+"translate text that it generates into that language.\n"
+"\n"
+"For a list of supported codes, see\n"
+"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
msgstr ""
-#: _cli/__init__.py:113 _cli/__init__.py:181
-msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
+#: cmd/quickstart.py:332
+msgid "Project language"
msgstr ""
-#: _cli/__init__.py:171
-#, python-brace-format
+#: cmd/quickstart.py:340
msgid ""
-"{0}: error: {1}\n"
-"Run '{0} --help' for information"
+"The file name suffix for source files. Commonly, this is either \".txt\"\n"
+"or \".rst\". Only files with this suffix are considered documents."
msgstr ""
-#: _cli/__init__.py:179
-msgid " Manage documentation with Sphinx."
+#: cmd/quickstart.py:344
+msgid "Source file suffix"
msgstr ""
-#: _cli/__init__.py:191
-msgid "Show the version and exit."
+#: cmd/quickstart.py:350
+msgid ""
+"One document is special in that it is considered the top node of the\n"
+"\"contents tree\", that is, it is the root of the hierarchical structure\n"
+"of the documents. Normally, this is \"index\", but if your \"index\"\n"
+"document is a custom template, you can also set this to another filename."
msgstr ""
-#: _cli/__init__.py:199
-msgid "Show this message and exit."
+#: cmd/quickstart.py:357
+msgid "Name of your master document (without suffix)"
msgstr ""
-#: _cli/__init__.py:203
-msgid "Logging"
+#: cmd/quickstart.py:368
+#, python-format
+msgid ""
+"Error: the master file %s has already been found in the selected root path."
msgstr ""
-#: _cli/__init__.py:210
-msgid "Increase verbosity (can be repeated)"
+#: cmd/quickstart.py:374
+msgid "sphinx-quickstart will not overwrite the existing file."
msgstr ""
-#: _cli/__init__.py:218
-msgid "Only print errors and warnings."
+#: cmd/quickstart.py:378
+msgid ""
+"Please enter a new file name, or rename the existing file and press Enter"
msgstr ""
-#: _cli/__init__.py:225
-msgid "No output at all"
+#: cmd/quickstart.py:386
+msgid "Indicate which of the following Sphinx extensions should be enabled:"
msgstr ""
-#: _cli/__init__.py:231
-msgid ""
+#: cmd/quickstart.py:397
+msgid ""
+"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
+"been deselected."
msgstr ""
-#: _cli/__init__.py:263
-msgid "See 'sphinx --help'.\n"
+#: cmd/quickstart.py:407
+msgid ""
+"A Makefile and a Windows command file can be generated for you so that you\n"
+"only have to run e.g. `make html' instead of invoking sphinx-build\n"
+"directly."
msgstr ""
-#: environment/__init__.py:86
-msgid "new config"
+#: cmd/quickstart.py:412
+msgid "Create Makefile? (y/n)"
msgstr ""
-#: environment/__init__.py:87
-msgid "config changed"
+#: cmd/quickstart.py:416
+msgid "Create Windows command file? (y/n)"
msgstr ""
-#: environment/__init__.py:88
-msgid "extensions changed"
+#: cmd/quickstart.py:468 ext/apidoc/_generate.py:76
+#, python-format
+msgid "Creating file %s."
msgstr ""
-#: environment/__init__.py:253
-msgid "build environment version not current"
+#: cmd/quickstart.py:473 ext/apidoc/_generate.py:73
+#, python-format
+msgid "File %s already exists, skipping."
msgstr ""
-#: environment/__init__.py:255
-msgid "source directory has changed"
+#: cmd/quickstart.py:516
+msgid "Finished: An initial directory structure has been created."
msgstr ""
-#: environment/__init__.py:325
+#: cmd/quickstart.py:520
#, python-format
-msgid "The configuration has changed (1 option: %r)"
+msgid ""
+"You should now populate your master file %s and create other documentation\n"
+"source files. "
msgstr ""
-#: environment/__init__.py:330
-#, python-format
-msgid "The configuration has changed (%d options: %s)"
+#: cmd/quickstart.py:527
+msgid ""
+"Use the Makefile to build the docs, like so:\n"
+" make builder"
msgstr ""
-#: environment/__init__.py:336
+#: cmd/quickstart.py:531
#, python-format
-msgid "The configuration has changed (%d options: %s, ...)"
+msgid ""
+"Use the sphinx-build command to build the docs, like so:\n"
+" sphinx-build -b builder %s %s"
msgstr ""
-#: environment/__init__.py:379
+#: cmd/quickstart.py:538
msgid ""
-"This environment is incompatible with the selected builder, please choose "
-"another doctree directory."
+"where \"builder\" is one of the supported builders, e.g. html, latex or "
+"linkcheck."
msgstr ""
-#: environment/__init__.py:493
-#, python-format
-msgid "Failed to scan documents in %s: %r"
+#: cmd/quickstart.py:573
+msgid ""
+"\n"
+"Generate required files for a Sphinx project.\n"
+"\n"
+"sphinx-quickstart is an interactive tool that asks some questions about your\n"
+"project and then generates a complete documentation directory and sample\n"
+"Makefile to be used with sphinx-build.\n"
msgstr ""
-#: environment/__init__.py:658 ext/intersphinx/_resolve.py:234
-#, python-format
-msgid "Domain %r is not registered"
+#: cmd/quickstart.py:592
+msgid "quiet mode"
msgstr ""
-#: environment/__init__.py:813
-msgid "document isn't included in any toctree"
+#: cmd/quickstart.py:602
+msgid "project root"
msgstr ""
-#: environment/__init__.py:859
-msgid "self referenced toctree found. Ignored."
+#: cmd/quickstart.py:605
+msgid "Structure options"
msgstr ""
-#: environment/__init__.py:889
-#, python-format
-msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
+#: cmd/quickstart.py:611
+msgid "if specified, separate source and build dirs"
msgstr ""
-#: util/i18n.py:100
-#, python-format
-msgid "reading error: %s, %s"
+#: cmd/quickstart.py:617
+msgid "if specified, create build dir under source dir"
msgstr ""
-#: util/i18n.py:113
-#, python-format
-msgid "writing error: %s, %s"
+#: cmd/quickstart.py:623
+msgid "replacement for dot in _templates etc."
msgstr ""
-#: util/i18n.py:146
-#, python-format
-msgid "locale_dir %s does not exist"
+#: cmd/quickstart.py:626
+msgid "Project basic options"
msgstr ""
-#: util/i18n.py:236
-#, python-format
-msgid "Invalid Babel locale: %r."
+#: cmd/quickstart.py:628
+msgid "project name"
msgstr ""
-#: util/i18n.py:245
-#, python-format
-msgid ""
-"Invalid date format. Quote the string by single quote if you want to output "
-"it directly: %s"
+#: cmd/quickstart.py:631
+msgid "author names"
msgstr ""
-#: util/docfields.py:103
-#, python-format
-msgid ""
-"Problem in %s domain: field is supposed to use role '%s', but that role is "
-"not in the domain."
+#: cmd/quickstart.py:638
+msgid "version of project"
msgstr ""
-#: util/nodes.py:423
-#, python-format
-msgid ""
-"%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead."
+#: cmd/quickstart.py:645
+msgid "release of project"
msgstr ""
-#: util/nodes.py:490
-#, python-format
-msgid "toctree contains ref to nonexisting file %r"
+#: cmd/quickstart.py:652
+msgid "document language"
msgstr ""
-#: util/nodes.py:706
-#, python-format
-msgid "exception while evaluating only directive expression: %s"
+#: cmd/quickstart.py:655
+msgid "source file suffix"
msgstr ""
-#: util/display.py:82
-msgid "skipped"
+#: cmd/quickstart.py:658
+msgid "master document name"
msgstr ""
-#: util/display.py:87
-msgid "failed"
+#: cmd/quickstart.py:661
+msgid "use epub"
msgstr ""
-#: util/osutil.py:131
+#: cmd/quickstart.py:664
+msgid "Extension options"
+msgstr ""
+
+#: cmd/quickstart.py:671
#, python-format
+msgid "enable %s extension"
+msgstr ""
+
+#: cmd/quickstart.py:678
+msgid "enable arbitrary extensions"
+msgstr ""
+
+#: cmd/quickstart.py:681
+msgid "Makefile and Batchfile creation"
+msgstr ""
+
+#: cmd/quickstart.py:687
+msgid "create makefile"
+msgstr ""
+
+#: cmd/quickstart.py:693
+msgid "do not create makefile"
+msgstr ""
+
+#: cmd/quickstart.py:700
+msgid "create batchfile"
+msgstr ""
+
+#: cmd/quickstart.py:706
+msgid "do not create batchfile"
+msgstr ""
+
+#: cmd/quickstart.py:715
+msgid "use make-mode for Makefile/make.bat"
+msgstr ""
+
+#: cmd/quickstart.py:718 ext/apidoc/_cli.py:243
+msgid "Project templating"
+msgstr ""
+
+#: cmd/quickstart.py:724 ext/apidoc/_cli.py:249
+msgid "template directory for template files"
+msgstr ""
+
+#: cmd/quickstart.py:731
+msgid "define a template variable"
+msgstr ""
+
+#: cmd/quickstart.py:767
+msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
+msgstr ""
+
+#: cmd/quickstart.py:786
msgid ""
-"Aborted attempted copy from %s to %s (the destination path has existing "
-"data)."
+"Error: specified path is not a directory, or sphinx files already exist."
msgstr ""
-#: util/docutils.py:309
-#, python-format
-msgid "unknown directive name: %s"
+#: cmd/quickstart.py:793
+msgid ""
+"sphinx-quickstart only generate into a empty directory. Please specify a new"
+" root path."
msgstr ""
-#: util/docutils.py:345
+#: cmd/quickstart.py:810
#, python-format
-msgid "unknown role name: %s"
+msgid "Invalid template variable: %s"
msgstr ""
-#: util/docutils.py:789
+#: directives/other.py:119
#, python-format
-msgid "unknown node type: %r"
+msgid "toctree glob pattern %r didn't match any documents"
msgstr ""
-#: util/fileutil.py:76
+#: directives/other.py:153 environment/adapters/toctree.py:372
#, python-format
-msgid ""
-"Aborted attempted copy from rendered template %s to %s (the destination path"
-" has existing data)."
+msgid "toctree contains reference to excluded document %r"
msgstr ""
-#: util/fileutil.py:89
+#: directives/other.py:156
#, python-format
-msgid "Writing evaluated template result to %s"
+msgid "toctree contains reference to nonexisting document %r"
msgstr ""
-#: util/rst.py:73
+#: directives/other.py:169
#, python-format
-msgid "default role %s not found"
+msgid "duplicated entry found in toctree: %s"
msgstr ""
-#: util/inventory.py:147
-#, python-format
-msgid "inventory <%s> contains duplicate definitions of %s"
+#: directives/other.py:203
+msgid "Section author: "
msgstr ""
-#: util/inventory.py:166
-#, python-format
-msgid "inventory <%s> contains multiple definitions for %s"
+#: directives/other.py:205
+msgid "Module author: "
msgstr ""
-#: writers/latex.py:1097 writers/manpage.py:259 writers/texinfo.py:663
-msgid "Footnotes"
+#: directives/other.py:207
+msgid "Code author: "
msgstr ""
-#: writers/manpage.py:289 writers/text.py:945
-#, python-format
-msgid "[image: %s]"
+#: directives/other.py:209
+msgid "Author: "
msgstr ""
-#: writers/manpage.py:290 writers/text.py:946
-msgid "[image]"
+#: directives/other.py:269
+msgid ".. acks content is not a list"
msgstr ""
-#: builders/latex/__init__.py:206 domains/std/__init__.py:771
-#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:106
-#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
-#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
-#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
-#: themes/basic/genindex.html:59 themes/basic/layout.html:127
-#: writers/texinfo.py:514
-msgid "Index"
+#: directives/other.py:292
+msgid ".. hlist content is not a list"
msgstr ""
-#: writers/latex.py:743 writers/texinfo.py:646
+#: directives/patches.py:70
msgid ""
-"encountered title node not in section, topic, table, admonition or sidebar"
+"\":file:\" option for csv-table directive now recognizes an absolute path as"
+" a relative path from source directory. Please update your document."
msgstr ""
-#: writers/texinfo.py:1217
-msgid "caption not inside a figure."
+#: directives/code.py:66
+msgid "non-whitespace stripped by dedent"
msgstr ""
-#: writers/texinfo.py:1303
+#: directives/code.py:87
#, python-format
-msgid "unimplemented node type: %r"
+msgid "Invalid caption: %s"
msgstr ""
-#: writers/latex.py:361
+#: directives/code.py:131 directives/code.py:297 directives/code.py:483
#, python-format
-msgid "unknown %r toplevel_sectioning for class %r"
+msgid "line number spec is out of range(1-%d): %r"
msgstr ""
-#: builders/latex/__init__.py:224 writers/latex.py:411
+#: directives/code.py:216
#, python-format
-msgid "no Babel option known for language %r"
+msgid "Cannot use both \"%s\" and \"%s\" options"
msgstr ""
-#: writers/latex.py:429
-msgid "too large :maxdepth:, ignored."
+#: directives/code.py:231
+#, python-format
+msgid "Include file '%s' not found or reading it failed"
msgstr ""
-#: writers/latex.py:591
+#: directives/code.py:235
#, python-format
-msgid "template %s not found; loading from legacy %s instead"
+msgid ""
+"Encoding %r used for reading included file '%s' seems to be wrong, try "
+"giving an :encoding: option"
msgstr ""
-#: writers/latex.py:707
-msgid "document title is not a single Text node"
+#: directives/code.py:276
+#, python-format
+msgid "Object named %r not found in include file %r"
+msgstr ""
+
+#: directives/code.py:309
+msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
msgstr ""
-#: writers/html5.py:572 writers/latex.py:1106
+#: directives/code.py:314
#, python-format
-msgid "unsupported rubric heading level: %s"
+msgid "Line spec %r: no lines pulled from include file %r"
+msgstr ""
+
+#: builders/html/__init__.py:475 builders/latex/__init__.py:196
+#: transforms/__init__.py:134 writers/manpage.py:97 writers/texinfo.py:220
+#, python-format
+msgid "%b %d, %Y"
+msgstr ""
+
+#: builders/latex/__init__.py:203 domains/std/__init__.py:771
+#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:107
+#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
+#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
+#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
+#: themes/basic/genindex.html:59 themes/basic/layout.html:127
+#: writers/texinfo.py:514
+msgid "Index"
msgstr ""
-#: writers/latex.py:1183
+#: writers/latex.py:768 writers/texinfo.py:646
msgid ""
-"both tabularcolumns and :widths: option are given. :widths: is ignored."
+"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
-#: writers/latex.py:1580
-#, python-format
-msgid "dimension unit %s is invalid. Ignored."
+#: writers/latex.py:1118 writers/manpage.py:258 writers/texinfo.py:663
+msgid "Footnotes"
+msgstr ""
+
+#: writers/texinfo.py:1217
+msgid "caption not inside a figure."
msgstr ""
-#: writers/latex.py:1939
+#: writers/texinfo.py:1303
#, python-format
-msgid "unknown index entry type %s found"
+msgid "unimplemented node type: %r"
msgstr ""
-#: domains/math.py:128 writers/latex.py:2495
+#: writers/manpage.py:288 writers/text.py:971
#, python-format
-msgid "Invalid math_eqref_format: %r"
+msgid "[image: %s]"
+msgstr ""
+
+#: writers/manpage.py:289 writers/text.py:972
+msgid "[image]"
msgstr ""
#: writers/html5.py:96 writers/html5.py:105
@@ -1832,6 +2343,11 @@ msgstr ""
msgid "Link to this table"
msgstr ""
+#: writers/html5.py:572 writers/latex.py:1127
+#, python-format
+msgid "unsupported rubric heading level: %s"
+msgstr ""
+
#: writers/html5.py:636
msgid "Link to this code"
msgstr ""
@@ -1848,793 +2364,477 @@ msgstr ""
msgid "Could not obtain image size. :scale: option is ignored."
msgstr ""
-#: domains/__init__.py:322
+#: writers/latex.py:386
#, python-format
-msgid "%s %s"
+msgid "unknown %r toplevel_sectioning for class %r"
msgstr ""
-#: domains/math.py:73
+#: builders/latex/__init__.py:221 writers/latex.py:436
#, python-format
-msgid "duplicate label of equation %s, other instance in %s"
+msgid "no Babel option known for language %r"
msgstr ""
-#: domains/javascript.py:182
-#, python-format
-msgid "%s() (built-in function)"
+#: writers/latex.py:454
+msgid "too large :maxdepth:, ignored."
msgstr ""
-#: domains/javascript.py:183 domains/python/__init__.py:287
+#: writers/latex.py:616
#, python-format
-msgid "%s() (%s method)"
+msgid "template %s not found; loading from legacy %s instead"
msgstr ""
-#: domains/javascript.py:185
-#, python-format
-msgid "%s() (class)"
+#: writers/latex.py:732
+msgid "document title is not a single Text node"
msgstr ""
-#: domains/javascript.py:187
-#, python-format
-msgid "%s (global variable or constant)"
+#: writers/latex.py:1198
+msgid ""
+"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
-#: domains/javascript.py:189 domains/python/__init__.py:378
+#: writers/latex.py:1228
#, python-format
-msgid "%s (%s attribute)"
+msgid ""
+"colspec %s was given which appears to use tabulary syntax. But this table "
+"can not be rendered as a tabulary; the given colspec will be ignored."
msgstr ""
-#: domains/javascript.py:273
-msgid "Arguments"
+#: writers/latex.py:1615
+#, python-format
+msgid "dimension unit %s is invalid. Ignored."
msgstr ""
-#: domains/cpp/__init__.py:489 domains/javascript.py:280
-msgid "Throws"
+#: writers/latex.py:1950
+#, python-format
+msgid "unknown index entry type %s found"
msgstr ""
-#: domains/c/__init__.py:339 domains/cpp/__init__.py:502
-#: domains/javascript.py:287 domains/python/_object.py:221
-msgid "Returns"
+#: _cli/__init__.py:73
+msgid "Usage:"
msgstr ""
-#: domains/c/__init__.py:345 domains/javascript.py:293
-#: domains/python/_object.py:227
-msgid "Return type"
+#: _cli/__init__.py:75
+#, python-brace-format
+msgid "{0} [OPTIONS] []"
msgstr ""
-#: domains/javascript.py:370
-#, python-format
-msgid "%s (module)"
+#: _cli/__init__.py:78
+msgid " The Sphinx documentation generator."
msgstr ""
-#: domains/c/__init__.py:751 domains/cpp/__init__.py:941
-#: domains/javascript.py:415 domains/python/__init__.py:740
-msgid "function"
+#: _cli/__init__.py:87
+msgid "Commands:"
msgstr ""
-#: domains/javascript.py:416 domains/python/__init__.py:744
-msgid "method"
+#: _cli/__init__.py:98
+msgid "Options"
msgstr ""
-#: domains/cpp/__init__.py:939 domains/javascript.py:417
-#: domains/python/__init__.py:742
-msgid "class"
+#: _cli/__init__.py:113 _cli/__init__.py:181
+msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
msgstr ""
-#: domains/javascript.py:418 domains/python/__init__.py:741
-msgid "data"
+#: _cli/__init__.py:171
+#, python-brace-format
+msgid ""
+"{0}: error: {1}\n"
+"Run '{0} --help' for information"
msgstr ""
-#: domains/javascript.py:419 domains/python/__init__.py:747
-msgid "attribute"
+#: _cli/__init__.py:179
+msgid " Manage documentation with Sphinx."
msgstr ""
-#: domains/javascript.py:420 domains/python/__init__.py:750
-msgid "module"
+#: _cli/__init__.py:191
+msgid "Show the version and exit."
msgstr ""
-#: domains/javascript.py:454
-#, python-format
-msgid "duplicate %s description of %s, other %s in %s"
+#: _cli/__init__.py:199
+msgid "Show this message and exit."
msgstr ""
-#: domains/changeset.py:26
-#, python-format
-msgid "Added in version %s"
+#: _cli/__init__.py:203
+msgid "Logging"
msgstr ""
-#: domains/changeset.py:27
-#, python-format
-msgid "Changed in version %s"
+#: _cli/__init__.py:210
+msgid "Increase verbosity (can be repeated)"
msgstr ""
-#: domains/changeset.py:28
-#, python-format
-msgid "Deprecated since version %s"
+#: _cli/__init__.py:218
+msgid "Only print errors and warnings."
msgstr ""
-#: domains/changeset.py:29
-#, python-format
-msgid "Removed in version %s"
+#: _cli/__init__.py:225
+msgid "No output at all"
msgstr ""
-#: domains/rst.py:131 domains/rst.py:190
-#, python-format
-msgid "%s (directive)"
+#: _cli/__init__.py:231
+msgid ""
msgstr ""
-#: domains/rst.py:191 domains/rst.py:202
-#, python-format
-msgid ":%s: (directive option)"
+#: _cli/__init__.py:263
+msgid "See 'sphinx --help'.\n"
msgstr ""
-#: domains/rst.py:224
-#, python-format
-msgid "%s (role)"
+#: transforms/i18n.py:230 transforms/i18n.py:305
+#, python-brace-format
+msgid ""
+"inconsistent footnote references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: domains/rst.py:234
-msgid "directive"
+#: transforms/i18n.py:275
+#, python-brace-format
+msgid ""
+"inconsistent references in translated message. original: {0}, translated: "
+"{1}"
msgstr ""
-#: domains/rst.py:235
-msgid "directive-option"
+#: transforms/i18n.py:325
+#, python-brace-format
+msgid ""
+"inconsistent citation references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: domains/rst.py:236
-msgid "role"
+#: transforms/i18n.py:347
+#, python-brace-format
+msgid ""
+"inconsistent term references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: domains/rst.py:262
-#, python-format
-msgid "duplicate description of %s %s, other instance in %s"
+#: transforms/__init__.py:144
+msgid "could not calculate translation progress!"
msgstr ""
-#: domains/citation.py:75
-#, python-format
-msgid "duplicate citation %s, other instance in %s"
+#: transforms/__init__.py:149
+msgid "no translated elements!"
msgstr ""
-#: domains/citation.py:92
+#: transforms/__init__.py:258
#, python-format
-msgid "Citation [%s] is not referenced."
+msgid ""
+"4 column based index found. It might be a bug of extensions you use: %r"
msgstr ""
-#: locale/__init__.py:228
-msgid "Attention"
+#: transforms/__init__.py:299
+#, python-format
+msgid "Footnote [%s] is not referenced."
msgstr ""
-#: locale/__init__.py:229
-msgid "Caution"
+#: transforms/__init__.py:308
+msgid "Footnote [*] is not referenced."
msgstr ""
-#: locale/__init__.py:230
-msgid "Danger"
+#: transforms/__init__.py:319
+msgid "Footnote [#] is not referenced."
msgstr ""
-#: locale/__init__.py:231
-msgid "Error"
+#: util/inventory.py:147
+#, python-format
+msgid "inventory <%s> contains duplicate definitions of %s"
msgstr ""
-#: locale/__init__.py:232
-msgid "Hint"
+#: util/inventory.py:166
+#, python-format
+msgid "inventory <%s> contains multiple definitions for %s"
msgstr ""
-#: locale/__init__.py:233
-msgid "Important"
+#: util/i18n.py:100
+#, python-format
+msgid "reading error: %s, %s"
msgstr ""
-#: locale/__init__.py:234
-msgid "Note"
+#: util/i18n.py:113
+#, python-format
+msgid "writing error: %s, %s"
msgstr ""
-#: locale/__init__.py:235
-msgid "See also"
+#: util/i18n.py:146
+#, python-format
+msgid "locale_dir %s does not exist"
msgstr ""
-#: locale/__init__.py:236
-msgid "Tip"
+#: util/i18n.py:244
+#, python-format
+msgid "Invalid Babel locale: %r."
msgstr ""
-#: locale/__init__.py:237
-msgid "Warning"
+#: util/i18n.py:253
+#, python-format
+msgid ""
+"Invalid date format. Quote the string by single quote if you want to output "
+"it directly: %s"
msgstr ""
-#: cmd/quickstart.py:52
-msgid "automatically insert docstrings from modules"
+#: util/osutil.py:131
+#, python-format
+msgid ""
+"Aborted attempted copy from %s to %s (the destination path has existing "
+"data)."
msgstr ""
-#: cmd/quickstart.py:53
-msgid "automatically test code snippets in doctest blocks"
+#: util/display.py:82
+msgid "skipped"
msgstr ""
-#: cmd/quickstart.py:54
-msgid "link between Sphinx documentation of different projects"
+#: util/display.py:87
+msgid "failed"
msgstr ""
-#: cmd/quickstart.py:55
-msgid "write \"todo\" entries that can be shown or hidden on build"
+#: util/docutils.py:325
+#, python-format
+msgid "unknown directive name: %s"
msgstr ""
-#: cmd/quickstart.py:56
-msgid "checks for documentation coverage"
+#: util/docutils.py:361
+#, python-format
+msgid "unknown role name: %s"
msgstr ""
-#: cmd/quickstart.py:57
-msgid "include math, rendered as PNG or SVG images"
+#: util/docutils.py:805
+#, python-format
+msgid "unknown node type: %r"
msgstr ""
-#: cmd/quickstart.py:58
-msgid "include math, rendered in the browser by MathJax"
+#: util/fileutil.py:76
+#, python-format
+msgid ""
+"Aborted attempted copy from rendered template %s to %s (the destination path"
+" has existing data)."
msgstr ""
-#: cmd/quickstart.py:59
-msgid "conditional inclusion of content based on config values"
+#: util/fileutil.py:89
+#, python-format
+msgid "Writing evaluated template result to %s"
msgstr ""
-#: cmd/quickstart.py:60
-msgid "include links to the source code of documented Python objects"
+#: util/docfields.py:103
+#, python-format
+msgid ""
+"Problem in %s domain: field is supposed to use role '%s', but that role is "
+"not in the domain."
msgstr ""
-#: cmd/quickstart.py:61
-msgid "create .nojekyll file to publish the document on GitHub pages"
+#: util/rst.py:73
+#, python-format
+msgid "default role %s not found"
msgstr ""
-#: cmd/quickstart.py:110
-msgid "Please enter a valid path name."
+#: util/nodes.py:462
+#, python-format
+msgid ""
+"%r is no longer supported for index entries (from entry %r). Use 'pair: %s' "
+"instead."
msgstr ""
-#: cmd/quickstart.py:126
-msgid "Please enter some text."
+#: util/nodes.py:523
+#, python-format
+msgid "toctree contains ref to nonexisting file %r"
msgstr ""
-#: cmd/quickstart.py:133
+#: util/nodes.py:739
#, python-format
-msgid "Please enter one of %s."
+msgid "exception while evaluating only directive expression: %s"
msgstr ""
-#: cmd/quickstart.py:141
-msgid "Please enter either 'y' or 'n'."
+#: templates/latex/longtable.tex.jinja:52
+#: templates/latex/sphinxmessages.sty.jinja:8
+msgid "continued from previous page"
msgstr ""
-#: cmd/quickstart.py:147
-msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
+#: templates/latex/longtable.tex.jinja:63
+#: templates/latex/sphinxmessages.sty.jinja:9
+msgid "continues on next page"
msgstr ""
-#: cmd/quickstart.py:229
-#, python-format
-msgid "Welcome to the Sphinx %s quickstart utility."
+#: templates/latex/sphinxmessages.sty.jinja:10
+msgid "Non-alphabetical"
msgstr ""
-#: cmd/quickstart.py:234
-msgid ""
-"Please enter values for the following settings (just press Enter to\n"
-"accept a default value, if one is given in brackets)."
+#: environment/adapters/indexentries.py:267
+#: templates/latex/sphinxmessages.sty.jinja:11
+msgid "Symbols"
msgstr ""
-#: cmd/quickstart.py:241
-#, python-format
-msgid "Selected root path: %s"
+#: templates/latex/sphinxmessages.sty.jinja:12
+msgid "Numbers"
msgstr ""
-#: cmd/quickstart.py:244
-msgid "Enter the root path for documentation."
+#: templates/latex/sphinxmessages.sty.jinja:13
+msgid "page"
msgstr ""
-#: cmd/quickstart.py:245
-msgid "Root path for the documentation"
+#: builders/latex/__init__.py:206 templates/latex/latex.tex.jinja:92
+msgid "Release"
msgstr ""
-#: cmd/quickstart.py:254
-msgid "Error: an existing conf.py has been found in the selected root path."
+#: transforms/post_transforms/images.py:79
+#, python-format
+msgid "Could not fetch remote image: %s [%s]"
msgstr ""
-#: cmd/quickstart.py:259
-msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
+#: transforms/post_transforms/images.py:96
+#, python-format
+msgid "Could not fetch remote image: %s [%d]"
msgstr ""
-#: cmd/quickstart.py:262
-msgid "Please enter a new root path (or just Enter to exit)"
+#: transforms/post_transforms/images.py:143
+#, python-format
+msgid "Unknown image format: %s..."
msgstr ""
-#: cmd/quickstart.py:273
+#: transforms/post_transforms/__init__.py:88
msgid ""
-"You have two options for placing the build directory for Sphinx output.\n"
-"Either, you use a directory \"_build\" within the root path, or you separate\n"
-"\"source\" and \"build\" directories within the root path."
+"Could not determine the fallback text for the cross-reference. Might be a "
+"bug."
msgstr ""
-#: cmd/quickstart.py:279
-msgid "Separate source and build directories (y/n)"
+#: transforms/post_transforms/__init__.py:233
+#, python-format
+msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr ""
-#: cmd/quickstart.py:286
-msgid ""
-"Inside the root directory, two more directories will be created; \"_templates\"\n"
-"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
-"files. You can enter another prefix (such as \".\") to replace the underscore."
+#: transforms/post_transforms/__init__.py:291
+#, python-format
+msgid "%s:%s reference target not found: %s"
msgstr ""
-#: cmd/quickstart.py:291
-msgid "Name prefix for templates and static dir"
-msgstr ""
-
-#: cmd/quickstart.py:297
-msgid ""
-"The project name will occur in several places in the built documentation."
-msgstr ""
-
-#: cmd/quickstart.py:300
-msgid "Project name"
-msgstr ""
-
-#: cmd/quickstart.py:302
-msgid "Author name(s)"
-msgstr ""
-
-#: cmd/quickstart.py:308
-msgid ""
-"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
-"software. Each version can have multiple releases. For example, for\n"
-"Python the version is something like 2.5 or 3.0, while the release is\n"
-"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
-"just set both to the same value."
-msgstr ""
-
-#: cmd/quickstart.py:315
-msgid "Project version"
-msgstr ""
-
-#: cmd/quickstart.py:317
-msgid "Project release"
-msgstr ""
-
-#: cmd/quickstart.py:323
-msgid ""
-"If the documents are to be written in a language other than English,\n"
-"you can select a language here by its language code. Sphinx will then\n"
-"translate text that it generates into that language.\n"
-"\n"
-"For a list of supported codes, see\n"
-"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
-msgstr ""
-
-#: cmd/quickstart.py:331
-msgid "Project language"
+#: transforms/post_transforms/__init__.py:297
+#, python-format
+msgid "%r reference target not found: %s"
msgstr ""
-#: cmd/quickstart.py:339
-msgid ""
-"The file name suffix for source files. Commonly, this is either \".txt\"\n"
-"or \".rst\". Only files with this suffix are considered documents."
+#: _cli/util/errors.py:190
+msgid "Interrupted!"
msgstr ""
-#: cmd/quickstart.py:343
-msgid "Source file suffix"
+#: _cli/util/errors.py:194
+msgid "reStructuredText markup error!"
msgstr ""
-#: cmd/quickstart.py:349
-msgid ""
-"One document is special in that it is considered the top node of the\n"
-"\"contents tree\", that is, it is the root of the hierarchical structure\n"
-"of the documents. Normally, this is \"index\", but if your \"index\"\n"
-"document is a custom template, you can also set this to another filename."
+#: _cli/util/errors.py:200
+msgid "Encoding error!"
msgstr ""
-#: cmd/quickstart.py:356
-msgid "Name of your master document (without suffix)"
+#: _cli/util/errors.py:203
+msgid "Recursion error!"
msgstr ""
-#: cmd/quickstart.py:367
-#, python-format
+#: _cli/util/errors.py:207
msgid ""
-"Error: the master file %s has already been found in the selected root path."
-msgstr ""
-
-#: cmd/quickstart.py:373
-msgid "sphinx-quickstart will not overwrite the existing file."
+"This can happen with very large or deeply nested source files. You can "
+"carefully increase the default Python recursion limit of 1,000 in conf.py "
+"with e.g.:"
msgstr ""
-#: cmd/quickstart.py:377
-msgid ""
-"Please enter a new file name, or rename the existing file and press Enter"
+#: _cli/util/errors.py:227
+msgid "Starting debugger:"
msgstr ""
-#: cmd/quickstart.py:385
-msgid "Indicate which of the following Sphinx extensions should be enabled:"
+#: _cli/util/errors.py:235
+msgid "The full traceback has been saved in:"
msgstr ""
-#: cmd/quickstart.py:396
+#: _cli/util/errors.py:240
msgid ""
-"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
-"been deselected."
+"To report this error to the developers, please open an issue at "
+". Thanks!"
msgstr ""
-#: cmd/quickstart.py:406
+#: _cli/util/errors.py:246
msgid ""
-"A Makefile and a Windows command file can be generated for you so that you\n"
-"only have to run e.g. `make html' instead of invoking sphinx-build\n"
-"directly."
-msgstr ""
-
-#: cmd/quickstart.py:411
-msgid "Create Makefile? (y/n)"
+"Please also report this if it was a user error, so that a better error "
+"message can be provided next time."
msgstr ""
-#: cmd/quickstart.py:415
-msgid "Create Windows command file? (y/n)"
+#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
+msgid "Collapse sidebar"
msgstr ""
-#: cmd/quickstart.py:467 ext/apidoc/_generate.py:76
-#, python-format
-msgid "Creating file %s."
+#: themes/basic/layout.html:18
+msgid "Navigation"
msgstr ""
-#: cmd/quickstart.py:472 ext/apidoc/_generate.py:73
+#: themes/basic/layout.html:115
#, python-format
-msgid "File %s already exists, skipping."
+msgid "Search within %(docstitle)s"
msgstr ""
-#: cmd/quickstart.py:515
-msgid "Finished: An initial directory structure has been created."
+#: themes/basic/layout.html:124
+msgid "About these documents"
msgstr ""
-#: cmd/quickstart.py:519
-#, python-format
-msgid ""
-"You should now populate your master file %s and create other documentation\n"
-"source files. "
+#: themes/agogo/layout.html:34 themes/basic/layout.html:130
+#: themes/basic/search.html:3 themes/basic/search.html:15
+msgid "Search"
msgstr ""
-#: cmd/quickstart.py:526
-msgid ""
-"Use the Makefile to build the docs, like so:\n"
-" make builder"
+#: themes/basic/layout.html:133 themes/basic/layout.html:177
+#: themes/basic/layout.html:179
+msgid "Copyright"
msgstr ""
-#: cmd/quickstart.py:530
+#: themes/basic/layout.html:183 themes/basic/layout.html:189
#, python-format
-msgid ""
-"Use the sphinx-build command to build the docs, like so:\n"
-" sphinx-build -b builder %s %s"
-msgstr ""
-
-#: cmd/quickstart.py:537
-msgid ""
-"where \"builder\" is one of the supported builders, e.g. html, latex or "
-"linkcheck."
-msgstr ""
-
-#: cmd/quickstart.py:572
-msgid ""
-"\n"
-"Generate required files for a Sphinx project.\n"
-"\n"
-"sphinx-quickstart is an interactive tool that asks some questions about your\n"
-"project and then generates a complete documentation directory and sample\n"
-"Makefile to be used with sphinx-build.\n"
-msgstr ""
-
-#: cmd/build.py:73 cmd/quickstart.py:581 ext/apidoc/_cli.py:27
-#: ext/autosummary/generate.py:835
-msgid "For more information, visit ."
-msgstr ""
-
-#: cmd/quickstart.py:591
-msgid "quiet mode"
-msgstr ""
-
-#: cmd/quickstart.py:601
-msgid "project root"
-msgstr ""
-
-#: cmd/quickstart.py:604
-msgid "Structure options"
-msgstr ""
-
-#: cmd/quickstart.py:610
-msgid "if specified, separate source and build dirs"
-msgstr ""
-
-#: cmd/quickstart.py:616
-msgid "if specified, create build dir under source dir"
-msgstr ""
-
-#: cmd/quickstart.py:622
-msgid "replacement for dot in _templates etc."
-msgstr ""
-
-#: cmd/quickstart.py:625
-msgid "Project basic options"
-msgstr ""
-
-#: cmd/quickstart.py:627
-msgid "project name"
-msgstr ""
-
-#: cmd/quickstart.py:630
-msgid "author names"
-msgstr ""
-
-#: cmd/quickstart.py:637
-msgid "version of project"
-msgstr ""
-
-#: cmd/quickstart.py:644
-msgid "release of project"
-msgstr ""
-
-#: cmd/quickstart.py:651
-msgid "document language"
-msgstr ""
-
-#: cmd/quickstart.py:654
-msgid "source file suffix"
-msgstr ""
-
-#: cmd/quickstart.py:657
-msgid "master document name"
-msgstr ""
-
-#: cmd/quickstart.py:660
-msgid "use epub"
-msgstr ""
-
-#: cmd/quickstart.py:663
-msgid "Extension options"
+msgid "© %(copyright_prefix)s %(copyright)s."
msgstr ""
-#: cmd/quickstart.py:670
+#: themes/basic/layout.html:201
#, python-format
-msgid "enable %s extension"
-msgstr ""
-
-#: cmd/quickstart.py:677
-msgid "enable arbitrary extensions"
-msgstr ""
-
-#: cmd/quickstart.py:680
-msgid "Makefile and Batchfile creation"
-msgstr ""
-
-#: cmd/quickstart.py:686
-msgid "create makefile"
-msgstr ""
-
-#: cmd/quickstart.py:692
-msgid "do not create makefile"
-msgstr ""
-
-#: cmd/quickstart.py:699
-msgid "create batchfile"
-msgstr ""
-
-#: cmd/quickstart.py:705
-msgid "do not create batchfile"
-msgstr ""
-
-#: cmd/quickstart.py:714
-msgid "use make-mode for Makefile/make.bat"
-msgstr ""
-
-#: cmd/quickstart.py:717 ext/apidoc/_cli.py:243
-msgid "Project templating"
-msgstr ""
-
-#: cmd/quickstart.py:723 ext/apidoc/_cli.py:249
-msgid "template directory for template files"
-msgstr ""
-
-#: cmd/quickstart.py:730
-msgid "define a template variable"
-msgstr ""
-
-#: cmd/quickstart.py:766
-msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
-msgstr ""
-
-#: cmd/quickstart.py:785
-msgid ""
-"Error: specified path is not a directory, or sphinx files already exist."
-msgstr ""
-
-#: cmd/quickstart.py:792
-msgid ""
-"sphinx-quickstart only generate into a empty directory. Please specify a new"
-" root path."
+msgid "Last updated on %(last_updated)s."
msgstr ""
-#: cmd/quickstart.py:809
+#: themes/basic/layout.html:204
#, python-format
-msgid "Invalid template variable: %s"
-msgstr ""
-
-#: cmd/build.py:64
-msgid "job number should be a positive number"
-msgstr ""
-
-#: cmd/build.py:74
msgid ""
-"\n"
-"Generate documentation from source files.\n"
-"\n"
-"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
-"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
-"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
-"including 'conf.py'\n"
-"\n"
-"sphinx-build can create documentation in different formats. A format is\n"
-"selected by specifying the builder name on the command line; it defaults to\n"
-"HTML. Builders can also perform other tasks related to documentation\n"
-"processing.\n"
-"\n"
-"By default, everything that is outdated is built. Output only for selected\n"
-"files can be built by specifying individual filenames.\n"
-msgstr ""
-
-#: cmd/build.py:100
-msgid "path to documentation source files"
-msgstr ""
-
-#: cmd/build.py:103
-msgid "path to output directory"
-msgstr ""
-
-#: cmd/build.py:109
-msgid ""
-"(optional) a list of specific files to rebuild. Ignored if --write-all is "
-"specified"
-msgstr ""
-
-#: cmd/build.py:114
-msgid "general options"
-msgstr ""
-
-#: cmd/build.py:121
-msgid "builder to use (default: 'html')"
-msgstr ""
-
-#: cmd/build.py:131
-msgid ""
-"run in parallel with N processes, when possible. 'auto' uses the number of "
-"CPU cores"
-msgstr ""
-
-#: cmd/build.py:140
-msgid "write all files (default: only write new and changed files)"
-msgstr ""
-
-#: cmd/build.py:147
-msgid "don't use a saved environment, always read all files"
-msgstr ""
-
-#: cmd/build.py:150
-msgid "path options"
-msgstr ""
-
-#: cmd/build.py:157
-msgid ""
-"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
-msgstr ""
-
-#: cmd/build.py:166
-msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
-msgstr ""
-
-#: cmd/build.py:175
-msgid "use no configuration file, only use settings from -D options"
-msgstr ""
-
-#: cmd/build.py:184
-msgid "override a setting in configuration file"
-msgstr ""
-
-#: cmd/build.py:193
-msgid "pass a value into HTML templates"
-msgstr ""
-
-#: cmd/build.py:202
-msgid "define tag: include \"only\" blocks with TAG"
-msgstr ""
-
-#: cmd/build.py:209
-msgid "nitpicky mode: warn about all missing references"
-msgstr ""
-
-#: cmd/build.py:212
-msgid "console output options"
-msgstr ""
-
-#: cmd/build.py:219
-msgid "increase verbosity (can be repeated)"
-msgstr ""
-
-#: cmd/build.py:226 ext/apidoc/_cli.py:66
-msgid "no output on stdout, just warnings on stderr"
-msgstr ""
-
-#: cmd/build.py:233
-msgid "no output at all, not even warnings"
-msgstr ""
-
-#: cmd/build.py:241
-msgid "do emit colored output (default: auto-detect)"
-msgstr ""
-
-#: cmd/build.py:249
-msgid "do not emit colored output (default: auto-detect)"
-msgstr ""
-
-#: cmd/build.py:252
-msgid "warning control options"
-msgstr ""
-
-#: cmd/build.py:258
-msgid "write warnings (and errors) to given file"
-msgstr ""
-
-#: cmd/build.py:265
-msgid "turn warnings into errors"
+"Created using Sphinx "
+"%(sphinx_version)s."
msgstr ""
-#: cmd/build.py:273
-msgid "show full traceback on exception"
+#: themes/basic/relations.html:4
+msgid "Previous topic"
msgstr ""
-#: cmd/build.py:276
-msgid "run Pdb on exception"
+#: themes/basic/relations.html:6
+msgid "previous chapter"
msgstr ""
-#: cmd/build.py:282
-msgid "raise an exception on warnings"
+#: themes/basic/relations.html:11
+msgid "Next topic"
msgstr ""
-#: cmd/build.py:325
-msgid "cannot combine -a option and filenames"
+#: themes/basic/relations.html:13
+msgid "next chapter"
msgstr ""
-#: cmd/build.py:357
+#: themes/basic/genindex-single.html:26
#, python-format
-msgid "cannot open warning file '%s': %s"
-msgstr ""
-
-#: cmd/build.py:376
-msgid "-D option argument must be in the form name=value"
-msgstr ""
-
-#: cmd/build.py:383
-msgid "-A option argument must be in the form name=value"
-msgstr ""
-
-#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
-msgid "Collapse sidebar"
-msgstr ""
-
-#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
-#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
-msgid "Table of Contents"
+msgid "Index – %(key)s"
msgstr ""
-#: themes/agogo/layout.html:34 themes/basic/layout.html:130
-#: themes/basic/search.html:3 themes/basic/search.html:15
-msgid "Search"
+#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
+#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
+msgid "Full index on one page"
msgstr ""
-#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
-#: themes/basic/searchfield.html:12
-msgid "Go"
+#: themes/basic/sourcelink.html:4
+msgid "This Page"
msgstr ""
#: themes/agogo/layout.html:81 themes/basic/sourcelink.html:7
msgid "Show Source"
msgstr ""
-#: themes/haiku/layout.html:16
-msgid "Contents"
+#: themes/basic/searchbox.html:4
+msgid "Quick search"
msgstr ""
-#: themes/basic/opensearch.xml:4
-#, python-format
-msgid "Search %(docstitle)s"
+#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
+#: themes/basic/searchfield.html:12
+msgid "Go"
msgstr ""
#: themes/basic/defindex.html:4
@@ -2682,7 +2882,7 @@ msgstr ""
msgid "quick access to all modules"
msgstr ""
-#: builders/html/__init__.py:507 themes/basic/defindex.html:23
+#: builders/html/__init__.py:496 themes/basic/defindex.html:23
msgid "General Index"
msgstr ""
@@ -2690,22 +2890,14 @@ msgstr ""
msgid "all functions, classes, terms"
msgstr ""
-#: themes/basic/sourcelink.html:4
-msgid "This Page"
+#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
+#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
+msgid "Table of Contents"
msgstr ""
-#: themes/basic/genindex-single.html:26
+#: themes/basic/opensearch.xml:4
#, python-format
-msgid "Index – %(key)s"
-msgstr ""
-
-#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
-#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
-msgid "Full index on one page"
-msgstr ""
-
-#: themes/basic/searchbox.html:4
-msgid "Quick search"
+msgid "Search %(docstitle)s"
msgstr ""
#: themes/basic/genindex-split.html:8
@@ -2716,57 +2908,6 @@ msgstr ""
msgid "can be huge"
msgstr ""
-#: themes/basic/relations.html:4
-msgid "Previous topic"
-msgstr ""
-
-#: themes/basic/relations.html:6
-msgid "previous chapter"
-msgstr ""
-
-#: themes/basic/relations.html:11
-msgid "Next topic"
-msgstr ""
-
-#: themes/basic/relations.html:13
-msgid "next chapter"
-msgstr ""
-
-#: themes/basic/layout.html:18
-msgid "Navigation"
-msgstr ""
-
-#: themes/basic/layout.html:115
-#, python-format
-msgid "Search within %(docstitle)s"
-msgstr ""
-
-#: themes/basic/layout.html:124
-msgid "About these documents"
-msgstr ""
-
-#: themes/basic/layout.html:133 themes/basic/layout.html:177
-#: themes/basic/layout.html:179
-msgid "Copyright"
-msgstr ""
-
-#: themes/basic/layout.html:183 themes/basic/layout.html:189
-#, python-format
-msgid "© %(copyright_prefix)s %(copyright)s."
-msgstr ""
-
-#: themes/basic/layout.html:201
-#, python-format
-msgid "Last updated on %(last_updated)s."
-msgstr ""
-
-#: themes/basic/layout.html:204
-#, python-format
-msgid ""
-"Created using Sphinx "
-"%(sphinx_version)s."
-msgstr ""
-
#: themes/basic/search.html:20
msgid ""
"Please activate JavaScript to enable the search\n"
@@ -2783,21 +2924,21 @@ msgstr ""
msgid "search"
msgstr ""
-#: themes/basic/static/sphinx_highlight.js:112
-msgid "Hide Search Matches"
+#: themes/haiku/layout.html:16
+msgid "Contents"
msgstr ""
-#: themes/basic/static/searchtools.js:117
+#: themes/basic/static/searchtools.js:132
msgid "Search Results"
msgstr ""
-#: themes/basic/static/searchtools.js:119
+#: themes/basic/static/searchtools.js:134
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
msgstr ""
-#: themes/basic/static/searchtools.js:123
+#: themes/basic/static/searchtools.js:138
#, python-brace-format
msgid "Search finished, found one page matching the search query."
msgid_plural ""
@@ -2805,21 +2946,20 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: themes/basic/static/searchtools.js:253
+#: themes/basic/static/searchtools.js:276
msgid "Searching"
msgstr ""
-#: themes/basic/static/searchtools.js:270
+#: themes/basic/static/searchtools.js:293
msgid "Preparing search..."
msgstr ""
-#: themes/basic/static/searchtools.js:474
+#: themes/basic/static/searchtools.js:526
msgid ", in "
msgstr ""
-#: themes/basic/changes/rstsource.html:5
-#, python-format
-msgid "%(filename)s — %(docstitle)s"
+#: themes/basic/static/sphinx_highlight.js:112
+msgid "Hide Search Matches"
msgstr ""
#: themes/basic/changes/frameset.html:5
@@ -2828,6 +2968,11 @@ msgstr ""
msgid "Changes in Version %(version)s — %(docstitle)s"
msgstr ""
+#: themes/basic/changes/rstsource.html:5
+#, python-format
+msgid "%(filename)s — %(docstitle)s"
+msgstr ""
+
#: themes/basic/changes/versionchanges.html:17
#, python-format
msgid "Automatically generated list of changes in version %(version)s"
@@ -2849,119 +2994,126 @@ msgstr ""
msgid "Expand sidebar"
msgstr ""
-#: domains/python/_annotations.py:529
+#: domains/python/_annotations.py:522
msgid "Positional-only parameter separator (PEP 570)"
msgstr ""
-#: domains/python/_annotations.py:540
+#: domains/python/_annotations.py:533
msgid "Keyword-only parameters separator (PEP 3102)"
msgstr ""
-#: domains/python/__init__.py:113 domains/python/__init__.py:278
+#: domains/c/__init__.py:354 domains/cpp/__init__.py:485
+#: domains/python/_object.py:190 ext/napoleon/docstring.py:980
+msgid "Parameters"
+msgstr ""
+
+#: domains/python/_object.py:206
+msgid "Variables"
+msgstr ""
+
+#: domains/python/_object.py:214
+msgid "Raises"
+msgstr ""
+
+#: domains/python/__init__.py:105 domains/python/__init__.py:270
#, python-format
msgid "%s() (in module %s)"
msgstr ""
-#: domains/python/__init__.py:180 domains/python/__init__.py:374
-#: domains/python/__init__.py:434 domains/python/__init__.py:474
+#: domains/python/__init__.py:172 domains/python/__init__.py:366
+#: domains/python/__init__.py:426 domains/python/__init__.py:466
#, python-format
msgid "%s (in module %s)"
msgstr ""
-#: domains/python/__init__.py:182
+#: domains/python/__init__.py:174
#, python-format
msgid "%s (built-in variable)"
msgstr ""
-#: domains/python/__init__.py:217
+#: domains/python/__init__.py:209
#, python-format
msgid "%s (built-in class)"
msgstr ""
-#: domains/python/__init__.py:218
+#: domains/python/__init__.py:210
#, python-format
msgid "%s (class in %s)"
msgstr ""
-#: domains/python/__init__.py:283
+#: domains/python/__init__.py:275
#, python-format
msgid "%s() (%s class method)"
msgstr ""
-#: domains/python/__init__.py:285
+#: domains/python/__init__.py:277
#, python-format
msgid "%s() (%s static method)"
msgstr ""
-#: domains/python/__init__.py:438
+#: domains/python/__init__.py:430
#, python-format
msgid "%s (%s property)"
msgstr ""
-#: domains/python/__init__.py:478
+#: domains/python/__init__.py:470
#, python-format
msgid "%s (type alias in %s)"
msgstr ""
-#: domains/python/__init__.py:638
+#: domains/python/__init__.py:624
msgid "Python Module Index"
msgstr ""
-#: domains/python/__init__.py:639
+#: domains/python/__init__.py:625
msgid "modules"
msgstr ""
-#: domains/python/__init__.py:717
+#: domains/python/__init__.py:703
msgid "Deprecated"
msgstr ""
-#: domains/python/__init__.py:743
+#: domains/python/__init__.py:729
msgid "exception"
msgstr ""
-#: domains/python/__init__.py:745
+#: domains/python/__init__.py:731
msgid "class method"
msgstr ""
-#: domains/python/__init__.py:746
+#: domains/python/__init__.py:732
msgid "static method"
msgstr ""
-#: domains/python/__init__.py:748
+#: domains/python/__init__.py:734
msgid "property"
msgstr ""
-#: domains/python/__init__.py:749
+#: domains/python/__init__.py:735
msgid "type alias"
msgstr ""
-#: domains/python/__init__.py:818
+#: domains/python/__init__.py:804
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :no-index: for"
" one of them"
msgstr ""
-#: domains/python/__init__.py:978
+#: domains/python/__init__.py:974
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
-#: domains/python/__init__.py:1052
+#: domains/python/__init__.py:1048
msgid " (deprecated)"
msgstr ""
-#: domains/c/__init__.py:326 domains/cpp/__init__.py:483
-#: domains/python/_object.py:190 ext/napoleon/docstring.py:974
-msgid "Parameters"
-msgstr ""
-
-#: domains/python/_object.py:206
-msgid "Variables"
-msgstr ""
-
-#: domains/python/_object.py:214
-msgid "Raises"
+#: domains/cpp/__init__.py:394 domains/cpp/_symbol.py:946
+#, python-format
+msgid ""
+"Duplicate C++ declaration, also defined at %s:%s.\n"
+"Declaration is '.. cpp:%s:: %s'."
msgstr ""
#: domains/cpp/__init__.py:159
@@ -2973,92 +3125,85 @@ msgstr ""
msgid "%s (C++ %s)"
msgstr ""
-#: domains/cpp/__init__.py:392 domains/cpp/_symbol.py:942
-#, python-format
-msgid ""
-"Duplicate C++ declaration, also defined at %s:%s.\n"
-"Declaration is '.. cpp:%s:: %s'."
-msgstr ""
-
-#: domains/c/__init__.py:333 domains/cpp/__init__.py:496
+#: domains/c/__init__.py:361 domains/cpp/__init__.py:498
msgid "Return values"
msgstr ""
-#: domains/c/__init__.py:754 domains/cpp/__init__.py:940
+#: domains/c/__init__.py:782 domains/cpp/__init__.py:942
msgid "union"
msgstr ""
-#: domains/c/__init__.py:749 domains/cpp/__init__.py:942
+#: domains/c/__init__.py:777 domains/cpp/__init__.py:944
msgid "member"
msgstr ""
-#: domains/c/__init__.py:757 domains/cpp/__init__.py:943
+#: domains/c/__init__.py:785 domains/cpp/__init__.py:945
msgid "type"
msgstr ""
-#: domains/cpp/__init__.py:944
+#: domains/cpp/__init__.py:946
msgid "concept"
msgstr ""
-#: domains/c/__init__.py:755 domains/cpp/__init__.py:945
+#: domains/c/__init__.py:783 domains/cpp/__init__.py:947
msgid "enum"
msgstr ""
-#: domains/c/__init__.py:756 domains/cpp/__init__.py:946
+#: domains/c/__init__.py:784 domains/cpp/__init__.py:948
msgid "enumerator"
msgstr ""
-#: domains/c/__init__.py:760 domains/cpp/__init__.py:949
+#: domains/c/__init__.py:788 domains/cpp/__init__.py:951
msgid "function parameter"
msgstr ""
-#: domains/cpp/__init__.py:952
+#: domains/cpp/__init__.py:954
msgid "template parameter"
msgstr ""
-#: domains/c/__init__.py:211
-#, python-format
-msgid "%s (C %s)"
-msgstr ""
-
-#: domains/c/__init__.py:277 domains/c/_symbol.py:557
+#: domains/c/__init__.py:279 domains/c/_symbol.py:569
#, python-format
msgid ""
"Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'."
msgstr ""
-#: domains/c/__init__.py:750
+#: domains/c/__init__.py:211
+#, python-format
+msgid "%s (C %s)"
+msgstr ""
+
+#: domains/c/__init__.py:778
msgid "variable"
msgstr ""
-#: domains/c/__init__.py:752
+#: domains/c/__init__.py:780
msgid "macro"
msgstr ""
-#: domains/c/__init__.py:753
+#: domains/c/__init__.py:781
msgid "struct"
msgstr ""
-#: domains/std/__init__.py:91 domains/std/__init__.py:111
+#: domains/std/__init__.py:88 domains/std/__init__.py:108
#, python-format
msgid "environment variable; %s"
msgstr ""
-#: domains/std/__init__.py:119
+#: domains/std/__init__.py:116
#, python-format
msgid "%s; configuration value"
msgstr ""
-#: domains/std/__init__.py:175
+#: domains/std/__init__.py:172
msgid "Type"
msgstr ""
-#: domains/std/__init__.py:185
+#: domains/std/__init__.py:182
msgid "Default"
msgstr ""
-#: domains/std/__init__.py:242
+#: domains/std/__init__.py:239
#, python-format
msgid ""
"Malformed option description %r, should look like \"opt\", \"-opt args\", \""
@@ -3086,581 +3231,489 @@ msgstr ""
msgid "glossary seems to be misformatted, check indentation"
msgstr ""
-#: domains/std/__init__.py:729
-msgid "glossary term"
-msgstr ""
-
-#: domains/std/__init__.py:730
-msgid "grammar token"
-msgstr ""
-
-#: domains/std/__init__.py:731
-msgid "reference label"
-msgstr ""
-
-#: domains/std/__init__.py:733
-msgid "environment variable"
-msgstr ""
-
-#: domains/std/__init__.py:734
-msgid "program option"
-msgstr ""
-
-#: domains/std/__init__.py:735
-msgid "document"
-msgstr ""
-
-#: domains/std/__init__.py:772 domains/std/__init__.py:785
-msgid "Module Index"
-msgstr ""
-
-#: domains/std/__init__.py:857
-#, python-format
-msgid "duplicate %s description of %s, other instance in %s"
-msgstr ""
-
-#: domains/std/__init__.py:1113
-msgid "numfig is disabled. :numref: is ignored."
-msgstr ""
-
-#: domains/std/__init__.py:1124
-#, python-format
-msgid "Failed to create a cross reference. Any number is not assigned: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1138
-#, python-format
-msgid "the link has no caption: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1153
-#, python-format
-msgid "invalid numfig_format: %s (%r)"
-msgstr ""
-
-#: domains/std/__init__.py:1157
-#, python-format
-msgid "invalid numfig_format: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1453
-#, python-format
-msgid "undefined label: %r"
-msgstr ""
-
-#: domains/std/__init__.py:1456
-#, python-format
-msgid "Failed to create a cross reference. A title or caption not found: %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:324
-#, python-format
-msgid "circular toctree references detected, ignoring: %s <- %s"
-msgstr ""
-
-#: environment/adapters/toctree.py:349
-#, python-format
-msgid ""
-"toctree contains reference to document %r that doesn't have a title: no link"
-" will be generated"
-msgstr ""
-
-#: environment/adapters/toctree.py:364
-#, python-format
-msgid "toctree contains reference to non-included document %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:367
-#, python-format
-msgid "toctree contains reference to non-existing document %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:123
-#, python-format
-msgid "see %s"
-msgstr ""
-
-#: environment/adapters/indexentries.py:133
-#, python-format
-msgid "see also %s"
-msgstr ""
-
-#: environment/adapters/indexentries.py:141
-#, python-format
-msgid "unknown index entry type %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:268
-#: templates/latex/sphinxmessages.sty.jinja:11
-msgid "Symbols"
-msgstr ""
-
-#: environment/collectors/asset.py:98
-#, python-format
-msgid "image file not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:126
-#, python-format
-msgid "image file %s not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:163
-#, python-format
-msgid "download file not readable: %s"
-msgstr ""
-
-#: environment/collectors/toctree.py:259
-#, python-format
-msgid "%s is already assigned section numbers (nested numbered toctree?)"
+#: domains/std/__init__.py:729
+msgid "glossary term"
msgstr ""
-#: _cli/util/errors.py:190
-msgid "Interrupted!"
+#: domains/std/__init__.py:730
+msgid "grammar token"
msgstr ""
-#: _cli/util/errors.py:194
-msgid "reStructuredText markup error!"
+#: domains/std/__init__.py:731
+msgid "reference label"
msgstr ""
-#: _cli/util/errors.py:200
-msgid "Encoding error!"
+#: domains/std/__init__.py:733
+msgid "environment variable"
msgstr ""
-#: _cli/util/errors.py:203
-msgid "Recursion error!"
+#: domains/std/__init__.py:734
+msgid "program option"
msgstr ""
-#: _cli/util/errors.py:207
-msgid ""
-"This can happen with very large or deeply nested source files. You can "
-"carefully increase the default Python recursion limit of 1,000 in conf.py "
-"with e.g.:"
+#: domains/std/__init__.py:735
+msgid "document"
msgstr ""
-#: _cli/util/errors.py:227
-msgid "Starting debugger:"
+#: domains/std/__init__.py:772 domains/std/__init__.py:785
+msgid "Module Index"
msgstr ""
-#: _cli/util/errors.py:235
-msgid "The full traceback has been saved in:"
+#: domains/std/__init__.py:857
+#, python-format
+msgid "duplicate %s description of %s, other instance in %s"
msgstr ""
-#: _cli/util/errors.py:240
-msgid ""
-"To report this error to the developers, please open an issue at "
-". Thanks!"
+#: domains/std/__init__.py:1113
+msgid "numfig is disabled. :numref: is ignored."
msgstr ""
-#: _cli/util/errors.py:246
-msgid ""
-"Please also report this if it was a user error, so that a better error "
-"message can be provided next time."
+#: domains/std/__init__.py:1124
+#, python-format
+msgid "Failed to create a cross reference. Any number is not assigned: %s"
msgstr ""
-#: transforms/post_transforms/__init__.py:88
-msgid ""
-"Could not determine the fallback text for the cross-reference. Might be a "
-"bug."
+#: domains/std/__init__.py:1138
+#, python-format
+msgid "the link has no caption: %s"
msgstr ""
-#: transforms/post_transforms/__init__.py:237
+#: domains/std/__init__.py:1153
#, python-format
-msgid "more than one target found for 'any' cross-reference %r: could be %s"
+msgid "invalid numfig_format: %s (%r)"
msgstr ""
-#: transforms/post_transforms/__init__.py:299
+#: domains/std/__init__.py:1157
#, python-format
-msgid "%s:%s reference target not found: %s"
+msgid "invalid numfig_format: %s"
msgstr ""
-#: transforms/post_transforms/__init__.py:305
+#: domains/std/__init__.py:1453
#, python-format
-msgid "%r reference target not found: %s"
+msgid "undefined label: %r"
msgstr ""
-#: transforms/post_transforms/images.py:79
+#: domains/std/__init__.py:1456
#, python-format
-msgid "Could not fetch remote image: %s [%s]"
+msgid "Failed to create a cross reference. A title or caption not found: %r"
msgstr ""
-#: transforms/post_transforms/images.py:96
+#: ext/napoleon/docstring.py:178
#, python-format
-msgid "Could not fetch remote image: %s [%d]"
+msgid "invalid value set (missing closing brace): %s"
msgstr ""
-#: transforms/post_transforms/images.py:143
+#: ext/napoleon/docstring.py:185
#, python-format
-msgid "Unknown image format: %s..."
+msgid "invalid value set (missing opening brace): %s"
msgstr ""
-#: builders/html/__init__.py:113
+#: ext/napoleon/docstring.py:192
#, python-format
-msgid "The HTML pages are in %(outdir)s."
+msgid "malformed string literal (missing closing quote): %s"
msgstr ""
-#: builders/html/__init__.py:348
+#: ext/napoleon/docstring.py:199
#, python-format
-msgid "Failed to read build info file: %r"
+msgid "malformed string literal (missing opening quote): %s"
msgstr ""
-#: builders/html/__init__.py:364
-msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+#: ext/napoleon/docstring.py:902
+msgid "Example"
msgstr ""
-#: builders/html/__init__.py:366
-msgid "building [html]: "
+#: ext/napoleon/docstring.py:903
+msgid "Examples"
msgstr ""
-#: builders/html/__init__.py:383
-#, python-format
-msgid ""
-"template %s has been changed since the previous build, all docs will be "
-"rebuilt"
+#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:947
+msgid "Keyword Arguments"
msgstr ""
-#: builders/html/__init__.py:507
-msgid "index"
+#: ext/napoleon/docstring.py:962
+msgid "Notes"
msgstr ""
-#: builders/html/__init__.py:560
-#, python-format
-msgid "Logo of %s"
+#: ext/napoleon/docstring.py:971
+msgid "Other Parameters"
msgstr ""
-#: builders/html/__init__.py:589
-msgid "next"
+#: ext/napoleon/docstring.py:1007
+msgid "Receives"
msgstr ""
-#: builders/html/__init__.py:598
-msgid "previous"
+#: ext/napoleon/docstring.py:1011
+msgid "References"
msgstr ""
-#: builders/html/__init__.py:696
-msgid "generating indices"
+#: ext/napoleon/docstring.py:1043
+msgid "Warns"
msgstr ""
-#: builders/html/__init__.py:711
-msgid "writing additional pages"
+#: ext/napoleon/docstring.py:1047
+msgid "Yields"
msgstr ""
-#: builders/html/__init__.py:794
+#: ext/autodoc/_generate.py:151
+#: ext/autodoc/_legacy_class_based/_documenters.py:859
#, python-format
-msgid "cannot copy image file '%s': %s"
-msgstr ""
-
-#: builders/html/__init__.py:806
-msgid "copying downloadable files... "
+msgid "A mocked object is detected: %r"
msgstr ""
-#: builders/html/__init__.py:818
+#: ext/autodoc/_generate.py:334 ext/autodoc/_generate.py:348
+#: ext/autodoc/_generate.py:370 ext/autodoc/_generate.py:386
+#: ext/autodoc/_legacy_class_based/_documenters.py:1860
+#: ext/autodoc/_legacy_class_based/_documenters.py:1889
+#: ext/autodoc/_legacy_class_based/_documenters.py:1983
#, python-format
-msgid "cannot copy downloadable file %r: %s"
+msgid "alias of %s"
msgstr ""
-#: builders/html/__init__.py:864
+#: ext/autodoc/_legacy_class_based/_documenters.py:1745
+#: ext/autodoc/_renderer.py:88
#, python-format
-msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
+msgid "Bases: %s"
msgstr ""
-#: builders/html/__init__.py:882
+#: ext/autodoc/_directive_options.py:226
+#: ext/autodoc/_legacy_class_based/_directive_options.py:47
#, python-format
-msgid "Failed to copy a file in html_static_file: %s: %r"
+msgid "invalid value for member-order option: %s"
msgstr ""
-#: builders/html/__init__.py:917
-msgid "copying static files"
+#: ext/autodoc/_directive_options.py:233
+#: ext/autodoc/_legacy_class_based/_directive_options.py:55
+#, python-format
+msgid "invalid value for class-doc-from option: %s"
msgstr ""
-#: builders/html/__init__.py:934
+#: ext/autodoc/_legacy_class_based/_documenters.py:239
+#: ext/autodoc/_names.py:45
#, python-format
-msgid "cannot copy static file %r"
+msgid "invalid signature for auto%s (%r)"
msgstr ""
-#: builders/html/__init__.py:939
-msgid "copying extra files"
+#: ext/autodoc/_legacy_class_based/_documenters.py:800
+#: ext/autodoc/_names.py:53 ext/autodoc/_names.py:101
+#, python-format
+msgid ""
+"don't know which module to import for autodocumenting %r (try placing a "
+"\"module\" or \"currentmodule\" directive in the document, or giving an "
+"explicit module name)"
msgstr ""
-#: builders/html/__init__.py:949
+#: ext/autodoc/_names.py:89
#, python-format
-msgid "cannot copy extra file %r"
+msgid "signature arguments given for automodule: '%s'"
msgstr ""
-#: builders/html/__init__.py:955
+#: ext/autodoc/_names.py:93
#, python-format
-msgid "Failed to write build info file: %r"
+msgid "return annotation given for automodule: '%s'"
msgstr ""
-#: builders/html/__init__.py:1005
-msgid ""
-"search index couldn't be loaded, but not all documents will be built: the "
-"index will be incomplete."
+#: ext/autodoc/_legacy_class_based/_documenters.py:956
+#: ext/autodoc/_names.py:134
+msgid "\"::\" in automodule name doesn't make sense"
msgstr ""
-#: builders/html/__init__.py:1052
+#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:984
#, python-format
-msgid "page %s matches two patterns in html_sidebars: %r and %r"
+msgid "Failed to remove %s: %s"
msgstr ""
-#: builders/html/__init__.py:1216
+#: ext/apidoc/_generate.py:69
#, python-format
+msgid "Would create file %s."
+msgstr ""
+
+#: ext/apidoc/_cli.py:28
msgid ""
-"a Unicode error occurred when rendering the page %s. Please make sure all "
-"config values that contain non-ASCII content are Unicode strings."
+"\n"
+"Look recursively in for Python modules and packages and create\n"
+"one reST file with automodule directives per package in the .\n"
+"\n"
+"The s can be file and/or directory patterns that will be\n"
+"excluded from generation.\n"
+"\n"
+"Note: By default this script will not overwrite already created files."
msgstr ""
-#: builders/html/__init__.py:1224
-#, python-format
+#: ext/apidoc/_cli.py:45
+msgid "path to module to document"
+msgstr ""
+
+#: ext/apidoc/_cli.py:50
msgid ""
-"An error happened in rendering the page %s.\n"
-"Reason: %r"
+"fnmatch-style file and/or directory patterns to exclude from generation"
msgstr ""
-#: builders/html/__init__.py:1257
-msgid "dumping object inventory"
+#: ext/apidoc/_cli.py:60
+msgid "directory to place all output"
msgstr ""
-#: builders/html/__init__.py:1265
-#, python-format
-msgid "dumping search index in %s"
+#: ext/apidoc/_cli.py:75
+msgid "maximum depth of submodules to show in the TOC (default: 4)"
msgstr ""
-#: builders/html/__init__.py:1308
-#, python-format
-msgid "invalid js_file: %r, ignored"
+#: ext/apidoc/_cli.py:82
+msgid "overwrite existing files"
msgstr ""
-#: builders/html/__init__.py:1342
-msgid "Many math_renderers are registered. But no math_renderer is selected."
+#: ext/apidoc/_cli.py:91
+msgid ""
+"follow symbolic links. Powerful when combined with "
+"collective.recipe.omelette."
msgstr ""
-#: builders/html/__init__.py:1346
-#, python-format
-msgid "Unknown math_renderer %r is given."
+#: ext/apidoc/_cli.py:99
+msgid "run the script without creating files"
msgstr ""
-#: builders/html/__init__.py:1360
-#, python-format
-msgid "html_extra_path entry %r is placed inside outdir"
+#: ext/apidoc/_cli.py:106
+msgid "put documentation for each module on its own page"
msgstr ""
-#: builders/html/__init__.py:1365
-#, python-format
-msgid "html_extra_path entry %r does not exist"
+#: ext/apidoc/_cli.py:113
+msgid "include \"_private\" modules"
msgstr ""
-#: builders/html/__init__.py:1380
-#, python-format
-msgid "html_static_path entry %r is placed inside outdir"
+#: ext/apidoc/_cli.py:120
+msgid "filename of table of contents (default: modules)"
msgstr ""
-#: builders/html/__init__.py:1385
-#, python-format
-msgid "html_static_path entry %r does not exist"
+#: ext/apidoc/_cli.py:127
+msgid "don't create a table of contents file"
msgstr ""
-#: builders/html/__init__.py:1396 builders/latex/__init__.py:504
-#, python-format
-msgid "logo file %r does not exist"
+#: ext/apidoc/_cli.py:135
+msgid ""
+"don't create headings for the module/package packages (e.g. when the "
+"docstrings already contain them)"
msgstr ""
-#: builders/html/__init__.py:1407
-#, python-format
-msgid "favicon file %r does not exist"
+#: ext/apidoc/_cli.py:145
+msgid "put module documentation before submodule documentation"
msgstr ""
-#: builders/html/__init__.py:1420
-#, python-format
+#: ext/apidoc/_cli.py:152
msgid ""
-"Values in 'html_sidebars' must be a list of strings. At least one pattern "
-"has a string value: %s. Change to `html_sidebars = %r`."
+"interpret module paths according to PEP-0420 implicit namespaces "
+"specification"
msgstr ""
-#: builders/html/__init__.py:1433
+#: ext/apidoc/_cli.py:160
msgid ""
-"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
-"configuration options)"
+"Comma-separated list of options to pass to automodule directive (or use "
+"SPHINX_APIDOC_OPTIONS)."
msgstr ""
-#: builders/html/__init__.py:1449
-#, python-format
-msgid "%s %s documentation"
+#: ext/apidoc/_cli.py:170
+msgid "file suffix (default: rst)"
msgstr ""
-#: builders/html/_build_info.py:32
-msgid "failed to read broken build info file (unknown version)"
+#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:950
+msgid "Remove existing files in the output directory that were not generated"
msgstr ""
-#: builders/html/_build_info.py:36
-msgid "failed to read broken build info file (missing config entry)"
+#: ext/apidoc/_cli.py:186
+msgid "generate a full project with sphinx-quickstart"
msgstr ""
-#: builders/html/_build_info.py:39
-msgid "failed to read broken build info file (missing tags entry)"
+#: ext/apidoc/_cli.py:193
+msgid "append module_path to sys.path, used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:118
-#, python-format
-msgid "The LaTeX files are in %(outdir)s."
+#: ext/apidoc/_cli.py:200
+msgid "project name (default: root module name)"
msgstr ""
-#: builders/latex/__init__.py:121
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through (pdf)latex\n"
-"(use `make latexpdf' here to do that automatically)."
+#: ext/apidoc/_cli.py:207
+msgid "project author(s), used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:159
-msgid "no \"latex_documents\" config value found; no documents will be written"
+#: ext/apidoc/_cli.py:214
+msgid "project version, used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:170
-#, python-format
-msgid "\"latex_documents\" config value references unknown document %s"
+#: ext/apidoc/_cli.py:222
+msgid "project release, used when --full is given, defaults to --doc-version"
+msgstr ""
+
+#: ext/apidoc/_cli.py:226
+msgid "extension options"
+msgstr ""
+
+#: ext/apidoc/_cli.py:232
+msgid "enable arbitrary extensions, used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:209 templates/latex/latex.tex.jinja:91
-msgid "Release"
+#: ext/apidoc/_cli.py:240
+#, python-format
+msgid "enable %s extension, used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:428
-msgid "copying TeX support files"
+#: ext/apidoc/_cli.py:291
+#, python-format
+msgid "%s is not a directory."
msgstr ""
-#: builders/latex/__init__.py:465
-msgid "copying additional files"
+#: ext/apidoc/_extension.py:50
+msgid "Running apidoc"
msgstr ""
-#: builders/latex/__init__.py:536
+#: ext/apidoc/_extension.py:102
#, python-format
-msgid "Unknown configure key: latex_elements[%r], ignored."
+msgid "apidoc_modules item %i must be a dict"
msgstr ""
-#: builders/latex/__init__.py:544
+#: ext/apidoc/_extension.py:110
#, python-format
-msgid "Unknown theme option: latex_theme_options[%r], ignored."
-msgstr ""
-
-#: builders/latex/transforms.py:120
-msgid "Failed to get a docname!"
+msgid "apidoc_modules item %i must have a 'path' key"
msgstr ""
-#: builders/latex/transforms.py:121
+#: ext/apidoc/_extension.py:115
#, python-format
-msgid "Failed to get a docname for source %r!"
+msgid "apidoc_modules item %i 'path' must be a string"
msgstr ""
-#: builders/latex/transforms.py:487
+#: ext/apidoc/_extension.py:121
#, python-format
-msgid "No footnote was found for given reference node %r"
+msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
msgstr ""
-#: builders/latex/theming.py:88
+#: ext/apidoc/_extension.py:133
#, python-format
-msgid "%r doesn't have \"theme\" setting"
+msgid "apidoc_modules item %i must have a 'destination' key"
msgstr ""
-#: builders/latex/theming.py:91
+#: ext/apidoc/_extension.py:140
#, python-format
-msgid "%r doesn't have \"%s\" setting"
+msgid "apidoc_modules item %i 'destination' must be a string"
msgstr ""
-#: templates/latex/longtable.tex.jinja:52
-#: templates/latex/sphinxmessages.sty.jinja:8
-msgid "continued from previous page"
+#: ext/apidoc/_extension.py:147
+#, python-format
+msgid "apidoc_modules item %i 'destination' should be a relative path"
msgstr ""
-#: templates/latex/longtable.tex.jinja:63
-#: templates/latex/sphinxmessages.sty.jinja:9
-msgid "continues on next page"
+#: ext/apidoc/_extension.py:157
+#, python-format
+msgid "apidoc_modules item %i cannot create destination directory: %s"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:10
-msgid "Non-alphabetical"
+#: ext/apidoc/_extension.py:178
+#, python-format
+msgid "apidoc_modules item %i '%s' must be an int"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:12
-msgid "Numbers"
+#: ext/apidoc/_extension.py:192
+#, python-format
+msgid "apidoc_modules item %i '%s' must be a boolean"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:13
-msgid "page"
+#: ext/apidoc/_extension.py:210
+#, python-format
+msgid "apidoc_modules item %i has unexpected keys: %s"
msgstr ""
-#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:940
-msgid "Keyword Arguments"
+#: ext/apidoc/_extension.py:248
+#, python-format
+msgid "apidoc_modules item %i '%s' must be a sequence"
msgstr ""
-#: ext/napoleon/docstring.py:176
+#: ext/apidoc/_extension.py:257
#, python-format
-msgid "invalid value set (missing closing brace): %s"
+msgid "apidoc_modules item %i '%s' must contain strings"
msgstr ""
-#: ext/napoleon/docstring.py:183
+#: ext/autosummary/generate.py:212 ext/autosummary/generate.py:425
#, python-format
-msgid "invalid value set (missing opening brace): %s"
+msgid ""
+"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
+"%s"
msgstr ""
-#: ext/napoleon/docstring.py:190
+#: ext/autosummary/generate.py:630
#, python-format
-msgid "malformed string literal (missing closing quote): %s"
+msgid "[autosummary] generating autosummary for: %s"
msgstr ""
-#: ext/napoleon/docstring.py:197
+#: ext/autosummary/generate.py:634
#, python-format
-msgid "malformed string literal (missing opening quote): %s"
+msgid "[autosummary] writing to %s"
msgstr ""
-#: ext/napoleon/docstring.py:895
-msgid "Example"
+#: ext/autosummary/generate.py:679
+#, python-format
+msgid ""
+"[autosummary] failed to import %s.\n"
+"Possible hints:\n"
+"%s"
msgstr ""
-#: ext/napoleon/docstring.py:896
-msgid "Examples"
+#: ext/autosummary/generate.py:877
+msgid ""
+"\n"
+"Generate ReStructuredText using autosummary directives.\n"
+"\n"
+"sphinx-autogen is a frontend to sphinx.ext.autosummary.generate. It generates\n"
+"the reStructuredText files from the autosummary directives contained in the\n"
+"given input files.\n"
+"\n"
+"The format of the autosummary directive is documented in the\n"
+"``sphinx.ext.autosummary`` Python module and can be read using::\n"
+"\n"
+" pydoc sphinx.ext.autosummary\n"
msgstr ""
-#: ext/napoleon/docstring.py:956
-msgid "Notes"
+#: ext/autosummary/generate.py:899
+msgid "source files to generate rST files for"
msgstr ""
-#: ext/napoleon/docstring.py:965
-msgid "Other Parameters"
+#: ext/autosummary/generate.py:907
+msgid "directory to place all output in"
msgstr ""
-#: ext/napoleon/docstring.py:1001
-msgid "Receives"
+#: ext/autosummary/generate.py:915
+#, python-format
+msgid "default suffix for files (default: %(default)s)"
msgstr ""
-#: ext/napoleon/docstring.py:1005
-msgid "References"
+#: ext/autosummary/generate.py:923
+#, python-format
+msgid "custom template directory (default: %(default)s)"
msgstr ""
-#: ext/napoleon/docstring.py:1037
-msgid "Warns"
+#: ext/autosummary/generate.py:931
+#, python-format
+msgid "document imported members (default: %(default)s)"
msgstr ""
-#: ext/napoleon/docstring.py:1041
-msgid "Yields"
+#: ext/autosummary/generate.py:940
+#, python-format
+msgid ""
+"document exactly the members in module __all__ attribute. (default: "
+"%(default)s)"
msgstr ""
-#: ext/autosummary/__init__.py:284
+#: ext/autosummary/__init__.py:235
#, python-format
msgid "autosummary references excluded document %r. Ignored."
msgstr ""
-#: ext/autosummary/__init__.py:288
+#: ext/autosummary/__init__.py:239
#, python-format
msgid ""
"autosummary: stub file not found %r. Check your autosummary_generate "
"setting."
msgstr ""
-#: ext/autosummary/__init__.py:309
+#: ext/autosummary/__init__.py:260
msgid "A captioned autosummary requires :toctree: option. ignored."
msgstr ""
-#: ext/autosummary/__init__.py:384
+#: ext/autosummary/__init__.py:329
#, python-format
msgid ""
"autosummary: failed to import %s.\n"
@@ -3668,548 +3721,585 @@ msgid ""
"%s"
msgstr ""
-#: ext/autosummary/__init__.py:404
-#, python-format
-msgid "failed to parse name %s"
-msgstr ""
-
-#: ext/autosummary/__init__.py:412
+#: ext/autosummary/__init__.py:358
#, python-format
msgid "failed to import object %s"
msgstr ""
-#: ext/autosummary/__init__.py:730
+#: ext/autosummary/__init__.py:652
#, python-format
msgid ""
"Summarised items should not include the current module. Replace %r with %r."
msgstr ""
-#: ext/autosummary/__init__.py:927
+#: ext/autosummary/__init__.py:850
#, python-format
msgid "autosummary_generate: file not found: %s"
msgstr ""
-#: ext/autosummary/__init__.py:937
+#: ext/autosummary/__init__.py:860
msgid ""
"autosummary generates .rst files internally. But your source_suffix does not"
" contain .rst. Skipped."
msgstr ""
-#: ext/autosummary/generate.py:232 ext/autosummary/generate.py:450
+#: ext/intersphinx/_load.py:61
#, python-format
msgid ""
-"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
-"%s"
+"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
+"identifiers must be non-empty strings."
msgstr ""
-#: ext/autosummary/generate.py:588
+#: ext/intersphinx/_load.py:72
#, python-format
-msgid "[autosummary] generating autosummary for: %s"
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
+"or list."
msgstr ""
-#: ext/autosummary/generate.py:592
+#: ext/intersphinx/_load.py:83
#, python-format
-msgid "[autosummary] writing to %s"
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
+" inventory locations) pair."
msgstr ""
-#: ext/autosummary/generate.py:637
+#: ext/intersphinx/_load.py:94
#, python-format
msgid ""
-"[autosummary] failed to import %s.\n"
-"Possible hints:\n"
-"%s"
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique non-empty strings."
msgstr ""
-#: ext/autosummary/generate.py:836
+#: ext/intersphinx/_load.py:103
+#, python-format
msgid ""
-"\n"
-"Generate ReStructuredText using autosummary directives.\n"
-"\n"
-"sphinx-autogen is a frontend to sphinx.ext.autosummary.generate. It generates\n"
-"the reStructuredText files from the autosummary directives contained in the\n"
-"given input files.\n"
-"\n"
-"The format of the autosummary directive is documented in the\n"
-"``sphinx.ext.autosummary`` Python module and can be read using::\n"
-"\n"
-" pydoc sphinx.ext.autosummary\n"
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique (other instance in intersphinx_mapping[%r])."
msgstr ""
-#: ext/autosummary/generate.py:858
-msgid "source files to generate rST files for"
+#: ext/intersphinx/_load.py:122
+#, python-format
+msgid ""
+"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
+"Inventory locations must be non-empty strings or None."
msgstr ""
-#: ext/autosummary/generate.py:866
-msgid "directory to place all output in"
+#: ext/intersphinx/_load.py:132
+msgid "Invalid `intersphinx_mapping` configuration (1 error)."
msgstr ""
-#: ext/autosummary/generate.py:874
+#: ext/intersphinx/_load.py:135
#, python-format
-msgid "default suffix for files (default: %(default)s)"
+msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
msgstr ""
-#: ext/autosummary/generate.py:882
-#, python-format
-msgid "custom template directory (default: %(default)s)"
+#: ext/intersphinx/_load.py:158
+msgid "An invalid intersphinx_mapping entry was added after normalisation."
msgstr ""
-#: ext/autosummary/generate.py:890
+#: ext/intersphinx/_load.py:297
#, python-format
-msgid "document imported members (default: %(default)s)"
+msgid "loading intersphinx inventory '%s' from %s ..."
msgstr ""
-#: ext/autosummary/generate.py:899
+#: ext/intersphinx/_load.py:324
+msgid ""
+"encountered some issues with some of the inventories, but they had working "
+"alternatives:"
+msgstr ""
+
+#: ext/intersphinx/_load.py:332
#, python-format
msgid ""
-"document exactly the members in module __all__ attribute. (default: "
-"%(default)s)"
+"failed to reach any of the inventories with the following issues:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:909
-msgid "Remove existing files in the output directory that were not generated"
+#: ext/intersphinx/_load.py:411
+#, python-format
+msgid "intersphinx inventory has moved: %s -> %s"
msgstr ""
-#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:944
+#: ext/intersphinx/_resolve.py:53
#, python-format
-msgid "Failed to remove %s: %s"
+msgid "(in %s %s)"
msgstr ""
-#: ext/apidoc/_cli.py:28
-msgid ""
-"\n"
-"Look recursively in for Python modules and packages and create\n"
-"one reST file with automodule directives per package in the .\n"
-"\n"
-"The s can be file and/or directory patterns that will be\n"
-"excluded from generation.\n"
-"\n"
-"Note: By default this script will not overwrite already created files."
+#: ext/intersphinx/_resolve.py:55
+#, python-format
+msgid "(in %s)"
msgstr ""
-#: ext/apidoc/_cli.py:45
-msgid "path to module to document"
+#: ext/intersphinx/_resolve.py:112
+#, python-format
+msgid "inventory '%s': duplicate matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:50
-msgid ""
-"fnmatch-style file and/or directory patterns to exclude from generation"
+#: ext/intersphinx/_resolve.py:122
+#, python-format
+msgid "inventory '%s': multiple matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:60
-msgid "directory to place all output"
+#: ext/intersphinx/_resolve.py:387
+#, python-format
+msgid "inventory for external cross-reference not found: %r"
msgstr ""
-#: ext/apidoc/_cli.py:75
-msgid "maximum depth of submodules to show in the TOC (default: 4)"
+#: ext/intersphinx/_resolve.py:396
+#, python-format
+msgid "invalid external cross-reference suffix: %r"
msgstr ""
-#: ext/apidoc/_cli.py:82
-msgid "overwrite existing files"
+#: ext/intersphinx/_resolve.py:407
+#, python-format
+msgid "domain for external cross-reference not found: %r"
msgstr ""
-#: ext/apidoc/_cli.py:91
-msgid ""
-"follow symbolic links. Powerful when combined with "
-"collective.recipe.omelette."
+#: ext/intersphinx/_resolve.py:561
+#, python-format
+msgid "external %s:%s reference target not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:99
-msgid "run the script without creating files"
+#: ext/autodoc/_dynamic/_loader.py:144
+#: ext/autodoc/_legacy_class_based/_documenters.py:882
+#, python-format
+msgid "error while formatting signature for %s: %s"
msgstr ""
-#: ext/apidoc/_cli.py:106
-msgid "put documentation for each module on its own page"
+#: ext/autodoc/_dynamic/_loader.py:193
+#, python-format
+msgid "Ignoring invalid __all__ in module %s: %r"
msgstr ""
-#: ext/apidoc/_cli.py:113
-msgid "include \"_private\" modules"
+#: ext/autodoc/_dynamic/_loader.py:332 ext/autodoc/_dynamic/_signatures.py:496
+#: ext/autodoc/_dynamic/_signatures.py:612
+#: ext/autodoc/_legacy_class_based/_documenters.py:1284
+#: ext/autodoc/_legacy_class_based/_documenters.py:1372
+#: ext/autodoc/_legacy_class_based/_documenters.py:2906
+#, python-format
+msgid "Failed to get a function signature for %s: %s"
msgstr ""
-#: ext/apidoc/_cli.py:120
-msgid "filename of table of contents (default: modules)"
+#: ext/autodoc/_dynamic/_type_comments.py:120
+#, python-format
+msgid "Failed to update signature for %r: parameter not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:127
-msgid "don't create a table of contents file"
+#: ext/autodoc/_dynamic/_type_comments.py:123
+#, python-format
+msgid "Failed to parse type_comment for %r: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_docstrings.py:268
+#: ext/autodoc/_legacy_class_based/_documenters.py:2499
+#, python-format
+msgid "Invalid __slots__ found on %s. Ignored."
+msgstr ""
+
+#: ext/autodoc/_dynamic/_signatures.py:102
+#: ext/autodoc/_legacy_class_based/_documenters.py:358
+#, python-format
+msgid "error while formatting arguments for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_signatures.py:494
+#: ext/autodoc/_legacy_class_based/_documenters.py:1607
+#, python-format
+msgid "Failed to get a constructor signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_signatures.py:498
+#: ext/autodoc/_legacy_class_based/_documenters.py:2235
+#: ext/autodoc/_legacy_class_based/_documenters.py:2355
+#, python-format
+msgid "Failed to get a method signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_signatures.py:500
+#, python-format
+msgid "Failed to get a signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_preserve_defaults.py:156
+#, python-format
+msgid "Failed to parse a default argument value for %r: %s"
msgstr ""
-#: ext/apidoc/_cli.py:135
+#: ext/autodoc/_dynamic/_member_finder.py:420
+#, python-format
msgid ""
-"don't create headings for the module/package packages (e.g. when the "
-"docstrings already contain them)"
+"attribute %s is listed in :members: but is missing as it was not found in "
+"object %r"
msgstr ""
-#: ext/apidoc/_cli.py:145
-msgid "put module documentation before submodule documentation"
+#: ext/autodoc/_dynamic/_member_finder.py:473
+#: ext/autodoc/_legacy_class_based/_documenters.py:677
+#, python-format
+msgid ""
+"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:152
-msgid ""
-"interpret module paths according to PEP-0420 implicit namespaces "
-"specification"
+#: ext/autodoc/_legacy_class_based/_documenters.py:964
+#, python-format
+msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
-#: ext/apidoc/_cli.py:160
+#: ext/autodoc/_legacy_class_based/_documenters.py:980
+#, python-format
msgid ""
-"Comma-separated list of options to pass to automodule directive (or use "
-"SPHINX_APIDOC_OPTIONS)."
+"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
+"__all__"
msgstr ""
-#: ext/apidoc/_cli.py:170
-msgid "file suffix (default: rst)"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1057
+#, python-format
+msgid ""
+"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
-#: ext/apidoc/_cli.py:186
-msgid "generate a full project with sphinx-quickstart"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1764
+#, python-format
+msgid "missing attribute %s in object %s"
msgstr ""
-#: ext/apidoc/_cli.py:193
-msgid "append module_path to sys.path, used when --full is given"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1876
+#, python-format
+msgid "alias of TypeVar(%s)"
msgstr ""
-#: ext/apidoc/_cli.py:200
-msgid "project name (default: root module name)"
+#: builders/html/_build_info.py:32
+msgid "failed to read broken build info file (unknown version)"
msgstr ""
-#: ext/apidoc/_cli.py:207
-msgid "project author(s), used when --full is given"
+#: builders/html/_build_info.py:36
+msgid "failed to read broken build info file (missing config entry)"
msgstr ""
-#: ext/apidoc/_cli.py:214
-msgid "project version, used when --full is given"
+#: builders/html/_build_info.py:39
+msgid "failed to read broken build info file (missing tags entry)"
msgstr ""
-#: ext/apidoc/_cli.py:222
-msgid "project release, used when --full is given, defaults to --doc-version"
+#: builders/html/__init__.py:114
+#, python-format
+msgid "The HTML pages are in %(outdir)s."
msgstr ""
-#: ext/apidoc/_cli.py:226
-msgid "extension options"
+#: builders/html/__init__.py:337
+#, python-format
+msgid "Failed to read build info file: %r"
msgstr ""
-#: ext/apidoc/_cli.py:232
-msgid "enable arbitrary extensions, used when --full is given"
+#: builders/html/__init__.py:353
+msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
msgstr ""
-#: ext/apidoc/_cli.py:240
-#, python-format
-msgid "enable %s extension, used when --full is given"
+#: builders/html/__init__.py:355
+msgid "building [html]: "
msgstr ""
-#: ext/apidoc/_cli.py:291
+#: builders/html/__init__.py:372
#, python-format
-msgid "%s is not a directory."
+msgid ""
+"template %s has been changed since the previous build, all docs will be "
+"rebuilt"
msgstr ""
-#: ext/apidoc/_extension.py:50
-msgid "Running apidoc"
+#: builders/html/__init__.py:496
+msgid "index"
msgstr ""
-#: ext/apidoc/_extension.py:102
+#: builders/html/__init__.py:549
#, python-format
-msgid "apidoc_modules item %i must be a dict"
+msgid "Logo of %s"
msgstr ""
-#: ext/apidoc/_extension.py:110
-#, python-format
-msgid "apidoc_modules item %i must have a 'path' key"
+#: builders/html/__init__.py:578
+msgid "next"
msgstr ""
-#: ext/apidoc/_extension.py:115
-#, python-format
-msgid "apidoc_modules item %i 'path' must be a string"
+#: builders/html/__init__.py:587
+msgid "previous"
msgstr ""
-#: ext/apidoc/_extension.py:121
-#, python-format
-msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
+#: builders/html/__init__.py:685
+msgid "generating indices"
msgstr ""
-#: ext/apidoc/_extension.py:133
-#, python-format
-msgid "apidoc_modules item %i must have a 'destination' key"
+#: builders/html/__init__.py:700
+msgid "writing additional pages"
msgstr ""
-#: ext/apidoc/_extension.py:140
+#: builders/html/__init__.py:783
#, python-format
-msgid "apidoc_modules item %i 'destination' must be a string"
+msgid "cannot copy image file '%s': %s"
msgstr ""
-#: ext/apidoc/_extension.py:147
-#, python-format
-msgid "apidoc_modules item %i 'destination' should be a relative path"
+#: builders/html/__init__.py:795
+msgid "copying downloadable files... "
msgstr ""
-#: ext/apidoc/_extension.py:157
+#: builders/html/__init__.py:807
#, python-format
-msgid "apidoc_modules item %i cannot create destination directory: %s"
+msgid "cannot copy downloadable file %r: %s"
msgstr ""
-#: ext/apidoc/_extension.py:178
+#: builders/html/__init__.py:853
#, python-format
-msgid "apidoc_modules item %i '%s' must be an int"
+msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
msgstr ""
-#: ext/apidoc/_extension.py:192
+#: builders/html/__init__.py:871
#, python-format
-msgid "apidoc_modules item %i '%s' must be a boolean"
+msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr ""
-#: ext/apidoc/_extension.py:210
-#, python-format
-msgid "apidoc_modules item %i has unexpected keys: %s"
+#: builders/html/__init__.py:906
+msgid "copying static files"
msgstr ""
-#: ext/apidoc/_extension.py:247
+#: builders/html/__init__.py:923
#, python-format
-msgid "apidoc_modules item %i '%s' must be a sequence"
+msgid "cannot copy static file %r"
msgstr ""
-#: ext/apidoc/_extension.py:256
-#, python-format
-msgid "apidoc_modules item %i '%s' must contain strings"
+#: builders/html/__init__.py:928
+msgid "copying extra files"
msgstr ""
-#: ext/apidoc/_generate.py:69
+#: builders/html/__init__.py:938
#, python-format
-msgid "Would create file %s."
+msgid "cannot copy extra file %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:49
+#: builders/html/__init__.py:944
#, python-format
-msgid "(in %s v%s)"
+msgid "Failed to write build info file: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:51
-#, python-format
-msgid "(in %s)"
+#: builders/html/__init__.py:994
+msgid ""
+"search index couldn't be loaded, but not all documents will be built: the "
+"index will be incomplete."
msgstr ""
-#: ext/intersphinx/_resolve.py:108
+#: builders/html/__init__.py:1038
#, python-format
-msgid "inventory '%s': duplicate matches found for %s:%s"
+msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:118
+#: builders/html/__init__.py:1204
#, python-format
-msgid "inventory '%s': multiple matches found for %s:%s"
+msgid ""
+"a Unicode error occurred when rendering the page %s. Please make sure all "
+"config values that contain non-ASCII content are Unicode strings."
msgstr ""
-#: ext/intersphinx/_resolve.py:383
+#: builders/html/__init__.py:1217
#, python-format
-msgid "inventory for external cross-reference not found: %r"
+msgid ""
+"The '%s' theme does not support this version of Sphinx, because it uses the "
+"'style' field in HTML templates, which was was deprecated in Sphinx 5.1 and"
+" removed in Sphinx 7.0. The theme must be updated to use the 'styles' field "
+"instead. See https://www.sphinx-"
+"doc.org/en/master/development/html_themes/templating.html#styles"
msgstr ""
-#: ext/intersphinx/_resolve.py:392
+#: builders/html/__init__.py:1225
#, python-format
-msgid "invalid external cross-reference suffix: %r"
+msgid ""
+"An error happened in rendering the page %s.\n"
+"Reason: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:403
-#, python-format
-msgid "domain for external cross-reference not found: %r"
+#: builders/html/__init__.py:1258
+msgid "dumping object inventory"
msgstr ""
-#: ext/intersphinx/_resolve.py:619
+#: builders/html/__init__.py:1266
#, python-format
-msgid "external %s:%s reference target not found: %s"
+msgid "dumping search index in %s"
msgstr ""
-#: ext/intersphinx/_load.py:60
+#: builders/html/__init__.py:1313
#, python-format
-msgid ""
-"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
-"identifiers must be non-empty strings."
+msgid "invalid js_file: %r, ignored"
msgstr ""
-#: ext/intersphinx/_load.py:71
-#, python-format
-msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
-"or list."
+#: builders/html/__init__.py:1347
+msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr ""
-#: ext/intersphinx/_load.py:82
+#: builders/html/__init__.py:1351
#, python-format
-msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
-" inventory locations) pair."
+msgid "Unknown math_renderer %r is given."
msgstr ""
-#: ext/intersphinx/_load.py:93
+#: builders/html/__init__.py:1365
#, python-format
-msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique non-empty strings."
+msgid "html_extra_path entry %r is placed inside outdir"
msgstr ""
-#: ext/intersphinx/_load.py:102
+#: builders/html/__init__.py:1370
#, python-format
-msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique (other instance in intersphinx_mapping[%r])."
+msgid "html_extra_path entry %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:121
+#: builders/html/__init__.py:1385
#, python-format
-msgid ""
-"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
-"Inventory locations must be non-empty strings or None."
+msgid "html_static_path entry %r is placed inside outdir"
msgstr ""
-#: ext/intersphinx/_load.py:131
-msgid "Invalid `intersphinx_mapping` configuration (1 error)."
+#: builders/html/__init__.py:1390
+#, python-format
+msgid "html_static_path entry %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:134
+#: builders/html/__init__.py:1401 builders/latex/__init__.py:497
#, python-format
-msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
+msgid "logo file %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:157
-msgid "An invalid intersphinx_mapping entry was added after normalisation."
+#: builders/html/__init__.py:1412
+#, python-format
+msgid "favicon file %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:261
+#: builders/html/__init__.py:1425
#, python-format
-msgid "loading intersphinx inventory '%s' from %s ..."
+msgid ""
+"Values in 'html_sidebars' must be a list of strings. At least one pattern "
+"has a string value: %s. Change to `html_sidebars = %r`."
msgstr ""
-#: ext/intersphinx/_load.py:287
+#: builders/html/__init__.py:1438
msgid ""
-"encountered some issues with some of the inventories, but they had working "
-"alternatives:"
+"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
+"configuration options)"
msgstr ""
-#: ext/intersphinx/_load.py:297
-msgid "failed to reach any of the inventories with the following issues:"
+#: builders/html/__init__.py:1454
+#, python-format
+msgid "%s %s documentation"
msgstr ""
-#: ext/intersphinx/_load.py:361
+#: builders/latex/theming.py:87
#, python-format
-msgid "intersphinx inventory has moved: %s -> %s"
+msgid "%r doesn't have \"theme\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:150
+#: builders/latex/theming.py:90
#, python-format
-msgid "invalid value for member-order option: %s"
+msgid "%r doesn't have \"%s\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:158
-#, python-format
-msgid "invalid value for class-doc-from option: %s"
+#: builders/latex/transforms.py:120
+msgid "Failed to get a docname!"
msgstr ""
-#: ext/autodoc/__init__.py:460
+#: builders/latex/transforms.py:121
#, python-format
-msgid "invalid signature for auto%s (%r)"
+msgid "Failed to get a docname for source %r!"
msgstr ""
-#: ext/autodoc/__init__.py:579
+#: builders/latex/transforms.py:487
#, python-format
-msgid "error while formatting arguments for %s: %s"
+msgid "No footnote was found for given reference node %r"
msgstr ""
-#: ext/autodoc/__init__.py:898
+#: builders/latex/__init__.py:115
#, python-format
-msgid ""
-"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
-"%s"
+msgid "The LaTeX files are in %(outdir)s."
msgstr ""
-#: ext/autodoc/__init__.py:1021
-#, python-format
+#: builders/latex/__init__.py:118
msgid ""
-"don't know which module to import for autodocumenting %r (try placing a "
-"\"module\" or \"currentmodule\" directive in the document, or giving an "
-"explicit module name)"
+"\n"
+"Run 'make' in that directory to run these through (pdf)latex\n"
+"(use `make latexpdf' here to do that automatically)."
msgstr ""
-#: ext/autodoc/__init__.py:1080
-#, python-format
-msgid "A mocked object is detected: %r"
+#: builders/latex/__init__.py:156
+msgid "no \"latex_documents\" config value found; no documents will be written"
msgstr ""
-#: ext/autodoc/__init__.py:1103
+#: builders/latex/__init__.py:167
#, python-format
-msgid "error while formatting signature for %s: %s"
+msgid "\"latex_documents\" config value references unknown document %s"
msgstr ""
-#: ext/autodoc/__init__.py:1177
-msgid "\"::\" in automodule name doesn't make sense"
+#: builders/latex/__init__.py:421
+msgid "copying TeX support files"
msgstr ""
-#: ext/autodoc/__init__.py:1185
-#, python-format
-msgid "signature arguments or return annotation given for automodule %s"
+#: builders/latex/__init__.py:458
+msgid "copying additional files"
msgstr ""
-#: ext/autodoc/__init__.py:1201
+#: builders/latex/__init__.py:529
#, python-format
-msgid ""
-"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
-"__all__"
+msgid "Unknown configure key: latex_elements[%r], ignored."
msgstr ""
-#: ext/autodoc/__init__.py:1278
+#: builders/latex/__init__.py:537
#, python-format
-msgid ""
-"missing attribute mentioned in :members: option: module %s, attribute %s"
+msgid "Unknown theme option: latex_theme_options[%r], ignored."
msgstr ""
-#: ext/autodoc/__init__.py:1505 ext/autodoc/__init__.py:1593
-#: ext/autodoc/__init__.py:3127
+#: environment/collectors/toctree.py:259
#, python-format
-msgid "Failed to get a function signature for %s: %s"
+msgid "%s is already assigned section numbers (nested numbered toctree?)"
msgstr ""
-#: ext/autodoc/__init__.py:1828
+#: environment/collectors/asset.py:98
#, python-format
-msgid "Failed to get a constructor signature for %s: %s"
+msgid "image file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:1966
+#: environment/collectors/asset.py:126
#, python-format
-msgid "Bases: %s"
+msgid "image file %s not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:1985
+#: environment/collectors/asset.py:165
#, python-format
-msgid "missing attribute %s in object %s"
+msgid "download file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2081 ext/autodoc/__init__.py:2110
-#: ext/autodoc/__init__.py:2204
+#: environment/adapters/toctree.py:335
#, python-format
-msgid "alias of %s"
+msgid "circular toctree references detected, ignoring: %s <- %s"
msgstr ""
-#: ext/autodoc/__init__.py:2097
+#: environment/adapters/toctree.py:360
#, python-format
-msgid "alias of TypeVar(%s)"
+msgid ""
+"toctree contains reference to document %r that doesn't have a title: no link"
+" will be generated"
msgstr ""
-#: ext/autodoc/__init__.py:2456 ext/autodoc/__init__.py:2576
+#: environment/adapters/toctree.py:375
#, python-format
-msgid "Failed to get a method signature for %s: %s"
+msgid "toctree contains reference to non-included document %r"
msgstr ""
-#: ext/autodoc/__init__.py:2720
+#: environment/adapters/toctree.py:378
#, python-format
-msgid "Invalid __slots__ found on %s. Ignored."
+msgid "toctree contains reference to non-existing document %r"
msgstr ""
-#: ext/autodoc/preserve_defaults.py:195
+#: environment/adapters/indexentries.py:122
#, python-format
-msgid "Failed to parse a default argument value for %r: %s"
+msgid "see %s"
msgstr ""
-#: ext/autodoc/type_comment.py:151
+#: environment/adapters/indexentries.py:132
#, python-format
-msgid "Failed to update signature for %r: parameter not found: %s"
+msgid "see also %s"
msgstr ""
-#: ext/autodoc/type_comment.py:154
+#: environment/adapters/indexentries.py:140
#, python-format
-msgid "Failed to parse type_comment for %r: %s"
+msgid "unknown index entry type %r"
msgstr ""
diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo
index a2303eab0d6..d34d9a80253 100644
Binary files a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo differ
diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po
index c7f068ee7eb..399f8edf607 100644
--- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po
+++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2025-02-18 00:33+0000\n"
+"POT-Creation-Date: 2025-12-01 16:14+0000\n"
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
"Last-Translator: FIRST AUTHOR , 2009\n"
"Language-Team: Bengali (http://app.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n"
@@ -19,6 +19,127 @@ msgstr ""
"Language: bn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: roles.py:205
+#, python-format
+msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgstr ""
+
+#: roles.py:228
+#, python-format
+msgid "invalid CVE number %s"
+msgstr ""
+
+#: roles.py:250
+#, python-format
+msgid "Common Weakness Enumeration; CWE %s"
+msgstr ""
+
+#: roles.py:273
+#, python-format
+msgid "invalid CWE number %s"
+msgstr ""
+
+#: roles.py:293
+#, python-format
+msgid "Python Enhancement Proposals; PEP %s"
+msgstr "পাইথন উন্নয়ন পরামর্শ; PEP %s"
+
+#: roles.py:316
+#, python-format
+msgid "invalid PEP number %s"
+msgstr ""
+
+#: roles.py:354
+#, python-format
+msgid "invalid RFC number %s"
+msgstr ""
+
+#: theming.py:117
+#, python-format
+msgid ""
+"Theme configuration sections other than [theme] and [options] are not "
+"supported (tried to get a value from %r)."
+msgstr ""
+
+#: theming.py:122
+#, python-format
+msgid "setting %s.%s occurs in none of the searched theme configs"
+msgstr ""
+
+#: theming.py:137
+#, python-format
+msgid "unsupported theme option %r given"
+msgstr ""
+
+#: theming.py:218
+#, python-format
+msgid "file %r on theme path is not a valid zipfile or contains no theme"
+msgstr ""
+
+#: theming.py:238
+#, python-format
+msgid "no theme named %r found (missing theme.toml?)"
+msgstr ""
+
+#: theming.py:278
+#, python-format
+msgid "The %r theme has circular inheritance"
+msgstr ""
+
+#: theming.py:286
+#, python-format
+msgid ""
+"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
+"are: %s"
+msgstr ""
+
+#: theming.py:292
+#, python-format
+msgid "The %r theme has too many ancestors"
+msgstr ""
+
+#: theming.py:320
+#, python-format
+msgid "no theme configuration file found in %r"
+msgstr ""
+
+#: theming.py:345 theming.py:398
+#, python-format
+msgid "theme %r doesn't have the \"theme\" table"
+msgstr ""
+
+#: theming.py:349
+#, python-format
+msgid "The %r theme \"[theme]\" table is not a table"
+msgstr ""
+
+#: theming.py:353 theming.py:401
+#, python-format
+msgid "The %r theme must define the \"theme.inherit\" setting"
+msgstr ""
+
+#: theming.py:357
+#, python-format
+msgid "The %r theme \"[options]\" table is not a table"
+msgstr ""
+
+#: theming.py:376
+#, python-format
+msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+msgstr ""
+
+#: project.py:72
+#, python-format
+msgid ""
+"multiple files found for the document \"%s\": %s\n"
+"Use %r for the build."
+msgstr ""
+
+#: project.py:87
+#, python-format
+msgid "Ignored unreadable document %r."
+msgstr ""
+
#: extension.py:58
#, python-format
msgid ""
@@ -33,127 +154,154 @@ msgid ""
"cannot be built with the loaded version (%s)."
msgstr ""
-#: application.py:212
+#: highlighting.py:170
+#, python-format
+msgid "Pygments lexer name %r is not known"
+msgstr ""
+
+#: highlighting.py:209
+#, python-format
+msgid ""
+"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
+"Retrying in relaxed mode."
+msgstr ""
+
+#: events.py:92
+#, python-format
+msgid "Event %r already present"
+msgstr ""
+
+#: events.py:386
+#, python-format
+msgid "Unknown event name: %s"
+msgstr ""
+
+#: events.py:451
+#, python-format
+msgid "Handler %r for event %r threw an exception"
+msgstr ""
+
+#: application.py:218
#, python-format
msgid "Cannot find source directory (%s)"
msgstr ""
-#: application.py:217
+#: application.py:223
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
-#: application.py:222
+#: application.py:228
msgid "Source directory and destination directory cannot be identical"
msgstr ""
-#: application.py:252
+#: application.py:258
#, python-format
msgid "Running Sphinx v%s"
msgstr ""
-#: application.py:278
+#: application.py:286
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr ""
-#: application.py:297
+#: application.py:305
msgid "making output directory"
msgstr ""
-#: application.py:302 registry.py:538
+#: application.py:310 registry.py:540
#, python-format
msgid "while setting up extension %s:"
msgstr ""
-#: application.py:309
+#: application.py:317
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
-#: application.py:346
+#: application.py:360
#, python-format
msgid "loading translations [%s]... "
msgstr ""
-#: application.py:370 util/display.py:89
+#: application.py:384 util/display.py:89
msgid "done"
msgstr ""
-#: application.py:372
+#: application.py:386
msgid "not available for built-in messages"
msgstr ""
-#: application.py:386
+#: application.py:400
msgid "loading pickled environment"
msgstr ""
-#: application.py:394
+#: application.py:408
#, python-format
msgid "failed: %s"
msgstr ""
-#: application.py:407
+#: application.py:423
msgid "No builder selected, using default: html"
msgstr ""
-#: application.py:439
+#: application.py:455
msgid "build finished with problems."
msgstr ""
-#: application.py:441
+#: application.py:457
msgid "build succeeded."
msgstr ""
-#: application.py:446
+#: application.py:462
msgid ""
"build finished with problems, 1 warning (with warnings treated as errors)."
msgstr ""
-#: application.py:450
+#: application.py:466
msgid "build finished with problems, 1 warning."
msgstr ""
-#: application.py:452
+#: application.py:468
msgid "build succeeded, 1 warning."
msgstr ""
-#: application.py:458
+#: application.py:474
#, python-format
msgid ""
"build finished with problems, %s warnings (with warnings treated as errors)."
msgstr ""
-#: application.py:462
+#: application.py:478
#, python-format
msgid "build finished with problems, %s warnings."
msgstr ""
-#: application.py:464
+#: application.py:480
#, python-format
msgid "build succeeded, %s warnings."
msgstr ""
-#: application.py:1026
+#: application.py:1020
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
-#: application.py:1119
+#: application.py:1113
#, python-format
msgid "directive %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1145 application.py:1173
+#: application.py:1139 application.py:1167
#, python-format
msgid "role %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1770
+#: application.py:1766
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@@ -161,12 +309,12 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1775
+#: application.py:1771
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
-#: application.py:1779
+#: application.py:1775
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@@ -174,82 +322,214 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1784
+#: application.py:1780
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
-#: application.py:1792 application.py:1796
+#: application.py:1788 application.py:1792
#, python-format
msgid "doing serial %s"
msgstr ""
-#: config.py:355
+#: registry.py:162
#, python-format
-msgid "config directory doesn't contain a conf.py file (%s)"
+msgid "Builder class %s has no \"name\" attribute"
+msgstr ""
+
+#: registry.py:166
+#, python-format
+msgid "Builder %r already exists (in module %s)"
+msgstr ""
+
+#: registry.py:182
+#, python-format
+msgid "Builder name %s not registered or available through entry point"
+msgstr ""
+
+#: registry.py:192
+#, python-format
+msgid "Builder name %s not registered"
+msgstr ""
+
+#: registry.py:199
+#, python-format
+msgid "domain %s already registered"
+msgstr ""
+
+#: registry.py:223 registry.py:244 registry.py:257
+#, python-format
+msgid "domain %s not yet registered"
+msgstr ""
+
+#: registry.py:230
+#, python-format
+msgid "The %r directive is already registered to domain %s"
+msgstr ""
+
+#: registry.py:248
+#, python-format
+msgid "The %r role is already registered to domain %s"
+msgstr ""
+
+#: registry.py:261
+#, python-format
+msgid "The %r index is already registered to domain %s"
+msgstr ""
+
+#: registry.py:308
+#, python-format
+msgid "The %r object_type is already registered"
+msgstr ""
+
+#: registry.py:339
+#, python-format
+msgid "The %r crossref_type is already registered"
+msgstr ""
+
+#: registry.py:348
+#, python-format
+msgid "source_suffix %r is already registered"
+msgstr ""
+
+#: registry.py:358
+#, python-format
+msgid "source_parser for %r is already registered"
+msgstr ""
+
+#: registry.py:367
+#, python-format
+msgid "Source parser for %s not registered"
+msgstr ""
+
+#: registry.py:388
+#, python-format
+msgid "Translator for %r already exists"
+msgstr ""
+
+#: registry.py:405
+#, python-format
+msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
msgstr ""
-#: config.py:366
+#: registry.py:498
+#, python-format
+msgid "enumerable_node %r already registered"
+msgstr ""
+
+#: registry.py:514
+#, python-format
+msgid "math renderer %s is already registered"
+msgstr ""
+
+#: registry.py:531
+#, python-format
msgid ""
-"Invalid configuration value found: 'language = None'. Update your "
-"configuration to a valid language code. Falling back to 'en' (English)."
+"the extension %r was already merged with Sphinx since version %s; this "
+"extension is ignored."
+msgstr ""
+
+#: registry.py:545
+msgid "Original exception:\n"
+msgstr ""
+
+#: registry.py:547
+#, python-format
+msgid "Could not import extension %s"
+msgstr ""
+
+#: registry.py:554
+#, python-format
+msgid ""
+"extension %r has no setup() function; is it really a Sphinx extension "
+"module?"
+msgstr ""
+
+#: registry.py:567
+#, python-format
+msgid ""
+"The %s extension used by this project needs at least Sphinx v%s; it "
+"therefore cannot be built with this version."
+msgstr ""
+
+#: registry.py:579
+#, python-format
+msgid ""
+"extension %r returned an unsupported object from its setup() function; it "
+"should return None or a metadata dictionary"
+msgstr ""
+
+#: registry.py:605
+#, python-format
+msgid "`None` is not a valid filetype for %r."
+msgstr ""
+
+#: config.py:351
+#, python-format
+msgid "config directory doesn't contain a conf.py file (%s)"
msgstr ""
-#: config.py:394
+#: config.py:374
#, python-format
msgid "'%s' must be '0' or '1', got '%s'"
msgstr ""
-#: config.py:399
+#: config.py:379
#, python-format
msgid ""
"cannot override dictionary config setting %r, ignoring (use %r to set "
"individual elements)"
msgstr ""
-#: config.py:411
+#: config.py:391
#, python-format
msgid "invalid number %r for config value %r, ignoring"
msgstr ""
-#: config.py:419
+#: config.py:399
#, python-format
msgid "cannot override config setting %r with unsupported type, ignoring"
msgstr ""
-#: config.py:442
+#: config.py:422
#, python-format
msgid "unknown config value %r in override, ignoring"
msgstr ""
-#: config.py:496
+#: config.py:476
#, python-format
msgid "No such config value: %r"
msgstr ""
-#: config.py:524
+#: config.py:504
#, python-format
msgid "Config value %r already present"
msgstr ""
-#: config.py:561
+#: config.py:541
#, python-format
msgid ""
"cannot cache unpickleable configuration value: %r (because it contains a "
"function, class, or module object)"
msgstr ""
-#: config.py:603
+#: config.py:577
+msgid ""
+"Invalid configuration value found: 'language = None'. Update your "
+"configuration to a valid language code. Falling back to 'en' (English)."
+msgstr ""
+
+#: config.py:599
#, python-format
msgid "There is a syntax error in your configuration file: %s\n"
msgstr ""
-#: config.py:607
+#: config.py:603
msgid ""
"The configuration file (or one of the modules it imports) called sys.exit()"
msgstr ""
-#: config.py:615
+#: config.py:611
#, python-format
msgid ""
"There is a programmable error in your configuration file:\n"
@@ -257,468 +537,624 @@ msgid ""
"%s"
msgstr ""
-#: config.py:637
+#: config.py:633
#, python-format
msgid "Failed to convert %r to a frozenset"
msgstr ""
-#: config.py:655 config.py:663
+#: config.py:651 config.py:659
#, python-format
msgid "Converting `source_suffix = %r` to `source_suffix = %r`."
msgstr ""
-#: config.py:669
+#: config.py:665
#, python-format
msgid ""
"The config value `source_suffix' expects a dictionary, a string, or a list "
"of strings. Got `%r' instead (type %s)."
msgstr ""
-#: config.py:690
+#: config.py:686
#, python-format
msgid "Section %s"
msgstr ""
-#: config.py:691
+#: config.py:687
#, python-format
msgid "Fig. %s"
msgstr ""
-#: config.py:692
+#: config.py:688
#, python-format
msgid "Table %s"
msgstr ""
-#: config.py:693
+#: config.py:689
#, python-format
msgid "Listing %s"
msgstr ""
-#: config.py:802
+#: config.py:798
#, python-brace-format
msgid ""
"The config value `{name}` has to be a one of {candidates}, but `{current}` "
"is given."
msgstr ""
-#: config.py:833
+#: config.py:829
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}'; expected "
"{permitted}."
msgstr ""
-#: config.py:850
+#: config.py:846
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}', defaults to "
"`{default.__name__}'."
msgstr ""
-#: config.py:862
+#: config.py:858
#, python-format
msgid "primary_domain %r not found, ignored."
msgstr ""
-#: config.py:882
+#: config.py:878
msgid ""
"Sphinx now uses \"index\" as the master document by default. To keep pre-2.0"
" behaviour, set \"master_doc = 'contents'\"."
msgstr ""
-#: highlighting.py:170
-#, python-format
-msgid "Pygments lexer name %r is not known"
+#: config.py:892
+msgid ""
+"Support for source encodings other than UTF-8 is deprecated and will be "
+"removed in Sphinx 10. Please comment at https://github.com/sphinx-"
+"doc/sphinx/issues/13665 if this causes a problem."
msgstr ""
-#: highlighting.py:209
-#, python-format
-msgid ""
-"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
-"Retrying in relaxed mode."
+#: environment/__init__.py:89
+msgid "new config"
msgstr ""
-#: theming.py:115
-#, python-format
-msgid ""
-"Theme configuration sections other than [theme] and [options] are not "
-"supported (tried to get a value from %r)."
+#: environment/__init__.py:90
+msgid "config changed"
msgstr ""
-#: theming.py:120
-#, python-format
-msgid "setting %s.%s occurs in none of the searched theme configs"
+#: environment/__init__.py:91
+msgid "extensions changed"
msgstr ""
-#: theming.py:135
-#, python-format
-msgid "unsupported theme option %r given"
+#: environment/__init__.py:261
+msgid "build environment version not current"
msgstr ""
-#: theming.py:208
-#, python-format
-msgid "file %r on theme path is not a valid zipfile or contains no theme"
+#: environment/__init__.py:263
+msgid "source directory has changed"
msgstr ""
-#: theming.py:228
+#: environment/__init__.py:350
#, python-format
-msgid "no theme named %r found (missing theme.toml?)"
+msgid "The configuration has changed (1 option: %r)"
msgstr ""
-#: theming.py:268
+#: environment/__init__.py:355
#, python-format
-msgid "The %r theme has circular inheritance"
+msgid "The configuration has changed (%d options: %s)"
msgstr ""
-#: theming.py:276
+#: environment/__init__.py:361
#, python-format
-msgid ""
-"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
-"are: %s"
+msgid "The configuration has changed (%d options: %s, ...)"
msgstr ""
-#: theming.py:282
-#, python-format
-msgid "The %r theme has too many ancestors"
+#: environment/__init__.py:404
+msgid ""
+"This environment is incompatible with the selected builder, please choose "
+"another doctree directory."
msgstr ""
-#: theming.py:310
+#: environment/__init__.py:518
#, python-format
-msgid "no theme configuration file found in %r"
+msgid "Failed to scan documents in %s: %r"
msgstr ""
-#: theming.py:335 theming.py:388
+#: environment/__init__.py:645 ext/intersphinx/_resolve.py:238
#, python-format
-msgid "theme %r doesn't have the \"theme\" table"
+msgid "Domain %r is not registered"
msgstr ""
-#: theming.py:339
-#, python-format
-msgid "The %r theme \"[theme]\" table is not a table"
+#: environment/__init__.py:811
+msgid "document isn't included in any toctree"
msgstr ""
-#: theming.py:343 theming.py:391
-#, python-format
-msgid "The %r theme must define the \"theme.inherit\" setting"
+#: environment/__init__.py:922
+msgid "self referenced toctree found. Ignored."
msgstr ""
-#: theming.py:347
+#: environment/__init__.py:952
#, python-format
-msgid "The %r theme \"[options]\" table is not a table"
+msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
msgstr ""
-#: theming.py:366
-#, python-format
-msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
-msgstr ""
+#: locale/__init__.py:229
+msgid "Attention"
+msgstr "দৃষ্টি আকর্ষণ"
-#: events.py:77
-#, python-format
-msgid "Event %r already present"
-msgstr ""
+#: locale/__init__.py:230
+msgid "Caution"
+msgstr "সতর্কীকরণ"
-#: events.py:370
-#, python-format
-msgid "Unknown event name: %s"
-msgstr ""
+#: locale/__init__.py:231
+msgid "Danger"
+msgstr "বিপজ্জনক"
+
+#: locale/__init__.py:232
+msgid "Error"
+msgstr "ভুল (এরর)"
+
+#: locale/__init__.py:233
+msgid "Hint"
+msgstr "আভাস"
+
+#: locale/__init__.py:234
+msgid "Important"
+msgstr "গুরুত্বপূর্ণ"
+
+#: locale/__init__.py:235
+msgid "Note"
+msgstr "নোট"
+
+#: locale/__init__.py:236
+msgid "See also"
+msgstr "আরও দেখুন"
+
+#: locale/__init__.py:237
+msgid "Tip"
+msgstr "পরামর্শ"
+
+#: locale/__init__.py:238
+msgid "Warning"
+msgstr "সতর্কতা"
-#: events.py:416
+#: builders/texinfo.py:41
#, python-format
-msgid "Handler %r for event %r threw an exception"
+msgid "The Texinfo files are in %(outdir)s."
msgstr ""
-#: project.py:72
-#, python-format
+#: builders/texinfo.py:44
msgid ""
-"multiple files found for the document \"%s\": %s\n"
-"Use %r for the build."
+"\n"
+"Run 'make' in that directory to run these through makeinfo\n"
+"(use 'make info' here to do that automatically)."
msgstr ""
-#: project.py:87
-#, python-format
-msgid "Ignored unreadable document %r."
+#: builders/texinfo.py:73
+msgid "no \"texinfo_documents\" config value found; no documents will be written"
msgstr ""
-#: registry.py:167
+#: builders/texinfo.py:85
#, python-format
-msgid "Builder class %s has no \"name\" attribute"
+msgid "\"texinfo_documents\" config value references unknown document %s"
msgstr ""
-#: registry.py:171
+#: builders/latex/__init__.py:310 builders/texinfo.py:105
#, python-format
-msgid "Builder %r already exists (in module %s)"
+msgid "processing %s"
msgstr ""
-#: registry.py:187
-#, python-format
-msgid "Builder name %s not registered or available through entry point"
+#: builders/latex/__init__.py:332 builders/manpage.py:54
+#: builders/singlehtml.py:176 builders/texinfo.py:111
+msgid "writing"
msgstr ""
-#: registry.py:197
-#, python-format
-msgid "Builder name %s not registered"
+#: builders/latex/__init__.py:398 builders/texinfo.py:160
+msgid "resolving references..."
msgstr ""
-#: registry.py:204
-#, python-format
-msgid "domain %s already registered"
-msgstr ""
+#: builders/latex/__init__.py:409 builders/texinfo.py:170
+msgid " (in "
+msgstr "(-"
-#: registry.py:228 registry.py:249 registry.py:262
-#, python-format
-msgid "domain %s not yet registered"
+#: builders/_epub_base.py:425 builders/html/__init__.py:768
+#: builders/latex/__init__.py:474 builders/texinfo.py:186
+msgid "copying images... "
msgstr ""
-#: registry.py:235
+#: builders/_epub_base.py:447 builders/latex/__init__.py:489
+#: builders/texinfo.py:203
#, python-format
-msgid "The %r directive is already registered to domain %s"
+msgid "cannot copy image file %r: %s"
msgstr ""
-#: registry.py:253
-#, python-format
-msgid "The %r role is already registered to domain %s"
+#: builders/texinfo.py:210
+msgid "copying Texinfo support files"
msgstr ""
-#: registry.py:266
+#: builders/texinfo.py:218
#, python-format
-msgid "The %r index is already registered to domain %s"
+msgid "error writing file Makefile: %s"
msgstr ""
-#: registry.py:313
+#: builders/manpage.py:37
#, python-format
-msgid "The %r object_type is already registered"
+msgid "The manual pages are in %(outdir)s."
msgstr ""
-#: registry.py:344
-#, python-format
-msgid "The %r crossref_type is already registered"
+#: builders/manpage.py:45
+msgid "no \"man_pages\" config value found; no manual pages will be written"
msgstr ""
-#: registry.py:353
+#: builders/manpage.py:64
#, python-format
-msgid "source_suffix %r is already registered"
+msgid "\"man_pages\" config value references unknown document %s"
msgstr ""
-#: registry.py:363
+#: builders/singlehtml.py:35
#, python-format
-msgid "source_parser for %r is already registered"
+msgid "The HTML page is in %(outdir)s."
msgstr ""
-#: registry.py:372
-#, python-format
-msgid "Source parser for %s not registered"
+#: builders/singlehtml.py:171
+msgid "assembling single document"
msgstr ""
-#: registry.py:390
-#, python-format
-msgid "Translator for %r already exists"
+#: builders/singlehtml.py:189
+msgid "writing additional files"
msgstr ""
-#: registry.py:407
-#, python-format
-msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
+#: builders/dummy.py:19
+msgid "The dummy builder generates no files."
msgstr ""
-#: registry.py:496
+#: builders/gettext.py:243
#, python-format
-msgid "enumerable_node %r already registered"
+msgid "The message catalogs are in %(outdir)s."
msgstr ""
-#: registry.py:512
+#: builders/__init__.py:400 builders/gettext.py:264
#, python-format
-msgid "math renderer %s is already registered"
+msgid "building [%s]: "
msgstr ""
-#: registry.py:529
+#: builders/gettext.py:265
#, python-format
-msgid ""
-"the extension %r was already merged with Sphinx since version %s; this "
-"extension is ignored."
+msgid "targets for %d template files"
msgstr ""
-#: registry.py:543
-msgid "Original exception:\n"
+#: builders/gettext.py:271
+msgid "reading templates... "
msgstr ""
-#: registry.py:545
-#, python-format
-msgid "Could not import extension %s"
+#: builders/gettext.py:310
+msgid "writing message catalogs... "
msgstr ""
-#: registry.py:552
+#: builders/linkcheck.py:87
#, python-format
-msgid ""
-"extension %r has no setup() function; is it really a Sphinx extension "
-"module?"
+msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
msgstr ""
-#: registry.py:565
+#: builders/linkcheck.py:159
#, python-format
-msgid ""
-"The %s extension used by this project needs at least Sphinx v%s; it "
-"therefore cannot be built with this version."
+msgid "broken link: %s (%s)"
msgstr ""
-#: registry.py:577
+#: builders/linkcheck.py:561
#, python-format
-msgid ""
-"extension %r returned an unsupported object from its setup() function; it "
-"should return None or a metadata dictionary"
+msgid "Anchor '%s' not found"
msgstr ""
-#: registry.py:612
-#, python-format
-msgid "`None` is not a valid filetype for %r."
+#: builders/linkcheck.py:789
+msgid "linkcheck_allowed_redirects. Expected a dictionary."
msgstr ""
-#: roles.py:206
+#: builders/linkcheck.py:799
#, python-format
-msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
-#: roles.py:229
+#: builders/epub3.py:83
#, python-format
-msgid "invalid CVE number %s"
+msgid "The ePub file is in %(outdir)s."
msgstr ""
-#: roles.py:251
-#, python-format
-msgid "Common Weakness Enumeration; CWE %s"
+#: builders/epub3.py:188
+msgid "writing nav.xhtml file..."
msgstr ""
-#: roles.py:274
-#, python-format
-msgid "invalid CWE number %s"
+#: builders/epub3.py:224
+msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
msgstr ""
-#: roles.py:294
-#, python-format
-msgid "Python Enhancement Proposals; PEP %s"
-msgstr "পাইথন উন্নয়ন পরামর্শ; PEP %s"
-
-#: roles.py:317
-#, python-format
-msgid "invalid PEP number %s"
+#: builders/epub3.py:230
+msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
msgstr ""
-#: roles.py:355
-#, python-format
-msgid "invalid RFC number %s"
+#: builders/epub3.py:235
+msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
msgstr ""
-#: ext/linkcode.py:86 ext/viewcode.py:226
-msgid "[source]"
+#: builders/epub3.py:241
+msgid "conf value \"epub_author\" should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:289
-msgid "highlighting module code... "
+#: builders/epub3.py:245
+msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:320
-msgid "[docs]"
+#: builders/epub3.py:250
+msgid "conf value \"epub_description\" should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:346
-msgid "Module code"
+#: builders/epub3.py:254
+msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:353
-#, python-format
-msgid "Source code for %s
"
+#: builders/epub3.py:259
+msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:380
-msgid "Overview: module code"
+#: builders/epub3.py:265
+msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:381
-msgid "All modules for which code is available
"
+#: builders/epub3.py:268
+msgid "conf value \"version\" should not be empty for EPUB3"
msgstr ""
-#: ext/extlinks.py:82
+#: builders/epub3.py:282 builders/html/__init__.py:1296
#, python-format
-msgid ""
-"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgid "invalid css_file: %r, ignored"
msgstr ""
-#: ext/autosectionlabel.py:52
+#: builders/xml.py:29
#, python-format
-msgid "section \"%s\" gets labeled as \"%s\""
+msgid "The XML files are in %(outdir)s."
msgstr ""
-#: domains/std/__init__.py:833 domains/std/__init__.py:960
-#: ext/autosectionlabel.py:61
+#: builders/html/__init__.py:1242 builders/text.py:71 builders/xml.py:81
#, python-format
-msgid "duplicate label %s, other instance in %s"
+msgid "error writing file %s: %s"
msgstr ""
-#: ext/imgmath.py:387 ext/mathjax.py:60
-msgid "Link to this equation"
+#: builders/xml.py:103
+#, python-format
+msgid "The pseudo-XML files are in %(outdir)s."
msgstr ""
-#: ext/duration.py:90
-msgid ""
-"====================== slowest reading durations ======================="
+#: builders/_epub_base.py:223
+#, python-format
+msgid "duplicated ToC entry found: %s"
msgstr ""
-#: ext/doctest.py:118
+#: builders/_epub_base.py:436
#, python-format
-msgid "missing '+' or '-' in '%s' option."
+msgid "cannot read image file %r: copying it instead"
msgstr ""
-#: ext/doctest.py:124
+#: builders/_epub_base.py:467
#, python-format
-msgid "'%s' is not a valid option."
+msgid "cannot write image file %r: %s"
msgstr ""
-#: ext/doctest.py:139
-#, python-format
-msgid "'%s' is not a valid pyversion option"
+#: builders/_epub_base.py:479
+msgid "Pillow not found - copying image files"
msgstr ""
-#: ext/doctest.py:226
-msgid "invalid TestCode type"
+#: builders/_epub_base.py:514
+msgid "writing mimetype file..."
msgstr ""
-#: ext/doctest.py:297
-#, python-format
-msgid ""
-"Testing of doctests in the sources finished, look at the results in "
-"%(outdir)s/output.txt."
+#: builders/_epub_base.py:523
+msgid "writing META-INF/container.xml file..."
msgstr ""
-#: ext/doctest.py:457
-#, python-format
-msgid "no code/output in %s block at %s:%s"
+#: builders/_epub_base.py:561
+msgid "writing content.opf file..."
msgstr ""
-#: ext/doctest.py:568
+#: builders/_epub_base.py:594
#, python-format
-msgid "ignoring invalid doctest code: %r"
+msgid "unknown mimetype for %s, ignoring"
+msgstr ""
+
+#: builders/_epub_base.py:749
+msgid "node has an invalid level"
+msgstr ""
+
+#: builders/_epub_base.py:769
+msgid "writing toc.ncx file..."
+msgstr ""
+
+#: builders/_epub_base.py:802
+#, python-format
+msgid "writing %s file..."
+msgstr ""
+
+#: builders/text.py:27
+#, python-format
+msgid "The text files are in %(outdir)s."
+msgstr ""
+
+#: builders/__init__.py:229
+#, python-format
+msgid "a suitable image for %s builder not found: %s (%s)"
+msgstr ""
+
+#: builders/__init__.py:237
+#, python-format
+msgid "a suitable image for %s builder not found: %s"
+msgstr ""
+
+#: builders/__init__.py:260
+msgid "building [mo]: "
+msgstr ""
+
+#: builders/__init__.py:263 builders/__init__.py:771 builders/__init__.py:795
+msgid "writing output... "
+msgstr ""
+
+#: builders/__init__.py:280
+#, python-format
+msgid "all of %d po files"
+msgstr ""
+
+#: builders/__init__.py:302
+#, python-format
+msgid "targets for %d po files that are specified"
+msgstr ""
+
+#: builders/__init__.py:314
+#, python-format
+msgid "targets for %d po files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:324
+msgid "all source files"
+msgstr ""
+
+#: builders/__init__.py:335
+#, python-format
+msgid "file %r given on command line does not exist, "
msgstr ""
-#: ext/imgmath.py:162
+#: builders/__init__.py:342
#, python-format
msgid ""
-"LaTeX command %r cannot be run (needed for math display), check the "
-"imgmath_latex setting"
+"file %r given on command line is not under the source directory, ignoring"
+msgstr ""
+
+#: builders/__init__.py:353
+#, python-format
+msgid "file %r given on command line is not a valid document, ignoring"
+msgstr ""
+
+#: builders/__init__.py:366
+#, python-format
+msgid "%d source files given on command line"
+msgstr ""
+
+#: builders/__init__.py:382
+#, python-format
+msgid "targets for %d source files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:411
+msgid "looking for now-outdated files... "
+msgstr ""
+
+#: builders/__init__.py:415
+#, python-format
+msgid "%d found"
+msgstr ""
+
+#: builders/__init__.py:417
+msgid "none found"
+msgstr ""
+
+#: builders/__init__.py:424
+msgid "pickling environment"
+msgstr ""
+
+#: builders/__init__.py:431
+msgid "checking consistency"
+msgstr ""
+
+#: builders/__init__.py:435
+msgid "no targets are out of date."
+msgstr ""
+
+#: builders/__init__.py:474
+msgid "updating environment: "
+msgstr ""
+
+#: builders/__init__.py:499
+#, python-format
+msgid "%s added, %s changed, %s removed"
msgstr ""
-#: ext/imgmath.py:181
+#: builders/__init__.py:536
#, python-format
msgid ""
-"%s command %r cannot be run (needed for math display), check the imgmath_%s "
-"setting"
+"Sphinx is unable to load the master document (%s) because it matches a "
+"built-in exclude pattern %r. Please move your master document to a different"
+" location."
msgstr ""
-#: ext/imgmath.py:344
+#: builders/__init__.py:545
#, python-format
-msgid "display latex %r: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s) because it matches an "
+"exclude pattern specified in conf.py, %r. Please remove this pattern from "
+"conf.py."
msgstr ""
-#: ext/imgmath.py:380
+#: builders/__init__.py:556
#, python-format
-msgid "inline latex %r: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s) because it is not included"
+" in the custom include_patterns = %r. Ensure that a pattern in "
+"include_patterns matches the master document."
+msgstr ""
+
+#: builders/__init__.py:563
+#, python-format
+msgid ""
+"Sphinx is unable to load the master document (%s). The master document must "
+"be within the source directory or a subdirectory of it."
+msgstr ""
+
+#: builders/__init__.py:581 builders/__init__.py:598
+msgid "reading sources... "
+msgstr ""
+
+#: builders/__init__.py:725
+#, python-format
+msgid "docnames to write: %s"
+msgstr ""
+
+#: builders/__init__.py:727
+msgid "no docnames to write!"
+msgstr ""
+
+#: builders/__init__.py:740
+msgid "preparing documents"
+msgstr ""
+
+#: builders/__init__.py:743
+msgid "copying assets"
+msgstr ""
+
+#: builders/changes.py:29
+#, python-format
+msgid "The overview file is in %(outdir)s."
+msgstr ""
+
+#: builders/changes.py:65
+#, python-format
+msgid "no changes in version %s."
+msgstr ""
+
+#: builders/changes.py:67
+msgid "writing summary file..."
+msgstr ""
+
+#: builders/changes.py:79
+msgid "Builtins"
+msgstr "বিল্টইন সমূহ"
+
+#: builders/changes.py:81
+msgid "Module level"
+msgstr "মডিউল লেভেল"
+
+#: builders/changes.py:137
+msgid "copying source files..."
+msgstr ""
+
+#: builders/changes.py:146
+#, python-format
+msgid "could not read %r for changelog creation"
msgstr ""
#: ext/coverage.py:48
@@ -739,9 +1175,10 @@ msgid ""
msgstr ""
#: ext/coverage.py:158
+#, python-format
msgid ""
"the following modules are specified in coverage_modules but were not "
-"documented"
+"documented: %s"
msgstr ""
#: ext/coverage.py:172
@@ -776,6 +1213,34 @@ msgstr ""
msgid "undocumented python method: %s :: %s :: %s"
msgstr ""
+#: ext/extlinks.py:82
+#, python-format
+msgid ""
+"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgstr ""
+
+#: ext/todo.py:61
+msgid "Todo"
+msgstr "অসমাপ্ত কাজ"
+
+#: ext/todo.py:94
+#, python-format
+msgid "TODO entry found: %s"
+msgstr ""
+
+#: ext/todo.py:152
+msgid "<>"
+msgstr ""
+
+#: ext/todo.py:154
+#, python-format
+msgid "(The <> is located in %s, line %d.)"
+msgstr ""
+
+#: ext/todo.py:166
+msgid "original entry"
+msgstr ""
+
#: ext/imgconverter.py:44
#, python-format
msgid ""
@@ -863,879 +1328,960 @@ msgstr ""
msgid "[graph]"
msgstr ""
-#: ext/todo.py:61
-msgid "Todo"
-msgstr "অসমাপ্ত কাজ"
-
-#: ext/todo.py:94
+#: ext/imgmath.py:148
#, python-format
-msgid "TODO entry found: %s"
+msgid ""
+"LaTeX command %r cannot be run (needed for math display), check the "
+"imgmath_latex setting"
msgstr ""
-#: ext/todo.py:152
-msgid "<>"
+#: ext/imgmath.py:167
+#, python-format
+msgid ""
+"%s command %r cannot be run (needed for math display), check the imgmath_%s "
+"setting"
msgstr ""
-#: ext/todo.py:154
+#: ext/imgmath.py:326
#, python-format
-msgid "(The <> is located in %s, line %d.)"
+msgid "display latex %r: %s"
msgstr ""
-#: ext/todo.py:166
-msgid "original entry"
+#: ext/imgmath.py:362
+#, python-format
+msgid "inline latex %r: %s"
msgstr ""
-#: directives/code.py:66
-msgid "non-whitespace stripped by dedent"
+#: ext/imgmath.py:369 ext/mathjax.py:60
+msgid "Link to this equation"
msgstr ""
-#: directives/code.py:87
+#: ext/doctest.py:118
#, python-format
-msgid "Invalid caption: %s"
+msgid "missing '+' or '-' in '%s' option."
msgstr ""
-#: directives/code.py:131 directives/code.py:297 directives/code.py:483
+#: ext/doctest.py:124
#, python-format
-msgid "line number spec is out of range(1-%d): %r"
+msgid "'%s' is not a valid option."
msgstr ""
-#: directives/code.py:216
+#: ext/doctest.py:139
#, python-format
-msgid "Cannot use both \"%s\" and \"%s\" options"
+msgid "'%s' is not a valid pyversion option"
msgstr ""
-#: directives/code.py:231
-#, python-format
-msgid "Include file '%s' not found or reading it failed"
+#: ext/doctest.py:226
+msgid "invalid TestCode type"
msgstr ""
-#: directives/code.py:235
+#: ext/doctest.py:297
#, python-format
msgid ""
-"Encoding %r used for reading included file '%s' seems to be wrong, try "
-"giving an :encoding: option"
+"Testing of doctests in the sources finished, look at the results in "
+"%(outdir)s/output.txt."
msgstr ""
-#: directives/code.py:276
+#: ext/doctest.py:451
#, python-format
-msgid "Object named %r not found in include file %r"
+msgid "no code/output in %s block at %s:%s"
msgstr ""
-#: directives/code.py:309
-msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
+#: ext/doctest.py:568
+#, python-format
+msgid "ignoring invalid doctest code: %r"
msgstr ""
-#: directives/code.py:314
+#: ext/autosectionlabel.py:52
#, python-format
-msgid "Line spec %r: no lines pulled from include file %r"
+msgid "section \"%s\" gets labeled as \"%s\""
msgstr ""
-#: directives/patches.py:71
-msgid ""
-"\":file:\" option for csv-table directive now recognizes an absolute path as"
-" a relative path from source directory. Please update your document."
+#: domains/std/__init__.py:833 domains/std/__init__.py:960
+#: ext/autosectionlabel.py:61
+#, python-format
+msgid "duplicate label %s, other instance in %s"
msgstr ""
-#: directives/other.py:119
+#: ext/duration.py:47
#, python-format
-msgid "toctree glob pattern %r didn't match any documents"
+msgid "Reading duration %.3fs exceeded the duration limit %.3fs"
msgstr ""
-#: directives/other.py:153 environment/adapters/toctree.py:361
-#, python-format
-msgid "toctree contains reference to excluded document %r"
+#: ext/duration.py:117
+msgid ""
+"====================== total reading duration =========================="
msgstr ""
-#: directives/other.py:156
+#: ext/duration.py:124
#, python-format
-msgid "toctree contains reference to nonexisting document %r"
+msgid "Total time reading %d file%s: %dm %.3fs"
msgstr ""
-#: directives/other.py:169
-#, python-format
-msgid "duplicated entry found in toctree: %s"
+#: ext/duration.py:136
+msgid ""
+"====================== slowest reading durations ======================="
msgstr ""
-#: directives/other.py:203
-msgid "Section author: "
-msgstr "অনুচ্ছেদ লেখক:"
-
-#: directives/other.py:205
-msgid "Module author: "
-msgstr "মডিউল লেখক:"
-
-#: directives/other.py:207
-msgid "Code author: "
+#: ext/duration.py:139
+#, python-format
+msgid "%.3fs %s"
msgstr ""
-#: directives/other.py:209
-msgid "Author: "
-msgstr "লেখক:"
+#: ext/linkcode.py:86 ext/viewcode.py:232
+msgid "[source]"
+msgstr ""
-#: directives/other.py:269
-msgid ".. acks content is not a list"
+#: ext/viewcode.py:295
+msgid "highlighting module code... "
msgstr ""
-#: directives/other.py:292
-msgid ".. hlist content is not a list"
+#: ext/viewcode.py:326
+msgid "[docs]"
msgstr ""
-#: builders/changes.py:29
-#, python-format
-msgid "The overview file is in %(outdir)s."
+#: ext/viewcode.py:352
+msgid "Module code"
msgstr ""
-#: builders/changes.py:56
+#: ext/viewcode.py:359
#, python-format
-msgid "no changes in version %s."
+msgid "Source code for %s
"
msgstr ""
-#: builders/changes.py:58
-msgid "writing summary file..."
+#: ext/viewcode.py:386
+msgid "Overview: module code"
msgstr ""
-#: builders/changes.py:70
-msgid "Builtins"
-msgstr "বিল্টইন সমূহ"
-
-#: builders/changes.py:72
-msgid "Module level"
-msgstr "মডিউল লেভেল"
-
-#: builders/changes.py:124
-msgid "copying source files..."
+#: ext/viewcode.py:387
+msgid "All modules for which code is available
"
msgstr ""
-#: builders/changes.py:133
+#: domains/citation.py:75
#, python-format
-msgid "could not read %r for changelog creation"
+msgid "duplicate citation %s, other instance in %s"
msgstr ""
-#: builders/manpage.py:37
+#: domains/citation.py:92
#, python-format
-msgid "The manual pages are in %(outdir)s."
+msgid "Citation [%s] is not referenced."
msgstr ""
-#: builders/manpage.py:45
-msgid "no \"man_pages\" config value found; no manual pages will be written"
+#: domains/math.py:73
+#, python-format
+msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
-#: builders/latex/__init__.py:347 builders/manpage.py:54
-#: builders/singlehtml.py:176 builders/texinfo.py:119
-msgid "writing"
+#: domains/math.py:130 writers/latex.py:2500
+#, python-format
+msgid "Invalid math_eqref_format: %r"
msgstr ""
-#: builders/manpage.py:71
+#: domains/javascript.py:183
#, python-format
-msgid "\"man_pages\" config value references unknown document %s"
-msgstr ""
+msgid "%s() (built-in function)"
+msgstr "%s() (বিল্ট-ইন ফাংশন)"
-#: builders/__init__.py:224
+#: domains/javascript.py:184 domains/python/__init__.py:279
#, python-format
-msgid "a suitable image for %s builder not found: %s (%s)"
+msgid "%s() (%s method)"
+msgstr "%s() (%s মেথড)"
+
+#: domains/javascript.py:186
+#, python-format
+msgid "%s() (class)"
+msgstr "%s() (ক্লাসে)"
+
+#: domains/javascript.py:188
+#, python-format
+msgid "%s (global variable or constant)"
msgstr ""
-#: builders/__init__.py:232
+#: domains/javascript.py:190 domains/python/__init__.py:370
#, python-format
-msgid "a suitable image for %s builder not found: %s"
+msgid "%s (%s attribute)"
+msgstr "%s (%s এ্যট্রিবিউট)"
+
+#: domains/javascript.py:274
+msgid "Arguments"
msgstr ""
-#: builders/__init__.py:255
-msgid "building [mo]: "
+#: domains/cpp/__init__.py:491 domains/javascript.py:281
+msgid "Throws"
msgstr ""
-#: builders/__init__.py:258 builders/__init__.py:759 builders/__init__.py:791
-msgid "writing output... "
+#: domains/c/__init__.py:367 domains/cpp/__init__.py:504
+#: domains/javascript.py:288 domains/python/_object.py:221
+msgid "Returns"
+msgstr "রিটার্নস"
+
+#: domains/c/__init__.py:373 domains/javascript.py:294
+#: domains/python/_object.py:227
+msgid "Return type"
+msgstr "রিটার্ন টাইপ"
+
+#: domains/javascript.py:374
+#, python-format
+msgid "%s (module)"
+msgstr "%s (মডিউল)"
+
+#: domains/c/__init__.py:779 domains/cpp/__init__.py:943
+#: domains/javascript.py:419 domains/python/__init__.py:726
+msgid "function"
+msgstr "ফাংশন"
+
+#: domains/javascript.py:420 domains/python/__init__.py:730
+msgid "method"
+msgstr "মেথড"
+
+#: domains/cpp/__init__.py:941 domains/javascript.py:421
+#: domains/python/__init__.py:728
+msgid "class"
+msgstr "ক্লাস"
+
+#: domains/javascript.py:422 domains/python/__init__.py:727
+msgid "data"
+msgstr "ডাটা"
+
+#: domains/javascript.py:423 domains/python/__init__.py:733
+msgid "attribute"
+msgstr "এ্যট্রিবিউট"
+
+#: domains/javascript.py:424 domains/python/__init__.py:736
+msgid "module"
+msgstr "মডিউল"
+
+#: domains/javascript.py:458
+#, python-format
+msgid "duplicate %s description of %s, other %s in %s"
msgstr ""
-#: builders/__init__.py:275
+#: domains/rst.py:131 domains/rst.py:190
#, python-format
-msgid "all of %d po files"
+msgid "%s (directive)"
msgstr ""
-#: builders/__init__.py:297
+#: domains/rst.py:191 domains/rst.py:202
#, python-format
-msgid "targets for %d po files that are specified"
+msgid ":%s: (directive option)"
msgstr ""
-#: builders/__init__.py:309
+#: domains/rst.py:224
#, python-format
-msgid "targets for %d po files that are out of date"
+msgid "%s (role)"
msgstr ""
-#: builders/__init__.py:319
-msgid "all source files"
+#: domains/rst.py:234
+msgid "directive"
msgstr ""
-#: builders/__init__.py:330
-#, python-format
-msgid "file %r given on command line does not exist, "
+#: domains/rst.py:235
+msgid "directive-option"
msgstr ""
-#: builders/__init__.py:337
-#, python-format
-msgid ""
-"file %r given on command line is not under the source directory, ignoring"
+#: domains/rst.py:236
+msgid "role"
msgstr ""
-#: builders/__init__.py:348
+#: domains/rst.py:262
#, python-format
-msgid "file %r given on command line is not a valid document, ignoring"
+msgid "duplicate description of %s %s, other instance in %s"
msgstr ""
-#: builders/__init__.py:361
+#: domains/changeset.py:32
#, python-format
-msgid "%d source files given on command line"
+msgid "Added in version %s"
msgstr ""
-#: builders/__init__.py:377
+#: domains/changeset.py:33
#, python-format
-msgid "targets for %d source files that are out of date"
-msgstr ""
+msgid "Changed in version %s"
+msgstr "%s ভার্সনে পরিবর্তিত"
-#: builders/__init__.py:395 builders/gettext.py:265
+#: domains/changeset.py:34
#, python-format
-msgid "building [%s]: "
-msgstr ""
+msgid "Deprecated since version %s"
+msgstr "%s ভার্সন থেকে ডেপ্রিকেটেড"
-#: builders/__init__.py:406
-msgid "looking for now-outdated files... "
+#: domains/changeset.py:35
+#, python-format
+msgid "Removed in version %s"
msgstr ""
-#: builders/__init__.py:410
+#: domains/__init__.py:322
#, python-format
-msgid "%d found"
+msgid "%s %s"
msgstr ""
-#: builders/__init__.py:412
-msgid "none found"
+#: cmd/build.py:64
+msgid "job number should be a positive number"
msgstr ""
-#: builders/__init__.py:419
-msgid "pickling environment"
+#: cmd/build.py:73 cmd/quickstart.py:582 ext/apidoc/_cli.py:27
+#: ext/autosummary/generate.py:876
+msgid "For more information, visit ."
msgstr ""
-#: builders/__init__.py:426
-msgid "checking consistency"
+#: cmd/build.py:74
+msgid ""
+"\n"
+"Generate documentation from source files.\n"
+"\n"
+"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
+"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
+"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
+"including 'conf.py'\n"
+"\n"
+"sphinx-build can create documentation in different formats. A format is\n"
+"selected by specifying the builder name on the command line; it defaults to\n"
+"HTML. Builders can also perform other tasks related to documentation\n"
+"processing.\n"
+"\n"
+"By default, everything that is outdated is built. Output only for selected\n"
+"files can be built by specifying individual filenames.\n"
msgstr ""
-#: builders/__init__.py:430
-msgid "no targets are out of date."
+#: cmd/build.py:100
+msgid "path to documentation source files"
msgstr ""
-#: builders/__init__.py:469
-msgid "updating environment: "
+#: cmd/build.py:103
+msgid "path to output directory"
msgstr ""
-#: builders/__init__.py:494
-#, python-format
-msgid "%s added, %s changed, %s removed"
+#: cmd/build.py:109
+msgid ""
+"(optional) a list of specific files to rebuild. Ignored if --write-all is "
+"specified"
msgstr ""
-#: builders/__init__.py:531
-#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches a "
-"built-in exclude pattern %r. Please move your master document to a different"
-" location."
+#: cmd/build.py:114
+msgid "general options"
msgstr ""
-#: builders/__init__.py:540
-#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches an "
-"exclude pattern specified in conf.py, %r. Please remove this pattern from "
-"conf.py."
+#: cmd/build.py:121
+msgid "builder to use (default: 'html')"
msgstr ""
-#: builders/__init__.py:551
-#, python-format
+#: cmd/build.py:131
msgid ""
-"Sphinx is unable to load the master document (%s) because it is not included"
-" in the custom include_patterns = %r. Ensure that a pattern in "
-"include_patterns matches the master document."
+"run in parallel with N processes, when possible. 'auto' uses the number of "
+"CPU cores"
msgstr ""
-#: builders/__init__.py:558
-#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s). The master document must "
-"be within the source directory or a subdirectory of it."
+#: cmd/build.py:140
+msgid "write all files (default: only write new and changed files)"
msgstr ""
-#: builders/__init__.py:576 builders/__init__.py:592
-msgid "reading sources... "
+#: cmd/build.py:147
+msgid "don't use a saved environment, always read all files"
msgstr ""
-#: builders/__init__.py:713
-#, python-format
-msgid "docnames to write: %s"
+#: cmd/build.py:150
+msgid "path options"
msgstr ""
-#: builders/__init__.py:715
-msgid "no docnames to write!"
+#: cmd/build.py:157
+msgid ""
+"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
msgstr ""
-#: builders/__init__.py:728
-msgid "preparing documents"
+#: cmd/build.py:166
+msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
msgstr ""
-#: builders/__init__.py:731
-msgid "copying assets"
+#: cmd/build.py:175
+msgid "use no configuration file, only use settings from -D options"
msgstr ""
-#: builders/__init__.py:883
-#, python-format
-msgid "undecodable source characters, replacing with \"?\": %r"
+#: cmd/build.py:184
+msgid "override a setting in configuration file"
msgstr ""
-#: builders/epub3.py:84
-#, python-format
-msgid "The ePub file is in %(outdir)s."
+#: cmd/build.py:193
+msgid "pass a value into HTML templates"
msgstr ""
-#: builders/epub3.py:189
-msgid "writing nav.xhtml file..."
+#: cmd/build.py:202
+msgid "define tag: include \"only\" blocks with TAG"
msgstr ""
-#: builders/epub3.py:221
-msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
+#: cmd/build.py:209
+msgid "nitpicky mode: warn about all missing references"
msgstr ""
-#: builders/epub3.py:227
-msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
+#: cmd/build.py:212
+msgid "console output options"
msgstr ""
-#: builders/epub3.py:232
-msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
+#: cmd/build.py:219
+msgid "increase verbosity (can be repeated)"
msgstr ""
-#: builders/epub3.py:238
-msgid "conf value \"epub_author\" should not be empty for EPUB3"
+#: cmd/build.py:226 ext/apidoc/_cli.py:66
+msgid "no output on stdout, just warnings on stderr"
msgstr ""
-#: builders/epub3.py:242
-msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
+#: cmd/build.py:233
+msgid "no output at all, not even warnings"
msgstr ""
-#: builders/epub3.py:247
-msgid "conf value \"epub_description\" should not be empty for EPUB3"
+#: cmd/build.py:241
+msgid "do emit colored output (default: auto-detect)"
msgstr ""
-#: builders/epub3.py:251
-msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+#: cmd/build.py:249
+msgid "do not emit colored output (default: auto-detect)"
msgstr ""
-#: builders/epub3.py:256
-msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+#: cmd/build.py:252
+msgid "warning control options"
msgstr ""
-#: builders/epub3.py:262
-msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+#: cmd/build.py:258
+msgid "write warnings (and errors) to given file"
msgstr ""
-#: builders/epub3.py:265
-msgid "conf value \"version\" should not be empty for EPUB3"
+#: cmd/build.py:265
+msgid "turn warnings into errors"
msgstr ""
-#: builders/epub3.py:279 builders/html/__init__.py:1291
-#, python-format
-msgid "invalid css_file: %r, ignored"
+#: cmd/build.py:273
+msgid "show full traceback on exception"
msgstr ""
-#: builders/xml.py:31
-#, python-format
-msgid "The XML files are in %(outdir)s."
+#: cmd/build.py:276
+msgid "run Pdb on exception"
msgstr ""
-#: builders/html/__init__.py:1241 builders/text.py:76 builders/xml.py:90
-#, python-format
-msgid "error writing file %s: %s"
+#: cmd/build.py:282
+msgid "raise an exception on warnings"
msgstr ""
-#: builders/xml.py:101
-#, python-format
-msgid "The pseudo-XML files are in %(outdir)s."
+#: cmd/build.py:325
+msgid "cannot combine -a option and filenames"
msgstr ""
-#: builders/texinfo.py:45
+#: cmd/build.py:357
#, python-format
-msgid "The Texinfo files are in %(outdir)s."
+msgid "cannot open warning file '%s': %s"
msgstr ""
-#: builders/texinfo.py:48
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through makeinfo\n"
-"(use 'make info' here to do that automatically)."
+#: cmd/build.py:376
+msgid "-D option argument must be in the form name=value"
msgstr ""
-#: builders/texinfo.py:77
-msgid "no \"texinfo_documents\" config value found; no documents will be written"
+#: cmd/build.py:383
+msgid "-A option argument must be in the form name=value"
msgstr ""
-#: builders/texinfo.py:89
-#, python-format
-msgid "\"texinfo_documents\" config value references unknown document %s"
+#: cmd/quickstart.py:52
+msgid "automatically insert docstrings from modules"
msgstr ""
-#: builders/latex/__init__.py:325 builders/texinfo.py:113
-#, python-format
-msgid "processing %s"
+#: cmd/quickstart.py:53
+msgid "automatically test code snippets in doctest blocks"
msgstr ""
-#: builders/latex/__init__.py:405 builders/texinfo.py:172
-msgid "resolving references..."
+#: cmd/quickstart.py:54
+msgid "link between Sphinx documentation of different projects"
msgstr ""
-#: builders/latex/__init__.py:416 builders/texinfo.py:182
-msgid " (in "
-msgstr "(-"
+#: cmd/quickstart.py:55
+msgid "write \"todo\" entries that can be shown or hidden on build"
+msgstr ""
-#: builders/_epub_base.py:422 builders/html/__init__.py:779
-#: builders/latex/__init__.py:481 builders/texinfo.py:198
-msgid "copying images... "
+#: cmd/quickstart.py:56
+msgid "checks for documentation coverage"
msgstr ""
-#: builders/_epub_base.py:444 builders/latex/__init__.py:496
-#: builders/texinfo.py:215
-#, python-format
-msgid "cannot copy image file %r: %s"
+#: cmd/quickstart.py:57
+msgid "include math, rendered as PNG or SVG images"
msgstr ""
-#: builders/texinfo.py:222
-msgid "copying Texinfo support files"
+#: cmd/quickstart.py:58
+msgid "include math, rendered in the browser by MathJax"
msgstr ""
-#: builders/texinfo.py:230
-#, python-format
-msgid "error writing file Makefile: %s"
+#: cmd/quickstart.py:59
+msgid "conditional inclusion of content based on config values"
msgstr ""
-#: builders/_epub_base.py:223
-#, python-format
-msgid "duplicated ToC entry found: %s"
+#: cmd/quickstart.py:60
+msgid "include links to the source code of documented Python objects"
msgstr ""
-#: builders/_epub_base.py:433
-#, python-format
-msgid "cannot read image file %r: copying it instead"
+#: cmd/quickstart.py:61
+msgid "create .nojekyll file to publish the document on GitHub pages"
msgstr ""
-#: builders/_epub_base.py:464
-#, python-format
-msgid "cannot write image file %r: %s"
+#: cmd/quickstart.py:111
+msgid "Please enter a valid path name."
msgstr ""
-#: builders/_epub_base.py:476
-msgid "Pillow not found - copying image files"
+#: cmd/quickstart.py:127
+msgid "Please enter some text."
msgstr ""
-#: builders/_epub_base.py:511
-msgid "writing mimetype file..."
+#: cmd/quickstart.py:134
+#, python-format
+msgid "Please enter one of %s."
msgstr ""
-#: builders/_epub_base.py:520
-msgid "writing META-INF/container.xml file..."
+#: cmd/quickstart.py:142
+msgid "Please enter either 'y' or 'n'."
msgstr ""
-#: builders/_epub_base.py:558
-msgid "writing content.opf file..."
+#: cmd/quickstart.py:148
+msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
msgstr ""
-#: builders/_epub_base.py:591
+#: cmd/quickstart.py:230
#, python-format
-msgid "unknown mimetype for %s, ignoring"
+msgid "Welcome to the Sphinx %s quickstart utility."
msgstr ""
-#: builders/_epub_base.py:745
-msgid "node has an invalid level"
+#: cmd/quickstart.py:235
+msgid ""
+"Please enter values for the following settings (just press Enter to\n"
+"accept a default value, if one is given in brackets)."
msgstr ""
-#: builders/_epub_base.py:765
-msgid "writing toc.ncx file..."
+#: cmd/quickstart.py:242
+#, python-format
+msgid "Selected root path: %s"
msgstr ""
-#: builders/_epub_base.py:794
-#, python-format
-msgid "writing %s file..."
+#: cmd/quickstart.py:245
+msgid "Enter the root path for documentation."
msgstr ""
-#: builders/dummy.py:19
-msgid "The dummy builder generates no files."
+#: cmd/quickstart.py:246
+msgid "Root path for the documentation"
msgstr ""
-#: builders/gettext.py:244
-#, python-format
-msgid "The message catalogs are in %(outdir)s."
+#: cmd/quickstart.py:255
+msgid "Error: an existing conf.py has been found in the selected root path."
msgstr ""
-#: builders/gettext.py:266
-#, python-format
-msgid "targets for %d template files"
+#: cmd/quickstart.py:260
+msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
msgstr ""
-#: builders/gettext.py:271
-msgid "reading templates... "
+#: cmd/quickstart.py:263
+msgid "Please enter a new root path (or just Enter to exit)"
msgstr ""
-#: builders/gettext.py:307
-msgid "writing message catalogs... "
+#: cmd/quickstart.py:274
+msgid ""
+"You have two options for placing the build directory for Sphinx output.\n"
+"Either, you use a directory \"_build\" within the root path, or you separate\n"
+"\"source\" and \"build\" directories within the root path."
msgstr ""
-#: builders/singlehtml.py:35
-#, python-format
-msgid "The HTML page is in %(outdir)s."
+#: cmd/quickstart.py:280
+msgid "Separate source and build directories (y/n)"
msgstr ""
-#: builders/singlehtml.py:171
-msgid "assembling single document"
+#: cmd/quickstart.py:287
+msgid ""
+"Inside the root directory, two more directories will be created; \"_templates\"\n"
+"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
+"files. You can enter another prefix (such as \".\") to replace the underscore."
msgstr ""
-#: builders/singlehtml.py:189
-msgid "writing additional files"
+#: cmd/quickstart.py:292
+msgid "Name prefix for templates and static dir"
msgstr ""
-#: builders/linkcheck.py:77
-#, python-format
-msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
+#: cmd/quickstart.py:298
+msgid ""
+"The project name will occur in several places in the built documentation."
msgstr ""
-#: builders/linkcheck.py:149
-#, python-format
-msgid "broken link: %s (%s)"
+#: cmd/quickstart.py:301
+msgid "Project name"
msgstr ""
-#: builders/linkcheck.py:548
-#, python-format
-msgid "Anchor '%s' not found"
+#: cmd/quickstart.py:303
+msgid "Author name(s)"
msgstr ""
-#: builders/linkcheck.py:758
-#, python-format
-msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
+#: cmd/quickstart.py:309
+msgid ""
+"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
+"software. Each version can have multiple releases. For example, for\n"
+"Python the version is something like 2.5 or 3.0, while the release is\n"
+"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
+"just set both to the same value."
msgstr ""
-#: builders/text.py:29
-#, python-format
-msgid "The text files are in %(outdir)s."
+#: cmd/quickstart.py:316
+msgid "Project version"
msgstr ""
-#: transforms/i18n.py:227 transforms/i18n.py:302
-#, python-brace-format
-msgid ""
-"inconsistent footnote references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:318
+msgid "Project release"
msgstr ""
-#: transforms/i18n.py:272
-#, python-brace-format
+#: cmd/quickstart.py:324
msgid ""
-"inconsistent references in translated message. original: {0}, translated: "
-"{1}"
+"If the documents are to be written in a language other than English,\n"
+"you can select a language here by its language code. Sphinx will then\n"
+"translate text that it generates into that language.\n"
+"\n"
+"For a list of supported codes, see\n"
+"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
msgstr ""
-#: transforms/i18n.py:322
-#, python-brace-format
-msgid ""
-"inconsistent citation references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:332
+msgid "Project language"
msgstr ""
-#: transforms/i18n.py:344
-#, python-brace-format
+#: cmd/quickstart.py:340
msgid ""
-"inconsistent term references in translated message. original: {0}, "
-"translated: {1}"
+"The file name suffix for source files. Commonly, this is either \".txt\"\n"
+"or \".rst\". Only files with this suffix are considered documents."
msgstr ""
-#: builders/html/__init__.py:486 builders/latex/__init__.py:199
-#: transforms/__init__.py:129 writers/manpage.py:98 writers/texinfo.py:220
-#, python-format
-msgid "%b %d, %Y"
-msgstr "%b %d, %Y"
+#: cmd/quickstart.py:344
+msgid "Source file suffix"
+msgstr ""
-#: transforms/__init__.py:139
-msgid "could not calculate translation progress!"
+#: cmd/quickstart.py:350
+msgid ""
+"One document is special in that it is considered the top node of the\n"
+"\"contents tree\", that is, it is the root of the hierarchical structure\n"
+"of the documents. Normally, this is \"index\", but if your \"index\"\n"
+"document is a custom template, you can also set this to another filename."
msgstr ""
-#: transforms/__init__.py:144
-msgid "no translated elements!"
+#: cmd/quickstart.py:357
+msgid "Name of your master document (without suffix)"
msgstr ""
-#: transforms/__init__.py:253
+#: cmd/quickstart.py:368
#, python-format
msgid ""
-"4 column based index found. It might be a bug of extensions you use: %r"
+"Error: the master file %s has already been found in the selected root path."
msgstr ""
-#: transforms/__init__.py:294
-#, python-format
-msgid "Footnote [%s] is not referenced."
+#: cmd/quickstart.py:374
+msgid "sphinx-quickstart will not overwrite the existing file."
msgstr ""
-#: transforms/__init__.py:303
-msgid "Footnote [*] is not referenced."
+#: cmd/quickstart.py:378
+msgid ""
+"Please enter a new file name, or rename the existing file and press Enter"
msgstr ""
-#: transforms/__init__.py:314
-msgid "Footnote [#] is not referenced."
+#: cmd/quickstart.py:386
+msgid "Indicate which of the following Sphinx extensions should be enabled:"
msgstr ""
-#: _cli/__init__.py:73
-msgid "Usage:"
+#: cmd/quickstart.py:397
+msgid ""
+"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
+"been deselected."
msgstr ""
-#: _cli/__init__.py:75
-#, python-brace-format
-msgid "{0} [OPTIONS] []"
+#: cmd/quickstart.py:407
+msgid ""
+"A Makefile and a Windows command file can be generated for you so that you\n"
+"only have to run e.g. `make html' instead of invoking sphinx-build\n"
+"directly."
msgstr ""
-#: _cli/__init__.py:78
-msgid " The Sphinx documentation generator."
+#: cmd/quickstart.py:412
+msgid "Create Makefile? (y/n)"
msgstr ""
-#: _cli/__init__.py:87
-msgid "Commands:"
+#: cmd/quickstart.py:416
+msgid "Create Windows command file? (y/n)"
msgstr ""
-#: _cli/__init__.py:98
-msgid "Options"
+#: cmd/quickstart.py:468 ext/apidoc/_generate.py:76
+#, python-format
+msgid "Creating file %s."
msgstr ""
-#: _cli/__init__.py:113 _cli/__init__.py:181
-msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
+#: cmd/quickstart.py:473 ext/apidoc/_generate.py:73
+#, python-format
+msgid "File %s already exists, skipping."
msgstr ""
-#: _cli/__init__.py:171
-#, python-brace-format
+#: cmd/quickstart.py:516
+msgid "Finished: An initial directory structure has been created."
+msgstr ""
+
+#: cmd/quickstart.py:520
+#, python-format
msgid ""
-"{0}: error: {1}\n"
-"Run '{0} --help' for information"
+"You should now populate your master file %s and create other documentation\n"
+"source files. "
msgstr ""
-#: _cli/__init__.py:179
-msgid " Manage documentation with Sphinx."
+#: cmd/quickstart.py:527
+msgid ""
+"Use the Makefile to build the docs, like so:\n"
+" make builder"
msgstr ""
-#: _cli/__init__.py:191
-msgid "Show the version and exit."
+#: cmd/quickstart.py:531
+#, python-format
+msgid ""
+"Use the sphinx-build command to build the docs, like so:\n"
+" sphinx-build -b builder %s %s"
msgstr ""
-#: _cli/__init__.py:199
-msgid "Show this message and exit."
+#: cmd/quickstart.py:538
+msgid ""
+"where \"builder\" is one of the supported builders, e.g. html, latex or "
+"linkcheck."
msgstr ""
-#: _cli/__init__.py:203
-msgid "Logging"
+#: cmd/quickstart.py:573
+msgid ""
+"\n"
+"Generate required files for a Sphinx project.\n"
+"\n"
+"sphinx-quickstart is an interactive tool that asks some questions about your\n"
+"project and then generates a complete documentation directory and sample\n"
+"Makefile to be used with sphinx-build.\n"
msgstr ""
-#: _cli/__init__.py:210
-msgid "Increase verbosity (can be repeated)"
+#: cmd/quickstart.py:592
+msgid "quiet mode"
msgstr ""
-#: _cli/__init__.py:218
-msgid "Only print errors and warnings."
+#: cmd/quickstart.py:602
+msgid "project root"
msgstr ""
-#: _cli/__init__.py:225
-msgid "No output at all"
+#: cmd/quickstart.py:605
+msgid "Structure options"
msgstr ""
-#: _cli/__init__.py:231
-msgid ""
+#: cmd/quickstart.py:611
+msgid "if specified, separate source and build dirs"
msgstr ""
-#: _cli/__init__.py:263
-msgid "See 'sphinx --help'.\n"
+#: cmd/quickstart.py:617
+msgid "if specified, create build dir under source dir"
msgstr ""
-#: environment/__init__.py:86
-msgid "new config"
+#: cmd/quickstart.py:623
+msgid "replacement for dot in _templates etc."
msgstr ""
-#: environment/__init__.py:87
-msgid "config changed"
+#: cmd/quickstart.py:626
+msgid "Project basic options"
msgstr ""
-#: environment/__init__.py:88
-msgid "extensions changed"
+#: cmd/quickstart.py:628
+msgid "project name"
msgstr ""
-#: environment/__init__.py:253
-msgid "build environment version not current"
+#: cmd/quickstart.py:631
+msgid "author names"
msgstr ""
-#: environment/__init__.py:255
-msgid "source directory has changed"
+#: cmd/quickstart.py:638
+msgid "version of project"
msgstr ""
-#: environment/__init__.py:325
-#, python-format
-msgid "The configuration has changed (1 option: %r)"
+#: cmd/quickstart.py:645
+msgid "release of project"
msgstr ""
-#: environment/__init__.py:330
-#, python-format
-msgid "The configuration has changed (%d options: %s)"
+#: cmd/quickstart.py:652
+msgid "document language"
msgstr ""
-#: environment/__init__.py:336
-#, python-format
-msgid "The configuration has changed (%d options: %s, ...)"
+#: cmd/quickstart.py:655
+msgid "source file suffix"
msgstr ""
-#: environment/__init__.py:379
-msgid ""
-"This environment is incompatible with the selected builder, please choose "
-"another doctree directory."
+#: cmd/quickstart.py:658
+msgid "master document name"
msgstr ""
-#: environment/__init__.py:493
-#, python-format
-msgid "Failed to scan documents in %s: %r"
+#: cmd/quickstart.py:661
+msgid "use epub"
+msgstr ""
+
+#: cmd/quickstart.py:664
+msgid "Extension options"
msgstr ""
-#: environment/__init__.py:658 ext/intersphinx/_resolve.py:234
+#: cmd/quickstart.py:671
#, python-format
-msgid "Domain %r is not registered"
+msgid "enable %s extension"
msgstr ""
-#: environment/__init__.py:813
-msgid "document isn't included in any toctree"
+#: cmd/quickstart.py:678
+msgid "enable arbitrary extensions"
msgstr ""
-#: environment/__init__.py:859
-msgid "self referenced toctree found. Ignored."
+#: cmd/quickstart.py:681
+msgid "Makefile and Batchfile creation"
msgstr ""
-#: environment/__init__.py:889
-#, python-format
-msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
+#: cmd/quickstart.py:687
+msgid "create makefile"
msgstr ""
-#: util/i18n.py:100
-#, python-format
-msgid "reading error: %s, %s"
+#: cmd/quickstart.py:693
+msgid "do not create makefile"
msgstr ""
-#: util/i18n.py:113
-#, python-format
-msgid "writing error: %s, %s"
+#: cmd/quickstart.py:700
+msgid "create batchfile"
msgstr ""
-#: util/i18n.py:146
-#, python-format
-msgid "locale_dir %s does not exist"
+#: cmd/quickstart.py:706
+msgid "do not create batchfile"
msgstr ""
-#: util/i18n.py:236
-#, python-format
-msgid "Invalid Babel locale: %r."
+#: cmd/quickstart.py:715
+msgid "use make-mode for Makefile/make.bat"
msgstr ""
-#: util/i18n.py:245
-#, python-format
-msgid ""
-"Invalid date format. Quote the string by single quote if you want to output "
-"it directly: %s"
+#: cmd/quickstart.py:718 ext/apidoc/_cli.py:243
+msgid "Project templating"
msgstr ""
-#: util/docfields.py:103
-#, python-format
+#: cmd/quickstart.py:724 ext/apidoc/_cli.py:249
+msgid "template directory for template files"
+msgstr ""
+
+#: cmd/quickstart.py:731
+msgid "define a template variable"
+msgstr ""
+
+#: cmd/quickstart.py:767
+msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
+msgstr ""
+
+#: cmd/quickstart.py:786
msgid ""
-"Problem in %s domain: field is supposed to use role '%s', but that role is "
-"not in the domain."
+"Error: specified path is not a directory, or sphinx files already exist."
msgstr ""
-#: util/nodes.py:423
-#, python-format
+#: cmd/quickstart.py:793
msgid ""
-"%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead."
+"sphinx-quickstart only generate into a empty directory. Please specify a new"
+" root path."
msgstr ""
-#: util/nodes.py:490
+#: cmd/quickstart.py:810
#, python-format
-msgid "toctree contains ref to nonexisting file %r"
+msgid "Invalid template variable: %s"
msgstr ""
-#: util/nodes.py:706
+#: directives/other.py:119
#, python-format
-msgid "exception while evaluating only directive expression: %s"
+msgid "toctree glob pattern %r didn't match any documents"
msgstr ""
-#: util/display.py:82
-msgid "skipped"
+#: directives/other.py:153 environment/adapters/toctree.py:372
+#, python-format
+msgid "toctree contains reference to excluded document %r"
msgstr ""
-#: util/display.py:87
-msgid "failed"
+#: directives/other.py:156
+#, python-format
+msgid "toctree contains reference to nonexisting document %r"
msgstr ""
-#: util/osutil.py:131
+#: directives/other.py:169
#, python-format
-msgid ""
-"Aborted attempted copy from %s to %s (the destination path has existing "
-"data)."
+msgid "duplicated entry found in toctree: %s"
msgstr ""
-#: util/docutils.py:309
-#, python-format
-msgid "unknown directive name: %s"
+#: directives/other.py:203
+msgid "Section author: "
+msgstr "অনুচ্ছেদ লেখক:"
+
+#: directives/other.py:205
+msgid "Module author: "
+msgstr "মডিউল লেখক:"
+
+#: directives/other.py:207
+msgid "Code author: "
msgstr ""
-#: util/docutils.py:345
-#, python-format
-msgid "unknown role name: %s"
+#: directives/other.py:209
+msgid "Author: "
+msgstr "লেখক:"
+
+#: directives/other.py:269
+msgid ".. acks content is not a list"
+msgstr ""
+
+#: directives/other.py:292
+msgid ".. hlist content is not a list"
+msgstr ""
+
+#: directives/patches.py:70
+msgid ""
+"\":file:\" option for csv-table directive now recognizes an absolute path as"
+" a relative path from source directory. Please update your document."
+msgstr ""
+
+#: directives/code.py:66
+msgid "non-whitespace stripped by dedent"
msgstr ""
-#: util/docutils.py:789
+#: directives/code.py:87
#, python-format
-msgid "unknown node type: %r"
+msgid "Invalid caption: %s"
msgstr ""
-#: util/fileutil.py:76
+#: directives/code.py:131 directives/code.py:297 directives/code.py:483
#, python-format
-msgid ""
-"Aborted attempted copy from rendered template %s to %s (the destination path"
-" has existing data)."
+msgid "line number spec is out of range(1-%d): %r"
msgstr ""
-#: util/fileutil.py:89
+#: directives/code.py:216
#, python-format
-msgid "Writing evaluated template result to %s"
+msgid "Cannot use both \"%s\" and \"%s\" options"
msgstr ""
-#: util/rst.py:73
+#: directives/code.py:231
#, python-format
-msgid "default role %s not found"
+msgid "Include file '%s' not found or reading it failed"
msgstr ""
-#: util/inventory.py:147
+#: directives/code.py:235
#, python-format
-msgid "inventory <%s> contains duplicate definitions of %s"
+msgid ""
+"Encoding %r used for reading included file '%s' seems to be wrong, try "
+"giving an :encoding: option"
msgstr ""
-#: util/inventory.py:166
+#: directives/code.py:276
#, python-format
-msgid "inventory <%s> contains multiple definitions for %s"
+msgid "Object named %r not found in include file %r"
msgstr ""
-#: writers/latex.py:1097 writers/manpage.py:259 writers/texinfo.py:663
-msgid "Footnotes"
-msgstr "পাদটীকা"
+#: directives/code.py:309
+msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
+msgstr ""
-#: writers/manpage.py:289 writers/text.py:945
+#: directives/code.py:314
#, python-format
-msgid "[image: %s]"
+msgid "Line spec %r: no lines pulled from include file %r"
msgstr ""
-#: writers/manpage.py:290 writers/text.py:946
-msgid "[image]"
-msgstr "[ছবি]"
+#: builders/html/__init__.py:475 builders/latex/__init__.py:196
+#: transforms/__init__.py:134 writers/manpage.py:97 writers/texinfo.py:220
+#, python-format
+msgid "%b %d, %Y"
+msgstr "%b %d, %Y"
-#: builders/latex/__init__.py:206 domains/std/__init__.py:771
-#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:106
+#: builders/latex/__init__.py:203 domains/std/__init__.py:771
+#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:107
#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
@@ -1744,11 +2290,15 @@ msgstr "[ছবি]"
msgid "Index"
msgstr "ইনডেক্স"
-#: writers/latex.py:743 writers/texinfo.py:646
+#: writers/latex.py:768 writers/texinfo.py:646
msgid ""
"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
+#: writers/latex.py:1118 writers/manpage.py:258 writers/texinfo.py:663
+msgid "Footnotes"
+msgstr "পাদটীকা"
+
#: writers/texinfo.py:1217
msgid "caption not inside a figure."
msgstr ""
@@ -1758,53 +2308,14 @@ msgstr ""
msgid "unimplemented node type: %r"
msgstr ""
-#: writers/latex.py:361
-#, python-format
-msgid "unknown %r toplevel_sectioning for class %r"
-msgstr ""
-
-#: builders/latex/__init__.py:224 writers/latex.py:411
-#, python-format
-msgid "no Babel option known for language %r"
-msgstr ""
-
-#: writers/latex.py:429
-msgid "too large :maxdepth:, ignored."
-msgstr ""
-
-#: writers/latex.py:591
-#, python-format
-msgid "template %s not found; loading from legacy %s instead"
-msgstr ""
-
-#: writers/latex.py:707
-msgid "document title is not a single Text node"
-msgstr ""
-
-#: writers/html5.py:572 writers/latex.py:1106
-#, python-format
-msgid "unsupported rubric heading level: %s"
-msgstr ""
-
-#: writers/latex.py:1183
-msgid ""
-"both tabularcolumns and :widths: option are given. :widths: is ignored."
-msgstr ""
-
-#: writers/latex.py:1580
-#, python-format
-msgid "dimension unit %s is invalid. Ignored."
-msgstr ""
-
-#: writers/latex.py:1939
+#: writers/manpage.py:288 writers/text.py:971
#, python-format
-msgid "unknown index entry type %s found"
+msgid "[image: %s]"
msgstr ""
-#: domains/math.py:128 writers/latex.py:2495
-#, python-format
-msgid "Invalid math_eqref_format: %r"
-msgstr ""
+#: writers/manpage.py:289 writers/text.py:972
+msgid "[image]"
+msgstr "[ছবি]"
#: writers/html5.py:96 writers/html5.py:105
msgid "Link to this definition"
@@ -1832,6 +2343,11 @@ msgstr ""
msgid "Link to this table"
msgstr ""
+#: writers/html5.py:572 writers/latex.py:1127
+#, python-format
+msgid "unsupported rubric heading level: %s"
+msgstr ""
+
#: writers/html5.py:636
msgid "Link to this code"
msgstr ""
@@ -1848,794 +2364,478 @@ msgstr ""
msgid "Could not obtain image size. :scale: option is ignored."
msgstr ""
-#: domains/__init__.py:322
+#: writers/latex.py:386
#, python-format
-msgid "%s %s"
+msgid "unknown %r toplevel_sectioning for class %r"
msgstr ""
-#: domains/math.py:73
+#: builders/latex/__init__.py:221 writers/latex.py:436
#, python-format
-msgid "duplicate label of equation %s, other instance in %s"
+msgid "no Babel option known for language %r"
msgstr ""
-#: domains/javascript.py:182
-#, python-format
-msgid "%s() (built-in function)"
-msgstr "%s() (বিল্ট-ইন ফাংশন)"
+#: writers/latex.py:454
+msgid "too large :maxdepth:, ignored."
+msgstr ""
-#: domains/javascript.py:183 domains/python/__init__.py:287
+#: writers/latex.py:616
#, python-format
-msgid "%s() (%s method)"
-msgstr "%s() (%s মেথড)"
+msgid "template %s not found; loading from legacy %s instead"
+msgstr ""
-#: domains/javascript.py:185
-#, python-format
-msgid "%s() (class)"
-msgstr "%s() (ক্লাসে)"
+#: writers/latex.py:732
+msgid "document title is not a single Text node"
+msgstr ""
-#: domains/javascript.py:187
-#, python-format
-msgid "%s (global variable or constant)"
+#: writers/latex.py:1198
+msgid ""
+"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
-#: domains/javascript.py:189 domains/python/__init__.py:378
+#: writers/latex.py:1228
#, python-format
-msgid "%s (%s attribute)"
-msgstr "%s (%s এ্যট্রিবিউট)"
-
-#: domains/javascript.py:273
-msgid "Arguments"
-msgstr ""
-
-#: domains/cpp/__init__.py:489 domains/javascript.py:280
-msgid "Throws"
+msgid ""
+"colspec %s was given which appears to use tabulary syntax. But this table "
+"can not be rendered as a tabulary; the given colspec will be ignored."
msgstr ""
-#: domains/c/__init__.py:339 domains/cpp/__init__.py:502
-#: domains/javascript.py:287 domains/python/_object.py:221
-msgid "Returns"
-msgstr "রিটার্নস"
-
-#: domains/c/__init__.py:345 domains/javascript.py:293
-#: domains/python/_object.py:227
-msgid "Return type"
-msgstr "রিটার্ন টাইপ"
-
-#: domains/javascript.py:370
-#, python-format
-msgid "%s (module)"
-msgstr "%s (মডিউল)"
-
-#: domains/c/__init__.py:751 domains/cpp/__init__.py:941
-#: domains/javascript.py:415 domains/python/__init__.py:740
-msgid "function"
-msgstr "ফাংশন"
-
-#: domains/javascript.py:416 domains/python/__init__.py:744
-msgid "method"
-msgstr "মেথড"
-
-#: domains/cpp/__init__.py:939 domains/javascript.py:417
-#: domains/python/__init__.py:742
-msgid "class"
-msgstr "ক্লাস"
-
-#: domains/javascript.py:418 domains/python/__init__.py:741
-msgid "data"
-msgstr "ডাটা"
-
-#: domains/javascript.py:419 domains/python/__init__.py:747
-msgid "attribute"
-msgstr "এ্যট্রিবিউট"
-
-#: domains/javascript.py:420 domains/python/__init__.py:750
-msgid "module"
-msgstr "মডিউল"
-
-#: domains/javascript.py:454
+#: writers/latex.py:1615
#, python-format
-msgid "duplicate %s description of %s, other %s in %s"
+msgid "dimension unit %s is invalid. Ignored."
msgstr ""
-#: domains/changeset.py:26
+#: writers/latex.py:1950
#, python-format
-msgid "Added in version %s"
+msgid "unknown index entry type %s found"
msgstr ""
-#: domains/changeset.py:27
-#, python-format
-msgid "Changed in version %s"
-msgstr "%s ভার্সনে পরিবর্তিত"
-
-#: domains/changeset.py:28
-#, python-format
-msgid "Deprecated since version %s"
-msgstr "%s ভার্সন থেকে ডেপ্রিকেটেড"
-
-#: domains/changeset.py:29
-#, python-format
-msgid "Removed in version %s"
+#: _cli/__init__.py:73
+msgid "Usage:"
msgstr ""
-#: domains/rst.py:131 domains/rst.py:190
-#, python-format
-msgid "%s (directive)"
+#: _cli/__init__.py:75
+#, python-brace-format
+msgid "{0} [OPTIONS] []"
msgstr ""
-#: domains/rst.py:191 domains/rst.py:202
-#, python-format
-msgid ":%s: (directive option)"
+#: _cli/__init__.py:78
+msgid " The Sphinx documentation generator."
msgstr ""
-#: domains/rst.py:224
-#, python-format
-msgid "%s (role)"
+#: _cli/__init__.py:87
+msgid "Commands:"
msgstr ""
-#: domains/rst.py:234
-msgid "directive"
+#: _cli/__init__.py:98
+msgid "Options"
msgstr ""
-#: domains/rst.py:235
-msgid "directive-option"
+#: _cli/__init__.py:113 _cli/__init__.py:181
+msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
msgstr ""
-#: domains/rst.py:236
-msgid "role"
+#: _cli/__init__.py:171
+#, python-brace-format
+msgid ""
+"{0}: error: {1}\n"
+"Run '{0} --help' for information"
msgstr ""
-#: domains/rst.py:262
-#, python-format
-msgid "duplicate description of %s %s, other instance in %s"
+#: _cli/__init__.py:179
+msgid " Manage documentation with Sphinx."
msgstr ""
-#: domains/citation.py:75
-#, python-format
-msgid "duplicate citation %s, other instance in %s"
+#: _cli/__init__.py:191
+msgid "Show the version and exit."
msgstr ""
-#: domains/citation.py:92
-#, python-format
-msgid "Citation [%s] is not referenced."
+#: _cli/__init__.py:199
+msgid "Show this message and exit."
msgstr ""
-#: locale/__init__.py:228
-msgid "Attention"
-msgstr "দৃষ্টি আকর্ষণ"
-
-#: locale/__init__.py:229
-msgid "Caution"
-msgstr "সতর্কীকরণ"
-
-#: locale/__init__.py:230
-msgid "Danger"
-msgstr "বিপজ্জনক"
-
-#: locale/__init__.py:231
-msgid "Error"
-msgstr "ভুল (এরর)"
-
-#: locale/__init__.py:232
-msgid "Hint"
-msgstr "আভাস"
+#: _cli/__init__.py:203
+msgid "Logging"
+msgstr ""
-#: locale/__init__.py:233
-msgid "Important"
-msgstr "গুরুত্বপূর্ণ"
+#: _cli/__init__.py:210
+msgid "Increase verbosity (can be repeated)"
+msgstr ""
-#: locale/__init__.py:234
-msgid "Note"
-msgstr "নোট"
+#: _cli/__init__.py:218
+msgid "Only print errors and warnings."
+msgstr ""
-#: locale/__init__.py:235
-msgid "See also"
-msgstr "আরও দেখুন"
+#: _cli/__init__.py:225
+msgid "No output at all"
+msgstr ""
-#: locale/__init__.py:236
-msgid "Tip"
-msgstr "পরামর্শ"
+#: _cli/__init__.py:231
+msgid ""
+msgstr ""
-#: locale/__init__.py:237
-msgid "Warning"
-msgstr "সতর্কতা"
+#: _cli/__init__.py:263
+msgid "See 'sphinx --help'.\n"
+msgstr ""
-#: cmd/quickstart.py:52
-msgid "automatically insert docstrings from modules"
+#: transforms/i18n.py:230 transforms/i18n.py:305
+#, python-brace-format
+msgid ""
+"inconsistent footnote references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:53
-msgid "automatically test code snippets in doctest blocks"
+#: transforms/i18n.py:275
+#, python-brace-format
+msgid ""
+"inconsistent references in translated message. original: {0}, translated: "
+"{1}"
msgstr ""
-#: cmd/quickstart.py:54
-msgid "link between Sphinx documentation of different projects"
+#: transforms/i18n.py:325
+#, python-brace-format
+msgid ""
+"inconsistent citation references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:55
-msgid "write \"todo\" entries that can be shown or hidden on build"
+#: transforms/i18n.py:347
+#, python-brace-format
+msgid ""
+"inconsistent term references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:56
-msgid "checks for documentation coverage"
+#: transforms/__init__.py:144
+msgid "could not calculate translation progress!"
msgstr ""
-#: cmd/quickstart.py:57
-msgid "include math, rendered as PNG or SVG images"
+#: transforms/__init__.py:149
+msgid "no translated elements!"
msgstr ""
-#: cmd/quickstart.py:58
-msgid "include math, rendered in the browser by MathJax"
+#: transforms/__init__.py:258
+#, python-format
+msgid ""
+"4 column based index found. It might be a bug of extensions you use: %r"
msgstr ""
-#: cmd/quickstart.py:59
-msgid "conditional inclusion of content based on config values"
+#: transforms/__init__.py:299
+#, python-format
+msgid "Footnote [%s] is not referenced."
msgstr ""
-#: cmd/quickstart.py:60
-msgid "include links to the source code of documented Python objects"
+#: transforms/__init__.py:308
+msgid "Footnote [*] is not referenced."
msgstr ""
-#: cmd/quickstart.py:61
-msgid "create .nojekyll file to publish the document on GitHub pages"
+#: transforms/__init__.py:319
+msgid "Footnote [#] is not referenced."
msgstr ""
-#: cmd/quickstart.py:110
-msgid "Please enter a valid path name."
+#: util/inventory.py:147
+#, python-format
+msgid "inventory <%s> contains duplicate definitions of %s"
msgstr ""
-#: cmd/quickstart.py:126
-msgid "Please enter some text."
+#: util/inventory.py:166
+#, python-format
+msgid "inventory <%s> contains multiple definitions for %s"
msgstr ""
-#: cmd/quickstart.py:133
+#: util/i18n.py:100
#, python-format
-msgid "Please enter one of %s."
+msgid "reading error: %s, %s"
msgstr ""
-#: cmd/quickstart.py:141
-msgid "Please enter either 'y' or 'n'."
+#: util/i18n.py:113
+#, python-format
+msgid "writing error: %s, %s"
msgstr ""
-#: cmd/quickstart.py:147
-msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
+#: util/i18n.py:146
+#, python-format
+msgid "locale_dir %s does not exist"
msgstr ""
-#: cmd/quickstart.py:229
+#: util/i18n.py:244
#, python-format
-msgid "Welcome to the Sphinx %s quickstart utility."
+msgid "Invalid Babel locale: %r."
msgstr ""
-#: cmd/quickstart.py:234
+#: util/i18n.py:253
+#, python-format
msgid ""
-"Please enter values for the following settings (just press Enter to\n"
-"accept a default value, if one is given in brackets)."
+"Invalid date format. Quote the string by single quote if you want to output "
+"it directly: %s"
msgstr ""
-#: cmd/quickstart.py:241
+#: util/osutil.py:131
#, python-format
-msgid "Selected root path: %s"
+msgid ""
+"Aborted attempted copy from %s to %s (the destination path has existing "
+"data)."
msgstr ""
-#: cmd/quickstart.py:244
-msgid "Enter the root path for documentation."
+#: util/display.py:82
+msgid "skipped"
msgstr ""
-#: cmd/quickstart.py:245
-msgid "Root path for the documentation"
+#: util/display.py:87
+msgid "failed"
msgstr ""
-#: cmd/quickstart.py:254
-msgid "Error: an existing conf.py has been found in the selected root path."
+#: util/docutils.py:325
+#, python-format
+msgid "unknown directive name: %s"
msgstr ""
-#: cmd/quickstart.py:259
-msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
+#: util/docutils.py:361
+#, python-format
+msgid "unknown role name: %s"
msgstr ""
-#: cmd/quickstart.py:262
-msgid "Please enter a new root path (or just Enter to exit)"
+#: util/docutils.py:805
+#, python-format
+msgid "unknown node type: %r"
msgstr ""
-#: cmd/quickstart.py:273
+#: util/fileutil.py:76
+#, python-format
msgid ""
-"You have two options for placing the build directory for Sphinx output.\n"
-"Either, you use a directory \"_build\" within the root path, or you separate\n"
-"\"source\" and \"build\" directories within the root path."
+"Aborted attempted copy from rendered template %s to %s (the destination path"
+" has existing data)."
msgstr ""
-#: cmd/quickstart.py:279
-msgid "Separate source and build directories (y/n)"
-msgstr ""
-
-#: cmd/quickstart.py:286
-msgid ""
-"Inside the root directory, two more directories will be created; \"_templates\"\n"
-"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
-"files. You can enter another prefix (such as \".\") to replace the underscore."
-msgstr ""
-
-#: cmd/quickstart.py:291
-msgid "Name prefix for templates and static dir"
-msgstr ""
-
-#: cmd/quickstart.py:297
-msgid ""
-"The project name will occur in several places in the built documentation."
-msgstr ""
-
-#: cmd/quickstart.py:300
-msgid "Project name"
-msgstr ""
-
-#: cmd/quickstart.py:302
-msgid "Author name(s)"
-msgstr ""
-
-#: cmd/quickstart.py:308
-msgid ""
-"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
-"software. Each version can have multiple releases. For example, for\n"
-"Python the version is something like 2.5 or 3.0, while the release is\n"
-"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
-"just set both to the same value."
-msgstr ""
-
-#: cmd/quickstart.py:315
-msgid "Project version"
-msgstr ""
-
-#: cmd/quickstart.py:317
-msgid "Project release"
-msgstr ""
-
-#: cmd/quickstart.py:323
-msgid ""
-"If the documents are to be written in a language other than English,\n"
-"you can select a language here by its language code. Sphinx will then\n"
-"translate text that it generates into that language.\n"
-"\n"
-"For a list of supported codes, see\n"
-"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
-msgstr ""
-
-#: cmd/quickstart.py:331
-msgid "Project language"
+#: util/fileutil.py:89
+#, python-format
+msgid "Writing evaluated template result to %s"
msgstr ""
-#: cmd/quickstart.py:339
+#: util/docfields.py:103
+#, python-format
msgid ""
-"The file name suffix for source files. Commonly, this is either \".txt\"\n"
-"or \".rst\". Only files with this suffix are considered documents."
+"Problem in %s domain: field is supposed to use role '%s', but that role is "
+"not in the domain."
msgstr ""
-#: cmd/quickstart.py:343
-msgid "Source file suffix"
+#: util/rst.py:73
+#, python-format
+msgid "default role %s not found"
msgstr ""
-#: cmd/quickstart.py:349
+#: util/nodes.py:462
+#, python-format
msgid ""
-"One document is special in that it is considered the top node of the\n"
-"\"contents tree\", that is, it is the root of the hierarchical structure\n"
-"of the documents. Normally, this is \"index\", but if your \"index\"\n"
-"document is a custom template, you can also set this to another filename."
+"%r is no longer supported for index entries (from entry %r). Use 'pair: %s' "
+"instead."
msgstr ""
-#: cmd/quickstart.py:356
-msgid "Name of your master document (without suffix)"
+#: util/nodes.py:523
+#, python-format
+msgid "toctree contains ref to nonexisting file %r"
msgstr ""
-#: cmd/quickstart.py:367
+#: util/nodes.py:739
#, python-format
-msgid ""
-"Error: the master file %s has already been found in the selected root path."
+msgid "exception while evaluating only directive expression: %s"
msgstr ""
-#: cmd/quickstart.py:373
-msgid "sphinx-quickstart will not overwrite the existing file."
-msgstr ""
+#: templates/latex/longtable.tex.jinja:52
+#: templates/latex/sphinxmessages.sty.jinja:8
+msgid "continued from previous page"
+msgstr "পূর্ববর্তী পাতা হতে চলমান"
-#: cmd/quickstart.py:377
-msgid ""
-"Please enter a new file name, or rename the existing file and press Enter"
+#: templates/latex/longtable.tex.jinja:63
+#: templates/latex/sphinxmessages.sty.jinja:9
+msgid "continues on next page"
msgstr ""
-#: cmd/quickstart.py:385
-msgid "Indicate which of the following Sphinx extensions should be enabled:"
+#: templates/latex/sphinxmessages.sty.jinja:10
+msgid "Non-alphabetical"
msgstr ""
-#: cmd/quickstart.py:396
-msgid ""
-"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
-"been deselected."
+#: environment/adapters/indexentries.py:267
+#: templates/latex/sphinxmessages.sty.jinja:11
+msgid "Symbols"
msgstr ""
-#: cmd/quickstart.py:406
-msgid ""
-"A Makefile and a Windows command file can be generated for you so that you\n"
-"only have to run e.g. `make html' instead of invoking sphinx-build\n"
-"directly."
+#: templates/latex/sphinxmessages.sty.jinja:12
+msgid "Numbers"
msgstr ""
-#: cmd/quickstart.py:411
-msgid "Create Makefile? (y/n)"
+#: templates/latex/sphinxmessages.sty.jinja:13
+msgid "page"
msgstr ""
-#: cmd/quickstart.py:415
-msgid "Create Windows command file? (y/n)"
-msgstr ""
+#: builders/latex/__init__.py:206 templates/latex/latex.tex.jinja:92
+msgid "Release"
+msgstr "রিলিজ"
-#: cmd/quickstart.py:467 ext/apidoc/_generate.py:76
+#: transforms/post_transforms/images.py:79
#, python-format
-msgid "Creating file %s."
+msgid "Could not fetch remote image: %s [%s]"
msgstr ""
-#: cmd/quickstart.py:472 ext/apidoc/_generate.py:73
+#: transforms/post_transforms/images.py:96
#, python-format
-msgid "File %s already exists, skipping."
-msgstr ""
-
-#: cmd/quickstart.py:515
-msgid "Finished: An initial directory structure has been created."
+msgid "Could not fetch remote image: %s [%d]"
msgstr ""
-#: cmd/quickstart.py:519
+#: transforms/post_transforms/images.py:143
#, python-format
-msgid ""
-"You should now populate your master file %s and create other documentation\n"
-"source files. "
+msgid "Unknown image format: %s..."
msgstr ""
-#: cmd/quickstart.py:526
+#: transforms/post_transforms/__init__.py:88
msgid ""
-"Use the Makefile to build the docs, like so:\n"
-" make builder"
+"Could not determine the fallback text for the cross-reference. Might be a "
+"bug."
msgstr ""
-#: cmd/quickstart.py:530
+#: transforms/post_transforms/__init__.py:233
#, python-format
-msgid ""
-"Use the sphinx-build command to build the docs, like so:\n"
-" sphinx-build -b builder %s %s"
-msgstr ""
-
-#: cmd/quickstart.py:537
-msgid ""
-"where \"builder\" is one of the supported builders, e.g. html, latex or "
-"linkcheck."
-msgstr ""
-
-#: cmd/quickstart.py:572
-msgid ""
-"\n"
-"Generate required files for a Sphinx project.\n"
-"\n"
-"sphinx-quickstart is an interactive tool that asks some questions about your\n"
-"project and then generates a complete documentation directory and sample\n"
-"Makefile to be used with sphinx-build.\n"
-msgstr ""
-
-#: cmd/build.py:73 cmd/quickstart.py:581 ext/apidoc/_cli.py:27
-#: ext/autosummary/generate.py:835
-msgid "For more information, visit ."
-msgstr ""
-
-#: cmd/quickstart.py:591
-msgid "quiet mode"
-msgstr ""
-
-#: cmd/quickstart.py:601
-msgid "project root"
-msgstr ""
-
-#: cmd/quickstart.py:604
-msgid "Structure options"
-msgstr ""
-
-#: cmd/quickstart.py:610
-msgid "if specified, separate source and build dirs"
-msgstr ""
-
-#: cmd/quickstart.py:616
-msgid "if specified, create build dir under source dir"
-msgstr ""
-
-#: cmd/quickstart.py:622
-msgid "replacement for dot in _templates etc."
-msgstr ""
-
-#: cmd/quickstart.py:625
-msgid "Project basic options"
-msgstr ""
-
-#: cmd/quickstart.py:627
-msgid "project name"
-msgstr ""
-
-#: cmd/quickstart.py:630
-msgid "author names"
-msgstr ""
-
-#: cmd/quickstart.py:637
-msgid "version of project"
-msgstr ""
-
-#: cmd/quickstart.py:644
-msgid "release of project"
-msgstr ""
-
-#: cmd/quickstart.py:651
-msgid "document language"
-msgstr ""
-
-#: cmd/quickstart.py:654
-msgid "source file suffix"
-msgstr ""
-
-#: cmd/quickstart.py:657
-msgid "master document name"
-msgstr ""
-
-#: cmd/quickstart.py:660
-msgid "use epub"
-msgstr ""
-
-#: cmd/quickstart.py:663
-msgid "Extension options"
+msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr ""
-#: cmd/quickstart.py:670
+#: transforms/post_transforms/__init__.py:291
#, python-format
-msgid "enable %s extension"
-msgstr ""
-
-#: cmd/quickstart.py:677
-msgid "enable arbitrary extensions"
-msgstr ""
-
-#: cmd/quickstart.py:680
-msgid "Makefile and Batchfile creation"
-msgstr ""
-
-#: cmd/quickstart.py:686
-msgid "create makefile"
-msgstr ""
-
-#: cmd/quickstart.py:692
-msgid "do not create makefile"
-msgstr ""
-
-#: cmd/quickstart.py:699
-msgid "create batchfile"
-msgstr ""
-
-#: cmd/quickstart.py:705
-msgid "do not create batchfile"
-msgstr ""
-
-#: cmd/quickstart.py:714
-msgid "use make-mode for Makefile/make.bat"
-msgstr ""
-
-#: cmd/quickstart.py:717 ext/apidoc/_cli.py:243
-msgid "Project templating"
-msgstr ""
-
-#: cmd/quickstart.py:723 ext/apidoc/_cli.py:249
-msgid "template directory for template files"
-msgstr ""
-
-#: cmd/quickstart.py:730
-msgid "define a template variable"
-msgstr ""
-
-#: cmd/quickstart.py:766
-msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
-msgstr ""
-
-#: cmd/quickstart.py:785
-msgid ""
-"Error: specified path is not a directory, or sphinx files already exist."
-msgstr ""
-
-#: cmd/quickstart.py:792
-msgid ""
-"sphinx-quickstart only generate into a empty directory. Please specify a new"
-" root path."
+msgid "%s:%s reference target not found: %s"
msgstr ""
-#: cmd/quickstart.py:809
+#: transforms/post_transforms/__init__.py:297
#, python-format
-msgid "Invalid template variable: %s"
+msgid "%r reference target not found: %s"
msgstr ""
-#: cmd/build.py:64
-msgid "job number should be a positive number"
+#: _cli/util/errors.py:190
+msgid "Interrupted!"
msgstr ""
-#: cmd/build.py:74
-msgid ""
-"\n"
-"Generate documentation from source files.\n"
-"\n"
-"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
-"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
-"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
-"including 'conf.py'\n"
-"\n"
-"sphinx-build can create documentation in different formats. A format is\n"
-"selected by specifying the builder name on the command line; it defaults to\n"
-"HTML. Builders can also perform other tasks related to documentation\n"
-"processing.\n"
-"\n"
-"By default, everything that is outdated is built. Output only for selected\n"
-"files can be built by specifying individual filenames.\n"
+#: _cli/util/errors.py:194
+msgid "reStructuredText markup error!"
msgstr ""
-#: cmd/build.py:100
-msgid "path to documentation source files"
+#: _cli/util/errors.py:200
+msgid "Encoding error!"
msgstr ""
-#: cmd/build.py:103
-msgid "path to output directory"
+#: _cli/util/errors.py:203
+msgid "Recursion error!"
msgstr ""
-#: cmd/build.py:109
+#: _cli/util/errors.py:207
msgid ""
-"(optional) a list of specific files to rebuild. Ignored if --write-all is "
-"specified"
+"This can happen with very large or deeply nested source files. You can "
+"carefully increase the default Python recursion limit of 1,000 in conf.py "
+"with e.g.:"
msgstr ""
-#: cmd/build.py:114
-msgid "general options"
+#: _cli/util/errors.py:227
+msgid "Starting debugger:"
msgstr ""
-#: cmd/build.py:121
-msgid "builder to use (default: 'html')"
+#: _cli/util/errors.py:235
+msgid "The full traceback has been saved in:"
msgstr ""
-#: cmd/build.py:131
+#: _cli/util/errors.py:240
msgid ""
-"run in parallel with N processes, when possible. 'auto' uses the number of "
-"CPU cores"
-msgstr ""
-
-#: cmd/build.py:140
-msgid "write all files (default: only write new and changed files)"
-msgstr ""
-
-#: cmd/build.py:147
-msgid "don't use a saved environment, always read all files"
-msgstr ""
-
-#: cmd/build.py:150
-msgid "path options"
+"To report this error to the developers, please open an issue at "
+". Thanks!"
msgstr ""
-#: cmd/build.py:157
+#: _cli/util/errors.py:246
msgid ""
-"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
-msgstr ""
-
-#: cmd/build.py:166
-msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
-msgstr ""
-
-#: cmd/build.py:175
-msgid "use no configuration file, only use settings from -D options"
-msgstr ""
-
-#: cmd/build.py:184
-msgid "override a setting in configuration file"
-msgstr ""
-
-#: cmd/build.py:193
-msgid "pass a value into HTML templates"
-msgstr ""
-
-#: cmd/build.py:202
-msgid "define tag: include \"only\" blocks with TAG"
-msgstr ""
-
-#: cmd/build.py:209
-msgid "nitpicky mode: warn about all missing references"
+"Please also report this if it was a user error, so that a better error "
+"message can be provided next time."
msgstr ""
-#: cmd/build.py:212
-msgid "console output options"
+#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
+msgid "Collapse sidebar"
msgstr ""
-#: cmd/build.py:219
-msgid "increase verbosity (can be repeated)"
-msgstr ""
+#: themes/basic/layout.html:18
+msgid "Navigation"
+msgstr "নেভিগেশন"
-#: cmd/build.py:226 ext/apidoc/_cli.py:66
-msgid "no output on stdout, just warnings on stderr"
-msgstr ""
+#: themes/basic/layout.html:115
+#, python-format
+msgid "Search within %(docstitle)s"
+msgstr "%(docstitle)s এর মধ্যে খুঁজুন"
-#: cmd/build.py:233
-msgid "no output at all, not even warnings"
-msgstr ""
+#: themes/basic/layout.html:124
+msgid "About these documents"
+msgstr "এই ডকুমেন্ট সম্পর্কে"
-#: cmd/build.py:241
-msgid "do emit colored output (default: auto-detect)"
-msgstr ""
+#: themes/agogo/layout.html:34 themes/basic/layout.html:130
+#: themes/basic/search.html:3 themes/basic/search.html:15
+msgid "Search"
+msgstr "অনুসন্ধান"
-#: cmd/build.py:249
-msgid "do not emit colored output (default: auto-detect)"
-msgstr ""
+#: themes/basic/layout.html:133 themes/basic/layout.html:177
+#: themes/basic/layout.html:179
+msgid "Copyright"
+msgstr "কপিরাইট"
-#: cmd/build.py:252
-msgid "warning control options"
+#: themes/basic/layout.html:183 themes/basic/layout.html:189
+#, python-format
+msgid "© %(copyright_prefix)s %(copyright)s."
msgstr ""
-#: cmd/build.py:258
-msgid "write warnings (and errors) to given file"
-msgstr ""
+#: themes/basic/layout.html:201
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "%(last_updated)s সর্বশেষ পরিবর্তন করা হয়েছে।"
-#: cmd/build.py:265
-msgid "turn warnings into errors"
+#: themes/basic/layout.html:204
+#, python-format
+msgid ""
+"Created using Sphinx "
+"%(sphinx_version)s."
msgstr ""
-#: cmd/build.py:273
-msgid "show full traceback on exception"
-msgstr ""
+#: themes/basic/relations.html:4
+msgid "Previous topic"
+msgstr "পূর্ববর্তী টপিক"
-#: cmd/build.py:276
-msgid "run Pdb on exception"
-msgstr ""
+#: themes/basic/relations.html:6
+msgid "previous chapter"
+msgstr "পূর্ববর্তী অধ্যায়"
-#: cmd/build.py:282
-msgid "raise an exception on warnings"
-msgstr ""
+#: themes/basic/relations.html:11
+msgid "Next topic"
+msgstr "পরবর্তী টপিক"
-#: cmd/build.py:325
-msgid "cannot combine -a option and filenames"
-msgstr ""
+#: themes/basic/relations.html:13
+msgid "next chapter"
+msgstr "পরবর্তী অধ্যায়"
-#: cmd/build.py:357
+#: themes/basic/genindex-single.html:26
#, python-format
-msgid "cannot open warning file '%s': %s"
-msgstr ""
-
-#: cmd/build.py:376
-msgid "-D option argument must be in the form name=value"
-msgstr ""
-
-#: cmd/build.py:383
-msgid "-A option argument must be in the form name=value"
-msgstr ""
-
-#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
-msgid "Collapse sidebar"
-msgstr ""
-
-#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
-#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
-msgid "Table of Contents"
+msgid "Index – %(key)s"
msgstr ""
-#: themes/agogo/layout.html:34 themes/basic/layout.html:130
-#: themes/basic/search.html:3 themes/basic/search.html:15
-msgid "Search"
-msgstr "অনুসন্ধান"
+#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
+#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
+msgid "Full index on one page"
+msgstr "এক পাতায় সম্পূর্ণ ইনডেক্স"
-#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
-#: themes/basic/searchfield.html:12
-msgid "Go"
-msgstr "যান"
+#: themes/basic/sourcelink.html:4
+msgid "This Page"
+msgstr "এই পাতা"
#: themes/agogo/layout.html:81 themes/basic/sourcelink.html:7
msgid "Show Source"
msgstr "সোর্স দেখুন"
-#: themes/haiku/layout.html:16
-msgid "Contents"
-msgstr ""
+#: themes/basic/searchbox.html:4
+msgid "Quick search"
+msgstr "দ্রুত অনুসন্ধান"
-#: themes/basic/opensearch.xml:4
-#, python-format
-msgid "Search %(docstitle)s"
-msgstr "%(docstitle)s-এ খুঁজুন"
+#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
+#: themes/basic/searchfield.html:12
+msgid "Go"
+msgstr "যান"
#: themes/basic/defindex.html:4
msgid "Overview"
@@ -2682,7 +2882,7 @@ msgstr "গ্লোবাল মডিউল ইনডেক্স"
msgid "quick access to all modules"
msgstr "সকল মডিউলে দ্রুত প্রবেশ"
-#: builders/html/__init__.py:507 themes/basic/defindex.html:23
+#: builders/html/__init__.py:496 themes/basic/defindex.html:23
msgid "General Index"
msgstr "সাধারণ ইনডেক্স"
@@ -2690,23 +2890,15 @@ msgstr "সাধারণ ইনডেক্স"
msgid "all functions, classes, terms"
msgstr "সকল ফাংশন, ক্লাস, টার্ম"
-#: themes/basic/sourcelink.html:4
-msgid "This Page"
-msgstr "এই পাতা"
-
-#: themes/basic/genindex-single.html:26
-#, python-format
-msgid "Index – %(key)s"
+#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
+#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
+msgid "Table of Contents"
msgstr ""
-#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
-#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
-msgid "Full index on one page"
-msgstr "এক পাতায় সম্পূর্ণ ইনডেক্স"
-
-#: themes/basic/searchbox.html:4
-msgid "Quick search"
-msgstr "দ্রুত অনুসন্ধান"
+#: themes/basic/opensearch.xml:4
+#, python-format
+msgid "Search %(docstitle)s"
+msgstr "%(docstitle)s-এ খুঁজুন"
#: themes/basic/genindex-split.html:8
msgid "Index pages by letter"
@@ -2716,57 +2908,6 @@ msgstr "বর্ণানুসারে ইনডেক্স পাতা"
msgid "can be huge"
msgstr "খুব বড় হতে পারে"
-#: themes/basic/relations.html:4
-msgid "Previous topic"
-msgstr "পূর্ববর্তী টপিক"
-
-#: themes/basic/relations.html:6
-msgid "previous chapter"
-msgstr "পূর্ববর্তী অধ্যায়"
-
-#: themes/basic/relations.html:11
-msgid "Next topic"
-msgstr "পরবর্তী টপিক"
-
-#: themes/basic/relations.html:13
-msgid "next chapter"
-msgstr "পরবর্তী অধ্যায়"
-
-#: themes/basic/layout.html:18
-msgid "Navigation"
-msgstr "নেভিগেশন"
-
-#: themes/basic/layout.html:115
-#, python-format
-msgid "Search within %(docstitle)s"
-msgstr "%(docstitle)s এর মধ্যে খুঁজুন"
-
-#: themes/basic/layout.html:124
-msgid "About these documents"
-msgstr "এই ডকুমেন্ট সম্পর্কে"
-
-#: themes/basic/layout.html:133 themes/basic/layout.html:177
-#: themes/basic/layout.html:179
-msgid "Copyright"
-msgstr "কপিরাইট"
-
-#: themes/basic/layout.html:183 themes/basic/layout.html:189
-#, python-format
-msgid "© %(copyright_prefix)s %(copyright)s."
-msgstr ""
-
-#: themes/basic/layout.html:201
-#, python-format
-msgid "Last updated on %(last_updated)s."
-msgstr "%(last_updated)s সর্বশেষ পরিবর্তন করা হয়েছে।"
-
-#: themes/basic/layout.html:204
-#, python-format
-msgid ""
-"Created using Sphinx "
-"%(sphinx_version)s."
-msgstr ""
-
#: themes/basic/search.html:20
msgid ""
"Please activate JavaScript to enable the search\n"
@@ -2783,21 +2924,21 @@ msgstr ""
msgid "search"
msgstr "খুঁজুন"
-#: themes/basic/static/sphinx_highlight.js:112
-msgid "Hide Search Matches"
-msgstr "অনুসন্ধানের ম্যাচগুলো লুকান"
+#: themes/haiku/layout.html:16
+msgid "Contents"
+msgstr ""
-#: themes/basic/static/searchtools.js:117
+#: themes/basic/static/searchtools.js:132
msgid "Search Results"
msgstr "অনুসন্ধানের ফলাফল"
-#: themes/basic/static/searchtools.js:119
+#: themes/basic/static/searchtools.js:134
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
msgstr ""
-#: themes/basic/static/searchtools.js:123
+#: themes/basic/static/searchtools.js:138
#, python-brace-format
msgid "Search finished, found one page matching the search query."
msgid_plural ""
@@ -2805,22 +2946,21 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: themes/basic/static/searchtools.js:253
+#: themes/basic/static/searchtools.js:276
msgid "Searching"
msgstr ""
-#: themes/basic/static/searchtools.js:270
+#: themes/basic/static/searchtools.js:293
msgid "Preparing search..."
msgstr ""
-#: themes/basic/static/searchtools.js:474
+#: themes/basic/static/searchtools.js:526
msgid ", in "
msgstr ""
-#: themes/basic/changes/rstsource.html:5
-#, python-format
-msgid "%(filename)s — %(docstitle)s"
-msgstr ""
+#: themes/basic/static/sphinx_highlight.js:112
+msgid "Hide Search Matches"
+msgstr "অনুসন্ধানের ম্যাচগুলো লুকান"
#: themes/basic/changes/frameset.html:5
#: themes/basic/changes/versionchanges.html:12
@@ -2828,6 +2968,11 @@ msgstr ""
msgid "Changes in Version %(version)s — %(docstitle)s"
msgstr ""
+#: themes/basic/changes/rstsource.html:5
+#, python-format
+msgid "%(filename)s — %(docstitle)s"
+msgstr ""
+
#: themes/basic/changes/versionchanges.html:17
#, python-format
msgid "Automatically generated list of changes in version %(version)s"
@@ -2849,121 +2994,128 @@ msgstr "অন্যান্য পরিবর্তন"
msgid "Expand sidebar"
msgstr ""
-#: domains/python/_annotations.py:529
+#: domains/python/_annotations.py:522
msgid "Positional-only parameter separator (PEP 570)"
msgstr ""
-#: domains/python/_annotations.py:540
+#: domains/python/_annotations.py:533
msgid "Keyword-only parameters separator (PEP 3102)"
msgstr ""
-#: domains/python/__init__.py:113 domains/python/__init__.py:278
+#: domains/c/__init__.py:354 domains/cpp/__init__.py:485
+#: domains/python/_object.py:190 ext/napoleon/docstring.py:980
+msgid "Parameters"
+msgstr "প্যারামিটার"
+
+#: domains/python/_object.py:206
+msgid "Variables"
+msgstr ""
+
+#: domains/python/_object.py:214
+msgid "Raises"
+msgstr "রেইজেস"
+
+#: domains/python/__init__.py:105 domains/python/__init__.py:270
#, python-format
msgid "%s() (in module %s)"
msgstr "%s() (%s মডিউলে)"
-#: domains/python/__init__.py:180 domains/python/__init__.py:374
-#: domains/python/__init__.py:434 domains/python/__init__.py:474
+#: domains/python/__init__.py:172 domains/python/__init__.py:366
+#: domains/python/__init__.py:426 domains/python/__init__.py:466
#, python-format
msgid "%s (in module %s)"
msgstr "%s (%s মডিউলে)"
-#: domains/python/__init__.py:182
+#: domains/python/__init__.py:174
#, python-format
msgid "%s (built-in variable)"
msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)"
-#: domains/python/__init__.py:217
+#: domains/python/__init__.py:209
#, python-format
msgid "%s (built-in class)"
msgstr "%s (বিল্ট-ইন ক্লাস)"
-#: domains/python/__init__.py:218
+#: domains/python/__init__.py:210
#, python-format
msgid "%s (class in %s)"
msgstr "%s (%s ক্লাসে)"
-#: domains/python/__init__.py:283
+#: domains/python/__init__.py:275
#, python-format
msgid "%s() (%s class method)"
msgstr "%s() (%s ক্লাস মেথড)"
-#: domains/python/__init__.py:285
+#: domains/python/__init__.py:277
#, python-format
msgid "%s() (%s static method)"
msgstr "%s() (%s স্ট্যাটিক মেথড)"
-#: domains/python/__init__.py:438
+#: domains/python/__init__.py:430
#, python-format
msgid "%s (%s property)"
msgstr ""
-#: domains/python/__init__.py:478
+#: domains/python/__init__.py:470
#, python-format
msgid "%s (type alias in %s)"
msgstr ""
-#: domains/python/__init__.py:638
+#: domains/python/__init__.py:624
msgid "Python Module Index"
msgstr ""
-#: domains/python/__init__.py:639
+#: domains/python/__init__.py:625
msgid "modules"
msgstr "মডিউল সমূহ"
-#: domains/python/__init__.py:717
+#: domains/python/__init__.py:703
msgid "Deprecated"
msgstr "ডেপ্রিকেটেড"
-#: domains/python/__init__.py:743
+#: domains/python/__init__.py:729
msgid "exception"
msgstr "এক্সেপশন"
-#: domains/python/__init__.py:745
+#: domains/python/__init__.py:731
msgid "class method"
msgstr "ক্লাস মেথড"
-#: domains/python/__init__.py:746
+#: domains/python/__init__.py:732
msgid "static method"
msgstr "স্ট্যাটিক মেথড"
-#: domains/python/__init__.py:748
+#: domains/python/__init__.py:734
msgid "property"
msgstr ""
-#: domains/python/__init__.py:749
+#: domains/python/__init__.py:735
msgid "type alias"
msgstr ""
-#: domains/python/__init__.py:818
+#: domains/python/__init__.py:804
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :no-index: for"
" one of them"
msgstr ""
-#: domains/python/__init__.py:978
+#: domains/python/__init__.py:974
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
-#: domains/python/__init__.py:1052
+#: domains/python/__init__.py:1048
msgid " (deprecated)"
msgstr ""
-#: domains/c/__init__.py:326 domains/cpp/__init__.py:483
-#: domains/python/_object.py:190 ext/napoleon/docstring.py:974
-msgid "Parameters"
-msgstr "প্যারামিটার"
-
-#: domains/python/_object.py:206
-msgid "Variables"
+#: domains/cpp/__init__.py:394 domains/cpp/_symbol.py:946
+#, python-format
+msgid ""
+"Duplicate C++ declaration, also defined at %s:%s.\n"
+"Declaration is '.. cpp:%s:: %s'."
msgstr ""
-#: domains/python/_object.py:214
-msgid "Raises"
-msgstr "রেইজেস"
-
#: domains/cpp/__init__.py:159
msgid "Template Parameters"
msgstr ""
@@ -2973,92 +3125,85 @@ msgstr ""
msgid "%s (C++ %s)"
msgstr ""
-#: domains/cpp/__init__.py:392 domains/cpp/_symbol.py:942
-#, python-format
-msgid ""
-"Duplicate C++ declaration, also defined at %s:%s.\n"
-"Declaration is '.. cpp:%s:: %s'."
-msgstr ""
-
-#: domains/c/__init__.py:333 domains/cpp/__init__.py:496
+#: domains/c/__init__.py:361 domains/cpp/__init__.py:498
msgid "Return values"
msgstr ""
-#: domains/c/__init__.py:754 domains/cpp/__init__.py:940
+#: domains/c/__init__.py:782 domains/cpp/__init__.py:942
msgid "union"
msgstr ""
-#: domains/c/__init__.py:749 domains/cpp/__init__.py:942
+#: domains/c/__init__.py:777 domains/cpp/__init__.py:944
msgid "member"
msgstr ""
-#: domains/c/__init__.py:757 domains/cpp/__init__.py:943
+#: domains/c/__init__.py:785 domains/cpp/__init__.py:945
msgid "type"
msgstr ""
-#: domains/cpp/__init__.py:944
+#: domains/cpp/__init__.py:946
msgid "concept"
msgstr ""
-#: domains/c/__init__.py:755 domains/cpp/__init__.py:945
+#: domains/c/__init__.py:783 domains/cpp/__init__.py:947
msgid "enum"
msgstr ""
-#: domains/c/__init__.py:756 domains/cpp/__init__.py:946
+#: domains/c/__init__.py:784 domains/cpp/__init__.py:948
msgid "enumerator"
msgstr ""
-#: domains/c/__init__.py:760 domains/cpp/__init__.py:949
+#: domains/c/__init__.py:788 domains/cpp/__init__.py:951
msgid "function parameter"
msgstr ""
-#: domains/cpp/__init__.py:952
+#: domains/cpp/__init__.py:954
msgid "template parameter"
msgstr ""
-#: domains/c/__init__.py:211
-#, python-format
-msgid "%s (C %s)"
-msgstr ""
-
-#: domains/c/__init__.py:277 domains/c/_symbol.py:557
+#: domains/c/__init__.py:279 domains/c/_symbol.py:569
#, python-format
msgid ""
"Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'."
msgstr ""
-#: domains/c/__init__.py:750
+#: domains/c/__init__.py:211
+#, python-format
+msgid "%s (C %s)"
+msgstr ""
+
+#: domains/c/__init__.py:778
msgid "variable"
msgstr ""
-#: domains/c/__init__.py:752
+#: domains/c/__init__.py:780
msgid "macro"
msgstr ""
-#: domains/c/__init__.py:753
+#: domains/c/__init__.py:781
msgid "struct"
msgstr ""
-#: domains/std/__init__.py:91 domains/std/__init__.py:111
+#: domains/std/__init__.py:88 domains/std/__init__.py:108
#, python-format
msgid "environment variable; %s"
msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল; %s"
-#: domains/std/__init__.py:119
+#: domains/std/__init__.py:116
#, python-format
msgid "%s; configuration value"
msgstr ""
-#: domains/std/__init__.py:175
+#: domains/std/__init__.py:172
msgid "Type"
msgstr ""
-#: domains/std/__init__.py:185
+#: domains/std/__init__.py:182
msgid "Default"
msgstr ""
-#: domains/std/__init__.py:242
+#: domains/std/__init__.py:239
#, python-format
msgid ""
"Malformed option description %r, should look like \"opt\", \"-opt args\", \""
@@ -3095,572 +3240,480 @@ msgid "grammar token"
msgstr "ব্যকরণ টোকেন"
#: domains/std/__init__.py:731
-msgid "reference label"
-msgstr ""
-
-#: domains/std/__init__.py:733
-msgid "environment variable"
-msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল"
-
-#: domains/std/__init__.py:734
-msgid "program option"
-msgstr "প্রোগ্রাম অপশন"
-
-#: domains/std/__init__.py:735
-msgid "document"
-msgstr ""
-
-#: domains/std/__init__.py:772 domains/std/__init__.py:785
-msgid "Module Index"
-msgstr "মডিউল ইনডেক্স"
-
-#: domains/std/__init__.py:857
-#, python-format
-msgid "duplicate %s description of %s, other instance in %s"
-msgstr ""
-
-#: domains/std/__init__.py:1113
-msgid "numfig is disabled. :numref: is ignored."
-msgstr ""
-
-#: domains/std/__init__.py:1124
-#, python-format
-msgid "Failed to create a cross reference. Any number is not assigned: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1138
-#, python-format
-msgid "the link has no caption: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1153
-#, python-format
-msgid "invalid numfig_format: %s (%r)"
-msgstr ""
-
-#: domains/std/__init__.py:1157
-#, python-format
-msgid "invalid numfig_format: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1453
-#, python-format
-msgid "undefined label: %r"
-msgstr ""
-
-#: domains/std/__init__.py:1456
-#, python-format
-msgid "Failed to create a cross reference. A title or caption not found: %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:324
-#, python-format
-msgid "circular toctree references detected, ignoring: %s <- %s"
-msgstr ""
-
-#: environment/adapters/toctree.py:349
-#, python-format
-msgid ""
-"toctree contains reference to document %r that doesn't have a title: no link"
-" will be generated"
-msgstr ""
-
-#: environment/adapters/toctree.py:364
-#, python-format
-msgid "toctree contains reference to non-included document %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:367
-#, python-format
-msgid "toctree contains reference to non-existing document %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:123
-#, python-format
-msgid "see %s"
-msgstr ""
-
-#: environment/adapters/indexentries.py:133
-#, python-format
-msgid "see also %s"
-msgstr ""
-
-#: environment/adapters/indexentries.py:141
-#, python-format
-msgid "unknown index entry type %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:268
-#: templates/latex/sphinxmessages.sty.jinja:11
-msgid "Symbols"
-msgstr ""
-
-#: environment/collectors/asset.py:98
-#, python-format
-msgid "image file not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:126
-#, python-format
-msgid "image file %s not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:163
-#, python-format
-msgid "download file not readable: %s"
-msgstr ""
-
-#: environment/collectors/toctree.py:259
-#, python-format
-msgid "%s is already assigned section numbers (nested numbered toctree?)"
-msgstr ""
-
-#: _cli/util/errors.py:190
-msgid "Interrupted!"
-msgstr ""
-
-#: _cli/util/errors.py:194
-msgid "reStructuredText markup error!"
+msgid "reference label"
msgstr ""
-#: _cli/util/errors.py:200
-msgid "Encoding error!"
-msgstr ""
+#: domains/std/__init__.py:733
+msgid "environment variable"
+msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল"
-#: _cli/util/errors.py:203
-msgid "Recursion error!"
-msgstr ""
+#: domains/std/__init__.py:734
+msgid "program option"
+msgstr "প্রোগ্রাম অপশন"
-#: _cli/util/errors.py:207
-msgid ""
-"This can happen with very large or deeply nested source files. You can "
-"carefully increase the default Python recursion limit of 1,000 in conf.py "
-"with e.g.:"
+#: domains/std/__init__.py:735
+msgid "document"
msgstr ""
-#: _cli/util/errors.py:227
-msgid "Starting debugger:"
-msgstr ""
+#: domains/std/__init__.py:772 domains/std/__init__.py:785
+msgid "Module Index"
+msgstr "মডিউল ইনডেক্স"
-#: _cli/util/errors.py:235
-msgid "The full traceback has been saved in:"
+#: domains/std/__init__.py:857
+#, python-format
+msgid "duplicate %s description of %s, other instance in %s"
msgstr ""
-#: _cli/util/errors.py:240
-msgid ""
-"To report this error to the developers, please open an issue at "
-". Thanks!"
+#: domains/std/__init__.py:1113
+msgid "numfig is disabled. :numref: is ignored."
msgstr ""
-#: _cli/util/errors.py:246
-msgid ""
-"Please also report this if it was a user error, so that a better error "
-"message can be provided next time."
+#: domains/std/__init__.py:1124
+#, python-format
+msgid "Failed to create a cross reference. Any number is not assigned: %s"
msgstr ""
-#: transforms/post_transforms/__init__.py:88
-msgid ""
-"Could not determine the fallback text for the cross-reference. Might be a "
-"bug."
+#: domains/std/__init__.py:1138
+#, python-format
+msgid "the link has no caption: %s"
msgstr ""
-#: transforms/post_transforms/__init__.py:237
+#: domains/std/__init__.py:1153
#, python-format
-msgid "more than one target found for 'any' cross-reference %r: could be %s"
+msgid "invalid numfig_format: %s (%r)"
msgstr ""
-#: transforms/post_transforms/__init__.py:299
+#: domains/std/__init__.py:1157
#, python-format
-msgid "%s:%s reference target not found: %s"
+msgid "invalid numfig_format: %s"
msgstr ""
-#: transforms/post_transforms/__init__.py:305
+#: domains/std/__init__.py:1453
#, python-format
-msgid "%r reference target not found: %s"
+msgid "undefined label: %r"
msgstr ""
-#: transforms/post_transforms/images.py:79
+#: domains/std/__init__.py:1456
#, python-format
-msgid "Could not fetch remote image: %s [%s]"
+msgid "Failed to create a cross reference. A title or caption not found: %r"
msgstr ""
-#: transforms/post_transforms/images.py:96
+#: ext/napoleon/docstring.py:178
#, python-format
-msgid "Could not fetch remote image: %s [%d]"
+msgid "invalid value set (missing closing brace): %s"
msgstr ""
-#: transforms/post_transforms/images.py:143
+#: ext/napoleon/docstring.py:185
#, python-format
-msgid "Unknown image format: %s..."
+msgid "invalid value set (missing opening brace): %s"
msgstr ""
-#: builders/html/__init__.py:113
+#: ext/napoleon/docstring.py:192
#, python-format
-msgid "The HTML pages are in %(outdir)s."
+msgid "malformed string literal (missing closing quote): %s"
msgstr ""
-#: builders/html/__init__.py:348
+#: ext/napoleon/docstring.py:199
#, python-format
-msgid "Failed to read build info file: %r"
+msgid "malformed string literal (missing opening quote): %s"
msgstr ""
-#: builders/html/__init__.py:364
-msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+#: ext/napoleon/docstring.py:902
+msgid "Example"
msgstr ""
-#: builders/html/__init__.py:366
-msgid "building [html]: "
+#: ext/napoleon/docstring.py:903
+msgid "Examples"
msgstr ""
-#: builders/html/__init__.py:383
-#, python-format
-msgid ""
-"template %s has been changed since the previous build, all docs will be "
-"rebuilt"
+#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:947
+msgid "Keyword Arguments"
msgstr ""
-#: builders/html/__init__.py:507
-msgid "index"
-msgstr "ইনডেক্স"
-
-#: builders/html/__init__.py:560
-#, python-format
-msgid "Logo of %s"
+#: ext/napoleon/docstring.py:962
+msgid "Notes"
msgstr ""
-#: builders/html/__init__.py:589
-msgid "next"
-msgstr "পরবর্তী"
+#: ext/napoleon/docstring.py:971
+msgid "Other Parameters"
+msgstr ""
-#: builders/html/__init__.py:598
-msgid "previous"
-msgstr "পূর্ববর্তী"
+#: ext/napoleon/docstring.py:1007
+msgid "Receives"
+msgstr ""
-#: builders/html/__init__.py:696
-msgid "generating indices"
+#: ext/napoleon/docstring.py:1011
+msgid "References"
msgstr ""
-#: builders/html/__init__.py:711
-msgid "writing additional pages"
+#: ext/napoleon/docstring.py:1043
+msgid "Warns"
msgstr ""
-#: builders/html/__init__.py:794
-#, python-format
-msgid "cannot copy image file '%s': %s"
+#: ext/napoleon/docstring.py:1047
+msgid "Yields"
msgstr ""
-#: builders/html/__init__.py:806
-msgid "copying downloadable files... "
+#: ext/autodoc/_generate.py:151
+#: ext/autodoc/_legacy_class_based/_documenters.py:859
+#, python-format
+msgid "A mocked object is detected: %r"
msgstr ""
-#: builders/html/__init__.py:818
+#: ext/autodoc/_generate.py:334 ext/autodoc/_generate.py:348
+#: ext/autodoc/_generate.py:370 ext/autodoc/_generate.py:386
+#: ext/autodoc/_legacy_class_based/_documenters.py:1860
+#: ext/autodoc/_legacy_class_based/_documenters.py:1889
+#: ext/autodoc/_legacy_class_based/_documenters.py:1983
#, python-format
-msgid "cannot copy downloadable file %r: %s"
+msgid "alias of %s"
msgstr ""
-#: builders/html/__init__.py:864
+#: ext/autodoc/_legacy_class_based/_documenters.py:1745
+#: ext/autodoc/_renderer.py:88
#, python-format
-msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
+msgid "Bases: %s"
msgstr ""
-#: builders/html/__init__.py:882
+#: ext/autodoc/_directive_options.py:226
+#: ext/autodoc/_legacy_class_based/_directive_options.py:47
#, python-format
-msgid "Failed to copy a file in html_static_file: %s: %r"
+msgid "invalid value for member-order option: %s"
msgstr ""
-#: builders/html/__init__.py:917
-msgid "copying static files"
+#: ext/autodoc/_directive_options.py:233
+#: ext/autodoc/_legacy_class_based/_directive_options.py:55
+#, python-format
+msgid "invalid value for class-doc-from option: %s"
msgstr ""
-#: builders/html/__init__.py:934
+#: ext/autodoc/_legacy_class_based/_documenters.py:239
+#: ext/autodoc/_names.py:45
#, python-format
-msgid "cannot copy static file %r"
+msgid "invalid signature for auto%s (%r)"
msgstr ""
-#: builders/html/__init__.py:939
-msgid "copying extra files"
+#: ext/autodoc/_legacy_class_based/_documenters.py:800
+#: ext/autodoc/_names.py:53 ext/autodoc/_names.py:101
+#, python-format
+msgid ""
+"don't know which module to import for autodocumenting %r (try placing a "
+"\"module\" or \"currentmodule\" directive in the document, or giving an "
+"explicit module name)"
msgstr ""
-#: builders/html/__init__.py:949
+#: ext/autodoc/_names.py:89
#, python-format
-msgid "cannot copy extra file %r"
+msgid "signature arguments given for automodule: '%s'"
msgstr ""
-#: builders/html/__init__.py:955
+#: ext/autodoc/_names.py:93
#, python-format
-msgid "Failed to write build info file: %r"
+msgid "return annotation given for automodule: '%s'"
msgstr ""
-#: builders/html/__init__.py:1005
-msgid ""
-"search index couldn't be loaded, but not all documents will be built: the "
-"index will be incomplete."
+#: ext/autodoc/_legacy_class_based/_documenters.py:956
+#: ext/autodoc/_names.py:134
+msgid "\"::\" in automodule name doesn't make sense"
msgstr ""
-#: builders/html/__init__.py:1052
+#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:984
#, python-format
-msgid "page %s matches two patterns in html_sidebars: %r and %r"
+msgid "Failed to remove %s: %s"
msgstr ""
-#: builders/html/__init__.py:1216
+#: ext/apidoc/_generate.py:69
#, python-format
+msgid "Would create file %s."
+msgstr ""
+
+#: ext/apidoc/_cli.py:28
msgid ""
-"a Unicode error occurred when rendering the page %s. Please make sure all "
-"config values that contain non-ASCII content are Unicode strings."
+"\n"
+"Look recursively in for Python modules and packages and create\n"
+"one reST file with automodule directives per package in the .\n"
+"\n"
+"The s can be file and/or directory patterns that will be\n"
+"excluded from generation.\n"
+"\n"
+"Note: By default this script will not overwrite already created files."
msgstr ""
-#: builders/html/__init__.py:1224
-#, python-format
+#: ext/apidoc/_cli.py:45
+msgid "path to module to document"
+msgstr ""
+
+#: ext/apidoc/_cli.py:50
msgid ""
-"An error happened in rendering the page %s.\n"
-"Reason: %r"
+"fnmatch-style file and/or directory patterns to exclude from generation"
msgstr ""
-#: builders/html/__init__.py:1257
-msgid "dumping object inventory"
+#: ext/apidoc/_cli.py:60
+msgid "directory to place all output"
msgstr ""
-#: builders/html/__init__.py:1265
-#, python-format
-msgid "dumping search index in %s"
+#: ext/apidoc/_cli.py:75
+msgid "maximum depth of submodules to show in the TOC (default: 4)"
msgstr ""
-#: builders/html/__init__.py:1308
-#, python-format
-msgid "invalid js_file: %r, ignored"
+#: ext/apidoc/_cli.py:82
+msgid "overwrite existing files"
msgstr ""
-#: builders/html/__init__.py:1342
-msgid "Many math_renderers are registered. But no math_renderer is selected."
+#: ext/apidoc/_cli.py:91
+msgid ""
+"follow symbolic links. Powerful when combined with "
+"collective.recipe.omelette."
msgstr ""
-#: builders/html/__init__.py:1346
-#, python-format
-msgid "Unknown math_renderer %r is given."
+#: ext/apidoc/_cli.py:99
+msgid "run the script without creating files"
msgstr ""
-#: builders/html/__init__.py:1360
-#, python-format
-msgid "html_extra_path entry %r is placed inside outdir"
+#: ext/apidoc/_cli.py:106
+msgid "put documentation for each module on its own page"
msgstr ""
-#: builders/html/__init__.py:1365
-#, python-format
-msgid "html_extra_path entry %r does not exist"
+#: ext/apidoc/_cli.py:113
+msgid "include \"_private\" modules"
msgstr ""
-#: builders/html/__init__.py:1380
-#, python-format
-msgid "html_static_path entry %r is placed inside outdir"
+#: ext/apidoc/_cli.py:120
+msgid "filename of table of contents (default: modules)"
msgstr ""
-#: builders/html/__init__.py:1385
-#, python-format
-msgid "html_static_path entry %r does not exist"
+#: ext/apidoc/_cli.py:127
+msgid "don't create a table of contents file"
msgstr ""
-#: builders/html/__init__.py:1396 builders/latex/__init__.py:504
-#, python-format
-msgid "logo file %r does not exist"
+#: ext/apidoc/_cli.py:135
+msgid ""
+"don't create headings for the module/package packages (e.g. when the "
+"docstrings already contain them)"
msgstr ""
-#: builders/html/__init__.py:1407
-#, python-format
-msgid "favicon file %r does not exist"
+#: ext/apidoc/_cli.py:145
+msgid "put module documentation before submodule documentation"
msgstr ""
-#: builders/html/__init__.py:1420
-#, python-format
+#: ext/apidoc/_cli.py:152
msgid ""
-"Values in 'html_sidebars' must be a list of strings. At least one pattern "
-"has a string value: %s. Change to `html_sidebars = %r`."
+"interpret module paths according to PEP-0420 implicit namespaces "
+"specification"
msgstr ""
-#: builders/html/__init__.py:1433
+#: ext/apidoc/_cli.py:160
msgid ""
-"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
-"configuration options)"
+"Comma-separated list of options to pass to automodule directive (or use "
+"SPHINX_APIDOC_OPTIONS)."
msgstr ""
-#: builders/html/__init__.py:1449
-#, python-format
-msgid "%s %s documentation"
+#: ext/apidoc/_cli.py:170
+msgid "file suffix (default: rst)"
msgstr ""
-#: builders/html/_build_info.py:32
-msgid "failed to read broken build info file (unknown version)"
+#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:950
+msgid "Remove existing files in the output directory that were not generated"
msgstr ""
-#: builders/html/_build_info.py:36
-msgid "failed to read broken build info file (missing config entry)"
+#: ext/apidoc/_cli.py:186
+msgid "generate a full project with sphinx-quickstart"
msgstr ""
-#: builders/html/_build_info.py:39
-msgid "failed to read broken build info file (missing tags entry)"
+#: ext/apidoc/_cli.py:193
+msgid "append module_path to sys.path, used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:118
-#, python-format
-msgid "The LaTeX files are in %(outdir)s."
+#: ext/apidoc/_cli.py:200
+msgid "project name (default: root module name)"
msgstr ""
-#: builders/latex/__init__.py:121
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through (pdf)latex\n"
-"(use `make latexpdf' here to do that automatically)."
+#: ext/apidoc/_cli.py:207
+msgid "project author(s), used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:159
-msgid "no \"latex_documents\" config value found; no documents will be written"
+#: ext/apidoc/_cli.py:214
+msgid "project version, used when --full is given"
+msgstr ""
+
+#: ext/apidoc/_cli.py:222
+msgid "project release, used when --full is given, defaults to --doc-version"
+msgstr ""
+
+#: ext/apidoc/_cli.py:226
+msgid "extension options"
+msgstr ""
+
+#: ext/apidoc/_cli.py:232
+msgid "enable arbitrary extensions, used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:170
+#: ext/apidoc/_cli.py:240
#, python-format
-msgid "\"latex_documents\" config value references unknown document %s"
+msgid "enable %s extension, used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:209 templates/latex/latex.tex.jinja:91
-msgid "Release"
-msgstr "রিলিজ"
-
-#: builders/latex/__init__.py:428
-msgid "copying TeX support files"
+#: ext/apidoc/_cli.py:291
+#, python-format
+msgid "%s is not a directory."
msgstr ""
-#: builders/latex/__init__.py:465
-msgid "copying additional files"
+#: ext/apidoc/_extension.py:50
+msgid "Running apidoc"
msgstr ""
-#: builders/latex/__init__.py:536
+#: ext/apidoc/_extension.py:102
#, python-format
-msgid "Unknown configure key: latex_elements[%r], ignored."
+msgid "apidoc_modules item %i must be a dict"
msgstr ""
-#: builders/latex/__init__.py:544
+#: ext/apidoc/_extension.py:110
#, python-format
-msgid "Unknown theme option: latex_theme_options[%r], ignored."
+msgid "apidoc_modules item %i must have a 'path' key"
msgstr ""
-#: builders/latex/transforms.py:120
-msgid "Failed to get a docname!"
+#: ext/apidoc/_extension.py:115
+#, python-format
+msgid "apidoc_modules item %i 'path' must be a string"
msgstr ""
-#: builders/latex/transforms.py:121
+#: ext/apidoc/_extension.py:121
#, python-format
-msgid "Failed to get a docname for source %r!"
+msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
msgstr ""
-#: builders/latex/transforms.py:487
+#: ext/apidoc/_extension.py:133
#, python-format
-msgid "No footnote was found for given reference node %r"
+msgid "apidoc_modules item %i must have a 'destination' key"
msgstr ""
-#: builders/latex/theming.py:88
+#: ext/apidoc/_extension.py:140
#, python-format
-msgid "%r doesn't have \"theme\" setting"
+msgid "apidoc_modules item %i 'destination' must be a string"
msgstr ""
-#: builders/latex/theming.py:91
+#: ext/apidoc/_extension.py:147
#, python-format
-msgid "%r doesn't have \"%s\" setting"
+msgid "apidoc_modules item %i 'destination' should be a relative path"
msgstr ""
-#: templates/latex/longtable.tex.jinja:52
-#: templates/latex/sphinxmessages.sty.jinja:8
-msgid "continued from previous page"
-msgstr "পূর্ববর্তী পাতা হতে চলমান"
-
-#: templates/latex/longtable.tex.jinja:63
-#: templates/latex/sphinxmessages.sty.jinja:9
-msgid "continues on next page"
+#: ext/apidoc/_extension.py:157
+#, python-format
+msgid "apidoc_modules item %i cannot create destination directory: %s"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:10
-msgid "Non-alphabetical"
+#: ext/apidoc/_extension.py:178
+#, python-format
+msgid "apidoc_modules item %i '%s' must be an int"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:12
-msgid "Numbers"
+#: ext/apidoc/_extension.py:192
+#, python-format
+msgid "apidoc_modules item %i '%s' must be a boolean"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:13
-msgid "page"
+#: ext/apidoc/_extension.py:210
+#, python-format
+msgid "apidoc_modules item %i has unexpected keys: %s"
msgstr ""
-#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:940
-msgid "Keyword Arguments"
+#: ext/apidoc/_extension.py:248
+#, python-format
+msgid "apidoc_modules item %i '%s' must be a sequence"
msgstr ""
-#: ext/napoleon/docstring.py:176
+#: ext/apidoc/_extension.py:257
#, python-format
-msgid "invalid value set (missing closing brace): %s"
+msgid "apidoc_modules item %i '%s' must contain strings"
msgstr ""
-#: ext/napoleon/docstring.py:183
+#: ext/autosummary/generate.py:212 ext/autosummary/generate.py:425
#, python-format
-msgid "invalid value set (missing opening brace): %s"
+msgid ""
+"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
+"%s"
msgstr ""
-#: ext/napoleon/docstring.py:190
+#: ext/autosummary/generate.py:630
#, python-format
-msgid "malformed string literal (missing closing quote): %s"
+msgid "[autosummary] generating autosummary for: %s"
msgstr ""
-#: ext/napoleon/docstring.py:197
+#: ext/autosummary/generate.py:634
#, python-format
-msgid "malformed string literal (missing opening quote): %s"
+msgid "[autosummary] writing to %s"
msgstr ""
-#: ext/napoleon/docstring.py:895
-msgid "Example"
+#: ext/autosummary/generate.py:679
+#, python-format
+msgid ""
+"[autosummary] failed to import %s.\n"
+"Possible hints:\n"
+"%s"
msgstr ""
-#: ext/napoleon/docstring.py:896
-msgid "Examples"
+#: ext/autosummary/generate.py:877
+msgid ""
+"\n"
+"Generate ReStructuredText using autosummary directives.\n"
+"\n"
+"sphinx-autogen is a frontend to sphinx.ext.autosummary.generate. It generates\n"
+"the reStructuredText files from the autosummary directives contained in the\n"
+"given input files.\n"
+"\n"
+"The format of the autosummary directive is documented in the\n"
+"``sphinx.ext.autosummary`` Python module and can be read using::\n"
+"\n"
+" pydoc sphinx.ext.autosummary\n"
msgstr ""
-#: ext/napoleon/docstring.py:956
-msgid "Notes"
+#: ext/autosummary/generate.py:899
+msgid "source files to generate rST files for"
msgstr ""
-#: ext/napoleon/docstring.py:965
-msgid "Other Parameters"
+#: ext/autosummary/generate.py:907
+msgid "directory to place all output in"
msgstr ""
-#: ext/napoleon/docstring.py:1001
-msgid "Receives"
+#: ext/autosummary/generate.py:915
+#, python-format
+msgid "default suffix for files (default: %(default)s)"
msgstr ""
-#: ext/napoleon/docstring.py:1005
-msgid "References"
+#: ext/autosummary/generate.py:923
+#, python-format
+msgid "custom template directory (default: %(default)s)"
msgstr ""
-#: ext/napoleon/docstring.py:1037
-msgid "Warns"
+#: ext/autosummary/generate.py:931
+#, python-format
+msgid "document imported members (default: %(default)s)"
msgstr ""
-#: ext/napoleon/docstring.py:1041
-msgid "Yields"
+#: ext/autosummary/generate.py:940
+#, python-format
+msgid ""
+"document exactly the members in module __all__ attribute. (default: "
+"%(default)s)"
msgstr ""
-#: ext/autosummary/__init__.py:284
+#: ext/autosummary/__init__.py:235
#, python-format
msgid "autosummary references excluded document %r. Ignored."
msgstr ""
-#: ext/autosummary/__init__.py:288
+#: ext/autosummary/__init__.py:239
#, python-format
msgid ""
"autosummary: stub file not found %r. Check your autosummary_generate "
"setting."
msgstr ""
-#: ext/autosummary/__init__.py:309
+#: ext/autosummary/__init__.py:260
msgid "A captioned autosummary requires :toctree: option. ignored."
msgstr ""
-#: ext/autosummary/__init__.py:384
+#: ext/autosummary/__init__.py:329
#, python-format
msgid ""
"autosummary: failed to import %s.\n"
@@ -3668,548 +3721,585 @@ msgid ""
"%s"
msgstr ""
-#: ext/autosummary/__init__.py:404
-#, python-format
-msgid "failed to parse name %s"
-msgstr ""
-
-#: ext/autosummary/__init__.py:412
+#: ext/autosummary/__init__.py:358
#, python-format
msgid "failed to import object %s"
msgstr ""
-#: ext/autosummary/__init__.py:730
+#: ext/autosummary/__init__.py:652
#, python-format
msgid ""
"Summarised items should not include the current module. Replace %r with %r."
msgstr ""
-#: ext/autosummary/__init__.py:927
+#: ext/autosummary/__init__.py:850
#, python-format
msgid "autosummary_generate: file not found: %s"
msgstr ""
-#: ext/autosummary/__init__.py:937
+#: ext/autosummary/__init__.py:860
msgid ""
"autosummary generates .rst files internally. But your source_suffix does not"
" contain .rst. Skipped."
msgstr ""
-#: ext/autosummary/generate.py:232 ext/autosummary/generate.py:450
+#: ext/intersphinx/_load.py:61
#, python-format
msgid ""
-"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
-"%s"
+"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
+"identifiers must be non-empty strings."
msgstr ""
-#: ext/autosummary/generate.py:588
+#: ext/intersphinx/_load.py:72
#, python-format
-msgid "[autosummary] generating autosummary for: %s"
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
+"or list."
msgstr ""
-#: ext/autosummary/generate.py:592
+#: ext/intersphinx/_load.py:83
#, python-format
-msgid "[autosummary] writing to %s"
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
+" inventory locations) pair."
msgstr ""
-#: ext/autosummary/generate.py:637
+#: ext/intersphinx/_load.py:94
#, python-format
msgid ""
-"[autosummary] failed to import %s.\n"
-"Possible hints:\n"
-"%s"
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique non-empty strings."
msgstr ""
-#: ext/autosummary/generate.py:836
+#: ext/intersphinx/_load.py:103
+#, python-format
msgid ""
-"\n"
-"Generate ReStructuredText using autosummary directives.\n"
-"\n"
-"sphinx-autogen is a frontend to sphinx.ext.autosummary.generate. It generates\n"
-"the reStructuredText files from the autosummary directives contained in the\n"
-"given input files.\n"
-"\n"
-"The format of the autosummary directive is documented in the\n"
-"``sphinx.ext.autosummary`` Python module and can be read using::\n"
-"\n"
-" pydoc sphinx.ext.autosummary\n"
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique (other instance in intersphinx_mapping[%r])."
msgstr ""
-#: ext/autosummary/generate.py:858
-msgid "source files to generate rST files for"
+#: ext/intersphinx/_load.py:122
+#, python-format
+msgid ""
+"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
+"Inventory locations must be non-empty strings or None."
msgstr ""
-#: ext/autosummary/generate.py:866
-msgid "directory to place all output in"
+#: ext/intersphinx/_load.py:132
+msgid "Invalid `intersphinx_mapping` configuration (1 error)."
msgstr ""
-#: ext/autosummary/generate.py:874
+#: ext/intersphinx/_load.py:135
#, python-format
-msgid "default suffix for files (default: %(default)s)"
+msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
msgstr ""
-#: ext/autosummary/generate.py:882
-#, python-format
-msgid "custom template directory (default: %(default)s)"
+#: ext/intersphinx/_load.py:158
+msgid "An invalid intersphinx_mapping entry was added after normalisation."
msgstr ""
-#: ext/autosummary/generate.py:890
+#: ext/intersphinx/_load.py:297
#, python-format
-msgid "document imported members (default: %(default)s)"
+msgid "loading intersphinx inventory '%s' from %s ..."
msgstr ""
-#: ext/autosummary/generate.py:899
+#: ext/intersphinx/_load.py:324
+msgid ""
+"encountered some issues with some of the inventories, but they had working "
+"alternatives:"
+msgstr ""
+
+#: ext/intersphinx/_load.py:332
#, python-format
msgid ""
-"document exactly the members in module __all__ attribute. (default: "
-"%(default)s)"
+"failed to reach any of the inventories with the following issues:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:909
-msgid "Remove existing files in the output directory that were not generated"
+#: ext/intersphinx/_load.py:411
+#, python-format
+msgid "intersphinx inventory has moved: %s -> %s"
msgstr ""
-#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:944
+#: ext/intersphinx/_resolve.py:53
#, python-format
-msgid "Failed to remove %s: %s"
+msgid "(in %s %s)"
msgstr ""
-#: ext/apidoc/_cli.py:28
-msgid ""
-"\n"
-"Look recursively in for Python modules and packages and create\n"
-"one reST file with automodule directives per package in the .\n"
-"\n"
-"The s can be file and/or directory patterns that will be\n"
-"excluded from generation.\n"
-"\n"
-"Note: By default this script will not overwrite already created files."
+#: ext/intersphinx/_resolve.py:55
+#, python-format
+msgid "(in %s)"
msgstr ""
-#: ext/apidoc/_cli.py:45
-msgid "path to module to document"
+#: ext/intersphinx/_resolve.py:112
+#, python-format
+msgid "inventory '%s': duplicate matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:50
-msgid ""
-"fnmatch-style file and/or directory patterns to exclude from generation"
+#: ext/intersphinx/_resolve.py:122
+#, python-format
+msgid "inventory '%s': multiple matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:60
-msgid "directory to place all output"
+#: ext/intersphinx/_resolve.py:387
+#, python-format
+msgid "inventory for external cross-reference not found: %r"
msgstr ""
-#: ext/apidoc/_cli.py:75
-msgid "maximum depth of submodules to show in the TOC (default: 4)"
+#: ext/intersphinx/_resolve.py:396
+#, python-format
+msgid "invalid external cross-reference suffix: %r"
msgstr ""
-#: ext/apidoc/_cli.py:82
-msgid "overwrite existing files"
+#: ext/intersphinx/_resolve.py:407
+#, python-format
+msgid "domain for external cross-reference not found: %r"
msgstr ""
-#: ext/apidoc/_cli.py:91
-msgid ""
-"follow symbolic links. Powerful when combined with "
-"collective.recipe.omelette."
+#: ext/intersphinx/_resolve.py:561
+#, python-format
+msgid "external %s:%s reference target not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:99
-msgid "run the script without creating files"
+#: ext/autodoc/_dynamic/_loader.py:144
+#: ext/autodoc/_legacy_class_based/_documenters.py:882
+#, python-format
+msgid "error while formatting signature for %s: %s"
msgstr ""
-#: ext/apidoc/_cli.py:106
-msgid "put documentation for each module on its own page"
+#: ext/autodoc/_dynamic/_loader.py:193
+#, python-format
+msgid "Ignoring invalid __all__ in module %s: %r"
msgstr ""
-#: ext/apidoc/_cli.py:113
-msgid "include \"_private\" modules"
+#: ext/autodoc/_dynamic/_loader.py:332 ext/autodoc/_dynamic/_signatures.py:496
+#: ext/autodoc/_dynamic/_signatures.py:612
+#: ext/autodoc/_legacy_class_based/_documenters.py:1284
+#: ext/autodoc/_legacy_class_based/_documenters.py:1372
+#: ext/autodoc/_legacy_class_based/_documenters.py:2906
+#, python-format
+msgid "Failed to get a function signature for %s: %s"
msgstr ""
-#: ext/apidoc/_cli.py:120
-msgid "filename of table of contents (default: modules)"
+#: ext/autodoc/_dynamic/_type_comments.py:120
+#, python-format
+msgid "Failed to update signature for %r: parameter not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:127
-msgid "don't create a table of contents file"
+#: ext/autodoc/_dynamic/_type_comments.py:123
+#, python-format
+msgid "Failed to parse type_comment for %r: %s"
msgstr ""
-#: ext/apidoc/_cli.py:135
-msgid ""
-"don't create headings for the module/package packages (e.g. when the "
-"docstrings already contain them)"
+#: ext/autodoc/_dynamic/_docstrings.py:268
+#: ext/autodoc/_legacy_class_based/_documenters.py:2499
+#, python-format
+msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
-#: ext/apidoc/_cli.py:145
-msgid "put module documentation before submodule documentation"
+#: ext/autodoc/_dynamic/_signatures.py:102
+#: ext/autodoc/_legacy_class_based/_documenters.py:358
+#, python-format
+msgid "error while formatting arguments for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_signatures.py:494
+#: ext/autodoc/_legacy_class_based/_documenters.py:1607
+#, python-format
+msgid "Failed to get a constructor signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_signatures.py:498
+#: ext/autodoc/_legacy_class_based/_documenters.py:2235
+#: ext/autodoc/_legacy_class_based/_documenters.py:2355
+#, python-format
+msgid "Failed to get a method signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_signatures.py:500
+#, python-format
+msgid "Failed to get a signature for %s: %s"
msgstr ""
-#: ext/apidoc/_cli.py:152
-msgid ""
-"interpret module paths according to PEP-0420 implicit namespaces "
-"specification"
+#: ext/autodoc/_dynamic/_preserve_defaults.py:156
+#, python-format
+msgid "Failed to parse a default argument value for %r: %s"
msgstr ""
-#: ext/apidoc/_cli.py:160
+#: ext/autodoc/_dynamic/_member_finder.py:420
+#, python-format
msgid ""
-"Comma-separated list of options to pass to automodule directive (or use "
-"SPHINX_APIDOC_OPTIONS)."
+"attribute %s is listed in :members: but is missing as it was not found in "
+"object %r"
msgstr ""
-#: ext/apidoc/_cli.py:170
-msgid "file suffix (default: rst)"
+#: ext/autodoc/_dynamic/_member_finder.py:473
+#: ext/autodoc/_legacy_class_based/_documenters.py:677
+#, python-format
+msgid ""
+"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:186
-msgid "generate a full project with sphinx-quickstart"
+#: ext/autodoc/_legacy_class_based/_documenters.py:964
+#, python-format
+msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
-#: ext/apidoc/_cli.py:193
-msgid "append module_path to sys.path, used when --full is given"
+#: ext/autodoc/_legacy_class_based/_documenters.py:980
+#, python-format
+msgid ""
+"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
+"__all__"
msgstr ""
-#: ext/apidoc/_cli.py:200
-msgid "project name (default: root module name)"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1057
+#, python-format
+msgid ""
+"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
-#: ext/apidoc/_cli.py:207
-msgid "project author(s), used when --full is given"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1764
+#, python-format
+msgid "missing attribute %s in object %s"
msgstr ""
-#: ext/apidoc/_cli.py:214
-msgid "project version, used when --full is given"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1876
+#, python-format
+msgid "alias of TypeVar(%s)"
msgstr ""
-#: ext/apidoc/_cli.py:222
-msgid "project release, used when --full is given, defaults to --doc-version"
+#: builders/html/_build_info.py:32
+msgid "failed to read broken build info file (unknown version)"
msgstr ""
-#: ext/apidoc/_cli.py:226
-msgid "extension options"
+#: builders/html/_build_info.py:36
+msgid "failed to read broken build info file (missing config entry)"
msgstr ""
-#: ext/apidoc/_cli.py:232
-msgid "enable arbitrary extensions, used when --full is given"
+#: builders/html/_build_info.py:39
+msgid "failed to read broken build info file (missing tags entry)"
msgstr ""
-#: ext/apidoc/_cli.py:240
+#: builders/html/__init__.py:114
#, python-format
-msgid "enable %s extension, used when --full is given"
+msgid "The HTML pages are in %(outdir)s."
msgstr ""
-#: ext/apidoc/_cli.py:291
+#: builders/html/__init__.py:337
#, python-format
-msgid "%s is not a directory."
+msgid "Failed to read build info file: %r"
msgstr ""
-#: ext/apidoc/_extension.py:50
-msgid "Running apidoc"
+#: builders/html/__init__.py:353
+msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
msgstr ""
-#: ext/apidoc/_extension.py:102
-#, python-format
-msgid "apidoc_modules item %i must be a dict"
+#: builders/html/__init__.py:355
+msgid "building [html]: "
msgstr ""
-#: ext/apidoc/_extension.py:110
+#: builders/html/__init__.py:372
#, python-format
-msgid "apidoc_modules item %i must have a 'path' key"
+msgid ""
+"template %s has been changed since the previous build, all docs will be "
+"rebuilt"
msgstr ""
-#: ext/apidoc/_extension.py:115
+#: builders/html/__init__.py:496
+msgid "index"
+msgstr "ইনডেক্স"
+
+#: builders/html/__init__.py:549
#, python-format
-msgid "apidoc_modules item %i 'path' must be a string"
+msgid "Logo of %s"
msgstr ""
-#: ext/apidoc/_extension.py:121
-#, python-format
-msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
+#: builders/html/__init__.py:578
+msgid "next"
+msgstr "পরবর্তী"
+
+#: builders/html/__init__.py:587
+msgid "previous"
+msgstr "পূর্ববর্তী"
+
+#: builders/html/__init__.py:685
+msgid "generating indices"
msgstr ""
-#: ext/apidoc/_extension.py:133
-#, python-format
-msgid "apidoc_modules item %i must have a 'destination' key"
+#: builders/html/__init__.py:700
+msgid "writing additional pages"
msgstr ""
-#: ext/apidoc/_extension.py:140
+#: builders/html/__init__.py:783
#, python-format
-msgid "apidoc_modules item %i 'destination' must be a string"
+msgid "cannot copy image file '%s': %s"
msgstr ""
-#: ext/apidoc/_extension.py:147
-#, python-format
-msgid "apidoc_modules item %i 'destination' should be a relative path"
+#: builders/html/__init__.py:795
+msgid "copying downloadable files... "
msgstr ""
-#: ext/apidoc/_extension.py:157
+#: builders/html/__init__.py:807
#, python-format
-msgid "apidoc_modules item %i cannot create destination directory: %s"
+msgid "cannot copy downloadable file %r: %s"
msgstr ""
-#: ext/apidoc/_extension.py:178
+#: builders/html/__init__.py:853
#, python-format
-msgid "apidoc_modules item %i '%s' must be an int"
+msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
msgstr ""
-#: ext/apidoc/_extension.py:192
+#: builders/html/__init__.py:871
#, python-format
-msgid "apidoc_modules item %i '%s' must be a boolean"
+msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr ""
-#: ext/apidoc/_extension.py:210
-#, python-format
-msgid "apidoc_modules item %i has unexpected keys: %s"
+#: builders/html/__init__.py:906
+msgid "copying static files"
msgstr ""
-#: ext/apidoc/_extension.py:247
+#: builders/html/__init__.py:923
#, python-format
-msgid "apidoc_modules item %i '%s' must be a sequence"
+msgid "cannot copy static file %r"
msgstr ""
-#: ext/apidoc/_extension.py:256
-#, python-format
-msgid "apidoc_modules item %i '%s' must contain strings"
+#: builders/html/__init__.py:928
+msgid "copying extra files"
msgstr ""
-#: ext/apidoc/_generate.py:69
+#: builders/html/__init__.py:938
#, python-format
-msgid "Would create file %s."
+msgid "cannot copy extra file %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:49
+#: builders/html/__init__.py:944
#, python-format
-msgid "(in %s v%s)"
+msgid "Failed to write build info file: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:51
-#, python-format
-msgid "(in %s)"
+#: builders/html/__init__.py:994
+msgid ""
+"search index couldn't be loaded, but not all documents will be built: the "
+"index will be incomplete."
msgstr ""
-#: ext/intersphinx/_resolve.py:108
+#: builders/html/__init__.py:1038
#, python-format
-msgid "inventory '%s': duplicate matches found for %s:%s"
+msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:118
+#: builders/html/__init__.py:1204
#, python-format
-msgid "inventory '%s': multiple matches found for %s:%s"
+msgid ""
+"a Unicode error occurred when rendering the page %s. Please make sure all "
+"config values that contain non-ASCII content are Unicode strings."
msgstr ""
-#: ext/intersphinx/_resolve.py:383
+#: builders/html/__init__.py:1217
#, python-format
-msgid "inventory for external cross-reference not found: %r"
+msgid ""
+"The '%s' theme does not support this version of Sphinx, because it uses the "
+"'style' field in HTML templates, which was was deprecated in Sphinx 5.1 and"
+" removed in Sphinx 7.0. The theme must be updated to use the 'styles' field "
+"instead. See https://www.sphinx-"
+"doc.org/en/master/development/html_themes/templating.html#styles"
msgstr ""
-#: ext/intersphinx/_resolve.py:392
+#: builders/html/__init__.py:1225
#, python-format
-msgid "invalid external cross-reference suffix: %r"
+msgid ""
+"An error happened in rendering the page %s.\n"
+"Reason: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:403
-#, python-format
-msgid "domain for external cross-reference not found: %r"
+#: builders/html/__init__.py:1258
+msgid "dumping object inventory"
msgstr ""
-#: ext/intersphinx/_resolve.py:619
+#: builders/html/__init__.py:1266
#, python-format
-msgid "external %s:%s reference target not found: %s"
+msgid "dumping search index in %s"
msgstr ""
-#: ext/intersphinx/_load.py:60
+#: builders/html/__init__.py:1313
#, python-format
-msgid ""
-"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
-"identifiers must be non-empty strings."
+msgid "invalid js_file: %r, ignored"
msgstr ""
-#: ext/intersphinx/_load.py:71
-#, python-format
-msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
-"or list."
+#: builders/html/__init__.py:1347
+msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr ""
-#: ext/intersphinx/_load.py:82
+#: builders/html/__init__.py:1351
#, python-format
-msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
-" inventory locations) pair."
+msgid "Unknown math_renderer %r is given."
msgstr ""
-#: ext/intersphinx/_load.py:93
+#: builders/html/__init__.py:1365
#, python-format
-msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique non-empty strings."
+msgid "html_extra_path entry %r is placed inside outdir"
msgstr ""
-#: ext/intersphinx/_load.py:102
+#: builders/html/__init__.py:1370
#, python-format
-msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique (other instance in intersphinx_mapping[%r])."
+msgid "html_extra_path entry %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:121
+#: builders/html/__init__.py:1385
#, python-format
-msgid ""
-"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
-"Inventory locations must be non-empty strings or None."
+msgid "html_static_path entry %r is placed inside outdir"
msgstr ""
-#: ext/intersphinx/_load.py:131
-msgid "Invalid `intersphinx_mapping` configuration (1 error)."
+#: builders/html/__init__.py:1390
+#, python-format
+msgid "html_static_path entry %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:134
+#: builders/html/__init__.py:1401 builders/latex/__init__.py:497
#, python-format
-msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
+msgid "logo file %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:157
-msgid "An invalid intersphinx_mapping entry was added after normalisation."
+#: builders/html/__init__.py:1412
+#, python-format
+msgid "favicon file %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:261
+#: builders/html/__init__.py:1425
#, python-format
-msgid "loading intersphinx inventory '%s' from %s ..."
+msgid ""
+"Values in 'html_sidebars' must be a list of strings. At least one pattern "
+"has a string value: %s. Change to `html_sidebars = %r`."
msgstr ""
-#: ext/intersphinx/_load.py:287
+#: builders/html/__init__.py:1438
msgid ""
-"encountered some issues with some of the inventories, but they had working "
-"alternatives:"
+"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
+"configuration options)"
msgstr ""
-#: ext/intersphinx/_load.py:297
-msgid "failed to reach any of the inventories with the following issues:"
+#: builders/html/__init__.py:1454
+#, python-format
+msgid "%s %s documentation"
msgstr ""
-#: ext/intersphinx/_load.py:361
+#: builders/latex/theming.py:87
#, python-format
-msgid "intersphinx inventory has moved: %s -> %s"
+msgid "%r doesn't have \"theme\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:150
+#: builders/latex/theming.py:90
#, python-format
-msgid "invalid value for member-order option: %s"
+msgid "%r doesn't have \"%s\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:158
-#, python-format
-msgid "invalid value for class-doc-from option: %s"
+#: builders/latex/transforms.py:120
+msgid "Failed to get a docname!"
msgstr ""
-#: ext/autodoc/__init__.py:460
+#: builders/latex/transforms.py:121
#, python-format
-msgid "invalid signature for auto%s (%r)"
+msgid "Failed to get a docname for source %r!"
msgstr ""
-#: ext/autodoc/__init__.py:579
+#: builders/latex/transforms.py:487
#, python-format
-msgid "error while formatting arguments for %s: %s"
+msgid "No footnote was found for given reference node %r"
msgstr ""
-#: ext/autodoc/__init__.py:898
+#: builders/latex/__init__.py:115
#, python-format
-msgid ""
-"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
-"%s"
+msgid "The LaTeX files are in %(outdir)s."
msgstr ""
-#: ext/autodoc/__init__.py:1021
-#, python-format
+#: builders/latex/__init__.py:118
msgid ""
-"don't know which module to import for autodocumenting %r (try placing a "
-"\"module\" or \"currentmodule\" directive in the document, or giving an "
-"explicit module name)"
+"\n"
+"Run 'make' in that directory to run these through (pdf)latex\n"
+"(use `make latexpdf' here to do that automatically)."
msgstr ""
-#: ext/autodoc/__init__.py:1080
-#, python-format
-msgid "A mocked object is detected: %r"
+#: builders/latex/__init__.py:156
+msgid "no \"latex_documents\" config value found; no documents will be written"
msgstr ""
-#: ext/autodoc/__init__.py:1103
+#: builders/latex/__init__.py:167
#, python-format
-msgid "error while formatting signature for %s: %s"
+msgid "\"latex_documents\" config value references unknown document %s"
msgstr ""
-#: ext/autodoc/__init__.py:1177
-msgid "\"::\" in automodule name doesn't make sense"
+#: builders/latex/__init__.py:421
+msgid "copying TeX support files"
msgstr ""
-#: ext/autodoc/__init__.py:1185
-#, python-format
-msgid "signature arguments or return annotation given for automodule %s"
+#: builders/latex/__init__.py:458
+msgid "copying additional files"
msgstr ""
-#: ext/autodoc/__init__.py:1201
+#: builders/latex/__init__.py:529
#, python-format
-msgid ""
-"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
-"__all__"
+msgid "Unknown configure key: latex_elements[%r], ignored."
msgstr ""
-#: ext/autodoc/__init__.py:1278
+#: builders/latex/__init__.py:537
#, python-format
-msgid ""
-"missing attribute mentioned in :members: option: module %s, attribute %s"
+msgid "Unknown theme option: latex_theme_options[%r], ignored."
msgstr ""
-#: ext/autodoc/__init__.py:1505 ext/autodoc/__init__.py:1593
-#: ext/autodoc/__init__.py:3127
+#: environment/collectors/toctree.py:259
#, python-format
-msgid "Failed to get a function signature for %s: %s"
+msgid "%s is already assigned section numbers (nested numbered toctree?)"
msgstr ""
-#: ext/autodoc/__init__.py:1828
+#: environment/collectors/asset.py:98
#, python-format
-msgid "Failed to get a constructor signature for %s: %s"
+msgid "image file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:1966
+#: environment/collectors/asset.py:126
#, python-format
-msgid "Bases: %s"
+msgid "image file %s not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:1985
+#: environment/collectors/asset.py:165
#, python-format
-msgid "missing attribute %s in object %s"
+msgid "download file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2081 ext/autodoc/__init__.py:2110
-#: ext/autodoc/__init__.py:2204
+#: environment/adapters/toctree.py:335
#, python-format
-msgid "alias of %s"
+msgid "circular toctree references detected, ignoring: %s <- %s"
msgstr ""
-#: ext/autodoc/__init__.py:2097
+#: environment/adapters/toctree.py:360
#, python-format
-msgid "alias of TypeVar(%s)"
+msgid ""
+"toctree contains reference to document %r that doesn't have a title: no link"
+" will be generated"
msgstr ""
-#: ext/autodoc/__init__.py:2456 ext/autodoc/__init__.py:2576
+#: environment/adapters/toctree.py:375
#, python-format
-msgid "Failed to get a method signature for %s: %s"
+msgid "toctree contains reference to non-included document %r"
msgstr ""
-#: ext/autodoc/__init__.py:2720
+#: environment/adapters/toctree.py:378
#, python-format
-msgid "Invalid __slots__ found on %s. Ignored."
+msgid "toctree contains reference to non-existing document %r"
msgstr ""
-#: ext/autodoc/preserve_defaults.py:195
+#: environment/adapters/indexentries.py:122
#, python-format
-msgid "Failed to parse a default argument value for %r: %s"
+msgid "see %s"
msgstr ""
-#: ext/autodoc/type_comment.py:151
+#: environment/adapters/indexentries.py:132
#, python-format
-msgid "Failed to update signature for %r: parameter not found: %s"
+msgid "see also %s"
msgstr ""
-#: ext/autodoc/type_comment.py:154
+#: environment/adapters/indexentries.py:140
#, python-format
-msgid "Failed to parse type_comment for %r: %s"
+msgid "unknown index entry type %r"
msgstr ""
diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo
index d6fe7d74750..32c9b73d0fc 100644
Binary files a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo differ
diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po
index 8893b4e500b..e1385034533 100644
--- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po
+++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2025-02-18 18:26+0000\n"
+"POT-Creation-Date: 2025-12-01 16:14+0000\n"
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
"Last-Translator: Antoni Bella Pérez , 2023-2025\n"
"Language-Team: Catalan (http://app.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n"
@@ -22,6 +22,127 @@ msgstr ""
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: roles.py:205
+#, python-format
+msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgstr "Vulnerabilitats i exposicions comunes (CVE %s)"
+
+#: roles.py:228
+#, python-format
+msgid "invalid CVE number %s"
+msgstr "número %s de CVE no vàlid"
+
+#: roles.py:250
+#, python-format
+msgid "Common Weakness Enumeration; CWE %s"
+msgstr "Enumeració de les debilitats comunes (CWE %s)"
+
+#: roles.py:273
+#, python-format
+msgid "invalid CWE number %s"
+msgstr "número %s de CWE no vàlid"
+
+#: roles.py:293
+#, python-format
+msgid "Python Enhancement Proposals; PEP %s"
+msgstr "Propostes de millora a Python (PEP %s)"
+
+#: roles.py:316
+#, python-format
+msgid "invalid PEP number %s"
+msgstr "número de PEP no vàlid %s"
+
+#: roles.py:354
+#, python-format
+msgid "invalid RFC number %s"
+msgstr "número de RFC no vàlid %s"
+
+#: theming.py:117
+#, python-format
+msgid ""
+"Theme configuration sections other than [theme] and [options] are not "
+"supported (tried to get a value from %r)."
+msgstr "No s'admeten les seccions de configuració del tema que no siguin [theme] i [options] (s'ha intentat obtenir un valor des de %r)."
+
+#: theming.py:122
+#, python-format
+msgid "setting %s.%s occurs in none of the searched theme configs"
+msgstr "configuració %s. %s no es produeix en cap de les configuracions de temes cercats"
+
+#: theming.py:137
+#, python-format
+msgid "unsupported theme option %r given"
+msgstr "opció de tema no admesa, s'ha donat %r"
+
+#: theming.py:218
+#, python-format
+msgid "file %r on theme path is not a valid zipfile or contains no theme"
+msgstr "el fitxer %r en el camí de temes no és un fitxer ZIP vàlid ni conté cap tema"
+
+#: theming.py:238
+#, python-format
+msgid "no theme named %r found (missing theme.toml?)"
+msgstr "no s'ha trobat cap tema anomenat %r (manca theme.toml?)"
+
+#: theming.py:278
+#, python-format
+msgid "The %r theme has circular inheritance"
+msgstr "El tema %r té una herència circular"
+
+#: theming.py:286
+#, python-format
+msgid ""
+"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
+"are: %s"
+msgstr "El tema %r hereta des de %r, el qual no és un tema que estigui carregat. Els temes carregats són: %s"
+
+#: theming.py:292
+#, python-format
+msgid "The %r theme has too many ancestors"
+msgstr "El tema %r té massa avantpassats"
+
+#: theming.py:320
+#, python-format
+msgid "no theme configuration file found in %r"
+msgstr "no s'ha trobat cap fitxer de configuració del tema a %r"
+
+#: theming.py:345 theming.py:398
+#, python-format
+msgid "theme %r doesn't have the \"theme\" table"
+msgstr "el tema %r no té la taula «theme»"
+
+#: theming.py:349
+#, python-format
+msgid "The %r theme \"[theme]\" table is not a table"
+msgstr "La taula del tema %r «[theme]» no és una taula"
+
+#: theming.py:353 theming.py:401
+#, python-format
+msgid "The %r theme must define the \"theme.inherit\" setting"
+msgstr "El tema %r ha de definir la configuració «theme.inherit»"
+
+#: theming.py:357
+#, python-format
+msgid "The %r theme \"[options]\" table is not a table"
+msgstr "La taula del tema %r «[options]» no és una taula"
+
+#: theming.py:376
+#, python-format
+msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+msgstr "La configuració de «theme.pygments_style» ha de ser una taula. Consell: «%s»"
+
+#: project.py:72
+#, python-format
+msgid ""
+"multiple files found for the document \"%s\": %s\n"
+"Use %r for the build."
+msgstr "S'han trobat múltiples fitxers per al document «%s»: %s\nUseu %r per a la compilació."
+
+#: project.py:87
+#, python-format
+msgid "Ignored unreadable document %r."
+msgstr "S'ha ignorat el document il·legible %r."
+
#: extension.py:58
#, python-format
msgid ""
@@ -36,127 +157,154 @@ msgid ""
"cannot be built with the loaded version (%s)."
msgstr "Aquest projecte necessita l'extensió %s almenys a la versió %s i, per tant, no es pot construir amb la versió carregada (%s)."
-#: application.py:212
+#: highlighting.py:170
+#, python-format
+msgid "Pygments lexer name %r is not known"
+msgstr "No es coneix el nom del lexer de pigments %r"
+
+#: highlighting.py:209
+#, python-format
+msgid ""
+"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
+"Retrying in relaxed mode."
+msgstr "L'anàlisi lèxica del literal_block %r com a «%s» ha resultat en un error en el testimoni: %r. S'està tornant a provar en el mode relaxat."
+
+#: events.py:92
+#, python-format
+msgid "Event %r already present"
+msgstr "L'esdeveniment %r ja està present"
+
+#: events.py:386
+#, python-format
+msgid "Unknown event name: %s"
+msgstr "Nom desconegut de l'esdeveniment: %s"
+
+#: events.py:451
+#, python-format
+msgid "Handler %r for event %r threw an exception"
+msgstr "El gestor %r per a l'esdeveniment %r ha retornat una excepció"
+
+#: application.py:218
#, python-format
msgid "Cannot find source directory (%s)"
msgstr "No es pot trobar el directori d'origen (%s)"
-#: application.py:217
+#: application.py:223
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr "El directori de sortida (%s) no és un directori"
-#: application.py:222
+#: application.py:228
msgid "Source directory and destination directory cannot be identical"
msgstr "El directori d'origen i el de destinació no poden ser idèntics"
-#: application.py:252
+#: application.py:258
#, python-format
msgid "Running Sphinx v%s"
msgstr "S'està executant Sphinx versió %s"
-#: application.py:278
+#: application.py:286
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr "Aquest projecte almenys necessita Sphinx versió %s i, per tant, no es pot crear amb aquesta versió."
-#: application.py:297
+#: application.py:305
msgid "making output directory"
msgstr "es crea el directori de sortida"
-#: application.py:302 registry.py:538
+#: application.py:310 registry.py:540
#, python-format
msgid "while setting up extension %s:"
msgstr "mentre es configura l'extensió %s:"
-#: application.py:309
+#: application.py:317
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr "«setup» tal com es defineix actualment a conf.py no és una crida de Python. Modifiqueu la seva definició per a convertir-la en una funció que es pugui cridar. Això és necessari perquè conf.py es comporti com a una extensió de Sphinx."
-#: application.py:346
+#: application.py:360
#, python-format
msgid "loading translations [%s]... "
msgstr "s'estan carregant les traduccions [%s]..."
-#: application.py:370 util/display.py:89
+#: application.py:384 util/display.py:89
msgid "done"
msgstr "fet"
-#: application.py:372
+#: application.py:386
msgid "not available for built-in messages"
msgstr "no està disponible per a missatges integrats"
-#: application.py:386
+#: application.py:400
msgid "loading pickled environment"
msgstr "s'està carregant l'entorn preparat"
-#: application.py:394
+#: application.py:408
#, python-format
msgid "failed: %s"
msgstr "ha fallat: %s"
-#: application.py:407
+#: application.py:423
msgid "No builder selected, using default: html"
msgstr "No s'ha seleccionat cap constructor, s'usa el predeterminat: html"
-#: application.py:439
+#: application.py:455
msgid "build finished with problems."
msgstr "la compilació ha finalitzat amb problemes."
-#: application.py:441
+#: application.py:457
msgid "build succeeded."
msgstr "la compilació ha tingut èxit."
-#: application.py:446
+#: application.py:462
msgid ""
"build finished with problems, 1 warning (with warnings treated as errors)."
msgstr "la compilació ha finalitzat amb problemes, 1 avís (amb els avisos tractats com a errors)."
-#: application.py:450
+#: application.py:466
msgid "build finished with problems, 1 warning."
msgstr "la compilació ha finalitzat amb problemes, 1 avís."
-#: application.py:452
+#: application.py:468
msgid "build succeeded, 1 warning."
msgstr "la compilació ha tingut èxit, 1 avís."
-#: application.py:458
+#: application.py:474
#, python-format
msgid ""
"build finished with problems, %s warnings (with warnings treated as errors)."
msgstr "la compilació ha acabat amb problemes, %s avisos (amb avisos tractats com a errors)."
-#: application.py:462
+#: application.py:478
#, python-format
msgid "build finished with problems, %s warnings."
msgstr "la compilació ha acabat amb problemes, %s avisos."
-#: application.py:464
+#: application.py:480
#, python-format
msgid "build succeeded, %s warnings."
msgstr "la compilació ha tingut èxit, %s avisos."
-#: application.py:1026
+#: application.py:1020
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr "la classe del node %r ja està registrada, els seus visitants seran anul·lats"
-#: application.py:1119
+#: application.py:1113
#, python-format
msgid "directive %r is already registered and will not be overridden"
msgstr "la directiva %r ja està registrada i no serà sobreseguda"
-#: application.py:1145 application.py:1173
+#: application.py:1139 application.py:1167
#, python-format
msgid "role %r is already registered and will not be overridden"
msgstr "el rol %r ja està registrat i no serà sobresegut"
-#: application.py:1770
+#: application.py:1766
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@@ -164,12 +312,12 @@ msgid ""
"explicit"
msgstr "l'extensió %s no declara si és segur per a la lectura en paral·lel, suposant que no ho sigui, demaneu a l'autor de l'extensió que ho comprovi i faci que sigui explícit"
-#: application.py:1775
+#: application.py:1771
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr "l'extensió %s no és segura per a la lectura en paral·lel"
-#: application.py:1779
+#: application.py:1775
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@@ -177,82 +325,214 @@ msgid ""
"explicit"
msgstr "l'extensió %s no declara si és segur per a l'escriptura en paral·lel, suposant que no ho sigui, demaneu a l'autor de l'extensió que ho comprovi i faci que sigui explícit"
-#: application.py:1784
+#: application.py:1780
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr "l'extensió %s no és segura per a l'escriptura en paral·lel"
-#: application.py:1792 application.py:1796
+#: application.py:1788 application.py:1792
#, python-format
msgid "doing serial %s"
msgstr "s'està executant %s en sèrie"
-#: config.py:355
+#: registry.py:162
#, python-format
-msgid "config directory doesn't contain a conf.py file (%s)"
-msgstr "el directori de configuració no conté un fitxer conf.py (%s)"
+msgid "Builder class %s has no \"name\" attribute"
+msgstr "La classe del constructor %s no té cap atribut «name»"
+
+#: registry.py:166
+#, python-format
+msgid "Builder %r already exists (in module %s)"
+msgstr "El constructor %r ja existeix (al mòdul %s)"
+
+#: registry.py:182
+#, python-format
+msgid "Builder name %s not registered or available through entry point"
+msgstr "El nom del constructor %s no està registrat o disponible a través del punt d'entrada"
+
+#: registry.py:192
+#, python-format
+msgid "Builder name %s not registered"
+msgstr "El nom del constructor %s no està registrat"
+
+#: registry.py:199
+#, python-format
+msgid "domain %s already registered"
+msgstr "el domini %s ja està registrat"
+
+#: registry.py:223 registry.py:244 registry.py:257
+#, python-format
+msgid "domain %s not yet registered"
+msgstr "el domini %s encara no està registrat"
+
+#: registry.py:230
+#, python-format
+msgid "The %r directive is already registered to domain %s"
+msgstr "La directiva %r ja està registrada al domini %s"
+
+#: registry.py:248
+#, python-format
+msgid "The %r role is already registered to domain %s"
+msgstr "El rol %r ja està registrat al domini %s"
+
+#: registry.py:261
+#, python-format
+msgid "The %r index is already registered to domain %s"
+msgstr "L'índex %r ja està registrat al domini %s"
+
+#: registry.py:308
+#, python-format
+msgid "The %r object_type is already registered"
+msgstr "L'object_type %r ja està registrat"
+
+#: registry.py:339
+#, python-format
+msgid "The %r crossref_type is already registered"
+msgstr "El crossref_type %r ja està registrat"
+
+#: registry.py:348
+#, python-format
+msgid "source_suffix %r is already registered"
+msgstr "source_suffix %r ja està registrat"
+
+#: registry.py:358
+#, python-format
+msgid "source_parser for %r is already registered"
+msgstr "source_parser per a %r ja està registrat"
+
+#: registry.py:367
+#, python-format
+msgid "Source parser for %s not registered"
+msgstr "L'analitzador de fonts per a %s no registrat"
+
+#: registry.py:388
+#, python-format
+msgid "Translator for %r already exists"
+msgstr "El traductor per a %r ja existeix"
+
+#: registry.py:405
+#, python-format
+msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
+msgstr "kwargs per a add_node() haurà de ser una funció (visita, sortida) tupla: %r=%r"
+
+#: registry.py:498
+#, python-format
+msgid "enumerable_node %r already registered"
+msgstr "enumerable_node %r ja està registrat"
+
+#: registry.py:514
+#, python-format
+msgid "math renderer %s is already registered"
+msgstr "la representació matemàtica %s ja està registrada"
-#: config.py:366
+#: registry.py:531
+#, python-format
msgid ""
-"Invalid configuration value found: 'language = None'. Update your "
-"configuration to a valid language code. Falling back to 'en' (English)."
-msgstr "S'ha trobat un valor de configuració no vàlid: «language = None». Actualitzeu la vostra configuració a un codi d'idioma vàlid. Es torna «en» (anglès)."
+"the extension %r was already merged with Sphinx since version %s; this "
+"extension is ignored."
+msgstr "l'extensió %r ja es va fusionar amb Sphinx des de la versió %s. Aquesta extensió s'ignorarà."
+
+#: registry.py:545
+msgid "Original exception:\n"
+msgstr "Excepció original:\n"
+
+#: registry.py:547
+#, python-format
+msgid "Could not import extension %s"
+msgstr "No s'ha pogut importar l'extensió %s"
+
+#: registry.py:554
+#, python-format
+msgid ""
+"extension %r has no setup() function; is it really a Sphinx extension "
+"module?"
+msgstr "l'extensió %r no té cap funció setup(). És realment un mòdul d'extensions de Sphinx?"
+
+#: registry.py:567
+#, python-format
+msgid ""
+"The %s extension used by this project needs at least Sphinx v%s; it "
+"therefore cannot be built with this version."
+msgstr "L'extensió %s usada per aquest projecte almenys necessita Sphinx versió %s i, per tant, no es pot crear amb aquesta versió."
+
+#: registry.py:579
+#, python-format
+msgid ""
+"extension %r returned an unsupported object from its setup() function; it "
+"should return None or a metadata dictionary"
+msgstr "l'extensió %r ha retornat un objecte no admès des de la seva funció setup(). No n'hauria de retornar cap o retornar un diccionari de metadades"
+
+#: registry.py:605
+#, python-format
+msgid "`None` is not a valid filetype for %r."
+msgstr "«Cap» no és un tipus de fitxer vàlid per a %r."
+
+#: config.py:351
+#, python-format
+msgid "config directory doesn't contain a conf.py file (%s)"
+msgstr "el directori de configuració no conté un fitxer conf.py (%s)"
-#: config.py:394
+#: config.py:374
#, python-format
msgid "'%s' must be '0' or '1', got '%s'"
msgstr "«%s» ha de ser «0» o «1», s'ha obtingut «%s»"
-#: config.py:399
+#: config.py:379
#, python-format
msgid ""
"cannot override dictionary config setting %r, ignoring (use %r to set "
"individual elements)"
msgstr "no s'ha pogut substituir l'ajust de la configuració del diccionari %r, s'ignora (useu %r per a establir elements individuals)"
-#: config.py:411
+#: config.py:391
#, python-format
msgid "invalid number %r for config value %r, ignoring"
msgstr "nombre no vàlid %r del valor de configuració %r, s'ignora"
-#: config.py:419
+#: config.py:399
#, python-format
msgid "cannot override config setting %r with unsupported type, ignoring"
msgstr "no s'ha pogut substituir l'ajust de la configuració %r amb tipus no compatibles, s'ignora"
-#: config.py:442
+#: config.py:422
#, python-format
msgid "unknown config value %r in override, ignoring"
msgstr "valor de configuració desconegut %r en substituir, s'ignora"
-#: config.py:496
+#: config.py:476
#, python-format
msgid "No such config value: %r"
msgstr "Aquest valor de configuració no existeix: %r"
-#: config.py:524
+#: config.py:504
#, python-format
msgid "Config value %r already present"
msgstr "El valor de configuració %r ja està present"
-#: config.py:561
+#: config.py:541
#, python-format
msgid ""
"cannot cache unpickleable configuration value: %r (because it contains a "
"function, class, or module object)"
msgstr "no es pot emmagatzemar a la memòria cau un valor de configuració no recuperable: %r (perquè conté un objecte de funció, classe o mòdul)"
-#: config.py:603
+#: config.py:577
+msgid ""
+"Invalid configuration value found: 'language = None'. Update your "
+"configuration to a valid language code. Falling back to 'en' (English)."
+msgstr "S'ha trobat un valor de configuració no vàlid: «language = None». Actualitzeu la vostra configuració a un codi d'idioma vàlid. Es torna «en» (anglès)."
+
+#: config.py:599
#, python-format
msgid "There is a syntax error in your configuration file: %s\n"
msgstr "Hi ha un error de sintaxi en el fitxer de configuració: %s\n"
-#: config.py:607
+#: config.py:603
msgid ""
"The configuration file (or one of the modules it imports) called sys.exit()"
msgstr "El fitxer de configuració (o un dels mòduls que s'importen) ha cridat «sys.exit()»"
-#: config.py:615
+#: config.py:611
#, python-format
msgid ""
"There is a programmable error in your configuration file:\n"
@@ -260,540 +540,725 @@ msgid ""
"%s"
msgstr "Hi ha un error programable en el fitxer de configuració:\n\n%s"
-#: config.py:637
+#: config.py:633
#, python-format
msgid "Failed to convert %r to a frozenset"
-msgstr ""
+msgstr "Ha fallat en convertir %r a un recurs congelat"
-#: config.py:655 config.py:663
+#: config.py:651 config.py:659
#, python-format
msgid "Converting `source_suffix = %r` to `source_suffix = %r`."
msgstr "S'està convertint «source_suffix = %r» a «source_suffix = %r»."
-#: config.py:669
+#: config.py:665
#, python-format
msgid ""
"The config value `source_suffix' expects a dictionary, a string, or a list "
"of strings. Got `%r' instead (type %s)."
msgstr "El valor de configuració «source_suffix» espera un diccionari, una cadena o una llista de cadenes. En lloc d'això, s'ha obtingut «%r» (escriviu %s)."
-#: config.py:690
+#: config.py:686
#, python-format
msgid "Section %s"
msgstr "Secció %s"
-#: config.py:691
+#: config.py:687
#, python-format
msgid "Fig. %s"
msgstr "Fig. %s"
-#: config.py:692
+#: config.py:688
#, python-format
msgid "Table %s"
msgstr "Taula %s"
-#: config.py:693
+#: config.py:689
#, python-format
msgid "Listing %s"
msgstr "Llistat %s"
-#: config.py:802
+#: config.py:798
#, python-brace-format
msgid ""
"The config value `{name}` has to be a one of {candidates}, but `{current}` "
"is given."
msgstr "El valor de configuració «{name}» ha de ser un de {candidates}, però s'ha donat «{current}»."
-#: config.py:833
+#: config.py:829
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}'; expected "
"{permitted}."
msgstr "El valor de configuració «{name}» té el tipus «{current.__name__}», s'espera {permitted}."
-#: config.py:850
+#: config.py:846
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}', defaults to "
"`{default.__name__}'."
msgstr "El valor de configuració «{name}» té el tipus «{current.__name__}», el valor predeterminat és «{default.__name__}»."
-#: config.py:862
+#: config.py:858
#, python-format
msgid "primary_domain %r not found, ignored."
msgstr "no s'ha trobat primary_domain %r, s'ignora."
-#: config.py:882
+#: config.py:878
msgid ""
"Sphinx now uses \"index\" as the master document by default. To keep pre-2.0"
" behaviour, set \"master_doc = 'contents'\"."
-msgstr ""
+msgstr "Sphinx ara utilitza «index» de manera predeterminada com a document mestre. Per a mantenir el comportament anterior a la 2.0, establiu «master_doc = 'contents'»."
-#: highlighting.py:170
-#, python-format
-msgid "Pygments lexer name %r is not known"
-msgstr "No es coneix el nom del lexer de pigments %r"
+#: config.py:892
+msgid ""
+"Support for source encodings other than UTF-8 is deprecated and will be "
+"removed in Sphinx 10. Please comment at https://github.com/sphinx-"
+"doc/sphinx/issues/13665 if this causes a problem."
+msgstr "La compatibilitat amb les codificacions font diferents d'UTF-8 està obsoleta i se suprimirà al Sphinx 10. Si això causa algun problema, feu un comentari a «https://github.com/sphinx-doc/sphinx/issues/13665»."
-#: highlighting.py:209
-#, python-format
-msgid ""
-"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
-"Retrying in relaxed mode."
-msgstr "L'anàlisi lèxica del literal_block %r com a «%s» ha resultat en un error en el testimoni: %r. S'està tornant a provar en el mode relaxat."
+#: environment/__init__.py:89
+msgid "new config"
+msgstr "configuració nova"
-#: theming.py:115
-#, python-format
-msgid ""
-"Theme configuration sections other than [theme] and [options] are not "
-"supported (tried to get a value from %r)."
-msgstr "No s'admeten les seccions de configuració del tema que no siguin [theme] i [options] (s'ha intentat obtenir un valor des de %r)."
+#: environment/__init__.py:90
+msgid "config changed"
+msgstr "configuració modificada"
-#: theming.py:120
-#, python-format
-msgid "setting %s.%s occurs in none of the searched theme configs"
-msgstr "configuració %s. %s no es produeix en cap de les configuracions de temes cercats"
+#: environment/__init__.py:91
+msgid "extensions changed"
+msgstr "extensions modificades"
-#: theming.py:135
-#, python-format
-msgid "unsupported theme option %r given"
-msgstr "opció de tema no admesa, s'ha donat %r"
+#: environment/__init__.py:261
+msgid "build environment version not current"
+msgstr "la versió de l'entorn de compilació no és actual"
-#: theming.py:208
-#, python-format
-msgid "file %r on theme path is not a valid zipfile or contains no theme"
-msgstr "el fitxer %r en el camí de temes no és un fitxer ZIP vàlid ni conté cap tema"
+#: environment/__init__.py:263
+msgid "source directory has changed"
+msgstr "el directori d'origen ha estat modificat"
-#: theming.py:228
+#: environment/__init__.py:350
#, python-format
-msgid "no theme named %r found (missing theme.toml?)"
-msgstr "no s'ha trobat cap tema anomenat %r (manca theme.toml?)"
+msgid "The configuration has changed (1 option: %r)"
+msgstr "La configuració ha estat canviada (1 opció: %r)"
-#: theming.py:268
+#: environment/__init__.py:355
#, python-format
-msgid "The %r theme has circular inheritance"
-msgstr "El tema %r té una herència circular"
+msgid "The configuration has changed (%d options: %s)"
+msgstr "La configuració ha estat canviada (%d opcions: %s)"
-#: theming.py:276
+#: environment/__init__.py:361
#, python-format
+msgid "The configuration has changed (%d options: %s, ...)"
+msgstr "La configuració ha estat canviada (%d opcions: %s, «...»)"
+
+#: environment/__init__.py:404
msgid ""
-"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
-"are: %s"
-msgstr "El tema %r hereta des de %r, el qual no és un tema que estigui carregat. Els temes carregats són: %s"
+"This environment is incompatible with the selected builder, please choose "
+"another doctree directory."
+msgstr "Aquest entorn és incompatible amb el constructor seleccionat, trieu un altre directori doctree."
-#: theming.py:282
+#: environment/__init__.py:518
#, python-format
-msgid "The %r theme has too many ancestors"
-msgstr "El tema %r té massa avantpassats"
+msgid "Failed to scan documents in %s: %r"
+msgstr "Ha fallat en escanejar els documents a %s: %r"
-#: theming.py:310
+#: environment/__init__.py:645 ext/intersphinx/_resolve.py:238
#, python-format
-msgid "no theme configuration file found in %r"
-msgstr "no s'ha trobat cap fitxer de configuració del tema a %r"
+msgid "Domain %r is not registered"
+msgstr "El domini %r no està registrat"
-#: theming.py:335 theming.py:388
-#, python-format
-msgid "theme %r doesn't have the \"theme\" table"
-msgstr "el tema %r no té la taula «theme»"
+#: environment/__init__.py:811
+msgid "document isn't included in any toctree"
+msgstr "el document no està inclòs en cap toctree"
-#: theming.py:339
-#, python-format
-msgid "The %r theme \"[theme]\" table is not a table"
-msgstr "La taula del tema %r «[theme]» no és una taula"
+#: environment/__init__.py:922
+msgid "self referenced toctree found. Ignored."
+msgstr "S'ha trobat un toctree autoreferenciat. S'ignora."
-#: theming.py:343 theming.py:391
+#: environment/__init__.py:952
#, python-format
-msgid "The %r theme must define the \"theme.inherit\" setting"
-msgstr "El tema %r ha de definir la configuració «theme.inherit»"
+msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
+msgstr "es fa referència al document en múltiples toctree: %s, se selecciona: %s <- %s"
-#: theming.py:347
-#, python-format
-msgid "The %r theme \"[options]\" table is not a table"
-msgstr "La taula del tema %r «[options]» no és una taula"
+#: locale/__init__.py:229
+msgid "Attention"
+msgstr "Atenció"
-#: theming.py:366
-#, python-format
-msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
-msgstr "La configuració de «theme.pygments_style» ha de ser una taula. Consell: «%s»"
+#: locale/__init__.py:230
+msgid "Caution"
+msgstr "Compte"
-#: events.py:77
-#, python-format
-msgid "Event %r already present"
-msgstr "L'esdeveniment %r ja està present"
+#: locale/__init__.py:231
+msgid "Danger"
+msgstr "Perill"
-#: events.py:370
-#, python-format
-msgid "Unknown event name: %s"
-msgstr "Nom desconegut de l'esdeveniment: %s"
+#: locale/__init__.py:232
+msgid "Error"
+msgstr "Error"
-#: events.py:416
-#, python-format
-msgid "Handler %r for event %r threw an exception"
-msgstr "El gestor %r per a l'esdeveniment %r ha retornat una excepció"
+#: locale/__init__.py:233
+msgid "Hint"
+msgstr "Suggeriment"
-#: project.py:72
+#: locale/__init__.py:234
+msgid "Important"
+msgstr "Important"
+
+#: locale/__init__.py:235
+msgid "Note"
+msgstr "Nota"
+
+#: locale/__init__.py:236
+msgid "See also"
+msgstr "Vegeu també"
+
+#: locale/__init__.py:237
+msgid "Tip"
+msgstr "Truc"
+
+#: locale/__init__.py:238
+msgid "Warning"
+msgstr "Avís"
+
+#: builders/texinfo.py:41
#, python-format
+msgid "The Texinfo files are in %(outdir)s."
+msgstr "Els fitxers de Texinfo es troben a %(outdir)s."
+
+#: builders/texinfo.py:44
msgid ""
-"multiple files found for the document \"%s\": %s\n"
-"Use %r for the build."
-msgstr "S'han trobat múltiples fitxers per al document «%s»: %s\nUseu %r per a la compilació."
+"\n"
+"Run 'make' in that directory to run these through makeinfo\n"
+"(use 'make info' here to do that automatically)."
+msgstr "\nExecuteu l'ordre «make» en aquest directori per a executar-les mitjançant\nel makeinfo (useu l'ordre «make info» per a fer-ho automàticament)."
-#: project.py:87
-#, python-format
-msgid "Ignored unreadable document %r."
-msgstr "S'ha ignorat el document il·legible %r."
+#: builders/texinfo.py:73
+msgid "no \"texinfo_documents\" config value found; no documents will be written"
+msgstr "no s'ha trobat el valor de configuració «texinfo_documents»: no s'escriurà cap document"
-#: registry.py:167
+#: builders/texinfo.py:85
#, python-format
-msgid "Builder class %s has no \"name\" attribute"
-msgstr "La classe del constructor %s no té cap atribut «name»"
+msgid "\"texinfo_documents\" config value references unknown document %s"
+msgstr "El valor de configuració «texinfo_documents» fa referència a un document %s desconegut"
-#: registry.py:171
+#: builders/latex/__init__.py:310 builders/texinfo.py:105
#, python-format
-msgid "Builder %r already exists (in module %s)"
-msgstr "El constructor %r ja existeix (al mòdul %s)"
+msgid "processing %s"
+msgstr "s'està processant %s"
-#: registry.py:187
-#, python-format
-msgid "Builder name %s not registered or available through entry point"
-msgstr "El nom del constructor %s no està registrat o disponible a través del punt d'entrada"
+#: builders/latex/__init__.py:332 builders/manpage.py:54
+#: builders/singlehtml.py:176 builders/texinfo.py:111
+msgid "writing"
+msgstr "s'està escrivint"
-#: registry.py:197
-#, python-format
-msgid "Builder name %s not registered"
-msgstr "El nom del constructor %s no està registrat"
+#: builders/latex/__init__.py:398 builders/texinfo.py:160
+msgid "resolving references..."
+msgstr "s'estan resolent les referències..."
-#: registry.py:204
-#, python-format
-msgid "domain %s already registered"
-msgstr "el domini %s ja està registrat"
+#: builders/latex/__init__.py:409 builders/texinfo.py:170
+msgid " (in "
+msgstr " (a "
-#: registry.py:228 registry.py:249 registry.py:262
-#, python-format
-msgid "domain %s not yet registered"
-msgstr "el domini %s encara no està registrat"
+#: builders/_epub_base.py:425 builders/html/__init__.py:768
+#: builders/latex/__init__.py:474 builders/texinfo.py:186
+msgid "copying images... "
+msgstr "s'estan copiant les imatges... "
-#: registry.py:235
+#: builders/_epub_base.py:447 builders/latex/__init__.py:489
+#: builders/texinfo.py:203
#, python-format
-msgid "The %r directive is already registered to domain %s"
-msgstr "La directiva %r ja està registrada al domini %s"
+msgid "cannot copy image file %r: %s"
+msgstr "no s'ha pogut copiar el fitxer d'imatge %r: %s"
-#: registry.py:253
-#, python-format
-msgid "The %r role is already registered to domain %s"
-msgstr "El rol %r ja està registrat al domini %s"
+#: builders/texinfo.py:210
+msgid "copying Texinfo support files"
+msgstr "s'estan copiant els fitxers de suport de Texinfo"
-#: registry.py:266
+#: builders/texinfo.py:218
#, python-format
-msgid "The %r index is already registered to domain %s"
-msgstr "L'índex %r ja està registrat al domini %s"
+msgid "error writing file Makefile: %s"
+msgstr "error en escriure el fitxer Makefile: %s"
-#: registry.py:313
+#: builders/manpage.py:37
#, python-format
-msgid "The %r object_type is already registered"
-msgstr "L'object_type %r ja està registrat"
+msgid "The manual pages are in %(outdir)s."
+msgstr "Les pàgines del manual es troben a %(outdir)s."
-#: registry.py:344
-#, python-format
-msgid "The %r crossref_type is already registered"
-msgstr "El crossref_type %r ja està registrat"
+#: builders/manpage.py:45
+msgid "no \"man_pages\" config value found; no manual pages will be written"
+msgstr "no s'ha trobat el valor de configuració «man_pages»: no s'escriuran les pàgines del manual"
-#: registry.py:353
+#: builders/manpage.py:64
#, python-format
-msgid "source_suffix %r is already registered"
-msgstr "source_suffix %r ja està registrat"
+msgid "\"man_pages\" config value references unknown document %s"
+msgstr "El valor de configuració «man_pages» fa referència a un document %s desconegut"
-#: registry.py:363
+#: builders/singlehtml.py:35
#, python-format
-msgid "source_parser for %r is already registered"
-msgstr "source_parser per a %r ja està registrat"
+msgid "The HTML page is in %(outdir)s."
+msgstr "La pàgina HTML es troba a %(outdir)s."
-#: registry.py:372
-#, python-format
-msgid "Source parser for %s not registered"
-msgstr "L'analitzador de fonts per a %s no registrat"
+#: builders/singlehtml.py:171
+msgid "assembling single document"
+msgstr "s'està muntant un únic document"
-#: registry.py:390
-#, python-format
-msgid "Translator for %r already exists"
-msgstr "El traductor per a %r ja existeix"
+#: builders/singlehtml.py:189
+msgid "writing additional files"
+msgstr "s'estan escrivint els fitxers addicionals"
-#: registry.py:407
-#, python-format
-msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
-msgstr "kwargs per a add_node() haurà de ser una funció (visita, sortida) tupla: %r=%r"
+#: builders/dummy.py:19
+msgid "The dummy builder generates no files."
+msgstr "El constructor fictici no genera cap fitxer."
-#: registry.py:496
+#: builders/gettext.py:243
#, python-format
-msgid "enumerable_node %r already registered"
-msgstr "enumerable_node %r ja està registrat"
+msgid "The message catalogs are in %(outdir)s."
+msgstr "Els catàlegs de missatges es troben a %(outdir)s."
-#: registry.py:512
+#: builders/__init__.py:400 builders/gettext.py:264
#, python-format
-msgid "math renderer %s is already registered"
-msgstr "la representació matemàtica %s ja està registrada"
+msgid "building [%s]: "
+msgstr "s'està construint [%s]: "
-#: registry.py:529
+#: builders/gettext.py:265
#, python-format
-msgid ""
-"the extension %r was already merged with Sphinx since version %s; this "
-"extension is ignored."
-msgstr "l'extensió %r ja es va fusionar amb Sphinx des de la versió %s. Aquesta extensió s'ignorarà."
+msgid "targets for %d template files"
+msgstr "objectius per a %d fitxers de plantilla"
-#: registry.py:543
-msgid "Original exception:\n"
-msgstr "Excepció original:\n"
+#: builders/gettext.py:271
+msgid "reading templates... "
+msgstr "s'estan llegint les plantilles... "
-#: registry.py:545
+#: builders/gettext.py:310
+msgid "writing message catalogs... "
+msgstr "s'estan escrivint els catàlegs de missatges... "
+
+#: builders/linkcheck.py:87
#, python-format
-msgid "Could not import extension %s"
-msgstr "No s'ha pogut importar l'extensió %s"
+msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
+msgstr "Cerqueu qualsevol error a la sortida anterior o en el fitxer %(outdir)s/output.txt"
-#: registry.py:552
+#: builders/linkcheck.py:159
#, python-format
-msgid ""
-"extension %r has no setup() function; is it really a Sphinx extension "
-"module?"
-msgstr "l'extensió %r no té cap funció setup(). És realment un mòdul d'extensions de Sphinx?"
+msgid "broken link: %s (%s)"
+msgstr "enllaç trencat: %s (%s)"
-#: registry.py:565
+#: builders/linkcheck.py:561
#, python-format
-msgid ""
-"The %s extension used by this project needs at least Sphinx v%s; it "
-"therefore cannot be built with this version."
-msgstr "L'extensió %s usada per aquest projecte almenys necessita Sphinx versió %s i, per tant, no es pot crear amb aquesta versió."
+msgid "Anchor '%s' not found"
+msgstr "No s'ha trobat l'àncora «%s»"
+
+#: builders/linkcheck.py:789
+msgid "linkcheck_allowed_redirects. Expected a dictionary."
+msgstr "linkcheck_allowed_redirects. S'esperava un diccionari."
-#: registry.py:577
+#: builders/linkcheck.py:799
#, python-format
-msgid ""
-"extension %r returned an unsupported object from its setup() function; it "
-"should return None or a metadata dictionary"
-msgstr "l'extensió %r ha retornat un objecte no admès des de la seva funció setup(). No n'hauria de retornar cap o retornar un diccionari de metadades"
+msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
+msgstr "Ha fallat en compilar expressions regulars a linkcheck_allowed_redirects: %r %s"
-#: registry.py:612
+#: builders/epub3.py:83
#, python-format
-msgid "`None` is not a valid filetype for %r."
-msgstr "«Cap» no és un tipus de fitxer vàlid per a %r."
+msgid "The ePub file is in %(outdir)s."
+msgstr "El fitxer ePub es troba a %(outdir)s."
+
+#: builders/epub3.py:188
+msgid "writing nav.xhtml file..."
+msgstr "s'està escrivint el fitxer nav.xhtml..."
+
+#: builders/epub3.py:224
+msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_language» (o «language») no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:230
+msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
+msgstr "el valor de configuració «epub_uid» haurà de ser un XML NAME per a EPUB3"
+
+#: builders/epub3.py:235
+msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_title» (o «html_title») no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:241
+msgid "conf value \"epub_author\" should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_author» no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:245
+msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_contributor» no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:250
+msgid "conf value \"epub_description\" should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_description» no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:254
+msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_publisher» no pot estar buit per a EPUB3"
-#: roles.py:206
+#: builders/epub3.py:259
+msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_copyright» (o «copyright») no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:265
+msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_identifier» no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:268
+msgid "conf value \"version\" should not be empty for EPUB3"
+msgstr "el valor de configuració «version» no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:282 builders/html/__init__.py:1296
#, python-format
-msgid "Common Vulnerabilities and Exposures; CVE %s"
-msgstr "Vulnerabilitats i exposicions comuns (CVE %s)"
+msgid "invalid css_file: %r, ignored"
+msgstr "css_file no vàlid: %r, s'ignora"
-#: roles.py:229
+#: builders/xml.py:29
#, python-format
-msgid "invalid CVE number %s"
-msgstr "número %s de CVE no vàlid"
+msgid "The XML files are in %(outdir)s."
+msgstr "Els fitxers en XML es troben a %(outdir)s."
-#: roles.py:251
+#: builders/html/__init__.py:1242 builders/text.py:71 builders/xml.py:81
#, python-format
-msgid "Common Weakness Enumeration; CWE %s"
-msgstr "Enumeració de les debilitats comuns (CWE %s)"
+msgid "error writing file %s: %s"
+msgstr "error en escriure al fitxer %s: %s"
-#: roles.py:274
+#: builders/xml.py:103
#, python-format
-msgid "invalid CWE number %s"
-msgstr "número %s de CWE no vàlid"
+msgid "The pseudo-XML files are in %(outdir)s."
+msgstr "Els fitxers en pseudo XML es troben a %(outdir)s."
-#: roles.py:294
+#: builders/_epub_base.py:223
#, python-format
-msgid "Python Enhancement Proposals; PEP %s"
-msgstr "Propostes de millora a Python; PEP %s"
+msgid "duplicated ToC entry found: %s"
+msgstr "s'ha trobat una entrada ToC duplicada: %s"
-#: roles.py:317
+#: builders/_epub_base.py:436
#, python-format
-msgid "invalid PEP number %s"
-msgstr "número de PEP no vàlid %s"
+msgid "cannot read image file %r: copying it instead"
+msgstr "no s'ha pogut llegir el fitxer d'imatge %r: en el seu lloc, es copia"
-#: roles.py:355
+#: builders/_epub_base.py:467
#, python-format
-msgid "invalid RFC number %s"
-msgstr "número de RFC no vàlid %s"
+msgid "cannot write image file %r: %s"
+msgstr "no s'ha pogut escriure el fitxer d'imatge %r: %s"
-#: ext/linkcode.py:86 ext/viewcode.py:226
-msgid "[source]"
-msgstr "[font]"
+#: builders/_epub_base.py:479
+msgid "Pillow not found - copying image files"
+msgstr "No s'ha trobat el Pillow: es copien els fitxers d'imatge"
-#: ext/viewcode.py:289
-msgid "highlighting module code... "
-msgstr "s'està ressaltant el codi del mòdul... "
+#: builders/_epub_base.py:514
+msgid "writing mimetype file..."
+msgstr "s'està escrivint un fitxer de tipus MIME..."
-#: ext/viewcode.py:320
-msgid "[docs]"
-msgstr "[documents]"
+#: builders/_epub_base.py:523
+msgid "writing META-INF/container.xml file..."
+msgstr "s'està escrivint el fitxer META-INF/container.xml..."
-#: ext/viewcode.py:346
-msgid "Module code"
-msgstr "Codi del mòdul"
+#: builders/_epub_base.py:561
+msgid "writing content.opf file..."
+msgstr "s'està escrivint el fitxer content.opf..."
-#: ext/viewcode.py:353
+#: builders/_epub_base.py:594
#, python-format
-msgid "Source code for %s
"
-msgstr "Codi font per a %s
"
+msgid "unknown mimetype for %s, ignoring"
+msgstr "tipus MIME desconegut per a %s, s'ignora"
-#: ext/viewcode.py:380
-msgid "Overview: module code"
-msgstr "Vista general: codi del mòdul"
+#: builders/_epub_base.py:749
+msgid "node has an invalid level"
+msgstr "el node té un nivell no vàlid"
-#: ext/viewcode.py:381
-msgid "All modules for which code is available
"
-msgstr "Tots els mòduls per als quals hi ha codi
"
+#: builders/_epub_base.py:769
+msgid "writing toc.ncx file..."
+msgstr "s'està escrivint el fitxer toc.ncx..."
-#: ext/extlinks.py:82
+#: builders/_epub_base.py:802
#, python-format
-msgid ""
-"hardcoded link %r could be replaced by an extlink (try using %r instead)"
-msgstr "l'enllaç codificat %r podria substituir-se per un enllaç extern (en el seu lloc intenteu usar %r)"
+msgid "writing %s file..."
+msgstr "s'està escrivint el fitxer %s..."
-#: ext/autosectionlabel.py:52
+#: builders/text.py:27
#, python-format
-msgid "section \"%s\" gets labeled as \"%s\""
-msgstr "la secció «%s» s'etiqueta com a «%s»"
+msgid "The text files are in %(outdir)s."
+msgstr "Els fitxers de text es troben a %(outdir)s."
-#: domains/std/__init__.py:833 domains/std/__init__.py:960
-#: ext/autosectionlabel.py:61
+#: builders/__init__.py:229
#, python-format
-msgid "duplicate label %s, other instance in %s"
-msgstr "etiqueta duplicada %s, una altra instància a %s"
+msgid "a suitable image for %s builder not found: %s (%s)"
+msgstr "no s'ha trobat una imatge adequada per al constructor %s: %s (%s)"
-#: ext/imgmath.py:387 ext/mathjax.py:60
-msgid "Link to this equation"
-msgstr "Enllaça amb aquesta equació"
+#: builders/__init__.py:237
+#, python-format
+msgid "a suitable image for %s builder not found: %s"
+msgstr "no s'ha trobat una imatge adequada per al constructor %s: %s"
-#: ext/duration.py:90
-msgid ""
-"====================== slowest reading durations ======================="
-msgstr "==================== durades de lectura més lentes ====================="
+#: builders/__init__.py:260
+msgid "building [mo]: "
+msgstr "s'estan construint [mo]:"
-#: ext/doctest.py:118
-#, python-format
-msgid "missing '+' or '-' in '%s' option."
-msgstr "manca «+» o «-» a l'opció «%s»."
+#: builders/__init__.py:263 builders/__init__.py:771 builders/__init__.py:795
+msgid "writing output... "
+msgstr "s'està escrivint la sortida..."
-#: ext/doctest.py:124
+#: builders/__init__.py:280
#, python-format
-msgid "'%s' is not a valid option."
-msgstr "«%s» no és una opció vàlida."
+msgid "all of %d po files"
+msgstr "tots els %d fitxers PO"
-#: ext/doctest.py:139
+#: builders/__init__.py:302
#, python-format
-msgid "'%s' is not a valid pyversion option"
-msgstr "«%s» no és una opció pyversion vàlida"
-
-#: ext/doctest.py:226
-msgid "invalid TestCode type"
-msgstr "tipus de TestCode no vàlid"
+msgid "targets for %d po files that are specified"
+msgstr "objectius per als %d fitxers PO que s'han especificat"
-#: ext/doctest.py:297
+#: builders/__init__.py:314
#, python-format
-msgid ""
-"Testing of doctests in the sources finished, look at the results in "
-"%(outdir)s/output.txt."
-msgstr "Proves de doctests en les fonts acabades, mireu el resultat a %(outdir)s/output.txt."
+msgid "targets for %d po files that are out of date"
+msgstr "objectius per als %d fitxers PO que estan desfasats"
-#: ext/doctest.py:457
-#, python-format
-msgid "no code/output in %s block at %s:%s"
-msgstr "no hi ha codi/sortida en el bloc %s a %s:%s"
+#: builders/__init__.py:324
+msgid "all source files"
+msgstr "tots els fitxers font"
-#: ext/doctest.py:568
+#: builders/__init__.py:335
#, python-format
-msgid "ignoring invalid doctest code: %r"
-msgstr "s'ignora el codi doctest no vàlid: %r"
+msgid "file %r given on command line does not exist, "
+msgstr "el fitxer %r proporcionat a la línia d'ordres no existeix, "
-#: ext/imgmath.py:162
+#: builders/__init__.py:342
#, python-format
msgid ""
-"LaTeX command %r cannot be run (needed for math display), check the "
-"imgmath_latex setting"
-msgstr "l'ordre de LaTeX %r no s'ha pogut executar (necessària per a la visualització matemàtica), comproveu la configuració d'«imgmath_latex»"
+"file %r given on command line is not under the source directory, ignoring"
+msgstr "el fitxer %r proporcionat a la línia d'ordres no es troba sota el directori d'origen, s'ignora"
-#: ext/imgmath.py:181
+#: builders/__init__.py:353
#, python-format
-msgid ""
-"%s command %r cannot be run (needed for math display), check the imgmath_%s "
-"setting"
-msgstr "%s l'ordre de %r no s'ha pogut executar (necessària per a la visualització matemàtica), comproveu la configuració d'«imgmath_%s»"
+msgid "file %r given on command line is not a valid document, ignoring"
+msgstr "el fitxer %r proporcionat a la línia d'ordres no és un document vàlid, s'ignora"
-#: ext/imgmath.py:344
+#: builders/__init__.py:366
#, python-format
-msgid "display latex %r: %s"
-msgstr "visualització de latex %r: %s"
+msgid "%d source files given on command line"
+msgstr "%d fitxers font proporcionats a la línia d'ordres"
-#: ext/imgmath.py:380
+#: builders/__init__.py:382
#, python-format
-msgid "inline latex %r: %s"
-msgstr "latex inclòs %r: %s"
+msgid "targets for %d source files that are out of date"
+msgstr "els objectius per a %d fitxers font que estan desfasats"
-#: ext/coverage.py:48
-#, python-format
-msgid "invalid regex %r in %s"
-msgstr "expressions regulars no vàlides %r a %s"
+#: builders/__init__.py:411
+msgid "looking for now-outdated files... "
+msgstr "s'està cercant per fitxers sense actualitzar... "
-#: ext/coverage.py:140 ext/coverage.py:301
+#: builders/__init__.py:415
#, python-format
-msgid "module %s could not be imported: %s"
-msgstr "el mòdul %s no s'ha pogut importar: %s"
+msgid "%d found"
+msgstr "s'han trobat %d"
-#: ext/coverage.py:148
-#, python-format
-msgid ""
-"the following modules are documented but were not specified in "
-"coverage_modules: %s"
-msgstr "els mòduls següents estan documentats però no s'han especificat a coverage_modules: %s"
+#: builders/__init__.py:417
+msgid "none found"
+msgstr "no se n'ha trobat cap"
-#: ext/coverage.py:158
-msgid ""
-"the following modules are specified in coverage_modules but were not "
-"documented"
-msgstr "els mòduls següents s'especifiquen a coverage_modules però no estan documentats"
+#: builders/__init__.py:424
+msgid "pickling environment"
+msgstr "s'està preparant l'ambient"
-#: ext/coverage.py:172
-#, python-brace-format, python-format
-msgid ""
-"Testing of coverage in the sources finished, look at the results in "
-"%(outdir)s{sep}python.txt."
-msgstr ""
+#: builders/__init__.py:431
+msgid "checking consistency"
+msgstr "s'està comprovant la coherència"
-#: ext/coverage.py:187
-#, python-format
-msgid "invalid regex %r in coverage_c_regexes"
-msgstr "expressions regulars %r no vàlides a coverage_c_regexes"
+#: builders/__init__.py:435
+msgid "no targets are out of date."
+msgstr "no hi ha cap objectiu desfasat."
-#: ext/coverage.py:260
-#, python-format
-msgid "undocumented c api: %s [%s] in file %s"
-msgstr "API de C sense documentar: %s [ %s] en el fitxer %s"
+#: builders/__init__.py:474
+msgid "updating environment: "
+msgstr "s'està actualitzant l'entorn: "
-#: ext/coverage.py:452
+#: builders/__init__.py:499
#, python-format
-msgid "undocumented python function: %s :: %s"
-msgstr "funció de Python sense documentar: %s :: %s"
+msgid "%s added, %s changed, %s removed"
+msgstr "%s afegits, %s canviats, %s eliminats"
-#: ext/coverage.py:473
+#: builders/__init__.py:536
#, python-format
-msgid "undocumented python class: %s :: %s"
-msgstr "classe de Python sense documentar: %s :: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s) because it matches a "
+"built-in exclude pattern %r. Please move your master document to a different"
+" location."
+msgstr "L'Sphinx no pot carregar el document mestre (%s) perquè coincideix amb un patró d'exclusió %r a la construcció. Si us plau, moveu el vostre document mestre cap a una altra ubicació."
-#: ext/coverage.py:492
+#: builders/__init__.py:545
#, python-format
-msgid "undocumented python method: %s :: %s :: %s"
-msgstr "mètode de Python sense documentar: %s :: %s :: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s) because it matches an "
+"exclude pattern specified in conf.py, %r. Please remove this pattern from "
+"conf.py."
+msgstr "L'Sphinx no pot carregar el document mestre (%s) perquè coincideix amb un patró d'exclusió especificat a «conf.py», %r. Si us plau, elimineu aquest patró."
-#: ext/imgconverter.py:44
+#: builders/__init__.py:556
#, python-format
msgid ""
-"Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n"
-"\n"
-"Traceback: %s"
-msgstr "No es pot executar l'ordre de conversió d'imatges %r. «sphinx.ext.imgconverter» requereix de manera predeterminada ImageMagick. Assegureu-vos que està instal·lat o configureu l'opció «image_converter» a una ordre de conversió personalitzada.\n\nTraça: %s"
+"Sphinx is unable to load the master document (%s) because it is not included"
+" in the custom include_patterns = %r. Ensure that a pattern in "
+"include_patterns matches the master document."
+msgstr "L'Sphinx no pot carregar el document mestre (%s) perquè no s'inclou a l'opció personalitzada include_patterns = %r. Assegureu-vos que un patró a include_patterns coincideixi amb el document mestre."
-#: ext/imgconverter.py:56 ext/imgconverter.py:90
+#: builders/__init__.py:563
#, python-format
msgid ""
-"convert exited with error:\n"
-"[stderr]\n"
-"%r\n"
-"[stdout]\n"
+"Sphinx is unable to load the master document (%s). The master document must "
+"be within the source directory or a subdirectory of it."
+msgstr "L'Sphinx no pot carregar el document mestre (%s). El document mestre haurà d'estar dins del directori font o un subdirectori d'aquest."
+
+#: builders/__init__.py:581 builders/__init__.py:598
+msgid "reading sources... "
+msgstr "s'estan llegint les fonts... "
+
+#: builders/__init__.py:725
+#, python-format
+msgid "docnames to write: %s"
+msgstr "els docname que s'escriuran: %s"
+
+#: builders/__init__.py:727
+msgid "no docnames to write!"
+msgstr "no hi ha cap docname per escriure!"
+
+#: builders/__init__.py:740
+msgid "preparing documents"
+msgstr "s'estan preparant els documents"
+
+#: builders/__init__.py:743
+msgid "copying assets"
+msgstr "s'estan copiant els recursos"
+
+#: builders/changes.py:29
+#, python-format
+msgid "The overview file is in %(outdir)s."
+msgstr "El fitxer de vista general es troba a %(outdir)s."
+
+#: builders/changes.py:65
+#, python-format
+msgid "no changes in version %s."
+msgstr "no hi ha canvis en la versió %s."
+
+#: builders/changes.py:67
+msgid "writing summary file..."
+msgstr "s'està escrivint el fitxer de vista general..."
+
+#: builders/changes.py:79
+msgid "Builtins"
+msgstr "Elements incorporats"
+
+#: builders/changes.py:81
+msgid "Module level"
+msgstr "Nivell de mòdul"
+
+#: builders/changes.py:137
+msgid "copying source files..."
+msgstr "s'estan copiant els fitxers font..."
+
+#: builders/changes.py:146
+#, python-format
+msgid "could not read %r for changelog creation"
+msgstr "no s'ha pogut llegir %r per a la creació del registre de canvis"
+
+#: ext/coverage.py:48
+#, python-format
+msgid "invalid regex %r in %s"
+msgstr "expressions regulars no vàlides %r a %s"
+
+#: ext/coverage.py:140 ext/coverage.py:301
+#, python-format
+msgid "module %s could not be imported: %s"
+msgstr "el mòdul %s no s'ha pogut importar: %s"
+
+#: ext/coverage.py:148
+#, python-format
+msgid ""
+"the following modules are documented but were not specified in "
+"coverage_modules: %s"
+msgstr "els mòduls següents estan documentats, però no s'han especificat a coverage_modules: %s"
+
+#: ext/coverage.py:158
+#, python-format
+msgid ""
+"the following modules are specified in coverage_modules but were not "
+"documented: %s"
+msgstr ""
+
+#: ext/coverage.py:172
+#, python-brace-format, python-format
+msgid ""
+"Testing of coverage in the sources finished, look at the results in "
+"%(outdir)s{sep}python.txt."
+msgstr "S'han acabat les proves de cobertura a les fonts, mireu el resultat a «%(outdir)s{sep}python.txt»."
+
+#: ext/coverage.py:187
+#, python-format
+msgid "invalid regex %r in coverage_c_regexes"
+msgstr "expressions regulars %r no vàlides a coverage_c_regexes"
+
+#: ext/coverage.py:260
+#, python-format
+msgid "undocumented c api: %s [%s] in file %s"
+msgstr "API de C sense documentar: %s [ %s] en el fitxer %s"
+
+#: ext/coverage.py:452
+#, python-format
+msgid "undocumented python function: %s :: %s"
+msgstr "funció de Python sense documentar: %s :: %s"
+
+#: ext/coverage.py:473
+#, python-format
+msgid "undocumented python class: %s :: %s"
+msgstr "classe de Python sense documentar: %s :: %s"
+
+#: ext/coverage.py:492
+#, python-format
+msgid "undocumented python method: %s :: %s :: %s"
+msgstr "mètode de Python sense documentar: %s :: %s :: %s"
+
+#: ext/extlinks.py:82
+#, python-format
+msgid ""
+"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgstr "l'enllaç codificat %r podria substituir-se per un enllaç extern (en el seu lloc intenteu usar %r)"
+
+#: ext/todo.py:61
+msgid "Todo"
+msgstr "Tasca pendent"
+
+#: ext/todo.py:94
+#, python-format
+msgid "TODO entry found: %s"
+msgstr "S'ha trobat una entrada TODO: %s"
+
+#: ext/todo.py:152
+msgid "<>"
+msgstr "<>"
+
+#: ext/todo.py:154
+#, python-format
+msgid "(The <> is located in %s, line %d.)"
+msgstr "(L'<> es troba a %s, línia %d)."
+
+#: ext/todo.py:166
+msgid "original entry"
+msgstr "entrada original"
+
+#: ext/imgconverter.py:44
+#, python-format
+msgid ""
+"Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n"
+"\n"
+"Traceback: %s"
+msgstr "No es pot executar l'ordre de conversió d'imatges %r. «sphinx.ext.imgconverter» requereix de manera predeterminada ImageMagick. Assegureu-vos que està instal·lat o establiu l'opció «image_converter» a una ordre de conversió personalitzada.\n\nTraça: %s"
+
+#: ext/imgconverter.py:56 ext/imgconverter.py:90
+#, python-format
+msgid ""
+"convert exited with error:\n"
+"[stderr]\n"
+"%r\n"
+"[stdout]\n"
"%r"
msgstr "«convert» ha sortit amb un error:\n[stderr]\n%r\n[stdout]\n%r"
@@ -850,7 +1315,7 @@ msgstr "«dot» no ha produït un fitxer de sortida:\n[stderr]\n%r\n[stdout]\n%r
#: ext/graphviz.py:367
#, python-format
msgid "graphviz_output_format must be either 'png' or 'svg', but is %r"
-msgstr ""
+msgstr "«graphviz_output_format» ha de ser «png» o «svg», però és %r"
#: ext/graphviz.py:373 ext/graphviz.py:436 ext/graphviz.py:480
#, python-format
@@ -866,879 +1331,960 @@ msgstr "[gràfica: %s]"
msgid "[graph]"
msgstr "[gràfica]"
-#: ext/todo.py:61
-msgid "Todo"
-msgstr "Tasca pendent"
-
-#: ext/todo.py:94
+#: ext/imgmath.py:148
#, python-format
-msgid "TODO entry found: %s"
-msgstr "S'ha trobat una entrada TODO: %s"
+msgid ""
+"LaTeX command %r cannot be run (needed for math display), check the "
+"imgmath_latex setting"
+msgstr "l'ordre de LaTeX %r no s'ha pogut executar (necessària per a la visualització matemàtica), comproveu la configuració d'«imgmath_latex»"
-#: ext/todo.py:152
-msgid "<>"
-msgstr "<>"
+#: ext/imgmath.py:167
+#, python-format
+msgid ""
+"%s command %r cannot be run (needed for math display), check the imgmath_%s "
+"setting"
+msgstr "%s l'ordre de %r no s'ha pogut executar (necessària per a la visualització matemàtica), comproveu la configuració d'«imgmath_%s»"
-#: ext/todo.py:154
+#: ext/imgmath.py:326
#, python-format
-msgid "(The <> is located in %s, line %d.)"
-msgstr "(L'<> es troba a %s, línia %d)."
+msgid "display latex %r: %s"
+msgstr "visualització de latex %r: %s"
-#: ext/todo.py:166
-msgid "original entry"
-msgstr "entrada original"
+#: ext/imgmath.py:362
+#, python-format
+msgid "inline latex %r: %s"
+msgstr "latex inclòs %r: %s"
-#: directives/code.py:66
-msgid "non-whitespace stripped by dedent"
-msgstr "cap espai en blanc eliminat en disminuir el sagnat"
+#: ext/imgmath.py:369 ext/mathjax.py:60
+msgid "Link to this equation"
+msgstr "Enllaça amb aquesta equació"
-#: directives/code.py:87
+#: ext/doctest.py:118
#, python-format
-msgid "Invalid caption: %s"
-msgstr "Subtítol no vàlid: %s"
+msgid "missing '+' or '-' in '%s' option."
+msgstr "manca «+» o «-» a l'opció «%s»."
-#: directives/code.py:131 directives/code.py:297 directives/code.py:483
+#: ext/doctest.py:124
#, python-format
-msgid "line number spec is out of range(1-%d): %r"
-msgstr "l'especificació del número de línia queda fora de l'interval (1-%d): %r"
+msgid "'%s' is not a valid option."
+msgstr "«%s» no és una opció vàlida."
-#: directives/code.py:216
+#: ext/doctest.py:139
#, python-format
-msgid "Cannot use both \"%s\" and \"%s\" options"
-msgstr "No es poden usar ambdues opcions «%s» i «%s»"
+msgid "'%s' is not a valid pyversion option"
+msgstr "«%s» no és una opció pyversion vàlida"
-#: directives/code.py:231
-#, python-format
-msgid "Include file '%s' not found or reading it failed"
-msgstr "No s'ha trobat el fitxer d'inclusió «%s» o n'ha fallat la lectura"
+#: ext/doctest.py:226
+msgid "invalid TestCode type"
+msgstr "tipus de TestCode no vàlid"
-#: directives/code.py:235
+#: ext/doctest.py:297
#, python-format
msgid ""
-"Encoding %r used for reading included file '%s' seems to be wrong, try "
-"giving an :encoding: option"
-msgstr "La codificació %r emprada per a llegir el fitxer d'inclusió «%s» sembla ser incorrecta, proveu indicant una opció :encoding:"
+"Testing of doctests in the sources finished, look at the results in "
+"%(outdir)s/output.txt."
+msgstr "Proves de doctests en les fonts acabades, mireu el resultat a %(outdir)s/output.txt."
-#: directives/code.py:276
+#: ext/doctest.py:451
#, python-format
-msgid "Object named %r not found in include file %r"
-msgstr "L'objecte anomenat %r no es troba en el fitxer inclòs %r"
-
-#: directives/code.py:309
-msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
-msgstr "No podeu usar «lineno-match» amb un conjunt desarticulat de «línies»"
+msgid "no code/output in %s block at %s:%s"
+msgstr "no hi ha codi/sortida en el bloc %s a %s:%s"
-#: directives/code.py:314
+#: ext/doctest.py:568
#, python-format
-msgid "Line spec %r: no lines pulled from include file %r"
-msgstr "Línia específica %r: No hi ha cap línia llançada des del fitxer inclòs %r"
+msgid "ignoring invalid doctest code: %r"
+msgstr "s'ignora el codi doctest no vàlid: %r"
-#: directives/patches.py:71
-msgid ""
-"\":file:\" option for csv-table directive now recognizes an absolute path as"
-" a relative path from source directory. Please update your document."
-msgstr "«:file:» l'opció per a la directiva «csv-table» ara reconeix un camí absolut com a camí relatiu des del directori d'origen. Actualitzeu el vostre document."
+#: ext/autosectionlabel.py:52
+#, python-format
+msgid "section \"%s\" gets labeled as \"%s\""
+msgstr "la secció «%s» s'etiqueta com a «%s»"
-#: directives/other.py:119
+#: domains/std/__init__.py:833 domains/std/__init__.py:960
+#: ext/autosectionlabel.py:61
#, python-format
-msgid "toctree glob pattern %r didn't match any documents"
-msgstr "El patró global toctree %r no coincideix amb cap document"
+msgid "duplicate label %s, other instance in %s"
+msgstr "etiqueta duplicada %s, una altra instància a %s"
-#: directives/other.py:153 environment/adapters/toctree.py:361
+#: ext/duration.py:47
#, python-format
-msgid "toctree contains reference to excluded document %r"
-msgstr "el toctree conté una referència cap al document exclòs %r"
+msgid "Reading duration %.3fs exceeded the duration limit %.3fs"
+msgstr ""
-#: directives/other.py:156
+#: ext/duration.py:117
+msgid ""
+"====================== total reading duration =========================="
+msgstr ""
+
+#: ext/duration.py:124
#, python-format
-msgid "toctree contains reference to nonexisting document %r"
-msgstr "el toctree conté una referència cap al document %r, el qual no existeix"
+msgid "Total time reading %d file%s: %dm %.3fs"
+msgstr ""
-#: directives/other.py:169
+#: ext/duration.py:136
+msgid ""
+"====================== slowest reading durations ======================="
+msgstr "==================== durades de lectura més lentes ====================="
+
+#: ext/duration.py:139
#, python-format
-msgid "duplicated entry found in toctree: %s"
-msgstr "s'ha trobat una entrada duplicada en el toctree: %s"
+msgid "%.3fs %s"
+msgstr ""
-#: directives/other.py:203
-msgid "Section author: "
-msgstr "Autor de la secció:"
-
-#: directives/other.py:205
-msgid "Module author: "
-msgstr "Autor del mòdul: "
-
-#: directives/other.py:207
-msgid "Code author: "
-msgstr "Autor del codi: "
-
-#: directives/other.py:209
-msgid "Author: "
-msgstr "Autor: "
-
-#: directives/other.py:269
-msgid ".. acks content is not a list"
-msgstr "... el contingut dels reconeixements no és una llista"
-
-#: directives/other.py:292
-msgid ".. hlist content is not a list"
-msgstr "... el contingut de l'historial no és una llista"
-
-#: builders/changes.py:29
-#, python-format
-msgid "The overview file is in %(outdir)s."
-msgstr "El fitxer de vista general es troba a %(outdir)s."
-
-#: builders/changes.py:56
-#, python-format
-msgid "no changes in version %s."
-msgstr "no hi ha canvis en la versió %s."
-
-#: builders/changes.py:58
-msgid "writing summary file..."
-msgstr "s'està escrivint el fitxer de vista general..."
-
-#: builders/changes.py:70
-msgid "Builtins"
-msgstr "Elements incorporats"
+#: ext/linkcode.py:86 ext/viewcode.py:232
+msgid "[source]"
+msgstr "[font]"
-#: builders/changes.py:72
-msgid "Module level"
-msgstr "Nivell de mòdul"
+#: ext/viewcode.py:295
+msgid "highlighting module code... "
+msgstr "s'està ressaltant el codi del mòdul... "
-#: builders/changes.py:124
-msgid "copying source files..."
-msgstr "s'estan copiant els fitxers font..."
+#: ext/viewcode.py:326
+msgid "[docs]"
+msgstr "[documents]"
-#: builders/changes.py:133
-#, python-format
-msgid "could not read %r for changelog creation"
-msgstr "no s'ha pogut llegir %r per a la creació del registre de canvis"
+#: ext/viewcode.py:352
+msgid "Module code"
+msgstr "Codi del mòdul"
-#: builders/manpage.py:37
+#: ext/viewcode.py:359
#, python-format
-msgid "The manual pages are in %(outdir)s."
-msgstr "Les pàgines del manual es troben a %(outdir)s."
+msgid "Source code for %s
"
+msgstr "Codi font per a %s
"
-#: builders/manpage.py:45
-msgid "no \"man_pages\" config value found; no manual pages will be written"
-msgstr "no s'ha trobat el valor de configuració «man_pages»: no s'escriuran les pàgines del manual"
+#: ext/viewcode.py:386
+msgid "Overview: module code"
+msgstr "Vista general: codi del mòdul"
-#: builders/latex/__init__.py:347 builders/manpage.py:54
-#: builders/singlehtml.py:176 builders/texinfo.py:119
-msgid "writing"
-msgstr "s'està escrivint"
+#: ext/viewcode.py:387
+msgid "All modules for which code is available
"
+msgstr "Tots els mòduls per als quals hi ha codi
"
-#: builders/manpage.py:71
+#: domains/citation.py:75
#, python-format
-msgid "\"man_pages\" config value references unknown document %s"
-msgstr "El valor de configuració «man_pages» fa referència a un document %s desconegut"
+msgid "duplicate citation %s, other instance in %s"
+msgstr "citació duplicada %s, una altra instància a %s"
-#: builders/__init__.py:224
+#: domains/citation.py:92
#, python-format
-msgid "a suitable image for %s builder not found: %s (%s)"
-msgstr "no s'ha trobat una imatge adequada per al constructor %s: %s (%s)"
+msgid "Citation [%s] is not referenced."
+msgstr "No es fa referència a la citació [%s]."
-#: builders/__init__.py:232
+#: domains/math.py:73
#, python-format
-msgid "a suitable image for %s builder not found: %s"
-msgstr "no s'ha trobat una imatge adequada per al constructor %s: %s"
-
-#: builders/__init__.py:255
-msgid "building [mo]: "
-msgstr "s'estan construint [mo]:"
-
-#: builders/__init__.py:258 builders/__init__.py:759 builders/__init__.py:791
-msgid "writing output... "
-msgstr "s'està escrivint la sortida..."
+msgid "duplicate label of equation %s, other instance in %s"
+msgstr "etiqueta duplicada de l'equació %s, una altra instància a %s"
-#: builders/__init__.py:275
+#: domains/math.py:130 writers/latex.py:2500
#, python-format
-msgid "all of %d po files"
-msgstr "tots els %d fitxers PO"
+msgid "Invalid math_eqref_format: %r"
+msgstr "math_eqref_format no vàlid: %r"
-#: builders/__init__.py:297
+#: domains/javascript.py:183
#, python-format
-msgid "targets for %d po files that are specified"
-msgstr "objectius per als %d fitxers PO que s'han especificat"
+msgid "%s() (built-in function)"
+msgstr "%s() (funció interna)"
-#: builders/__init__.py:309
+#: domains/javascript.py:184 domains/python/__init__.py:279
#, python-format
-msgid "targets for %d po files that are out of date"
-msgstr "objectius per als %d fitxers PO que estan desfasats"
-
-#: builders/__init__.py:319
-msgid "all source files"
-msgstr "tots els fitxers font"
+msgid "%s() (%s method)"
+msgstr "%s() (mètode %s)"
-#: builders/__init__.py:330
+#: domains/javascript.py:186
#, python-format
-msgid "file %r given on command line does not exist, "
-msgstr "el fitxer %r proporcionat a la línia d'ordres no existeix, "
+msgid "%s() (class)"
+msgstr "%s() (classe)"
-#: builders/__init__.py:337
+#: domains/javascript.py:188
#, python-format
-msgid ""
-"file %r given on command line is not under the source directory, ignoring"
-msgstr "el fitxer %r proporcionat a la línia d'ordres no es troba sota el directori d'origen, s'ignora"
+msgid "%s (global variable or constant)"
+msgstr "%s (variable global o constant)"
-#: builders/__init__.py:348
+#: domains/javascript.py:190 domains/python/__init__.py:370
#, python-format
-msgid "file %r given on command line is not a valid document, ignoring"
-msgstr "el fitxer %r proporcionat a la línia d'ordres no és un document vàlid, s'ignora"
+msgid "%s (%s attribute)"
+msgstr "%s (atribut %s)"
-#: builders/__init__.py:361
-#, python-format
-msgid "%d source files given on command line"
-msgstr "%d fitxers font proporcionats a la línia d'ordres"
+#: domains/javascript.py:274
+msgid "Arguments"
+msgstr "Arguments"
-#: builders/__init__.py:377
-#, python-format
-msgid "targets for %d source files that are out of date"
-msgstr "els objectius per a %d fitxers font que estan desfasats"
+#: domains/cpp/__init__.py:491 domains/javascript.py:281
+msgid "Throws"
+msgstr "Llançaments"
-#: builders/__init__.py:395 builders/gettext.py:265
-#, python-format
-msgid "building [%s]: "
-msgstr "s'està construint [%s]: "
+#: domains/c/__init__.py:367 domains/cpp/__init__.py:504
+#: domains/javascript.py:288 domains/python/_object.py:221
+msgid "Returns"
+msgstr "Retorna"
-#: builders/__init__.py:406
-msgid "looking for now-outdated files... "
-msgstr "s'està cercant per fitxers sense actualitzar... "
+#: domains/c/__init__.py:373 domains/javascript.py:294
+#: domains/python/_object.py:227
+msgid "Return type"
+msgstr "Tipus de retorn"
-#: builders/__init__.py:410
+#: domains/javascript.py:374
#, python-format
-msgid "%d found"
-msgstr "s'han trobat %d"
-
-#: builders/__init__.py:412
-msgid "none found"
-msgstr "no se n'ha trobat cap"
+msgid "%s (module)"
+msgstr "%s (mòdul)"
-#: builders/__init__.py:419
-msgid "pickling environment"
-msgstr "s'està preparant l'ambient"
+#: domains/c/__init__.py:779 domains/cpp/__init__.py:943
+#: domains/javascript.py:419 domains/python/__init__.py:726
+msgid "function"
+msgstr "funció"
-#: builders/__init__.py:426
-msgid "checking consistency"
-msgstr "s'està comprovant la coherència"
+#: domains/javascript.py:420 domains/python/__init__.py:730
+msgid "method"
+msgstr "mètode"
-#: builders/__init__.py:430
-msgid "no targets are out of date."
-msgstr "no hi ha cap objectiu desfasat."
+#: domains/cpp/__init__.py:941 domains/javascript.py:421
+#: domains/python/__init__.py:728
+msgid "class"
+msgstr "classe"
-#: builders/__init__.py:469
-msgid "updating environment: "
-msgstr "s'està actualitzant l'entorn: "
+#: domains/javascript.py:422 domains/python/__init__.py:727
+msgid "data"
+msgstr "dades"
-#: builders/__init__.py:494
-#, python-format
-msgid "%s added, %s changed, %s removed"
-msgstr "%s afegits, %s canviats, %s eliminats"
+#: domains/javascript.py:423 domains/python/__init__.py:733
+msgid "attribute"
+msgstr "atribut"
-#: builders/__init__.py:531
-#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches a "
-"built-in exclude pattern %r. Please move your master document to a different"
-" location."
-msgstr "L'Sphinx no pot carregar el document mestre (%s) perquè coincideix amb un patró d'exclusió %r a la construcció. Si us plau, moveu el vostre document mestre cap a una altra ubicació."
+#: domains/javascript.py:424 domains/python/__init__.py:736
+msgid "module"
+msgstr "mòdul"
-#: builders/__init__.py:540
+#: domains/javascript.py:458
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches an "
-"exclude pattern specified in conf.py, %r. Please remove this pattern from "
-"conf.py."
-msgstr "L'Sphinx no pot carregar el document mestre (%s) perquè coincideix amb un patró d'exclusió especificat a «conf.py», %r. Si us plau, elimineu aquest patró."
+msgid "duplicate %s description of %s, other %s in %s"
+msgstr "descripció %s duplicada de %s, una altra %s a %s"
-#: builders/__init__.py:551
+#: domains/rst.py:131 domains/rst.py:190
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it is not included"
-" in the custom include_patterns = %r. Ensure that a pattern in "
-"include_patterns matches the master document."
-msgstr "L'Sphinx no pot carregar el document mestre (%s) perquè no s'inclou a l'opció personalitzada include_patterns = %r. Assegureu-vos que un patró a include_patterns coincideixi amb el document mestre."
+msgid "%s (directive)"
+msgstr "%s (directiva)"
-#: builders/__init__.py:558
+#: domains/rst.py:191 domains/rst.py:202
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s). The master document must "
-"be within the source directory or a subdirectory of it."
-msgstr "L'Sphinx no pot carregar el document mestre (%s). El document mestre haurà d'estar dins del directori font o un subdirectori d'aquest."
-
-#: builders/__init__.py:576 builders/__init__.py:592
-msgid "reading sources... "
-msgstr "s'estan llegint les fonts... "
+msgid ":%s: (directive option)"
+msgstr ":%s: (opció de la directiva)"
-#: builders/__init__.py:713
+#: domains/rst.py:224
#, python-format
-msgid "docnames to write: %s"
-msgstr "els docname que s'escriuran: %s"
+msgid "%s (role)"
+msgstr "%s (rol)"
-#: builders/__init__.py:715
-msgid "no docnames to write!"
-msgstr ""
+#: domains/rst.py:234
+msgid "directive"
+msgstr "directiva"
-#: builders/__init__.py:728
-msgid "preparing documents"
-msgstr "s'estan preparant els documents"
+#: domains/rst.py:235
+msgid "directive-option"
+msgstr "opció_de_la_directiva"
-#: builders/__init__.py:731
-msgid "copying assets"
-msgstr "s'estan copiant els recursos"
+#: domains/rst.py:236
+msgid "role"
+msgstr "rol"
-#: builders/__init__.py:883
+#: domains/rst.py:262
#, python-format
-msgid "undecodable source characters, replacing with \"?\": %r"
-msgstr "caràcters font no codificables, substituint per «?»: %r"
+msgid "duplicate description of %s %s, other instance in %s"
+msgstr "descripció duplicada del %s %s, una altra instància a %s"
-#: builders/epub3.py:84
+#: domains/changeset.py:32
#, python-format
-msgid "The ePub file is in %(outdir)s."
-msgstr "El fitxer ePub es troba a %(outdir)s."
+msgid "Added in version %s"
+msgstr "Afegit a la versió %s"
-#: builders/epub3.py:189
-msgid "writing nav.xhtml file..."
-msgstr "s'està escrivint el fitxer nav.xhtml..."
+#: domains/changeset.py:33
+#, python-format
+msgid "Changed in version %s"
+msgstr "Canviat a la versió %s"
-#: builders/epub3.py:221
-msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_language» (o «language») no pot estar buit per a EPUB3"
+#: domains/changeset.py:34
+#, python-format
+msgid "Deprecated since version %s"
+msgstr "Obsolet des de la versió %s"
-#: builders/epub3.py:227
-msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
-msgstr "el valor de configuració «epub_uid» haurà de ser un XML NAME per a EPUB3"
+#: domains/changeset.py:35
+#, python-format
+msgid "Removed in version %s"
+msgstr "S'ha eliminat a la versió %s"
-#: builders/epub3.py:232
-msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_title» (o «html_title») no pot estar buit per a EPUB3"
+#: domains/__init__.py:322
+#, python-format
+msgid "%s %s"
+msgstr "%s %s"
-#: builders/epub3.py:238
-msgid "conf value \"epub_author\" should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_author» no pot estar buit per a EPUB3"
+#: cmd/build.py:64
+msgid "job number should be a positive number"
+msgstr "el número de treball hauria de ser un nombre positiu"
-#: builders/epub3.py:242
-msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_contributor» no pot estar buit per a EPUB3"
+#: cmd/build.py:73 cmd/quickstart.py:582 ext/apidoc/_cli.py:27
+#: ext/autosummary/generate.py:876
+msgid "For more information, visit ."
+msgstr "Per a més informació, visiteu ."
-#: builders/epub3.py:247
-msgid "conf value \"epub_description\" should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_description» no pot estar buit per a EPUB3"
+#: cmd/build.py:74
+msgid ""
+"\n"
+"Generate documentation from source files.\n"
+"\n"
+"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
+"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
+"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
+"including 'conf.py'\n"
+"\n"
+"sphinx-build can create documentation in different formats. A format is\n"
+"selected by specifying the builder name on the command line; it defaults to\n"
+"HTML. Builders can also perform other tasks related to documentation\n"
+"processing.\n"
+"\n"
+"By default, everything that is outdated is built. Output only for selected\n"
+"files can be built by specifying individual filenames.\n"
+msgstr "\nGenerar la documentació a partir dels fitxers font.\n\nL'eina «sphinx-build» generarà la documentació a partir dels fitxers\na SOURCEDIR i els situarà a OUTPUTDIR. Cerqueu el «conf.py» en el\nSOURCEDIR per als paràmetres de configuració. L'eina «sphinx-quickstart» es pot usar per a generar fitxers de plantilla, inclòs el «conf.py».\n\nL'eina «sphinx-build» pot crear documentació en formats diferents. A la\nlínia d'ordres se selecciona un format que especifica el nom del constructor.\nDe manera predeterminada és HTML. Els constructors també poden dur a terme\naltres tasques relacionades amb el processament de la documentació.\n\nDe manera predeterminada, es construeix tot el que està desactualitzat. Es pot\ngenerar la sortida només per als fitxers seleccionats especificant noms de fitxer\nindividuals.\n"
-#: builders/epub3.py:251
-msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_publisher» no pot estar buit per a EPUB3"
+#: cmd/build.py:100
+msgid "path to documentation source files"
+msgstr "camí cap als fitxers font de la documentació"
-#: builders/epub3.py:256
-msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_copyright» (o «copyright») no pot estar buit per a EPUB3"
+#: cmd/build.py:103
+msgid "path to output directory"
+msgstr "camí cap al directori de sortida"
-#: builders/epub3.py:262
-msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_identifier» no pot estar buit per a EPUB3"
+#: cmd/build.py:109
+msgid ""
+"(optional) a list of specific files to rebuild. Ignored if --write-all is "
+"specified"
+msgstr "(opcional) una llista de fitxers específics que s'han de reconstruir. S'ignorarà si s'especifica «--write-all»"
-#: builders/epub3.py:265
-msgid "conf value \"version\" should not be empty for EPUB3"
-msgstr "el valor de configuració «version» no pot estar buit per a EPUB3"
+#: cmd/build.py:114
+msgid "general options"
+msgstr "opcions generals"
-#: builders/epub3.py:279 builders/html/__init__.py:1291
-#, python-format
-msgid "invalid css_file: %r, ignored"
-msgstr "css_file no vàlid: %r, s'ignora"
+#: cmd/build.py:121
+msgid "builder to use (default: 'html')"
+msgstr "constructor que s'usarà (predeterminat: «html»)"
-#: builders/xml.py:31
-#, python-format
-msgid "The XML files are in %(outdir)s."
-msgstr "Els fitxers en XML es troben a %(outdir)s."
+#: cmd/build.py:131
+msgid ""
+"run in parallel with N processes, when possible. 'auto' uses the number of "
+"CPU cores"
+msgstr "executa en paral·lel amb N processos, quan sigui possible. «auto» uxa el nombre de nuclis de la CPU"
-#: builders/html/__init__.py:1241 builders/text.py:76 builders/xml.py:90
-#, python-format
-msgid "error writing file %s: %s"
-msgstr "error en escriure al fitxer %s: %s"
+#: cmd/build.py:140
+msgid "write all files (default: only write new and changed files)"
+msgstr "escriu tots els fitxers (predeterminat: només escriu els fitxers nous i els que han canviat)"
-#: builders/xml.py:101
-#, python-format
-msgid "The pseudo-XML files are in %(outdir)s."
-msgstr "Els fitxers en pseudo XML es troben a %(outdir)s."
+#: cmd/build.py:147
+msgid "don't use a saved environment, always read all files"
+msgstr "no usar un entorn desat, llegeix sempre tots els fitxers"
-#: builders/texinfo.py:45
-#, python-format
-msgid "The Texinfo files are in %(outdir)s."
-msgstr "Els fitxers de Texinfo es troben a %(outdir)s."
+#: cmd/build.py:150
+msgid "path options"
+msgstr "opcions de camí"
-#: builders/texinfo.py:48
+#: cmd/build.py:157
msgid ""
-"\n"
-"Run 'make' in that directory to run these through makeinfo\n"
-"(use 'make info' here to do that automatically)."
-msgstr "\nExecuteu l'ordre «make» en aquest directori per a executar-les mitjançant\nel makeinfo (useu l'ordre «make info» per a fer-ho automàticament)."
+"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
+msgstr "directori per als fitxers doctree i d'entorn (predeterminat: OUTPUT_DIR/.doctrees)"
-#: builders/texinfo.py:77
-msgid "no \"texinfo_documents\" config value found; no documents will be written"
-msgstr "no s'ha trobat el valor de configuració «texinfo_documents»: no s'escriurà cap document"
+#: cmd/build.py:166
+msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
+msgstr "directori per al fitxer de configuració (conf.py) (predeterminat: SOURCE_DIR)"
-#: builders/texinfo.py:89
-#, python-format
-msgid "\"texinfo_documents\" config value references unknown document %s"
-msgstr "El valor de configuració «texinfo_documents» fa referència a un document %s desconegut"
+#: cmd/build.py:175
+msgid "use no configuration file, only use settings from -D options"
+msgstr "no usa cap fitxer de configuració, només usa la configuració de les opcions de «-D»"
-#: builders/latex/__init__.py:325 builders/texinfo.py:113
-#, python-format
-msgid "processing %s"
-msgstr "s'està processant %s"
+#: cmd/build.py:184
+msgid "override a setting in configuration file"
+msgstr "superposa una configuració en el fitxer de configuració"
-#: builders/latex/__init__.py:405 builders/texinfo.py:172
-msgid "resolving references..."
-msgstr "s'estan resolent les referències..."
+#: cmd/build.py:193
+msgid "pass a value into HTML templates"
+msgstr "passa un valor a dins de les plantilles HTML"
-#: builders/latex/__init__.py:416 builders/texinfo.py:182
-msgid " (in "
-msgstr " (a "
+#: cmd/build.py:202
+msgid "define tag: include \"only\" blocks with TAG"
+msgstr "defineix l'etiqueta: inclou blocs «only» amb TAG"
-#: builders/_epub_base.py:422 builders/html/__init__.py:779
-#: builders/latex/__init__.py:481 builders/texinfo.py:198
-msgid "copying images... "
-msgstr "s'estan copiant les imatges... "
+#: cmd/build.py:209
+msgid "nitpicky mode: warn about all missing references"
+msgstr "mode primmirat: avisa sobre totes les referències que manquen"
-#: builders/_epub_base.py:444 builders/latex/__init__.py:496
-#: builders/texinfo.py:215
-#, python-format
-msgid "cannot copy image file %r: %s"
-msgstr "no s'ha pogut copiar el fitxer d'imatge %r: %s"
+#: cmd/build.py:212
+msgid "console output options"
+msgstr "opcions de sortida de la consola"
-#: builders/texinfo.py:222
-msgid "copying Texinfo support files"
-msgstr "s'estan copiant els fitxers de suport de Texinfo"
+#: cmd/build.py:219
+msgid "increase verbosity (can be repeated)"
+msgstr "augmenta la loquacitat (es pot repetir)"
-#: builders/texinfo.py:230
-#, python-format
-msgid "error writing file Makefile: %s"
-msgstr "error en escriure el fitxer Makefile: %s"
+#: cmd/build.py:226 ext/apidoc/_cli.py:66
+msgid "no output on stdout, just warnings on stderr"
+msgstr "sense sortida a la sortida estàndard, només avisos a la sortida d'error estàndard"
-#: builders/_epub_base.py:223
-#, python-format
-msgid "duplicated ToC entry found: %s"
-msgstr "s'ha trobat una entrada ToC duplicada: %s"
+#: cmd/build.py:233
+msgid "no output at all, not even warnings"
+msgstr "sense sortida, ni tan sols els avisos"
-#: builders/_epub_base.py:433
-#, python-format
-msgid "cannot read image file %r: copying it instead"
-msgstr "no s'ha pogut llegir el fitxer d'imatge %r: en el seu lloc, es copia"
+#: cmd/build.py:241
+msgid "do emit colored output (default: auto-detect)"
+msgstr "emet una sortida amb colors (predeterminada: detecció automàtica)"
-#: builders/_epub_base.py:464
-#, python-format
-msgid "cannot write image file %r: %s"
-msgstr "no s'ha pogut escriure el fitxer d'imatge %r: %s"
+#: cmd/build.py:249
+msgid "do not emit colored output (default: auto-detect)"
+msgstr "no emetre una sortida amb colors (predeterminada: detecció automàtica)"
-#: builders/_epub_base.py:476
-msgid "Pillow not found - copying image files"
-msgstr "No s'ha trobat el Pillow: es copien els fitxers d'imatge"
+#: cmd/build.py:252
+msgid "warning control options"
+msgstr "opcions de control d'avís"
-#: builders/_epub_base.py:511
-msgid "writing mimetype file..."
-msgstr "s'està escrivint un fitxer de tipus MIME..."
+#: cmd/build.py:258
+msgid "write warnings (and errors) to given file"
+msgstr "escriviu els avisos (i errors) al fitxer indicat"
-#: builders/_epub_base.py:520
-msgid "writing META-INF/container.xml file..."
-msgstr "s'està escrivint el fitxer META-INF/container.xml..."
+#: cmd/build.py:265
+msgid "turn warnings into errors"
+msgstr "converteix els avisos en errors"
-#: builders/_epub_base.py:558
-msgid "writing content.opf file..."
-msgstr "s'està escrivint el fitxer content.opf..."
+#: cmd/build.py:273
+msgid "show full traceback on exception"
+msgstr "mostra la traça completa en excepció"
-#: builders/_epub_base.py:591
-#, python-format
-msgid "unknown mimetype for %s, ignoring"
-msgstr "tipus MIME desconegut per a %s, s'ignora"
+#: cmd/build.py:276
+msgid "run Pdb on exception"
+msgstr "executa Pdb en excepció"
-#: builders/_epub_base.py:745
-msgid "node has an invalid level"
-msgstr "el node té un nivell no vàlid"
+#: cmd/build.py:282
+msgid "raise an exception on warnings"
+msgstr "planteja una excepció sobre els avisos"
-#: builders/_epub_base.py:765
-msgid "writing toc.ncx file..."
-msgstr "s'està escrivint el fitxer toc.ncx..."
+#: cmd/build.py:325
+msgid "cannot combine -a option and filenames"
+msgstr "no es pot combinar l'opció -a i els noms de fitxer"
-#: builders/_epub_base.py:794
+#: cmd/build.py:357
#, python-format
-msgid "writing %s file..."
-msgstr "s'està escrivint el fitxer %s..."
+msgid "cannot open warning file '%s': %s"
+msgstr "no es pot obrir el fitxer de l'avís «%s»: %s"
-#: builders/dummy.py:19
-msgid "The dummy builder generates no files."
-msgstr "El constructor fictici no genera cap fitxer."
+#: cmd/build.py:376
+msgid "-D option argument must be in the form name=value"
+msgstr "l'argument de l'opció «-D» haurà d'estar en la forma «nom=valor»"
-#: builders/gettext.py:244
-#, python-format
-msgid "The message catalogs are in %(outdir)s."
-msgstr "Els catàlegs de missatges es troben a %(outdir)s."
+#: cmd/build.py:383
+msgid "-A option argument must be in the form name=value"
+msgstr "l'argument de l'opció -A haurà d'estar en la forma «nom=valor»"
-#: builders/gettext.py:266
-#, python-format
-msgid "targets for %d template files"
-msgstr "objectius per a %d fitxers de plantilla"
+#: cmd/quickstart.py:52
+msgid "automatically insert docstrings from modules"
+msgstr "insereix automàticament les docstring des dels mòduls"
-#: builders/gettext.py:271
-msgid "reading templates... "
-msgstr "s'estan llegint les plantilles... "
+#: cmd/quickstart.py:53
+msgid "automatically test code snippets in doctest blocks"
+msgstr "prova automàticament els fragments de codi en els blocs doctest"
-#: builders/gettext.py:307
-msgid "writing message catalogs... "
-msgstr "s'estan escrivint els catàlegs de missatges... "
+#: cmd/quickstart.py:54
+msgid "link between Sphinx documentation of different projects"
+msgstr "enllaç entre la documentació de Sphinx de projectes diferents"
-#: builders/singlehtml.py:35
-#, python-format
-msgid "The HTML page is in %(outdir)s."
-msgstr "La pàgina HTML es troba a %(outdir)s."
+#: cmd/quickstart.py:55
+msgid "write \"todo\" entries that can be shown or hidden on build"
+msgstr "escriu les entrades «todo» que es poden mostrar o ocultar durant la construcció"
-#: builders/singlehtml.py:171
-msgid "assembling single document"
-msgstr "s'està muntant un únic document"
+#: cmd/quickstart.py:56
+msgid "checks for documentation coverage"
+msgstr "comprovacions per a la cobertura de la documentació"
-#: builders/singlehtml.py:189
-msgid "writing additional files"
-msgstr "s'estan escrivint els fitxers addicionals"
+#: cmd/quickstart.py:57
+msgid "include math, rendered as PNG or SVG images"
+msgstr "inclou expressions matemàtiques, mostrades com a imatges PNG o SVG"
-#: builders/linkcheck.py:77
-#, python-format
-msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
-msgstr "Cerqueu qualsevol error a la sortida anterior o en el fitxer %(outdir)s/output.txt"
+#: cmd/quickstart.py:58
+msgid "include math, rendered in the browser by MathJax"
+msgstr "inclou expressions matemàtiques, representades en el navegador per MathJax"
-#: builders/linkcheck.py:149
-#, python-format
-msgid "broken link: %s (%s)"
-msgstr "enllaç trencat: %s (%s)"
+#: cmd/quickstart.py:59
+msgid "conditional inclusion of content based on config values"
+msgstr "inclusió condicional de contingut basat en els valors de la configuració"
-#: builders/linkcheck.py:548
-#, python-format
-msgid "Anchor '%s' not found"
-msgstr "No s'ha trobat l'àncora «%s»"
+#: cmd/quickstart.py:60
+msgid "include links to the source code of documented Python objects"
+msgstr "inclou els enllaços cap al codi font dels objectes documentats en Python"
-#: builders/linkcheck.py:758
-#, python-format
-msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
-msgstr "Ha fallat en compilar expressions regulars a linkcheck_allowed_redirects: %r %s"
-
-#: builders/text.py:29
-#, python-format
-msgid "The text files are in %(outdir)s."
-msgstr "Els fitxers de text es troben a %(outdir)s."
-
-#: transforms/i18n.py:227 transforms/i18n.py:302
-#, python-brace-format
-msgid ""
-"inconsistent footnote references in translated message. original: {0}, "
-"translated: {1}"
-msgstr "referències incoherents de nota al peu en el missatge traduït. Original: {0}, traduït: {1}"
-
-#: transforms/i18n.py:272
-#, python-brace-format
-msgid ""
-"inconsistent references in translated message. original: {0}, translated: "
-"{1}"
-msgstr "referències incoherents en el missatge traduït. Original: {0}, traduït: {1}"
+#: cmd/quickstart.py:61
+msgid "create .nojekyll file to publish the document on GitHub pages"
+msgstr "crea un fitxer .nojekyll per a publicar el document a les pàgines de GitHub"
-#: transforms/i18n.py:322
-#, python-brace-format
-msgid ""
-"inconsistent citation references in translated message. original: {0}, "
-"translated: {1}"
-msgstr "referències incoherents de citació en el missatge traduït. Original: {0}, traduït: {1}"
+#: cmd/quickstart.py:111
+msgid "Please enter a valid path name."
+msgstr "Si us plau, introduïu un nom de camí vàlid."
-#: transforms/i18n.py:344
-#, python-brace-format
-msgid ""
-"inconsistent term references in translated message. original: {0}, "
-"translated: {1}"
-msgstr "referències incoherents de terme en el missatge traduït. Original: {0}, traduït: {1}"
+#: cmd/quickstart.py:127
+msgid "Please enter some text."
+msgstr "Si us plau, introduïu algun text."
-#: builders/html/__init__.py:486 builders/latex/__init__.py:199
-#: transforms/__init__.py:129 writers/manpage.py:98 writers/texinfo.py:220
+#: cmd/quickstart.py:134
#, python-format
-msgid "%b %d, %Y"
-msgstr "%-d %b, %Y"
+msgid "Please enter one of %s."
+msgstr "Si us plau, introduïu un dels %s."
-#: transforms/__init__.py:139
-msgid "could not calculate translation progress!"
-msgstr "no s'ha pogut calcular el progrés de la traducció!"
+#: cmd/quickstart.py:142
+msgid "Please enter either 'y' or 'n'."
+msgstr "Si us plau, introduïu qualsevol de «y» o «n»."
-#: transforms/__init__.py:144
-msgid "no translated elements!"
-msgstr "No hi ha cap element traduït!"
+#: cmd/quickstart.py:148
+msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
+msgstr "Si us plau, introduïu un sufix de fitxer, p. ex., «.rst» o «.txt»."
-#: transforms/__init__.py:253
+#: cmd/quickstart.py:230
#, python-format
+msgid "Welcome to the Sphinx %s quickstart utility."
+msgstr "Us donem la benvinguda a la utilitat d'inici ràpid de Sphinx %s."
+
+#: cmd/quickstart.py:235
msgid ""
-"4 column based index found. It might be a bug of extensions you use: %r"
-msgstr "S'ha trobat un índex basat en 4 columnes. Pot ser un error de les extensions que utilitzeu: %r"
+"Please enter values for the following settings (just press Enter to\n"
+"accept a default value, if one is given in brackets)."
+msgstr "Introduïu els valors per a les configuracions següents (només premeu «Retorn»\nper a acceptar un valor predeterminat, si se'n dona un entre parèntesis)."
-#: transforms/__init__.py:294
+#: cmd/quickstart.py:242
#, python-format
-msgid "Footnote [%s] is not referenced."
-msgstr "La nota al peu [%s] no té una referència."
-
-#: transforms/__init__.py:303
-msgid "Footnote [*] is not referenced."
-msgstr "No es fa referència a la nota al peu [*]."
-
-#: transforms/__init__.py:314
-msgid "Footnote [#] is not referenced."
-msgstr "La nota al peu [núm.] no té una referència."
-
-#: _cli/__init__.py:73
-msgid "Usage:"
-msgstr "Ús:"
+msgid "Selected root path: %s"
+msgstr "Camí arrel seleccionat: %s"
-#: _cli/__init__.py:75
-#, python-brace-format
-msgid "{0} [OPTIONS] []"
-msgstr "{0} [OPCIONS] []"
+#: cmd/quickstart.py:245
+msgid "Enter the root path for documentation."
+msgstr "Introduïu el camí arrel per a la documentació."
-#: _cli/__init__.py:78
-msgid " The Sphinx documentation generator."
-msgstr " El generador de documentació Sphinx."
+#: cmd/quickstart.py:246
+msgid "Root path for the documentation"
+msgstr "Camí arrel per a la documentació"
-#: _cli/__init__.py:87
-msgid "Commands:"
-msgstr "Ordres:"
+#: cmd/quickstart.py:255
+msgid "Error: an existing conf.py has been found in the selected root path."
+msgstr "Error: ja existeix un fitxer conf.py en el camí arrel seleccionat."
-#: _cli/__init__.py:98
-msgid "Options"
-msgstr "Opcions"
+#: cmd/quickstart.py:260
+msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
+msgstr "«sphinx-quickstart» no sobreescriurà els projectes de Sphinx existents."
-#: _cli/__init__.py:113 _cli/__init__.py:181
-msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
-msgstr "Per a més informació, visiteu https://www.sphinx-doc.org/en/master/man/."
+#: cmd/quickstart.py:263
+msgid "Please enter a new root path (or just Enter to exit)"
+msgstr "Introduïu un camí arrel nou (o premeu «Retorn» per a sortir)"
-#: _cli/__init__.py:171
-#, python-brace-format
+#: cmd/quickstart.py:274
msgid ""
-"{0}: error: {1}\n"
-"Run '{0} --help' for information"
-msgstr "{0}: error: {1}\nPer a informació executeu «{0} --help»"
+"You have two options for placing the build directory for Sphinx output.\n"
+"Either, you use a directory \"_build\" within the root path, or you separate\n"
+"\"source\" and \"build\" directories within the root path."
+msgstr "Teniu dues opcions per a col·locar el directori de construcció per a la\nsortida de Sphinx. O useu un directori «_build» dins del camí arrel,\no els directoris separats «source» i «build» dins del camí arrel."
-#: _cli/__init__.py:179
-msgid " Manage documentation with Sphinx."
-msgstr " Gestiona la documentació amb Sphinx."
+#: cmd/quickstart.py:280
+msgid "Separate source and build directories (y/n)"
+msgstr "Separa els directoris «source» i «build» (s/n)"
-#: _cli/__init__.py:191
-msgid "Show the version and exit."
-msgstr "Mostra la versió i surt."
+#: cmd/quickstart.py:287
+msgid ""
+"Inside the root directory, two more directories will be created; \"_templates\"\n"
+"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
+"files. You can enter another prefix (such as \".\") to replace the underscore."
+msgstr "Dins del directori arrel, es crearan dos directoris més: «_templates» per a\nles plantilles HTML personalitzades i «_static» per als fulls d'estil\npersonalitzats i altres fitxers estàtics. Podeu introduir un altre prefix\n(com «.») per a substituir el guió baix."
-#: _cli/__init__.py:199
-msgid "Show this message and exit."
-msgstr "Mostra aquest missatge i surt."
+#: cmd/quickstart.py:292
+msgid "Name prefix for templates and static dir"
+msgstr "Prefix de nom per als directoris «templates» i «static»"
-#: _cli/__init__.py:203
-msgid "Logging"
-msgstr "Registre"
+#: cmd/quickstart.py:298
+msgid ""
+"The project name will occur in several places in the built documentation."
+msgstr "El nom del projecte apareixerà en diversos llocs de la documentació construïda."
-#: _cli/__init__.py:210
-msgid "Increase verbosity (can be repeated)"
-msgstr "Augmenta la verbositat (es pot repetir)"
+#: cmd/quickstart.py:301
+msgid "Project name"
+msgstr "Nom del projecte"
-#: _cli/__init__.py:218
-msgid "Only print errors and warnings."
-msgstr "Imprimeix només els errors i els avisos."
+#: cmd/quickstart.py:303
+msgid "Author name(s)"
+msgstr "Noms de l'autoria"
-#: _cli/__init__.py:225
-msgid "No output at all"
-msgstr "Cap sortida en absolut"
+#: cmd/quickstart.py:309
+msgid ""
+"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
+"software. Each version can have multiple releases. For example, for\n"
+"Python the version is something like 2.5 or 3.0, while the release is\n"
+"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
+"just set both to the same value."
+msgstr "Sphinx té la noció d'una «versió» i un «llançament» per al programari.\nCada versió pot tenir múltiples versions. Per exemple, per a Python,\nla versió és una cosa semblant a 2.5 o 3.0, mentre que el llançament és\ncom 2.5.1 o 3.0a1. Si no necessiteu aquesta doble estructura, senzillament\nestabliu ambdues amb el mateix valor."
-#: _cli/__init__.py:231
-msgid ""
-msgstr ""
+#: cmd/quickstart.py:316
+msgid "Project version"
+msgstr "Versió del projecte"
-#: _cli/__init__.py:263
-msgid "See 'sphinx --help'.\n"
-msgstr "Vegeu «sphinx --help».\n"
+#: cmd/quickstart.py:318
+msgid "Project release"
+msgstr "Llançament del projecte"
-#: environment/__init__.py:86
-msgid "new config"
-msgstr "configuració nova"
+#: cmd/quickstart.py:324
+msgid ""
+"If the documents are to be written in a language other than English,\n"
+"you can select a language here by its language code. Sphinx will then\n"
+"translate text that it generates into that language.\n"
+"\n"
+"For a list of supported codes, see\n"
+"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
+msgstr "Si els documents s'han d'escriure en un idioma que no sigui l'anglès,\npodeu seleccionar un idioma aquí per al vostre codi d'idioma.\nA continuació, Sphinx traduirà el text que es genera en aquest idioma.\n\nPer a obtenir una llista dels codis admesos, vegeu\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
-#: environment/__init__.py:87
-msgid "config changed"
-msgstr "configuració modificada"
+#: cmd/quickstart.py:332
+msgid "Project language"
+msgstr "Idioma del projecte"
-#: environment/__init__.py:88
-msgid "extensions changed"
-msgstr "extensions modificades"
+#: cmd/quickstart.py:340
+msgid ""
+"The file name suffix for source files. Commonly, this is either \".txt\"\n"
+"or \".rst\". Only files with this suffix are considered documents."
+msgstr "El sufix del nom del fitxer per als fitxers d'origen. Normalment, aquest és\n«.txt» o «.rst». Només els fitxers amb aquest sufix es consideraran documents."
-#: environment/__init__.py:253
-msgid "build environment version not current"
-msgstr "la versió de l'entorn de compilació no és actual"
+#: cmd/quickstart.py:344
+msgid "Source file suffix"
+msgstr "Sufix del fitxer font"
-#: environment/__init__.py:255
-msgid "source directory has changed"
-msgstr "el directori d'origen ha estat modificat"
+#: cmd/quickstart.py:350
+msgid ""
+"One document is special in that it is considered the top node of the\n"
+"\"contents tree\", that is, it is the root of the hierarchical structure\n"
+"of the documents. Normally, this is \"index\", but if your \"index\"\n"
+"document is a custom template, you can also set this to another filename."
+msgstr "Un document és especial perquè es considera el node superior de l'«arbre de\ncontingut», és a dir, és l'arrel de l'estructura jeràrquica dels documents.\nNormalment, es tracta de l'«index», però si el document «index» és una\nplantilla personalitzada, també podreu establir-la a un altre nom de fitxer."
-#: environment/__init__.py:325
-#, python-format
-msgid "The configuration has changed (1 option: %r)"
-msgstr "La configuració ha estat canviada (1 opció: %r)"
+#: cmd/quickstart.py:357
+msgid "Name of your master document (without suffix)"
+msgstr "Nom del document mestre (sense sufix)"
-#: environment/__init__.py:330
+#: cmd/quickstart.py:368
#, python-format
-msgid "The configuration has changed (%d options: %s)"
-msgstr "La configuració ha estat canviada (%d opcions: %s)"
+msgid ""
+"Error: the master file %s has already been found in the selected root path."
+msgstr "Error: el fitxer mestre %s ja es troba en el camí arrel seleccionat."
-#: environment/__init__.py:336
-#, python-format
-msgid "The configuration has changed (%d options: %s, ...)"
-msgstr "La configuració ha estat canviada (%d opcions: %s, «...»)"
+#: cmd/quickstart.py:374
+msgid "sphinx-quickstart will not overwrite the existing file."
+msgstr "«sphinx-quickstart» no sobreescriurà el fitxer existent."
-#: environment/__init__.py:379
+#: cmd/quickstart.py:378
msgid ""
-"This environment is incompatible with the selected builder, please choose "
-"another doctree directory."
-msgstr "Aquest entorn és incompatible amb el constructor seleccionat, trieu un altre directori doctree."
+"Please enter a new file name, or rename the existing file and press Enter"
+msgstr "Introduïu un nom de fitxer nou o canvieu-ne el nom i premeu «Retorn»"
-#: environment/__init__.py:493
-#, python-format
-msgid "Failed to scan documents in %s: %r"
-msgstr "Ha fallat en escanejar els documents a %s: %r"
+#: cmd/quickstart.py:386
+msgid "Indicate which of the following Sphinx extensions should be enabled:"
+msgstr "Indiqueu quines de les extensions següents de Sphinx haurien d'estar habilitades:"
-#: environment/__init__.py:658 ext/intersphinx/_resolve.py:234
-#, python-format
-msgid "Domain %r is not registered"
-msgstr "El domini %r no està registrat"
+#: cmd/quickstart.py:397
+msgid ""
+"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
+"been deselected."
+msgstr "Nota: «imgmath» i «mathjax» no es poden habilitar alhora. «imgmath» ha estat desseleccionat."
-#: environment/__init__.py:813
-msgid "document isn't included in any toctree"
-msgstr "el document no està inclòs en cap toctree"
+#: cmd/quickstart.py:407
+msgid ""
+"A Makefile and a Windows command file can be generated for you so that you\n"
+"only have to run e.g. `make html' instead of invoking sphinx-build\n"
+"directly."
+msgstr "Es pot generar un fitxer Makefile i un fitxer d'ordres de Windows,\nde manera que només haureu d'executar, p. ex., «make html»\nen lloc d'invocar directament «sphinx-build»."
-#: environment/__init__.py:859
-msgid "self referenced toctree found. Ignored."
-msgstr "S'ha trobat un toctree autoreferenciat. S'ignora."
+#: cmd/quickstart.py:412
+msgid "Create Makefile? (y/n)"
+msgstr "Voleu crear el Makefile? (s/n)"
-#: environment/__init__.py:889
-#, python-format
-msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
-msgstr "es fa referència al document en múltiples toctree: %s, se selecciona: %s <- %s"
+#: cmd/quickstart.py:416
+msgid "Create Windows command file? (y/n)"
+msgstr "Voleu crear el fitxer d'ordres de Windows? (s/n)"
-#: util/i18n.py:100
+#: cmd/quickstart.py:468 ext/apidoc/_generate.py:76
#, python-format
-msgid "reading error: %s, %s"
-msgstr "error de lectura: %s, %s"
+msgid "Creating file %s."
+msgstr "S'està creant el fitxer %s."
-#: util/i18n.py:113
+#: cmd/quickstart.py:473 ext/apidoc/_generate.py:73
#, python-format
-msgid "writing error: %s, %s"
-msgstr "error d'escriptura: %s, %s"
+msgid "File %s already exists, skipping."
+msgstr "El fitxer %s ja existeix, se salta."
-#: util/i18n.py:146
-#, python-format
-msgid "locale_dir %s does not exist"
-msgstr "locale_dir %s no existeix"
+#: cmd/quickstart.py:516
+msgid "Finished: An initial directory structure has been created."
+msgstr "Finalitzat: s'ha creat una estructura inicial del directori."
-#: util/i18n.py:236
+#: cmd/quickstart.py:520
#, python-format
-msgid "Invalid Babel locale: %r."
-msgstr ""
+msgid ""
+"You should now populate your master file %s and create other documentation\n"
+"source files. "
+msgstr "Ara heu de completar el fitxer mestre %s i crear altres fitxers font de documentació. "
-#: util/i18n.py:245
-#, python-format
+#: cmd/quickstart.py:527
msgid ""
-"Invalid date format. Quote the string by single quote if you want to output "
-"it directly: %s"
-msgstr "Format de data no vàlid. Citeu la cadena amb cometes senzilles si voleu generar-la directament: %s"
+"Use the Makefile to build the docs, like so:\n"
+" make builder"
+msgstr "Useu el Makefile per a construir els documents, com segueix:\n make builder"
-#: util/docfields.py:103
+#: cmd/quickstart.py:531
#, python-format
msgid ""
-"Problem in %s domain: field is supposed to use role '%s', but that role is "
-"not in the domain."
-msgstr "Problema en el domini %s: se suposa que el camp usa el rol «%s», però no es troba en el domini."
+"Use the sphinx-build command to build the docs, like so:\n"
+" sphinx-build -b builder %s %s"
+msgstr "Useu l'ordre «sphinx-build» per a construir els documents, com segueix:\n sphinx-build -b constructor %s %s"
-#: util/nodes.py:423
-#, python-format
+#: cmd/quickstart.py:538
msgid ""
-"%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead."
-msgstr "%r està en desús per a les entrades d'índex (des de l'entrada %r). En el seu lloc useu «pair: %s»."
+"where \"builder\" is one of the supported builders, e.g. html, latex or "
+"linkcheck."
+msgstr "on «constructor» és un dels constructors admesos, p. ex., html, latex o linkcheck."
-#: util/nodes.py:490
-#, python-format
-msgid "toctree contains ref to nonexisting file %r"
-msgstr "el toctree conté una referència cap al fitxer %r que no existeix"
+#: cmd/quickstart.py:573
+msgid ""
+"\n"
+"Generate required files for a Sphinx project.\n"
+"\n"
+"sphinx-quickstart is an interactive tool that asks some questions about your\n"
+"project and then generates a complete documentation directory and sample\n"
+"Makefile to be used with sphinx-build.\n"
+msgstr "\nGenereu els fitxers necessaris per a un projecte Sphinx.\n\n«sphinx-quickstart» és una eina interactiva que fa algunes preguntes sobre el\nprojecte i després genera un directori complet de documentació i un\nexemple del fitxer Makefile per a ser usat amb l'ordre «sphinx-build».\n"
-#: util/nodes.py:706
-#, python-format
-msgid "exception while evaluating only directive expression: %s"
-msgstr "excepció mentre només s'avaluava l'expressió directiva: %s"
+#: cmd/quickstart.py:592
+msgid "quiet mode"
+msgstr "mode silenciós"
-#: util/display.py:82
-msgid "skipped"
-msgstr "s'omet"
+#: cmd/quickstart.py:602
+msgid "project root"
+msgstr "arrel del projecte"
-#: util/display.py:87
-msgid "failed"
-msgstr "ha fallat"
+#: cmd/quickstart.py:605
+msgid "Structure options"
+msgstr "Opcions de l'estructura"
-#: util/osutil.py:131
+#: cmd/quickstart.py:611
+msgid "if specified, separate source and build dirs"
+msgstr "Si s'especifica, se separarà el codi font i els directoris de compilació"
+
+#: cmd/quickstart.py:617
+msgid "if specified, create build dir under source dir"
+msgstr "Si s'especifica, es crearà el directori de construcció a dins del directori d'origen"
+
+#: cmd/quickstart.py:623
+msgid "replacement for dot in _templates etc."
+msgstr "substitució per a punts a _templates, etc."
+
+#: cmd/quickstart.py:626
+msgid "Project basic options"
+msgstr "Opcions bàsiques del projecte"
+
+#: cmd/quickstart.py:628
+msgid "project name"
+msgstr "nom del projecte"
+
+#: cmd/quickstart.py:631
+msgid "author names"
+msgstr "noms de l'autoria"
+
+#: cmd/quickstart.py:638
+msgid "version of project"
+msgstr "versió del projecte"
+
+#: cmd/quickstart.py:645
+msgid "release of project"
+msgstr "llançament del projecte"
+
+#: cmd/quickstart.py:652
+msgid "document language"
+msgstr "idioma del document"
+
+#: cmd/quickstart.py:655
+msgid "source file suffix"
+msgstr "sufix del fitxer font"
+
+#: cmd/quickstart.py:658
+msgid "master document name"
+msgstr "nom del document mestre"
+
+#: cmd/quickstart.py:661
+msgid "use epub"
+msgstr "usa epub"
+
+#: cmd/quickstart.py:664
+msgid "Extension options"
+msgstr "Opcions de l'extensió"
+
+#: cmd/quickstart.py:671
#, python-format
+msgid "enable %s extension"
+msgstr "habilita l'extensió %s"
+
+#: cmd/quickstart.py:678
+msgid "enable arbitrary extensions"
+msgstr "habilita les extensions arbitràries"
+
+#: cmd/quickstart.py:681
+msgid "Makefile and Batchfile creation"
+msgstr "Creació dels fitxers Makefile i de processament per lots"
+
+#: cmd/quickstart.py:687
+msgid "create makefile"
+msgstr "es crea el Makefile"
+
+#: cmd/quickstart.py:693
+msgid "do not create makefile"
+msgstr "no es crea el Makefile"
+
+#: cmd/quickstart.py:700
+msgid "create batchfile"
+msgstr "es crea el fitxer de processament per lots"
+
+#: cmd/quickstart.py:706
+msgid "do not create batchfile"
+msgstr "no es crea el fitxer de processament per lots"
+
+#: cmd/quickstart.py:715
+msgid "use make-mode for Makefile/make.bat"
+msgstr "usa el mode make per a Makefile/make.bat"
+
+#: cmd/quickstart.py:718 ext/apidoc/_cli.py:243
+msgid "Project templating"
+msgstr "Plantilles de projecte"
+
+#: cmd/quickstart.py:724 ext/apidoc/_cli.py:249
+msgid "template directory for template files"
+msgstr "directori de plantilles per als fitxers de plantilla"
+
+#: cmd/quickstart.py:731
+msgid "define a template variable"
+msgstr "defineix una variable de plantilla"
+
+#: cmd/quickstart.py:767
+msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
+msgstr "s'especifica «quiet», però no s'especifica cap «project» o «author»."
+
+#: cmd/quickstart.py:786
msgid ""
-"Aborted attempted copy from %s to %s (the destination path has existing "
-"data)."
-msgstr "S'ha interromput l'intent de còpia des de %s a %s (hi ha dades existents al camí de destinació)."
+"Error: specified path is not a directory, or sphinx files already exist."
+msgstr "Error: el camí especificat no és un directori o ja hi ha els fitxers de Sphinx."
+
+#: cmd/quickstart.py:793
+msgid ""
+"sphinx-quickstart only generate into a empty directory. Please specify a new"
+" root path."
+msgstr "«sphinx-quickstart» només generarà dins d'un directori buit. Especifiqueu un camí arrel nou."
-#: util/docutils.py:309
+#: cmd/quickstart.py:810
#, python-format
-msgid "unknown directive name: %s"
-msgstr ""
+msgid "Invalid template variable: %s"
+msgstr "Variable no vàlida de plantilla: %s"
-#: util/docutils.py:345
+#: directives/other.py:119
#, python-format
-msgid "unknown role name: %s"
-msgstr ""
+msgid "toctree glob pattern %r didn't match any documents"
+msgstr "El patró global toctree %r no coincideix amb cap document"
-#: util/docutils.py:789
+#: directives/other.py:153 environment/adapters/toctree.py:372
#, python-format
-msgid "unknown node type: %r"
-msgstr "tipus de node desconegut: %r"
+msgid "toctree contains reference to excluded document %r"
+msgstr "el toctree conté una referència cap al document exclòs %r"
-#: util/fileutil.py:76
+#: directives/other.py:156
+#, python-format
+msgid "toctree contains reference to nonexisting document %r"
+msgstr "el toctree conté una referència cap al document %r, el qual no existeix"
+
+#: directives/other.py:169
#, python-format
+msgid "duplicated entry found in toctree: %s"
+msgstr "s'ha trobat una entrada duplicada en el toctree: %s"
+
+#: directives/other.py:203
+msgid "Section author: "
+msgstr "Autor de la secció:"
+
+#: directives/other.py:205
+msgid "Module author: "
+msgstr "Autor del mòdul: "
+
+#: directives/other.py:207
+msgid "Code author: "
+msgstr "Autor del codi: "
+
+#: directives/other.py:209
+msgid "Author: "
+msgstr "Autor: "
+
+#: directives/other.py:269
+msgid ".. acks content is not a list"
+msgstr "... el contingut dels reconeixements no és una llista"
+
+#: directives/other.py:292
+msgid ".. hlist content is not a list"
+msgstr "... el contingut de l'historial no és una llista"
+
+#: directives/patches.py:70
msgid ""
-"Aborted attempted copy from rendered template %s to %s (the destination path"
-" has existing data)."
-msgstr "S'ha interromput l'intent de còpia des de la plantilla representada %s a %s (hi ha dades existents al camí de destinació)."
+"\":file:\" option for csv-table directive now recognizes an absolute path as"
+" a relative path from source directory. Please update your document."
+msgstr "«:file:» l'opció per a la directiva «csv-table» ara reconeix un camí absolut com a camí relatiu des del directori d'origen. Actualitzeu el vostre document."
-#: util/fileutil.py:89
+#: directives/code.py:66
+msgid "non-whitespace stripped by dedent"
+msgstr "cap espai en blanc eliminat en disminuir el sagnat"
+
+#: directives/code.py:87
#, python-format
-msgid "Writing evaluated template result to %s"
-msgstr "Escriu el resultat de la plantilla avaluada a %s"
+msgid "Invalid caption: %s"
+msgstr "Subtítol no vàlid: %s"
-#: util/rst.py:73
+#: directives/code.py:131 directives/code.py:297 directives/code.py:483
#, python-format
-msgid "default role %s not found"
-msgstr "no s'ha trobat el rol predeterminat %s"
+msgid "line number spec is out of range(1-%d): %r"
+msgstr "l'especificació del número de línia queda fora de l'interval (1-%d): %r"
-#: util/inventory.py:147
+#: directives/code.py:216
#, python-format
-msgid "inventory <%s> contains duplicate definitions of %s"
-msgstr "l'inventari <%s> conté definicions duplicades de %s"
+msgid "Cannot use both \"%s\" and \"%s\" options"
+msgstr "No es poden usar ambdues opcions «%s» i «%s»"
-#: util/inventory.py:166
+#: directives/code.py:231
#, python-format
-msgid "inventory <%s> contains multiple definitions for %s"
-msgstr "l'inventari <%s> conté múltiples definicions per a %s"
+msgid "Include file '%s' not found or reading it failed"
+msgstr "No s'ha trobat el fitxer d'inclusió «%s» o n'ha fallat la lectura"
-#: writers/latex.py:1097 writers/manpage.py:259 writers/texinfo.py:663
-msgid "Footnotes"
-msgstr "Notes al peu"
+#: directives/code.py:235
+#, python-format
+msgid ""
+"Encoding %r used for reading included file '%s' seems to be wrong, try "
+"giving an :encoding: option"
+msgstr "La codificació %r emprada per a llegir el fitxer d'inclusió «%s» sembla ser incorrecta, proveu indicant una opció :encoding:"
-#: writers/manpage.py:289 writers/text.py:945
+#: directives/code.py:276
#, python-format
-msgid "[image: %s]"
-msgstr "[imatge: %s]"
+msgid "Object named %r not found in include file %r"
+msgstr "L'objecte anomenat %r no es troba en el fitxer inclòs %r"
-#: writers/manpage.py:290 writers/text.py:946
-msgid "[image]"
-msgstr "[imatge]"
+#: directives/code.py:309
+msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
+msgstr "No podeu usar «lineno-match» amb un conjunt desarticulat de «línies»"
+
+#: directives/code.py:314
+#, python-format
+msgid "Line spec %r: no lines pulled from include file %r"
+msgstr "Línia específica %r: No hi ha cap línia llançada des del fitxer inclòs %r"
-#: builders/latex/__init__.py:206 domains/std/__init__.py:771
-#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:106
+#: builders/html/__init__.py:475 builders/latex/__init__.py:196
+#: transforms/__init__.py:134 writers/manpage.py:97 writers/texinfo.py:220
+#, python-format
+msgid "%b %d, %Y"
+msgstr "%-d %b, %Y"
+
+#: builders/latex/__init__.py:203 domains/std/__init__.py:771
+#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:107
#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
@@ -1747,11 +2293,15 @@ msgstr "[imatge]"
msgid "Index"
msgstr "Índex"
-#: writers/latex.py:743 writers/texinfo.py:646
+#: writers/latex.py:768 writers/texinfo.py:646
msgid ""
"encountered title node not in section, topic, table, admonition or sidebar"
msgstr "el node del títol no s'ha trobat en la secció, tema, taula, advertiment o nota al marge"
+#: writers/latex.py:1118 writers/manpage.py:258 writers/texinfo.py:663
+msgid "Footnotes"
+msgstr "Notes al peu"
+
#: writers/texinfo.py:1217
msgid "caption not inside a figure."
msgstr "el subtítol no es troba dins d'una figura."
@@ -1761,53 +2311,14 @@ msgstr "el subtítol no es troba dins d'una figura."
msgid "unimplemented node type: %r"
msgstr "tipus de node sense implementar: %r"
-#: writers/latex.py:361
+#: writers/manpage.py:288 writers/text.py:971
#, python-format
-msgid "unknown %r toplevel_sectioning for class %r"
-msgstr "%r toplevel_sectioning desconegut per a la classe %r"
+msgid "[image: %s]"
+msgstr "[imatge: %s]"
-#: builders/latex/__init__.py:224 writers/latex.py:411
-#, python-format
-msgid "no Babel option known for language %r"
-msgstr "no es coneix l'opció de Babel per a l'idioma %r"
-
-#: writers/latex.py:429
-msgid "too large :maxdepth:, ignored."
-msgstr ":maxdepth: massa gran, s'ignora."
-
-#: writers/latex.py:591
-#, python-format
-msgid "template %s not found; loading from legacy %s instead"
-msgstr "no s'ha trobat la plantilla %s. En el seu lloc s'està carregant des del llegat %s"
-
-#: writers/latex.py:707
-msgid "document title is not a single Text node"
-msgstr "el títol del document no és només un node de text"
-
-#: writers/html5.py:572 writers/latex.py:1106
-#, python-format
-msgid "unsupported rubric heading level: %s"
-msgstr "nivell de capçalera de rúbrica no compatible: %s"
-
-#: writers/latex.py:1183
-msgid ""
-"both tabularcolumns and :widths: option are given. :widths: is ignored."
-msgstr "s'indiquen tant les columnes tabulars com l'opció «:widths:». S'ignora l'opció «:widths:»."
-
-#: writers/latex.py:1580
-#, python-format
-msgid "dimension unit %s is invalid. Ignored."
-msgstr "la unitat de dimensió %s no és vàlida. S'ignora."
-
-#: writers/latex.py:1939
-#, python-format
-msgid "unknown index entry type %s found"
-msgstr "s'ha trobat el tipus d'entrada %s amb un índex desconegut"
-
-#: domains/math.py:128 writers/latex.py:2495
-#, python-format
-msgid "Invalid math_eqref_format: %r"
-msgstr "math_eqref_format no vàlid: %r"
+#: writers/manpage.py:289 writers/text.py:972
+msgid "[image]"
+msgstr "[imatge]"
#: writers/html5.py:96 writers/html5.py:105
msgid "Link to this definition"
@@ -1835,6 +2346,11 @@ msgstr "Enllaça amb aquesta capçalera"
msgid "Link to this table"
msgstr "Enllaça amb aquesta taula"
+#: writers/html5.py:572 writers/latex.py:1127
+#, python-format
+msgid "unsupported rubric heading level: %s"
+msgstr "nivell de capçalera de rúbrica no compatible: %s"
+
#: writers/html5.py:636
msgid "Link to this code"
msgstr "Enllaça amb aquest codi"
@@ -1851,794 +2367,478 @@ msgstr "Enllaça amb aquest toctree"
msgid "Could not obtain image size. :scale: option is ignored."
msgstr "No s'ha pogut obtenir la mida de la imatge. S'ignora l'opció «:scale:»."
-#: domains/__init__.py:322
+#: writers/latex.py:386
#, python-format
-msgid "%s %s"
-msgstr "%s %s"
+msgid "unknown %r toplevel_sectioning for class %r"
+msgstr "%r toplevel_sectioning desconegut per a la classe %r"
-#: domains/math.py:73
+#: builders/latex/__init__.py:221 writers/latex.py:436
#, python-format
-msgid "duplicate label of equation %s, other instance in %s"
-msgstr "etiqueta duplicada de l'equació %s, una altra instància a %s"
+msgid "no Babel option known for language %r"
+msgstr "no es coneix l'opció de Babel per a l'idioma %r"
-#: domains/javascript.py:182
-#, python-format
-msgid "%s() (built-in function)"
-msgstr "%s() (funció interna)"
+#: writers/latex.py:454
+msgid "too large :maxdepth:, ignored."
+msgstr ":maxdepth: massa gran, s'ignora."
-#: domains/javascript.py:183 domains/python/__init__.py:287
+#: writers/latex.py:616
#, python-format
-msgid "%s() (%s method)"
-msgstr "%s() (mètode %s)"
+msgid "template %s not found; loading from legacy %s instead"
+msgstr "no s'ha trobat la plantilla %s. En el seu lloc s'està carregant des del llegat %s"
+
+#: writers/latex.py:732
+msgid "document title is not a single Text node"
+msgstr "el títol del document no és només un node de text"
-#: domains/javascript.py:185
+#: writers/latex.py:1198
+msgid ""
+"both tabularcolumns and :widths: option are given. :widths: is ignored."
+msgstr "s'indiquen tant les columnes tabulars com l'opció «:widths:». S'ignora l'opció «:widths:»."
+
+#: writers/latex.py:1228
#, python-format
-msgid "%s() (class)"
-msgstr "%s() (classe)"
+msgid ""
+"colspec %s was given which appears to use tabulary syntax. But this table "
+"can not be rendered as a tabulary; the given colspec will be ignored."
+msgstr "S'ha donat colspec %s, el qual sembla usar la sintaxi tabular. Però aquesta taula no es pot representar com a tabular, el colspec donat s'ignorarà."
-#: domains/javascript.py:187
+#: writers/latex.py:1615
#, python-format
-msgid "%s (global variable or constant)"
-msgstr "%s (variable global o constant)"
+msgid "dimension unit %s is invalid. Ignored."
+msgstr "la unitat de dimensió %s no és vàlida. S'ignora."
-#: domains/javascript.py:189 domains/python/__init__.py:378
+#: writers/latex.py:1950
#, python-format
-msgid "%s (%s attribute)"
-msgstr "%s (atribut %s)"
+msgid "unknown index entry type %s found"
+msgstr "s'ha trobat el tipus d'entrada %s amb un índex desconegut"
-#: domains/javascript.py:273
-msgid "Arguments"
-msgstr "Arguments"
+#: _cli/__init__.py:73
+msgid "Usage:"
+msgstr "Ús:"
-#: domains/cpp/__init__.py:489 domains/javascript.py:280
-msgid "Throws"
-msgstr "Llançaments"
+#: _cli/__init__.py:75
+#, python-brace-format
+msgid "{0} [OPTIONS] []"
+msgstr "{0} [OPCIONS] []"
-#: domains/c/__init__.py:339 domains/cpp/__init__.py:502
-#: domains/javascript.py:287 domains/python/_object.py:221
-msgid "Returns"
-msgstr "Retorna"
+#: _cli/__init__.py:78
+msgid " The Sphinx documentation generator."
+msgstr " El generador de documentació Sphinx."
-#: domains/c/__init__.py:345 domains/javascript.py:293
-#: domains/python/_object.py:227
-msgid "Return type"
-msgstr "Tipus de retorn"
+#: _cli/__init__.py:87
+msgid "Commands:"
+msgstr "Ordres:"
-#: domains/javascript.py:370
-#, python-format
-msgid "%s (module)"
-msgstr "%s (mòdul)"
+#: _cli/__init__.py:98
+msgid "Options"
+msgstr "Opcions"
-#: domains/c/__init__.py:751 domains/cpp/__init__.py:941
-#: domains/javascript.py:415 domains/python/__init__.py:740
-msgid "function"
-msgstr "funció"
+#: _cli/__init__.py:113 _cli/__init__.py:181
+msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
+msgstr "Per a més informació, visiteu https://www.sphinx-doc.org/en/master/man/."
-#: domains/javascript.py:416 domains/python/__init__.py:744
-msgid "method"
-msgstr "mètode"
+#: _cli/__init__.py:171
+#, python-brace-format
+msgid ""
+"{0}: error: {1}\n"
+"Run '{0} --help' for information"
+msgstr "{0}: error: {1}\nPer a informació executeu «{0} --help»"
-#: domains/cpp/__init__.py:939 domains/javascript.py:417
-#: domains/python/__init__.py:742
-msgid "class"
-msgstr "classe"
+#: _cli/__init__.py:179
+msgid " Manage documentation with Sphinx."
+msgstr " Gestiona la documentació amb Sphinx."
-#: domains/javascript.py:418 domains/python/__init__.py:741
-msgid "data"
-msgstr "dades"
+#: _cli/__init__.py:191
+msgid "Show the version and exit."
+msgstr "Mostra la versió i surt."
-#: domains/javascript.py:419 domains/python/__init__.py:747
-msgid "attribute"
-msgstr "atribut"
+#: _cli/__init__.py:199
+msgid "Show this message and exit."
+msgstr "Mostra aquest missatge i surt."
-#: domains/javascript.py:420 domains/python/__init__.py:750
-msgid "module"
-msgstr "mòdul"
+#: _cli/__init__.py:203
+msgid "Logging"
+msgstr "Registre"
-#: domains/javascript.py:454
-#, python-format
-msgid "duplicate %s description of %s, other %s in %s"
-msgstr "descripció %s duplicada de %s, una altra %s a %s"
+#: _cli/__init__.py:210
+msgid "Increase verbosity (can be repeated)"
+msgstr "Augmenta la verbositat (es pot repetir)"
-#: domains/changeset.py:26
-#, python-format
-msgid "Added in version %s"
-msgstr "Afegit a la versió %s"
+#: _cli/__init__.py:218
+msgid "Only print errors and warnings."
+msgstr "Imprimeix només els errors i els avisos."
-#: domains/changeset.py:27
-#, python-format
-msgid "Changed in version %s"
-msgstr "Canviat a la versió %s"
+#: _cli/__init__.py:225
+msgid "No output at all"
+msgstr "Cap sortida en absolut"
-#: domains/changeset.py:28
-#, python-format
-msgid "Deprecated since version %s"
-msgstr "Obsolet des de la versió %s"
+#: _cli/__init__.py:231
+msgid ""
+msgstr ""
-#: domains/changeset.py:29
-#, python-format
-msgid "Removed in version %s"
-msgstr "S'ha eliminat a la versió %s"
+#: _cli/__init__.py:263
+msgid "See 'sphinx --help'.\n"
+msgstr "Vegeu «sphinx --help».\n"
-#: domains/rst.py:131 domains/rst.py:190
-#, python-format
-msgid "%s (directive)"
-msgstr "%s (directiva)"
+#: transforms/i18n.py:230 transforms/i18n.py:305
+#, python-brace-format
+msgid ""
+"inconsistent footnote references in translated message. original: {0}, "
+"translated: {1}"
+msgstr "referències incoherents de nota al peu en el missatge traduït. Original: {0}, traduït: {1}"
-#: domains/rst.py:191 domains/rst.py:202
+#: transforms/i18n.py:275
+#, python-brace-format
+msgid ""
+"inconsistent references in translated message. original: {0}, translated: "
+"{1}"
+msgstr "referències incoherents en el missatge traduït. Original: {0}, traduït: {1}"
+
+#: transforms/i18n.py:325
+#, python-brace-format
+msgid ""
+"inconsistent citation references in translated message. original: {0}, "
+"translated: {1}"
+msgstr "referències incoherents de citació en el missatge traduït. Original: {0}, traduït: {1}"
+
+#: transforms/i18n.py:347
+#, python-brace-format
+msgid ""
+"inconsistent term references in translated message. original: {0}, "
+"translated: {1}"
+msgstr "referències incoherents de terme en el missatge traduït. Original: {0}, traduït: {1}"
+
+#: transforms/__init__.py:144
+msgid "could not calculate translation progress!"
+msgstr "no s'ha pogut calcular el progrés de la traducció!"
+
+#: transforms/__init__.py:149
+msgid "no translated elements!"
+msgstr "No hi ha cap element traduït!"
+
+#: transforms/__init__.py:258
#, python-format
-msgid ":%s: (directive option)"
-msgstr ":%s: (opció de la directiva)"
+msgid ""
+"4 column based index found. It might be a bug of extensions you use: %r"
+msgstr "S'ha trobat un índex basat en 4 columnes. Pot ser un error de les extensions que utilitzeu: %r"
-#: domains/rst.py:224
+#: transforms/__init__.py:299
#, python-format
-msgid "%s (role)"
-msgstr "%s (rol)"
+msgid "Footnote [%s] is not referenced."
+msgstr "La nota al peu [%s] no té una referència."
-#: domains/rst.py:234
-msgid "directive"
-msgstr "directiva"
+#: transforms/__init__.py:308
+msgid "Footnote [*] is not referenced."
+msgstr "No es fa referència a la nota al peu [*]."
-#: domains/rst.py:235
-msgid "directive-option"
-msgstr "opció_de_la_directiva"
+#: transforms/__init__.py:319
+msgid "Footnote [#] is not referenced."
+msgstr "La nota al peu [núm.] no té una referència."
-#: domains/rst.py:236
-msgid "role"
-msgstr "rol"
+#: util/inventory.py:147
+#, python-format
+msgid "inventory <%s> contains duplicate definitions of %s"
+msgstr "l'inventari <%s> conté definicions duplicades de %s"
-#: domains/rst.py:262
+#: util/inventory.py:166
#, python-format
-msgid "duplicate description of %s %s, other instance in %s"
-msgstr "descripció duplicada del %s %s, una altra instància a %s"
+msgid "inventory <%s> contains multiple definitions for %s"
+msgstr "l'inventari <%s> conté múltiples definicions per a %s"
-#: domains/citation.py:75
+#: util/i18n.py:100
#, python-format
-msgid "duplicate citation %s, other instance in %s"
-msgstr "citació duplicada %s, una altra instància a %s"
+msgid "reading error: %s, %s"
+msgstr "error de lectura: %s, %s"
-#: domains/citation.py:92
+#: util/i18n.py:113
#, python-format
-msgid "Citation [%s] is not referenced."
-msgstr "No es fa referència a la citació [%s]."
+msgid "writing error: %s, %s"
+msgstr "error d'escriptura: %s, %s"
-#: locale/__init__.py:228
-msgid "Attention"
-msgstr "Atenció"
+#: util/i18n.py:146
+#, python-format
+msgid "locale_dir %s does not exist"
+msgstr "locale_dir %s no existeix"
-#: locale/__init__.py:229
-msgid "Caution"
-msgstr "Compte"
+#: util/i18n.py:244
+#, python-format
+msgid "Invalid Babel locale: %r."
+msgstr "La configuració regional «Babel» no és vàlida: %r."
-#: locale/__init__.py:230
-msgid "Danger"
-msgstr "Perill"
-
-#: locale/__init__.py:231
-msgid "Error"
-msgstr "Error"
-
-#: locale/__init__.py:232
-msgid "Hint"
-msgstr "Suggeriment"
-
-#: locale/__init__.py:233
-msgid "Important"
-msgstr "Important"
-
-#: locale/__init__.py:234
-msgid "Note"
-msgstr "Nota"
-
-#: locale/__init__.py:235
-msgid "See also"
-msgstr "Vegeu també"
-
-#: locale/__init__.py:236
-msgid "Tip"
-msgstr "Truc"
-
-#: locale/__init__.py:237
-msgid "Warning"
-msgstr "Avís"
-
-#: cmd/quickstart.py:52
-msgid "automatically insert docstrings from modules"
-msgstr "insereix automàticament les docstring des dels mòduls"
-
-#: cmd/quickstart.py:53
-msgid "automatically test code snippets in doctest blocks"
-msgstr "prova automàticament els fragments de codi en els blocs doctest"
-
-#: cmd/quickstart.py:54
-msgid "link between Sphinx documentation of different projects"
-msgstr "enllaç entre la documentació de Sphinx de projectes diferents"
-
-#: cmd/quickstart.py:55
-msgid "write \"todo\" entries that can be shown or hidden on build"
-msgstr "escriu les entrades «todo» que es poden mostrar o ocultar durant la construcció"
-
-#: cmd/quickstart.py:56
-msgid "checks for documentation coverage"
-msgstr "comprovacions per a la cobertura de la documentació"
-
-#: cmd/quickstart.py:57
-msgid "include math, rendered as PNG or SVG images"
-msgstr "inclou expressions matemàtiques, mostrades com a imatges PNG o SVG"
-
-#: cmd/quickstart.py:58
-msgid "include math, rendered in the browser by MathJax"
-msgstr "inclou expressions matemàtiques, representades en el navegador per MathJax"
-
-#: cmd/quickstart.py:59
-msgid "conditional inclusion of content based on config values"
-msgstr "inclusió condicional de contingut basat en els valors de la configuració"
-
-#: cmd/quickstart.py:60
-msgid "include links to the source code of documented Python objects"
-msgstr "inclou els enllaços cap al codi font dels objectes documentats en Python"
-
-#: cmd/quickstart.py:61
-msgid "create .nojekyll file to publish the document on GitHub pages"
-msgstr "crea un fitxer .nojekyll per a publicar el document a les pàgines de GitHub"
-
-#: cmd/quickstart.py:110
-msgid "Please enter a valid path name."
-msgstr "Si us plau, introduïu un nom de camí vàlid."
-
-#: cmd/quickstart.py:126
-msgid "Please enter some text."
-msgstr "Si us plau, introduïu algun text."
-
-#: cmd/quickstart.py:133
+#: util/i18n.py:253
#, python-format
-msgid "Please enter one of %s."
-msgstr "Si us plau, introduïu un dels %s."
-
-#: cmd/quickstart.py:141
-msgid "Please enter either 'y' or 'n'."
-msgstr "Si us plau, introduïu qualsevol de «y» o «n»."
-
-#: cmd/quickstart.py:147
-msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
-msgstr "Si us plau, introduïu un sufix de fitxer, p. ex., «.rst» o «.txt»."
-
-#: cmd/quickstart.py:229
-#, python-format
-msgid "Welcome to the Sphinx %s quickstart utility."
-msgstr "Us donem la benvinguda a la utilitat d'inici ràpid de Sphinx %s."
-
-#: cmd/quickstart.py:234
msgid ""
-"Please enter values for the following settings (just press Enter to\n"
-"accept a default value, if one is given in brackets)."
-msgstr "Introduïu els valors per a les configuracions següents (només premeu «Retorn»\nper a acceptar un valor predeterminat, si se'n dona un entre parèntesis)."
+"Invalid date format. Quote the string by single quote if you want to output "
+"it directly: %s"
+msgstr "Format de data no vàlid. Citeu la cadena amb cometes senzilles si voleu generar-la directament: %s"
-#: cmd/quickstart.py:241
+#: util/osutil.py:131
#, python-format
-msgid "Selected root path: %s"
-msgstr "Camí arrel seleccionat: %s"
-
-#: cmd/quickstart.py:244
-msgid "Enter the root path for documentation."
-msgstr "Introduïu el camí arrel per a la documentació."
-
-#: cmd/quickstart.py:245
-msgid "Root path for the documentation"
-msgstr "Camí arrel per a la documentació"
-
-#: cmd/quickstart.py:254
-msgid "Error: an existing conf.py has been found in the selected root path."
-msgstr "Error: ja existeix un fitxer conf.py en el camí arrel seleccionat."
-
-#: cmd/quickstart.py:259
-msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
-msgstr "«sphinx-quickstart» no sobreescriurà els projectes de Sphinx existents."
-
-#: cmd/quickstart.py:262
-msgid "Please enter a new root path (or just Enter to exit)"
-msgstr "Introduïu un camí arrel nou (o premeu «Retorn» per a sortir)"
-
-#: cmd/quickstart.py:273
-msgid ""
-"You have two options for placing the build directory for Sphinx output.\n"
-"Either, you use a directory \"_build\" within the root path, or you separate\n"
-"\"source\" and \"build\" directories within the root path."
-msgstr "Teniu dues opcions per a col·locar el directori de construcció per a la\nsortida de Sphinx. O useu un directori «_build» dins del camí arrel,\no els directoris separats «source» i «build» dins del camí arrel."
-
-#: cmd/quickstart.py:279
-msgid "Separate source and build directories (y/n)"
-msgstr "Separa els directoris «source» i «build» (s/n)"
-
-#: cmd/quickstart.py:286
-msgid ""
-"Inside the root directory, two more directories will be created; \"_templates\"\n"
-"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
-"files. You can enter another prefix (such as \".\") to replace the underscore."
-msgstr "Dins del directori arrel, es crearan dos directoris més: «_templates» per a\nles plantilles HTML personalitzades i «_static» per als fulls d'estil\npersonalitzats i altres fitxers estàtics. Podeu introduir un altre prefix\n(com «.») per a substituir el guió baix."
-
-#: cmd/quickstart.py:291
-msgid "Name prefix for templates and static dir"
-msgstr "Prefix de nom per als directoris «templates» i «static»"
-
-#: cmd/quickstart.py:297
-msgid ""
-"The project name will occur in several places in the built documentation."
-msgstr "El nom del projecte apareixerà en diversos llocs de la documentació construïda."
-
-#: cmd/quickstart.py:300
-msgid "Project name"
-msgstr "Nom del projecte"
-
-#: cmd/quickstart.py:302
-msgid "Author name(s)"
-msgstr "Noms de l'autoria"
-
-#: cmd/quickstart.py:308
msgid ""
-"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
-"software. Each version can have multiple releases. For example, for\n"
-"Python the version is something like 2.5 or 3.0, while the release is\n"
-"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
-"just set both to the same value."
-msgstr "Sphinx té la noció d'una «versió» i un «llançament» per al programari.\nCada versió pot tenir múltiples versions. Per exemple, per a Python,\nla versió és una cosa semblant a 2.5 o 3.0, mentre que el llançament és\ncom 2.5.1 o 3.0a1. Si no necessiteu aquesta doble estructura, senzillament\nestabliu ambdues amb el mateix valor."
-
-#: cmd/quickstart.py:315
-msgid "Project version"
-msgstr "Versió del projecte"
-
-#: cmd/quickstart.py:317
-msgid "Project release"
-msgstr "Llançament del projecte"
-
-#: cmd/quickstart.py:323
-msgid ""
-"If the documents are to be written in a language other than English,\n"
-"you can select a language here by its language code. Sphinx will then\n"
-"translate text that it generates into that language.\n"
-"\n"
-"For a list of supported codes, see\n"
-"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
-msgstr "Si els documents s'han d'escriure en un idioma que no sigui l'anglès,\npodeu seleccionar un idioma aquí per al vostre codi d'idioma.\nA continuació, Sphinx traduirà el text que es genera en aquest idioma.\n\nPer a obtenir una llista dels codis admesos, vegeu\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
-
-#: cmd/quickstart.py:331
-msgid "Project language"
-msgstr "Idioma del projecte"
-
-#: cmd/quickstart.py:339
-msgid ""
-"The file name suffix for source files. Commonly, this is either \".txt\"\n"
-"or \".rst\". Only files with this suffix are considered documents."
-msgstr "El sufix del nom del fitxer per als fitxers d'origen. Normalment, aquest és\n«.txt» o «.rst». Només els fitxers amb aquest sufix es consideraran documents."
-
-#: cmd/quickstart.py:343
-msgid "Source file suffix"
-msgstr "Sufix del fitxer font"
+"Aborted attempted copy from %s to %s (the destination path has existing "
+"data)."
+msgstr "S'ha interromput l'intent de còpia des de %s a %s (hi ha dades existents al camí de destinació)."
-#: cmd/quickstart.py:349
-msgid ""
-"One document is special in that it is considered the top node of the\n"
-"\"contents tree\", that is, it is the root of the hierarchical structure\n"
-"of the documents. Normally, this is \"index\", but if your \"index\"\n"
-"document is a custom template, you can also set this to another filename."
-msgstr "Un document és especial perquè es considera el node superior de l'«arbre de\ncontingut», és a dir, és l'arrel de l'estructura jeràrquica dels documents.\nNormalment, es tracta de l'«index», però si el document «index» és una\nplantilla personalitzada, també podreu establir-la a un altre nom de fitxer."
+#: util/display.py:82
+msgid "skipped"
+msgstr "s'omet"
-#: cmd/quickstart.py:356
-msgid "Name of your master document (without suffix)"
-msgstr "Nom del document mestre (sense sufix)"
+#: util/display.py:87
+msgid "failed"
+msgstr "ha fallat"
-#: cmd/quickstart.py:367
+#: util/docutils.py:325
#, python-format
-msgid ""
-"Error: the master file %s has already been found in the selected root path."
-msgstr "Error: el fitxer mestre %s ja es troba en el camí arrel seleccionat."
-
-#: cmd/quickstart.py:373
-msgid "sphinx-quickstart will not overwrite the existing file."
-msgstr "«sphinx-quickstart» no sobreescriurà el fitxer existent."
-
-#: cmd/quickstart.py:377
-msgid ""
-"Please enter a new file name, or rename the existing file and press Enter"
-msgstr "Introduïu un nom de fitxer nou o canvieu-ne el nom i premeu «Retorn»"
-
-#: cmd/quickstart.py:385
-msgid "Indicate which of the following Sphinx extensions should be enabled:"
-msgstr "Indiqueu quines de les extensions següents de Sphinx haurien d'estar habilitades:"
-
-#: cmd/quickstart.py:396
-msgid ""
-"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
-"been deselected."
-msgstr "Nota: «imgmath» i «mathjax» no es poden habilitar alhora. «imgmath» ha estat desseleccionat."
-
-#: cmd/quickstart.py:406
-msgid ""
-"A Makefile and a Windows command file can be generated for you so that you\n"
-"only have to run e.g. `make html' instead of invoking sphinx-build\n"
-"directly."
-msgstr "Es pot generar un fitxer Makefile i un fitxer d'ordres de Windows,\nde manera que només haureu d'executar, p. ex., «make html»\nen lloc d'invocar directament «sphinx-build»."
-
-#: cmd/quickstart.py:411
-msgid "Create Makefile? (y/n)"
-msgstr "Voleu crear el Makefile? (s/n)"
-
-#: cmd/quickstart.py:415
-msgid "Create Windows command file? (y/n)"
-msgstr "Voleu crear el fitxer d'ordres de Windows? (s/n)"
+msgid "unknown directive name: %s"
+msgstr "nom desconegut de la directiva: %s"
-#: cmd/quickstart.py:467 ext/apidoc/_generate.py:76
+#: util/docutils.py:361
#, python-format
-msgid "Creating file %s."
-msgstr "S'està creant el fitxer %s."
+msgid "unknown role name: %s"
+msgstr "nom desconegut del rol: %s"
-#: cmd/quickstart.py:472 ext/apidoc/_generate.py:73
+#: util/docutils.py:805
#, python-format
-msgid "File %s already exists, skipping."
-msgstr "El fitxer %s ja existeix, se salta."
-
-#: cmd/quickstart.py:515
-msgid "Finished: An initial directory structure has been created."
-msgstr "Finalitzat: s'ha creat una estructura inicial del directori."
+msgid "unknown node type: %r"
+msgstr "tipus de node desconegut: %r"
-#: cmd/quickstart.py:519
+#: util/fileutil.py:76
#, python-format
msgid ""
-"You should now populate your master file %s and create other documentation\n"
-"source files. "
-msgstr "Ara heu de completar el fitxer mestre %s i crear altres fitxers font de documentació. "
-
-#: cmd/quickstart.py:526
-msgid ""
-"Use the Makefile to build the docs, like so:\n"
-" make builder"
-msgstr "Useu el Makefile per a construir els documents, com segueix:\n make builder"
+"Aborted attempted copy from rendered template %s to %s (the destination path"
+" has existing data)."
+msgstr "S'ha interromput l'intent de còpia des de la plantilla representada %s a %s (hi ha dades existents al camí de destinació)."
-#: cmd/quickstart.py:530
+#: util/fileutil.py:89
#, python-format
-msgid ""
-"Use the sphinx-build command to build the docs, like so:\n"
-" sphinx-build -b builder %s %s"
-msgstr "Useu l'ordre «sphinx-build» per a construir els documents, com segueix:\n sphinx-build -b constructor %s %s"
-
-#: cmd/quickstart.py:537
-msgid ""
-"where \"builder\" is one of the supported builders, e.g. html, latex or "
-"linkcheck."
-msgstr "on «constructor» és un dels constructors admesos, p. ex., html, latex o linkcheck."
-
-#: cmd/quickstart.py:572
-msgid ""
-"\n"
-"Generate required files for a Sphinx project.\n"
-"\n"
-"sphinx-quickstart is an interactive tool that asks some questions about your\n"
-"project and then generates a complete documentation directory and sample\n"
-"Makefile to be used with sphinx-build.\n"
-msgstr "\nGenereu els fitxers necessaris per a un projecte Sphinx.\n\n«sphinx-quickstart» és una eina interactiva que fa algunes preguntes sobre el\nprojecte i després genera un directori complet de documentació i un\nexemple del fitxer Makefile per a ser usat amb l'ordre «sphinx-build».\n"
-
-#: cmd/build.py:73 cmd/quickstart.py:581 ext/apidoc/_cli.py:27
-#: ext/autosummary/generate.py:835
-msgid "For more information, visit ."
-msgstr "Per a més informació, visiteu ."
-
-#: cmd/quickstart.py:591
-msgid "quiet mode"
-msgstr "mode silenciós"
-
-#: cmd/quickstart.py:601
-msgid "project root"
-msgstr "arrel del projecte"
-
-#: cmd/quickstart.py:604
-msgid "Structure options"
-msgstr "Opcions de l'estructura"
-
-#: cmd/quickstart.py:610
-msgid "if specified, separate source and build dirs"
-msgstr "Si s'especifica, se separarà el codi font i els directoris de compilació"
-
-#: cmd/quickstart.py:616
-msgid "if specified, create build dir under source dir"
-msgstr "Si s'especifica, es crearà el directori de construcció a dins del directori d'origen"
-
-#: cmd/quickstart.py:622
-msgid "replacement for dot in _templates etc."
-msgstr "substitució per a punts a _templates, etc."
-
-#: cmd/quickstart.py:625
-msgid "Project basic options"
-msgstr "Opcions bàsiques del projecte"
-
-#: cmd/quickstart.py:627
-msgid "project name"
-msgstr "nom del projecte"
-
-#: cmd/quickstart.py:630
-msgid "author names"
-msgstr "noms de l'autoria"
-
-#: cmd/quickstart.py:637
-msgid "version of project"
-msgstr "versió del projecte"
-
-#: cmd/quickstart.py:644
-msgid "release of project"
-msgstr "llançament del projecte"
-
-#: cmd/quickstart.py:651
-msgid "document language"
-msgstr "idioma del document"
-
-#: cmd/quickstart.py:654
-msgid "source file suffix"
-msgstr "sufix del fitxer font"
-
-#: cmd/quickstart.py:657
-msgid "master document name"
-msgstr "nom del document mestre"
-
-#: cmd/quickstart.py:660
-msgid "use epub"
-msgstr "usa epub"
-
-#: cmd/quickstart.py:663
-msgid "Extension options"
-msgstr "Opcions de l'extensió"
+msgid "Writing evaluated template result to %s"
+msgstr "Escriu el resultat de la plantilla avaluada a %s"
-#: cmd/quickstart.py:670
+#: util/docfields.py:103
#, python-format
-msgid "enable %s extension"
-msgstr "habilita l'extensió %s"
-
-#: cmd/quickstart.py:677
-msgid "enable arbitrary extensions"
-msgstr "habilita les extensions arbitràries"
-
-#: cmd/quickstart.py:680
-msgid "Makefile and Batchfile creation"
-msgstr "Creació dels fitxers Makefile i de processament per lots"
-
-#: cmd/quickstart.py:686
-msgid "create makefile"
-msgstr "es crea el Makefile"
-
-#: cmd/quickstart.py:692
-msgid "do not create makefile"
-msgstr "no es crea el Makefile"
-
-#: cmd/quickstart.py:699
-msgid "create batchfile"
-msgstr "es crea el fitxer de processament per lots"
-
-#: cmd/quickstart.py:705
-msgid "do not create batchfile"
-msgstr "no es crea el fitxer de processament per lots"
-
-#: cmd/quickstart.py:714
-msgid "use make-mode for Makefile/make.bat"
-msgstr "usa el mode make per a Makefile/make.bat"
-
-#: cmd/quickstart.py:717 ext/apidoc/_cli.py:243
-msgid "Project templating"
-msgstr "Plantilles de projecte"
-
-#: cmd/quickstart.py:723 ext/apidoc/_cli.py:249
-msgid "template directory for template files"
-msgstr "directori de plantilles per als fitxers de plantilla"
-
-#: cmd/quickstart.py:730
-msgid "define a template variable"
-msgstr "defineix una variable de plantilla"
-
-#: cmd/quickstart.py:766
-msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
-msgstr "s'especifica «quiet», però no s'especifica cap «project» o «author»."
-
-#: cmd/quickstart.py:785
msgid ""
-"Error: specified path is not a directory, or sphinx files already exist."
-msgstr "Error: el camí especificat no és un directori o ja hi ha els fitxers de Sphinx."
-
-#: cmd/quickstart.py:792
-msgid ""
-"sphinx-quickstart only generate into a empty directory. Please specify a new"
-" root path."
-msgstr "«sphinx-quickstart» només generarà dins d'un directori buit. Especifiqueu un camí arrel nou."
+"Problem in %s domain: field is supposed to use role '%s', but that role is "
+"not in the domain."
+msgstr "Problema en el domini %s: se suposa que el camp usa el rol «%s», però no es troba en el domini."
-#: cmd/quickstart.py:809
+#: util/rst.py:73
#, python-format
-msgid "Invalid template variable: %s"
-msgstr "Variable no vàlida de plantilla: %s"
-
-#: cmd/build.py:64
-msgid "job number should be a positive number"
-msgstr "el número de treball hauria de ser un nombre positiu"
-
-#: cmd/build.py:74
-msgid ""
-"\n"
-"Generate documentation from source files.\n"
-"\n"
-"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
-"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
-"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
-"including 'conf.py'\n"
-"\n"
-"sphinx-build can create documentation in different formats. A format is\n"
-"selected by specifying the builder name on the command line; it defaults to\n"
-"HTML. Builders can also perform other tasks related to documentation\n"
-"processing.\n"
-"\n"
-"By default, everything that is outdated is built. Output only for selected\n"
-"files can be built by specifying individual filenames.\n"
-msgstr "\nGenerar la documentació a partir dels fitxers font.\n\nL'eina «sphinx-build» generarà la documentació a partir dels fitxers\na SOURCEDIR i els situarà a OUTPUTDIR. Cerqueu el «conf.py» en el\nSOURCEDIR per als paràmetres de configuració. L'eina «sphinx-quickstart» es pot usar per a generar fitxers de plantilla, inclòs el «conf.py».\n\nL'eina «sphinx-build» pot crear documentació en formats diferents. A la\nlínia d'ordres se selecciona un format que especifica el nom del constructor.\nDe manera predeterminada és HTML. Els constructors també poden dur a terme\naltres tasques relacionades amb el processament de la documentació.\n\nDe manera predeterminada, es construeix tot el que està desactualitzat. Es pot\ngenerar la sortida només per als fitxers seleccionats especificant noms de fitxer\nindividuals.\n"
-
-#: cmd/build.py:100
-msgid "path to documentation source files"
-msgstr "camí cap als fitxers font de la documentació"
-
-#: cmd/build.py:103
-msgid "path to output directory"
-msgstr "camí cap al directori de sortida"
-
-#: cmd/build.py:109
-msgid ""
-"(optional) a list of specific files to rebuild. Ignored if --write-all is "
-"specified"
-msgstr "(opcional) una llista de fitxers específics que s'han de reconstruir. S'ignorarà si s'especifica «--write-all»"
-
-#: cmd/build.py:114
-msgid "general options"
-msgstr "opcions generals"
-
-#: cmd/build.py:121
-msgid "builder to use (default: 'html')"
-msgstr "constructor que s'usarà (predeterminat: «html»)"
+msgid "default role %s not found"
+msgstr "no s'ha trobat el rol predeterminat %s"
-#: cmd/build.py:131
+#: util/nodes.py:462
+#, python-format
msgid ""
-"run in parallel with N processes, when possible. 'auto' uses the number of "
-"CPU cores"
-msgstr "executa en paral·lel amb N processos, quan sigui possible. «auto» uxa el nombre de nuclis de la CPU"
-
-#: cmd/build.py:140
-msgid "write all files (default: only write new and changed files)"
-msgstr "escriu tots els fitxers (predeterminat: només escriu els fitxers nous i els que han canviat)"
+"%r is no longer supported for index entries (from entry %r). Use 'pair: %s' "
+"instead."
+msgstr ""
-#: cmd/build.py:147
-msgid "don't use a saved environment, always read all files"
-msgstr "no usar un entorn desat, llegeix sempre tots els fitxers"
+#: util/nodes.py:523
+#, python-format
+msgid "toctree contains ref to nonexisting file %r"
+msgstr "el toctree conté una referència cap al fitxer %r que no existeix"
-#: cmd/build.py:150
-msgid "path options"
-msgstr "opcions de camí"
+#: util/nodes.py:739
+#, python-format
+msgid "exception while evaluating only directive expression: %s"
+msgstr "excepció mentre només s'avaluava l'expressió directiva: %s"
-#: cmd/build.py:157
-msgid ""
-"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
-msgstr "directori per als fitxers doctree i d'entorn (predeterminat: OUTPUT_DIR/.doctrees)"
+#: templates/latex/longtable.tex.jinja:52
+#: templates/latex/sphinxmessages.sty.jinja:8
+msgid "continued from previous page"
+msgstr "ve de la pàgina anterior"
-#: cmd/build.py:166
-msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
-msgstr "directori per al fitxer de configuració (conf.py) (predeterminat: SOURCE_DIR)"
+#: templates/latex/longtable.tex.jinja:63
+#: templates/latex/sphinxmessages.sty.jinja:9
+msgid "continues on next page"
+msgstr "continua a la pàgina següent"
-#: cmd/build.py:175
-msgid "use no configuration file, only use settings from -D options"
-msgstr "no usa cap fitxer de configuració, només usa la configuració de les opcions de «-D»"
+#: templates/latex/sphinxmessages.sty.jinja:10
+msgid "Non-alphabetical"
+msgstr "No alfabètic"
-#: cmd/build.py:184
-msgid "override a setting in configuration file"
-msgstr "superposa una configuració en el fitxer de configuració"
+#: environment/adapters/indexentries.py:267
+#: templates/latex/sphinxmessages.sty.jinja:11
+msgid "Symbols"
+msgstr "Símbols"
-#: cmd/build.py:193
-msgid "pass a value into HTML templates"
-msgstr "passa un valor a dins de les plantilles HTML"
+#: templates/latex/sphinxmessages.sty.jinja:12
+msgid "Numbers"
+msgstr "Números"
-#: cmd/build.py:202
-msgid "define tag: include \"only\" blocks with TAG"
-msgstr "defineix l'etiqueta: inclou blocs «only» amb TAG"
+#: templates/latex/sphinxmessages.sty.jinja:13
+msgid "page"
+msgstr "pàgina"
-#: cmd/build.py:209
-msgid "nitpicky mode: warn about all missing references"
-msgstr "mode primmirat: avisa sobre totes les referències que manquen"
+#: builders/latex/__init__.py:206 templates/latex/latex.tex.jinja:92
+msgid "Release"
+msgstr "Versió"
-#: cmd/build.py:212
-msgid "console output options"
-msgstr "opcions de sortida de la consola"
+#: transforms/post_transforms/images.py:79
+#, python-format
+msgid "Could not fetch remote image: %s [%s]"
+msgstr "No s'ha pogut recuperar la imatge remota: %s [%s]"
-#: cmd/build.py:219
-msgid "increase verbosity (can be repeated)"
-msgstr "augmenta la loquacitat (es pot repetir)"
+#: transforms/post_transforms/images.py:96
+#, python-format
+msgid "Could not fetch remote image: %s [%d]"
+msgstr "No s'ha pogut recuperar la imatge remota: %s [%d]"
-#: cmd/build.py:226 ext/apidoc/_cli.py:66
-msgid "no output on stdout, just warnings on stderr"
-msgstr "sense sortida a la sortida estàndard, només avisos a la sortida d'error estàndard"
+#: transforms/post_transforms/images.py:143
+#, python-format
+msgid "Unknown image format: %s..."
+msgstr "Format d'imatge desconegut: %s..."
-#: cmd/build.py:233
-msgid "no output at all, not even warnings"
-msgstr "sense sortida, ni tan sols els avisos"
+#: transforms/post_transforms/__init__.py:88
+msgid ""
+"Could not determine the fallback text for the cross-reference. Might be a "
+"bug."
+msgstr "No s'ha pogut determinar el text alternatiu per a la referència creuada. Podria ser un error."
-#: cmd/build.py:241
-msgid "do emit colored output (default: auto-detect)"
-msgstr "emet una sortida amb colors (predeterminada: detecció automàtica)"
+#: transforms/post_transforms/__init__.py:233
+#, python-format
+msgid "more than one target found for 'any' cross-reference %r: could be %s"
+msgstr "s'ha trobat més d'una destinació per a «any» en la referència creuada %r: podria ser %s"
-#: cmd/build.py:249
-msgid "do not emit colored output (default: auto-detect)"
-msgstr "no emetre una sortida amb colors (predeterminada: detecció automàtica)"
+#: transforms/post_transforms/__init__.py:291
+#, python-format
+msgid "%s:%s reference target not found: %s"
+msgstr "%s:%s no es troba la destinació de la referència: %s"
-#: cmd/build.py:252
-msgid "warning control options"
-msgstr "opcions de control d'avís"
+#: transforms/post_transforms/__init__.py:297
+#, python-format
+msgid "%r reference target not found: %s"
+msgstr "%r no es troba la destinació de la referència: %s"
-#: cmd/build.py:258
-msgid "write warnings (and errors) to given file"
-msgstr "escriviu els avisos (i errors) al fitxer indicat"
+#: _cli/util/errors.py:190
+msgid "Interrupted!"
+msgstr "S'ha interromput!"
-#: cmd/build.py:265
-msgid "turn warnings into errors"
-msgstr "converteix els avisos en errors"
+#: _cli/util/errors.py:194
+msgid "reStructuredText markup error!"
+msgstr "Error de marcatge en el reStructuredText!"
-#: cmd/build.py:273
-msgid "show full traceback on exception"
-msgstr "mostra la traça completa en excepció"
+#: _cli/util/errors.py:200
+msgid "Encoding error!"
+msgstr "Error de codificació!"
-#: cmd/build.py:276
-msgid "run Pdb on exception"
-msgstr "executa Pdb en excepció"
+#: _cli/util/errors.py:203
+msgid "Recursion error!"
+msgstr "Error de recursivitat!"
-#: cmd/build.py:282
-msgid "raise an exception on warnings"
-msgstr "planteja una excepció sobre els avisos"
+#: _cli/util/errors.py:207
+msgid ""
+"This can happen with very large or deeply nested source files. You can "
+"carefully increase the default Python recursion limit of 1,000 in conf.py "
+"with e.g.:"
+msgstr "Això pot passar amb fitxers font molt grans o molt imbricats. Podeu fer augmentar amb cura el límit predeterminat de la recursivitat de Python de 1.000 al «conf.py» amb, per exemple:"
-#: cmd/build.py:325
-msgid "cannot combine -a option and filenames"
-msgstr "no es pot combinar l'opció -a i els noms de fitxer"
+#: _cli/util/errors.py:227
+msgid "Starting debugger:"
+msgstr "S'està iniciant el depurador:"
-#: cmd/build.py:357
-#, python-format
-msgid "cannot open warning file '%s': %s"
-msgstr "no es pot obrir el fitxer de l'avís «%s»: %s"
+#: _cli/util/errors.py:235
+msgid "The full traceback has been saved in:"
+msgstr "S'ha desat la traça completa a:"
-#: cmd/build.py:376
-msgid "-D option argument must be in the form name=value"
-msgstr "l'argument de l'opció «-D» haurà d'estar en la forma «nom=valor»"
+#: _cli/util/errors.py:240
+msgid ""
+"To report this error to the developers, please open an issue at "
+". Thanks!"
+msgstr "Per a informar d'aquest error als desenvolupadors, obriu un problema a . Gràcies!"
-#: cmd/build.py:383
-msgid "-A option argument must be in the form name=value"
-msgstr "l'argument de l'opció -A haurà d'estar en la forma «nom=valor»"
+#: _cli/util/errors.py:246
+msgid ""
+"Please also report this if it was a user error, so that a better error "
+"message can be provided next time."
+msgstr "Informeu-ho també si es tractava d'un error d'usuari, de manera que la pròxima vegada es pugui proporcionar un missatge d'error millor."
#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
msgid "Collapse sidebar"
msgstr "Redueix la barra lateral"
-#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
-#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
-msgid "Table of Contents"
-msgstr "Taula de continguts"
+#: themes/basic/layout.html:18
+msgid "Navigation"
+msgstr "Navegació"
+
+#: themes/basic/layout.html:115
+#, python-format
+msgid "Search within %(docstitle)s"
+msgstr "Cerca dins de %(docstitle)s"
+
+#: themes/basic/layout.html:124
+msgid "About these documents"
+msgstr "Quant a aquests documents"
#: themes/agogo/layout.html:34 themes/basic/layout.html:130
#: themes/basic/search.html:3 themes/basic/search.html:15
msgid "Search"
msgstr "Cerca"
-#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
-#: themes/basic/searchfield.html:12
-msgid "Go"
-msgstr "Ves a"
+#: themes/basic/layout.html:133 themes/basic/layout.html:177
+#: themes/basic/layout.html:179
+msgid "Copyright"
+msgstr "Copyright"
+
+#: themes/basic/layout.html:183 themes/basic/layout.html:189
+#, python-format
+msgid "© %(copyright_prefix)s %(copyright)s."
+msgstr "© %(copyright_prefix)s %(copyright)s."
+
+#: themes/basic/layout.html:201
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "Darrera actualització el %(last_updated)s."
+
+#: themes/basic/layout.html:204
+#, python-format
+msgid ""
+"Created using Sphinx "
+"%(sphinx_version)s."
+msgstr "Creada mitjançant Sphinx %(sphinx_version)s."
+
+#: themes/basic/relations.html:4
+msgid "Previous topic"
+msgstr "Tema anterior"
+
+#: themes/basic/relations.html:6
+msgid "previous chapter"
+msgstr "capítol anterior"
+
+#: themes/basic/relations.html:11
+msgid "Next topic"
+msgstr "Tema següent"
+
+#: themes/basic/relations.html:13
+msgid "next chapter"
+msgstr "capítol següent"
+
+#: themes/basic/genindex-single.html:26
+#, python-format
+msgid "Index – %(key)s"
+msgstr "Índex – %(key)s"
+
+#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
+#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
+msgid "Full index on one page"
+msgstr "Índex complet en una pàgina"
+
+#: themes/basic/sourcelink.html:4
+msgid "This Page"
+msgstr "Aquesta pàgina"
#: themes/agogo/layout.html:81 themes/basic/sourcelink.html:7
msgid "Show Source"
msgstr "Mostra el codi font"
-#: themes/haiku/layout.html:16
-msgid "Contents"
-msgstr "Contingut"
+#: themes/basic/searchbox.html:4
+msgid "Quick search"
+msgstr "Cerca ràpida"
-#: themes/basic/opensearch.xml:4
-#, python-format
-msgid "Search %(docstitle)s"
-msgstr "Cercar a %(docstitle)s"
+#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
+#: themes/basic/searchfield.html:12
+msgid "Go"
+msgstr "Ves a"
#: themes/basic/defindex.html:4
msgid "Overview"
@@ -2685,7 +2885,7 @@ msgstr "Índex global de mòduls"
msgid "quick access to all modules"
msgstr "accés ràpid a tots els mòduls"
-#: builders/html/__init__.py:507 themes/basic/defindex.html:23
+#: builders/html/__init__.py:496 themes/basic/defindex.html:23
msgid "General Index"
msgstr "Índex general"
@@ -2693,23 +2893,15 @@ msgstr "Índex general"
msgid "all functions, classes, terms"
msgstr "totes les funcions, classes, termes"
-#: themes/basic/sourcelink.html:4
-msgid "This Page"
-msgstr "Aquesta pàgina"
+#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
+#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
+msgid "Table of Contents"
+msgstr "Taula de continguts"
-#: themes/basic/genindex-single.html:26
+#: themes/basic/opensearch.xml:4
#, python-format
-msgid "Index – %(key)s"
-msgstr "Índex – %(key)s"
-
-#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
-#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
-msgid "Full index on one page"
-msgstr "Índex complet en una pàgina"
-
-#: themes/basic/searchbox.html:4
-msgid "Quick search"
-msgstr "Cerca ràpida"
+msgid "Search %(docstitle)s"
+msgstr "Cercar a %(docstitle)s"
#: themes/basic/genindex-split.html:8
msgid "Index pages by letter"
@@ -2719,57 +2911,6 @@ msgstr "Pàgines d'índex per lletra"
msgid "can be huge"
msgstr "pot ser gegant"
-#: themes/basic/relations.html:4
-msgid "Previous topic"
-msgstr "Tema anterior"
-
-#: themes/basic/relations.html:6
-msgid "previous chapter"
-msgstr "capítol anterior"
-
-#: themes/basic/relations.html:11
-msgid "Next topic"
-msgstr "Tema següent"
-
-#: themes/basic/relations.html:13
-msgid "next chapter"
-msgstr "capítol següent"
-
-#: themes/basic/layout.html:18
-msgid "Navigation"
-msgstr "Navegació"
-
-#: themes/basic/layout.html:115
-#, python-format
-msgid "Search within %(docstitle)s"
-msgstr "Cerca dins de %(docstitle)s"
-
-#: themes/basic/layout.html:124
-msgid "About these documents"
-msgstr "Quant a aquests documents"
-
-#: themes/basic/layout.html:133 themes/basic/layout.html:177
-#: themes/basic/layout.html:179
-msgid "Copyright"
-msgstr "Copyright"
-
-#: themes/basic/layout.html:183 themes/basic/layout.html:189
-#, python-format
-msgid "© %(copyright_prefix)s %(copyright)s."
-msgstr "© %(copyright_prefix)s %(copyright)s."
-
-#: themes/basic/layout.html:201
-#, python-format
-msgid "Last updated on %(last_updated)s."
-msgstr "Darrera actualització el %(last_updated)s."
-
-#: themes/basic/layout.html:204
-#, python-format
-msgid ""
-"Created using Sphinx "
-"%(sphinx_version)s."
-msgstr "Creada mitjançant Sphinx %(sphinx_version)s."
-
#: themes/basic/search.html:20
msgid ""
"Please activate JavaScript to enable the search\n"
@@ -2786,21 +2927,21 @@ msgstr "Cercar múltiples paraules només mostrarà les coincidències\n que
msgid "search"
msgstr "cerca"
-#: themes/basic/static/sphinx_highlight.js:112
-msgid "Hide Search Matches"
-msgstr "Oculta els resultats de cerca"
+#: themes/haiku/layout.html:16
+msgid "Contents"
+msgstr "Contingut"
-#: themes/basic/static/searchtools.js:117
+#: themes/basic/static/searchtools.js:132
msgid "Search Results"
msgstr "Resultats de la cerca"
-#: themes/basic/static/searchtools.js:119
+#: themes/basic/static/searchtools.js:134
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
msgstr "La vostra cerca no ha coincidit amb cap document. Assegureu-vos que s'escriuen correctament totes les paraules i que heu seleccionat prou categories."
-#: themes/basic/static/searchtools.js:123
+#: themes/basic/static/searchtools.js:138
#, python-brace-format
msgid "Search finished, found one page matching the search query."
msgid_plural ""
@@ -2808,22 +2949,21 @@ msgid_plural ""
msgstr[0] "La cerca ha acabat, s'ha trobat una pàgina que coincideix amb la consulta de cerca."
msgstr[1] "La cerca ha acabat, s'han trobat ${resultCount} pàgines que coincideixen amb la consulta de cerca."
-#: themes/basic/static/searchtools.js:253
+#: themes/basic/static/searchtools.js:276
msgid "Searching"
msgstr "S'està cercant"
-#: themes/basic/static/searchtools.js:270
+#: themes/basic/static/searchtools.js:293
msgid "Preparing search..."
msgstr "S'està preparant la cerca..."
-#: themes/basic/static/searchtools.js:474
+#: themes/basic/static/searchtools.js:526
msgid ", in "
msgstr ", a "
-#: themes/basic/changes/rstsource.html:5
-#, python-format
-msgid "%(filename)s — %(docstitle)s"
-msgstr "%(filename)s — %(docstitle)s"
+#: themes/basic/static/sphinx_highlight.js:112
+msgid "Hide Search Matches"
+msgstr "Oculta els resultats de cerca"
#: themes/basic/changes/frameset.html:5
#: themes/basic/changes/versionchanges.html:12
@@ -2831,6 +2971,11 @@ msgstr "%(filename)s — %(docstitle)s"
msgid "Changes in Version %(version)s — %(docstitle)s"
msgstr "Canvis en la versió %(version)s — %(docstitle)s"
+#: themes/basic/changes/rstsource.html:5
+#, python-format
+msgid "%(filename)s — %(docstitle)s"
+msgstr "%(filename)s — %(docstitle)s"
+
#: themes/basic/changes/versionchanges.html:17
#, python-format
msgid "Automatically generated list of changes in version %(version)s"
@@ -2852,120 +2997,127 @@ msgstr "Altres canvis"
msgid "Expand sidebar"
msgstr "Expandeix la barra lateral"
-#: domains/python/_annotations.py:529
+#: domains/python/_annotations.py:522
msgid "Positional-only parameter separator (PEP 570)"
-msgstr ""
+msgstr "Separador de paràmetres només posicional (PEP 570)"
-#: domains/python/_annotations.py:540
+#: domains/python/_annotations.py:533
msgid "Keyword-only parameters separator (PEP 3102)"
-msgstr ""
+msgstr "Separador de paràmetres només posicional (PEP 3102)"
+
+#: domains/c/__init__.py:354 domains/cpp/__init__.py:485
+#: domains/python/_object.py:190 ext/napoleon/docstring.py:980
+msgid "Parameters"
+msgstr "Paràmetres"
-#: domains/python/__init__.py:113 domains/python/__init__.py:278
+#: domains/python/_object.py:206
+msgid "Variables"
+msgstr "Variables"
+
+#: domains/python/_object.py:214
+msgid "Raises"
+msgstr "Llença"
+
+#: domains/python/__init__.py:105 domains/python/__init__.py:270
#, python-format
msgid "%s() (in module %s)"
msgstr "%s() (al mòdul %s)"
-#: domains/python/__init__.py:180 domains/python/__init__.py:374
-#: domains/python/__init__.py:434 domains/python/__init__.py:474
+#: domains/python/__init__.py:172 domains/python/__init__.py:366
+#: domains/python/__init__.py:426 domains/python/__init__.py:466
#, python-format
msgid "%s (in module %s)"
msgstr "%s (al mòdul %s)"
-#: domains/python/__init__.py:182
+#: domains/python/__init__.py:174
#, python-format
msgid "%s (built-in variable)"
msgstr "%s (variable interna)"
-#: domains/python/__init__.py:217
+#: domains/python/__init__.py:209
#, python-format
msgid "%s (built-in class)"
msgstr "%s (classe interna)"
-#: domains/python/__init__.py:218
+#: domains/python/__init__.py:210
#, python-format
msgid "%s (class in %s)"
msgstr "%s (classe a %s)"
-#: domains/python/__init__.py:283
+#: domains/python/__init__.py:275
#, python-format
msgid "%s() (%s class method)"
msgstr "%s() (mètode de classe %s)"
-#: domains/python/__init__.py:285
+#: domains/python/__init__.py:277
#, python-format
msgid "%s() (%s static method)"
msgstr "%s() (mètode estàtic %s)"
-#: domains/python/__init__.py:438
+#: domains/python/__init__.py:430
#, python-format
msgid "%s (%s property)"
msgstr "%s (propietat %s)"
-#: domains/python/__init__.py:478
+#: domains/python/__init__.py:470
#, python-format
msgid "%s (type alias in %s)"
msgstr "%s (escriviu l'àlies a %s)"
-#: domains/python/__init__.py:638
+#: domains/python/__init__.py:624
msgid "Python Module Index"
msgstr "Índex de mòduls en Python"
-#: domains/python/__init__.py:639
+#: domains/python/__init__.py:625
msgid "modules"
msgstr "mòduls"
-#: domains/python/__init__.py:717
+#: domains/python/__init__.py:703
msgid "Deprecated"
msgstr "Obsolet"
-#: domains/python/__init__.py:743
+#: domains/python/__init__.py:729
msgid "exception"
msgstr "excepció"
-#: domains/python/__init__.py:745
+#: domains/python/__init__.py:731
msgid "class method"
msgstr "mètode de classe"
-#: domains/python/__init__.py:746
+#: domains/python/__init__.py:732
msgid "static method"
msgstr "mètode estàtic"
-#: domains/python/__init__.py:748
+#: domains/python/__init__.py:734
msgid "property"
msgstr "propietat"
-#: domains/python/__init__.py:749
+#: domains/python/__init__.py:735
msgid "type alias"
msgstr "escriviu l'àlies"
-#: domains/python/__init__.py:818
+#: domains/python/__init__.py:804
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :no-index: for"
" one of them"
msgstr "descripció de l'objecte duplicat de %s, una altra instància a %s, ús «:no-index:» per a un d'ells"
-#: domains/python/__init__.py:978
+#: domains/python/__init__.py:974
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr "s'ha trobat més d'un objectiu per a la referència creuada %r: %s"
-#: domains/python/__init__.py:1052
+#: domains/python/__init__.py:1048
msgid " (deprecated)"
msgstr " (obsolet)"
-#: domains/c/__init__.py:326 domains/cpp/__init__.py:483
-#: domains/python/_object.py:190 ext/napoleon/docstring.py:974
-msgid "Parameters"
-msgstr "Paràmetres"
-
-#: domains/python/_object.py:206
-msgid "Variables"
-msgstr "Variables"
-
-#: domains/python/_object.py:214
-msgid "Raises"
-msgstr "Llença"
+#: domains/cpp/__init__.py:394 domains/cpp/_symbol.py:946
+#, python-format
+msgid ""
+"Duplicate C++ declaration, also defined at %s:%s.\n"
+"Declaration is '.. cpp:%s:: %s'."
+msgstr "Declaració de C** duplicada, també definida a %s:%s.\nLa declaració és «.. cpp:%s:: %s»."
#: domains/cpp/__init__.py:159
msgid "Template Parameters"
@@ -2976,92 +3128,85 @@ msgstr "Paràmetres de la plantilla"
msgid "%s (C++ %s)"
msgstr "%s (C++ %s)"
-#: domains/cpp/__init__.py:392 domains/cpp/_symbol.py:942
-#, python-format
-msgid ""
-"Duplicate C++ declaration, also defined at %s:%s.\n"
-"Declaration is '.. cpp:%s:: %s'."
-msgstr "Declaració de C** duplicada, també definida a %s:%s.\nLa declaració és «.. cpp:%s:: %s»."
-
-#: domains/c/__init__.py:333 domains/cpp/__init__.py:496
+#: domains/c/__init__.py:361 domains/cpp/__init__.py:498
msgid "Return values"
msgstr "Valors retornats"
-#: domains/c/__init__.py:754 domains/cpp/__init__.py:940
+#: domains/c/__init__.py:782 domains/cpp/__init__.py:942
msgid "union"
msgstr "unió"
-#: domains/c/__init__.py:749 domains/cpp/__init__.py:942
+#: domains/c/__init__.py:777 domains/cpp/__init__.py:944
msgid "member"
msgstr "membre"
-#: domains/c/__init__.py:757 domains/cpp/__init__.py:943
+#: domains/c/__init__.py:785 domains/cpp/__init__.py:945
msgid "type"
msgstr "tipus"
-#: domains/cpp/__init__.py:944
+#: domains/cpp/__init__.py:946
msgid "concept"
msgstr "concepte"
-#: domains/c/__init__.py:755 domains/cpp/__init__.py:945
+#: domains/c/__init__.py:783 domains/cpp/__init__.py:947
msgid "enum"
msgstr "enumera"
-#: domains/c/__init__.py:756 domains/cpp/__init__.py:946
+#: domains/c/__init__.py:784 domains/cpp/__init__.py:948
msgid "enumerator"
msgstr "numerador"
-#: domains/c/__init__.py:760 domains/cpp/__init__.py:949
+#: domains/c/__init__.py:788 domains/cpp/__init__.py:951
msgid "function parameter"
msgstr "paràmetre de la funció"
-#: domains/cpp/__init__.py:952
+#: domains/cpp/__init__.py:954
msgid "template parameter"
msgstr "paràmetre de la plantilla"
-#: domains/c/__init__.py:211
-#, python-format
-msgid "%s (C %s)"
-msgstr "%s (C %s)"
-
-#: domains/c/__init__.py:277 domains/c/_symbol.py:557
+#: domains/c/__init__.py:279 domains/c/_symbol.py:569
#, python-format
msgid ""
"Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'."
msgstr "Declaració de C duplicada, també definida a %s:%s.\nLa declaració és «.. c:%s:: %s»."
-#: domains/c/__init__.py:750
+#: domains/c/__init__.py:211
+#, python-format
+msgid "%s (C %s)"
+msgstr "%s (C %s)"
+
+#: domains/c/__init__.py:778
msgid "variable"
msgstr "variable"
-#: domains/c/__init__.py:752
+#: domains/c/__init__.py:780
msgid "macro"
msgstr "macro"
-#: domains/c/__init__.py:753
+#: domains/c/__init__.py:781
msgid "struct"
msgstr "estructura"
-#: domains/std/__init__.py:91 domains/std/__init__.py:111
+#: domains/std/__init__.py:88 domains/std/__init__.py:108
#, python-format
msgid "environment variable; %s"
msgstr "variable d'entorn; %s"
-#: domains/std/__init__.py:119
+#: domains/std/__init__.py:116
#, python-format
msgid "%s; configuration value"
msgstr "%s; valor de configuració"
-#: domains/std/__init__.py:175
+#: domains/std/__init__.py:172
msgid "Type"
msgstr "Tipus"
-#: domains/std/__init__.py:185
+#: domains/std/__init__.py:182
msgid "Default"
msgstr "Predeterminat"
-#: domains/std/__init__.py:242
+#: domains/std/__init__.py:239
#, python-format
msgid ""
"Malformed option description %r, should look like \"opt\", \"-opt args\", \""
@@ -3148,522 +3293,430 @@ msgstr "numfig_format no vàlid: %s"
#: domains/std/__init__.py:1453
#, python-format
-msgid "undefined label: %r"
-msgstr "etiqueta sense definir: %r"
-
-#: domains/std/__init__.py:1456
-#, python-format
-msgid "Failed to create a cross reference. A title or caption not found: %r"
-msgstr "Ha fallat en crear una referència creuada. No es troba un títol o subtítol: %r"
-
-#: environment/adapters/toctree.py:324
-#, python-format
-msgid "circular toctree references detected, ignoring: %s <- %s"
-msgstr "s'han detectat referències circulars del toctree, s'ignora: %s <- %s"
-
-#: environment/adapters/toctree.py:349
-#, python-format
-msgid ""
-"toctree contains reference to document %r that doesn't have a title: no link"
-" will be generated"
-msgstr "el toctree conté una referència cap al document %r, el qual no conté un títol: no es generarà cap enllaç"
-
-#: environment/adapters/toctree.py:364
-#, python-format
-msgid "toctree contains reference to non-included document %r"
-msgstr "el toctree conté una referència cap a un document no inclòs %r"
-
-#: environment/adapters/toctree.py:367
-#, python-format
-msgid "toctree contains reference to non-existing document %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:123
-#, python-format
-msgid "see %s"
-msgstr "vegeu %s"
-
-#: environment/adapters/indexentries.py:133
-#, python-format
-msgid "see also %s"
-msgstr "vegeu també %s"
-
-#: environment/adapters/indexentries.py:141
-#, python-format
-msgid "unknown index entry type %r"
-msgstr "tipus d'entrada %r amb un índex desconegut"
-
-#: environment/adapters/indexentries.py:268
-#: templates/latex/sphinxmessages.sty.jinja:11
-msgid "Symbols"
-msgstr "Símbols"
-
-#: environment/collectors/asset.py:98
-#, python-format
-msgid "image file not readable: %s"
-msgstr "el fitxer d'imatge no es pot llegir: %s"
-
-#: environment/collectors/asset.py:126
-#, python-format
-msgid "image file %s not readable: %s"
-msgstr "el fitxer d'imatge %s no es pot llegir: %s"
-
-#: environment/collectors/asset.py:163
-#, python-format
-msgid "download file not readable: %s"
-msgstr "el fitxer de baixada no es pot llegir: %s"
-
-#: environment/collectors/toctree.py:259
-#, python-format
-msgid "%s is already assigned section numbers (nested numbered toctree?)"
-msgstr "%s ja té assignats números de secció (toctree amb numeració imbricada?)"
-
-#: _cli/util/errors.py:190
-msgid "Interrupted!"
-msgstr "S'ha interromput!"
-
-#: _cli/util/errors.py:194
-msgid "reStructuredText markup error!"
-msgstr ""
-
-#: _cli/util/errors.py:200
-msgid "Encoding error!"
-msgstr ""
-
-#: _cli/util/errors.py:203
-msgid "Recursion error!"
-msgstr ""
-
-#: _cli/util/errors.py:207
-msgid ""
-"This can happen with very large or deeply nested source files. You can "
-"carefully increase the default Python recursion limit of 1,000 in conf.py "
-"with e.g.:"
-msgstr ""
-
-#: _cli/util/errors.py:227
-msgid "Starting debugger:"
-msgstr ""
-
-#: _cli/util/errors.py:235
-msgid "The full traceback has been saved in:"
-msgstr "S'ha desat la traça completa a:"
-
-#: _cli/util/errors.py:240
-msgid ""
-"To report this error to the developers, please open an issue at "
-". Thanks!"
-msgstr "Per a informar d'aquest error als desenvolupadors, obriu un problema a . Gràcies!"
-
-#: _cli/util/errors.py:246
-msgid ""
-"Please also report this if it was a user error, so that a better error "
-"message can be provided next time."
-msgstr "Informeu-ho també si es tractava d'un error d'usuari, de manera que la pròxima vegada es pugui proporcionar un missatge d'error millor."
-
-#: transforms/post_transforms/__init__.py:88
-msgid ""
-"Could not determine the fallback text for the cross-reference. Might be a "
-"bug."
-msgstr "No s'ha pogut determinar el text alternatiu per a la referència creuada. Podria ser un error."
-
-#: transforms/post_transforms/__init__.py:237
-#, python-format
-msgid "more than one target found for 'any' cross-reference %r: could be %s"
-msgstr "s'ha trobat més d'una destinació per a «any» en la referència creuada %r: podria ser %s"
-
-#: transforms/post_transforms/__init__.py:299
-#, python-format
-msgid "%s:%s reference target not found: %s"
-msgstr "%s:%s no es troba la destinació de la referència: %s"
-
-#: transforms/post_transforms/__init__.py:305
-#, python-format
-msgid "%r reference target not found: %s"
-msgstr "%r no es troba la destinació de la referència: %s"
+msgid "undefined label: %r"
+msgstr "etiqueta sense definir: %r"
-#: transforms/post_transforms/images.py:79
+#: domains/std/__init__.py:1456
#, python-format
-msgid "Could not fetch remote image: %s [%s]"
-msgstr "No s'ha pogut recuperar la imatge remota: %s [%s]"
+msgid "Failed to create a cross reference. A title or caption not found: %r"
+msgstr "Ha fallat en crear una referència creuada. No es troba un títol o subtítol: %r"
-#: transforms/post_transforms/images.py:96
+#: ext/napoleon/docstring.py:178
#, python-format
-msgid "Could not fetch remote image: %s [%d]"
-msgstr "No s'ha pogut recuperar la imatge remota: %s [%d]"
+msgid "invalid value set (missing closing brace): %s"
+msgstr "conjunt de valors no vàlid (manca el claudàtor de tancament): %s"
-#: transforms/post_transforms/images.py:143
+#: ext/napoleon/docstring.py:185
#, python-format
-msgid "Unknown image format: %s..."
-msgstr "Format d'imatge desconegut: %s..."
+msgid "invalid value set (missing opening brace): %s"
+msgstr "conjunt de valors no vàlid (manca el claudàtor d'obertura): %s"
-#: builders/html/__init__.py:113
+#: ext/napoleon/docstring.py:192
#, python-format
-msgid "The HTML pages are in %(outdir)s."
-msgstr "Les pàgines en HTML es troben a %(outdir)s."
+msgid "malformed string literal (missing closing quote): %s"
+msgstr "Cadena incorrecta literal (manquen les cometes de tancament): %s"
-#: builders/html/__init__.py:348
+#: ext/napoleon/docstring.py:199
#, python-format
-msgid "Failed to read build info file: %r"
-msgstr "Ha fallat en llegir el fitxer d'informació de la construcció: %r"
+msgid "malformed string literal (missing opening quote): %s"
+msgstr "Cadena incorrecta literal (manquen les cometes d'obertura): %s"
-#: builders/html/__init__.py:364
-msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
-msgstr "build_info no coincideix, s'està copiant .buildinfo a .buildinfo.bak"
+#: ext/napoleon/docstring.py:902
+msgid "Example"
+msgstr "Exemple"
-#: builders/html/__init__.py:366
-msgid "building [html]: "
-msgstr "es construeix [html]:"
+#: ext/napoleon/docstring.py:903
+msgid "Examples"
+msgstr "Exemples"
-#: builders/html/__init__.py:383
-#, python-format
-msgid ""
-"template %s has been changed since the previous build, all docs will be "
-"rebuilt"
-msgstr "s'ha canviat la plantilla %s des de la compilació anterior, es reconstruiran tots els documents"
+#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:947
+msgid "Keyword Arguments"
+msgstr "Arguments de paraules clau"
-#: builders/html/__init__.py:507
-msgid "index"
-msgstr "índex"
+#: ext/napoleon/docstring.py:962
+msgid "Notes"
+msgstr "Notes"
-#: builders/html/__init__.py:560
-#, python-format
-msgid "Logo of %s"
-msgstr "Logotip de %s"
+#: ext/napoleon/docstring.py:971
+msgid "Other Parameters"
+msgstr "Altres paràmetres"
-#: builders/html/__init__.py:589
-msgid "next"
-msgstr "següent"
+#: ext/napoleon/docstring.py:1007
+msgid "Receives"
+msgstr "Rebudes"
-#: builders/html/__init__.py:598
-msgid "previous"
-msgstr "anterior"
+#: ext/napoleon/docstring.py:1011
+msgid "References"
+msgstr "Referències"
-#: builders/html/__init__.py:696
-msgid "generating indices"
-msgstr "s'estan generant els índexs"
+#: ext/napoleon/docstring.py:1043
+msgid "Warns"
+msgstr "Avisos"
-#: builders/html/__init__.py:711
-msgid "writing additional pages"
-msgstr "s'estan escrivint les pàgines addicionals"
+#: ext/napoleon/docstring.py:1047
+msgid "Yields"
+msgstr "Rendiments"
-#: builders/html/__init__.py:794
+#: ext/autodoc/_generate.py:151
+#: ext/autodoc/_legacy_class_based/_documenters.py:859
#, python-format
-msgid "cannot copy image file '%s': %s"
-msgstr "no es pot copiar el fitxer d'imatge «%s»: %s"
-
-#: builders/html/__init__.py:806
-msgid "copying downloadable files... "
-msgstr "s'estan copiant els fitxers que es poden baixar... "
+msgid "A mocked object is detected: %r"
+msgstr "S'ha detectat un objecte simulat: %r"
-#: builders/html/__init__.py:818
+#: ext/autodoc/_generate.py:334 ext/autodoc/_generate.py:348
+#: ext/autodoc/_generate.py:370 ext/autodoc/_generate.py:386
+#: ext/autodoc/_legacy_class_based/_documenters.py:1860
+#: ext/autodoc/_legacy_class_based/_documenters.py:1889
+#: ext/autodoc/_legacy_class_based/_documenters.py:1983
#, python-format
-msgid "cannot copy downloadable file %r: %s"
-msgstr "no s'ha pogut copiar el fitxer que es podia baixar %r: %s"
+msgid "alias of %s"
+msgstr "àlies de %s"
-#: builders/html/__init__.py:864
+#: ext/autodoc/_legacy_class_based/_documenters.py:1745
+#: ext/autodoc/_renderer.py:88
#, python-format
-msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
-msgstr "Ha fallat en copiar un fitxer al directori «static» del tema: %s: %r"
+msgid "Bases: %s"
+msgstr "Bases: %s"
-#: builders/html/__init__.py:882
+#: ext/autodoc/_directive_options.py:226
+#: ext/autodoc/_legacy_class_based/_directive_options.py:47
#, python-format
-msgid "Failed to copy a file in html_static_file: %s: %r"
-msgstr "Ha fallat en copiar un fitxer a html_static_file: %s: %r"
+msgid "invalid value for member-order option: %s"
+msgstr "valor no vàlid per a l'opció de l'ordre de membre: %s"
-#: builders/html/__init__.py:917
-msgid "copying static files"
-msgstr "s'estan copiant els fitxers estàtics"
+#: ext/autodoc/_directive_options.py:233
+#: ext/autodoc/_legacy_class_based/_directive_options.py:55
+#, python-format
+msgid "invalid value for class-doc-from option: %s"
+msgstr "valor no vàlid per a l'opció des de la documentació de classes: %s"
-#: builders/html/__init__.py:934
+#: ext/autodoc/_legacy_class_based/_documenters.py:239
+#: ext/autodoc/_names.py:45
#, python-format
-msgid "cannot copy static file %r"
-msgstr "no s'ha pogut copiar el fitxer estàtic %r"
+msgid "invalid signature for auto%s (%r)"
+msgstr "signatura no vàlida per a auto%s (%r)"
-#: builders/html/__init__.py:939
-msgid "copying extra files"
-msgstr "s'estan copiant els fitxers addicionals"
+#: ext/autodoc/_legacy_class_based/_documenters.py:800
+#: ext/autodoc/_names.py:53 ext/autodoc/_names.py:101
+#, python-format
+msgid ""
+"don't know which module to import for autodocumenting %r (try placing a "
+"\"module\" or \"currentmodule\" directive in the document, or giving an "
+"explicit module name)"
+msgstr "es desconeix quin és el mòdul que s'importarà per al document automàtic %r (proveu de col·locar una directiva «module» o «currentmodule» en el document o doneu-li un nom explícit al mòdul)"
-#: builders/html/__init__.py:949
+#: ext/autodoc/_names.py:89
#, python-format
-msgid "cannot copy extra file %r"
-msgstr "no s'ha pogut copiar el fitxer addicional %r"
+msgid "signature arguments given for automodule: '%s'"
+msgstr ""
-#: builders/html/__init__.py:955
+#: ext/autodoc/_names.py:93
#, python-format
-msgid "Failed to write build info file: %r"
-msgstr "Ha fallat en escriure el fitxer d'informació de la construcció: %r"
+msgid "return annotation given for automodule: '%s'"
+msgstr ""
-#: builders/html/__init__.py:1005
-msgid ""
-"search index couldn't be loaded, but not all documents will be built: the "
-"index will be incomplete."
-msgstr "no s'ha pogut carregar l'índex de cerca, i no es construiran tots els documents: l'índex estarà incomplet."
+#: ext/autodoc/_legacy_class_based/_documenters.py:956
+#: ext/autodoc/_names.py:134
+msgid "\"::\" in automodule name doesn't make sense"
+msgstr "«::» en el nom de l'«automodule» no té sentit"
-#: builders/html/__init__.py:1052
+#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:984
#, python-format
-msgid "page %s matches two patterns in html_sidebars: %r and %r"
-msgstr "la pàgina %s coincideix amb dos patrons a html_sidebars: %r i %r"
+msgid "Failed to remove %s: %s"
+msgstr "S'ha fallat en eliminar %s: %s"
-#: builders/html/__init__.py:1216
+#: ext/apidoc/_generate.py:69
#, python-format
+msgid "Would create file %s."
+msgstr "S'hauria de crear el fitxer %s."
+
+#: ext/apidoc/_cli.py:28
msgid ""
-"a Unicode error occurred when rendering the page %s. Please make sure all "
-"config values that contain non-ASCII content are Unicode strings."
-msgstr "s'ha produït un error d'Unicode en representar la pàgina %s. Assegureu-vos que tots els valors de configuració que contenen contingut que no és ASCII són cadenes Unicode."
+"\n"
+"Look recursively in for Python modules and packages and create\n"
+"one reST file with automodule directives per package in the .\n"
+"\n"
+"The s can be file and/or directory patterns that will be\n"
+"excluded from generation.\n"
+"\n"
+"Note: By default this script will not overwrite already created files."
+msgstr "\nMireu recursivament a per als mòduls i paquets de Python\ni creeu un fitxer reST amb les directives «automodule» per paquet en el .\n\nEls poden ser fitxers i/o patrons de directori que seran\nexclosos de la generació.\n\nNota: De manera predeterminada, aquest script no sobreescriurà els fitxers que ja s'han creat."
-#: builders/html/__init__.py:1224
-#, python-format
+#: ext/apidoc/_cli.py:45
+msgid "path to module to document"
+msgstr "camí cap al mòdul que es documenta"
+
+#: ext/apidoc/_cli.py:50
msgid ""
-"An error happened in rendering the page %s.\n"
-"Reason: %r"
-msgstr "S'ha produït un error en representar la pàgina %s.\nMotiu: %r"
+"fnmatch-style file and/or directory patterns to exclude from generation"
+msgstr "fitxer d'estil fnmatch i/o patrons de directori que s'exclouran de la generació"
-#: builders/html/__init__.py:1257
-msgid "dumping object inventory"
-msgstr "s'està bolcant l'inventari d'objectes"
+#: ext/apidoc/_cli.py:60
+msgid "directory to place all output"
+msgstr "directori per a col·locar tota la sortida"
-#: builders/html/__init__.py:1265
-#, python-format
-msgid "dumping search index in %s"
-msgstr "s'està bolcant l'índex de cerca a %s"
+#: ext/apidoc/_cli.py:75
+msgid "maximum depth of submodules to show in the TOC (default: 4)"
+msgstr "profunditat màxima dels submòduls que es mostraran a la TOC (predeterminada: 4)"
-#: builders/html/__init__.py:1308
-#, python-format
-msgid "invalid js_file: %r, ignored"
-msgstr "js_file no vàlid: %r, s'ignora"
+#: ext/apidoc/_cli.py:82
+msgid "overwrite existing files"
+msgstr "sobreescriu els fitxers existents"
-#: builders/html/__init__.py:1342
-msgid "Many math_renderers are registered. But no math_renderer is selected."
-msgstr "S'han enregistrat molts math_renderer. Però no s'ha seleccionat math_renderer."
+#: ext/apidoc/_cli.py:91
+msgid ""
+"follow symbolic links. Powerful when combined with "
+"collective.recipe.omelette."
+msgstr "seguir els enllaços simbòlics. Potent quan es combina amb el paquet collective.recipe.omelette."
-#: builders/html/__init__.py:1346
-#, python-format
-msgid "Unknown math_renderer %r is given."
-msgstr "S'ha donat un math_renderer %r desconegut."
+#: ext/apidoc/_cli.py:99
+msgid "run the script without creating files"
+msgstr "executa l'script sense crear els fitxers"
-#: builders/html/__init__.py:1360
-#, python-format
-msgid "html_extra_path entry %r is placed inside outdir"
-msgstr "l'entrada html_extra_path %r es col·loca dins del directori de sortida"
+#: ext/apidoc/_cli.py:106
+msgid "put documentation for each module on its own page"
+msgstr "posa la documentació per a cada mòdul a la seva pròpia pàgina"
-#: builders/html/__init__.py:1365
-#, python-format
-msgid "html_extra_path entry %r does not exist"
-msgstr "l'entrada html_extra_path %r no existeix"
+#: ext/apidoc/_cli.py:113
+msgid "include \"_private\" modules"
+msgstr "inclou «_private» en els mòduls"
-#: builders/html/__init__.py:1380
-#, python-format
-msgid "html_static_path entry %r is placed inside outdir"
-msgstr "l'entrada html_static_path %r es col·loca dins del directori de sortida"
+#: ext/apidoc/_cli.py:120
+msgid "filename of table of contents (default: modules)"
+msgstr "nom de fitxer de la taula de contingut (predeterminat: mòduls)"
-#: builders/html/__init__.py:1385
-#, python-format
-msgid "html_static_path entry %r does not exist"
-msgstr "l'entrada html_static_path %r no existeix"
+#: ext/apidoc/_cli.py:127
+msgid "don't create a table of contents file"
+msgstr "no crea un fitxer de taula de contingut"
-#: builders/html/__init__.py:1396 builders/latex/__init__.py:504
-#, python-format
-msgid "logo file %r does not exist"
-msgstr "el fitxer de logotip %r no existeix"
+#: ext/apidoc/_cli.py:135
+msgid ""
+"don't create headings for the module/package packages (e.g. when the "
+"docstrings already contain them)"
+msgstr "no crea capçaleres per als paquets del mòdul/paquet (p. ex., quan les cadenes de documentació ja les contenen)"
-#: builders/html/__init__.py:1407
-#, python-format
-msgid "favicon file %r does not exist"
-msgstr "el fitxer icona de web %r no existeix"
+#: ext/apidoc/_cli.py:145
+msgid "put module documentation before submodule documentation"
+msgstr "posa la documentació del mòdul abans de la documentació del submòdul"
-#: builders/html/__init__.py:1420
-#, python-format
+#: ext/apidoc/_cli.py:152
msgid ""
-"Values in 'html_sidebars' must be a list of strings. At least one pattern "
-"has a string value: %s. Change to `html_sidebars = %r`."
-msgstr "Els valors a «html_sidebars» han de ser una llista de cadenes. Almenys un patró té un valor de cadena: %s. Canvia a «html_sidebars = %r»."
+"interpret module paths according to PEP-0420 implicit namespaces "
+"specification"
+msgstr "interpreta els camins dels mòduls segons l'especificació d'espais de noms implícits al PEP-0420"
-#: builders/html/__init__.py:1433
+#: ext/apidoc/_cli.py:160
msgid ""
-"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
-"configuration options)"
-msgstr "HTML 4 ja no és compatible amb Sphinx. (s'ha detectat «html4_writer=true» a les opcions de configuració)"
+"Comma-separated list of options to pass to automodule directive (or use "
+"SPHINX_APIDOC_OPTIONS)."
+msgstr "Llista d'opcions separades per comes que es passarà a la directiva «automodule» (o useu SPHINX_APIDOC_OPTIONS)."
-#: builders/html/__init__.py:1449
-#, python-format
-msgid "%s %s documentation"
-msgstr "%s %s documentació"
+#: ext/apidoc/_cli.py:170
+msgid "file suffix (default: rst)"
+msgstr "sufix del fitxer (predeterminat: rst)"
-#: builders/html/_build_info.py:32
-msgid "failed to read broken build info file (unknown version)"
-msgstr "s'ha fallat en llegir el fitxer d'informació de la compilació trencada (versió desconeguda)"
+#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:950
+msgid "Remove existing files in the output directory that were not generated"
+msgstr "Elimina els fitxers existents al directori de sortida que no s'hagin generat"
-#: builders/html/_build_info.py:36
-msgid "failed to read broken build info file (missing config entry)"
-msgstr "s'ha fallat en llegir el fitxer d'informació de la compilació trencada (manca l'entrada «config»)"
+#: ext/apidoc/_cli.py:186
+msgid "generate a full project with sphinx-quickstart"
+msgstr "genera un projecte complet amb «sphinx-quickstart»"
+
+#: ext/apidoc/_cli.py:193
+msgid "append module_path to sys.path, used when --full is given"
+msgstr "afegeix module_path a sys.path, s'usa quan s'indica el paràmetre «--full»"
+
+#: ext/apidoc/_cli.py:200
+msgid "project name (default: root module name)"
+msgstr "nom del projecte (predeterminat: nom del mòdul arrel)"
+
+#: ext/apidoc/_cli.py:207
+msgid "project author(s), used when --full is given"
+msgstr "autoria del projecte, s'usa quan s'indica el paràmetre «--full»"
-#: builders/html/_build_info.py:39
-msgid "failed to read broken build info file (missing tags entry)"
-msgstr "s'ha fallat en llegir el fitxer d'informació de la compilació trencada (manca l'entrada «tags»)"
+#: ext/apidoc/_cli.py:214
+msgid "project version, used when --full is given"
+msgstr "versió del projecte, s'usa quan s'indica el paràmetre «--full»"
-#: builders/latex/__init__.py:118
-#, python-format
-msgid "The LaTeX files are in %(outdir)s."
-msgstr "Els fitxers en LaTeX es troben a %(outdir)s."
+#: ext/apidoc/_cli.py:222
+msgid "project release, used when --full is given, defaults to --doc-version"
+msgstr "llançament del projecte, s'usa quan s'indica el paràmetre «--full», predeterminat a «--doc-version»"
-#: builders/latex/__init__.py:121
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through (pdf)latex\n"
-"(use `make latexpdf' here to do that automatically)."
-msgstr "\nExecuteu l'ordre «make» en aquest directori per a executar-les\nmitjançant el (pdf)latex (useu l'ordre «make latexpdf» per a fer-ho\nautomàticament)."
+#: ext/apidoc/_cli.py:226
+msgid "extension options"
+msgstr "opcions de l'extensió"
-#: builders/latex/__init__.py:159
-msgid "no \"latex_documents\" config value found; no documents will be written"
-msgstr "no s'ha trobat el valor de configuració «latex_documents»: no s'escriurà cap document"
+#: ext/apidoc/_cli.py:232
+msgid "enable arbitrary extensions, used when --full is given"
+msgstr "habilita les extensions arbitràries, que s'usen quan s'indica «--full»"
-#: builders/latex/__init__.py:170
+#: ext/apidoc/_cli.py:240
#, python-format
-msgid "\"latex_documents\" config value references unknown document %s"
-msgstr "El valor de configuració «latex_documents» fa referència a un document %s desconegut"
-
-#: builders/latex/__init__.py:209 templates/latex/latex.tex.jinja:91
-msgid "Release"
-msgstr "Versió"
+msgid "enable %s extension, used when --full is given"
+msgstr "habilita l'extensió %s, que s'usa quan s'indica «--full»"
-#: builders/latex/__init__.py:428
-msgid "copying TeX support files"
-msgstr "s'estan copiant els fitxers de suport de TeX"
+#: ext/apidoc/_cli.py:291
+#, python-format
+msgid "%s is not a directory."
+msgstr "%s no és cap directori."
-#: builders/latex/__init__.py:465
-msgid "copying additional files"
-msgstr "s'estan copiant els fitxers addicionals"
+#: ext/apidoc/_extension.py:50
+msgid "Running apidoc"
+msgstr "S'està executant apidoc"
-#: builders/latex/__init__.py:536
+#: ext/apidoc/_extension.py:102
#, python-format
-msgid "Unknown configure key: latex_elements[%r], ignored."
-msgstr "Clau de configuració desconeguda: latex_elements[%r], s'ignora."
+msgid "apidoc_modules item %i must be a dict"
+msgstr "«apidoc_modules» l'element %i ha de ser un diccionari"
-#: builders/latex/__init__.py:544
+#: ext/apidoc/_extension.py:110
#, python-format
-msgid "Unknown theme option: latex_theme_options[%r], ignored."
-msgstr "Opció desconeguda de tema: latex_theme_options[%r], s'ignora."
-
-#: builders/latex/transforms.py:120
-msgid "Failed to get a docname!"
-msgstr "Ha fallat en obtenir el docname!"
+msgid "apidoc_modules item %i must have a 'path' key"
+msgstr "«apidoc_modules» l'element %i ha de tenir una clau «path»."
-#: builders/latex/transforms.py:121
+#: ext/apidoc/_extension.py:115
#, python-format
-msgid "Failed to get a docname for source %r!"
-msgstr "S'ha fallat en obtenir un nom de document per a la font %r!"
+msgid "apidoc_modules item %i 'path' must be a string"
+msgstr "«apidoc_modules» l'element «path» %i ha de ser una cadena"
-#: builders/latex/transforms.py:487
+#: ext/apidoc/_extension.py:121
#, python-format
-msgid "No footnote was found for given reference node %r"
-msgstr "No s'ha trobat cap nota a peu de pàgina per al node de referència %r donat"
+msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
+msgstr "«apidoc_modules» l'element «path» %i no és una carpeta existent: %s"
-#: builders/latex/theming.py:88
+#: ext/apidoc/_extension.py:133
#, python-format
-msgid "%r doesn't have \"theme\" setting"
-msgstr "%r no té la configuració «theme»"
+msgid "apidoc_modules item %i must have a 'destination' key"
+msgstr "«apidoc_modules» l'element %i ha de tenir una clau «destination»"
-#: builders/latex/theming.py:91
+#: ext/apidoc/_extension.py:140
#, python-format
-msgid "%r doesn't have \"%s\" setting"
-msgstr "%r no té la configuració «%s»"
+msgid "apidoc_modules item %i 'destination' must be a string"
+msgstr "«apidoc_modules» l'element «destination» %i ha de ser una cadena"
-#: templates/latex/longtable.tex.jinja:52
-#: templates/latex/sphinxmessages.sty.jinja:8
-msgid "continued from previous page"
-msgstr "ve de la pàgina anterior"
+#: ext/apidoc/_extension.py:147
+#, python-format
+msgid "apidoc_modules item %i 'destination' should be a relative path"
+msgstr "«apidoc_modules» l'element «destination» %i hauria de ser un camí relatiu"
-#: templates/latex/longtable.tex.jinja:63
-#: templates/latex/sphinxmessages.sty.jinja:9
-msgid "continues on next page"
-msgstr "continua a la pàgina següent"
+#: ext/apidoc/_extension.py:157
+#, python-format
+msgid "apidoc_modules item %i cannot create destination directory: %s"
+msgstr "«apidoc_modules» l'element %i no pot crear el directori de destinació: %s"
-#: templates/latex/sphinxmessages.sty.jinja:10
-msgid "Non-alphabetical"
-msgstr "No alfabètic"
+#: ext/apidoc/_extension.py:178
+#, python-format
+msgid "apidoc_modules item %i '%s' must be an int"
+msgstr "«apidoc_modules» l'element %i «%s» ha de ser un nombre enter"
-#: templates/latex/sphinxmessages.sty.jinja:12
-msgid "Numbers"
-msgstr "Números"
+#: ext/apidoc/_extension.py:192
+#, python-format
+msgid "apidoc_modules item %i '%s' must be a boolean"
+msgstr "«apidoc_modules» l'element %i «%s» ha de ser un booleà"
-#: templates/latex/sphinxmessages.sty.jinja:13
-msgid "page"
-msgstr "pàgina"
+#: ext/apidoc/_extension.py:210
+#, python-format
+msgid "apidoc_modules item %i has unexpected keys: %s"
+msgstr "«apidoc_modules» l'element %i té claus inesperades: %s"
-#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:940
-msgid "Keyword Arguments"
-msgstr "Arguments de paraules clau"
+#: ext/apidoc/_extension.py:248
+#, python-format
+msgid "apidoc_modules item %i '%s' must be a sequence"
+msgstr "«apidoc_modules» l'element %i «%s» ha de ser una seqüència"
-#: ext/napoleon/docstring.py:176
+#: ext/apidoc/_extension.py:257
#, python-format
-msgid "invalid value set (missing closing brace): %s"
-msgstr "conjunt de valors no vàlid (manca el claudàtor de tancament): %s"
+msgid "apidoc_modules item %i '%s' must contain strings"
+msgstr "«apidoc_modules» l'element %i «%s» ha de contenir cadenes"
-#: ext/napoleon/docstring.py:183
+#: ext/autosummary/generate.py:212 ext/autosummary/generate.py:425
#, python-format
-msgid "invalid value set (missing opening brace): %s"
-msgstr "conjunt de valors no vàlid (manca el claudàtor d'obertura): %s"
+msgid ""
+"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
+"%s"
+msgstr "autosummary: ha fallat en determinar %r que s'ha de documentar, s'ha plantejat l'excepció següent:\n%s"
-#: ext/napoleon/docstring.py:190
+#: ext/autosummary/generate.py:630
#, python-format
-msgid "malformed string literal (missing closing quote): %s"
-msgstr "Cadena incorrecta literal (manquen les cometes de tancament): %s"
+msgid "[autosummary] generating autosummary for: %s"
+msgstr "[autosummary] s'està generant autosummary per a: %s"
-#: ext/napoleon/docstring.py:197
+#: ext/autosummary/generate.py:634
#, python-format
-msgid "malformed string literal (missing opening quote): %s"
-msgstr "Cadena incorrecta literal (manquen les cometes d'obertura): %s"
+msgid "[autosummary] writing to %s"
+msgstr "[autosummary] s'està escrivint a %s"
-#: ext/napoleon/docstring.py:895
-msgid "Example"
-msgstr "Exemple"
+#: ext/autosummary/generate.py:679
+#, python-format
+msgid ""
+"[autosummary] failed to import %s.\n"
+"Possible hints:\n"
+"%s"
+msgstr "[autosummary]: ha fallat en importar %s.\nPossibles pistes:\n%s"
-#: ext/napoleon/docstring.py:896
-msgid "Examples"
-msgstr "Exemples"
+#: ext/autosummary/generate.py:877
+msgid ""
+"\n"
+"Generate ReStructuredText using autosummary directives.\n"
+"\n"
+"sphinx-autogen is a frontend to sphinx.ext.autosummary.generate. It generates\n"
+"the reStructuredText files from the autosummary directives contained in the\n"
+"given input files.\n"
+"\n"
+"The format of the autosummary directive is documented in the\n"
+"``sphinx.ext.autosummary`` Python module and can be read using::\n"
+"\n"
+" pydoc sphinx.ext.autosummary\n"
+msgstr "\nGenera ReStructuredText mitjançant directrius de resum automàtic «autosummary».\n\n«sphinx-autogen» és un frontal per a sphinx.ext.autosummary.generate.\nGenera els fitxers en reStructuredText des de les directrius d'autosummary\ncontingudes en els fitxers d'entrada indicats.\n\nEl format de les directrius d'autosummary està documentat en el mòdul\n``sphinx.ext.autosummary`` de Python i es pot llegir mitjançant l'ordre següent::\n\npydoc sphinx.ext.autosummary\n"
-#: ext/napoleon/docstring.py:956
-msgid "Notes"
-msgstr "Notes"
+#: ext/autosummary/generate.py:899
+msgid "source files to generate rST files for"
+msgstr "fitxers font per a generar els fitxers rST per a"
-#: ext/napoleon/docstring.py:965
-msgid "Other Parameters"
-msgstr "Altres paràmetres"
+#: ext/autosummary/generate.py:907
+msgid "directory to place all output in"
+msgstr "directori per a col·locar tota la sortida a"
-#: ext/napoleon/docstring.py:1001
-msgid "Receives"
-msgstr "Rebudes"
+#: ext/autosummary/generate.py:915
+#, python-format
+msgid "default suffix for files (default: %(default)s)"
+msgstr "sufix predeterminat per als fitxers (predeterminat: %(default)s)"
-#: ext/napoleon/docstring.py:1005
-msgid "References"
-msgstr "Referències"
+#: ext/autosummary/generate.py:923
+#, python-format
+msgid "custom template directory (default: %(default)s)"
+msgstr "directori de plantilles personalitzades (predeterminat: %(default)s)"
-#: ext/napoleon/docstring.py:1037
-msgid "Warns"
-msgstr "Avisos"
+#: ext/autosummary/generate.py:931
+#, python-format
+msgid "document imported members (default: %(default)s)"
+msgstr "document de membres importats (predeterminat: %(default)s)"
-#: ext/napoleon/docstring.py:1041
-msgid "Yields"
-msgstr "Rendiments"
+#: ext/autosummary/generate.py:940
+#, python-format
+msgid ""
+"document exactly the members in module __all__ attribute. (default: "
+"%(default)s)"
+msgstr "documenta exactament els membres en l'atribut __all__ del mòdul (predeterminat: %(default)s)."
-#: ext/autosummary/__init__.py:284
+#: ext/autosummary/__init__.py:235
#, python-format
msgid "autosummary references excluded document %r. Ignored."
msgstr "referències autosummary excloses del document %r. S'ignora."
-#: ext/autosummary/__init__.py:288
+#: ext/autosummary/__init__.py:239
#, python-format
msgid ""
"autosummary: stub file not found %r. Check your autosummary_generate "
"setting."
msgstr "autosummary: no s'ha trobat el fitxer stub %r. Verifiqueu la vostra configuració autosummary_generate."
-#: ext/autosummary/__init__.py:309
+#: ext/autosummary/__init__.py:260
msgid "A captioned autosummary requires :toctree: option. ignored."
msgstr "Un resum automàtic amb subtítols requereix l'opció «:toctree:». S'ignora."
-#: ext/autosummary/__init__.py:384
+#: ext/autosummary/__init__.py:329
#, python-format
msgid ""
"autosummary: failed to import %s.\n"
@@ -3671,548 +3724,585 @@ msgid ""
"%s"
msgstr "autosummary: ha fallat en importar %s.\nPossibles pistes:\n%s"
-#: ext/autosummary/__init__.py:404
-#, python-format
-msgid "failed to parse name %s"
-msgstr "ha fallat en analitzar el nom %s"
-
-#: ext/autosummary/__init__.py:412
+#: ext/autosummary/__init__.py:358
#, python-format
msgid "failed to import object %s"
msgstr "ha fallat en importar l'objecte %s"
-#: ext/autosummary/__init__.py:730
+#: ext/autosummary/__init__.py:652
#, python-format
msgid ""
"Summarised items should not include the current module. Replace %r with %r."
msgstr "Els elements resumits no han d'incloure el mòdul actual. Substituïu %r per %r."
-#: ext/autosummary/__init__.py:927
+#: ext/autosummary/__init__.py:850
#, python-format
msgid "autosummary_generate: file not found: %s"
msgstr "autosummary_generate: no s'ha trobat el fitxer: %s"
-#: ext/autosummary/__init__.py:937
+#: ext/autosummary/__init__.py:860
msgid ""
"autosummary generates .rst files internally. But your source_suffix does not"
" contain .rst. Skipped."
msgstr "«autosummary» genera internament els fitxers «.rst». Però el vostre source_suffix no conté cap «.rst». S'omet."
-#: ext/autosummary/generate.py:232 ext/autosummary/generate.py:450
+#: ext/intersphinx/_load.py:61
#, python-format
msgid ""
-"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
-"%s"
-msgstr "autosummary: ha fallat en determinar %r que s'ha de documentar, s'ha plantejat l'excepció següent:\n%s"
+"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
+"identifiers must be non-empty strings."
+msgstr "L'identificador «%r» del projecte intersphinx no és vàlid a intersphinx_mapping. Els identificadors de projecte han de ser cadenes no buides."
-#: ext/autosummary/generate.py:588
+#: ext/intersphinx/_load.py:72
#, python-format
-msgid "[autosummary] generating autosummary for: %s"
-msgstr "[autosummary] s'està generant autosummary per a: %s"
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
+"or list."
+msgstr "El valor «%r» no és vàlid a intersphinx_mapping[%r]. S'esperava una tupla o llista de dos elements."
-#: ext/autosummary/generate.py:592
+#: ext/intersphinx/_load.py:83
#, python-format
-msgid "[autosummary] writing to %s"
-msgstr "[autosummary] s'està escrivint a %s"
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
+" inventory locations) pair."
+msgstr "El valor «%r» no és vàlid a intersphinx_mapping[%r]. Els valors han de ser un parell (URI de destinació, ubicacions de l'inventari)."
-#: ext/autosummary/generate.py:637
+#: ext/intersphinx/_load.py:94
#, python-format
msgid ""
-"[autosummary] failed to import %s.\n"
-"Possible hints:\n"
-"%s"
-msgstr "[autosummary]: ha fallat en importar %s.\nPossibles pistes:\n%s"
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique non-empty strings."
+msgstr "El valor «%r» de l'URI de destinació no és vàlid a intersphinx_mapping[%r][0]. Els URI de destinació han de ser cadenes úniques no buides."
-#: ext/autosummary/generate.py:836
+#: ext/intersphinx/_load.py:103
+#, python-format
msgid ""
-"\n"
-"Generate ReStructuredText using autosummary directives.\n"
-"\n"
-"sphinx-autogen is a frontend to sphinx.ext.autosummary.generate. It generates\n"
-"the reStructuredText files from the autosummary directives contained in the\n"
-"given input files.\n"
-"\n"
-"The format of the autosummary directive is documented in the\n"
-"``sphinx.ext.autosummary`` Python module and can be read using::\n"
-"\n"
-" pydoc sphinx.ext.autosummary\n"
-msgstr "\nGenera ReStructuredText mitjançant directrius de resum automàtic «autosummary».\n\n«sphinx-autogen» és un frontal per a sphinx.ext.autosummary.generate.\nGenera els fitxers en reStructuredText des de les directrius d'autosummary\ncontingudes en els fitxers d'entrada indicats.\n\nEl format de les directrius d'autosummary està documentat en el mòdul\n``sphinx.ext.autosummary`` de Python i es pot llegir mitjançant l'ordre següent::\n\npydoc sphinx.ext.autosummary\n"
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique (other instance in intersphinx_mapping[%r])."
+msgstr "El valor «%r» de l'URI de destinació no és vàlid a intersphinx_mapping[%r][0]. Els URI de destinació han de ser únics (una altra instància a intersphinx_mapping[%r])."
-#: ext/autosummary/generate.py:858
-msgid "source files to generate rST files for"
-msgstr "fitxers font per a generar els fitxers rST per a"
+#: ext/intersphinx/_load.py:122
+#, python-format
+msgid ""
+"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
+"Inventory locations must be non-empty strings or None."
+msgstr "El valor «%r» d'ubicació de l'inventari no és vàlid a intersphinx_mapping[%r][1]. Les ubicacions de l'inventari han de ser cadenes no buides o «None»."
-#: ext/autosummary/generate.py:866
-msgid "directory to place all output in"
-msgstr "directori per a col·locar tota la sortida a"
+#: ext/intersphinx/_load.py:132
+msgid "Invalid `intersphinx_mapping` configuration (1 error)."
+msgstr "Configuració d'«intersphinx_mapping» no vàlida (1 error)."
-#: ext/autosummary/generate.py:874
+#: ext/intersphinx/_load.py:135
#, python-format
-msgid "default suffix for files (default: %(default)s)"
-msgstr "sufix predeterminat per als fitxers (predeterminat: %(default)s)"
+msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
+msgstr "Configuració d'«intersphinx_mapping» no vàlida (%s errors)."
+
+#: ext/intersphinx/_load.py:158
+msgid "An invalid intersphinx_mapping entry was added after normalisation."
+msgstr "S'ha afegit una entrada intersphinx_mapping no vàlida després de la normalització."
+
+#: ext/intersphinx/_load.py:297
+#, python-format
+msgid "loading intersphinx inventory '%s' from %s ..."
+msgstr "s'està carregant l'inventari intersphinx «%s» de %s ..."
+
+#: ext/intersphinx/_load.py:324
+msgid ""
+"encountered some issues with some of the inventories, but they had working "
+"alternatives:"
+msgstr "s'han trobat alguns problemes amb alguns dels inventaris, però tenien alternatives funcionals:"
+
+#: ext/intersphinx/_load.py:332
+#, python-format
+msgid ""
+"failed to reach any of the inventories with the following issues:\n"
+"%s"
+msgstr ""
-#: ext/autosummary/generate.py:882
+#: ext/intersphinx/_load.py:411
#, python-format
-msgid "custom template directory (default: %(default)s)"
-msgstr "directori de plantilles personalitzades (predeterminat: %(default)s)"
+msgid "intersphinx inventory has moved: %s -> %s"
+msgstr "s'ha mogut l'inventari intersphinx: %s -> %s"
-#: ext/autosummary/generate.py:890
+#: ext/intersphinx/_resolve.py:53
#, python-format
-msgid "document imported members (default: %(default)s)"
-msgstr "document de membres importats (predeterminat: %(default)s)"
+msgid "(in %s %s)"
+msgstr ""
-#: ext/autosummary/generate.py:899
+#: ext/intersphinx/_resolve.py:55
#, python-format
-msgid ""
-"document exactly the members in module __all__ attribute. (default: "
-"%(default)s)"
-msgstr "documenta exactament els membres en l'atribut __all__ del mòdul. (predeterminat: %(default)s)"
+msgid "(in %s)"
+msgstr "(a %s)"
-#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:909
-msgid "Remove existing files in the output directory that were not generated"
-msgstr "Elimina els fitxers existents al directori de sortida que no s'hagin generat"
+#: ext/intersphinx/_resolve.py:112
+#, python-format
+msgid "inventory '%s': duplicate matches found for %s:%s"
+msgstr "inventari «%s»: s'han trobat coincidències duplicades per a %s:%s"
-#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:944
+#: ext/intersphinx/_resolve.py:122
#, python-format
-msgid "Failed to remove %s: %s"
-msgstr "S'ha fallat en eliminar %s: %s"
+msgid "inventory '%s': multiple matches found for %s:%s"
+msgstr "inventari «%s»: s'han trobat múltiples coincidències per a %s:%s"
-#: ext/apidoc/_cli.py:28
-msgid ""
-"\n"
-"Look recursively in for Python modules and packages and create\n"
-"one reST file with automodule directives per package in the .\n"
-"\n"
-"The s can be file and/or directory patterns that will be\n"
-"excluded from generation.\n"
-"\n"
-"Note: By default this script will not overwrite already created files."
-msgstr "\nMireu recursivament a per als mòduls i paquets de Python\ni creeu un fitxer reST amb les directives «automodule» per paquet en el .\n\nEls poden ser fitxers i/o patrons de directori que seran\nexclosos de la generació.\n\nNota: De manera predeterminada, aquest script no sobreescriurà els fitxers que ja s'han creat."
+#: ext/intersphinx/_resolve.py:387
+#, python-format
+msgid "inventory for external cross-reference not found: %r"
+msgstr "no es troba l'inventari per a la referència creuada externa: %r"
-#: ext/apidoc/_cli.py:45
-msgid "path to module to document"
-msgstr "camí cap al mòdul que es documenta"
+#: ext/intersphinx/_resolve.py:396
+#, python-format
+msgid "invalid external cross-reference suffix: %r"
+msgstr "no es troba l'inventari per a la referència creuada externa: %r"
-#: ext/apidoc/_cli.py:50
-msgid ""
-"fnmatch-style file and/or directory patterns to exclude from generation"
-msgstr "fitxer d'estil fnmatch i/o patrons de directori que s'exclouran de la generació"
+#: ext/intersphinx/_resolve.py:407
+#, python-format
+msgid "domain for external cross-reference not found: %r"
+msgstr "no es troba el domini per a la referència creuada externa: %r"
-#: ext/apidoc/_cli.py:60
-msgid "directory to place all output"
-msgstr "directori per a col·locar tota la sortida"
+#: ext/intersphinx/_resolve.py:561
+#, python-format
+msgid "external %s:%s reference target not found: %s"
+msgstr "%s externa: no es troba la destinació de la referència %s: %s"
-#: ext/apidoc/_cli.py:75
-msgid "maximum depth of submodules to show in the TOC (default: 4)"
-msgstr "profunditat màxima dels submòduls que es mostraran a la TOC (predeterminada: 4)"
+#: ext/autodoc/_dynamic/_loader.py:144
+#: ext/autodoc/_legacy_class_based/_documenters.py:882
+#, python-format
+msgid "error while formatting signature for %s: %s"
+msgstr "error mentre es donava format a la signatura per a %s: %s"
-#: ext/apidoc/_cli.py:82
-msgid "overwrite existing files"
-msgstr "sobreescriu els fitxers existents"
+#: ext/autodoc/_dynamic/_loader.py:193
+#, python-format
+msgid "Ignoring invalid __all__ in module %s: %r"
+msgstr ""
-#: ext/apidoc/_cli.py:91
-msgid ""
-"follow symbolic links. Powerful when combined with "
-"collective.recipe.omelette."
-msgstr "seguir els enllaços simbòlics. Potent quan es combina amb el paquet collective.recipe.omelette."
+#: ext/autodoc/_dynamic/_loader.py:332 ext/autodoc/_dynamic/_signatures.py:496
+#: ext/autodoc/_dynamic/_signatures.py:612
+#: ext/autodoc/_legacy_class_based/_documenters.py:1284
+#: ext/autodoc/_legacy_class_based/_documenters.py:1372
+#: ext/autodoc/_legacy_class_based/_documenters.py:2906
+#, python-format
+msgid "Failed to get a function signature for %s: %s"
+msgstr "Ha fallat en obtenir una signatura de funció per a %s: %s"
-#: ext/apidoc/_cli.py:99
-msgid "run the script without creating files"
-msgstr "executa l'script sense crear els fitxers"
+#: ext/autodoc/_dynamic/_type_comments.py:120
+#, python-format
+msgid "Failed to update signature for %r: parameter not found: %s"
+msgstr "Ha fallat en actualitzar la signatura per a %r: no es troba el paràmetre: %s"
-#: ext/apidoc/_cli.py:106
-msgid "put documentation for each module on its own page"
-msgstr "posa la documentació per a cada mòdul a la seva pròpia pàgina"
+#: ext/autodoc/_dynamic/_type_comments.py:123
+#, python-format
+msgid "Failed to parse type_comment for %r: %s"
+msgstr "Ha fallat en analitzar type_comment per a %r: %s"
-#: ext/apidoc/_cli.py:113
-msgid "include \"_private\" modules"
-msgstr "inclou «_private» en els mòduls"
+#: ext/autodoc/_dynamic/_docstrings.py:268
+#: ext/autodoc/_legacy_class_based/_documenters.py:2499
+#, python-format
+msgid "Invalid __slots__ found on %s. Ignored."
+msgstr "S'han trobat __slots__ no vàlids a %s. S'ignora."
-#: ext/apidoc/_cli.py:120
-msgid "filename of table of contents (default: modules)"
-msgstr "nom de fitxer de la taula de contingut (predeterminat: mòduls)"
+#: ext/autodoc/_dynamic/_signatures.py:102
+#: ext/autodoc/_legacy_class_based/_documenters.py:358
+#, python-format
+msgid "error while formatting arguments for %s: %s"
+msgstr "error mentre es donava format als arguments per a %s: %s"
-#: ext/apidoc/_cli.py:127
-msgid "don't create a table of contents file"
-msgstr "no crea un fitxer de taula de contingut"
+#: ext/autodoc/_dynamic/_signatures.py:494
+#: ext/autodoc/_legacy_class_based/_documenters.py:1607
+#, python-format
+msgid "Failed to get a constructor signature for %s: %s"
+msgstr "Ha fallat en obtenir un constructor de funció per a %s: %s"
-#: ext/apidoc/_cli.py:135
-msgid ""
-"don't create headings for the module/package packages (e.g. when the "
-"docstrings already contain them)"
-msgstr "no crea capçaleres per als paquets del mòdul/paquet (p. ex., quan les cadenes de documentació ja les contenen)"
+#: ext/autodoc/_dynamic/_signatures.py:498
+#: ext/autodoc/_legacy_class_based/_documenters.py:2235
+#: ext/autodoc/_legacy_class_based/_documenters.py:2355
+#, python-format
+msgid "Failed to get a method signature for %s: %s"
+msgstr "Ha fallat en obtenir una signatura de mètode per a %s: %s"
-#: ext/apidoc/_cli.py:145
-msgid "put module documentation before submodule documentation"
-msgstr "posa la documentació del mòdul abans de la documentació del submòdul"
+#: ext/autodoc/_dynamic/_signatures.py:500
+#, python-format
+msgid "Failed to get a signature for %s: %s"
+msgstr ""
-#: ext/apidoc/_cli.py:152
-msgid ""
-"interpret module paths according to PEP-0420 implicit namespaces "
-"specification"
-msgstr "interpreta els camins dels mòduls segons l'especificació d'espais de noms implícits al PEP-0420"
+#: ext/autodoc/_dynamic/_preserve_defaults.py:156
+#, python-format
+msgid "Failed to parse a default argument value for %r: %s"
+msgstr "Ha fallat en analitzar un valor d'argument predeterminat per a %r: %s"
-#: ext/apidoc/_cli.py:160
+#: ext/autodoc/_dynamic/_member_finder.py:420
+#, python-format
msgid ""
-"Comma-separated list of options to pass to automodule directive (or use "
-"SPHINX_APIDOC_OPTIONS)."
+"attribute %s is listed in :members: but is missing as it was not found in "
+"object %r"
msgstr ""
-#: ext/apidoc/_cli.py:170
-msgid "file suffix (default: rst)"
-msgstr "sufix del fitxer (predeterminat: rst)"
+#: ext/autodoc/_dynamic/_member_finder.py:473
+#: ext/autodoc/_legacy_class_based/_documenters.py:677
+#, python-format
+msgid ""
+"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
+"%s"
+msgstr "autodoc: ha fallat en determinar %s. %s (%r) que s'ha de documentar, s'ha plantejat l'excepció següent:\n%s"
-#: ext/apidoc/_cli.py:186
-msgid "generate a full project with sphinx-quickstart"
-msgstr "genera un projecte complet amb «sphinx-quickstart»"
+#: ext/autodoc/_legacy_class_based/_documenters.py:964
+#, python-format
+msgid "signature arguments or return annotation given for automodule %s"
+msgstr "arguments de signatura o anotació de retorn indicats per a «automodule» %s"
-#: ext/apidoc/_cli.py:193
-msgid "append module_path to sys.path, used when --full is given"
-msgstr "afegeix module_path a sys.path, s'usa quan s'indica el paràmetre «--full»"
+#: ext/autodoc/_legacy_class_based/_documenters.py:980
+#, python-format
+msgid ""
+"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
+"__all__"
+msgstr "__all__ ha de ser una llista de cadenes, no %r (en el mòdul %s) -s'ignora __all__-"
-#: ext/apidoc/_cli.py:200
-msgid "project name (default: root module name)"
-msgstr "nom del projecte (predeterminat: nom del mòdul arrel)"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1057
+#, python-format
+msgid ""
+"missing attribute mentioned in :members: option: module %s, attribute %s"
+msgstr "manca l'atribut esmentat a l'opció «:members:»: mòdul %s, atribut %s"
-#: ext/apidoc/_cli.py:207
-msgid "project author(s), used when --full is given"
-msgstr "autoria del projecte, s'usa quan s'indica el paràmetre «--full»"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1764
+#, python-format
+msgid "missing attribute %s in object %s"
+msgstr "manca l'atribut %s a l'objecte %s"
-#: ext/apidoc/_cli.py:214
-msgid "project version, used when --full is given"
-msgstr "versió del projecte, s'usa quan s'indica el paràmetre «--full»"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1876
+#, python-format
+msgid "alias of TypeVar(%s)"
+msgstr "àlies de TypeVar(%s)"
-#: ext/apidoc/_cli.py:222
-msgid "project release, used when --full is given, defaults to --doc-version"
-msgstr "llançament del projecte, s'usa quan s'indica el paràmetre «--full», predeterminat a «--doc-version»"
+#: builders/html/_build_info.py:32
+msgid "failed to read broken build info file (unknown version)"
+msgstr "s'ha fallat en llegir el fitxer d'informació de la compilació trencada (versió desconeguda)"
-#: ext/apidoc/_cli.py:226
-msgid "extension options"
-msgstr "opcions de l'extensió"
+#: builders/html/_build_info.py:36
+msgid "failed to read broken build info file (missing config entry)"
+msgstr "s'ha fallat en llegir el fitxer d'informació de la compilació trencada (manca l'entrada «config»)"
-#: ext/apidoc/_cli.py:232
-msgid "enable arbitrary extensions, used when --full is given"
-msgstr ""
+#: builders/html/_build_info.py:39
+msgid "failed to read broken build info file (missing tags entry)"
+msgstr "s'ha fallat en llegir el fitxer d'informació de la compilació trencada (manca l'entrada «tags»)"
-#: ext/apidoc/_cli.py:240
+#: builders/html/__init__.py:114
#, python-format
-msgid "enable %s extension, used when --full is given"
-msgstr ""
+msgid "The HTML pages are in %(outdir)s."
+msgstr "Les pàgines en HTML es troben a %(outdir)s."
-#: ext/apidoc/_cli.py:291
+#: builders/html/__init__.py:337
#, python-format
-msgid "%s is not a directory."
-msgstr "%s no és cap directori."
-
-#: ext/apidoc/_extension.py:50
-msgid "Running apidoc"
-msgstr ""
+msgid "Failed to read build info file: %r"
+msgstr "Ha fallat en llegir el fitxer d'informació de la construcció: %r"
-#: ext/apidoc/_extension.py:102
-#, python-format
-msgid "apidoc_modules item %i must be a dict"
-msgstr ""
+#: builders/html/__init__.py:353
+msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+msgstr "build_info no coincideix, s'està copiant .buildinfo a .buildinfo.bak"
-#: ext/apidoc/_extension.py:110
-#, python-format
-msgid "apidoc_modules item %i must have a 'path' key"
-msgstr ""
+#: builders/html/__init__.py:355
+msgid "building [html]: "
+msgstr "es construeix [html]:"
-#: ext/apidoc/_extension.py:115
+#: builders/html/__init__.py:372
#, python-format
-msgid "apidoc_modules item %i 'path' must be a string"
-msgstr ""
+msgid ""
+"template %s has been changed since the previous build, all docs will be "
+"rebuilt"
+msgstr "s'ha canviat la plantilla %s des de la compilació anterior, es reconstruiran tots els documents"
-#: ext/apidoc/_extension.py:121
-#, python-format
-msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
-msgstr ""
+#: builders/html/__init__.py:496
+msgid "index"
+msgstr "índex"
-#: ext/apidoc/_extension.py:133
+#: builders/html/__init__.py:549
#, python-format
-msgid "apidoc_modules item %i must have a 'destination' key"
-msgstr ""
+msgid "Logo of %s"
+msgstr "Logotip de %s"
-#: ext/apidoc/_extension.py:140
-#, python-format
-msgid "apidoc_modules item %i 'destination' must be a string"
-msgstr ""
+#: builders/html/__init__.py:578
+msgid "next"
+msgstr "següent"
-#: ext/apidoc/_extension.py:147
-#, python-format
-msgid "apidoc_modules item %i 'destination' should be a relative path"
-msgstr ""
+#: builders/html/__init__.py:587
+msgid "previous"
+msgstr "anterior"
-#: ext/apidoc/_extension.py:157
-#, python-format
-msgid "apidoc_modules item %i cannot create destination directory: %s"
-msgstr ""
+#: builders/html/__init__.py:685
+msgid "generating indices"
+msgstr "s'estan generant els índexs"
-#: ext/apidoc/_extension.py:178
-#, python-format
-msgid "apidoc_modules item %i '%s' must be an int"
-msgstr ""
+#: builders/html/__init__.py:700
+msgid "writing additional pages"
+msgstr "s'estan escrivint les pàgines addicionals"
-#: ext/apidoc/_extension.py:192
+#: builders/html/__init__.py:783
#, python-format
-msgid "apidoc_modules item %i '%s' must be a boolean"
-msgstr ""
+msgid "cannot copy image file '%s': %s"
+msgstr "no es pot copiar el fitxer d'imatge «%s»: %s"
-#: ext/apidoc/_extension.py:210
-#, python-format
-msgid "apidoc_modules item %i has unexpected keys: %s"
-msgstr ""
+#: builders/html/__init__.py:795
+msgid "copying downloadable files... "
+msgstr "s'estan copiant els fitxers que es poden baixar... "
-#: ext/apidoc/_extension.py:247
+#: builders/html/__init__.py:807
#, python-format
-msgid "apidoc_modules item %i '%s' must be a sequence"
-msgstr ""
+msgid "cannot copy downloadable file %r: %s"
+msgstr "no s'ha pogut copiar el fitxer que es podia baixar %r: %s"
-#: ext/apidoc/_extension.py:256
+#: builders/html/__init__.py:853
#, python-format
-msgid "apidoc_modules item %i '%s' must contain strings"
-msgstr ""
+msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
+msgstr "Ha fallat en copiar un fitxer al directori «static» del tema: %s: %r"
-#: ext/apidoc/_generate.py:69
+#: builders/html/__init__.py:871
#, python-format
-msgid "Would create file %s."
-msgstr "S'hauria de crear el fitxer %s."
+msgid "Failed to copy a file in html_static_file: %s: %r"
+msgstr "Ha fallat en copiar un fitxer a html_static_file: %s: %r"
-#: ext/intersphinx/_resolve.py:49
-#, python-format
-msgid "(in %s v%s)"
-msgstr "(a %s versió %s)"
+#: builders/html/__init__.py:906
+msgid "copying static files"
+msgstr "s'estan copiant els fitxers estàtics"
-#: ext/intersphinx/_resolve.py:51
+#: builders/html/__init__.py:923
#, python-format
-msgid "(in %s)"
-msgstr "(a %s)"
+msgid "cannot copy static file %r"
+msgstr "no s'ha pogut copiar el fitxer estàtic %r"
-#: ext/intersphinx/_resolve.py:108
-#, python-format
-msgid "inventory '%s': duplicate matches found for %s:%s"
-msgstr "inventari «%s»: s'han trobat coincidències duplicades per a %s:%s"
+#: builders/html/__init__.py:928
+msgid "copying extra files"
+msgstr "s'estan copiant els fitxers addicionals"
-#: ext/intersphinx/_resolve.py:118
+#: builders/html/__init__.py:938
#, python-format
-msgid "inventory '%s': multiple matches found for %s:%s"
-msgstr "inventari «%s»: s'han trobat múltiples coincidències per a %s:%s"
+msgid "cannot copy extra file %r"
+msgstr "no s'ha pogut copiar el fitxer addicional %r"
-#: ext/intersphinx/_resolve.py:383
+#: builders/html/__init__.py:944
#, python-format
-msgid "inventory for external cross-reference not found: %r"
-msgstr "no es troba l'inventari per a la referència creuada externa: %r"
+msgid "Failed to write build info file: %r"
+msgstr "Ha fallat en escriure el fitxer d'informació de la construcció: %r"
-#: ext/intersphinx/_resolve.py:392
-#, python-format
-msgid "invalid external cross-reference suffix: %r"
-msgstr "no es troba l'inventari per a la referència creuada externa: %r"
+#: builders/html/__init__.py:994
+msgid ""
+"search index couldn't be loaded, but not all documents will be built: the "
+"index will be incomplete."
+msgstr "no s'ha pogut carregar l'índex de cerca, i no es construiran tots els documents: l'índex estarà incomplet."
-#: ext/intersphinx/_resolve.py:403
+#: builders/html/__init__.py:1038
#, python-format
-msgid "domain for external cross-reference not found: %r"
-msgstr "no es troba el domini per a la referència creuada externa: %r"
+msgid "page %s matches two patterns in html_sidebars: %r and %r"
+msgstr "la pàgina %s coincideix amb dos patrons a html_sidebars: %r i %r"
-#: ext/intersphinx/_resolve.py:619
+#: builders/html/__init__.py:1204
#, python-format
-msgid "external %s:%s reference target not found: %s"
-msgstr "%s externa: no es troba la destinació de la referència %s: %s"
+msgid ""
+"a Unicode error occurred when rendering the page %s. Please make sure all "
+"config values that contain non-ASCII content are Unicode strings."
+msgstr "s'ha produït un error d'Unicode en representar la pàgina %s. Assegureu-vos que tots els valors de configuració que contenen contingut que no és ASCII són cadenes Unicode."
-#: ext/intersphinx/_load.py:60
+#: builders/html/__init__.py:1217
#, python-format
msgid ""
-"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
-"identifiers must be non-empty strings."
-msgstr "L'identificador «%r» del projecte intersphinx no és vàlid a intersphinx_mapping. Els identificadors de projecte han de ser cadenes no buides."
+"The '%s' theme does not support this version of Sphinx, because it uses the "
+"'style' field in HTML templates, which was was deprecated in Sphinx 5.1 and"
+" removed in Sphinx 7.0. The theme must be updated to use the 'styles' field "
+"instead. See https://www.sphinx-"
+"doc.org/en/master/development/html_themes/templating.html#styles"
+msgstr "El tema «%s» no admet aquesta versió de Sphinx, perquè usa el camp «style» a les plantilles HTML, el qual és obsolet a Sphinx 5.1 i s'ha eliminat a Sphinx 7.0. El tema s'ha d'actualitzar per a usar en el seu lloc el camp «styles». Vegeu https://www.sphinx-doc.org/en/master/development/html_themes/templating.html#styles"
-#: ext/intersphinx/_load.py:71
+#: builders/html/__init__.py:1225
#, python-format
msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
-"or list."
-msgstr "El valor «%r» no és vàlid a intersphinx_mapping[%r]. S'esperava una tupla o llista de dos elements."
+"An error happened in rendering the page %s.\n"
+"Reason: %r"
+msgstr "S'ha produït un error en representar la pàgina %s.\nMotiu: %r"
+
+#: builders/html/__init__.py:1258
+msgid "dumping object inventory"
+msgstr "s'està bolcant l'inventari d'objectes"
-#: ext/intersphinx/_load.py:82
+#: builders/html/__init__.py:1266
#, python-format
-msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
-" inventory locations) pair."
-msgstr "El valor «%r» no és vàlid a intersphinx_mapping[%r]. Els valors han de ser un parell (URI de destinació, ubicacions de l'inventari)."
+msgid "dumping search index in %s"
+msgstr "s'està bolcant l'índex de cerca a %s"
-#: ext/intersphinx/_load.py:93
+#: builders/html/__init__.py:1313
#, python-format
-msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique non-empty strings."
-msgstr "El valor «%r» de l'URI de destinació no és vàlid a intersphinx_mapping[%r][0]. Els URI de destinació han de ser cadenes úniques no buides."
+msgid "invalid js_file: %r, ignored"
+msgstr "js_file no vàlid: %r, s'ignora"
+
+#: builders/html/__init__.py:1347
+msgid "Many math_renderers are registered. But no math_renderer is selected."
+msgstr "S'han enregistrat molts math_renderer. Però no s'ha seleccionat math_renderer."
-#: ext/intersphinx/_load.py:102
+#: builders/html/__init__.py:1351
#, python-format
-msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique (other instance in intersphinx_mapping[%r])."
-msgstr "El valor «%r» de l'URI de destinació no és vàlid a intersphinx_mapping[%r][0]. Els URI de destinació han de ser únics (una altra instància a intersphinx_mapping[%r])."
+msgid "Unknown math_renderer %r is given."
+msgstr "S'ha donat un math_renderer %r desconegut."
+
+#: builders/html/__init__.py:1365
+#, python-format
+msgid "html_extra_path entry %r is placed inside outdir"
+msgstr "l'entrada html_extra_path %r es col·loca dins del directori de sortida"
-#: ext/intersphinx/_load.py:121
+#: builders/html/__init__.py:1370
#, python-format
-msgid ""
-"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
-"Inventory locations must be non-empty strings or None."
-msgstr "El valor «%r» d'ubicació de l'inventari no és vàlid a intersphinx_mapping[%r][1]. Les ubicacions de l'inventari han de ser cadenes no buides o «None»."
+msgid "html_extra_path entry %r does not exist"
+msgstr "l'entrada html_extra_path %r no existeix"
-#: ext/intersphinx/_load.py:131
-msgid "Invalid `intersphinx_mapping` configuration (1 error)."
-msgstr "Configuració d'«intersphinx_mapping» no vàlida (1 error)."
+#: builders/html/__init__.py:1385
+#, python-format
+msgid "html_static_path entry %r is placed inside outdir"
+msgstr "l'entrada html_static_path %r es col·loca dins del directori de sortida"
-#: ext/intersphinx/_load.py:134
+#: builders/html/__init__.py:1390
#, python-format
-msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
-msgstr "Configuració d'«intersphinx_mapping» no vàlida (%s errors)."
+msgid "html_static_path entry %r does not exist"
+msgstr "l'entrada html_static_path %r no existeix"
-#: ext/intersphinx/_load.py:157
-msgid "An invalid intersphinx_mapping entry was added after normalisation."
-msgstr "S'ha afegit una entrada intersphinx_mapping no vàlida després de la normalització."
+#: builders/html/__init__.py:1401 builders/latex/__init__.py:497
+#, python-format
+msgid "logo file %r does not exist"
+msgstr "el fitxer de logotip %r no existeix"
-#: ext/intersphinx/_load.py:261
+#: builders/html/__init__.py:1412
#, python-format
-msgid "loading intersphinx inventory '%s' from %s ..."
-msgstr "s'està carregant l'inventari intersphinx «%s» de %s ..."
+msgid "favicon file %r does not exist"
+msgstr "el fitxer icona de web %r no existeix"
-#: ext/intersphinx/_load.py:287
+#: builders/html/__init__.py:1425
+#, python-format
msgid ""
-"encountered some issues with some of the inventories, but they had working "
-"alternatives:"
-msgstr "s'han trobat alguns problemes amb alguns dels inventaris, però tenien alternatives funcionals:"
+"Values in 'html_sidebars' must be a list of strings. At least one pattern "
+"has a string value: %s. Change to `html_sidebars = %r`."
+msgstr "Els valors a «html_sidebars» han de ser una llista de cadenes. Almenys un patró té un valor de cadena: %s. Canvia a «html_sidebars = %r»."
-#: ext/intersphinx/_load.py:297
-msgid "failed to reach any of the inventories with the following issues:"
-msgstr "s'ha fallat en arribar a cap dels inventaris amb els problemes següents:"
+#: builders/html/__init__.py:1438
+msgid ""
+"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
+"configuration options)"
+msgstr "HTML 4 ja no és compatible amb Sphinx. (s'ha detectat «html4_writer=true» a les opcions de configuració)"
-#: ext/intersphinx/_load.py:361
+#: builders/html/__init__.py:1454
#, python-format
-msgid "intersphinx inventory has moved: %s -> %s"
-msgstr "s'ha mogut l'inventari intersphinx: %s -> %s"
+msgid "%s %s documentation"
+msgstr "%s %s documentació"
-#: ext/autodoc/__init__.py:150
+#: builders/latex/theming.py:87
#, python-format
-msgid "invalid value for member-order option: %s"
-msgstr "valor no vàlid per a l'opció de l'ordre de membre: %s"
+msgid "%r doesn't have \"theme\" setting"
+msgstr "%r no té la configuració «theme»"
-#: ext/autodoc/__init__.py:158
+#: builders/latex/theming.py:90
#, python-format
-msgid "invalid value for class-doc-from option: %s"
-msgstr "valor no vàlid per a l'opció des de la documentació de classes: %s"
+msgid "%r doesn't have \"%s\" setting"
+msgstr "%r no té la configuració «%s»"
-#: ext/autodoc/__init__.py:460
-#, python-format
-msgid "invalid signature for auto%s (%r)"
-msgstr "signatura no vàlida per a auto%s (%r)"
+#: builders/latex/transforms.py:120
+msgid "Failed to get a docname!"
+msgstr "Ha fallat en obtenir el docname!"
-#: ext/autodoc/__init__.py:579
+#: builders/latex/transforms.py:121
#, python-format
-msgid "error while formatting arguments for %s: %s"
-msgstr "error mentre es donava format als arguments per a %s: %s"
+msgid "Failed to get a docname for source %r!"
+msgstr "S'ha fallat en obtenir un nom de document per a la font %r!"
-#: ext/autodoc/__init__.py:898
+#: builders/latex/transforms.py:487
#, python-format
-msgid ""
-"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
-"%s"
-msgstr "autodoc: ha fallat en determinar %s. %s (%r) que s'ha de documentar, s'ha plantejat l'excepció següent:\n%s"
+msgid "No footnote was found for given reference node %r"
+msgstr "No s'ha trobat cap nota a peu de pàgina per al node de referència %r donat"
-#: ext/autodoc/__init__.py:1021
+#: builders/latex/__init__.py:115
#, python-format
+msgid "The LaTeX files are in %(outdir)s."
+msgstr "Els fitxers en LaTeX es troben a %(outdir)s."
+
+#: builders/latex/__init__.py:118
msgid ""
-"don't know which module to import for autodocumenting %r (try placing a "
-"\"module\" or \"currentmodule\" directive in the document, or giving an "
-"explicit module name)"
-msgstr "es desconeix quin és el mòdul que s'importarà per al document automàtic %r (proveu de col·locar una directiva «module» o «currentmodule» en el document o doneu-li un nom explícit al mòdul)"
+"\n"
+"Run 'make' in that directory to run these through (pdf)latex\n"
+"(use `make latexpdf' here to do that automatically)."
+msgstr "\nExecuteu l'ordre «make» en aquest directori per a executar-les\nmitjançant el (pdf)latex (useu l'ordre «make latexpdf» per a fer-ho\nautomàticament)."
-#: ext/autodoc/__init__.py:1080
-#, python-format
-msgid "A mocked object is detected: %r"
-msgstr "S'ha detectat un objecte simulat: %r"
+#: builders/latex/__init__.py:156
+msgid "no \"latex_documents\" config value found; no documents will be written"
+msgstr "no s'ha trobat el valor de configuració «latex_documents»: no s'escriurà cap document"
-#: ext/autodoc/__init__.py:1103
+#: builders/latex/__init__.py:167
#, python-format
-msgid "error while formatting signature for %s: %s"
-msgstr "error mentre es donava format a la signatura per a %s: %s"
+msgid "\"latex_documents\" config value references unknown document %s"
+msgstr "El valor de configuració «latex_documents» fa referència a un document %s desconegut"
-#: ext/autodoc/__init__.py:1177
-msgid "\"::\" in automodule name doesn't make sense"
-msgstr "«::» en el nom de l'«automodule» no té sentit"
+#: builders/latex/__init__.py:421
+msgid "copying TeX support files"
+msgstr "s'estan copiant els fitxers de suport de TeX"
-#: ext/autodoc/__init__.py:1185
-#, python-format
-msgid "signature arguments or return annotation given for automodule %s"
-msgstr "arguments de signatura o anotació de retorn indicats per a «automodule» %s"
+#: builders/latex/__init__.py:458
+msgid "copying additional files"
+msgstr "s'estan copiant els fitxers addicionals"
-#: ext/autodoc/__init__.py:1201
+#: builders/latex/__init__.py:529
#, python-format
-msgid ""
-"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
-"__all__"
-msgstr "__all__ ha de ser una llista de cadenes, no %r (en el mòdul %s) -s'ignora __all__-"
+msgid "Unknown configure key: latex_elements[%r], ignored."
+msgstr "Clau de configuració desconeguda: latex_elements[%r], s'ignora."
-#: ext/autodoc/__init__.py:1278
+#: builders/latex/__init__.py:537
#, python-format
-msgid ""
-"missing attribute mentioned in :members: option: module %s, attribute %s"
-msgstr "manca l'atribut esmentat a l'opció «:members:»: mòdul %s, atribut %s"
+msgid "Unknown theme option: latex_theme_options[%r], ignored."
+msgstr "Opció desconeguda de tema: latex_theme_options[%r], s'ignora."
-#: ext/autodoc/__init__.py:1505 ext/autodoc/__init__.py:1593
-#: ext/autodoc/__init__.py:3127
+#: environment/collectors/toctree.py:259
#, python-format
-msgid "Failed to get a function signature for %s: %s"
-msgstr "Ha fallat en obtenir una signatura de funció per a %s: %s"
+msgid "%s is already assigned section numbers (nested numbered toctree?)"
+msgstr "%s ja té assignats números de secció (toctree amb numeració imbricada?)"
-#: ext/autodoc/__init__.py:1828
+#: environment/collectors/asset.py:98
#, python-format
-msgid "Failed to get a constructor signature for %s: %s"
-msgstr "Ha fallat en obtenir un constructor de funció per a %s: %s"
+msgid "image file not readable: %s"
+msgstr "el fitxer d'imatge no es pot llegir: %s"
-#: ext/autodoc/__init__.py:1966
+#: environment/collectors/asset.py:126
#, python-format
-msgid "Bases: %s"
-msgstr "Bases: %s"
+msgid "image file %s not readable: %s"
+msgstr "el fitxer d'imatge %s no es pot llegir: %s"
-#: ext/autodoc/__init__.py:1985
+#: environment/collectors/asset.py:165
#, python-format
-msgid "missing attribute %s in object %s"
-msgstr "manca l'atribut %s a l'objecte %s"
+msgid "download file not readable: %s"
+msgstr "el fitxer de baixada no es pot llegir: %s"
-#: ext/autodoc/__init__.py:2081 ext/autodoc/__init__.py:2110
-#: ext/autodoc/__init__.py:2204
+#: environment/adapters/toctree.py:335
#, python-format
-msgid "alias of %s"
-msgstr "àlies de %s"
+msgid "circular toctree references detected, ignoring: %s <- %s"
+msgstr "s'han detectat referències circulars del toctree, s'ignora: %s <- %s"
-#: ext/autodoc/__init__.py:2097
+#: environment/adapters/toctree.py:360
#, python-format
-msgid "alias of TypeVar(%s)"
-msgstr "àlies de TypeVar(%s)"
+msgid ""
+"toctree contains reference to document %r that doesn't have a title: no link"
+" will be generated"
+msgstr "el toctree conté una referència cap al document %r, el qual no conté un títol: no es generarà cap enllaç"
-#: ext/autodoc/__init__.py:2456 ext/autodoc/__init__.py:2576
+#: environment/adapters/toctree.py:375
#, python-format
-msgid "Failed to get a method signature for %s: %s"
-msgstr "Ha fallat en obtenir una signatura de mètode per a %s: %s"
+msgid "toctree contains reference to non-included document %r"
+msgstr "el toctree conté una referència cap a un document no inclòs %r"
-#: ext/autodoc/__init__.py:2720
+#: environment/adapters/toctree.py:378
#, python-format
-msgid "Invalid __slots__ found on %s. Ignored."
-msgstr "S'han trobat __slots__ no vàlids a %s. S'ignora."
+msgid "toctree contains reference to non-existing document %r"
+msgstr "el toctree conté una referència cap al document inexistent %r"
-#: ext/autodoc/preserve_defaults.py:195
+#: environment/adapters/indexentries.py:122
#, python-format
-msgid "Failed to parse a default argument value for %r: %s"
-msgstr "Ha fallat en analitzar un valor d'argument predeterminat per a %r: %s"
+msgid "see %s"
+msgstr "vegeu %s"
-#: ext/autodoc/type_comment.py:151
+#: environment/adapters/indexentries.py:132
#, python-format
-msgid "Failed to update signature for %r: parameter not found: %s"
-msgstr "Ha fallat en actualitzar la signatura per a %r: no es troba el paràmetre: %s"
+msgid "see also %s"
+msgstr "vegeu també %s"
-#: ext/autodoc/type_comment.py:154
+#: environment/adapters/indexentries.py:140
#, python-format
-msgid "Failed to parse type_comment for %r: %s"
-msgstr "Ha fallat en analitzar type_comment per a %r: %s"
+msgid "unknown index entry type %r"
+msgstr "tipus d'entrada %r amb un índex desconegut"
diff --git a/sphinx/locale/ca@valencia/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca@valencia/LC_MESSAGES/sphinx.mo
index d7be7306ce7..8e90d9aa4c4 100644
Binary files a/sphinx/locale/ca@valencia/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ca@valencia/LC_MESSAGES/sphinx.mo differ
diff --git a/sphinx/locale/ca@valencia/LC_MESSAGES/sphinx.po b/sphinx/locale/ca@valencia/LC_MESSAGES/sphinx.po
index 2909dbbe74a..d92dfebf112 100644
--- a/sphinx/locale/ca@valencia/LC_MESSAGES/sphinx.po
+++ b/sphinx/locale/ca@valencia/LC_MESSAGES/sphinx.po
@@ -4,14 +4,16 @@
#
# Translators:
# Adam Turner, 2023
+# Antoni Bella Pérez , 2025
+# FIRST AUTHOR , 2009
# Pau Fernández , 2009
msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2025-02-18 00:33+0000\n"
+"POT-Creation-Date: 2025-12-01 16:14+0000\n"
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
-"Last-Translator: Pau Fernández , 2009\n"
+"Last-Translator: Antoni Bella Pérez , 2025\n"
"Language-Team: Catalan (Valencian) (http://app.transifex.com/sphinx-doc/sphinx-1/language/ca@valencia/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -20,6 +22,127 @@ msgstr ""
"Language: ca@valencia\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: roles.py:205
+#, python-format
+msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgstr "Vulnerabilitats i exposicions comunes (CVE %s)"
+
+#: roles.py:228
+#, python-format
+msgid "invalid CVE number %s"
+msgstr "número %s de CVE no vàlid"
+
+#: roles.py:250
+#, python-format
+msgid "Common Weakness Enumeration; CWE %s"
+msgstr "Enumeració de les debilitats comunes (CWE %s)"
+
+#: roles.py:273
+#, python-format
+msgid "invalid CWE number %s"
+msgstr "número %s de CWE no vàlid"
+
+#: roles.py:293
+#, python-format
+msgid "Python Enhancement Proposals; PEP %s"
+msgstr "Propostes de millora a Python (PEP %s)"
+
+#: roles.py:316
+#, python-format
+msgid "invalid PEP number %s"
+msgstr "número de PEP no vàlid %s"
+
+#: roles.py:354
+#, python-format
+msgid "invalid RFC number %s"
+msgstr "número de RFC no vàlid %s"
+
+#: theming.py:117
+#, python-format
+msgid ""
+"Theme configuration sections other than [theme] and [options] are not "
+"supported (tried to get a value from %r)."
+msgstr "No s'admeten les seccions de configuració del tema que no siguen [theme] i [options] (s'ha intentat obtindre un valor des de %r)."
+
+#: theming.py:122
+#, python-format
+msgid "setting %s.%s occurs in none of the searched theme configs"
+msgstr "configuració %s. %s no es produïx en cap de les configuracions de temes buscats"
+
+#: theming.py:137
+#, python-format
+msgid "unsupported theme option %r given"
+msgstr "opció de tema no admesa, s'ha donat %r"
+
+#: theming.py:218
+#, python-format
+msgid "file %r on theme path is not a valid zipfile or contains no theme"
+msgstr "el fitxer %r en el camí de temes no és un fitxer ZIP vàlid ni conté cap tema"
+
+#: theming.py:238
+#, python-format
+msgid "no theme named %r found (missing theme.toml?)"
+msgstr "no s'ha trobat cap tema anomenat %r (falta theme.toml?)"
+
+#: theming.py:278
+#, python-format
+msgid "The %r theme has circular inheritance"
+msgstr "El tema %r té una herència circular"
+
+#: theming.py:286
+#, python-format
+msgid ""
+"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
+"are: %s"
+msgstr "El tema %r hereta des de %r, el qual no és un tema que estiga carregat. Els temes carregats són: %s"
+
+#: theming.py:292
+#, python-format
+msgid "The %r theme has too many ancestors"
+msgstr "El tema %r té massa avantpassats"
+
+#: theming.py:320
+#, python-format
+msgid "no theme configuration file found in %r"
+msgstr "no s'ha trobat cap fitxer de configuració del tema a %r"
+
+#: theming.py:345 theming.py:398
+#, python-format
+msgid "theme %r doesn't have the \"theme\" table"
+msgstr "el tema %r no té la taula «theme»"
+
+#: theming.py:349
+#, python-format
+msgid "The %r theme \"[theme]\" table is not a table"
+msgstr "La taula del tema %r «[theme]» no és una taula"
+
+#: theming.py:353 theming.py:401
+#, python-format
+msgid "The %r theme must define the \"theme.inherit\" setting"
+msgstr "El tema %r ha de definir la configuració «theme.inherit»"
+
+#: theming.py:357
+#, python-format
+msgid "The %r theme \"[options]\" table is not a table"
+msgstr "La taula del tema %r «[options]» no és una taula"
+
+#: theming.py:376
+#, python-format
+msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+msgstr "La configuració de «theme.pygments_style» ha de ser una taula. Consell: «%s»"
+
+#: project.py:72
+#, python-format
+msgid ""
+"multiple files found for the document \"%s\": %s\n"
+"Use %r for the build."
+msgstr "S'han trobat múltiples fitxers per al document «%s»: %s\nUtilitzeu %r per a la compilació."
+
+#: project.py:87
+#, python-format
+msgid "Ignored unreadable document %r."
+msgstr "S'ha ignorat el document il·legible %r."
+
#: extension.py:58
#, python-format
msgid ""
@@ -34,127 +157,154 @@ msgid ""
"cannot be built with the loaded version (%s)."
msgstr "Este projecte necessita l'extensió %s almenys en la versió %s i, per tant, no es pot construir amb la versió carregada (%s)."
-#: application.py:212
+#: highlighting.py:170
+#, python-format
+msgid "Pygments lexer name %r is not known"
+msgstr "No es coneix el nom del lexer de pigments %r"
+
+#: highlighting.py:209
+#, python-format
+msgid ""
+"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
+"Retrying in relaxed mode."
+msgstr "L'anàlisi lèxica del literal_block %r com a «%s» ha resultat en un error en el testimoni: %r. S'està tornant a provar en el mode relaxat."
+
+#: events.py:92
+#, python-format
+msgid "Event %r already present"
+msgstr "L'esdeveniment %r ja està present"
+
+#: events.py:386
+#, python-format
+msgid "Unknown event name: %s"
+msgstr "Nom desconegut de l'esdeveniment: %s"
+
+#: events.py:451
+#, python-format
+msgid "Handler %r for event %r threw an exception"
+msgstr "El gestor %r per a l'esdeveniment %r ha retornat una excepció"
+
+#: application.py:218
#, python-format
msgid "Cannot find source directory (%s)"
msgstr "No es pot trobar el directori d'origen (%s)"
-#: application.py:217
+#: application.py:223
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr "El directori d'eixida (%s) no és un directori"
-#: application.py:222
+#: application.py:228
msgid "Source directory and destination directory cannot be identical"
msgstr "El directori d'origen i el de destinació no poden ser idèntics"
-#: application.py:252
+#: application.py:258
#, python-format
msgid "Running Sphinx v%s"
msgstr "S'està executant Sphinx versió %s"
-#: application.py:278
+#: application.py:286
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr "Este projecte almenys necessita Sphinx versió %s i, per tant, no es pot crear amb esta versió."
-#: application.py:297
+#: application.py:305
msgid "making output directory"
msgstr "es crea el directori d'eixida"
-#: application.py:302 registry.py:538
+#: application.py:310 registry.py:540
#, python-format
msgid "while setting up extension %s:"
msgstr "mentre es configura l'extensió %s:"
-#: application.py:309
+#: application.py:317
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr "«setup» tal com es definix actualment a conf.py no és una crida de Python. Modifiqueu la seua definició per a convertir-la en una funció que es puga cridar. Açò és necessari perquè conf.py es comporte com a una extensió de Sphinx."
-#: application.py:346
+#: application.py:360
#, python-format
msgid "loading translations [%s]... "
msgstr "s'estan carregant les traduccions [%s]…"
-#: application.py:370 util/display.py:89
+#: application.py:384 util/display.py:89
msgid "done"
msgstr "fet"
-#: application.py:372
+#: application.py:386
msgid "not available for built-in messages"
msgstr "no està disponible per a missatges integrats"
-#: application.py:386
+#: application.py:400
msgid "loading pickled environment"
msgstr "s'està carregant l'entorn preparat"
-#: application.py:394
+#: application.py:408
#, python-format
msgid "failed: %s"
msgstr "ha fallat: %s"
-#: application.py:407
+#: application.py:423
msgid "No builder selected, using default: html"
msgstr "No s'ha seleccionat cap constructor, s'utilitza el predeterminat: html"
-#: application.py:439
+#: application.py:455
msgid "build finished with problems."
msgstr "la compilació ha finalitzat amb problemes."
-#: application.py:441
+#: application.py:457
msgid "build succeeded."
msgstr "la compilació ha tingut èxit."
-#: application.py:446
+#: application.py:462
msgid ""
"build finished with problems, 1 warning (with warnings treated as errors)."
msgstr "la compilació ha finalitzat amb problemes, 1 avís (amb els avisos tractats com a errors)."
-#: application.py:450
+#: application.py:466
msgid "build finished with problems, 1 warning."
msgstr "la compilació ha finalitzat amb problemes, 1 avís."
-#: application.py:452
+#: application.py:468
msgid "build succeeded, 1 warning."
msgstr "la compilació ha tingut èxit, 1 avís."
-#: application.py:458
+#: application.py:474
#, python-format
msgid ""
"build finished with problems, %s warnings (with warnings treated as errors)."
msgstr "la compilació ha acabat amb problemes, %s avisos (amb avisos tractats com a errors)."
-#: application.py:462
+#: application.py:478
#, python-format
msgid "build finished with problems, %s warnings."
msgstr "la compilació ha acabat amb problemes, %s avisos."
-#: application.py:464
+#: application.py:480
#, python-format
msgid "build succeeded, %s warnings."
msgstr "la compilació ha tingut èxit, %s avisos."
-#: application.py:1026
+#: application.py:1020
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr "la classe del node %r ja està registrada, els seus visitants seran anul·lats"
-#: application.py:1119
+#: application.py:1113
#, python-format
msgid "directive %r is already registered and will not be overridden"
-msgstr ""
+msgstr "la directiva %r ja està registrada i no serà sobreseguda"
-#: application.py:1145 application.py:1173
+#: application.py:1139 application.py:1167
#, python-format
msgid "role %r is already registered and will not be overridden"
-msgstr ""
+msgstr "el rol %r ja està registrat i no serà sobresegut"
-#: application.py:1770
+#: application.py:1766
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@@ -162,12 +312,12 @@ msgid ""
"explicit"
msgstr "l'extensió %s no declara si és segur per a la lectura en paral·lel, suposant que no ho siga, demaneu a l'autor de l'extensió que ho comprove i faça que siga explícit"
-#: application.py:1775
+#: application.py:1771
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr "l'extensió %s no és segura per a la lectura en paral·lel"
-#: application.py:1779
+#: application.py:1775
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@@ -175,82 +325,214 @@ msgid ""
"explicit"
msgstr "l'extensió %s no declara si és segur per a l'escriptura en paral·lel, suposant que no ho siga, demaneu a l'autor de l'extensió que ho comprove i faça que siga explícit"
-#: application.py:1784
+#: application.py:1780
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr "l'extensió %s no és segura per a l'escriptura en paral·lel"
-#: application.py:1792 application.py:1796
+#: application.py:1788 application.py:1792
#, python-format
msgid "doing serial %s"
msgstr "s'està executant %s en sèrie"
-#: config.py:355
+#: registry.py:162
#, python-format
-msgid "config directory doesn't contain a conf.py file (%s)"
-msgstr "el directori de configuració no conté un fitxer conf.py (%s)"
+msgid "Builder class %s has no \"name\" attribute"
+msgstr "La classe del constructor %s no té cap atribut «name»"
+
+#: registry.py:166
+#, python-format
+msgid "Builder %r already exists (in module %s)"
+msgstr "El constructor %r ja existix (en el mòdul %s)"
+
+#: registry.py:182
+#, python-format
+msgid "Builder name %s not registered or available through entry point"
+msgstr "El nom del constructor %s no està registrat o disponible a través del punt d'entrada"
+
+#: registry.py:192
+#, python-format
+msgid "Builder name %s not registered"
+msgstr "El nom del constructor %s no està registrat"
+
+#: registry.py:199
+#, python-format
+msgid "domain %s already registered"
+msgstr "el domini %s ja està registrat"
+
+#: registry.py:223 registry.py:244 registry.py:257
+#, python-format
+msgid "domain %s not yet registered"
+msgstr "el domini %s encara no està registrat"
+
+#: registry.py:230
+#, python-format
+msgid "The %r directive is already registered to domain %s"
+msgstr "La directiva %r ja està registrada al domini %s"
+
+#: registry.py:248
+#, python-format
+msgid "The %r role is already registered to domain %s"
+msgstr "El rol %r ja està registrat al domini %s"
+
+#: registry.py:261
+#, python-format
+msgid "The %r index is already registered to domain %s"
+msgstr "L'índex %r ja està registrat al domini %s"
+
+#: registry.py:308
+#, python-format
+msgid "The %r object_type is already registered"
+msgstr "L'object_type %r ja està registrat"
+
+#: registry.py:339
+#, python-format
+msgid "The %r crossref_type is already registered"
+msgstr "El crossref_type %r ja està registrat"
+
+#: registry.py:348
+#, python-format
+msgid "source_suffix %r is already registered"
+msgstr "source_suffix %r ja està registrat"
+
+#: registry.py:358
+#, python-format
+msgid "source_parser for %r is already registered"
+msgstr "source_parser per a %r ja està registrat"
+
+#: registry.py:367
+#, python-format
+msgid "Source parser for %s not registered"
+msgstr "L'analitzador de fonts per a %s no registrat"
+
+#: registry.py:388
+#, python-format
+msgid "Translator for %r already exists"
+msgstr "El traductor per a %r ja existix"
+
+#: registry.py:405
+#, python-format
+msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
+msgstr "kwargs per a add_node() haurà de ser una funció (visita, eixida) tupla: %r=%r"
+
+#: registry.py:498
+#, python-format
+msgid "enumerable_node %r already registered"
+msgstr "enumerable_node %r ja està registrat"
+
+#: registry.py:514
+#, python-format
+msgid "math renderer %s is already registered"
+msgstr "la representació matemàtica %s ja està registrada"
-#: config.py:366
+#: registry.py:531
+#, python-format
msgid ""
-"Invalid configuration value found: 'language = None'. Update your "
-"configuration to a valid language code. Falling back to 'en' (English)."
-msgstr "S'ha trobat un valor de configuració no vàlid: «language = None». Actualitzeu la vostra configuració a un codi d'idioma vàlid. Es torna «en» (anglés)."
+"the extension %r was already merged with Sphinx since version %s; this "
+"extension is ignored."
+msgstr "l'extensió %r ja es va fusionar amb Sphinx des de la versió %s. Esta extensió s'ignorarà."
+
+#: registry.py:545
+msgid "Original exception:\n"
+msgstr "Excepció original:\n"
+
+#: registry.py:547
+#, python-format
+msgid "Could not import extension %s"
+msgstr "No s'ha pogut importar l'extensió %s"
+
+#: registry.py:554
+#, python-format
+msgid ""
+"extension %r has no setup() function; is it really a Sphinx extension "
+"module?"
+msgstr "l'extensió %r no té cap funció setup(). És realment un mòdul d'extensions de Sphinx?"
+
+#: registry.py:567
+#, python-format
+msgid ""
+"The %s extension used by this project needs at least Sphinx v%s; it "
+"therefore cannot be built with this version."
+msgstr "L'extensió %s utilitzada per este projecte almenys necessita Sphinx versió %s i, per tant, no es pot crear amb esta versió."
+
+#: registry.py:579
+#, python-format
+msgid ""
+"extension %r returned an unsupported object from its setup() function; it "
+"should return None or a metadata dictionary"
+msgstr "l'extensió %r ha retornat un objecte no admés des de la seua funció setup(). No n'hauria de retornar cap o retornar un diccionari de metadades"
+
+#: registry.py:605
+#, python-format
+msgid "`None` is not a valid filetype for %r."
+msgstr "«Cap» no és un tipus de fitxer vàlid per a %r."
+
+#: config.py:351
+#, python-format
+msgid "config directory doesn't contain a conf.py file (%s)"
+msgstr "el directori de configuració no conté un fitxer conf.py (%s)"
-#: config.py:394
+#: config.py:374
#, python-format
msgid "'%s' must be '0' or '1', got '%s'"
-msgstr ""
+msgstr "«%s» ha de ser «0» o «1», s'ha obtingut «%s»"
-#: config.py:399
+#: config.py:379
#, python-format
msgid ""
"cannot override dictionary config setting %r, ignoring (use %r to set "
"individual elements)"
msgstr "no s'ha pogut substituir l'ajust de la configuració del diccionari %r, s'ignora (utilitzeu %r per a establir elements individuals)"
-#: config.py:411
+#: config.py:391
#, python-format
msgid "invalid number %r for config value %r, ignoring"
msgstr "nombre no vàlid %r del valor de configuració %r, s'ignora"
-#: config.py:419
+#: config.py:399
#, python-format
msgid "cannot override config setting %r with unsupported type, ignoring"
msgstr "no s'ha pogut substituir l'ajust de la configuració %r amb tipus no compatibles, s'ignora"
-#: config.py:442
+#: config.py:422
#, python-format
msgid "unknown config value %r in override, ignoring"
msgstr "valor de configuració desconegut %r en substituir, s'ignora"
-#: config.py:496
+#: config.py:476
#, python-format
msgid "No such config value: %r"
msgstr "Este valor de configuració no existix: %r"
-#: config.py:524
+#: config.py:504
#, python-format
msgid "Config value %r already present"
msgstr "El valor de configuració %r ja està present"
-#: config.py:561
+#: config.py:541
#, python-format
msgid ""
"cannot cache unpickleable configuration value: %r (because it contains a "
"function, class, or module object)"
-msgstr ""
+msgstr "no es pot emmagatzemar en la memòria cau un valor de configuració no recuperable: %r (perquè conté un objecte de funció, classe o mòdul)"
-#: config.py:603
+#: config.py:577
+msgid ""
+"Invalid configuration value found: 'language = None'. Update your "
+"configuration to a valid language code. Falling back to 'en' (English)."
+msgstr "S'ha trobat un valor de configuració no vàlid: «language = None». Actualitzeu la vostra configuració a un codi d'idioma vàlid. Es torna «en» (anglés)."
+
+#: config.py:599
#, python-format
msgid "There is a syntax error in your configuration file: %s\n"
msgstr "S'ha produït un error de sintaxi en el fitxer de configuració: %s\n"
-#: config.py:607
+#: config.py:603
msgid ""
"The configuration file (or one of the modules it imports) called sys.exit()"
msgstr "El fitxer de configuració (o un dels mòduls que s'importen) ha cridat «sys.exit()»"
-#: config.py:615
+#: config.py:611
#, python-format
msgid ""
"There is a programmable error in your configuration file:\n"
@@ -258,534 +540,719 @@ msgid ""
"%s"
msgstr "S'ha produït un error programable en el fitxer de configuració:\n\n%s"
-#: config.py:637
+#: config.py:633
#, python-format
msgid "Failed to convert %r to a frozenset"
-msgstr ""
+msgstr "No s'ha pogut convertir %r a un recurs congelat"
-#: config.py:655 config.py:663
+#: config.py:651 config.py:659
#, python-format
msgid "Converting `source_suffix = %r` to `source_suffix = %r`."
msgstr "S'està convertint «source_suffix = %r» a «source_suffix = %r»."
-#: config.py:669
+#: config.py:665
#, python-format
msgid ""
"The config value `source_suffix' expects a dictionary, a string, or a list "
"of strings. Got `%r' instead (type %s)."
msgstr "El valor de configuració «source_suffix» espera un diccionari, una cadena o una llista de cadenes. En lloc d'açò, s'ha obtingut «%r» (escriviu %s)."
-#: config.py:690
+#: config.py:686
#, python-format
msgid "Section %s"
msgstr "Secció %s"
-#: config.py:691
+#: config.py:687
#, python-format
msgid "Fig. %s"
msgstr "Fig. %s"
-#: config.py:692
+#: config.py:688
#, python-format
msgid "Table %s"
msgstr "Taula %s"
-#: config.py:693
+#: config.py:689
#, python-format
msgid "Listing %s"
msgstr "Llistat %s"
-#: config.py:802
+#: config.py:798
#, python-brace-format
msgid ""
"The config value `{name}` has to be a one of {candidates}, but `{current}` "
"is given."
msgstr "El valor de configuració «{name}» ha de ser un de {candidates}, però s'ha donat «{current}»."
-#: config.py:833
+#: config.py:829
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}'; expected "
"{permitted}."
msgstr "El valor de configuració «{name}» té el tipus «{current.__name__}», s'espera {permitted}."
-#: config.py:850
+#: config.py:846
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}', defaults to "
"`{default.__name__}'."
msgstr "El valor de configuració «{name}» té el tipus «{current.__name__}», el valor predeterminat és «{default.__name__}»."
-#: config.py:862
+#: config.py:858
#, python-format
msgid "primary_domain %r not found, ignored."
msgstr "no s'ha trobat primary_domain %r, s'ignora."
-#: config.py:882
+#: config.py:878
msgid ""
"Sphinx now uses \"index\" as the master document by default. To keep pre-2.0"
" behaviour, set \"master_doc = 'contents'\"."
-msgstr ""
+msgstr "Sphinx ara utilitza «index» de manera predeterminada com a document mestre. Per a mantindre el comportament anterior a la 2.0, establiu «master_doc = 'contents'»."
-#: highlighting.py:170
-#, python-format
-msgid "Pygments lexer name %r is not known"
-msgstr "No es coneix el nom del lexer de pigments %r"
-
-#: highlighting.py:209
-#, python-format
+#: config.py:892
msgid ""
-"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
-"Retrying in relaxed mode."
-msgstr "L'anàlisi lèxica del literal_block %r com a «%s» ha resultat en un error en el testimoni: %r. S'està tornant a provar en el mode relaxat."
+"Support for source encodings other than UTF-8 is deprecated and will be "
+"removed in Sphinx 10. Please comment at https://github.com/sphinx-"
+"doc/sphinx/issues/13665 if this causes a problem."
+msgstr "La compatibilitat amb les codificacions font diferents d'UTF-8 està obsoleta i se suprimirà en el Sphinx 10. Si això causa algun problema, feu un comentari a «https://github.com/sphinx-doc/sphinx/issues/13665»."
-#: theming.py:115
-#, python-format
-msgid ""
-"Theme configuration sections other than [theme] and [options] are not "
-"supported (tried to get a value from %r)."
-msgstr "No s'admeten les seccions de configuració del tema que no siguen [theme] i [options] (s'ha intentat obtindre un valor des de %r)."
+#: environment/__init__.py:89
+msgid "new config"
+msgstr "configuració nova"
-#: theming.py:120
-#, python-format
-msgid "setting %s.%s occurs in none of the searched theme configs"
-msgstr "configuració %s. %s no es produïx en cap de les configuracions de temes buscats"
+#: environment/__init__.py:90
+msgid "config changed"
+msgstr "configuració modificada"
-#: theming.py:135
-#, python-format
-msgid "unsupported theme option %r given"
-msgstr "opció de tema no admesa, s'ha donat %r"
+#: environment/__init__.py:91
+msgid "extensions changed"
+msgstr "extensions modificades"
-#: theming.py:208
-#, python-format
-msgid "file %r on theme path is not a valid zipfile or contains no theme"
-msgstr "el fitxer %r en el camí de temes no és un fitxer ZIP vàlid ni conté cap tema"
+#: environment/__init__.py:261
+msgid "build environment version not current"
+msgstr "la versió de l'entorn de compilació no és actual"
+
+#: environment/__init__.py:263
+msgid "source directory has changed"
+msgstr "el directori d'origen ha sigut modificat"
-#: theming.py:228
+#: environment/__init__.py:350
#, python-format
-msgid "no theme named %r found (missing theme.toml?)"
-msgstr "no s'ha trobat cap tema anomenat %r (falta theme.toml?)"
+msgid "The configuration has changed (1 option: %r)"
+msgstr "La configuració ha sigut canviada (1 opció: %r)"
-#: theming.py:268
+#: environment/__init__.py:355
#, python-format
-msgid "The %r theme has circular inheritance"
-msgstr "El tema %r té una herència circular"
+msgid "The configuration has changed (%d options: %s)"
+msgstr "La configuració ha sigut canviada (%d opcions: %s)"
-#: theming.py:276
+#: environment/__init__.py:361
#, python-format
+msgid "The configuration has changed (%d options: %s, ...)"
+msgstr "La configuració ha sigut canviada (%d opcions: %s, «…»)"
+
+#: environment/__init__.py:404
msgid ""
-"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
-"are: %s"
-msgstr "El tema %r hereta des de %r, el qual no és un tema que estiga carregat. Els temes carregats són: %s"
+"This environment is incompatible with the selected builder, please choose "
+"another doctree directory."
+msgstr "Este entorn és incompatible amb el constructor seleccionat, trieu un altre directori doctree."
-#: theming.py:282
+#: environment/__init__.py:518
#, python-format
-msgid "The %r theme has too many ancestors"
-msgstr "El tema %r té massa avantpassats"
+msgid "Failed to scan documents in %s: %r"
+msgstr "No s'ha pogut escanejar els documents a %s: %r"
-#: theming.py:310
+#: environment/__init__.py:645 ext/intersphinx/_resolve.py:238
#, python-format
-msgid "no theme configuration file found in %r"
-msgstr "no s'ha trobat cap fitxer de configuració del tema a %r"
+msgid "Domain %r is not registered"
+msgstr "El domini %r no està registrat"
-#: theming.py:335 theming.py:388
-#, python-format
-msgid "theme %r doesn't have the \"theme\" table"
-msgstr "el tema %r no té la taula «theme»"
+#: environment/__init__.py:811
+msgid "document isn't included in any toctree"
+msgstr "el document no està inclòs en cap toctree"
-#: theming.py:339
-#, python-format
-msgid "The %r theme \"[theme]\" table is not a table"
-msgstr "La taula del tema %r «[theme]» no és una taula"
+#: environment/__init__.py:922
+msgid "self referenced toctree found. Ignored."
+msgstr "S'ha trobat un toctree autoreferenciat. S'ignora."
-#: theming.py:343 theming.py:391
+#: environment/__init__.py:952
#, python-format
-msgid "The %r theme must define the \"theme.inherit\" setting"
-msgstr "El tema %r ha de definir la configuració «theme.inherit»"
+msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
+msgstr "es fa referència al document en múltiples toctree: %s, se selecciona: %s <- %s"
-#: theming.py:347
-#, python-format
-msgid "The %r theme \"[options]\" table is not a table"
-msgstr "La taula del tema %r «[options]» no és una taula"
+#: locale/__init__.py:229
+msgid "Attention"
+msgstr "Atenció"
-#: theming.py:366
-#, python-format
-msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
-msgstr "La configuració de «theme.pygments_style» ha de ser una taula. Consell: «%s»"
+#: locale/__init__.py:230
+msgid "Caution"
+msgstr "Compte"
-#: events.py:77
-#, python-format
-msgid "Event %r already present"
-msgstr "L'esdeveniment %r ja està present"
+#: locale/__init__.py:231
+msgid "Danger"
+msgstr "Perill"
-#: events.py:370
-#, python-format
-msgid "Unknown event name: %s"
-msgstr "Nom desconegut de l'esdeveniment: %s"
+#: locale/__init__.py:232
+msgid "Error"
+msgstr "S'ha produït un error"
-#: events.py:416
-#, python-format
-msgid "Handler %r for event %r threw an exception"
-msgstr "El gestor %r per a l'esdeveniment %r ha retornat una excepció"
+#: locale/__init__.py:233
+msgid "Hint"
+msgstr "Suggeriment"
-#: project.py:72
+#: locale/__init__.py:234
+msgid "Important"
+msgstr "Important"
+
+#: locale/__init__.py:235
+msgid "Note"
+msgstr "Nota"
+
+#: locale/__init__.py:236
+msgid "See also"
+msgstr "Vegeu també"
+
+#: locale/__init__.py:237
+msgid "Tip"
+msgstr "Truc"
+
+#: locale/__init__.py:238
+msgid "Warning"
+msgstr "Avís"
+
+#: builders/texinfo.py:41
#, python-format
+msgid "The Texinfo files are in %(outdir)s."
+msgstr "Els fitxers de Texinfo es troben a %(outdir)s."
+
+#: builders/texinfo.py:44
msgid ""
-"multiple files found for the document \"%s\": %s\n"
-"Use %r for the build."
-msgstr "S'han trobat múltiples fitxers per al document «%s»: %s\nUtilitzeu %r per a la compilació."
+"\n"
+"Run 'make' in that directory to run these through makeinfo\n"
+"(use 'make info' here to do that automatically)."
+msgstr "\nExecuteu l'ordre «make» en este directori per a executar-les mitjançant\nel makeinfo (utilitzeu l'ordre «make info» per a fer-ho automàticament)."
-#: project.py:87
-#, python-format
-msgid "Ignored unreadable document %r."
-msgstr "S'ha ignorat el document il·legible %r."
+#: builders/texinfo.py:73
+msgid "no \"texinfo_documents\" config value found; no documents will be written"
+msgstr "no s'ha trobat el valor de configuració «texinfo_documents»: no s'escriurà cap document"
-#: registry.py:167
+#: builders/texinfo.py:85
#, python-format
-msgid "Builder class %s has no \"name\" attribute"
-msgstr "La classe del constructor %s no té cap atribut «name»"
+msgid "\"texinfo_documents\" config value references unknown document %s"
+msgstr "El valor de configuració «texinfo_documents» fa referència a un document %s desconegut"
-#: registry.py:171
+#: builders/latex/__init__.py:310 builders/texinfo.py:105
#, python-format
-msgid "Builder %r already exists (in module %s)"
-msgstr "El constructor %r ja existix (en el mòdul %s)"
+msgid "processing %s"
+msgstr "s'està processant %s"
-#: registry.py:187
-#, python-format
-msgid "Builder name %s not registered or available through entry point"
-msgstr "El nom del constructor %s no està registrat o disponible a través del punt d'entrada"
+#: builders/latex/__init__.py:332 builders/manpage.py:54
+#: builders/singlehtml.py:176 builders/texinfo.py:111
+msgid "writing"
+msgstr "s'està escrivint"
-#: registry.py:197
-#, python-format
-msgid "Builder name %s not registered"
-msgstr "El nom del constructor %s no està registrat"
+#: builders/latex/__init__.py:398 builders/texinfo.py:160
+msgid "resolving references..."
+msgstr "s'estan resolent les referències…"
-#: registry.py:204
-#, python-format
-msgid "domain %s already registered"
-msgstr "el domini %s ja està registrat"
+#: builders/latex/__init__.py:409 builders/texinfo.py:170
+msgid " (in "
+msgstr " (a "
-#: registry.py:228 registry.py:249 registry.py:262
-#, python-format
-msgid "domain %s not yet registered"
-msgstr "el domini %s encara no està registrat"
+#: builders/_epub_base.py:425 builders/html/__init__.py:768
+#: builders/latex/__init__.py:474 builders/texinfo.py:186
+msgid "copying images... "
+msgstr "s'estan copiant les imatges… "
-#: registry.py:235
+#: builders/_epub_base.py:447 builders/latex/__init__.py:489
+#: builders/texinfo.py:203
#, python-format
-msgid "The %r directive is already registered to domain %s"
-msgstr "La directiva %r ja està registrada al domini %s"
+msgid "cannot copy image file %r: %s"
+msgstr "no s'ha pogut copiar el fitxer d'imatge %r: %s"
-#: registry.py:253
-#, python-format
-msgid "The %r role is already registered to domain %s"
-msgstr "El rol %r ja està registrat al domini %s"
+#: builders/texinfo.py:210
+msgid "copying Texinfo support files"
+msgstr "s'estan copiant els fitxers de suport de Texinfo"
-#: registry.py:266
+#: builders/texinfo.py:218
#, python-format
-msgid "The %r index is already registered to domain %s"
-msgstr "L'índex %r ja està registrat al domini %s"
+msgid "error writing file Makefile: %s"
+msgstr "s'ha produït un error mentre s'escrivia el fitxer Makefile: %s"
-#: registry.py:313
+#: builders/manpage.py:37
#, python-format
-msgid "The %r object_type is already registered"
-msgstr "L'object_type %r ja està registrat"
+msgid "The manual pages are in %(outdir)s."
+msgstr "Les pàgines del manual es troben a %(outdir)s."
-#: registry.py:344
-#, python-format
-msgid "The %r crossref_type is already registered"
-msgstr "El crossref_type %r ja està registrat"
+#: builders/manpage.py:45
+msgid "no \"man_pages\" config value found; no manual pages will be written"
+msgstr "no s'ha trobat el valor de configuració «man_pages»: no s'escriuran les pàgines del manual"
-#: registry.py:353
+#: builders/manpage.py:64
#, python-format
-msgid "source_suffix %r is already registered"
-msgstr "source_suffix %r ja està registrat"
+msgid "\"man_pages\" config value references unknown document %s"
+msgstr "El valor de configuració «man_pages» fa referència a un document %s desconegut"
-#: registry.py:363
+#: builders/singlehtml.py:35
#, python-format
-msgid "source_parser for %r is already registered"
-msgstr "source_parser per a %r ja està registrat"
+msgid "The HTML page is in %(outdir)s."
+msgstr "La pàgina HTML es troba a %(outdir)s."
-#: registry.py:372
-#, python-format
-msgid "Source parser for %s not registered"
-msgstr "L'analitzador de fonts per a %s no registrat"
+#: builders/singlehtml.py:171
+msgid "assembling single document"
+msgstr "s'està muntant un únic document"
-#: registry.py:390
-#, python-format
-msgid "Translator for %r already exists"
-msgstr "El traductor per a %r ja existix"
+#: builders/singlehtml.py:189
+msgid "writing additional files"
+msgstr "s'estan escrivint els fitxers addicionals"
-#: registry.py:407
-#, python-format
-msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
-msgstr "kwargs per a add_node() haurà de ser una funció (visita, eixida) tupla: %r=%r"
+#: builders/dummy.py:19
+msgid "The dummy builder generates no files."
+msgstr "El constructor fictici no genera cap fitxer."
-#: registry.py:496
+#: builders/gettext.py:243
#, python-format
-msgid "enumerable_node %r already registered"
-msgstr "enumerable_node %r ja està registrat"
+msgid "The message catalogs are in %(outdir)s."
+msgstr "Els catàlegs de missatges es troben a %(outdir)s."
-#: registry.py:512
+#: builders/__init__.py:400 builders/gettext.py:264
#, python-format
-msgid "math renderer %s is already registered"
-msgstr "la representació matemàtica %s ja està registrada"
+msgid "building [%s]: "
+msgstr "s'està construint [%s]: "
-#: registry.py:529
+#: builders/gettext.py:265
#, python-format
-msgid ""
-"the extension %r was already merged with Sphinx since version %s; this "
-"extension is ignored."
-msgstr "l'extensió %r ja es va fusionar amb Sphinx des de la versió %s. Esta extensió s'ignorarà."
+msgid "targets for %d template files"
+msgstr "objectius per a %d fitxers de plantilla"
-#: registry.py:543
-msgid "Original exception:\n"
-msgstr "Excepció original:\n"
+#: builders/gettext.py:271
+msgid "reading templates... "
+msgstr "s'estan llegint les plantilles… "
-#: registry.py:545
-#, python-format
-msgid "Could not import extension %s"
-msgstr "No s'ha pogut importar l'extensió %s"
+#: builders/gettext.py:310
+msgid "writing message catalogs... "
+msgstr "s'estan escrivint els catàlegs de missatges… "
-#: registry.py:552
+#: builders/linkcheck.py:87
#, python-format
-msgid ""
-"extension %r has no setup() function; is it really a Sphinx extension "
-"module?"
-msgstr "l'extensió %r no té cap funció setup(). És realment un mòdul d'extensions de Sphinx?"
+msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
+msgstr "Busqueu qualsevol error en l'eixida anterior o en el fitxer %(outdir)s/output.txt"
-#: registry.py:565
+#: builders/linkcheck.py:159
#, python-format
-msgid ""
-"The %s extension used by this project needs at least Sphinx v%s; it "
-"therefore cannot be built with this version."
-msgstr "L'extensió %s utilitzada per este projecte almenys necessita Sphinx versió %s i, per tant, no es pot crear amb esta versió."
+msgid "broken link: %s (%s)"
+msgstr "enllaç trencat: %s (%s)"
-#: registry.py:577
+#: builders/linkcheck.py:561
#, python-format
-msgid ""
-"extension %r returned an unsupported object from its setup() function; it "
-"should return None or a metadata dictionary"
-msgstr "l'extensió %r ha retornat un objecte no admés des de la seua funció setup(). No n'hauria de retornar cap o retornar un diccionari de metadades"
+msgid "Anchor '%s' not found"
+msgstr "No s'ha trobat l'àncora «%s»"
-#: registry.py:612
+#: builders/linkcheck.py:789
+msgid "linkcheck_allowed_redirects. Expected a dictionary."
+msgstr "linkcheck_allowed_redirects. S'esperava un diccionari."
+
+#: builders/linkcheck.py:799
#, python-format
-msgid "`None` is not a valid filetype for %r."
-msgstr "«Cap» no és un tipus de fitxer vàlid per a %r."
+msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
+msgstr "No s'ha pogut compilar expressions regulars en linkcheck_allowed_redirects: %r %s"
-#: roles.py:206
+#: builders/epub3.py:83
#, python-format
-msgid "Common Vulnerabilities and Exposures; CVE %s"
-msgstr "Vulnerabilitats i exposicions comuns (CVE %s)"
+msgid "The ePub file is in %(outdir)s."
+msgstr "El fitxer ePub es troba a %(outdir)s."
+
+#: builders/epub3.py:188
+msgid "writing nav.xhtml file..."
+msgstr "s'està escrivint el fitxer nav.xhtml…"
+
+#: builders/epub3.py:224
+msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_language» (o «language») no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:230
+msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
+msgstr "el valor de configuració «epub_uid» haurà de ser un XML NAME per a EPUB3"
+
+#: builders/epub3.py:235
+msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_title» (o «html_title») no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:241
+msgid "conf value \"epub_author\" should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_author» no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:245
+msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_contributor» no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:250
+msgid "conf value \"epub_description\" should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_description» no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:254
+msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_publisher» no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:259
+msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_copyright» (o «copyright») no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:265
+msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+msgstr "el valor de configuració «epub_identifier» no pot estar buit per a EPUB3"
+
+#: builders/epub3.py:268
+msgid "conf value \"version\" should not be empty for EPUB3"
+msgstr "el valor de configuració «version» no pot estar buit per a EPUB3"
-#: roles.py:229
+#: builders/epub3.py:282 builders/html/__init__.py:1296
#, python-format
-msgid "invalid CVE number %s"
-msgstr "número %s de CVE no vàlid"
+msgid "invalid css_file: %r, ignored"
+msgstr "css_file no vàlid: %r, s'ignora"
-#: roles.py:251
+#: builders/xml.py:29
#, python-format
-msgid "Common Weakness Enumeration; CWE %s"
-msgstr "Enumeració de les debilitats comuns (CWE %s)"
+msgid "The XML files are in %(outdir)s."
+msgstr "Els fitxers en XML es troben a %(outdir)s."
-#: roles.py:274
+#: builders/html/__init__.py:1242 builders/text.py:71 builders/xml.py:81
#, python-format
-msgid "invalid CWE number %s"
-msgstr "número %s de CWE no vàlid"
+msgid "error writing file %s: %s"
+msgstr "s'ha produït un error mentre s'escrivia al fitxer %s: %s"
-#: roles.py:294
+#: builders/xml.py:103
#, python-format
-msgid "Python Enhancement Proposals; PEP %s"
-msgstr "Propostes de millora a Python; PEP %s"
+msgid "The pseudo-XML files are in %(outdir)s."
+msgstr "Els fitxers en pseudo XML es troben a %(outdir)s."
-#: roles.py:317
+#: builders/_epub_base.py:223
#, python-format
-msgid "invalid PEP number %s"
-msgstr "número de PEP no vàlid %s"
+msgid "duplicated ToC entry found: %s"
+msgstr "s'ha trobat una entrada ToC duplicada: %s"
-#: roles.py:355
+#: builders/_epub_base.py:436
#, python-format
-msgid "invalid RFC number %s"
-msgstr "número de RFC no vàlid %s"
+msgid "cannot read image file %r: copying it instead"
+msgstr "no s'ha pogut llegir el fitxer d'imatge %r: en el seu lloc, es copia"
-#: ext/linkcode.py:86 ext/viewcode.py:226
-msgid "[source]"
-msgstr "[font]"
+#: builders/_epub_base.py:467
+#, python-format
+msgid "cannot write image file %r: %s"
+msgstr "no s'ha pogut escriure el fitxer d'imatge %r: %s"
-#: ext/viewcode.py:289
-msgid "highlighting module code... "
-msgstr "s'està ressaltant el codi del mòdul… "
+#: builders/_epub_base.py:479
+msgid "Pillow not found - copying image files"
+msgstr "No s'ha trobat el Pillow: es copien els fitxers d'imatge"
-#: ext/viewcode.py:320
-msgid "[docs]"
-msgstr "[documents]"
+#: builders/_epub_base.py:514
+msgid "writing mimetype file..."
+msgstr "s'està escrivint un fitxer de tipus MIME…"
-#: ext/viewcode.py:346
-msgid "Module code"
-msgstr "Codi del mòdul"
+#: builders/_epub_base.py:523
+msgid "writing META-INF/container.xml file..."
+msgstr "s'està escrivint el fitxer META-INF/container.xml…"
+
+#: builders/_epub_base.py:561
+msgid "writing content.opf file..."
+msgstr "s'està escrivint el fitxer content.opf…"
-#: ext/viewcode.py:353
+#: builders/_epub_base.py:594
#, python-format
-msgid "Source code for %s
"
-msgstr "Codi font per a %s
"
+msgid "unknown mimetype for %s, ignoring"
+msgstr "tipus MIME desconegut per a %s, s'ignora"
-#: ext/viewcode.py:380
-msgid "Overview: module code"
-msgstr "Vista general: codi del mòdul"
+#: builders/_epub_base.py:749
+msgid "node has an invalid level"
+msgstr "el node té un nivell no vàlid"
-#: ext/viewcode.py:381
-msgid "All modules for which code is available
"
-msgstr "Tots els mòduls per als quals hi ha codi
"
+#: builders/_epub_base.py:769
+msgid "writing toc.ncx file..."
+msgstr "s'està escrivint el fitxer toc.ncx…"
-#: ext/extlinks.py:82
+#: builders/_epub_base.py:802
#, python-format
-msgid ""
-"hardcoded link %r could be replaced by an extlink (try using %r instead)"
-msgstr "l'enllaç codificat %r podria substituir-se per un enllaç extern (en el seu lloc intenteu utilitzar %r)"
+msgid "writing %s file..."
+msgstr "s'està escrivint el fitxer %s…"
-#: ext/autosectionlabel.py:52
+#: builders/text.py:27
#, python-format
-msgid "section \"%s\" gets labeled as \"%s\""
-msgstr "la secció «%s» s'etiqueta com a «%s»"
+msgid "The text files are in %(outdir)s."
+msgstr "Els fitxers de text es troben a %(outdir)s."
-#: domains/std/__init__.py:833 domains/std/__init__.py:960
-#: ext/autosectionlabel.py:61
+#: builders/__init__.py:229
#, python-format
-msgid "duplicate label %s, other instance in %s"
-msgstr "etiqueta duplicada %s, una altra instància a %s"
+msgid "a suitable image for %s builder not found: %s (%s)"
+msgstr "no s'ha trobat una imatge adequada per al constructor %s: %s (%s)"
-#: ext/imgmath.py:387 ext/mathjax.py:60
-msgid "Link to this equation"
-msgstr "Enllaça amb esta equació"
+#: builders/__init__.py:237
+#, python-format
+msgid "a suitable image for %s builder not found: %s"
+msgstr "no s'ha trobat una imatge adequada per al constructor %s: %s"
-#: ext/duration.py:90
-msgid ""
-"====================== slowest reading durations ======================="
-msgstr "==================== durades de lectura més lentes ====================="
+#: builders/__init__.py:260
+msgid "building [mo]: "
+msgstr "s'estan construint [mo]:"
-#: ext/doctest.py:118
-#, python-format
-msgid "missing '+' or '-' in '%s' option."
-msgstr "falta «+» o «-» en l'opció «%s»."
+#: builders/__init__.py:263 builders/__init__.py:771 builders/__init__.py:795
+msgid "writing output... "
+msgstr "s'està escrivint l'eixida…"
-#: ext/doctest.py:124
+#: builders/__init__.py:280
#, python-format
-msgid "'%s' is not a valid option."
-msgstr "«%s» no és una opció vàlida."
+msgid "all of %d po files"
+msgstr "tots els %d fitxers PO"
-#: ext/doctest.py:139
+#: builders/__init__.py:302
#, python-format
-msgid "'%s' is not a valid pyversion option"
-msgstr "«%s» no és una opció pyversion vàlida"
-
-#: ext/doctest.py:226
-msgid "invalid TestCode type"
-msgstr "tipus de TestCode no vàlid"
+msgid "targets for %d po files that are specified"
+msgstr "objectius per als %d fitxers PO que s'han especificat"
-#: ext/doctest.py:297
+#: builders/__init__.py:314
#, python-format
-msgid ""
-"Testing of doctests in the sources finished, look at the results in "
-"%(outdir)s/output.txt."
-msgstr "Proves de doctests en les fonts acabades, mireu el resultat a %(outdir)s/output.txt."
+msgid "targets for %d po files that are out of date"
+msgstr "objectius per als %d fitxers PO que estan desfasats"
-#: ext/doctest.py:457
-#, python-format
-msgid "no code/output in %s block at %s:%s"
-msgstr "no hi ha codi/eixida en el bloc %s a %s:%s"
+#: builders/__init__.py:324
+msgid "all source files"
+msgstr "tots els fitxers font"
-#: ext/doctest.py:568
+#: builders/__init__.py:335
#, python-format
-msgid "ignoring invalid doctest code: %r"
-msgstr "s'ignora el codi doctest no vàlid: %r"
+msgid "file %r given on command line does not exist, "
+msgstr "el fitxer %r proporcionat a la línia d'ordres no existix, "
-#: ext/imgmath.py:162
+#: builders/__init__.py:342
#, python-format
msgid ""
-"LaTeX command %r cannot be run (needed for math display), check the "
-"imgmath_latex setting"
-msgstr "l'ordre de LaTeX %r no s'ha pogut executar (necessària per a la visualització matemàtica), comproveu la configuració d'«imgmath_latex»"
+"file %r given on command line is not under the source directory, ignoring"
+msgstr "el fitxer %r proporcionat a la línia d'ordres no es troba davall el directori d'origen, s'ignora"
-#: ext/imgmath.py:181
+#: builders/__init__.py:353
#, python-format
-msgid ""
-"%s command %r cannot be run (needed for math display), check the imgmath_%s "
-"setting"
-msgstr "%s l'ordre de %r no s'ha pogut executar (necessària per a la visualització matemàtica), comproveu la configuració d'«imgmath_%s»"
+msgid "file %r given on command line is not a valid document, ignoring"
+msgstr "el fitxer %r proporcionat a la línia d'ordres no és un document vàlid, s'ignora"
-#: ext/imgmath.py:344
+#: builders/__init__.py:366
#, python-format
-msgid "display latex %r: %s"
-msgstr "visualització de latex %r: %s"
+msgid "%d source files given on command line"
+msgstr "%d fitxers font proporcionats en la línia d'ordres"
-#: ext/imgmath.py:380
+#: builders/__init__.py:382
#, python-format
-msgid "inline latex %r: %s"
-msgstr "latex inclòs %r: %s"
+msgid "targets for %d source files that are out of date"
+msgstr "els objectius per a %d fitxers font que estan desfasats"
-#: ext/coverage.py:48
-#, python-format
-msgid "invalid regex %r in %s"
-msgstr "expressions regulars no vàlides %r a %s"
+#: builders/__init__.py:411
+msgid "looking for now-outdated files... "
+msgstr "s'està buscant per fitxers sense actualitzar… "
-#: ext/coverage.py:140 ext/coverage.py:301
+#: builders/__init__.py:415
#, python-format
-msgid "module %s could not be imported: %s"
-msgstr "el mòdul %s no s'ha pogut importar: %s"
+msgid "%d found"
+msgstr "s'han trobat %d"
-#: ext/coverage.py:148
-#, python-format
-msgid ""
-"the following modules are documented but were not specified in "
-"coverage_modules: %s"
-msgstr "els mòduls següents estan documentats però no s'han especificat en coverage_modules: %s"
+#: builders/__init__.py:417
+msgid "none found"
+msgstr "no se n'ha trobat cap"
-#: ext/coverage.py:158
-msgid ""
-"the following modules are specified in coverage_modules but were not "
-"documented"
-msgstr "els mòduls següents s'especifiquen en coverage_modules però no estan documentats"
+#: builders/__init__.py:424
+msgid "pickling environment"
+msgstr "s'està preparant l'ambient"
-#: ext/coverage.py:172
-#, python-brace-format, python-format
-msgid ""
-"Testing of coverage in the sources finished, look at the results in "
-"%(outdir)s{sep}python.txt."
-msgstr ""
+#: builders/__init__.py:431
+msgid "checking consistency"
+msgstr "s'està comprovant la coherència"
-#: ext/coverage.py:187
-#, python-format
-msgid "invalid regex %r in coverage_c_regexes"
-msgstr "expressions regulars %r no vàlides en coverage_c_regexes"
+#: builders/__init__.py:435
+msgid "no targets are out of date."
+msgstr "no hi ha cap objectiu desfasat."
-#: ext/coverage.py:260
-#, python-format
-msgid "undocumented c api: %s [%s] in file %s"
-msgstr "API de C sense documentar: %s [ %s] en el fitxer %s"
+#: builders/__init__.py:474
+msgid "updating environment: "
+msgstr "s'està actualitzant l'entorn: "
-#: ext/coverage.py:452
+#: builders/__init__.py:499
#, python-format
-msgid "undocumented python function: %s :: %s"
-msgstr "funció de Python sense documentar: %s :: %s"
+msgid "%s added, %s changed, %s removed"
+msgstr "%s afegits, %s canviats, %s eliminats"
-#: ext/coverage.py:473
+#: builders/__init__.py:536
#, python-format
-msgid "undocumented python class: %s :: %s"
-msgstr "classe de Python sense documentar: %s :: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s) because it matches a "
+"built-in exclude pattern %r. Please move your master document to a different"
+" location."
+msgstr "Sphinx no pot carregar el document mestre (%s) perquè coincidix amb un patró d'exclusió %r en la construcció. Moveu el vostre document mestre cap a una altra ubicació."
-#: ext/coverage.py:492
+#: builders/__init__.py:545
#, python-format
-msgid "undocumented python method: %s :: %s :: %s"
-msgstr "mètode de Python sense documentar: %s :: %s :: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s) because it matches an "
+"exclude pattern specified in conf.py, %r. Please remove this pattern from "
+"conf.py."
+msgstr "Sphinx no pot carregar el document mestre (%s) perquè coincidix amb un patró d'exclusió especificat en «conf.py», %r. Per favor, elimineu este patró."
-#: ext/imgconverter.py:44
+#: builders/__init__.py:556
#, python-format
msgid ""
-"Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n"
-"\n"
-"Traceback: %s"
-msgstr "No es pot executar l'ordre de conversió d'imatges %r. «sphinx.ext.imgconverter» requerix de manera predeterminada ImageMagick. Assegureu-vos que està instal·lat o configureu l'opció «image_converter» a una ordre de conversió personalitzada.\n\nTraça: %s"
+"Sphinx is unable to load the master document (%s) because it is not included"
+" in the custom include_patterns = %r. Ensure that a pattern in "
+"include_patterns matches the master document."
+msgstr "Sphinx no pot carregar el document mestre (%s) perquè no s'inclou en l'opció personalitzada include_patterns = %r. Assegureu-vos que un patró en include_patterns coincidisca amb el document mestre."
-#: ext/imgconverter.py:56 ext/imgconverter.py:90
+#: builders/__init__.py:563
+#, python-format
+msgid ""
+"Sphinx is unable to load the master document (%s). The master document must "
+"be within the source directory or a subdirectory of it."
+msgstr "Sphinx no pot carregar el document mestre (%s). El document mestre haurà d'estar dins del directori font o un subdirectori d'este."
+
+#: builders/__init__.py:581 builders/__init__.py:598
+msgid "reading sources... "
+msgstr "s'estan llegint les fonts… "
+
+#: builders/__init__.py:725
+#, python-format
+msgid "docnames to write: %s"
+msgstr "els docname que s'escriuran: %s"
+
+#: builders/__init__.py:727
+msgid "no docnames to write!"
+msgstr "no hi ha cap docname per a escriure!"
+
+#: builders/__init__.py:740
+msgid "preparing documents"
+msgstr "s'estan preparant els documents"
+
+#: builders/__init__.py:743
+msgid "copying assets"
+msgstr "s'estan copiant els recursos"
+
+#: builders/changes.py:29
+#, python-format
+msgid "The overview file is in %(outdir)s."
+msgstr "El fitxer de vista general es troba a %(outdir)s."
+
+#: builders/changes.py:65
+#, python-format
+msgid "no changes in version %s."
+msgstr "no hi ha canvis en la versió %s."
+
+#: builders/changes.py:67
+msgid "writing summary file..."
+msgstr "s'està escrivint el fitxer de vista general…"
+
+#: builders/changes.py:79
+msgid "Builtins"
+msgstr "Elements incorporats"
+
+#: builders/changes.py:81
+msgid "Module level"
+msgstr "Nivell de mòdul"
+
+#: builders/changes.py:137
+msgid "copying source files..."
+msgstr "s'estan copiant els fitxers font…"
+
+#: builders/changes.py:146
+#, python-format
+msgid "could not read %r for changelog creation"
+msgstr "no s'ha pogut llegir %r per a la creació del registre de canvis"
+
+#: ext/coverage.py:48
+#, python-format
+msgid "invalid regex %r in %s"
+msgstr "expressions regulars no vàlides %r a %s"
+
+#: ext/coverage.py:140 ext/coverage.py:301
+#, python-format
+msgid "module %s could not be imported: %s"
+msgstr "el mòdul %s no s'ha pogut importar: %s"
+
+#: ext/coverage.py:148
+#, python-format
+msgid ""
+"the following modules are documented but were not specified in "
+"coverage_modules: %s"
+msgstr "els mòduls següents estan documentats, però no s'han especificat en coverage_modules: %s"
+
+#: ext/coverage.py:158
+#, python-format
+msgid ""
+"the following modules are specified in coverage_modules but were not "
+"documented: %s"
+msgstr ""
+
+#: ext/coverage.py:172
+#, python-brace-format, python-format
+msgid ""
+"Testing of coverage in the sources finished, look at the results in "
+"%(outdir)s{sep}python.txt."
+msgstr "S'han acabat les proves de cobertura a les fonts, mireu el resultat a «%(outdir)s{sep}python.txt»."
+
+#: ext/coverage.py:187
+#, python-format
+msgid "invalid regex %r in coverage_c_regexes"
+msgstr "expressions regulars %r no vàlides en coverage_c_regexes"
+
+#: ext/coverage.py:260
+#, python-format
+msgid "undocumented c api: %s [%s] in file %s"
+msgstr "API de C sense documentar: %s [ %s] en el fitxer %s"
+
+#: ext/coverage.py:452
+#, python-format
+msgid "undocumented python function: %s :: %s"
+msgstr "funció de Python sense documentar: %s :: %s"
+
+#: ext/coverage.py:473
+#, python-format
+msgid "undocumented python class: %s :: %s"
+msgstr "classe de Python sense documentar: %s :: %s"
+
+#: ext/coverage.py:492
+#, python-format
+msgid "undocumented python method: %s :: %s :: %s"
+msgstr "mètode de Python sense documentar: %s :: %s :: %s"
+
+#: ext/extlinks.py:82
+#, python-format
+msgid ""
+"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgstr "l'enllaç codificat %r podria substituir-se per un enllaç extern (en el seu lloc intenteu utilitzar %r)"
+
+#: ext/todo.py:61
+msgid "Todo"
+msgstr "Tasca pendent"
+
+#: ext/todo.py:94
+#, python-format
+msgid "TODO entry found: %s"
+msgstr "S'ha trobat una entrada TODO: %s"
+
+#: ext/todo.py:152
+msgid "<>"
+msgstr "<>"
+
+#: ext/todo.py:154
+#, python-format
+msgid "(The <> is located in %s, line %d.)"
+msgstr "(L'<> es troba a %s, línia %d)."
+
+#: ext/todo.py:166
+msgid "original entry"
+msgstr "entrada original"
+
+#: ext/imgconverter.py:44
+#, python-format
+msgid ""
+"Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n"
+"\n"
+"Traceback: %s"
+msgstr "No es pot executar l'ordre de conversió d'imatges %r. «sphinx.ext.imgconverter» requerix de manera predeterminada ImageMagick. Assegureu-vos que està instal·lat o establiu l'opció «image_converter» a una ordre de conversió personalitzada.\n\nTraça: %s"
+
+#: ext/imgconverter.py:56 ext/imgconverter.py:90
#, python-format
msgid ""
"convert exited with error:\n"
@@ -848,7 +1315,7 @@ msgstr "«dot» no ha produït un fitxer d'eixida:\n[stderr]\n%r\n[stdout]\n%r"
#: ext/graphviz.py:367
#, python-format
msgid "graphviz_output_format must be either 'png' or 'svg', but is %r"
-msgstr ""
+msgstr "«graphviz_output_format» ha de ser «png» o «svg», però és %r"
#: ext/graphviz.py:373 ext/graphviz.py:436 ext/graphviz.py:480
#, python-format
@@ -864,879 +1331,960 @@ msgstr "[gràfica: %s]"
msgid "[graph]"
msgstr "[gràfica]"
-#: ext/todo.py:61
-msgid "Todo"
-msgstr "Tasca pendent"
+#: ext/imgmath.py:148
+#, python-format
+msgid ""
+"LaTeX command %r cannot be run (needed for math display), check the "
+"imgmath_latex setting"
+msgstr "l'ordre de LaTeX %r no s'ha pogut executar (necessària per a la visualització matemàtica), comproveu la configuració d'«imgmath_latex»"
-#: ext/todo.py:94
+#: ext/imgmath.py:167
#, python-format
-msgid "TODO entry found: %s"
-msgstr "S'ha trobat una entrada TODO: %s"
+msgid ""
+"%s command %r cannot be run (needed for math display), check the imgmath_%s "
+"setting"
+msgstr "%s l'ordre de %r no s'ha pogut executar (necessària per a la visualització matemàtica), comproveu la configuració d'«imgmath_%s»"
-#: ext/todo.py:152
-msgid "<>"
-msgstr "<>"
+#: ext/imgmath.py:326
+#, python-format
+msgid "display latex %r: %s"
+msgstr "visualització de latex %r: %s"
-#: ext/todo.py:154
+#: ext/imgmath.py:362
#, python-format
-msgid "(The <> is located in %s, line %d.)"
-msgstr "(L'<> es troba a %s, línia %d)."
+msgid "inline latex %r: %s"
+msgstr "latex inclòs %r: %s"
-#: ext/todo.py:166
-msgid "original entry"
-msgstr "entrada original"
+#: ext/imgmath.py:369 ext/mathjax.py:60
+msgid "Link to this equation"
+msgstr "Enllaça amb esta equació"
-#: directives/code.py:66
-msgid "non-whitespace stripped by dedent"
-msgstr "cap espai en blanc eliminat en disminuir el sagnat"
+#: ext/doctest.py:118
+#, python-format
+msgid "missing '+' or '-' in '%s' option."
+msgstr "falta «+» o «-» en l'opció «%s»."
-#: directives/code.py:87
+#: ext/doctest.py:124
#, python-format
-msgid "Invalid caption: %s"
-msgstr "Subtítol no vàlid: %s"
+msgid "'%s' is not a valid option."
+msgstr "«%s» no és una opció vàlida."
-#: directives/code.py:131 directives/code.py:297 directives/code.py:483
+#: ext/doctest.py:139
#, python-format
-msgid "line number spec is out of range(1-%d): %r"
-msgstr "l'especificació del número de línia queda fora de l'interval (1-%d): %r"
+msgid "'%s' is not a valid pyversion option"
+msgstr "«%s» no és una opció pyversion vàlida"
-#: directives/code.py:216
+#: ext/doctest.py:226
+msgid "invalid TestCode type"
+msgstr "tipus de TestCode no vàlid"
+
+#: ext/doctest.py:297
#, python-format
-msgid "Cannot use both \"%s\" and \"%s\" options"
-msgstr "No es poden utilitzar ambdues opcions «%s» i «%s»"
+msgid ""
+"Testing of doctests in the sources finished, look at the results in "
+"%(outdir)s/output.txt."
+msgstr "Proves de doctests en les fonts acabades, mireu el resultat a %(outdir)s/output.txt."
-#: directives/code.py:231
+#: ext/doctest.py:451
#, python-format
-msgid "Include file '%s' not found or reading it failed"
-msgstr "No s'ha trobat el fitxer d'inclusió «%s» o n'ha fallat la lectura"
+msgid "no code/output in %s block at %s:%s"
+msgstr "no hi ha codi/eixida en el bloc %s a %s:%s"
-#: directives/code.py:235
+#: ext/doctest.py:568
#, python-format
-msgid ""
-"Encoding %r used for reading included file '%s' seems to be wrong, try "
-"giving an :encoding: option"
-msgstr "La codificació %r emprada per a llegir el fitxer d'inclusió «%s» pareix ser incorrecta, proveu indicant una opció :encoding:"
+msgid "ignoring invalid doctest code: %r"
+msgstr "s'ignora el codi doctest no vàlid: %r"
-#: directives/code.py:276
+#: ext/autosectionlabel.py:52
#, python-format
-msgid "Object named %r not found in include file %r"
-msgstr "L'objecte anomenat %r no es troba en el fitxer inclòs %r"
+msgid "section \"%s\" gets labeled as \"%s\""
+msgstr "la secció «%s» s'etiqueta com a «%s»"
-#: directives/code.py:309
-msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
-msgstr "No podeu utilitzar «lineno-match» amb un conjunt desarticulat de «línies»"
+#: domains/std/__init__.py:833 domains/std/__init__.py:960
+#: ext/autosectionlabel.py:61
+#, python-format
+msgid "duplicate label %s, other instance in %s"
+msgstr "etiqueta duplicada %s, una altra instància a %s"
-#: directives/code.py:314
+#: ext/duration.py:47
#, python-format
-msgid "Line spec %r: no lines pulled from include file %r"
-msgstr "Línia específica %r: No hi ha cap línia llançada des del fitxer inclòs %r"
+msgid "Reading duration %.3fs exceeded the duration limit %.3fs"
+msgstr ""
-#: directives/patches.py:71
+#: ext/duration.py:117
msgid ""
-"\":file:\" option for csv-table directive now recognizes an absolute path as"
-" a relative path from source directory. Please update your document."
-msgstr "«:file:» l'opció per a la directiva «csv-table» ara reconeix un camí absolut com a camí relatiu des del directori d'origen. Actualitzeu el vostre document."
+"====================== total reading duration =========================="
+msgstr ""
-#: directives/other.py:119
+#: ext/duration.py:124
#, python-format
-msgid "toctree glob pattern %r didn't match any documents"
-msgstr "El patró global toctree %r no coincidix amb cap document"
+msgid "Total time reading %d file%s: %dm %.3fs"
+msgstr ""
-#: directives/other.py:153 environment/adapters/toctree.py:361
-#, python-format
-msgid "toctree contains reference to excluded document %r"
-msgstr "el toctree conté una referència cap al document exclòs %r"
+#: ext/duration.py:136
+msgid ""
+"====================== slowest reading durations ======================="
+msgstr "==================== durades de lectura més lentes ====================="
-#: directives/other.py:156
+#: ext/duration.py:139
#, python-format
-msgid "toctree contains reference to nonexisting document %r"
-msgstr "el toctree conté una referència cap al document %r, el qual no existix"
+msgid "%.3fs %s"
+msgstr ""
-#: directives/other.py:169
-#, python-format
-msgid "duplicated entry found in toctree: %s"
-msgstr "s'ha trobat una entrada duplicada en el toctree: %s"
+#: ext/linkcode.py:86 ext/viewcode.py:232
+msgid "[source]"
+msgstr "[font]"
-#: directives/other.py:203
-msgid "Section author: "
-msgstr "Autoria de la secció:"
+#: ext/viewcode.py:295
+msgid "highlighting module code... "
+msgstr "s'està ressaltant el codi del mòdul… "
-#: directives/other.py:205
-msgid "Module author: "
-msgstr "Autoria del mòdul: "
+#: ext/viewcode.py:326
+msgid "[docs]"
+msgstr "[documents]"
-#: directives/other.py:207
-msgid "Code author: "
-msgstr "Autoria del codi: "
+#: ext/viewcode.py:352
+msgid "Module code"
+msgstr "Codi del mòdul"
-#: directives/other.py:209
-msgid "Author: "
-msgstr "Autoria: "
+#: ext/viewcode.py:359
+#, python-format
+msgid "Source code for %s
"
+msgstr "Codi font per a %s
"
-#: directives/other.py:269
-msgid ".. acks content is not a list"
-msgstr "… el contingut dels reconeixements no és una llista"
+#: ext/viewcode.py:386
+msgid "Overview: module code"
+msgstr "Vista general: codi del mòdul"
-#: directives/other.py:292
-msgid ".. hlist content is not a list"
-msgstr "… el contingut de l'historial no és una llista"
+#: ext/viewcode.py:387
+msgid "All modules for which code is available
"
+msgstr "Tots els mòduls per als quals hi ha codi
"
-#: builders/changes.py:29
+#: domains/citation.py:75
#, python-format
-msgid "The overview file is in %(outdir)s."
-msgstr "El fitxer de vista general es troba a %(outdir)s."
+msgid "duplicate citation %s, other instance in %s"
+msgstr "citació duplicada %s, una altra instància a %s"
-#: builders/changes.py:56
+#: domains/citation.py:92
#, python-format
-msgid "no changes in version %s."
-msgstr "no hi ha canvis en la versió %s."
-
-#: builders/changes.py:58
-msgid "writing summary file..."
-msgstr "s'està escrivint el fitxer de vista general…"
-
-#: builders/changes.py:70
-msgid "Builtins"
-msgstr "Elements incorporats"
-
-#: builders/changes.py:72
-msgid "Module level"
-msgstr "Nivell de mòdul"
-
-#: builders/changes.py:124
-msgid "copying source files..."
-msgstr "s'estan copiant els fitxers font…"
+msgid "Citation [%s] is not referenced."
+msgstr "No es fa referència en la citació [%s]."
-#: builders/changes.py:133
+#: domains/math.py:73
#, python-format
-msgid "could not read %r for changelog creation"
-msgstr "no s'ha pogut llegir %r per a la creació del registre de canvis"
+msgid "duplicate label of equation %s, other instance in %s"
+msgstr "etiqueta duplicada de l'equació %s, una altra instància a %s"
-#: builders/manpage.py:37
+#: domains/math.py:130 writers/latex.py:2500
#, python-format
-msgid "The manual pages are in %(outdir)s."
-msgstr "Les pàgines del manual es troben a %(outdir)s."
+msgid "Invalid math_eqref_format: %r"
+msgstr "math_eqref_format no vàlid: %r"
-#: builders/manpage.py:45
-msgid "no \"man_pages\" config value found; no manual pages will be written"
-msgstr "no s'ha trobat el valor de configuració «man_pages»: no s'escriuran les pàgines del manual"
+#: domains/javascript.py:183
+#, python-format
+msgid "%s() (built-in function)"
+msgstr "%s() (funció interna)"
-#: builders/latex/__init__.py:347 builders/manpage.py:54
-#: builders/singlehtml.py:176 builders/texinfo.py:119
-msgid "writing"
-msgstr "s'està escrivint"
+#: domains/javascript.py:184 domains/python/__init__.py:279
+#, python-format
+msgid "%s() (%s method)"
+msgstr "%s() (mètode %s)"
-#: builders/manpage.py:71
+#: domains/javascript.py:186
#, python-format
-msgid "\"man_pages\" config value references unknown document %s"
-msgstr "El valor de configuració «man_pages» fa referència a un document %s desconegut"
+msgid "%s() (class)"
+msgstr "%s() (classe)"
-#: builders/__init__.py:224
+#: domains/javascript.py:188
#, python-format
-msgid "a suitable image for %s builder not found: %s (%s)"
-msgstr "no s'ha trobat una imatge adequada per al constructor %s: %s (%s)"
+msgid "%s (global variable or constant)"
+msgstr "%s (variable global o constant)"
-#: builders/__init__.py:232
+#: domains/javascript.py:190 domains/python/__init__.py:370
#, python-format
-msgid "a suitable image for %s builder not found: %s"
-msgstr "no s'ha trobat una imatge adequada per al constructor %s: %s"
+msgid "%s (%s attribute)"
+msgstr "%s (atribut %s)"
-#: builders/__init__.py:255
-msgid "building [mo]: "
-msgstr "s'estan construint [mo]:"
+#: domains/javascript.py:274
+msgid "Arguments"
+msgstr "Arguments"
-#: builders/__init__.py:258 builders/__init__.py:759 builders/__init__.py:791
-msgid "writing output... "
-msgstr "s'està escrivint l'eixida…"
+#: domains/cpp/__init__.py:491 domains/javascript.py:281
+msgid "Throws"
+msgstr "Llançaments"
-#: builders/__init__.py:275
-#, python-format
-msgid "all of %d po files"
-msgstr "tots els %d fitxers PO"
+#: domains/c/__init__.py:367 domains/cpp/__init__.py:504
+#: domains/javascript.py:288 domains/python/_object.py:221
+msgid "Returns"
+msgstr "Retorna"
-#: builders/__init__.py:297
-#, python-format
-msgid "targets for %d po files that are specified"
-msgstr "objectius per als %d fitxers PO que s'han especificat"
+#: domains/c/__init__.py:373 domains/javascript.py:294
+#: domains/python/_object.py:227
+msgid "Return type"
+msgstr "Tipus de retorn"
-#: builders/__init__.py:309
+#: domains/javascript.py:374
#, python-format
-msgid "targets for %d po files that are out of date"
-msgstr "objectius per als %d fitxers PO que estan desfasats"
+msgid "%s (module)"
+msgstr "%s (mòdul)"
-#: builders/__init__.py:319
-msgid "all source files"
-msgstr "tots els fitxers font"
+#: domains/c/__init__.py:779 domains/cpp/__init__.py:943
+#: domains/javascript.py:419 domains/python/__init__.py:726
+msgid "function"
+msgstr "funció"
-#: builders/__init__.py:330
-#, python-format
-msgid "file %r given on command line does not exist, "
-msgstr "el fitxer %r proporcionat a la línia d'ordres no existix, "
+#: domains/javascript.py:420 domains/python/__init__.py:730
+msgid "method"
+msgstr "mètode"
-#: builders/__init__.py:337
-#, python-format
-msgid ""
-"file %r given on command line is not under the source directory, ignoring"
-msgstr "el fitxer %r proporcionat a la línia d'ordres no es troba davall el directori d'origen, s'ignora"
+#: domains/cpp/__init__.py:941 domains/javascript.py:421
+#: domains/python/__init__.py:728
+msgid "class"
+msgstr "classe"
-#: builders/__init__.py:348
-#, python-format
-msgid "file %r given on command line is not a valid document, ignoring"
-msgstr "el fitxer %r proporcionat a la línia d'ordres no és un document vàlid, s'ignora"
+#: domains/javascript.py:422 domains/python/__init__.py:727
+msgid "data"
+msgstr "dades"
-#: builders/__init__.py:361
-#, python-format
-msgid "%d source files given on command line"
-msgstr "%d fitxers font proporcionats en la línia d'ordres"
+#: domains/javascript.py:423 domains/python/__init__.py:733
+msgid "attribute"
+msgstr "atribut"
-#: builders/__init__.py:377
-#, python-format
-msgid "targets for %d source files that are out of date"
-msgstr "els objectius per a %d fitxers font que estan desfasats"
+#: domains/javascript.py:424 domains/python/__init__.py:736
+msgid "module"
+msgstr "mòdul"
-#: builders/__init__.py:395 builders/gettext.py:265
+#: domains/javascript.py:458
#, python-format
-msgid "building [%s]: "
-msgstr "s'està construint [%s]: "
-
-#: builders/__init__.py:406
-msgid "looking for now-outdated files... "
-msgstr "s'està buscant per fitxers sense actualitzar… "
+msgid "duplicate %s description of %s, other %s in %s"
+msgstr "descripció %s duplicada de %s, una altra %s a %s"
-#: builders/__init__.py:410
+#: domains/rst.py:131 domains/rst.py:190
#, python-format
-msgid "%d found"
-msgstr "s'han trobat %d"
+msgid "%s (directive)"
+msgstr "%s (directiva)"
-#: builders/__init__.py:412
-msgid "none found"
-msgstr "no se n'ha trobat cap"
+#: domains/rst.py:191 domains/rst.py:202
+#, python-format
+msgid ":%s: (directive option)"
+msgstr ":%s: (opció de la directiva)"
-#: builders/__init__.py:419
-msgid "pickling environment"
-msgstr "s'està preparant l'ambient"
+#: domains/rst.py:224
+#, python-format
+msgid "%s (role)"
+msgstr "%s (rol)"
-#: builders/__init__.py:426
-msgid "checking consistency"
-msgstr "s'està comprovant la coherència"
+#: domains/rst.py:234
+msgid "directive"
+msgstr "directiva"
-#: builders/__init__.py:430
-msgid "no targets are out of date."
-msgstr "no hi ha cap objectiu desfasat."
+#: domains/rst.py:235
+msgid "directive-option"
+msgstr "opció_de_la_directiva"
-#: builders/__init__.py:469
-msgid "updating environment: "
-msgstr "s'està actualitzant l'entorn: "
+#: domains/rst.py:236
+msgid "role"
+msgstr "rol"
-#: builders/__init__.py:494
+#: domains/rst.py:262
#, python-format
-msgid "%s added, %s changed, %s removed"
-msgstr "%s afegits, %s canviats, %s eliminats"
+msgid "duplicate description of %s %s, other instance in %s"
+msgstr "descripció duplicada del %s %s, una altra instància a %s"
-#: builders/__init__.py:531
+#: domains/changeset.py:32
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches a "
-"built-in exclude pattern %r. Please move your master document to a different"
-" location."
-msgstr "Sphinx no pot carregar el document mestre (%s) perquè coincidix amb un patró d'exclusió %r en la construcció. Moveu el vostre document mestre cap a una altra ubicació."
+msgid "Added in version %s"
+msgstr "Afegit a la versió %s"
-#: builders/__init__.py:540
+#: domains/changeset.py:33
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches an "
-"exclude pattern specified in conf.py, %r. Please remove this pattern from "
-"conf.py."
-msgstr "Sphinx no pot carregar el document mestre (%s) perquè coincidix amb un patró d'exclusió especificat en «conf.py», %r. Per favor, elimineu este patró."
+msgid "Changed in version %s"
+msgstr "Canviat a la versió %s"
-#: builders/__init__.py:551
+#: domains/changeset.py:34
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it is not included"
-" in the custom include_patterns = %r. Ensure that a pattern in "
-"include_patterns matches the master document."
-msgstr "Sphinx no pot carregar el document mestre (%s) perquè no s'inclou en l'opció personalitzada include_patterns = %r. Assegureu-vos que un patró en include_patterns coincidisca amb el document mestre."
+msgid "Deprecated since version %s"
+msgstr "Obsolet des de la versió %s"
-#: builders/__init__.py:558
+#: domains/changeset.py:35
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s). The master document must "
-"be within the source directory or a subdirectory of it."
-msgstr "Sphinx no pot carregar el document mestre (%s). El document mestre haurà d'estar dins del directori font o un subdirectori d'este."
-
-#: builders/__init__.py:576 builders/__init__.py:592
-msgid "reading sources... "
-msgstr "s'estan llegint les fonts… "
+msgid "Removed in version %s"
+msgstr "S'ha eliminat en la versió %s"
-#: builders/__init__.py:713
+#: domains/__init__.py:322
#, python-format
-msgid "docnames to write: %s"
-msgstr "els docname que s'escriuran: %s"
+msgid "%s %s"
+msgstr "%s %s"
-#: builders/__init__.py:715
-msgid "no docnames to write!"
-msgstr ""
+#: cmd/build.py:64
+msgid "job number should be a positive number"
+msgstr "el número de treball hauria de ser un nombre positiu"
-#: builders/__init__.py:728
-msgid "preparing documents"
-msgstr "s'estan preparant els documents"
+#: cmd/build.py:73 cmd/quickstart.py:582 ext/apidoc/_cli.py:27
+#: ext/autosummary/generate.py:876
+msgid "For more information, visit ."
+msgstr "Per a més informació, visiteu ."
-#: builders/__init__.py:731
-msgid "copying assets"
-msgstr "s'estan copiant els recursos"
+#: cmd/build.py:74
+msgid ""
+"\n"
+"Generate documentation from source files.\n"
+"\n"
+"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
+"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
+"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
+"including 'conf.py'\n"
+"\n"
+"sphinx-build can create documentation in different formats. A format is\n"
+"selected by specifying the builder name on the command line; it defaults to\n"
+"HTML. Builders can also perform other tasks related to documentation\n"
+"processing.\n"
+"\n"
+"By default, everything that is outdated is built. Output only for selected\n"
+"files can be built by specifying individual filenames.\n"
+msgstr "\nGenerar la documentació a partir dels fitxers font.\n\nL'eina «sphinx-build» generarà la documentació a partir dels fitxers\na SOURCEDIR i els situarà a OUTPUTDIR. Busqueu el «conf.py» en el\nSOURCEDIR per als paràmetres de configuració. L'eina «sphinx-quickstart» es pot utilitzar per a generar fitxers de plantilla, inclòs el «conf.py».\n\nL'eina «sphinx-build» pot crear documentació en formats diferents. A la\nlínia d'ordres se selecciona un format que especifica el nom del constructor.\nDe manera predeterminada és HTML. Els constructors també poden dur a terme\naltres tasques relacionades amb el processament de la documentació.\n\nDe manera predeterminada, es construïx tot el que està desactualitzat. Es pot\ngenerar l'eixida només per als fitxers seleccionats especificant noms de fitxer\nindividuals.\n"
-#: builders/__init__.py:883
-#, python-format
-msgid "undecodable source characters, replacing with \"?\": %r"
-msgstr "caràcters font no codificables, substituint per «?»: %r"
+#: cmd/build.py:100
+msgid "path to documentation source files"
+msgstr "camí cap als fitxers font de la documentació"
-#: builders/epub3.py:84
-#, python-format
-msgid "The ePub file is in %(outdir)s."
-msgstr "El fitxer ePub es troba a %(outdir)s."
+#: cmd/build.py:103
+msgid "path to output directory"
+msgstr "camí cap al directori d'eixida"
-#: builders/epub3.py:189
-msgid "writing nav.xhtml file..."
-msgstr "s'està escrivint el fitxer nav.xhtml…"
+#: cmd/build.py:109
+msgid ""
+"(optional) a list of specific files to rebuild. Ignored if --write-all is "
+"specified"
+msgstr "(opcional) una llista de fitxers específics que s'han de reconstruir. S'ignorarà si s'especifica «--write-all»"
-#: builders/epub3.py:221
-msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_language» (o «language») no pot estar buit per a EPUB3"
+#: cmd/build.py:114
+msgid "general options"
+msgstr "opcions generals"
-#: builders/epub3.py:227
-msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
-msgstr "el valor de configuració «epub_uid» haurà de ser un XML NAME per a EPUB3"
+#: cmd/build.py:121
+msgid "builder to use (default: 'html')"
+msgstr "constructor que s'utilitzarà (predeterminat: «html»)"
-#: builders/epub3.py:232
-msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_title» (o «html_title») no pot estar buit per a EPUB3"
+#: cmd/build.py:131
+msgid ""
+"run in parallel with N processes, when possible. 'auto' uses the number of "
+"CPU cores"
+msgstr "executa en paral·lel amb N processos, quan siga possible. «auto» uxa el nombre de nuclis de la CPU"
-#: builders/epub3.py:238
-msgid "conf value \"epub_author\" should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_author» no pot estar buit per a EPUB3"
+#: cmd/build.py:140
+msgid "write all files (default: only write new and changed files)"
+msgstr "escriu tots els fitxers (predeterminat: només escriu els fitxers nous i els que han canviat)"
-#: builders/epub3.py:242
-msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_contributor» no pot estar buit per a EPUB3"
+#: cmd/build.py:147
+msgid "don't use a saved environment, always read all files"
+msgstr "no utilitzar un entorn guardat, llig sempre tots els fitxers"
-#: builders/epub3.py:247
-msgid "conf value \"epub_description\" should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_description» no pot estar buit per a EPUB3"
+#: cmd/build.py:150
+msgid "path options"
+msgstr "opcions de camí"
-#: builders/epub3.py:251
-msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_publisher» no pot estar buit per a EPUB3"
+#: cmd/build.py:157
+msgid ""
+"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
+msgstr "directori per als fitxers doctree i d'entorn (predeterminat: OUTPUT_DIR/.doctrees)"
-#: builders/epub3.py:256
-msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_copyright» (o «copyright») no pot estar buit per a EPUB3"
+#: cmd/build.py:166
+msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
+msgstr "directori per al fitxer de configuració (conf.py) (predeterminat: SOURCE_DIR)"
-#: builders/epub3.py:262
-msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
-msgstr "el valor de configuració «epub_identifier» no pot estar buit per a EPUB3"
+#: cmd/build.py:175
+msgid "use no configuration file, only use settings from -D options"
+msgstr "no utilitza cap fitxer de configuració, només utilitza la configuració de les opcions de «-D»"
-#: builders/epub3.py:265
-msgid "conf value \"version\" should not be empty for EPUB3"
-msgstr "el valor de configuració «version» no pot estar buit per a EPUB3"
+#: cmd/build.py:184
+msgid "override a setting in configuration file"
+msgstr "superposa una configuració en el fitxer de configuració"
-#: builders/epub3.py:279 builders/html/__init__.py:1291
-#, python-format
-msgid "invalid css_file: %r, ignored"
-msgstr "css_file no vàlid: %r, s'ignora"
+#: cmd/build.py:193
+msgid "pass a value into HTML templates"
+msgstr "passa un valor a dins de les plantilles HTML"
-#: builders/xml.py:31
-#, python-format
-msgid "The XML files are in %(outdir)s."
-msgstr "Els fitxers en XML es troben a %(outdir)s."
+#: cmd/build.py:202
+msgid "define tag: include \"only\" blocks with TAG"
+msgstr "definix l'etiqueta: inclou blocs «only» amb TAG"
-#: builders/html/__init__.py:1241 builders/text.py:76 builders/xml.py:90
-#, python-format
-msgid "error writing file %s: %s"
-msgstr "s'ha produït un s'ha produït un error mentre s'escrivia al fitxer %s: %s"
+#: cmd/build.py:209
+msgid "nitpicky mode: warn about all missing references"
+msgstr "mode primmirat: avisa sobre totes les referències que falten"
-#: builders/xml.py:101
-#, python-format
-msgid "The pseudo-XML files are in %(outdir)s."
-msgstr "Els fitxers en pseudo XML es troben a %(outdir)s."
+#: cmd/build.py:212
+msgid "console output options"
+msgstr "opcions d'eixida de la consola"
-#: builders/texinfo.py:45
-#, python-format
-msgid "The Texinfo files are in %(outdir)s."
-msgstr "Els fitxers de Texinfo es troben a %(outdir)s."
+#: cmd/build.py:219
+msgid "increase verbosity (can be repeated)"
+msgstr "augmenta la loquacitat (es pot repetir)"
-#: builders/texinfo.py:48
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through makeinfo\n"
-"(use 'make info' here to do that automatically)."
-msgstr "\nExecuteu l'ordre «make» en este directori per a executar-les mitjançant\nel makeinfo (utilitzeu l'ordre «make info» per a fer-ho automàticament)."
+#: cmd/build.py:226 ext/apidoc/_cli.py:66
+msgid "no output on stdout, just warnings on stderr"
+msgstr "sense eixida cap a l'eixida estàndard, només avisos a l'eixida d'error estàndard"
-#: builders/texinfo.py:77
-msgid "no \"texinfo_documents\" config value found; no documents will be written"
-msgstr "no s'ha trobat el valor de configuració «texinfo_documents»: no s'escriurà cap document"
+#: cmd/build.py:233
+msgid "no output at all, not even warnings"
+msgstr "sense eixida, ni tan sols els avisos"
-#: builders/texinfo.py:89
-#, python-format
-msgid "\"texinfo_documents\" config value references unknown document %s"
-msgstr "El valor de configuració «texinfo_documents» fa referència a un document %s desconegut"
+#: cmd/build.py:241
+msgid "do emit colored output (default: auto-detect)"
+msgstr "emet una eixida amb colors (predeterminada: detecció automàtica)"
-#: builders/latex/__init__.py:325 builders/texinfo.py:113
-#, python-format
-msgid "processing %s"
-msgstr "s'està processant %s"
+#: cmd/build.py:249
+msgid "do not emit colored output (default: auto-detect)"
+msgstr "no emetre una eixida amb colors (predeterminada: detecció automàtica)"
-#: builders/latex/__init__.py:405 builders/texinfo.py:172
-msgid "resolving references..."
-msgstr "s'estan resolent les referències…"
+#: cmd/build.py:252
+msgid "warning control options"
+msgstr "opcions de control d'avís"
-#: builders/latex/__init__.py:416 builders/texinfo.py:182
-msgid " (in "
-msgstr " (a "
+#: cmd/build.py:258
+msgid "write warnings (and errors) to given file"
+msgstr "escriviu els avisos (i errors) al fitxer indicat"
-#: builders/_epub_base.py:422 builders/html/__init__.py:779
-#: builders/latex/__init__.py:481 builders/texinfo.py:198
-msgid "copying images... "
-msgstr "s'estan copiant les imatges… "
+#: cmd/build.py:265
+msgid "turn warnings into errors"
+msgstr "convertix els avisos en errors"
-#: builders/_epub_base.py:444 builders/latex/__init__.py:496
-#: builders/texinfo.py:215
-#, python-format
-msgid "cannot copy image file %r: %s"
-msgstr "no s'ha pogut copiar el fitxer d'imatge %r: %s"
+#: cmd/build.py:273
+msgid "show full traceback on exception"
+msgstr "mostra la traça completa en excepció"
-#: builders/texinfo.py:222
-msgid "copying Texinfo support files"
-msgstr "s'estan copiant els fitxers de suport de Texinfo"
+#: cmd/build.py:276
+msgid "run Pdb on exception"
+msgstr "executa Pdb en excepció"
-#: builders/texinfo.py:230
-#, python-format
-msgid "error writing file Makefile: %s"
-msgstr "s'ha produït un s'ha produït un error mentre s'escrivia el fitxer Makefile: %s"
+#: cmd/build.py:282
+msgid "raise an exception on warnings"
+msgstr "planteja una excepció sobre els avisos"
-#: builders/_epub_base.py:223
-#, python-format
-msgid "duplicated ToC entry found: %s"
-msgstr "s'ha trobat una entrada ToC duplicada: %s"
+#: cmd/build.py:325
+msgid "cannot combine -a option and filenames"
+msgstr "no es pot combinar l'opció -a i els noms de fitxer"
-#: builders/_epub_base.py:433
+#: cmd/build.py:357
#, python-format
-msgid "cannot read image file %r: copying it instead"
-msgstr "no s'ha pogut llegir el fitxer d'imatge %r: en el seu lloc, es copia"
+msgid "cannot open warning file '%s': %s"
+msgstr "no es pot obrir el fitxer de l'avís «%s»: %s"
-#: builders/_epub_base.py:464
-#, python-format
-msgid "cannot write image file %r: %s"
-msgstr "no s'ha pogut escriure el fitxer d'imatge %r: %s"
+#: cmd/build.py:376
+msgid "-D option argument must be in the form name=value"
+msgstr "l'argument de l'opció «-D» haurà d'estar en la forma «nom=valor»"
-#: builders/_epub_base.py:476
-msgid "Pillow not found - copying image files"
-msgstr "No s'ha trobat el Pillow: es copien els fitxers d'imatge"
+#: cmd/build.py:383
+msgid "-A option argument must be in the form name=value"
+msgstr "l'argument de l'opció -A haurà d'estar en la forma «nom=valor»"
-#: builders/_epub_base.py:511
-msgid "writing mimetype file..."
-msgstr "s'està escrivint un fitxer de tipus MIME…"
+#: cmd/quickstart.py:52
+msgid "automatically insert docstrings from modules"
+msgstr "inserix automàticament les docstring des dels mòduls"
-#: builders/_epub_base.py:520
-msgid "writing META-INF/container.xml file..."
-msgstr "s'està escrivint el fitxer META-INF/container.xml…"
+#: cmd/quickstart.py:53
+msgid "automatically test code snippets in doctest blocks"
+msgstr "prova automàticament els fragments de codi en els blocs doctest"
-#: builders/_epub_base.py:558
-msgid "writing content.opf file..."
-msgstr "s'està escrivint el fitxer content.opf…"
+#: cmd/quickstart.py:54
+msgid "link between Sphinx documentation of different projects"
+msgstr "enllaç entre la documentació de Sphinx de projectes diferents"
-#: builders/_epub_base.py:591
-#, python-format
-msgid "unknown mimetype for %s, ignoring"
-msgstr "tipus MIME desconegut per a %s, s'ignora"
+#: cmd/quickstart.py:55
+msgid "write \"todo\" entries that can be shown or hidden on build"
+msgstr "escriu les entrades «todo» que es poden mostrar o ocultar durant la construcció"
-#: builders/_epub_base.py:745
-msgid "node has an invalid level"
-msgstr "el node té un nivell no vàlid"
+#: cmd/quickstart.py:56
+msgid "checks for documentation coverage"
+msgstr "comprovacions per a la cobertura de la documentació"
-#: builders/_epub_base.py:765
-msgid "writing toc.ncx file..."
-msgstr "s'està escrivint el fitxer toc.ncx…"
+#: cmd/quickstart.py:57
+msgid "include math, rendered as PNG or SVG images"
+msgstr "inclou expressions matemàtiques, mostrades com a imatges PNG o SVG"
-#: builders/_epub_base.py:794
-#, python-format
-msgid "writing %s file..."
-msgstr "s'està escrivint el fitxer %s…"
+#: cmd/quickstart.py:58
+msgid "include math, rendered in the browser by MathJax"
+msgstr "inclou expressions matemàtiques, representades en el navegador per MathJax"
-#: builders/dummy.py:19
-msgid "The dummy builder generates no files."
-msgstr "El constructor fictici no genera cap fitxer."
+#: cmd/quickstart.py:59
+msgid "conditional inclusion of content based on config values"
+msgstr "inclusió condicional de contingut basat en els valors de la configuració"
-#: builders/gettext.py:244
-#, python-format
-msgid "The message catalogs are in %(outdir)s."
-msgstr "Els catàlegs de missatges es troben a %(outdir)s."
+#: cmd/quickstart.py:60
+msgid "include links to the source code of documented Python objects"
+msgstr "inclou els enllaços cap al codi font dels objectes documentats en Python"
-#: builders/gettext.py:266
-#, python-format
-msgid "targets for %d template files"
-msgstr "objectius per a %d fitxers de plantilla"
+#: cmd/quickstart.py:61
+msgid "create .nojekyll file to publish the document on GitHub pages"
+msgstr "crea un fitxer .nojekyll per a publicar el document en les pàgines de GitHub"
-#: builders/gettext.py:271
-msgid "reading templates... "
-msgstr "s'estan llegint les plantilles… "
+#: cmd/quickstart.py:111
+msgid "Please enter a valid path name."
+msgstr "Introduïu un nom de camí vàlid."
-#: builders/gettext.py:307
-msgid "writing message catalogs... "
-msgstr "s'estan escrivint els catàlegs de missatges… "
+#: cmd/quickstart.py:127
+msgid "Please enter some text."
+msgstr "Introduïu algun text."
-#: builders/singlehtml.py:35
+#: cmd/quickstart.py:134
#, python-format
-msgid "The HTML page is in %(outdir)s."
-msgstr "La pàgina HTML es troba a %(outdir)s."
+msgid "Please enter one of %s."
+msgstr "Introduïu un dels %s."
-#: builders/singlehtml.py:171
-msgid "assembling single document"
-msgstr "s'està muntant un únic document"
+#: cmd/quickstart.py:142
+msgid "Please enter either 'y' or 'n'."
+msgstr "Introduïu qualsevol de «y» o «n»."
-#: builders/singlehtml.py:189
-msgid "writing additional files"
-msgstr "s'estan escrivint els fitxers addicionals"
+#: cmd/quickstart.py:148
+msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
+msgstr "Introduïu un sufix de fitxer, p. ex., «.rst» o «.txt»."
-#: builders/linkcheck.py:77
+#: cmd/quickstart.py:230
#, python-format
-msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
-msgstr "Busqueu qualsevol error en l'eixida anterior o en el fitxer %(outdir)s/output.txt"
+msgid "Welcome to the Sphinx %s quickstart utility."
+msgstr "Us donem la benvinguda a la utilitat d'inici ràpid de Sphinx %s."
+
+#: cmd/quickstart.py:235
+msgid ""
+"Please enter values for the following settings (just press Enter to\n"
+"accept a default value, if one is given in brackets)."
+msgstr "Introduïu els valors per a les configuracions següents (només premeu «Retorn»\nper a acceptar un valor predeterminat, si se'n dona un entre parèntesis)."
-#: builders/linkcheck.py:149
+#: cmd/quickstart.py:242
#, python-format
-msgid "broken link: %s (%s)"
-msgstr "enllaç trencat: %s (%s)"
-
-#: builders/linkcheck.py:548
-#, python-format
-msgid "Anchor '%s' not found"
-msgstr "No s'ha trobat l'àncora «%s»"
+msgid "Selected root path: %s"
+msgstr "Camí arrel seleccionat: %s"
-#: builders/linkcheck.py:758
-#, python-format
-msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
-msgstr "No s'ha pogut compilar expressions regulars en linkcheck_allowed_redirects: %r %s"
+#: cmd/quickstart.py:245
+msgid "Enter the root path for documentation."
+msgstr "Introduïu el camí arrel per a la documentació."
-#: builders/text.py:29
-#, python-format
-msgid "The text files are in %(outdir)s."
-msgstr "Els fitxers de text es troben a %(outdir)s."
+#: cmd/quickstart.py:246
+msgid "Root path for the documentation"
+msgstr "Camí arrel per a la documentació"
-#: transforms/i18n.py:227 transforms/i18n.py:302
-#, python-brace-format
-msgid ""
-"inconsistent footnote references in translated message. original: {0}, "
-"translated: {1}"
-msgstr "referències incoherents de nota al peu en el missatge traduït. Original: {0}, traduït: {1}"
+#: cmd/quickstart.py:255
+msgid "Error: an existing conf.py has been found in the selected root path."
+msgstr "S'ha produït un error: ja existix un fitxer conf.py en el camí arrel seleccionat."
-#: transforms/i18n.py:272
-#, python-brace-format
-msgid ""
-"inconsistent references in translated message. original: {0}, translated: "
-"{1}"
-msgstr "referències incoherents en el missatge traduït. Original: {0}, traduït: {1}"
+#: cmd/quickstart.py:260
+msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
+msgstr "«sphinx-quickstart» no sobreescriurà els projectes de Sphinx existents."
-#: transforms/i18n.py:322
-#, python-brace-format
-msgid ""
-"inconsistent citation references in translated message. original: {0}, "
-"translated: {1}"
-msgstr "referències incoherents de citació en el missatge traduït. Original: {0}, traduït: {1}"
+#: cmd/quickstart.py:263
+msgid "Please enter a new root path (or just Enter to exit)"
+msgstr "Introduïu un camí arrel nou (o premeu «Retorn» per a eixir)"
-#: transforms/i18n.py:344
-#, python-brace-format
+#: cmd/quickstart.py:274
msgid ""
-"inconsistent term references in translated message. original: {0}, "
-"translated: {1}"
-msgstr "referències incoherents de terme en el missatge traduït. Original: {0}, traduït: {1}"
-
-#: builders/html/__init__.py:486 builders/latex/__init__.py:199
-#: transforms/__init__.py:129 writers/manpage.py:98 writers/texinfo.py:220
-#, python-format
-msgid "%b %d, %Y"
-msgstr "%-d %b, %Y"
-
-#: transforms/__init__.py:139
-msgid "could not calculate translation progress!"
-msgstr "no s'ha pogut calcular el progrés de la traducció!"
+"You have two options for placing the build directory for Sphinx output.\n"
+"Either, you use a directory \"_build\" within the root path, or you separate\n"
+"\"source\" and \"build\" directories within the root path."
+msgstr "Teniu dues opcions per a col·locar el directori de construcció per a la\neixida de Sphinx. O utilitzeu un directori «_build» dins del camí arrel,\no els directoris separats «source» i «build» dins del camí arrel."
-#: transforms/__init__.py:144
-msgid "no translated elements!"
-msgstr "No hi ha cap element traduït!"
+#: cmd/quickstart.py:280
+msgid "Separate source and build directories (y/n)"
+msgstr "Separa els directoris «source» i «build» (s/n)"
-#: transforms/__init__.py:253
-#, python-format
+#: cmd/quickstart.py:287
msgid ""
-"4 column based index found. It might be a bug of extensions you use: %r"
-msgstr "S'ha trobat un índex basat en 4 columnes. Pot ser un error de les extensions que utilitzeu: %r"
-
-#: transforms/__init__.py:294
-#, python-format
-msgid "Footnote [%s] is not referenced."
-msgstr "La nota al peu [%s] no té una referència."
-
-#: transforms/__init__.py:303
-msgid "Footnote [*] is not referenced."
-msgstr "No es fa referència en la nota al peu [*]."
+"Inside the root directory, two more directories will be created; \"_templates\"\n"
+"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
+"files. You can enter another prefix (such as \".\") to replace the underscore."
+msgstr "Dins del directori arrel, es crearan dos directoris més: «_templates» per a\nles plantilles HTML personalitzades i «_static» per als fulls d'estil\npersonalitzats i altres fitxers estàtics. Podeu introduir un altre prefix\n(com «.») per a substituir el guió baix."
-#: transforms/__init__.py:314
-msgid "Footnote [#] is not referenced."
-msgstr "La nota al peu [núm.] no té una referència."
+#: cmd/quickstart.py:292
+msgid "Name prefix for templates and static dir"
+msgstr "Prefix de nom per als directoris «templates» i «static»"
-#: _cli/__init__.py:73
-msgid "Usage:"
-msgstr "Ús:"
+#: cmd/quickstart.py:298
+msgid ""
+"The project name will occur in several places in the built documentation."
+msgstr "El nom del projecte apareixerà en diversos llocs de la documentació construïda."
-#: _cli/__init__.py:75
-#, python-brace-format
-msgid "{0} [OPTIONS] []"
-msgstr "{0} [OPCIONS] []"
+#: cmd/quickstart.py:301
+msgid "Project name"
+msgstr "Nom del projecte"
-#: _cli/__init__.py:78
-msgid " The Sphinx documentation generator."
-msgstr " El generador de documentació Sphinx."
+#: cmd/quickstart.py:303
+msgid "Author name(s)"
+msgstr "Noms de l'autoria"
-#: _cli/__init__.py:87
-msgid "Commands:"
-msgstr "Ordres:"
+#: cmd/quickstart.py:309
+msgid ""
+"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
+"software. Each version can have multiple releases. For example, for\n"
+"Python the version is something like 2.5 or 3.0, while the release is\n"
+"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
+"just set both to the same value."
+msgstr "Sphinx té la noció d'una «versió» i un «llançament» per al programari.\nCada versió pot tindre múltiples versions. Per exemple, per a Python,\nla versió és una cosa pareixent a 2.5 o 3.0, mentre que el llançament és\ncom 2.5.1 o 3.0a1. Si no necessiteu esta doble estructura, senzillament\nestabliu ambdues amb el mateix valor."
-#: _cli/__init__.py:98
-msgid "Options"
-msgstr "Opcions"
+#: cmd/quickstart.py:316
+msgid "Project version"
+msgstr "Versió del projecte"
-#: _cli/__init__.py:113 _cli/__init__.py:181
-msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
-msgstr "Per a més informació, visiteu https://www.sphinx-doc.org/en/master/man/."
+#: cmd/quickstart.py:318
+msgid "Project release"
+msgstr "Llançament del projecte"
-#: _cli/__init__.py:171
-#, python-brace-format
+#: cmd/quickstart.py:324
msgid ""
-"{0}: error: {1}\n"
-"Run '{0} --help' for information"
-msgstr "{0}: error: {1}\nPer a informació executeu «{0} --help»"
-
-#: _cli/__init__.py:179
-msgid " Manage documentation with Sphinx."
-msgstr " Gestiona la documentació amb Sphinx."
+"If the documents are to be written in a language other than English,\n"
+"you can select a language here by its language code. Sphinx will then\n"
+"translate text that it generates into that language.\n"
+"\n"
+"For a list of supported codes, see\n"
+"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
+msgstr "Si els documents s'han d'escriure en un idioma que no siga l'anglés,\npodeu seleccionar un idioma ací per al vostre codi d'idioma.\nA continuació, Sphinx traduirà el text que es genera en este idioma.\n\nPer a obtindre una llista dels codis admesos, vegeu\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
-#: _cli/__init__.py:191
-msgid "Show the version and exit."
-msgstr "Mostra la versió i ix."
+#: cmd/quickstart.py:332
+msgid "Project language"
+msgstr "Idioma del projecte"
-#: _cli/__init__.py:199
-msgid "Show this message and exit."
-msgstr "Mostra este missatge i ix."
+#: cmd/quickstart.py:340
+msgid ""
+"The file name suffix for source files. Commonly, this is either \".txt\"\n"
+"or \".rst\". Only files with this suffix are considered documents."
+msgstr "El sufix del nom del fitxer per als fitxers d'origen. Normalment, este és\n«.txt» o «.rst». Només els fitxers amb este sufix es consideraran documents."
-#: _cli/__init__.py:203
-msgid "Logging"
-msgstr "Registre"
+#: cmd/quickstart.py:344
+msgid "Source file suffix"
+msgstr "Sufix del fitxer font"
-#: _cli/__init__.py:210
-msgid "Increase verbosity (can be repeated)"
-msgstr "Augmenta la verbositat (es pot repetir)"
+#: cmd/quickstart.py:350
+msgid ""
+"One document is special in that it is considered the top node of the\n"
+"\"contents tree\", that is, it is the root of the hierarchical structure\n"
+"of the documents. Normally, this is \"index\", but if your \"index\"\n"
+"document is a custom template, you can also set this to another filename."
+msgstr "Un document és especial perquè es considera el node superior de l'«arbre de\ncontingut», és a dir, és l'arrel de l'estructura jeràrquica dels documents.\nNormalment, es tracta de l'«index», però si el document «index» és una\nplantilla personalitzada, també podreu establir-la a un altre nom de fitxer."
-#: _cli/__init__.py:218
-msgid "Only print errors and warnings."
-msgstr "Imprimix només els errors i els avisos."
+#: cmd/quickstart.py:357
+msgid "Name of your master document (without suffix)"
+msgstr "Nom del document mestre (sense sufix)"
-#: _cli/__init__.py:225
-msgid "No output at all"
-msgstr "Cap eixida en absolut"
+#: cmd/quickstart.py:368
+#, python-format
+msgid ""
+"Error: the master file %s has already been found in the selected root path."
+msgstr "S'ha produït un error: el fitxer mestre %s ja es troba en el camí arrel seleccionat."
-#: _cli/__init__.py:231
-msgid ""
-msgstr ""
+#: cmd/quickstart.py:374
+msgid "sphinx-quickstart will not overwrite the existing file."
+msgstr "«sphinx-quickstart» no sobreescriurà el fitxer existent."
-#: _cli/__init__.py:263
-msgid "See 'sphinx --help'.\n"
-msgstr "Vegeu «sphinx --help».\n"
+#: cmd/quickstart.py:378
+msgid ""
+"Please enter a new file name, or rename the existing file and press Enter"
+msgstr "Introduïu un nom de fitxer nou o canvieu-ne el nom i premeu «Retorn»"
-#: environment/__init__.py:86
-msgid "new config"
-msgstr "configuració nova"
+#: cmd/quickstart.py:386
+msgid "Indicate which of the following Sphinx extensions should be enabled:"
+msgstr "Indiqueu quines de les extensions següents de Sphinx haurien d'estar habilitades:"
-#: environment/__init__.py:87
-msgid "config changed"
-msgstr "configuració modificada"
+#: cmd/quickstart.py:397
+msgid ""
+"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
+"been deselected."
+msgstr "Nota: «imgmath» i «mathjax» no es poden habilitar alhora. «imgmath» ha sigut desseleccionat."
-#: environment/__init__.py:88
-msgid "extensions changed"
-msgstr "extensions modificades"
+#: cmd/quickstart.py:407
+msgid ""
+"A Makefile and a Windows command file can be generated for you so that you\n"
+"only have to run e.g. `make html' instead of invoking sphinx-build\n"
+"directly."
+msgstr "Es pot generar un fitxer Makefile i un fitxer d'ordres de Windows,\nde manera que només haureu d'executar, p. ex., «make html»\nen lloc d'invocar directament «sphinx-build»."
-#: environment/__init__.py:253
-msgid "build environment version not current"
-msgstr "la versió de l'entorn de compilació no és actual"
+#: cmd/quickstart.py:412
+msgid "Create Makefile? (y/n)"
+msgstr "Voleu crear el Makefile? (s/n)"
-#: environment/__init__.py:255
-msgid "source directory has changed"
-msgstr "el directori d'origen ha sigut modificat"
+#: cmd/quickstart.py:416
+msgid "Create Windows command file? (y/n)"
+msgstr "Voleu crear el fitxer d'ordres de Windows? (s/n)"
-#: environment/__init__.py:325
+#: cmd/quickstart.py:468 ext/apidoc/_generate.py:76
#, python-format
-msgid "The configuration has changed (1 option: %r)"
-msgstr "La configuració ha sigut canviada (1 opció: %r)"
+msgid "Creating file %s."
+msgstr "S'està creant el fitxer %s."
-#: environment/__init__.py:330
+#: cmd/quickstart.py:473 ext/apidoc/_generate.py:73
#, python-format
-msgid "The configuration has changed (%d options: %s)"
-msgstr "La configuració ha sigut canviada (%d opcions: %s)"
+msgid "File %s already exists, skipping."
+msgstr "El fitxer %s ja existix, se salta."
+
+#: cmd/quickstart.py:516
+msgid "Finished: An initial directory structure has been created."
+msgstr "Finalitzat: s'ha creat una estructura inicial del directori."
-#: environment/__init__.py:336
+#: cmd/quickstart.py:520
#, python-format
-msgid "The configuration has changed (%d options: %s, ...)"
-msgstr "La configuració ha sigut canviada (%d opcions: %s, «…»)"
+msgid ""
+"You should now populate your master file %s and create other documentation\n"
+"source files. "
+msgstr "Ara heu de completar el fitxer mestre %s i crear altres fitxers font de documentació. "
-#: environment/__init__.py:379
+#: cmd/quickstart.py:527
msgid ""
-"This environment is incompatible with the selected builder, please choose "
-"another doctree directory."
-msgstr "Este entorn és incompatible amb el constructor seleccionat, trieu un altre directori doctree."
+"Use the Makefile to build the docs, like so:\n"
+" make builder"
+msgstr "Utilitzeu el Makefile per a construir els documents, com seguix:\n make builder"
-#: environment/__init__.py:493
+#: cmd/quickstart.py:531
#, python-format
-msgid "Failed to scan documents in %s: %r"
-msgstr "No s'ha pogut escanejar els documents a %s: %r"
+msgid ""
+"Use the sphinx-build command to build the docs, like so:\n"
+" sphinx-build -b builder %s %s"
+msgstr "Utilitzeu l'ordre «sphinx-build» per a construir els documents, com seguix:\n sphinx-build -b constructor %s %s"
-#: environment/__init__.py:658 ext/intersphinx/_resolve.py:234
-#, python-format
-msgid "Domain %r is not registered"
-msgstr "El domini %r no està registrat"
+#: cmd/quickstart.py:538
+msgid ""
+"where \"builder\" is one of the supported builders, e.g. html, latex or "
+"linkcheck."
+msgstr "on «constructor» és un dels constructors admesos, p. ex., html, latex o linkcheck."
-#: environment/__init__.py:813
-msgid "document isn't included in any toctree"
-msgstr "el document no està inclòs en cap toctree"
+#: cmd/quickstart.py:573
+msgid ""
+"\n"
+"Generate required files for a Sphinx project.\n"
+"\n"
+"sphinx-quickstart is an interactive tool that asks some questions about your\n"
+"project and then generates a complete documentation directory and sample\n"
+"Makefile to be used with sphinx-build.\n"
+msgstr "\nGenereu els fitxers necessaris per a un projecte Sphinx.\n\n«sphinx-quickstart» és una eina interactiva que fa algunes preguntes sobre el\nprojecte i després genera un directori complet de documentació i un\nexemple del fitxer Makefile per a utilitzar-se amb l'ordre «sphinx-build».\n"
-#: environment/__init__.py:859
-msgid "self referenced toctree found. Ignored."
-msgstr "S'ha trobat un toctree autoreferenciat. S'ignora."
+#: cmd/quickstart.py:592
+msgid "quiet mode"
+msgstr "mode silenciós"
-#: environment/__init__.py:889
-#, python-format
-msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
-msgstr "es fa referència al document en múltiples toctree: %s, se selecciona: %s <- %s"
+#: cmd/quickstart.py:602
+msgid "project root"
+msgstr "arrel del projecte"
-#: util/i18n.py:100
-#, python-format
-msgid "reading error: %s, %s"
-msgstr "s'ha produït un s'ha produït un error mentre es llegia: %s, %s"
+#: cmd/quickstart.py:605
+msgid "Structure options"
+msgstr "Opcions de l'estructura"
-#: util/i18n.py:113
-#, python-format
-msgid "writing error: %s, %s"
-msgstr "s'ha produït un s'ha produït un error mentre s'escrivia: %s, %s"
+#: cmd/quickstart.py:611
+msgid "if specified, separate source and build dirs"
+msgstr "Si s'especifica, se separarà el codi font i els directoris de compilació"
-#: util/i18n.py:146
-#, python-format
-msgid "locale_dir %s does not exist"
-msgstr "locale_dir %s no existix"
+#: cmd/quickstart.py:617
+msgid "if specified, create build dir under source dir"
+msgstr "Si s'especifica, es crearà el directori de construcció a dins del directori d'origen"
-#: util/i18n.py:236
-#, python-format
-msgid "Invalid Babel locale: %r."
-msgstr ""
+#: cmd/quickstart.py:623
+msgid "replacement for dot in _templates etc."
+msgstr "substitució per a punts a _templates, etc."
-#: util/i18n.py:245
-#, python-format
-msgid ""
-"Invalid date format. Quote the string by single quote if you want to output "
-"it directly: %s"
-msgstr "Format de data no vàlid. Citeu la cadena amb cometes senzilles si voleu generar-la directament: %s"
+#: cmd/quickstart.py:626
+msgid "Project basic options"
+msgstr "Opcions bàsiques del projecte"
-#: util/docfields.py:103
+#: cmd/quickstart.py:628
+msgid "project name"
+msgstr "nom del projecte"
+
+#: cmd/quickstart.py:631
+msgid "author names"
+msgstr "noms de l'autoria"
+
+#: cmd/quickstart.py:638
+msgid "version of project"
+msgstr "versió del projecte"
+
+#: cmd/quickstart.py:645
+msgid "release of project"
+msgstr "llançament del projecte"
+
+#: cmd/quickstart.py:652
+msgid "document language"
+msgstr "idioma del document"
+
+#: cmd/quickstart.py:655
+msgid "source file suffix"
+msgstr "sufix del fitxer font"
+
+#: cmd/quickstart.py:658
+msgid "master document name"
+msgstr "nom del document mestre"
+
+#: cmd/quickstart.py:661
+msgid "use epub"
+msgstr "utilitza epub"
+
+#: cmd/quickstart.py:664
+msgid "Extension options"
+msgstr "Opcions de l'extensió"
+
+#: cmd/quickstart.py:671
#, python-format
+msgid "enable %s extension"
+msgstr "habilita l'extensió %s"
+
+#: cmd/quickstart.py:678
+msgid "enable arbitrary extensions"
+msgstr "habilita les extensions arbitràries"
+
+#: cmd/quickstart.py:681
+msgid "Makefile and Batchfile creation"
+msgstr "Creeu els fitxers Makefile i de processament per lots"
+
+#: cmd/quickstart.py:687
+msgid "create makefile"
+msgstr "es crea el Makefile"
+
+#: cmd/quickstart.py:693
+msgid "do not create makefile"
+msgstr "no es crea el Makefile"
+
+#: cmd/quickstart.py:700
+msgid "create batchfile"
+msgstr "es crea el fitxer de processament per lots"
+
+#: cmd/quickstart.py:706
+msgid "do not create batchfile"
+msgstr "no es crea el fitxer de processament per lots"
+
+#: cmd/quickstart.py:715
+msgid "use make-mode for Makefile/make.bat"
+msgstr "utilitza el mode make per a Makefile/make.bat"
+
+#: cmd/quickstart.py:718 ext/apidoc/_cli.py:243
+msgid "Project templating"
+msgstr "Plantilles de projecte"
+
+#: cmd/quickstart.py:724 ext/apidoc/_cli.py:249
+msgid "template directory for template files"
+msgstr "directori de plantilles per als fitxers de plantilla"
+
+#: cmd/quickstart.py:731
+msgid "define a template variable"
+msgstr "definix una variable de plantilla"
+
+#: cmd/quickstart.py:767
+msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
+msgstr "s'especifica «quiet», però no s'especifica cap «project» o «author»."
+
+#: cmd/quickstart.py:786
msgid ""
-"Problem in %s domain: field is supposed to use role '%s', but that role is "
-"not in the domain."
-msgstr "Problema en el domini %s: se suposa que el camp utilitza el rol «%s», però no es troba en el domini."
+"Error: specified path is not a directory, or sphinx files already exist."
+msgstr "S'ha produït un error: el camí especificat no és un directori o ja hi ha els fitxers de Sphinx."
-#: util/nodes.py:423
-#, python-format
+#: cmd/quickstart.py:793
msgid ""
-"%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead."
-msgstr "%r està en desús per a les entrades d'índex (des de l'entrada %r). En el seu lloc utilitzeu «pair: %s»."
+"sphinx-quickstart only generate into a empty directory. Please specify a new"
+" root path."
+msgstr "«sphinx-quickstart» només generarà dins d'un directori buit. Especifiqueu un camí arrel nou."
-#: util/nodes.py:490
+#: cmd/quickstart.py:810
#, python-format
-msgid "toctree contains ref to nonexisting file %r"
-msgstr "el toctree conté una referència cap al fitxer %r que no existix"
+msgid "Invalid template variable: %s"
+msgstr "Variable no vàlida de plantilla: %s"
-#: util/nodes.py:706
+#: directives/other.py:119
#, python-format
-msgid "exception while evaluating only directive expression: %s"
-msgstr "excepció mentre només s'avaluava l'expressió directiva: %s"
-
-#: util/display.py:82
-msgid "skipped"
-msgstr "s'omet"
-
-#: util/display.py:87
-msgid "failed"
-msgstr "ha fallat"
+msgid "toctree glob pattern %r didn't match any documents"
+msgstr "El patró global toctree %r no coincidix amb cap document"
-#: util/osutil.py:131
+#: directives/other.py:153 environment/adapters/toctree.py:372
#, python-format
-msgid ""
-"Aborted attempted copy from %s to %s (the destination path has existing "
-"data)."
-msgstr "S'ha interromput l'intent de còpia des de %s a %s (hi ha dades existents en el camí de destinació)."
+msgid "toctree contains reference to excluded document %r"
+msgstr "el toctree conté una referència cap al document exclòs %r"
-#: util/docutils.py:309
+#: directives/other.py:156
#, python-format
-msgid "unknown directive name: %s"
-msgstr ""
+msgid "toctree contains reference to nonexisting document %r"
+msgstr "el toctree conté una referència cap al document %r, el qual no existix"
-#: util/docutils.py:345
+#: directives/other.py:169
#, python-format
-msgid "unknown role name: %s"
-msgstr ""
+msgid "duplicated entry found in toctree: %s"
+msgstr "s'ha trobat una entrada duplicada en el toctree: %s"
+
+#: directives/other.py:203
+msgid "Section author: "
+msgstr "Autoria de la secció:"
+
+#: directives/other.py:205
+msgid "Module author: "
+msgstr "Autoria del mòdul: "
+
+#: directives/other.py:207
+msgid "Code author: "
+msgstr "Autoria del codi: "
+
+#: directives/other.py:209
+msgid "Author: "
+msgstr "Autoria: "
+
+#: directives/other.py:269
+msgid ".. acks content is not a list"
+msgstr "… el contingut dels reconeixements no és una llista"
+
+#: directives/other.py:292
+msgid ".. hlist content is not a list"
+msgstr "… el contingut de l'historial no és una llista"
+
+#: directives/patches.py:70
+msgid ""
+"\":file:\" option for csv-table directive now recognizes an absolute path as"
+" a relative path from source directory. Please update your document."
+msgstr "«:file:» l'opció per a la directiva «csv-table» ara reconeix un camí absolut com a camí relatiu des del directori d'origen. Actualitzeu el vostre document."
-#: util/docutils.py:789
+#: directives/code.py:66
+msgid "non-whitespace stripped by dedent"
+msgstr "cap espai en blanc eliminat en disminuir el sagnat"
+
+#: directives/code.py:87
#, python-format
-msgid "unknown node type: %r"
-msgstr "tipus de node desconegut: %r"
+msgid "Invalid caption: %s"
+msgstr "Subtítol no vàlid: %s"
-#: util/fileutil.py:76
+#: directives/code.py:131 directives/code.py:297 directives/code.py:483
#, python-format
-msgid ""
-"Aborted attempted copy from rendered template %s to %s (the destination path"
-" has existing data)."
-msgstr "S'ha interromput l'intent de còpia des de la plantilla representada %s a %s (hi ha dades existents en el camí de destinació)."
+msgid "line number spec is out of range(1-%d): %r"
+msgstr "l'especificació del número de línia queda fora de l'interval (1-%d): %r"
-#: util/fileutil.py:89
+#: directives/code.py:216
#, python-format
-msgid "Writing evaluated template result to %s"
-msgstr "Escriu el resultat de la plantilla avaluada a %s"
+msgid "Cannot use both \"%s\" and \"%s\" options"
+msgstr "No es poden utilitzar ambdues opcions «%s» i «%s»"
-#: util/rst.py:73
+#: directives/code.py:231
#, python-format
-msgid "default role %s not found"
-msgstr "no s'ha trobat el rol predeterminat %s"
+msgid "Include file '%s' not found or reading it failed"
+msgstr "No s'ha trobat el fitxer d'inclusió «%s» o n'ha fallat la lectura"
-#: util/inventory.py:147
+#: directives/code.py:235
#, python-format
-msgid "inventory <%s> contains duplicate definitions of %s"
-msgstr "l'inventari <%s> conté definicions duplicades de %s"
+msgid ""
+"Encoding %r used for reading included file '%s' seems to be wrong, try "
+"giving an :encoding: option"
+msgstr "La codificació %r emprada per a llegir el fitxer d'inclusió «%s» pareix ser incorrecta, proveu indicant una opció :encoding:"
-#: util/inventory.py:166
+#: directives/code.py:276
#, python-format
-msgid "inventory <%s> contains multiple definitions for %s"
-msgstr "l'inventari <%s> conté múltiples definicions per a %s"
+msgid "Object named %r not found in include file %r"
+msgstr "L'objecte anomenat %r no es troba en el fitxer inclòs %r"
-#: writers/latex.py:1097 writers/manpage.py:259 writers/texinfo.py:663
-msgid "Footnotes"
-msgstr "Notes al peu"
+#: directives/code.py:309
+msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
+msgstr "No podeu utilitzar «lineno-match» amb un conjunt desarticulat de «línies»"
-#: writers/manpage.py:289 writers/text.py:945
+#: directives/code.py:314
#, python-format
-msgid "[image: %s]"
-msgstr "[imatge: %s]"
+msgid "Line spec %r: no lines pulled from include file %r"
+msgstr "Línia específica %r: No hi ha cap línia llançada des del fitxer inclòs %r"
-#: writers/manpage.py:290 writers/text.py:946
-msgid "[image]"
-msgstr "[imatge]"
+#: builders/html/__init__.py:475 builders/latex/__init__.py:196
+#: transforms/__init__.py:134 writers/manpage.py:97 writers/texinfo.py:220
+#, python-format
+msgid "%b %d, %Y"
+msgstr "%-d %b, %Y"
-#: builders/latex/__init__.py:206 domains/std/__init__.py:771
-#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:106
+#: builders/latex/__init__.py:203 domains/std/__init__.py:771
+#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:107
#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
@@ -1745,11 +2293,15 @@ msgstr "[imatge]"
msgid "Index"
msgstr "Índex"
-#: writers/latex.py:743 writers/texinfo.py:646
+#: writers/latex.py:768 writers/texinfo.py:646
msgid ""
"encountered title node not in section, topic, table, admonition or sidebar"
msgstr "el node del títol no s'ha trobat en la secció, tema, taula, advertiment o nota al marge"
+#: writers/latex.py:1118 writers/manpage.py:258 writers/texinfo.py:663
+msgid "Footnotes"
+msgstr "Notes al peu"
+
#: writers/texinfo.py:1217
msgid "caption not inside a figure."
msgstr "el subtítol no es troba dins d'una figura."
@@ -1759,67 +2311,28 @@ msgstr "el subtítol no es troba dins d'una figura."
msgid "unimplemented node type: %r"
msgstr "tipus de node sense implementar: %r"
-#: writers/latex.py:361
+#: writers/manpage.py:288 writers/text.py:971
#, python-format
-msgid "unknown %r toplevel_sectioning for class %r"
-msgstr "%r toplevel_sectioning desconegut per a la classe %r"
+msgid "[image: %s]"
+msgstr "[imatge: %s]"
-#: builders/latex/__init__.py:224 writers/latex.py:411
-#, python-format
-msgid "no Babel option known for language %r"
-msgstr "no es coneix l'opció de Babel per a l'idioma %r"
+#: writers/manpage.py:289 writers/text.py:972
+msgid "[image]"
+msgstr "[imatge]"
-#: writers/latex.py:429
-msgid "too large :maxdepth:, ignored."
-msgstr ":maxdepth: massa gran, s'ignora."
+#: writers/html5.py:96 writers/html5.py:105
+msgid "Link to this definition"
+msgstr "Enllaça amb esta definició"
-#: writers/latex.py:591
+#: writers/html5.py:431
#, python-format
-msgid "template %s not found; loading from legacy %s instead"
-msgstr "no s'ha trobat la plantilla %s. En el seu lloc s'està carregant des del llegat %s"
-
-#: writers/latex.py:707
-msgid "document title is not a single Text node"
-msgstr "el títol del document no és només un node de text"
+msgid "numfig_format is not defined for %s"
+msgstr "numfig_format no s'ha definit per a %s"
-#: writers/html5.py:572 writers/latex.py:1106
+#: writers/html5.py:441
#, python-format
-msgid "unsupported rubric heading level: %s"
-msgstr "nivell de capçalera de rúbrica no compatible: %s"
-
-#: writers/latex.py:1183
-msgid ""
-"both tabularcolumns and :widths: option are given. :widths: is ignored."
-msgstr "s'indiquen tant les columnes tabulars com l'opció «:widths:». S'ignora l'opció «:widths:»."
-
-#: writers/latex.py:1580
-#, python-format
-msgid "dimension unit %s is invalid. Ignored."
-msgstr "la unitat de dimensió %s no és vàlida. S'ignora."
-
-#: writers/latex.py:1939
-#, python-format
-msgid "unknown index entry type %s found"
-msgstr "s'ha trobat el tipus d'entrada %s amb un índex desconegut"
-
-#: domains/math.py:128 writers/latex.py:2495
-#, python-format
-msgid "Invalid math_eqref_format: %r"
-msgstr "math_eqref_format no vàlid: %r"
-
-#: writers/html5.py:96 writers/html5.py:105
-msgid "Link to this definition"
-msgstr "Enllaça amb esta definició"
-
-#: writers/html5.py:431
-#, python-format
-msgid "numfig_format is not defined for %s"
-msgstr "numfig_format no s'ha definit per a %s"
-
-#: writers/html5.py:441
-#, python-format
-msgid "Any IDs not assigned for %s node"
-msgstr "Qualsevol ID no assignat per al node %s"
+msgid "Any IDs not assigned for %s node"
+msgstr "Qualsevol ID no assignat per al node %s"
#: writers/html5.py:496
msgid "Link to this term"
@@ -1833,6 +2346,11 @@ msgstr "Enllaça amb esta capçalera"
msgid "Link to this table"
msgstr "Enllaça amb esta taula"
+#: writers/html5.py:572 writers/latex.py:1127
+#, python-format
+msgid "unsupported rubric heading level: %s"
+msgstr "nivell de capçalera de rúbrica no compatible: %s"
+
#: writers/html5.py:636
msgid "Link to this code"
msgstr "Enllaça amb este codi"
@@ -1849,794 +2367,478 @@ msgstr "Enllaça amb este toctree"
msgid "Could not obtain image size. :scale: option is ignored."
msgstr "No s'ha pogut obtindre la mida de la imatge. S'ignora l'opció «:scale:»."
-#: domains/__init__.py:322
+#: writers/latex.py:386
#, python-format
-msgid "%s %s"
-msgstr "%s %s"
+msgid "unknown %r toplevel_sectioning for class %r"
+msgstr "%r toplevel_sectioning desconegut per a la classe %r"
-#: domains/math.py:73
+#: builders/latex/__init__.py:221 writers/latex.py:436
#, python-format
-msgid "duplicate label of equation %s, other instance in %s"
-msgstr "etiqueta duplicada de l'equació %s, una altra instància a %s"
+msgid "no Babel option known for language %r"
+msgstr "no es coneix l'opció de Babel per a l'idioma %r"
-#: domains/javascript.py:182
-#, python-format
-msgid "%s() (built-in function)"
-msgstr "%s() (funció interna)"
+#: writers/latex.py:454
+msgid "too large :maxdepth:, ignored."
+msgstr ":maxdepth: massa gran, s'ignora."
-#: domains/javascript.py:183 domains/python/__init__.py:287
+#: writers/latex.py:616
#, python-format
-msgid "%s() (%s method)"
-msgstr "%s() (mètode %s)"
+msgid "template %s not found; loading from legacy %s instead"
+msgstr "no s'ha trobat la plantilla %s. En el seu lloc s'està carregant des del llegat %s"
+
+#: writers/latex.py:732
+msgid "document title is not a single Text node"
+msgstr "el títol del document no és només un node de text"
-#: domains/javascript.py:185
+#: writers/latex.py:1198
+msgid ""
+"both tabularcolumns and :widths: option are given. :widths: is ignored."
+msgstr "s'indiquen tant les columnes tabulars com l'opció «:widths:». S'ignora l'opció «:widths:»."
+
+#: writers/latex.py:1228
#, python-format
-msgid "%s() (class)"
-msgstr "%s() (classe)"
+msgid ""
+"colspec %s was given which appears to use tabulary syntax. But this table "
+"can not be rendered as a tabulary; the given colspec will be ignored."
+msgstr "S'ha donat colspec %s, el qual sembla utilitzar la sintaxi tabular. Però esta taula no es pot representar com a tabular, el colspec donat s'ignorarà."
-#: domains/javascript.py:187
+#: writers/latex.py:1615
#, python-format
-msgid "%s (global variable or constant)"
-msgstr "%s (variable global o constant)"
+msgid "dimension unit %s is invalid. Ignored."
+msgstr "la unitat de dimensió %s no és vàlida. S'ignora."
-#: domains/javascript.py:189 domains/python/__init__.py:378
+#: writers/latex.py:1950
#, python-format
-msgid "%s (%s attribute)"
-msgstr "%s (atribut %s)"
+msgid "unknown index entry type %s found"
+msgstr "s'ha trobat el tipus d'entrada %s amb un índex desconegut"
-#: domains/javascript.py:273
-msgid "Arguments"
-msgstr "Arguments"
+#: _cli/__init__.py:73
+msgid "Usage:"
+msgstr "Ús:"
-#: domains/cpp/__init__.py:489 domains/javascript.py:280
-msgid "Throws"
-msgstr "Llançaments"
+#: _cli/__init__.py:75
+#, python-brace-format
+msgid "{0} [OPTIONS] []"
+msgstr "{0} [OPCIONS] []"
-#: domains/c/__init__.py:339 domains/cpp/__init__.py:502
-#: domains/javascript.py:287 domains/python/_object.py:221
-msgid "Returns"
-msgstr "Retorna"
+#: _cli/__init__.py:78
+msgid " The Sphinx documentation generator."
+msgstr " El generador de documentació Sphinx."
-#: domains/c/__init__.py:345 domains/javascript.py:293
-#: domains/python/_object.py:227
-msgid "Return type"
-msgstr "Tipus de retorn"
+#: _cli/__init__.py:87
+msgid "Commands:"
+msgstr "Ordres:"
-#: domains/javascript.py:370
-#, python-format
-msgid "%s (module)"
-msgstr "%s (mòdul)"
+#: _cli/__init__.py:98
+msgid "Options"
+msgstr "Opcions"
-#: domains/c/__init__.py:751 domains/cpp/__init__.py:941
-#: domains/javascript.py:415 domains/python/__init__.py:740
-msgid "function"
-msgstr "funció"
+#: _cli/__init__.py:113 _cli/__init__.py:181
+msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
+msgstr "Per a més informació, visiteu https://www.sphinx-doc.org/en/master/man/."
-#: domains/javascript.py:416 domains/python/__init__.py:744
-msgid "method"
-msgstr "mètode"
+#: _cli/__init__.py:171
+#, python-brace-format
+msgid ""
+"{0}: error: {1}\n"
+"Run '{0} --help' for information"
+msgstr "{0}: error: {1}\nPer a informació executeu «{0} --help»"
-#: domains/cpp/__init__.py:939 domains/javascript.py:417
-#: domains/python/__init__.py:742
-msgid "class"
-msgstr "classe"
+#: _cli/__init__.py:179
+msgid " Manage documentation with Sphinx."
+msgstr " Gestiona la documentació amb Sphinx."
-#: domains/javascript.py:418 domains/python/__init__.py:741
-msgid "data"
-msgstr "dades"
+#: _cli/__init__.py:191
+msgid "Show the version and exit."
+msgstr "Mostra la versió i ix."
-#: domains/javascript.py:419 domains/python/__init__.py:747
-msgid "attribute"
-msgstr "atribut"
+#: _cli/__init__.py:199
+msgid "Show this message and exit."
+msgstr "Mostra este missatge i ix."
-#: domains/javascript.py:420 domains/python/__init__.py:750
-msgid "module"
-msgstr "mòdul"
+#: _cli/__init__.py:203
+msgid "Logging"
+msgstr "Registre"
-#: domains/javascript.py:454
-#, python-format
-msgid "duplicate %s description of %s, other %s in %s"
-msgstr "descripció %s duplicada de %s, una altra %s a %s"
+#: _cli/__init__.py:210
+msgid "Increase verbosity (can be repeated)"
+msgstr "Augmenta la verbositat (es pot repetir)"
-#: domains/changeset.py:26
-#, python-format
-msgid "Added in version %s"
-msgstr "Afegit a la versió %s"
+#: _cli/__init__.py:218
+msgid "Only print errors and warnings."
+msgstr "Imprimix només els errors i els avisos."
-#: domains/changeset.py:27
-#, python-format
-msgid "Changed in version %s"
-msgstr "Canviat a la versió %s"
+#: _cli/__init__.py:225
+msgid "No output at all"
+msgstr "Cap eixida en absolut"
-#: domains/changeset.py:28
-#, python-format
-msgid "Deprecated since version %s"
-msgstr "Obsolet des de la versió %s"
+#: _cli/__init__.py:231
+msgid ""
+msgstr ""
-#: domains/changeset.py:29
-#, python-format
-msgid "Removed in version %s"
-msgstr "S'ha eliminat en la versió %s"
+#: _cli/__init__.py:263
+msgid "See 'sphinx --help'.\n"
+msgstr "Vegeu «sphinx --help».\n"
-#: domains/rst.py:131 domains/rst.py:190
-#, python-format
-msgid "%s (directive)"
-msgstr "%s (directiva)"
+#: transforms/i18n.py:230 transforms/i18n.py:305
+#, python-brace-format
+msgid ""
+"inconsistent footnote references in translated message. original: {0}, "
+"translated: {1}"
+msgstr "referències incoherents de nota al peu en el missatge traduït. Original: {0}, traduït: {1}"
-#: domains/rst.py:191 domains/rst.py:202
-#, python-format
-msgid ":%s: (directive option)"
-msgstr ":%s: (opció de la directiva)"
+#: transforms/i18n.py:275
+#, python-brace-format
+msgid ""
+"inconsistent references in translated message. original: {0}, translated: "
+"{1}"
+msgstr "referències incoherents en el missatge traduït. Original: {0}, traduït: {1}"
-#: domains/rst.py:224
-#, python-format
-msgid "%s (role)"
-msgstr "%s (rol)"
+#: transforms/i18n.py:325
+#, python-brace-format
+msgid ""
+"inconsistent citation references in translated message. original: {0}, "
+"translated: {1}"
+msgstr "referències incoherents de citació en el missatge traduït. Original: {0}, traduït: {1}"
-#: domains/rst.py:234
-msgid "directive"
-msgstr "directiva"
+#: transforms/i18n.py:347
+#, python-brace-format
+msgid ""
+"inconsistent term references in translated message. original: {0}, "
+"translated: {1}"
+msgstr "referències incoherents de terme en el missatge traduït. Original: {0}, traduït: {1}"
-#: domains/rst.py:235
-msgid "directive-option"
-msgstr "opció_de_la_directiva"
+#: transforms/__init__.py:144
+msgid "could not calculate translation progress!"
+msgstr "no s'ha pogut calcular el progrés de la traducció!"
-#: domains/rst.py:236
-msgid "role"
-msgstr "rol"
+#: transforms/__init__.py:149
+msgid "no translated elements!"
+msgstr "No hi ha cap element traduït!"
-#: domains/rst.py:262
+#: transforms/__init__.py:258
#, python-format
-msgid "duplicate description of %s %s, other instance in %s"
-msgstr "descripció duplicada del %s %s, una altra instància a %s"
+msgid ""
+"4 column based index found. It might be a bug of extensions you use: %r"
+msgstr "S'ha trobat un índex basat en 4 columnes. Pot ser un error de les extensions que utilitzeu: %r"
-#: domains/citation.py:75
+#: transforms/__init__.py:299
#, python-format
-msgid "duplicate citation %s, other instance in %s"
-msgstr "citació duplicada %s, una altra instància a %s"
+msgid "Footnote [%s] is not referenced."
+msgstr "La nota al peu [%s] no té una referència."
-#: domains/citation.py:92
-#, python-format
-msgid "Citation [%s] is not referenced."
-msgstr "No es fa referència en la citació [%s]."
+#: transforms/__init__.py:308
+msgid "Footnote [*] is not referenced."
+msgstr "No es fa referència en la nota al peu [*]."
-#: locale/__init__.py:228
-msgid "Attention"
-msgstr "Atenció"
+#: transforms/__init__.py:319
+msgid "Footnote [#] is not referenced."
+msgstr "La nota al peu [núm.] no té una referència."
-#: locale/__init__.py:229
-msgid "Caution"
-msgstr "Compte"
+#: util/inventory.py:147
+#, python-format
+msgid "inventory <%s> contains duplicate definitions of %s"
+msgstr "l'inventari <%s> conté definicions duplicades de %s"
-#: locale/__init__.py:230
-msgid "Danger"
-msgstr "Perill"
+#: util/inventory.py:166
+#, python-format
+msgid "inventory <%s> contains multiple definitions for %s"
+msgstr "l'inventari <%s> conté múltiples definicions per a %s"
-#: locale/__init__.py:231
-msgid "Error"
-msgstr "S'ha produït un error"
+#: util/i18n.py:100
+#, python-format
+msgid "reading error: %s, %s"
+msgstr "s'ha produït un error mentre es llegia: %s, %s"
-#: locale/__init__.py:232
-msgid "Hint"
-msgstr "Suggeriment"
+#: util/i18n.py:113
+#, python-format
+msgid "writing error: %s, %s"
+msgstr "s'ha produït un error mentre s'escrivia: %s, %s"
-#: locale/__init__.py:233
-msgid "Important"
-msgstr "Important"
-
-#: locale/__init__.py:234
-msgid "Note"
-msgstr "Nota"
-
-#: locale/__init__.py:235
-msgid "See also"
-msgstr "Vegeu també"
-
-#: locale/__init__.py:236
-msgid "Tip"
-msgstr "Truc"
-
-#: locale/__init__.py:237
-msgid "Warning"
-msgstr "Avís"
-
-#: cmd/quickstart.py:52
-msgid "automatically insert docstrings from modules"
-msgstr "inserix automàticament les docstring des dels mòduls"
-
-#: cmd/quickstart.py:53
-msgid "automatically test code snippets in doctest blocks"
-msgstr "prova automàticament els fragments de codi en els blocs doctest"
-
-#: cmd/quickstart.py:54
-msgid "link between Sphinx documentation of different projects"
-msgstr "enllaç entre la documentació de Sphinx de projectes diferents"
-
-#: cmd/quickstart.py:55
-msgid "write \"todo\" entries that can be shown or hidden on build"
-msgstr "escriu les entrades «todo» que es poden mostrar o ocultar durant la construcció"
-
-#: cmd/quickstart.py:56
-msgid "checks for documentation coverage"
-msgstr "comprovacions per a la cobertura de la documentació"
-
-#: cmd/quickstart.py:57
-msgid "include math, rendered as PNG or SVG images"
-msgstr "inclou expressions matemàtiques, mostrades com a imatges PNG o SVG"
-
-#: cmd/quickstart.py:58
-msgid "include math, rendered in the browser by MathJax"
-msgstr "inclou expressions matemàtiques, representades en el navegador per MathJax"
-
-#: cmd/quickstart.py:59
-msgid "conditional inclusion of content based on config values"
-msgstr "inclusió condicional de contingut basat en els valors de la configuració"
-
-#: cmd/quickstart.py:60
-msgid "include links to the source code of documented Python objects"
-msgstr "inclou els enllaços cap al codi font dels objectes documentats en Python"
-
-#: cmd/quickstart.py:61
-msgid "create .nojekyll file to publish the document on GitHub pages"
-msgstr "crea un fitxer .nojekyll per a publicar el document en les pàgines de GitHub"
-
-#: cmd/quickstart.py:110
-msgid "Please enter a valid path name."
-msgstr "Introduïu un nom de camí vàlid."
-
-#: cmd/quickstart.py:126
-msgid "Please enter some text."
-msgstr "Introduïu algun text."
-
-#: cmd/quickstart.py:133
+#: util/i18n.py:146
#, python-format
-msgid "Please enter one of %s."
-msgstr "Introduïu un dels %s."
-
-#: cmd/quickstart.py:141
-msgid "Please enter either 'y' or 'n'."
-msgstr "Introduïu qualsevol de «y» o «n»."
-
-#: cmd/quickstart.py:147
-msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
-msgstr "Introduïu un sufix de fitxer, p. ex., «.rst» o «.txt»."
+msgid "locale_dir %s does not exist"
+msgstr "locale_dir %s no existix"
-#: cmd/quickstart.py:229
+#: util/i18n.py:244
#, python-format
-msgid "Welcome to the Sphinx %s quickstart utility."
-msgstr "Us donem la benvinguda a la utilitat d'inici ràpid de Sphinx %s."
-
-#: cmd/quickstart.py:234
-msgid ""
-"Please enter values for the following settings (just press Enter to\n"
-"accept a default value, if one is given in brackets)."
-msgstr "Introduïu els valors per a les configuracions següents (només premeu «Retorn»\nper a acceptar un valor predeterminat, si se'n dona un entre parèntesis)."
+msgid "Invalid Babel locale: %r."
+msgstr "La configuració regional «Babel» no és vàlida: %r."
-#: cmd/quickstart.py:241
+#: util/i18n.py:253
#, python-format
-msgid "Selected root path: %s"
-msgstr "Camí arrel seleccionat: %s"
-
-#: cmd/quickstart.py:244
-msgid "Enter the root path for documentation."
-msgstr "Introduïu el camí arrel per a la documentació."
-
-#: cmd/quickstart.py:245
-msgid "Root path for the documentation"
-msgstr "Camí arrel per a la documentació"
-
-#: cmd/quickstart.py:254
-msgid "Error: an existing conf.py has been found in the selected root path."
-msgstr "S'ha produït un error: ja existix un fitxer conf.py en el camí arrel seleccionat."
-
-#: cmd/quickstart.py:259
-msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
-msgstr "«sphinx-quickstart» no sobreescriurà els projectes de Sphinx existents."
-
-#: cmd/quickstart.py:262
-msgid "Please enter a new root path (or just Enter to exit)"
-msgstr "Introduïu un camí arrel nou (o premeu «Retorn» per a eixir)"
-
-#: cmd/quickstart.py:273
-msgid ""
-"You have two options for placing the build directory for Sphinx output.\n"
-"Either, you use a directory \"_build\" within the root path, or you separate\n"
-"\"source\" and \"build\" directories within the root path."
-msgstr "Teniu dues opcions per a col·locar el directori de construcció per a la\neixida de Sphinx. O utilitzeu un directori «_build» dins del camí arrel,\no els directoris separats «source» i «build» dins del camí arrel."
-
-#: cmd/quickstart.py:279
-msgid "Separate source and build directories (y/n)"
-msgstr "Separa els directoris «source» i «build» (s/n)"
-
-#: cmd/quickstart.py:286
-msgid ""
-"Inside the root directory, two more directories will be created; \"_templates\"\n"
-"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
-"files. You can enter another prefix (such as \".\") to replace the underscore."
-msgstr "Dins del directori arrel, es crearan dos directoris més: «_templates» per a\nles plantilles HTML personalitzades i «_static» per als fulls d'estil\npersonalitzats i altres fitxers estàtics. Podeu introduir un altre prefix\n(com «.») per a substituir el guió baix."
-
-#: cmd/quickstart.py:291
-msgid "Name prefix for templates and static dir"
-msgstr "Prefix de nom per als directoris «templates» i «static»"
-
-#: cmd/quickstart.py:297
msgid ""
-"The project name will occur in several places in the built documentation."
-msgstr "El nom del projecte apareixerà en diversos llocs de la documentació construïda."
-
-#: cmd/quickstart.py:300
-msgid "Project name"
-msgstr "Nom del projecte"
-
-#: cmd/quickstart.py:302
-msgid "Author name(s)"
-msgstr "Noms de l'autoria"
-
-#: cmd/quickstart.py:308
-msgid ""
-"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
-"software. Each version can have multiple releases. For example, for\n"
-"Python the version is something like 2.5 or 3.0, while the release is\n"
-"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
-"just set both to the same value."
-msgstr "Sphinx té la noció d'una «versió» i un «llançament» per al programari.\nCada versió pot tindre múltiples versions. Per exemple, per a Python,\nla versió és una cosa pareixent a 2.5 o 3.0, mentre que el llançament és\ncom 2.5.1 o 3.0a1. Si no necessiteu esta doble estructura, senzillament\nestabliu ambdues amb el mateix valor."
-
-#: cmd/quickstart.py:315
-msgid "Project version"
-msgstr "Versió del projecte"
-
-#: cmd/quickstart.py:317
-msgid "Project release"
-msgstr "Llançament del projecte"
-
-#: cmd/quickstart.py:323
-msgid ""
-"If the documents are to be written in a language other than English,\n"
-"you can select a language here by its language code. Sphinx will then\n"
-"translate text that it generates into that language.\n"
-"\n"
-"For a list of supported codes, see\n"
-"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
-msgstr "Si els documents s'han d'escriure en un idioma que no siga l'anglés,\npodeu seleccionar un idioma ací per al vostre codi d'idioma.\nA continuació, Sphinx traduirà el text que es genera en este idioma.\n\nPer a obtindre una llista dels codis admesos, vegeu\nhttps://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
-
-#: cmd/quickstart.py:331
-msgid "Project language"
-msgstr "Idioma del projecte"
-
-#: cmd/quickstart.py:339
-msgid ""
-"The file name suffix for source files. Commonly, this is either \".txt\"\n"
-"or \".rst\". Only files with this suffix are considered documents."
-msgstr "El sufix del nom del fitxer per als fitxers d'origen. Normalment, este és\n«.txt» o «.rst». Només els fitxers amb este sufix es consideraran documents."
-
-#: cmd/quickstart.py:343
-msgid "Source file suffix"
-msgstr "Sufix del fitxer font"
-
-#: cmd/quickstart.py:349
-msgid ""
-"One document is special in that it is considered the top node of the\n"
-"\"contents tree\", that is, it is the root of the hierarchical structure\n"
-"of the documents. Normally, this is \"index\", but if your \"index\"\n"
-"document is a custom template, you can also set this to another filename."
-msgstr "Un document és especial perquè es considera el node superior de l'«arbre de\ncontingut», és a dir, és l'arrel de l'estructura jeràrquica dels documents.\nNormalment, es tracta de l'«index», però si el document «index» és una\nplantilla personalitzada, també podreu establir-la a un altre nom de fitxer."
-
-#: cmd/quickstart.py:356
-msgid "Name of your master document (without suffix)"
-msgstr "Nom del document mestre (sense sufix)"
+"Invalid date format. Quote the string by single quote if you want to output "
+"it directly: %s"
+msgstr "Format de data no vàlid. Citeu la cadena amb cometes senzilles si voleu generar-la directament: %s"
-#: cmd/quickstart.py:367
+#: util/osutil.py:131
#, python-format
msgid ""
-"Error: the master file %s has already been found in the selected root path."
-msgstr "S'ha produït un error: el fitxer mestre %s ja es troba en el camí arrel seleccionat."
-
-#: cmd/quickstart.py:373
-msgid "sphinx-quickstart will not overwrite the existing file."
-msgstr "«sphinx-quickstart» no sobreescriurà el fitxer existent."
-
-#: cmd/quickstart.py:377
-msgid ""
-"Please enter a new file name, or rename the existing file and press Enter"
-msgstr "Introduïu un nom de fitxer nou o canvieu-ne el nom i premeu «Retorn»"
-
-#: cmd/quickstart.py:385
-msgid "Indicate which of the following Sphinx extensions should be enabled:"
-msgstr "Indiqueu quines de les extensions següents de Sphinx haurien d'estar habilitades:"
-
-#: cmd/quickstart.py:396
-msgid ""
-"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
-"been deselected."
-msgstr "Nota: «imgmath» i «mathjax» no es poden habilitar alhora. «imgmath» ha sigut desseleccionat."
-
-#: cmd/quickstart.py:406
-msgid ""
-"A Makefile and a Windows command file can be generated for you so that you\n"
-"only have to run e.g. `make html' instead of invoking sphinx-build\n"
-"directly."
-msgstr "Es pot generar un fitxer Makefile i un fitxer d'ordres de Windows,\nde manera que només haureu d'executar, p. ex., «make html»\nen lloc d'invocar directament «sphinx-build»."
+"Aborted attempted copy from %s to %s (the destination path has existing "
+"data)."
+msgstr "S'ha interromput l'intent de còpia des de %s a %s (hi ha dades existents en el camí de destinació)."
-#: cmd/quickstart.py:411
-msgid "Create Makefile? (y/n)"
-msgstr "Voleu crear el Makefile? (s/n)"
+#: util/display.py:82
+msgid "skipped"
+msgstr "s'omet"
-#: cmd/quickstart.py:415
-msgid "Create Windows command file? (y/n)"
-msgstr "Voleu crear el fitxer d'ordres de Windows? (s/n)"
+#: util/display.py:87
+msgid "failed"
+msgstr "ha fallat"
-#: cmd/quickstart.py:467 ext/apidoc/_generate.py:76
+#: util/docutils.py:325
#, python-format
-msgid "Creating file %s."
-msgstr "S'està creant el fitxer %s."
+msgid "unknown directive name: %s"
+msgstr "nom desconegut de la directiva: %s"
-#: cmd/quickstart.py:472 ext/apidoc/_generate.py:73
+#: util/docutils.py:361
#, python-format
-msgid "File %s already exists, skipping."
-msgstr "El fitxer %s ja existix, se salta."
-
-#: cmd/quickstart.py:515
-msgid "Finished: An initial directory structure has been created."
-msgstr "Finalitzat: s'ha creat una estructura inicial del directori."
+msgid "unknown role name: %s"
+msgstr "nom desconegut del rol: %s"
-#: cmd/quickstart.py:519
+#: util/docutils.py:805
#, python-format
-msgid ""
-"You should now populate your master file %s and create other documentation\n"
-"source files. "
-msgstr "Ara heu de completar el fitxer mestre %s i crear altres fitxers font de documentació. "
-
-#: cmd/quickstart.py:526
-msgid ""
-"Use the Makefile to build the docs, like so:\n"
-" make builder"
-msgstr "Utilitzeu el Makefile per a construir els documents, com seguix:\n make builder"
+msgid "unknown node type: %r"
+msgstr "tipus de node desconegut: %r"
-#: cmd/quickstart.py:530
+#: util/fileutil.py:76
#, python-format
msgid ""
-"Use the sphinx-build command to build the docs, like so:\n"
-" sphinx-build -b builder %s %s"
-msgstr "Utilitzeu l'ordre «sphinx-build» per a construir els documents, com seguix:\n sphinx-build -b constructor %s %s"
-
-#: cmd/quickstart.py:537
-msgid ""
-"where \"builder\" is one of the supported builders, e.g. html, latex or "
-"linkcheck."
-msgstr "on «constructor» és un dels constructors admesos, p. ex., html, latex o linkcheck."
-
-#: cmd/quickstart.py:572
-msgid ""
-"\n"
-"Generate required files for a Sphinx project.\n"
-"\n"
-"sphinx-quickstart is an interactive tool that asks some questions about your\n"
-"project and then generates a complete documentation directory and sample\n"
-"Makefile to be used with sphinx-build.\n"
-msgstr "\nGenereu els fitxers necessaris per a un projecte Sphinx.\n\n«sphinx-quickstart» és una eina interactiva que fa algunes preguntes sobre el\nprojecte i després genera un directori complet de documentació i un\nexemple del fitxer Makefile per a utilitzar-se amb l'ordre «sphinx-build».\n"
-
-#: cmd/build.py:73 cmd/quickstart.py:581 ext/apidoc/_cli.py:27
-#: ext/autosummary/generate.py:835
-msgid "For more information, visit ."
-msgstr "Per a més informació, visiteu ."
-
-#: cmd/quickstart.py:591
-msgid "quiet mode"
-msgstr "mode silenciós"
-
-#: cmd/quickstart.py:601
-msgid "project root"
-msgstr "arrel del projecte"
-
-#: cmd/quickstart.py:604
-msgid "Structure options"
-msgstr "Opcions de l'estructura"
-
-#: cmd/quickstart.py:610
-msgid "if specified, separate source and build dirs"
-msgstr "Si s'especifica, se separarà el codi font i els directoris de compilació"
-
-#: cmd/quickstart.py:616
-msgid "if specified, create build dir under source dir"
-msgstr "Si s'especifica, es crearà el directori de construcció a dins del directori d'origen"
-
-#: cmd/quickstart.py:622
-msgid "replacement for dot in _templates etc."
-msgstr "substitució per a punts a _templates, etc."
-
-#: cmd/quickstart.py:625
-msgid "Project basic options"
-msgstr "Opcions bàsiques del projecte"
-
-#: cmd/quickstart.py:627
-msgid "project name"
-msgstr "nom del projecte"
-
-#: cmd/quickstart.py:630
-msgid "author names"
-msgstr "noms de l'autoria"
-
-#: cmd/quickstart.py:637
-msgid "version of project"
-msgstr "versió del projecte"
-
-#: cmd/quickstart.py:644
-msgid "release of project"
-msgstr "llançament del projecte"
-
-#: cmd/quickstart.py:651
-msgid "document language"
-msgstr "idioma del document"
-
-#: cmd/quickstart.py:654
-msgid "source file suffix"
-msgstr "sufix del fitxer font"
-
-#: cmd/quickstart.py:657
-msgid "master document name"
-msgstr "nom del document mestre"
-
-#: cmd/quickstart.py:660
-msgid "use epub"
-msgstr "utilitza epub"
-
-#: cmd/quickstart.py:663
-msgid "Extension options"
-msgstr "Opcions de l'extensió"
+"Aborted attempted copy from rendered template %s to %s (the destination path"
+" has existing data)."
+msgstr "S'ha interromput l'intent de còpia des de la plantilla representada %s a %s (hi ha dades existents en el camí de destinació)."
-#: cmd/quickstart.py:670
+#: util/fileutil.py:89
#, python-format
-msgid "enable %s extension"
-msgstr "habilita l'extensió %s"
-
-#: cmd/quickstart.py:677
-msgid "enable arbitrary extensions"
-msgstr "habilita les extensions arbitràries"
-
-#: cmd/quickstart.py:680
-msgid "Makefile and Batchfile creation"
-msgstr "Creeu els fitxers Makefile i de processament per lots"
-
-#: cmd/quickstart.py:686
-msgid "create makefile"
-msgstr "es crea el Makefile"
-
-#: cmd/quickstart.py:692
-msgid "do not create makefile"
-msgstr "no es crea el Makefile"
-
-#: cmd/quickstart.py:699
-msgid "create batchfile"
-msgstr "es crea el fitxer de processament per lots"
-
-#: cmd/quickstart.py:705
-msgid "do not create batchfile"
-msgstr "no es crea el fitxer de processament per lots"
-
-#: cmd/quickstart.py:714
-msgid "use make-mode for Makefile/make.bat"
-msgstr "utilitza el mode make per a Makefile/make.bat"
-
-#: cmd/quickstart.py:717 ext/apidoc/_cli.py:243
-msgid "Project templating"
-msgstr "Plantilles de projecte"
-
-#: cmd/quickstart.py:723 ext/apidoc/_cli.py:249
-msgid "template directory for template files"
-msgstr "directori de plantilles per als fitxers de plantilla"
-
-#: cmd/quickstart.py:730
-msgid "define a template variable"
-msgstr "definix una variable de plantilla"
-
-#: cmd/quickstart.py:766
-msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
-msgstr "s'especifica «quiet», però no s'especifica cap «project» o «author»."
-
-#: cmd/quickstart.py:785
-msgid ""
-"Error: specified path is not a directory, or sphinx files already exist."
-msgstr "S'ha produït un error: el camí especificat no és un directori o ja hi ha els fitxers de Sphinx."
-
-#: cmd/quickstart.py:792
-msgid ""
-"sphinx-quickstart only generate into a empty directory. Please specify a new"
-" root path."
-msgstr "«sphinx-quickstart» només generarà dins d'un directori buit. Especifiqueu un camí arrel nou."
+msgid "Writing evaluated template result to %s"
+msgstr "Escriu el resultat de la plantilla avaluada a %s"
-#: cmd/quickstart.py:809
+#: util/docfields.py:103
#, python-format
-msgid "Invalid template variable: %s"
-msgstr "Variable no vàlida de plantilla: %s"
-
-#: cmd/build.py:64
-msgid "job number should be a positive number"
-msgstr "el número de treball hauria de ser un nombre positiu"
-
-#: cmd/build.py:74
-msgid ""
-"\n"
-"Generate documentation from source files.\n"
-"\n"
-"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
-"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
-"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
-"including 'conf.py'\n"
-"\n"
-"sphinx-build can create documentation in different formats. A format is\n"
-"selected by specifying the builder name on the command line; it defaults to\n"
-"HTML. Builders can also perform other tasks related to documentation\n"
-"processing.\n"
-"\n"
-"By default, everything that is outdated is built. Output only for selected\n"
-"files can be built by specifying individual filenames.\n"
-msgstr "\nGenerar la documentació a partir dels fitxers font.\n\nL'eina «sphinx-build» generarà la documentació a partir dels fitxers\na SOURCEDIR i els situarà a OUTPUTDIR. Busqueu el «conf.py» en el\nSOURCEDIR per als paràmetres de configuració. L'eina «sphinx-quickstart» es pot utilitzar per a generar fitxers de plantilla, inclòs el «conf.py».\n\nL'eina «sphinx-build» pot crear documentació en formats diferents. A la\nlínia d'ordres se selecciona un format que especifica el nom del constructor.\nDe manera predeterminada és HTML. Els constructors també poden dur a terme\naltres tasques relacionades amb el processament de la documentació.\n\nDe manera predeterminada, es construïx tot el que està desactualitzat. Es pot\ngenerar l'eixida només per als fitxers seleccionats especificant noms de fitxer\nindividuals.\n"
-
-#: cmd/build.py:100
-msgid "path to documentation source files"
-msgstr "camí cap als fitxers font de la documentació"
-
-#: cmd/build.py:103
-msgid "path to output directory"
-msgstr "camí cap al directori d'eixida"
-
-#: cmd/build.py:109
msgid ""
-"(optional) a list of specific files to rebuild. Ignored if --write-all is "
-"specified"
-msgstr "(opcional) una llista de fitxers específics que s'han de reconstruir. S'ignorarà si s'especifica «--write-all»"
-
-#: cmd/build.py:114
-msgid "general options"
-msgstr "opcions generals"
+"Problem in %s domain: field is supposed to use role '%s', but that role is "
+"not in the domain."
+msgstr "Problema en el domini %s: se suposa que el camp utilitza el rol «%s», però no es troba en el domini."
-#: cmd/build.py:121
-msgid "builder to use (default: 'html')"
-msgstr "constructor que s'utilitzarà (predeterminat: «html»)"
+#: util/rst.py:73
+#, python-format
+msgid "default role %s not found"
+msgstr "no s'ha trobat el rol predeterminat %s"
-#: cmd/build.py:131
+#: util/nodes.py:462
+#, python-format
msgid ""
-"run in parallel with N processes, when possible. 'auto' uses the number of "
-"CPU cores"
-msgstr "executa en paral·lel amb N processos, quan siga possible. «auto» uxa el nombre de nuclis de la CPU"
-
-#: cmd/build.py:140
-msgid "write all files (default: only write new and changed files)"
-msgstr "escriu tots els fitxers (predeterminat: només escriu els fitxers nous i els que han canviat)"
+"%r is no longer supported for index entries (from entry %r). Use 'pair: %s' "
+"instead."
+msgstr ""
-#: cmd/build.py:147
-msgid "don't use a saved environment, always read all files"
-msgstr "no utilitzar un entorn guardat, llig sempre tots els fitxers"
+#: util/nodes.py:523
+#, python-format
+msgid "toctree contains ref to nonexisting file %r"
+msgstr "el toctree conté una referència cap al fitxer %r que no existix"
-#: cmd/build.py:150
-msgid "path options"
-msgstr "opcions de camí"
+#: util/nodes.py:739
+#, python-format
+msgid "exception while evaluating only directive expression: %s"
+msgstr "excepció mentre només s'avaluava l'expressió directiva: %s"
-#: cmd/build.py:157
-msgid ""
-"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
-msgstr "directori per als fitxers doctree i d'entorn (predeterminat: OUTPUT_DIR/.doctrees)"
+#: templates/latex/longtable.tex.jinja:52
+#: templates/latex/sphinxmessages.sty.jinja:8
+msgid "continued from previous page"
+msgstr "ve de la pàgina anterior"
-#: cmd/build.py:166
-msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
-msgstr "directori per al fitxer de configuració (conf.py) (predeterminat: SOURCE_DIR)"
+#: templates/latex/longtable.tex.jinja:63
+#: templates/latex/sphinxmessages.sty.jinja:9
+msgid "continues on next page"
+msgstr "continua en la pàgina següent"
-#: cmd/build.py:175
-msgid "use no configuration file, only use settings from -D options"
-msgstr "no utilitza cap fitxer de configuració, només utilitza la configuració de les opcions de «-D»"
+#: templates/latex/sphinxmessages.sty.jinja:10
+msgid "Non-alphabetical"
+msgstr "No alfabètic"
-#: cmd/build.py:184
-msgid "override a setting in configuration file"
-msgstr "superposa una configuració en el fitxer de configuració"
+#: environment/adapters/indexentries.py:267
+#: templates/latex/sphinxmessages.sty.jinja:11
+msgid "Symbols"
+msgstr "Símbols"
-#: cmd/build.py:193
-msgid "pass a value into HTML templates"
-msgstr "passa un valor a dins de les plantilles HTML"
+#: templates/latex/sphinxmessages.sty.jinja:12
+msgid "Numbers"
+msgstr "Números"
-#: cmd/build.py:202
-msgid "define tag: include \"only\" blocks with TAG"
-msgstr "definix l'etiqueta: inclou blocs «only» amb TAG"
+#: templates/latex/sphinxmessages.sty.jinja:13
+msgid "page"
+msgstr "pàgina"
-#: cmd/build.py:209
-msgid "nitpicky mode: warn about all missing references"
-msgstr "mode primmirat: avisa sobre totes les referències que falten"
+#: builders/latex/__init__.py:206 templates/latex/latex.tex.jinja:92
+msgid "Release"
+msgstr "Versió"
-#: cmd/build.py:212
-msgid "console output options"
-msgstr "opcions d'eixida de la consola"
+#: transforms/post_transforms/images.py:79
+#, python-format
+msgid "Could not fetch remote image: %s [%s]"
+msgstr "No s'ha pogut recuperar la imatge remota: %s [%s]"
-#: cmd/build.py:219
-msgid "increase verbosity (can be repeated)"
-msgstr "augmenta la loquacitat (es pot repetir)"
+#: transforms/post_transforms/images.py:96
+#, python-format
+msgid "Could not fetch remote image: %s [%d]"
+msgstr "No s'ha pogut recuperar la imatge remota: %s [%d]"
-#: cmd/build.py:226 ext/apidoc/_cli.py:66
-msgid "no output on stdout, just warnings on stderr"
-msgstr "sense eixida cap a l'eixida estàndard, només avisos a l'eixida d'error estàndard"
+#: transforms/post_transforms/images.py:143
+#, python-format
+msgid "Unknown image format: %s..."
+msgstr "Format d'imatge desconegut: %s…"
-#: cmd/build.py:233
-msgid "no output at all, not even warnings"
-msgstr "sense eixida, ni tan sols els avisos"
+#: transforms/post_transforms/__init__.py:88
+msgid ""
+"Could not determine the fallback text for the cross-reference. Might be a "
+"bug."
+msgstr "No s'ha pogut determinar el text alternatiu per a la referència creuada. Podria ser un error."
-#: cmd/build.py:241
-msgid "do emit colored output (default: auto-detect)"
-msgstr "emet una eixida amb colors (predeterminada: detecció automàtica)"
+#: transforms/post_transforms/__init__.py:233
+#, python-format
+msgid "more than one target found for 'any' cross-reference %r: could be %s"
+msgstr "s'ha trobat més d'una destinació per a «any» en la referència creuada %r: podria ser %s"
-#: cmd/build.py:249
-msgid "do not emit colored output (default: auto-detect)"
-msgstr "no emetre una eixida amb colors (predeterminada: detecció automàtica)"
+#: transforms/post_transforms/__init__.py:291
+#, python-format
+msgid "%s:%s reference target not found: %s"
+msgstr "%s:%s no es troba la destinació de la referència: %s"
-#: cmd/build.py:252
-msgid "warning control options"
-msgstr "opcions de control d'avís"
+#: transforms/post_transforms/__init__.py:297
+#, python-format
+msgid "%r reference target not found: %s"
+msgstr "%r no es troba la destinació de la referència: %s"
-#: cmd/build.py:258
-msgid "write warnings (and errors) to given file"
-msgstr "escriviu els avisos (i errors) al fitxer indicat"
+#: _cli/util/errors.py:190
+msgid "Interrupted!"
+msgstr "S'ha interromput!"
-#: cmd/build.py:265
-msgid "turn warnings into errors"
-msgstr "convertix els avisos en errors"
+#: _cli/util/errors.py:194
+msgid "reStructuredText markup error!"
+msgstr "S'ha produït un error de marcatge en el reStructuredText!"
-#: cmd/build.py:273
-msgid "show full traceback on exception"
-msgstr "mostra la traça completa en excepció"
+#: _cli/util/errors.py:200
+msgid "Encoding error!"
+msgstr "S'ha produït un error de codificació!"
-#: cmd/build.py:276
-msgid "run Pdb on exception"
-msgstr "executa Pdb en excepció"
+#: _cli/util/errors.py:203
+msgid "Recursion error!"
+msgstr "S'ha produït un error de recursivitat!"
-#: cmd/build.py:282
-msgid "raise an exception on warnings"
-msgstr "planteja una excepció sobre els avisos"
+#: _cli/util/errors.py:207
+msgid ""
+"This can happen with very large or deeply nested source files. You can "
+"carefully increase the default Python recursion limit of 1,000 in conf.py "
+"with e.g.:"
+msgstr "Açò pot passar amb fitxers font molt grans o molt imbricats. Podeu fer augmentar amb cura el límit predeterminat de la recursivitat de Python de 1.000 al «conf.py» amb, per exemple:"
-#: cmd/build.py:325
-msgid "cannot combine -a option and filenames"
-msgstr "no es pot combinar l'opció -a i els noms de fitxer"
+#: _cli/util/errors.py:227
+msgid "Starting debugger:"
+msgstr "S'està iniciant el depurador:"
-#: cmd/build.py:357
-#, python-format
-msgid "cannot open warning file '%s': %s"
-msgstr "no es pot obrir el fitxer de l'avís «%s»: %s"
+#: _cli/util/errors.py:235
+msgid "The full traceback has been saved in:"
+msgstr "S'ha guardat la traça completa a:"
-#: cmd/build.py:376
-msgid "-D option argument must be in the form name=value"
-msgstr "l'argument de l'opció «-D» haurà d'estar en la forma «nom=valor»"
+#: _cli/util/errors.py:240
+msgid ""
+"To report this error to the developers, please open an issue at "
+". Thanks!"
+msgstr "Per a informar d'este error als desenvolupadors, obriu un problema a . Gràcies!"
-#: cmd/build.py:383
-msgid "-A option argument must be in the form name=value"
-msgstr "l'argument de l'opció -A haurà d'estar en la forma «nom=valor»"
+#: _cli/util/errors.py:246
+msgid ""
+"Please also report this if it was a user error, so that a better error "
+"message can be provided next time."
+msgstr "Informeu-ho també si es tractava d'un error d'usuari, de manera que la pròxima vegada es puga proporcionar un missatge d'error millor."
#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
msgid "Collapse sidebar"
msgstr "Reduïx la barra lateral"
-#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
-#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
-msgid "Table of Contents"
-msgstr "Taula de continguts"
+#: themes/basic/layout.html:18
+msgid "Navigation"
+msgstr "Navegueu"
+
+#: themes/basic/layout.html:115
+#, python-format
+msgid "Search within %(docstitle)s"
+msgstr "Busca dins de %(docstitle)s"
+
+#: themes/basic/layout.html:124
+msgid "About these documents"
+msgstr "Quant a estos documents"
#: themes/agogo/layout.html:34 themes/basic/layout.html:130
#: themes/basic/search.html:3 themes/basic/search.html:15
msgid "Search"
msgstr "Busca"
-#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
-#: themes/basic/searchfield.html:12
-msgid "Go"
-msgstr "Ves fins a"
+#: themes/basic/layout.html:133 themes/basic/layout.html:177
+#: themes/basic/layout.html:179
+msgid "Copyright"
+msgstr "Copyright"
+
+#: themes/basic/layout.html:183 themes/basic/layout.html:189
+#, python-format
+msgid "© %(copyright_prefix)s %(copyright)s."
+msgstr "© %(copyright_prefix)s %(copyright)s."
+
+#: themes/basic/layout.html:201
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "Última actualització el %(last_updated)s."
+
+#: themes/basic/layout.html:204
+#, python-format
+msgid ""
+"Created using Sphinx "
+"%(sphinx_version)s."
+msgstr "Creada mitjançant Sphinx %(sphinx_version)s."
+
+#: themes/basic/relations.html:4
+msgid "Previous topic"
+msgstr "Tema anterior"
+
+#: themes/basic/relations.html:6
+msgid "previous chapter"
+msgstr "capítol anterior"
+
+#: themes/basic/relations.html:11
+msgid "Next topic"
+msgstr "Tema següent"
+
+#: themes/basic/relations.html:13
+msgid "next chapter"
+msgstr "capítol següent"
+
+#: themes/basic/genindex-single.html:26
+#, python-format
+msgid "Index – %(key)s"
+msgstr "Índex – %(key)s"
+
+#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
+#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
+msgid "Full index on one page"
+msgstr "Índex complet en una pàgina"
+
+#: themes/basic/sourcelink.html:4
+msgid "This Page"
+msgstr "Esta pàgina"
#: themes/agogo/layout.html:81 themes/basic/sourcelink.html:7
msgid "Show Source"
msgstr "Mostra el codi font"
-#: themes/haiku/layout.html:16
-msgid "Contents"
-msgstr "Contingut"
+#: themes/basic/searchbox.html:4
+msgid "Quick search"
+msgstr "Busca ràpida"
-#: themes/basic/opensearch.xml:4
-#, python-format
-msgid "Search %(docstitle)s"
-msgstr "Buscar a %(docstitle)s"
+#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
+#: themes/basic/searchfield.html:12
+msgid "Go"
+msgstr "Ves fins a"
#: themes/basic/defindex.html:4
msgid "Overview"
@@ -2683,7 +2885,7 @@ msgstr "Índex global de mòduls"
msgid "quick access to all modules"
msgstr "accés ràpid a tots els mòduls"
-#: builders/html/__init__.py:507 themes/basic/defindex.html:23
+#: builders/html/__init__.py:496 themes/basic/defindex.html:23
msgid "General Index"
msgstr "Índex general"
@@ -2691,23 +2893,15 @@ msgstr "Índex general"
msgid "all functions, classes, terms"
msgstr "totes les funcions, classes, termes"
-#: themes/basic/sourcelink.html:4
-msgid "This Page"
-msgstr "Esta pàgina"
+#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
+#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
+msgid "Table of Contents"
+msgstr "Taula de continguts"
-#: themes/basic/genindex-single.html:26
+#: themes/basic/opensearch.xml:4
#, python-format
-msgid "Index – %(key)s"
-msgstr "Índex – %(key)s"
-
-#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
-#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
-msgid "Full index on one page"
-msgstr "Índex complet en una pàgina"
-
-#: themes/basic/searchbox.html:4
-msgid "Quick search"
-msgstr "Busca ràpida"
+msgid "Search %(docstitle)s"
+msgstr "Buscar a %(docstitle)s"
#: themes/basic/genindex-split.html:8
msgid "Index pages by letter"
@@ -2717,57 +2911,6 @@ msgstr "Pàgines d'índex per lletra"
msgid "can be huge"
msgstr "pot ser gegant"
-#: themes/basic/relations.html:4
-msgid "Previous topic"
-msgstr "Tema anterior"
-
-#: themes/basic/relations.html:6
-msgid "previous chapter"
-msgstr "capítol anterior"
-
-#: themes/basic/relations.html:11
-msgid "Next topic"
-msgstr "Tema següent"
-
-#: themes/basic/relations.html:13
-msgid "next chapter"
-msgstr "capítol següent"
-
-#: themes/basic/layout.html:18
-msgid "Navigation"
-msgstr "Navegueu"
-
-#: themes/basic/layout.html:115
-#, python-format
-msgid "Search within %(docstitle)s"
-msgstr "Busca dins de %(docstitle)s"
-
-#: themes/basic/layout.html:124
-msgid "About these documents"
-msgstr "Quant a estos documents"
-
-#: themes/basic/layout.html:133 themes/basic/layout.html:177
-#: themes/basic/layout.html:179
-msgid "Copyright"
-msgstr "Copyright"
-
-#: themes/basic/layout.html:183 themes/basic/layout.html:189
-#, python-format
-msgid "© %(copyright_prefix)s %(copyright)s."
-msgstr "© %(copyright_prefix)s %(copyright)s."
-
-#: themes/basic/layout.html:201
-#, python-format
-msgid "Last updated on %(last_updated)s."
-msgstr "Última actualització el %(last_updated)s."
-
-#: themes/basic/layout.html:204
-#, python-format
-msgid ""
-"Created using Sphinx "
-"%(sphinx_version)s."
-msgstr "Creada mitjançant Sphinx %(sphinx_version)s."
-
#: themes/basic/search.html:20
msgid ""
"Please activate JavaScript to enable the search\n"
@@ -2784,21 +2927,21 @@ msgstr "Buscar múltiples paraules només mostrarà les coincidències\n que
msgid "search"
msgstr "busca"
-#: themes/basic/static/sphinx_highlight.js:112
-msgid "Hide Search Matches"
-msgstr "Oculta els resultats de busca"
+#: themes/haiku/layout.html:16
+msgid "Contents"
+msgstr "Contingut"
-#: themes/basic/static/searchtools.js:117
+#: themes/basic/static/searchtools.js:132
msgid "Search Results"
msgstr "Resultats de la busca"
-#: themes/basic/static/searchtools.js:119
+#: themes/basic/static/searchtools.js:134
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
msgstr "La vostra busca no ha coincidit amb cap document. Assegureu-vos que s'escriuen correctament totes les paraules i que heu seleccionat prou categories."
-#: themes/basic/static/searchtools.js:123
+#: themes/basic/static/searchtools.js:138
#, python-brace-format
msgid "Search finished, found one page matching the search query."
msgid_plural ""
@@ -2806,22 +2949,21 @@ msgid_plural ""
msgstr[0] "La busca ha acabat, s'ha trobat una pàgina que coincidix amb la consulta de busca."
msgstr[1] "La busca ha acabat, s'han trobat ${resultCount} pàgines que coincidixen amb la consulta de busca."
-#: themes/basic/static/searchtools.js:253
+#: themes/basic/static/searchtools.js:276
msgid "Searching"
msgstr "S'està buscant"
-#: themes/basic/static/searchtools.js:270
+#: themes/basic/static/searchtools.js:293
msgid "Preparing search..."
msgstr "S'està preparant la busca…"
-#: themes/basic/static/searchtools.js:474
+#: themes/basic/static/searchtools.js:526
msgid ", in "
msgstr ", a "
-#: themes/basic/changes/rstsource.html:5
-#, python-format
-msgid "%(filename)s — %(docstitle)s"
-msgstr "%(filename)s — %(docstitle)s"
+#: themes/basic/static/sphinx_highlight.js:112
+msgid "Hide Search Matches"
+msgstr "Oculta els resultats de busca"
#: themes/basic/changes/frameset.html:5
#: themes/basic/changes/versionchanges.html:12
@@ -2829,6 +2971,11 @@ msgstr "%(filename)s — %(docstitle)s"
msgid "Changes in Version %(version)s — %(docstitle)s"
msgstr "Canvis en la versió %(version)s — %(docstitle)s"
+#: themes/basic/changes/rstsource.html:5
+#, python-format
+msgid "%(filename)s — %(docstitle)s"
+msgstr "%(filename)s — %(docstitle)s"
+
#: themes/basic/changes/versionchanges.html:17
#, python-format
msgid "Automatically generated list of changes in version %(version)s"
@@ -2850,120 +2997,127 @@ msgstr "Altres canvis"
msgid "Expand sidebar"
msgstr "Expandix la barra lateral"
-#: domains/python/_annotations.py:529
+#: domains/python/_annotations.py:522
msgid "Positional-only parameter separator (PEP 570)"
-msgstr ""
+msgstr "Separador de paràmetres només posicional (PEP 570)"
-#: domains/python/_annotations.py:540
+#: domains/python/_annotations.py:533
msgid "Keyword-only parameters separator (PEP 3102)"
-msgstr ""
+msgstr "Separador de paràmetres només posicional (PEP 3102)"
+
+#: domains/c/__init__.py:354 domains/cpp/__init__.py:485
+#: domains/python/_object.py:190 ext/napoleon/docstring.py:980
+msgid "Parameters"
+msgstr "Paràmetres"
-#: domains/python/__init__.py:113 domains/python/__init__.py:278
+#: domains/python/_object.py:206
+msgid "Variables"
+msgstr "Variables"
+
+#: domains/python/_object.py:214
+msgid "Raises"
+msgstr "Llença"
+
+#: domains/python/__init__.py:105 domains/python/__init__.py:270
#, python-format
msgid "%s() (in module %s)"
msgstr "%s() (en el mòdul %s)"
-#: domains/python/__init__.py:180 domains/python/__init__.py:374
-#: domains/python/__init__.py:434 domains/python/__init__.py:474
+#: domains/python/__init__.py:172 domains/python/__init__.py:366
+#: domains/python/__init__.py:426 domains/python/__init__.py:466
#, python-format
msgid "%s (in module %s)"
msgstr "%s (en el mòdul %s)"
-#: domains/python/__init__.py:182
+#: domains/python/__init__.py:174
#, python-format
msgid "%s (built-in variable)"
msgstr "%s (variable interna)"
-#: domains/python/__init__.py:217
+#: domains/python/__init__.py:209
#, python-format
msgid "%s (built-in class)"
msgstr "%s (classe interna)"
-#: domains/python/__init__.py:218
+#: domains/python/__init__.py:210
#, python-format
msgid "%s (class in %s)"
msgstr "%s (classe a %s)"
-#: domains/python/__init__.py:283
+#: domains/python/__init__.py:275
#, python-format
msgid "%s() (%s class method)"
msgstr "%s() (mètode de classe %s)"
-#: domains/python/__init__.py:285
+#: domains/python/__init__.py:277
#, python-format
msgid "%s() (%s static method)"
msgstr "%s() (mètode estàtic %s)"
-#: domains/python/__init__.py:438
+#: domains/python/__init__.py:430
#, python-format
msgid "%s (%s property)"
msgstr "%s (propietat %s)"
-#: domains/python/__init__.py:478
+#: domains/python/__init__.py:470
#, python-format
msgid "%s (type alias in %s)"
msgstr "%s (escriviu l'àlies a %s)"
-#: domains/python/__init__.py:638
+#: domains/python/__init__.py:624
msgid "Python Module Index"
msgstr "Índex de mòduls en Python"
-#: domains/python/__init__.py:639
+#: domains/python/__init__.py:625
msgid "modules"
msgstr "mòduls"
-#: domains/python/__init__.py:717
+#: domains/python/__init__.py:703
msgid "Deprecated"
msgstr "Obsolet"
-#: domains/python/__init__.py:743
+#: domains/python/__init__.py:729
msgid "exception"
msgstr "excepció"
-#: domains/python/__init__.py:745
+#: domains/python/__init__.py:731
msgid "class method"
msgstr "mètode de classe"
-#: domains/python/__init__.py:746
+#: domains/python/__init__.py:732
msgid "static method"
msgstr "mètode estàtic"
-#: domains/python/__init__.py:748
+#: domains/python/__init__.py:734
msgid "property"
msgstr "propietat"
-#: domains/python/__init__.py:749
+#: domains/python/__init__.py:735
msgid "type alias"
msgstr "escriviu l'àlies"
-#: domains/python/__init__.py:818
+#: domains/python/__init__.py:804
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :no-index: for"
" one of them"
msgstr "descripció de l'objecte duplicat de %s, una altra instància a %s, ús «:no-index:» per a un d'ells"
-#: domains/python/__init__.py:978
+#: domains/python/__init__.py:974
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr "s'ha trobat més d'un objectiu per a la referència creuada %r: %s"
-#: domains/python/__init__.py:1052
+#: domains/python/__init__.py:1048
msgid " (deprecated)"
msgstr " (obsolet)"
-#: domains/c/__init__.py:326 domains/cpp/__init__.py:483
-#: domains/python/_object.py:190 ext/napoleon/docstring.py:974
-msgid "Parameters"
-msgstr "Paràmetres"
-
-#: domains/python/_object.py:206
-msgid "Variables"
-msgstr "Variables"
-
-#: domains/python/_object.py:214
-msgid "Raises"
-msgstr "Llença"
+#: domains/cpp/__init__.py:394 domains/cpp/_symbol.py:946
+#, python-format
+msgid ""
+"Duplicate C++ declaration, also defined at %s:%s.\n"
+"Declaration is '.. cpp:%s:: %s'."
+msgstr "Declaració de C** duplicada, també definida a %s:%s.\nLa declaració és «.. cpp:%s:: %s»."
#: domains/cpp/__init__.py:159
msgid "Template Parameters"
@@ -2974,92 +3128,85 @@ msgstr "Paràmetres de la plantilla"
msgid "%s (C++ %s)"
msgstr "%s (C++ %s)"
-#: domains/cpp/__init__.py:392 domains/cpp/_symbol.py:942
-#, python-format
-msgid ""
-"Duplicate C++ declaration, also defined at %s:%s.\n"
-"Declaration is '.. cpp:%s:: %s'."
-msgstr "Declaració de C** duplicada, també definida a %s:%s.\nLa declaració és «.. cpp:%s:: %s»."
-
-#: domains/c/__init__.py:333 domains/cpp/__init__.py:496
+#: domains/c/__init__.py:361 domains/cpp/__init__.py:498
msgid "Return values"
msgstr "Valors retornats"
-#: domains/c/__init__.py:754 domains/cpp/__init__.py:940
+#: domains/c/__init__.py:782 domains/cpp/__init__.py:942
msgid "union"
msgstr "unió"
-#: domains/c/__init__.py:749 domains/cpp/__init__.py:942
+#: domains/c/__init__.py:777 domains/cpp/__init__.py:944
msgid "member"
msgstr "membre"
-#: domains/c/__init__.py:757 domains/cpp/__init__.py:943
+#: domains/c/__init__.py:785 domains/cpp/__init__.py:945
msgid "type"
msgstr "tipus"
-#: domains/cpp/__init__.py:944
+#: domains/cpp/__init__.py:946
msgid "concept"
msgstr "concepte"
-#: domains/c/__init__.py:755 domains/cpp/__init__.py:945
+#: domains/c/__init__.py:783 domains/cpp/__init__.py:947
msgid "enum"
msgstr "enumera"
-#: domains/c/__init__.py:756 domains/cpp/__init__.py:946
+#: domains/c/__init__.py:784 domains/cpp/__init__.py:948
msgid "enumerator"
msgstr "numerador"
-#: domains/c/__init__.py:760 domains/cpp/__init__.py:949
+#: domains/c/__init__.py:788 domains/cpp/__init__.py:951
msgid "function parameter"
msgstr "paràmetre de la funció"
-#: domains/cpp/__init__.py:952
+#: domains/cpp/__init__.py:954
msgid "template parameter"
msgstr "paràmetre de la plantilla"
-#: domains/c/__init__.py:211
-#, python-format
-msgid "%s (C %s)"
-msgstr "%s (C %s)"
-
-#: domains/c/__init__.py:277 domains/c/_symbol.py:557
+#: domains/c/__init__.py:279 domains/c/_symbol.py:569
#, python-format
msgid ""
"Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'."
msgstr "Declaració de C duplicada, també definida a %s:%s.\nLa declaració és «.. c:%s:: %s»."
-#: domains/c/__init__.py:750
+#: domains/c/__init__.py:211
+#, python-format
+msgid "%s (C %s)"
+msgstr "%s (C %s)"
+
+#: domains/c/__init__.py:778
msgid "variable"
msgstr "variable"
-#: domains/c/__init__.py:752
+#: domains/c/__init__.py:780
msgid "macro"
msgstr "macro"
-#: domains/c/__init__.py:753
+#: domains/c/__init__.py:781
msgid "struct"
msgstr "estructura"
-#: domains/std/__init__.py:91 domains/std/__init__.py:111
+#: domains/std/__init__.py:88 domains/std/__init__.py:108
#, python-format
msgid "environment variable; %s"
msgstr "variable d'entorn; %s"
-#: domains/std/__init__.py:119
+#: domains/std/__init__.py:116
#, python-format
msgid "%s; configuration value"
msgstr "%s; valor de configuració"
-#: domains/std/__init__.py:175
+#: domains/std/__init__.py:172
msgid "Type"
msgstr "Tipus"
-#: domains/std/__init__.py:185
+#: domains/std/__init__.py:182
msgid "Default"
msgstr "Predeterminat"
-#: domains/std/__init__.py:242
+#: domains/std/__init__.py:239
#, python-format
msgid ""
"Malformed option description %r, should look like \"opt\", \"-opt args\", \""
@@ -3146,522 +3293,430 @@ msgstr "numfig_format no vàlid: %s"
#: domains/std/__init__.py:1453
#, python-format
-msgid "undefined label: %r"
-msgstr "etiqueta sense definir: %r"
-
-#: domains/std/__init__.py:1456
-#, python-format
-msgid "Failed to create a cross reference. A title or caption not found: %r"
-msgstr "No s'ha pogut crear una referència creuada. No es troba un títol o subtítol: %r"
-
-#: environment/adapters/toctree.py:324
-#, python-format
-msgid "circular toctree references detected, ignoring: %s <- %s"
-msgstr "s'han detectat referències circulars del toctree, s'ignora: %s <- %s"
-
-#: environment/adapters/toctree.py:349
-#, python-format
-msgid ""
-"toctree contains reference to document %r that doesn't have a title: no link"
-" will be generated"
-msgstr "el toctree conté una referència cap al document %r, el qual no conté un títol: no es generarà cap enllaç"
-
-#: environment/adapters/toctree.py:364
-#, python-format
-msgid "toctree contains reference to non-included document %r"
-msgstr "el toctree conté una referència cap a un document no inclòs %r"
-
-#: environment/adapters/toctree.py:367
-#, python-format
-msgid "toctree contains reference to non-existing document %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:123
-#, python-format
-msgid "see %s"
-msgstr "vegeu %s"
-
-#: environment/adapters/indexentries.py:133
-#, python-format
-msgid "see also %s"
-msgstr "vegeu també %s"
-
-#: environment/adapters/indexentries.py:141
-#, python-format
-msgid "unknown index entry type %r"
-msgstr "tipus d'entrada %r amb un índex desconegut"
-
-#: environment/adapters/indexentries.py:268
-#: templates/latex/sphinxmessages.sty.jinja:11
-msgid "Symbols"
-msgstr "Símbols"
-
-#: environment/collectors/asset.py:98
-#, python-format
-msgid "image file not readable: %s"
-msgstr "el fitxer d'imatge no es pot llegir: %s"
-
-#: environment/collectors/asset.py:126
-#, python-format
-msgid "image file %s not readable: %s"
-msgstr "el fitxer d'imatge %s no es pot llegir: %s"
-
-#: environment/collectors/asset.py:163
-#, python-format
-msgid "download file not readable: %s"
-msgstr "el fitxer de baixada no es pot llegir: %s"
-
-#: environment/collectors/toctree.py:259
-#, python-format
-msgid "%s is already assigned section numbers (nested numbered toctree?)"
-msgstr "%s ja té assignats números de secció (toctree amb numeració imbricada?)"
-
-#: _cli/util/errors.py:190
-msgid "Interrupted!"
-msgstr "S'ha interromput!"
-
-#: _cli/util/errors.py:194
-msgid "reStructuredText markup error!"
-msgstr ""
-
-#: _cli/util/errors.py:200
-msgid "Encoding error!"
-msgstr ""
-
-#: _cli/util/errors.py:203
-msgid "Recursion error!"
-msgstr ""
-
-#: _cli/util/errors.py:207
-msgid ""
-"This can happen with very large or deeply nested source files. You can "
-"carefully increase the default Python recursion limit of 1,000 in conf.py "
-"with e.g.:"
-msgstr ""
-
-#: _cli/util/errors.py:227
-msgid "Starting debugger:"
-msgstr ""
-
-#: _cli/util/errors.py:235
-msgid "The full traceback has been saved in:"
-msgstr "S'ha guardat la traça completa a:"
-
-#: _cli/util/errors.py:240
-msgid ""
-"To report this error to the developers, please open an issue at "
-". Thanks!"
-msgstr "Per a informar d'este error als desenvolupadors, obriu un problema a . Gràcies!"
-
-#: _cli/util/errors.py:246
-msgid ""
-"Please also report this if it was a user error, so that a better error "
-"message can be provided next time."
-msgstr "Informeu-ho també si es tractava d'un error d'usuari, de manera que la pròxima vegada es puga proporcionar un missatge d'error millor."
-
-#: transforms/post_transforms/__init__.py:88
-msgid ""
-"Could not determine the fallback text for the cross-reference. Might be a "
-"bug."
-msgstr "No s'ha pogut determinar el text alternatiu per a la referència creuada. Podria ser un error."
-
-#: transforms/post_transforms/__init__.py:237
-#, python-format
-msgid "more than one target found for 'any' cross-reference %r: could be %s"
-msgstr "s'ha trobat més d'una destinació per a «any» en la referència creuada %r: podria ser %s"
-
-#: transforms/post_transforms/__init__.py:299
-#, python-format
-msgid "%s:%s reference target not found: %s"
-msgstr "%s:%s no es troba la destinació de la referència: %s"
-
-#: transforms/post_transforms/__init__.py:305
-#, python-format
-msgid "%r reference target not found: %s"
-msgstr "%r no es troba la destinació de la referència: %s"
+msgid "undefined label: %r"
+msgstr "etiqueta sense definir: %r"
-#: transforms/post_transforms/images.py:79
+#: domains/std/__init__.py:1456
#, python-format
-msgid "Could not fetch remote image: %s [%s]"
-msgstr "No s'ha pogut recuperar la imatge remota: %s [%s]"
+msgid "Failed to create a cross reference. A title or caption not found: %r"
+msgstr "No s'ha pogut crear una referència creuada. No es troba un títol o subtítol: %r"
-#: transforms/post_transforms/images.py:96
+#: ext/napoleon/docstring.py:178
#, python-format
-msgid "Could not fetch remote image: %s [%d]"
-msgstr "No s'ha pogut recuperar la imatge remota: %s [%d]"
+msgid "invalid value set (missing closing brace): %s"
+msgstr "conjunt de valors no vàlid (falta el claudàtor de tancament): %s"
-#: transforms/post_transforms/images.py:143
+#: ext/napoleon/docstring.py:185
#, python-format
-msgid "Unknown image format: %s..."
-msgstr "Format d'imatge desconegut: %s…"
+msgid "invalid value set (missing opening brace): %s"
+msgstr "conjunt de valors no vàlid (falta el claudàtor d'obertura): %s"
-#: builders/html/__init__.py:113
+#: ext/napoleon/docstring.py:192
#, python-format
-msgid "The HTML pages are in %(outdir)s."
-msgstr "Les pàgines en HTML es troben a %(outdir)s."
+msgid "malformed string literal (missing closing quote): %s"
+msgstr "Cadena incorrecta literal (falten les cometes de tancament): %s"
-#: builders/html/__init__.py:348
+#: ext/napoleon/docstring.py:199
#, python-format
-msgid "Failed to read build info file: %r"
-msgstr "No s'ha pogut llegir el fitxer d'informació de la construcció: %r"
+msgid "malformed string literal (missing opening quote): %s"
+msgstr "Cadena incorrecta literal (falten les cometes d'obertura): %s"
-#: builders/html/__init__.py:364
-msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
-msgstr "build_info no coincidix, s'està copiant .buildinfo a .buildinfo.bak"
+#: ext/napoleon/docstring.py:902
+msgid "Example"
+msgstr "Exemple"
-#: builders/html/__init__.py:366
-msgid "building [html]: "
-msgstr "es construïx [html]:"
+#: ext/napoleon/docstring.py:903
+msgid "Examples"
+msgstr "Exemples"
-#: builders/html/__init__.py:383
-#, python-format
-msgid ""
-"template %s has been changed since the previous build, all docs will be "
-"rebuilt"
-msgstr "s'ha canviat la plantilla %s des de la compilació anterior, es reconstruiran tots els documents"
+#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:947
+msgid "Keyword Arguments"
+msgstr "Arguments de paraules clau"
-#: builders/html/__init__.py:507
-msgid "index"
-msgstr "índex"
+#: ext/napoleon/docstring.py:962
+msgid "Notes"
+msgstr "Notes"
-#: builders/html/__init__.py:560
-#, python-format
-msgid "Logo of %s"
-msgstr "Logotip de %s"
+#: ext/napoleon/docstring.py:971
+msgid "Other Parameters"
+msgstr "Altres paràmetres"
-#: builders/html/__init__.py:589
-msgid "next"
-msgstr "següent"
+#: ext/napoleon/docstring.py:1007
+msgid "Receives"
+msgstr "Rebudes"
-#: builders/html/__init__.py:598
-msgid "previous"
-msgstr "anterior"
+#: ext/napoleon/docstring.py:1011
+msgid "References"
+msgstr "Referències"
-#: builders/html/__init__.py:696
-msgid "generating indices"
-msgstr "s'estan generant els índexs"
+#: ext/napoleon/docstring.py:1043
+msgid "Warns"
+msgstr "Avisos"
-#: builders/html/__init__.py:711
-msgid "writing additional pages"
-msgstr "s'estan escrivint les pàgines addicionals"
+#: ext/napoleon/docstring.py:1047
+msgid "Yields"
+msgstr "Rendiments"
-#: builders/html/__init__.py:794
+#: ext/autodoc/_generate.py:151
+#: ext/autodoc/_legacy_class_based/_documenters.py:859
#, python-format
-msgid "cannot copy image file '%s': %s"
-msgstr "no es pot copiar el fitxer d'imatge «%s»: %s"
-
-#: builders/html/__init__.py:806
-msgid "copying downloadable files... "
-msgstr "s'estan copiant els fitxers que es poden baixar… "
+msgid "A mocked object is detected: %r"
+msgstr "S'ha detectat un objecte simulat: %r"
-#: builders/html/__init__.py:818
+#: ext/autodoc/_generate.py:334 ext/autodoc/_generate.py:348
+#: ext/autodoc/_generate.py:370 ext/autodoc/_generate.py:386
+#: ext/autodoc/_legacy_class_based/_documenters.py:1860
+#: ext/autodoc/_legacy_class_based/_documenters.py:1889
+#: ext/autodoc/_legacy_class_based/_documenters.py:1983
#, python-format
-msgid "cannot copy downloadable file %r: %s"
-msgstr "no s'ha pogut copiar el fitxer que es podia baixar %r: %s"
+msgid "alias of %s"
+msgstr "àlies de %s"
-#: builders/html/__init__.py:864
+#: ext/autodoc/_legacy_class_based/_documenters.py:1745
+#: ext/autodoc/_renderer.py:88
#, python-format
-msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
-msgstr "No s'ha pogut copiar un fitxer en el directori «static» del tema: %s: %r"
+msgid "Bases: %s"
+msgstr "Bases: %s"
-#: builders/html/__init__.py:882
+#: ext/autodoc/_directive_options.py:226
+#: ext/autodoc/_legacy_class_based/_directive_options.py:47
#, python-format
-msgid "Failed to copy a file in html_static_file: %s: %r"
-msgstr "No s'ha pogut copiar un fitxer en html_static_file: %s: %r"
+msgid "invalid value for member-order option: %s"
+msgstr "valor no vàlid per a l'opció de l'ordre de membre: %s"
-#: builders/html/__init__.py:917
-msgid "copying static files"
-msgstr "s'estan copiant els fitxers estàtics"
+#: ext/autodoc/_directive_options.py:233
+#: ext/autodoc/_legacy_class_based/_directive_options.py:55
+#, python-format
+msgid "invalid value for class-doc-from option: %s"
+msgstr "valor no vàlid per a l'opció des de la documentació de classes: %s"
-#: builders/html/__init__.py:934
+#: ext/autodoc/_legacy_class_based/_documenters.py:239
+#: ext/autodoc/_names.py:45
#, python-format
-msgid "cannot copy static file %r"
-msgstr "no s'ha pogut copiar el fitxer estàtic %r"
+msgid "invalid signature for auto%s (%r)"
+msgstr "signatura no vàlida per a auto%s (%r)"
-#: builders/html/__init__.py:939
-msgid "copying extra files"
-msgstr "s'estan copiant els fitxers addicionals"
+#: ext/autodoc/_legacy_class_based/_documenters.py:800
+#: ext/autodoc/_names.py:53 ext/autodoc/_names.py:101
+#, python-format
+msgid ""
+"don't know which module to import for autodocumenting %r (try placing a "
+"\"module\" or \"currentmodule\" directive in the document, or giving an "
+"explicit module name)"
+msgstr "es desconeix quin és el mòdul que s'importarà per al document automàtic %r (proveu de col·locar una directiva «module» o «currentmodule» en el document o doneu-li un nom explícit al mòdul)"
-#: builders/html/__init__.py:949
+#: ext/autodoc/_names.py:89
#, python-format
-msgid "cannot copy extra file %r"
-msgstr "no s'ha pogut copiar el fitxer addicional %r"
+msgid "signature arguments given for automodule: '%s'"
+msgstr ""
-#: builders/html/__init__.py:955
+#: ext/autodoc/_names.py:93
#, python-format
-msgid "Failed to write build info file: %r"
-msgstr "No s'ha pogut escriure el fitxer d'informació de la construcció: %r"
+msgid "return annotation given for automodule: '%s'"
+msgstr ""
-#: builders/html/__init__.py:1005
-msgid ""
-"search index couldn't be loaded, but not all documents will be built: the "
-"index will be incomplete."
-msgstr "no s'ha pogut carregar l'índex de busca, i no es construiran tots els documents: l'índex estarà incomplet."
+#: ext/autodoc/_legacy_class_based/_documenters.py:956
+#: ext/autodoc/_names.py:134
+msgid "\"::\" in automodule name doesn't make sense"
+msgstr "«::» en el nom de l'«automodule» no té sentit"
-#: builders/html/__init__.py:1052
+#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:984
#, python-format
-msgid "page %s matches two patterns in html_sidebars: %r and %r"
-msgstr "la pàgina %s coincidix amb dos patrons en html_sidebars: %r i %r"
+msgid "Failed to remove %s: %s"
+msgstr "S'ha fallat en eliminar %s: %s"
-#: builders/html/__init__.py:1216
+#: ext/apidoc/_generate.py:69
#, python-format
+msgid "Would create file %s."
+msgstr "S'hauria de crear el fitxer %s."
+
+#: ext/apidoc/_cli.py:28
msgid ""
-"a Unicode error occurred when rendering the page %s. Please make sure all "
-"config values that contain non-ASCII content are Unicode strings."
-msgstr "s'ha produït un error d'Unicode en representar la pàgina %s. Assegureu-vos que tots els valors de configuració que contenen contingut que no és ASCII són cadenes Unicode."
+"\n"
+"Look recursively in for Python modules and packages and create\n"
+"one reST file with automodule directives per package in the .\n"
+"\n"
+"The s can be file and/or directory patterns that will be\n"
+"excluded from generation.\n"
+"\n"
+"Note: By default this script will not overwrite already created files."
+msgstr "\nMireu recursivament a per als mòduls i paquets de Python\ni creeu un fitxer reST amb les directives «automodule» per paquet en el .\n\nEls poden ser fitxers i/o patrons de directori que seran\nexclosos de la generació.\n\nNota: De manera predeterminada, este script no sobreescriurà els fitxers que ja s'han creat."
-#: builders/html/__init__.py:1224
-#, python-format
+#: ext/apidoc/_cli.py:45
+msgid "path to module to document"
+msgstr "camí cap al mòdul que es documenta"
+
+#: ext/apidoc/_cli.py:50
msgid ""
-"An error happened in rendering the page %s.\n"
-"Reason: %r"
-msgstr "S'ha produït un error en representar la pàgina %s.\nMotiu: %r"
+"fnmatch-style file and/or directory patterns to exclude from generation"
+msgstr "fitxer d'estil fnmatch i/o patrons de directori que s'exclouran de la generació"
-#: builders/html/__init__.py:1257
-msgid "dumping object inventory"
-msgstr "s'està bolcant l'inventari d'objectes"
+#: ext/apidoc/_cli.py:60
+msgid "directory to place all output"
+msgstr "directori per a col·locar tota l'eixida"
-#: builders/html/__init__.py:1265
-#, python-format
-msgid "dumping search index in %s"
-msgstr "s'està bolcant l'índex de busca a %s"
+#: ext/apidoc/_cli.py:75
+msgid "maximum depth of submodules to show in the TOC (default: 4)"
+msgstr "profunditat màxima dels submòduls que es mostraran en la TOC (predeterminada: 4)"
-#: builders/html/__init__.py:1308
-#, python-format
-msgid "invalid js_file: %r, ignored"
-msgstr "js_file no vàlid: %r, s'ignora"
+#: ext/apidoc/_cli.py:82
+msgid "overwrite existing files"
+msgstr "sobreescriu els fitxers existents"
-#: builders/html/__init__.py:1342
-msgid "Many math_renderers are registered. But no math_renderer is selected."
-msgstr "S'han enregistrat molts math_renderer. Però no s'ha seleccionat math_renderer."
+#: ext/apidoc/_cli.py:91
+msgid ""
+"follow symbolic links. Powerful when combined with "
+"collective.recipe.omelette."
+msgstr "seguir els enllaços simbòlics. Potent quan es combina amb el paquet collective.recipe.omelette."
-#: builders/html/__init__.py:1346
-#, python-format
-msgid "Unknown math_renderer %r is given."
-msgstr "S'ha donat un math_renderer %r desconegut."
+#: ext/apidoc/_cli.py:99
+msgid "run the script without creating files"
+msgstr "executa l'script sense crear els fitxers"
-#: builders/html/__init__.py:1360
-#, python-format
-msgid "html_extra_path entry %r is placed inside outdir"
-msgstr "l'entrada html_extra_path %r es col·loca dins del directori d'eixida"
+#: ext/apidoc/_cli.py:106
+msgid "put documentation for each module on its own page"
+msgstr "posa la documentació per a cada mòdul en la seua pròpia pàgina"
-#: builders/html/__init__.py:1365
-#, python-format
-msgid "html_extra_path entry %r does not exist"
-msgstr "l'entrada html_extra_path %r no existix"
+#: ext/apidoc/_cli.py:113
+msgid "include \"_private\" modules"
+msgstr "inclou «_private» en els mòduls"
-#: builders/html/__init__.py:1380
-#, python-format
-msgid "html_static_path entry %r is placed inside outdir"
-msgstr "l'entrada html_static_path %r es col·loca dins del directori d'eixida"
+#: ext/apidoc/_cli.py:120
+msgid "filename of table of contents (default: modules)"
+msgstr "nom de fitxer de la taula de contingut (predeterminat: mòduls)"
-#: builders/html/__init__.py:1385
-#, python-format
-msgid "html_static_path entry %r does not exist"
-msgstr "l'entrada html_static_path %r no existix"
+#: ext/apidoc/_cli.py:127
+msgid "don't create a table of contents file"
+msgstr "no crea un fitxer de taula de contingut"
-#: builders/html/__init__.py:1396 builders/latex/__init__.py:504
-#, python-format
-msgid "logo file %r does not exist"
-msgstr "el fitxer de logotip %r no existix"
+#: ext/apidoc/_cli.py:135
+msgid ""
+"don't create headings for the module/package packages (e.g. when the "
+"docstrings already contain them)"
+msgstr "no crea capçaleres per als paquets del mòdul/paquet (p. ex., quan les cadenes de documentació ja les contenen)"
-#: builders/html/__init__.py:1407
-#, python-format
-msgid "favicon file %r does not exist"
-msgstr "el fitxer icona de web %r no existix"
+#: ext/apidoc/_cli.py:145
+msgid "put module documentation before submodule documentation"
+msgstr "posa la documentació del mòdul abans de la documentació del submòdul"
-#: builders/html/__init__.py:1420
-#, python-format
+#: ext/apidoc/_cli.py:152
msgid ""
-"Values in 'html_sidebars' must be a list of strings. At least one pattern "
-"has a string value: %s. Change to `html_sidebars = %r`."
-msgstr "Els valors a «html_sidebars» han de ser una llista de cadenes. Almenys un patró té un valor de cadena: %s. Canvia a «html_sidebars = %r»."
+"interpret module paths according to PEP-0420 implicit namespaces "
+"specification"
+msgstr "interpreta els camins dels mòduls segons l'especificació d'espais de nom implícits al PEP-0420"
-#: builders/html/__init__.py:1433
+#: ext/apidoc/_cli.py:160
msgid ""
-"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
-"configuration options)"
-msgstr "HTML 4 ja no és compatible amb Sphinx. (s'ha detectat «html4_writer=true» en les opcions de configuració)"
+"Comma-separated list of options to pass to automodule directive (or use "
+"SPHINX_APIDOC_OPTIONS)."
+msgstr "Llista d'opcions separades per comes que es passarà a la directiva «automodule» (o utilitzeu SPHINX_APIDOC_OPTIONS)."
-#: builders/html/__init__.py:1449
-#, python-format
-msgid "%s %s documentation"
-msgstr "%s %s documentació"
+#: ext/apidoc/_cli.py:170
+msgid "file suffix (default: rst)"
+msgstr "sufix del fitxer (predeterminat: rst)"
-#: builders/html/_build_info.py:32
-msgid "failed to read broken build info file (unknown version)"
-msgstr "s'ha fallat en llegir el fitxer d'informació de la compilació trencada (versió desconeguda)"
+#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:950
+msgid "Remove existing files in the output directory that were not generated"
+msgstr "Elimina els fitxers existents en el directori d'eixida que no s'hagen generat"
-#: builders/html/_build_info.py:36
-msgid "failed to read broken build info file (missing config entry)"
-msgstr "s'ha fallat en llegir el fitxer d'informació de la compilació trencada (falta l'entrada «config»)"
+#: ext/apidoc/_cli.py:186
+msgid "generate a full project with sphinx-quickstart"
+msgstr "genera un projecte complet amb «sphinx-quickstart»"
+
+#: ext/apidoc/_cli.py:193
+msgid "append module_path to sys.path, used when --full is given"
+msgstr "afig module_path a sys.path, s'utilitza quan s'indica el paràmetre «--full»"
+
+#: ext/apidoc/_cli.py:200
+msgid "project name (default: root module name)"
+msgstr "nom del projecte (predeterminat: nom del mòdul arrel)"
+
+#: ext/apidoc/_cli.py:207
+msgid "project author(s), used when --full is given"
+msgstr "autoria del projecte, s'utilitza quan s'indica el paràmetre «--full»"
-#: builders/html/_build_info.py:39
-msgid "failed to read broken build info file (missing tags entry)"
-msgstr "s'ha fallat en llegir el fitxer d'informació de la compilació trencada (falta l'entrada «tags»)"
+#: ext/apidoc/_cli.py:214
+msgid "project version, used when --full is given"
+msgstr "versió del projecte, s'utilitza quan s'indica el paràmetre «--full»"
-#: builders/latex/__init__.py:118
-#, python-format
-msgid "The LaTeX files are in %(outdir)s."
-msgstr "Els fitxers en LaTeX es troben a %(outdir)s."
+#: ext/apidoc/_cli.py:222
+msgid "project release, used when --full is given, defaults to --doc-version"
+msgstr "llançament del projecte, s'utilitza quan s'indica el paràmetre «--full», predeterminat a «--doc-version»"
-#: builders/latex/__init__.py:121
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through (pdf)latex\n"
-"(use `make latexpdf' here to do that automatically)."
-msgstr "\nExecuteu l'ordre «make» en este directori per a executar-les\nmitjançant (pdf)latex (utilitzeu l'ordre «make latexpdf» per a fer-ho\nautomàticament)."
+#: ext/apidoc/_cli.py:226
+msgid "extension options"
+msgstr "opcions de l'extensió"
-#: builders/latex/__init__.py:159
-msgid "no \"latex_documents\" config value found; no documents will be written"
-msgstr "no s'ha trobat el valor de configuració «latex_documents»: no s'escriurà cap document"
+#: ext/apidoc/_cli.py:232
+msgid "enable arbitrary extensions, used when --full is given"
+msgstr "habilita les extensions arbitràries, que s'utilitzen quan s'indica «--full»"
-#: builders/latex/__init__.py:170
+#: ext/apidoc/_cli.py:240
#, python-format
-msgid "\"latex_documents\" config value references unknown document %s"
-msgstr "El valor de configuració «latex_documents» fa referència a un document %s desconegut"
-
-#: builders/latex/__init__.py:209 templates/latex/latex.tex.jinja:91
-msgid "Release"
-msgstr "Versió"
+msgid "enable %s extension, used when --full is given"
+msgstr "habilita l'extensió %s, que s'utilitza quan s'indica «--full»"
-#: builders/latex/__init__.py:428
-msgid "copying TeX support files"
-msgstr "s'estan copiant els fitxers de suport de TeX"
+#: ext/apidoc/_cli.py:291
+#, python-format
+msgid "%s is not a directory."
+msgstr "%s no és cap directori."
-#: builders/latex/__init__.py:465
-msgid "copying additional files"
-msgstr "s'estan copiant els fitxers addicionals"
+#: ext/apidoc/_extension.py:50
+msgid "Running apidoc"
+msgstr "S'està executant apidoc"
-#: builders/latex/__init__.py:536
+#: ext/apidoc/_extension.py:102
#, python-format
-msgid "Unknown configure key: latex_elements[%r], ignored."
-msgstr "Clau de configuració desconeguda: latex_elements[%r], s'ignora."
+msgid "apidoc_modules item %i must be a dict"
+msgstr "«apidoc_modules» l'element %i ha de ser un diccionari"
-#: builders/latex/__init__.py:544
+#: ext/apidoc/_extension.py:110
#, python-format
-msgid "Unknown theme option: latex_theme_options[%r], ignored."
-msgstr "Opció desconeguda de tema: latex_theme_options[%r], s'ignora."
-
-#: builders/latex/transforms.py:120
-msgid "Failed to get a docname!"
-msgstr "No s'ha pogut obtindre el docname!"
+msgid "apidoc_modules item %i must have a 'path' key"
+msgstr "«apidoc_modules» l'element %i ha de tindre una clau «path»."
-#: builders/latex/transforms.py:121
+#: ext/apidoc/_extension.py:115
#, python-format
-msgid "Failed to get a docname for source %r!"
-msgstr "S'ha fallat en obtindre un nom de document per a la font %r!"
+msgid "apidoc_modules item %i 'path' must be a string"
+msgstr "«apidoc_modules» l'element «path» %i ha de ser una cadena"
-#: builders/latex/transforms.py:487
+#: ext/apidoc/_extension.py:121
#, python-format
-msgid "No footnote was found for given reference node %r"
-msgstr "No s'ha trobat cap nota a peu de pàgina per al node de referència %r donat"
+msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
+msgstr "«apidoc_modules» l'element «path» %i no és una carpeta existent: %s"
-#: builders/latex/theming.py:88
+#: ext/apidoc/_extension.py:133
#, python-format
-msgid "%r doesn't have \"theme\" setting"
-msgstr "%r no té la configuració «theme»"
+msgid "apidoc_modules item %i must have a 'destination' key"
+msgstr "«apidoc_modules» l'element %i ha de tindre una clau «destination»"
-#: builders/latex/theming.py:91
+#: ext/apidoc/_extension.py:140
#, python-format
-msgid "%r doesn't have \"%s\" setting"
-msgstr "%r no té la configuració «%s»"
+msgid "apidoc_modules item %i 'destination' must be a string"
+msgstr "«apidoc_modules» l'element «destination» %i ha de ser una cadena"
-#: templates/latex/longtable.tex.jinja:52
-#: templates/latex/sphinxmessages.sty.jinja:8
-msgid "continued from previous page"
-msgstr "ve de la pàgina anterior"
+#: ext/apidoc/_extension.py:147
+#, python-format
+msgid "apidoc_modules item %i 'destination' should be a relative path"
+msgstr "«apidoc_modules» l'element «destination» %i hauria de ser un camí relatiu"
-#: templates/latex/longtable.tex.jinja:63
-#: templates/latex/sphinxmessages.sty.jinja:9
-msgid "continues on next page"
-msgstr "continua en la pàgina següent"
+#: ext/apidoc/_extension.py:157
+#, python-format
+msgid "apidoc_modules item %i cannot create destination directory: %s"
+msgstr "«apidoc_modules» l'element %i no pot crear el directori de destinació: %s"
-#: templates/latex/sphinxmessages.sty.jinja:10
-msgid "Non-alphabetical"
-msgstr "No alfabètic"
+#: ext/apidoc/_extension.py:178
+#, python-format
+msgid "apidoc_modules item %i '%s' must be an int"
+msgstr "«apidoc_modules» l'element %i «%s» ha de ser un nombre enter"
-#: templates/latex/sphinxmessages.sty.jinja:12
-msgid "Numbers"
-msgstr "Números"
+#: ext/apidoc/_extension.py:192
+#, python-format
+msgid "apidoc_modules item %i '%s' must be a boolean"
+msgstr "«apidoc_modules» l'element %i «%s» ha de ser un booleà"
-#: templates/latex/sphinxmessages.sty.jinja:13
-msgid "page"
-msgstr "pàgina"
+#: ext/apidoc/_extension.py:210
+#, python-format
+msgid "apidoc_modules item %i has unexpected keys: %s"
+msgstr "«apidoc_modules» l'element %i té claus inesperades: %s"
-#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:940
-msgid "Keyword Arguments"
-msgstr "Arguments de paraules clau"
+#: ext/apidoc/_extension.py:248
+#, python-format
+msgid "apidoc_modules item %i '%s' must be a sequence"
+msgstr "«apidoc_modules» l'element %i «%s» ha de ser una seqüència"
-#: ext/napoleon/docstring.py:176
+#: ext/apidoc/_extension.py:257
#, python-format
-msgid "invalid value set (missing closing brace): %s"
-msgstr "conjunt de valors no vàlid (falta el claudàtor de tancament): %s"
+msgid "apidoc_modules item %i '%s' must contain strings"
+msgstr "«apidoc_modules» l'element %i «%s» ha de contindre cadenes"
-#: ext/napoleon/docstring.py:183
+#: ext/autosummary/generate.py:212 ext/autosummary/generate.py:425
#, python-format
-msgid "invalid value set (missing opening brace): %s"
-msgstr "conjunt de valors no vàlid (falta el claudàtor d'obertura): %s"
+msgid ""
+"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
+"%s"
+msgstr "autosummary: ha fallat en determinar %r que s'ha de documentar, s'ha plantejat l'excepció següent:\n%s"
-#: ext/napoleon/docstring.py:190
+#: ext/autosummary/generate.py:630
#, python-format
-msgid "malformed string literal (missing closing quote): %s"
-msgstr "Cadena incorrecta literal (falten les cometes de tancament): %s"
+msgid "[autosummary] generating autosummary for: %s"
+msgstr "[autosummary] s'està generant autosummary per a: %s"
-#: ext/napoleon/docstring.py:197
+#: ext/autosummary/generate.py:634
#, python-format
-msgid "malformed string literal (missing opening quote): %s"
-msgstr "Cadena incorrecta literal (falten les cometes d'obertura): %s"
+msgid "[autosummary] writing to %s"
+msgstr "[autosummary] s'està escrivint a %s"
-#: ext/napoleon/docstring.py:895
-msgid "Example"
-msgstr "Exemple"
+#: ext/autosummary/generate.py:679
+#, python-format
+msgid ""
+"[autosummary] failed to import %s.\n"
+"Possible hints:\n"
+"%s"
+msgstr "[autosummary]: ha fallat en importar %s.\nPossibles pistes:\n%s"
-#: ext/napoleon/docstring.py:896
-msgid "Examples"
-msgstr "Exemples"
+#: ext/autosummary/generate.py:877
+msgid ""
+"\n"
+"Generate ReStructuredText using autosummary directives.\n"
+"\n"
+"sphinx-autogen is a frontend to sphinx.ext.autosummary.generate. It generates\n"
+"the reStructuredText files from the autosummary directives contained in the\n"
+"given input files.\n"
+"\n"
+"The format of the autosummary directive is documented in the\n"
+"``sphinx.ext.autosummary`` Python module and can be read using::\n"
+"\n"
+" pydoc sphinx.ext.autosummary\n"
+msgstr "\nGenera ReStructuredText mitjançant directrius de resum automàtic «autosummary».\n\n«sphinx-autogen» és un frontal per a sphinx.ext.autosummary.generate.\nGenera els fitxers en reStructuredText des de les directrius d'autosummary\ncontingudes en els fitxers d'entrada indicats.\n\nEl format de les directrius d'autosummary està documentat en el mòdul\n``sphinx.ext.autosummary`` de Python i es pot llegir mitjançant l'ordre següent::\n\npydoc sphinx.ext.autosummary\n"
-#: ext/napoleon/docstring.py:956
-msgid "Notes"
-msgstr "Notes"
+#: ext/autosummary/generate.py:899
+msgid "source files to generate rST files for"
+msgstr "fitxers font per a generar els fitxers rST per a"
-#: ext/napoleon/docstring.py:965
-msgid "Other Parameters"
-msgstr "Altres paràmetres"
+#: ext/autosummary/generate.py:907
+msgid "directory to place all output in"
+msgstr "directori per a col·locar tota l'eixida cap a"
-#: ext/napoleon/docstring.py:1001
-msgid "Receives"
-msgstr "Rebudes"
+#: ext/autosummary/generate.py:915
+#, python-format
+msgid "default suffix for files (default: %(default)s)"
+msgstr "sufix predeterminat per als fitxers (predeterminat: %(default)s)"
-#: ext/napoleon/docstring.py:1005
-msgid "References"
-msgstr "Referències"
+#: ext/autosummary/generate.py:923
+#, python-format
+msgid "custom template directory (default: %(default)s)"
+msgstr "directori de plantilles personalitzades (predeterminat: %(default)s)"
-#: ext/napoleon/docstring.py:1037
-msgid "Warns"
-msgstr "Avisos"
+#: ext/autosummary/generate.py:931
+#, python-format
+msgid "document imported members (default: %(default)s)"
+msgstr "document de membres importats (predeterminat: %(default)s)"
-#: ext/napoleon/docstring.py:1041
-msgid "Yields"
-msgstr "Rendiments"
+#: ext/autosummary/generate.py:940
+#, python-format
+msgid ""
+"document exactly the members in module __all__ attribute. (default: "
+"%(default)s)"
+msgstr "documenta exactament els membres en l'atribut __all__ del mòdul (predeterminat: %(default)s)."
-#: ext/autosummary/__init__.py:284
+#: ext/autosummary/__init__.py:235
#, python-format
msgid "autosummary references excluded document %r. Ignored."
msgstr "referències autosummary excloses del document %r. S'ignora."
-#: ext/autosummary/__init__.py:288
+#: ext/autosummary/__init__.py:239
#, python-format
msgid ""
"autosummary: stub file not found %r. Check your autosummary_generate "
"setting."
msgstr "autosummary: no s'ha trobat el fitxer stub %r. Verifiqueu la vostra configuració autosummary_generate."
-#: ext/autosummary/__init__.py:309
+#: ext/autosummary/__init__.py:260
msgid "A captioned autosummary requires :toctree: option. ignored."
msgstr "Un resum automàtic amb subtítols requerix l'opció «:toctree:». S'ignora."
-#: ext/autosummary/__init__.py:384
+#: ext/autosummary/__init__.py:329
#, python-format
msgid ""
"autosummary: failed to import %s.\n"
@@ -3669,548 +3724,585 @@ msgid ""
"%s"
msgstr "autosummary: ha fallat en importar %s.\nPossibles pistes:\n%s"
-#: ext/autosummary/__init__.py:404
-#, python-format
-msgid "failed to parse name %s"
-msgstr "ha fallat en l'anàlisi sintàctica del nom %s"
-
-#: ext/autosummary/__init__.py:412
+#: ext/autosummary/__init__.py:358
#, python-format
msgid "failed to import object %s"
msgstr "ha fallat en importar l'objecte %s"
-#: ext/autosummary/__init__.py:730
+#: ext/autosummary/__init__.py:652
#, python-format
msgid ""
"Summarised items should not include the current module. Replace %r with %r."
msgstr "Els elements resumits no han d'incloure el mòdul actual. Substituïu %r per %r."
-#: ext/autosummary/__init__.py:927
+#: ext/autosummary/__init__.py:850
#, python-format
msgid "autosummary_generate: file not found: %s"
msgstr "autosummary_generate: no s'ha trobat el fitxer: %s"
-#: ext/autosummary/__init__.py:937
+#: ext/autosummary/__init__.py:860
msgid ""
"autosummary generates .rst files internally. But your source_suffix does not"
" contain .rst. Skipped."
msgstr "«autosummary» genera internament els fitxers «.rst». Però el vostre source_suffix no conté cap «.rst». S'omet."
-#: ext/autosummary/generate.py:232 ext/autosummary/generate.py:450
+#: ext/intersphinx/_load.py:61
#, python-format
msgid ""
-"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
-"%s"
-msgstr "autosummary: ha fallat en determinar %r que s'ha de documentar, s'ha plantejat l'excepció següent:\n%s"
+"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
+"identifiers must be non-empty strings."
+msgstr "L'identificador «%r» del projecte intersphinx no és vàlid en intersphinx_mapping. Els identificadors de projecte han de ser cadenes no buides."
-#: ext/autosummary/generate.py:588
+#: ext/intersphinx/_load.py:72
#, python-format
-msgid "[autosummary] generating autosummary for: %s"
-msgstr "[autosummary] s'està generant autosummary per a: %s"
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
+"or list."
+msgstr "El valor «%r» no és vàlid en intersphinx_mapping[%r]. S'esperava una tupla o llista de dos elements."
-#: ext/autosummary/generate.py:592
+#: ext/intersphinx/_load.py:83
#, python-format
-msgid "[autosummary] writing to %s"
-msgstr "[autosummary] s'està escrivint a %s"
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
+" inventory locations) pair."
+msgstr "El valor «%r» no és vàlid en intersphinx_mapping[%r]. Els valors han de ser un parell (URI de destinació, ubicacions de l'inventari)."
-#: ext/autosummary/generate.py:637
+#: ext/intersphinx/_load.py:94
#, python-format
msgid ""
-"[autosummary] failed to import %s.\n"
-"Possible hints:\n"
-"%s"
-msgstr "[autosummary]: ha fallat en importar %s.\nPossibles pistes:\n%s"
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique non-empty strings."
+msgstr "El valor «%r» de l'URI de destinació no és vàlid en intersphinx_mapping[%r][0]. Els URI de destinació han de ser cadenes úniques no buides."
-#: ext/autosummary/generate.py:836
+#: ext/intersphinx/_load.py:103
+#, python-format
msgid ""
-"\n"
-"Generate ReStructuredText using autosummary directives.\n"
-"\n"
-"sphinx-autogen is a frontend to sphinx.ext.autosummary.generate. It generates\n"
-"the reStructuredText files from the autosummary directives contained in the\n"
-"given input files.\n"
-"\n"
-"The format of the autosummary directive is documented in the\n"
-"``sphinx.ext.autosummary`` Python module and can be read using::\n"
-"\n"
-" pydoc sphinx.ext.autosummary\n"
-msgstr "\nGenera ReStructuredText mitjançant directrius de resum automàtic «autosummary».\n\n«sphinx-autogen» és un frontal per a sphinx.ext.autosummary.generate.\nGenera els fitxers en reStructuredText des de les directrius d'autosummary\ncontingudes en els fitxers d'entrada indicats.\n\nEl format de les directrius d'autosummary està documentat en el mòdul\n``sphinx.ext.autosummary`` de Python i es pot llegir mitjançant l'ordre següent::\n\npydoc sphinx.ext.autosummary\n"
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique (other instance in intersphinx_mapping[%r])."
+msgstr "El valor «%r» de l'URI de destinació no és vàlid en intersphinx_mapping[%r][0]. Els URI de destinació han de ser únics (una altra instància en intersphinx_mapping[%r])."
-#: ext/autosummary/generate.py:858
-msgid "source files to generate rST files for"
-msgstr "fitxers font per a generar els fitxers rST per a"
+#: ext/intersphinx/_load.py:122
+#, python-format
+msgid ""
+"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
+"Inventory locations must be non-empty strings or None."
+msgstr "El valor «%r» d'ubicació de l'inventari no és vàlid en intersphinx_mapping[%r][1]. Les ubicacions de l'inventari han de ser cadenes no buides o «None»."
-#: ext/autosummary/generate.py:866
-msgid "directory to place all output in"
-msgstr "directori per a col·locar tota l'eixida cap a"
+#: ext/intersphinx/_load.py:132
+msgid "Invalid `intersphinx_mapping` configuration (1 error)."
+msgstr "Configureu «intersphinx_mapping» no vàlida (1 error)."
+
+#: ext/intersphinx/_load.py:135
+#, python-format
+msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
+msgstr "Configureu «intersphinx_mapping» no vàlida (%s errors)."
+
+#: ext/intersphinx/_load.py:158
+msgid "An invalid intersphinx_mapping entry was added after normalisation."
+msgstr "S'ha afegit una entrada intersphinx_mapping no vàlida després de la normalització."
+
+#: ext/intersphinx/_load.py:297
+#, python-format
+msgid "loading intersphinx inventory '%s' from %s ..."
+msgstr "s'està carregant l'inventari intersphinx «%s» de %s …"
+
+#: ext/intersphinx/_load.py:324
+msgid ""
+"encountered some issues with some of the inventories, but they had working "
+"alternatives:"
+msgstr "s'han trobat alguns problemes amb alguns dels inventaris, però tenien alternatives funcionals:"
+
+#: ext/intersphinx/_load.py:332
+#, python-format
+msgid ""
+"failed to reach any of the inventories with the following issues:\n"
+"%s"
+msgstr ""
-#: ext/autosummary/generate.py:874
+#: ext/intersphinx/_load.py:411
#, python-format
-msgid "default suffix for files (default: %(default)s)"
-msgstr "sufix predeterminat per als fitxers (predeterminat: %(default)s)"
+msgid "intersphinx inventory has moved: %s -> %s"
+msgstr "s'ha mogut l'inventari intersphinx: %s -> %s"
-#: ext/autosummary/generate.py:882
+#: ext/intersphinx/_resolve.py:53
#, python-format
-msgid "custom template directory (default: %(default)s)"
-msgstr "directori de plantilles personalitzades (predeterminat: %(default)s)"
+msgid "(in %s %s)"
+msgstr ""
-#: ext/autosummary/generate.py:890
+#: ext/intersphinx/_resolve.py:55
#, python-format
-msgid "document imported members (default: %(default)s)"
-msgstr "document de membres importats (predeterminat: %(default)s)"
+msgid "(in %s)"
+msgstr "(a %s)"
-#: ext/autosummary/generate.py:899
+#: ext/intersphinx/_resolve.py:112
#, python-format
-msgid ""
-"document exactly the members in module __all__ attribute. (default: "
-"%(default)s)"
-msgstr "documenta exactament els membres en l'atribut __all__ del mòdul. (predeterminat: %(default)s)"
-
-#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:909
-msgid "Remove existing files in the output directory that were not generated"
-msgstr "Elimina els fitxers existents en el directori d'eixida que no s'hagen generat"
+msgid "inventory '%s': duplicate matches found for %s:%s"
+msgstr "inventari «%s»: s'han trobat coincidències duplicades per a %s:%s"
-#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:944
+#: ext/intersphinx/_resolve.py:122
#, python-format
-msgid "Failed to remove %s: %s"
-msgstr "S'ha fallat en eliminar %s: %s"
+msgid "inventory '%s': multiple matches found for %s:%s"
+msgstr "inventari «%s»: s'han trobat múltiples coincidències per a %s:%s"
-#: ext/apidoc/_cli.py:28
-msgid ""
-"\n"
-"Look recursively in for Python modules and packages and create\n"
-"one reST file with automodule directives per package in the .\n"
-"\n"
-"The s can be file and/or directory patterns that will be\n"
-"excluded from generation.\n"
-"\n"
-"Note: By default this script will not overwrite already created files."
-msgstr "\nMireu recursivament a per als mòduls i paquets de Python\ni creeu un fitxer reST amb les directives «automodule» per paquet en el .\n\nEls poden ser fitxers i/o patrons de directori que seran\nexclosos de la generació.\n\nNota: De manera predeterminada, este script no sobreescriurà els fitxers que ja s'han creat."
+#: ext/intersphinx/_resolve.py:387
+#, python-format
+msgid "inventory for external cross-reference not found: %r"
+msgstr "no es troba l'inventari per a la referència creuada externa: %r"
-#: ext/apidoc/_cli.py:45
-msgid "path to module to document"
-msgstr "camí cap al mòdul que es documenta"
+#: ext/intersphinx/_resolve.py:396
+#, python-format
+msgid "invalid external cross-reference suffix: %r"
+msgstr "no es troba l'inventari per a la referència creuada externa: %r"
-#: ext/apidoc/_cli.py:50
-msgid ""
-"fnmatch-style file and/or directory patterns to exclude from generation"
-msgstr "fitxer d'estil fnmatch i/o patrons de directori que s'exclouran de la generació"
+#: ext/intersphinx/_resolve.py:407
+#, python-format
+msgid "domain for external cross-reference not found: %r"
+msgstr "no es troba el domini per a la referència creuada externa: %r"
-#: ext/apidoc/_cli.py:60
-msgid "directory to place all output"
-msgstr "directori per a col·locar tota l'eixida"
+#: ext/intersphinx/_resolve.py:561
+#, python-format
+msgid "external %s:%s reference target not found: %s"
+msgstr "%s externa: no es troba la destinació de la referència %s: %s"
-#: ext/apidoc/_cli.py:75
-msgid "maximum depth of submodules to show in the TOC (default: 4)"
-msgstr "profunditat màxima dels submòduls que es mostraran en la TOC (predeterminada: 4)"
+#: ext/autodoc/_dynamic/_loader.py:144
+#: ext/autodoc/_legacy_class_based/_documenters.py:882
+#, python-format
+msgid "error while formatting signature for %s: %s"
+msgstr "s'ha produït un error mentre es donava format a la signatura per a %s: %s"
-#: ext/apidoc/_cli.py:82
-msgid "overwrite existing files"
-msgstr "sobreescriu els fitxers existents"
+#: ext/autodoc/_dynamic/_loader.py:193
+#, python-format
+msgid "Ignoring invalid __all__ in module %s: %r"
+msgstr ""
-#: ext/apidoc/_cli.py:91
-msgid ""
-"follow symbolic links. Powerful when combined with "
-"collective.recipe.omelette."
-msgstr "seguir els enllaços simbòlics. Potent quan es combina amb el paquet collective.recipe.omelette."
+#: ext/autodoc/_dynamic/_loader.py:332 ext/autodoc/_dynamic/_signatures.py:496
+#: ext/autodoc/_dynamic/_signatures.py:612
+#: ext/autodoc/_legacy_class_based/_documenters.py:1284
+#: ext/autodoc/_legacy_class_based/_documenters.py:1372
+#: ext/autodoc/_legacy_class_based/_documenters.py:2906
+#, python-format
+msgid "Failed to get a function signature for %s: %s"
+msgstr "No s'ha pogut obtindre una signatura de funció per a %s: %s"
-#: ext/apidoc/_cli.py:99
-msgid "run the script without creating files"
-msgstr "executa l'script sense crear els fitxers"
+#: ext/autodoc/_dynamic/_type_comments.py:120
+#, python-format
+msgid "Failed to update signature for %r: parameter not found: %s"
+msgstr "No s'ha pogut actualitzar la signatura per a %r: no es troba el paràmetre: %s"
-#: ext/apidoc/_cli.py:106
-msgid "put documentation for each module on its own page"
-msgstr "posa la documentació per a cada mòdul en la seua pròpia pàgina"
+#: ext/autodoc/_dynamic/_type_comments.py:123
+#, python-format
+msgid "Failed to parse type_comment for %r: %s"
+msgstr "No s'ha pogut analitzar type_comment per a %r: %s"
-#: ext/apidoc/_cli.py:113
-msgid "include \"_private\" modules"
-msgstr "inclou «_private» en els mòduls"
+#: ext/autodoc/_dynamic/_docstrings.py:268
+#: ext/autodoc/_legacy_class_based/_documenters.py:2499
+#, python-format
+msgid "Invalid __slots__ found on %s. Ignored."
+msgstr "S'han trobat __slots__ no vàlids a %s. S'ignora."
-#: ext/apidoc/_cli.py:120
-msgid "filename of table of contents (default: modules)"
-msgstr "nom de fitxer de la taula de contingut (predeterminat: mòduls)"
+#: ext/autodoc/_dynamic/_signatures.py:102
+#: ext/autodoc/_legacy_class_based/_documenters.py:358
+#, python-format
+msgid "error while formatting arguments for %s: %s"
+msgstr "s'ha produït un error mentre es donava format als arguments per a %s: %s"
-#: ext/apidoc/_cli.py:127
-msgid "don't create a table of contents file"
-msgstr "no crea un fitxer de taula de contingut"
+#: ext/autodoc/_dynamic/_signatures.py:494
+#: ext/autodoc/_legacy_class_based/_documenters.py:1607
+#, python-format
+msgid "Failed to get a constructor signature for %s: %s"
+msgstr "No s'ha pogut obtindre un constructor de funció per a %s: %s"
-#: ext/apidoc/_cli.py:135
-msgid ""
-"don't create headings for the module/package packages (e.g. when the "
-"docstrings already contain them)"
-msgstr "no crea capçaleres per als paquets del mòdul/paquet (p. ex., quan les cadenes de documentació ja les contenen)"
+#: ext/autodoc/_dynamic/_signatures.py:498
+#: ext/autodoc/_legacy_class_based/_documenters.py:2235
+#: ext/autodoc/_legacy_class_based/_documenters.py:2355
+#, python-format
+msgid "Failed to get a method signature for %s: %s"
+msgstr "No s'ha pogut obtindre una signatura de mètode per a %s: %s"
-#: ext/apidoc/_cli.py:145
-msgid "put module documentation before submodule documentation"
-msgstr "posa la documentació del mòdul abans de la documentació del submòdul"
+#: ext/autodoc/_dynamic/_signatures.py:500
+#, python-format
+msgid "Failed to get a signature for %s: %s"
+msgstr ""
-#: ext/apidoc/_cli.py:152
-msgid ""
-"interpret module paths according to PEP-0420 implicit namespaces "
-"specification"
-msgstr "interpreta els camins dels mòduls segons l'especificació d'espais de nom implícits al PEP-0420"
+#: ext/autodoc/_dynamic/_preserve_defaults.py:156
+#, python-format
+msgid "Failed to parse a default argument value for %r: %s"
+msgstr "No s'ha pogut analitzar un valor d'argument predeterminat per a %r: %s"
-#: ext/apidoc/_cli.py:160
+#: ext/autodoc/_dynamic/_member_finder.py:420
+#, python-format
msgid ""
-"Comma-separated list of options to pass to automodule directive (or use "
-"SPHINX_APIDOC_OPTIONS)."
+"attribute %s is listed in :members: but is missing as it was not found in "
+"object %r"
msgstr ""
-#: ext/apidoc/_cli.py:170
-msgid "file suffix (default: rst)"
-msgstr "sufix del fitxer (predeterminat: rst)"
+#: ext/autodoc/_dynamic/_member_finder.py:473
+#: ext/autodoc/_legacy_class_based/_documenters.py:677
+#, python-format
+msgid ""
+"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
+"%s"
+msgstr "autodoc: ha fallat en determinar %s. %s (%r) que s'ha de documentar, s'ha plantejat l'excepció següent:\n%s"
-#: ext/apidoc/_cli.py:186
-msgid "generate a full project with sphinx-quickstart"
-msgstr "genera un projecte complet amb «sphinx-quickstart»"
+#: ext/autodoc/_legacy_class_based/_documenters.py:964
+#, python-format
+msgid "signature arguments or return annotation given for automodule %s"
+msgstr "arguments de signatura o anotació de retorn indicats per a «automodule» %s"
-#: ext/apidoc/_cli.py:193
-msgid "append module_path to sys.path, used when --full is given"
-msgstr "afig module_path a sys.path, s'utilitza quan s'indica el paràmetre «--full»"
+#: ext/autodoc/_legacy_class_based/_documenters.py:980
+#, python-format
+msgid ""
+"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
+"__all__"
+msgstr "__all__ ha de ser una llista de cadenes, no %r (en el mòdul %s) -s'ignora __all__-"
-#: ext/apidoc/_cli.py:200
-msgid "project name (default: root module name)"
-msgstr "nom del projecte (predeterminat: nom del mòdul arrel)"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1057
+#, python-format
+msgid ""
+"missing attribute mentioned in :members: option: module %s, attribute %s"
+msgstr "falta l'atribut esmentat en l'opció «:members:»: mòdul %s, atribut %s"
-#: ext/apidoc/_cli.py:207
-msgid "project author(s), used when --full is given"
-msgstr "autoria del projecte, s'utilitza quan s'indica el paràmetre «--full»"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1764
+#, python-format
+msgid "missing attribute %s in object %s"
+msgstr "falta l'atribut %s en l'objecte %s"
-#: ext/apidoc/_cli.py:214
-msgid "project version, used when --full is given"
-msgstr "versió del projecte, s'utilitza quan s'indica el paràmetre «--full»"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1876
+#, python-format
+msgid "alias of TypeVar(%s)"
+msgstr "àlies de TypeVar(%s)"
-#: ext/apidoc/_cli.py:222
-msgid "project release, used when --full is given, defaults to --doc-version"
-msgstr "llançament del projecte, s'utilitza quan s'indica el paràmetre «--full», predeterminat a «--doc-version»"
+#: builders/html/_build_info.py:32
+msgid "failed to read broken build info file (unknown version)"
+msgstr "s'ha fallat en llegir el fitxer d'informació de la compilació trencada (versió desconeguda)"
-#: ext/apidoc/_cli.py:226
-msgid "extension options"
-msgstr "opcions de l'extensió"
+#: builders/html/_build_info.py:36
+msgid "failed to read broken build info file (missing config entry)"
+msgstr "s'ha fallat en llegir el fitxer d'informació de la compilació trencada (falta l'entrada «config»)"
-#: ext/apidoc/_cli.py:232
-msgid "enable arbitrary extensions, used when --full is given"
-msgstr ""
+#: builders/html/_build_info.py:39
+msgid "failed to read broken build info file (missing tags entry)"
+msgstr "s'ha fallat en llegir el fitxer d'informació de la compilació trencada (falta l'entrada «tags»)"
-#: ext/apidoc/_cli.py:240
+#: builders/html/__init__.py:114
#, python-format
-msgid "enable %s extension, used when --full is given"
-msgstr ""
+msgid "The HTML pages are in %(outdir)s."
+msgstr "Les pàgines en HTML es troben a %(outdir)s."
-#: ext/apidoc/_cli.py:291
+#: builders/html/__init__.py:337
#, python-format
-msgid "%s is not a directory."
-msgstr "%s no és cap directori."
-
-#: ext/apidoc/_extension.py:50
-msgid "Running apidoc"
-msgstr ""
+msgid "Failed to read build info file: %r"
+msgstr "No s'ha pogut llegir el fitxer d'informació de la construcció: %r"
-#: ext/apidoc/_extension.py:102
-#, python-format
-msgid "apidoc_modules item %i must be a dict"
-msgstr ""
+#: builders/html/__init__.py:353
+msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+msgstr "build_info no coincidix, s'està copiant .buildinfo a .buildinfo.bak"
-#: ext/apidoc/_extension.py:110
-#, python-format
-msgid "apidoc_modules item %i must have a 'path' key"
-msgstr ""
+#: builders/html/__init__.py:355
+msgid "building [html]: "
+msgstr "es construïx [html]:"
-#: ext/apidoc/_extension.py:115
+#: builders/html/__init__.py:372
#, python-format
-msgid "apidoc_modules item %i 'path' must be a string"
-msgstr ""
+msgid ""
+"template %s has been changed since the previous build, all docs will be "
+"rebuilt"
+msgstr "s'ha canviat la plantilla %s des de la compilació anterior, es reconstruiran tots els documents"
-#: ext/apidoc/_extension.py:121
-#, python-format
-msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
-msgstr ""
+#: builders/html/__init__.py:496
+msgid "index"
+msgstr "índex"
-#: ext/apidoc/_extension.py:133
+#: builders/html/__init__.py:549
#, python-format
-msgid "apidoc_modules item %i must have a 'destination' key"
-msgstr ""
+msgid "Logo of %s"
+msgstr "Logotip de %s"
-#: ext/apidoc/_extension.py:140
-#, python-format
-msgid "apidoc_modules item %i 'destination' must be a string"
-msgstr ""
+#: builders/html/__init__.py:578
+msgid "next"
+msgstr "següent"
-#: ext/apidoc/_extension.py:147
-#, python-format
-msgid "apidoc_modules item %i 'destination' should be a relative path"
-msgstr ""
+#: builders/html/__init__.py:587
+msgid "previous"
+msgstr "anterior"
-#: ext/apidoc/_extension.py:157
-#, python-format
-msgid "apidoc_modules item %i cannot create destination directory: %s"
-msgstr ""
+#: builders/html/__init__.py:685
+msgid "generating indices"
+msgstr "s'estan generant els índexs"
-#: ext/apidoc/_extension.py:178
-#, python-format
-msgid "apidoc_modules item %i '%s' must be an int"
-msgstr ""
+#: builders/html/__init__.py:700
+msgid "writing additional pages"
+msgstr "s'estan escrivint les pàgines addicionals"
-#: ext/apidoc/_extension.py:192
+#: builders/html/__init__.py:783
#, python-format
-msgid "apidoc_modules item %i '%s' must be a boolean"
-msgstr ""
+msgid "cannot copy image file '%s': %s"
+msgstr "no es pot copiar el fitxer d'imatge «%s»: %s"
-#: ext/apidoc/_extension.py:210
-#, python-format
-msgid "apidoc_modules item %i has unexpected keys: %s"
-msgstr ""
+#: builders/html/__init__.py:795
+msgid "copying downloadable files... "
+msgstr "s'estan copiant els fitxers que es poden baixar… "
-#: ext/apidoc/_extension.py:247
+#: builders/html/__init__.py:807
#, python-format
-msgid "apidoc_modules item %i '%s' must be a sequence"
-msgstr ""
+msgid "cannot copy downloadable file %r: %s"
+msgstr "no s'ha pogut copiar el fitxer que es podia baixar %r: %s"
-#: ext/apidoc/_extension.py:256
+#: builders/html/__init__.py:853
#, python-format
-msgid "apidoc_modules item %i '%s' must contain strings"
-msgstr ""
+msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
+msgstr "No s'ha pogut copiar un fitxer en el directori «static» del tema: %s: %r"
-#: ext/apidoc/_generate.py:69
+#: builders/html/__init__.py:871
#, python-format
-msgid "Would create file %s."
-msgstr "S'hauria de crear el fitxer %s."
+msgid "Failed to copy a file in html_static_file: %s: %r"
+msgstr "No s'ha pogut copiar un fitxer en html_static_file: %s: %r"
-#: ext/intersphinx/_resolve.py:49
-#, python-format
-msgid "(in %s v%s)"
-msgstr "(a %s versió %s)"
+#: builders/html/__init__.py:906
+msgid "copying static files"
+msgstr "s'estan copiant els fitxers estàtics"
-#: ext/intersphinx/_resolve.py:51
+#: builders/html/__init__.py:923
#, python-format
-msgid "(in %s)"
-msgstr "(a %s)"
+msgid "cannot copy static file %r"
+msgstr "no s'ha pogut copiar el fitxer estàtic %r"
-#: ext/intersphinx/_resolve.py:108
-#, python-format
-msgid "inventory '%s': duplicate matches found for %s:%s"
-msgstr "inventari «%s»: s'han trobat coincidències duplicades per a %s:%s"
+#: builders/html/__init__.py:928
+msgid "copying extra files"
+msgstr "s'estan copiant els fitxers addicionals"
-#: ext/intersphinx/_resolve.py:118
+#: builders/html/__init__.py:938
#, python-format
-msgid "inventory '%s': multiple matches found for %s:%s"
-msgstr "inventari «%s»: s'han trobat múltiples coincidències per a %s:%s"
+msgid "cannot copy extra file %r"
+msgstr "no s'ha pogut copiar el fitxer addicional %r"
-#: ext/intersphinx/_resolve.py:383
+#: builders/html/__init__.py:944
#, python-format
-msgid "inventory for external cross-reference not found: %r"
-msgstr "no es troba l'inventari per a la referència creuada externa: %r"
+msgid "Failed to write build info file: %r"
+msgstr "No s'ha pogut escriure el fitxer d'informació de la construcció: %r"
-#: ext/intersphinx/_resolve.py:392
-#, python-format
-msgid "invalid external cross-reference suffix: %r"
-msgstr "no es troba l'inventari per a la referència creuada externa: %r"
+#: builders/html/__init__.py:994
+msgid ""
+"search index couldn't be loaded, but not all documents will be built: the "
+"index will be incomplete."
+msgstr "no s'ha pogut carregar l'índex de busca, i no es construiran tots els documents: l'índex estarà incomplet."
-#: ext/intersphinx/_resolve.py:403
+#: builders/html/__init__.py:1038
#, python-format
-msgid "domain for external cross-reference not found: %r"
-msgstr "no es troba el domini per a la referència creuada externa: %r"
+msgid "page %s matches two patterns in html_sidebars: %r and %r"
+msgstr "la pàgina %s coincidix amb dos patrons en html_sidebars: %r i %r"
-#: ext/intersphinx/_resolve.py:619
+#: builders/html/__init__.py:1204
#, python-format
-msgid "external %s:%s reference target not found: %s"
-msgstr "%s externa: no es troba la destinació de la referència %s: %s"
+msgid ""
+"a Unicode error occurred when rendering the page %s. Please make sure all "
+"config values that contain non-ASCII content are Unicode strings."
+msgstr "s'ha produït un error d'Unicode en representar la pàgina %s. Assegureu-vos que tots els valors de configuració que contenen contingut que no és ASCII són cadenes Unicode."
-#: ext/intersphinx/_load.py:60
+#: builders/html/__init__.py:1217
#, python-format
msgid ""
-"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
-"identifiers must be non-empty strings."
-msgstr "L'identificador «%r» del projecte intersphinx no és vàlid en intersphinx_mapping. Els identificadors de projecte han de ser cadenes no buides."
+"The '%s' theme does not support this version of Sphinx, because it uses the "
+"'style' field in HTML templates, which was was deprecated in Sphinx 5.1 and"
+" removed in Sphinx 7.0. The theme must be updated to use the 'styles' field "
+"instead. See https://www.sphinx-"
+"doc.org/en/master/development/html_themes/templating.html#styles"
+msgstr "El tema «%s» no admet aquesta versió de Sphinx, perquè utilitza el camp «style» en les plantilles HTML, el qual és obsolet en Sphinx 5.1 i s'ha eliminat en Sphinx 7.0. El tema s'ha d'actualitzar per a utilitzar en el seu lloc el camp «styles». Vegeu https://www.sphinx-doc.org/en/master/development/html_themes/templating.html#styles"
-#: ext/intersphinx/_load.py:71
+#: builders/html/__init__.py:1225
#, python-format
msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
-"or list."
-msgstr "El valor «%r» no és vàlid en intersphinx_mapping[%r]. S'esperava una tupla o llista de dos elements."
+"An error happened in rendering the page %s.\n"
+"Reason: %r"
+msgstr "S'ha produït un error en representar la pàgina %s.\nMotiu: %r"
-#: ext/intersphinx/_load.py:82
+#: builders/html/__init__.py:1258
+msgid "dumping object inventory"
+msgstr "s'està bolcant l'inventari d'objectes"
+
+#: builders/html/__init__.py:1266
#, python-format
-msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
-" inventory locations) pair."
-msgstr "El valor «%r» no és vàlid en intersphinx_mapping[%r]. Els valors han de ser un parell (URI de destinació, ubicacions de l'inventari)."
+msgid "dumping search index in %s"
+msgstr "s'està bolcant l'índex de busca a %s"
-#: ext/intersphinx/_load.py:93
+#: builders/html/__init__.py:1313
#, python-format
-msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique non-empty strings."
-msgstr "El valor «%r» de l'URI de destinació no és vàlid en intersphinx_mapping[%r][0]. Els URI de destinació han de ser cadenes úniques no buides."
+msgid "invalid js_file: %r, ignored"
+msgstr "js_file no vàlid: %r, s'ignora"
+
+#: builders/html/__init__.py:1347
+msgid "Many math_renderers are registered. But no math_renderer is selected."
+msgstr "S'han enregistrat molts math_renderer. Però no s'ha seleccionat math_renderer."
-#: ext/intersphinx/_load.py:102
+#: builders/html/__init__.py:1351
#, python-format
-msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique (other instance in intersphinx_mapping[%r])."
-msgstr "El valor «%r» de l'URI de destinació no és vàlid en intersphinx_mapping[%r][0]. Els URI de destinació han de ser únics (una altra instància en intersphinx_mapping[%r])."
+msgid "Unknown math_renderer %r is given."
+msgstr "S'ha donat un math_renderer %r desconegut."
-#: ext/intersphinx/_load.py:121
+#: builders/html/__init__.py:1365
#, python-format
-msgid ""
-"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
-"Inventory locations must be non-empty strings or None."
-msgstr "El valor «%r» d'ubicació de l'inventari no és vàlid en intersphinx_mapping[%r][1]. Les ubicacions de l'inventari han de ser cadenes no buides o «None»."
+msgid "html_extra_path entry %r is placed inside outdir"
+msgstr "l'entrada html_extra_path %r es col·loca dins del directori d'eixida"
-#: ext/intersphinx/_load.py:131
-msgid "Invalid `intersphinx_mapping` configuration (1 error)."
-msgstr "Configureu «intersphinx_mapping» no vàlida (1 error)."
+#: builders/html/__init__.py:1370
+#, python-format
+msgid "html_extra_path entry %r does not exist"
+msgstr "l'entrada html_extra_path %r no existix"
-#: ext/intersphinx/_load.py:134
+#: builders/html/__init__.py:1385
#, python-format
-msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
-msgstr "Configureu «intersphinx_mapping» no vàlida (%s errors)."
+msgid "html_static_path entry %r is placed inside outdir"
+msgstr "l'entrada html_static_path %r es col·loca dins del directori d'eixida"
-#: ext/intersphinx/_load.py:157
-msgid "An invalid intersphinx_mapping entry was added after normalisation."
-msgstr "S'ha afegit una entrada intersphinx_mapping no vàlida després de la normalització."
+#: builders/html/__init__.py:1390
+#, python-format
+msgid "html_static_path entry %r does not exist"
+msgstr "l'entrada html_static_path %r no existix"
-#: ext/intersphinx/_load.py:261
+#: builders/html/__init__.py:1401 builders/latex/__init__.py:497
#, python-format
-msgid "loading intersphinx inventory '%s' from %s ..."
-msgstr "s'està carregant l'inventari intersphinx «%s» de %s …"
+msgid "logo file %r does not exist"
+msgstr "el fitxer de logotip %r no existix"
+
+#: builders/html/__init__.py:1412
+#, python-format
+msgid "favicon file %r does not exist"
+msgstr "el fitxer icona de web %r no existix"
-#: ext/intersphinx/_load.py:287
+#: builders/html/__init__.py:1425
+#, python-format
msgid ""
-"encountered some issues with some of the inventories, but they had working "
-"alternatives:"
-msgstr "s'han trobat alguns problemes amb alguns dels inventaris, però tenien alternatives funcionals:"
+"Values in 'html_sidebars' must be a list of strings. At least one pattern "
+"has a string value: %s. Change to `html_sidebars = %r`."
+msgstr "Els valors a «html_sidebars» han de ser una llista de cadenes. Almenys un patró té un valor de cadena: %s. Canvia a «html_sidebars = %r»."
-#: ext/intersphinx/_load.py:297
-msgid "failed to reach any of the inventories with the following issues:"
-msgstr "s'ha fallat en arribar fins a cap dels inventaris amb els problemes següents:"
+#: builders/html/__init__.py:1438
+msgid ""
+"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
+"configuration options)"
+msgstr "HTML 4 ja no és compatible amb Sphinx. (s'ha detectat «html4_writer=true» en les opcions de configuració)"
-#: ext/intersphinx/_load.py:361
+#: builders/html/__init__.py:1454
#, python-format
-msgid "intersphinx inventory has moved: %s -> %s"
-msgstr "s'ha mogut l'inventari intersphinx: %s -> %s"
+msgid "%s %s documentation"
+msgstr "%s %s documentació"
-#: ext/autodoc/__init__.py:150
+#: builders/latex/theming.py:87
#, python-format
-msgid "invalid value for member-order option: %s"
-msgstr "valor no vàlid per a l'opció de l'ordre de membre: %s"
+msgid "%r doesn't have \"theme\" setting"
+msgstr "%r no té la configuració «theme»"
-#: ext/autodoc/__init__.py:158
+#: builders/latex/theming.py:90
#, python-format
-msgid "invalid value for class-doc-from option: %s"
-msgstr "valor no vàlid per a l'opció des de la documentació de classes: %s"
+msgid "%r doesn't have \"%s\" setting"
+msgstr "%r no té la configuració «%s»"
-#: ext/autodoc/__init__.py:460
-#, python-format
-msgid "invalid signature for auto%s (%r)"
-msgstr "signatura no vàlida per a auto%s (%r)"
+#: builders/latex/transforms.py:120
+msgid "Failed to get a docname!"
+msgstr "No s'ha pogut obtindre el docname!"
-#: ext/autodoc/__init__.py:579
+#: builders/latex/transforms.py:121
#, python-format
-msgid "error while formatting arguments for %s: %s"
-msgstr "s'ha produït un error mentre es donava format als arguments per a %s: %s"
+msgid "Failed to get a docname for source %r!"
+msgstr "S'ha fallat en obtindre un nom de document per a la font %r!"
-#: ext/autodoc/__init__.py:898
+#: builders/latex/transforms.py:487
#, python-format
-msgid ""
-"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
-"%s"
-msgstr "autodoc: ha fallat en determinar %s. %s (%r) que s'ha de documentar, s'ha plantejat l'excepció següent:\n%s"
+msgid "No footnote was found for given reference node %r"
+msgstr "No s'ha trobat cap nota a peu de pàgina per al node de referència %r donat"
-#: ext/autodoc/__init__.py:1021
+#: builders/latex/__init__.py:115
#, python-format
+msgid "The LaTeX files are in %(outdir)s."
+msgstr "Els fitxers en LaTeX es troben a %(outdir)s."
+
+#: builders/latex/__init__.py:118
msgid ""
-"don't know which module to import for autodocumenting %r (try placing a "
-"\"module\" or \"currentmodule\" directive in the document, or giving an "
-"explicit module name)"
-msgstr "es desconeix quin és el mòdul que s'importarà per al document automàtic %r (proveu de col·locar una directiva «module» o «currentmodule» en el document o doneu-li un nom explícit al mòdul)"
+"\n"
+"Run 'make' in that directory to run these through (pdf)latex\n"
+"(use `make latexpdf' here to do that automatically)."
+msgstr "\nExecuteu l'ordre «make» en este directori per a executar-les\nmitjançant el (pdf)latex (utilitzeu l'ordre «make latexpdf» per a fer-ho\nautomàticament)."
-#: ext/autodoc/__init__.py:1080
-#, python-format
-msgid "A mocked object is detected: %r"
-msgstr "S'ha detectat un objecte simulat: %r"
+#: builders/latex/__init__.py:156
+msgid "no \"latex_documents\" config value found; no documents will be written"
+msgstr "no s'ha trobat el valor de configuració «latex_documents»: no s'escriurà cap document"
-#: ext/autodoc/__init__.py:1103
+#: builders/latex/__init__.py:167
#, python-format
-msgid "error while formatting signature for %s: %s"
-msgstr "s'ha produït un error mentre es donava format a la signatura per a %s: %s"
+msgid "\"latex_documents\" config value references unknown document %s"
+msgstr "El valor de configuració «latex_documents» fa referència a un document %s desconegut"
-#: ext/autodoc/__init__.py:1177
-msgid "\"::\" in automodule name doesn't make sense"
-msgstr "«::» en el nom de l'«automodule» no té sentit"
+#: builders/latex/__init__.py:421
+msgid "copying TeX support files"
+msgstr "s'estan copiant els fitxers de suport de TeX"
-#: ext/autodoc/__init__.py:1185
-#, python-format
-msgid "signature arguments or return annotation given for automodule %s"
-msgstr "arguments de signatura o anotació de retorn indicats per a «automodule» %s"
+#: builders/latex/__init__.py:458
+msgid "copying additional files"
+msgstr "s'estan copiant els fitxers addicionals"
-#: ext/autodoc/__init__.py:1201
+#: builders/latex/__init__.py:529
#, python-format
-msgid ""
-"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
-"__all__"
-msgstr "__all__ ha de ser una llista de cadenes, no %r (en el mòdul %s) -s'ignora __all__-"
+msgid "Unknown configure key: latex_elements[%r], ignored."
+msgstr "Clau de configuració desconeguda: latex_elements[%r], s'ignora."
-#: ext/autodoc/__init__.py:1278
+#: builders/latex/__init__.py:537
#, python-format
-msgid ""
-"missing attribute mentioned in :members: option: module %s, attribute %s"
-msgstr "falta l'atribut esmentat en l'opció «:members:»: mòdul %s, atribut %s"
+msgid "Unknown theme option: latex_theme_options[%r], ignored."
+msgstr "Opció desconeguda de tema: latex_theme_options[%r], s'ignora."
-#: ext/autodoc/__init__.py:1505 ext/autodoc/__init__.py:1593
-#: ext/autodoc/__init__.py:3127
+#: environment/collectors/toctree.py:259
#, python-format
-msgid "Failed to get a function signature for %s: %s"
-msgstr "No s'ha pogut obtindre una signatura de funció per a %s: %s"
+msgid "%s is already assigned section numbers (nested numbered toctree?)"
+msgstr "%s ja té assignats números de secció (toctree amb numeració imbricada?)"
-#: ext/autodoc/__init__.py:1828
+#: environment/collectors/asset.py:98
#, python-format
-msgid "Failed to get a constructor signature for %s: %s"
-msgstr "No s'ha pogut obtindre un constructor de funció per a %s: %s"
+msgid "image file not readable: %s"
+msgstr "el fitxer d'imatge no es pot llegir: %s"
-#: ext/autodoc/__init__.py:1966
+#: environment/collectors/asset.py:126
#, python-format
-msgid "Bases: %s"
-msgstr "Bases: %s"
+msgid "image file %s not readable: %s"
+msgstr "el fitxer d'imatge %s no es pot llegir: %s"
-#: ext/autodoc/__init__.py:1985
+#: environment/collectors/asset.py:165
#, python-format
-msgid "missing attribute %s in object %s"
-msgstr "falta l'atribut %s en l'objecte %s"
+msgid "download file not readable: %s"
+msgstr "el fitxer de baixada no es pot llegir: %s"
-#: ext/autodoc/__init__.py:2081 ext/autodoc/__init__.py:2110
-#: ext/autodoc/__init__.py:2204
+#: environment/adapters/toctree.py:335
#, python-format
-msgid "alias of %s"
-msgstr "àlies de %s"
+msgid "circular toctree references detected, ignoring: %s <- %s"
+msgstr "s'han detectat referències circulars del toctree, s'ignora: %s <- %s"
-#: ext/autodoc/__init__.py:2097
+#: environment/adapters/toctree.py:360
#, python-format
-msgid "alias of TypeVar(%s)"
-msgstr "àlies de TypeVar(%s)"
+msgid ""
+"toctree contains reference to document %r that doesn't have a title: no link"
+" will be generated"
+msgstr "el toctree conté una referència cap al document %r, el qual no conté un títol: no es generarà cap enllaç"
-#: ext/autodoc/__init__.py:2456 ext/autodoc/__init__.py:2576
+#: environment/adapters/toctree.py:375
#, python-format
-msgid "Failed to get a method signature for %s: %s"
-msgstr "No s'ha pogut obtindre una signatura de mètode per a %s: %s"
+msgid "toctree contains reference to non-included document %r"
+msgstr "el toctree conté una referència cap a un document no inclòs %r"
-#: ext/autodoc/__init__.py:2720
+#: environment/adapters/toctree.py:378
#, python-format
-msgid "Invalid __slots__ found on %s. Ignored."
-msgstr "S'han trobat __slots__ no vàlids a %s. S'ignora."
+msgid "toctree contains reference to non-existing document %r"
+msgstr "el toctree conté una referència cap al document inexistent %r"
-#: ext/autodoc/preserve_defaults.py:195
+#: environment/adapters/indexentries.py:122
#, python-format
-msgid "Failed to parse a default argument value for %r: %s"
-msgstr "No s'ha pogut analitzar un valor d'argument predeterminat per a %r: %s"
+msgid "see %s"
+msgstr "vegeu %s"
-#: ext/autodoc/type_comment.py:151
+#: environment/adapters/indexentries.py:132
#, python-format
-msgid "Failed to update signature for %r: parameter not found: %s"
-msgstr "No s'ha pogut actualitzar la signatura per a %r: no es troba el paràmetre: %s"
+msgid "see also %s"
+msgstr "vegeu també %s"
-#: ext/autodoc/type_comment.py:154
+#: environment/adapters/indexentries.py:140
#, python-format
-msgid "Failed to parse type_comment for %r: %s"
-msgstr "No s'ha pogut analitzar type_comment per a %r: %s"
+msgid "unknown index entry type %r"
+msgstr "tipus d'entrada %r amb un índex desconegut"
diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo
index 7b1521c4231..55516460e5d 100644
Binary files a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo differ
diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po
index f09a9bb52b5..dcf3155e824 100644
--- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po
+++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2025-02-18 00:33+0000\n"
+"POT-Creation-Date: 2025-12-01 16:14+0000\n"
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
"Last-Translator: Julien Malard , 2019\n"
"Language-Team: Kaqchikel (http://app.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n"
@@ -19,6 +19,127 @@ msgstr ""
"Language: cak\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: roles.py:205
+#, python-format
+msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgstr ""
+
+#: roles.py:228
+#, python-format
+msgid "invalid CVE number %s"
+msgstr ""
+
+#: roles.py:250
+#, python-format
+msgid "Common Weakness Enumeration; CWE %s"
+msgstr ""
+
+#: roles.py:273
+#, python-format
+msgid "invalid CWE number %s"
+msgstr ""
+
+#: roles.py:293
+#, python-format
+msgid "Python Enhancement Proposals; PEP %s"
+msgstr ""
+
+#: roles.py:316
+#, python-format
+msgid "invalid PEP number %s"
+msgstr ""
+
+#: roles.py:354
+#, python-format
+msgid "invalid RFC number %s"
+msgstr ""
+
+#: theming.py:117
+#, python-format
+msgid ""
+"Theme configuration sections other than [theme] and [options] are not "
+"supported (tried to get a value from %r)."
+msgstr ""
+
+#: theming.py:122
+#, python-format
+msgid "setting %s.%s occurs in none of the searched theme configs"
+msgstr ""
+
+#: theming.py:137
+#, python-format
+msgid "unsupported theme option %r given"
+msgstr ""
+
+#: theming.py:218
+#, python-format
+msgid "file %r on theme path is not a valid zipfile or contains no theme"
+msgstr ""
+
+#: theming.py:238
+#, python-format
+msgid "no theme named %r found (missing theme.toml?)"
+msgstr ""
+
+#: theming.py:278
+#, python-format
+msgid "The %r theme has circular inheritance"
+msgstr ""
+
+#: theming.py:286
+#, python-format
+msgid ""
+"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
+"are: %s"
+msgstr ""
+
+#: theming.py:292
+#, python-format
+msgid "The %r theme has too many ancestors"
+msgstr ""
+
+#: theming.py:320
+#, python-format
+msgid "no theme configuration file found in %r"
+msgstr ""
+
+#: theming.py:345 theming.py:398
+#, python-format
+msgid "theme %r doesn't have the \"theme\" table"
+msgstr ""
+
+#: theming.py:349
+#, python-format
+msgid "The %r theme \"[theme]\" table is not a table"
+msgstr ""
+
+#: theming.py:353 theming.py:401
+#, python-format
+msgid "The %r theme must define the \"theme.inherit\" setting"
+msgstr ""
+
+#: theming.py:357
+#, python-format
+msgid "The %r theme \"[options]\" table is not a table"
+msgstr ""
+
+#: theming.py:376
+#, python-format
+msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+msgstr ""
+
+#: project.py:72
+#, python-format
+msgid ""
+"multiple files found for the document \"%s\": %s\n"
+"Use %r for the build."
+msgstr ""
+
+#: project.py:87
+#, python-format
+msgid "Ignored unreadable document %r."
+msgstr ""
+
#: extension.py:58
#, python-format
msgid ""
@@ -33,127 +154,154 @@ msgid ""
"cannot be built with the loaded version (%s)."
msgstr ""
-#: application.py:212
+#: highlighting.py:170
+#, python-format
+msgid "Pygments lexer name %r is not known"
+msgstr ""
+
+#: highlighting.py:209
+#, python-format
+msgid ""
+"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
+"Retrying in relaxed mode."
+msgstr ""
+
+#: events.py:92
+#, python-format
+msgid "Event %r already present"
+msgstr ""
+
+#: events.py:386
+#, python-format
+msgid "Unknown event name: %s"
+msgstr ""
+
+#: events.py:451
+#, python-format
+msgid "Handler %r for event %r threw an exception"
+msgstr ""
+
+#: application.py:218
#, python-format
msgid "Cannot find source directory (%s)"
msgstr ""
-#: application.py:217
+#: application.py:223
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
-#: application.py:222
+#: application.py:228
msgid "Source directory and destination directory cannot be identical"
msgstr ""
-#: application.py:252
+#: application.py:258
#, python-format
msgid "Running Sphinx v%s"
msgstr ""
-#: application.py:278
+#: application.py:286
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr ""
-#: application.py:297
+#: application.py:305
msgid "making output directory"
msgstr ""
-#: application.py:302 registry.py:538
+#: application.py:310 registry.py:540
#, python-format
msgid "while setting up extension %s:"
msgstr ""
-#: application.py:309
+#: application.py:317
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
-#: application.py:346
+#: application.py:360
#, python-format
msgid "loading translations [%s]... "
msgstr ""
-#: application.py:370 util/display.py:89
+#: application.py:384 util/display.py:89
msgid "done"
msgstr "xk'isïk"
-#: application.py:372
+#: application.py:386
msgid "not available for built-in messages"
msgstr ""
-#: application.py:386
+#: application.py:400
msgid "loading pickled environment"
msgstr ""
-#: application.py:394
+#: application.py:408
#, python-format
msgid "failed: %s"
msgstr "sachoj: %s"
-#: application.py:407
+#: application.py:423
msgid "No builder selected, using default: html"
msgstr ""
-#: application.py:439
+#: application.py:455
msgid "build finished with problems."
msgstr ""
-#: application.py:441
+#: application.py:457
msgid "build succeeded."
msgstr ""
-#: application.py:446
+#: application.py:462
msgid ""
"build finished with problems, 1 warning (with warnings treated as errors)."
msgstr ""
-#: application.py:450
+#: application.py:466
msgid "build finished with problems, 1 warning."
msgstr ""
-#: application.py:452
+#: application.py:468
msgid "build succeeded, 1 warning."
msgstr ""
-#: application.py:458
+#: application.py:474
#, python-format
msgid ""
"build finished with problems, %s warnings (with warnings treated as errors)."
msgstr ""
-#: application.py:462
+#: application.py:478
#, python-format
msgid "build finished with problems, %s warnings."
msgstr ""
-#: application.py:464
+#: application.py:480
#, python-format
msgid "build succeeded, %s warnings."
msgstr ""
-#: application.py:1026
+#: application.py:1020
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
-#: application.py:1119
+#: application.py:1113
#, python-format
msgid "directive %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1145 application.py:1173
+#: application.py:1139 application.py:1167
#, python-format
msgid "role %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1770
+#: application.py:1766
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@@ -161,12 +309,12 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1775
+#: application.py:1771
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
-#: application.py:1779
+#: application.py:1775
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@@ -174,82 +322,214 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1784
+#: application.py:1780
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
-#: application.py:1792 application.py:1796
+#: application.py:1788 application.py:1792
#, python-format
msgid "doing serial %s"
msgstr ""
-#: config.py:355
+#: registry.py:162
#, python-format
-msgid "config directory doesn't contain a conf.py file (%s)"
+msgid "Builder class %s has no \"name\" attribute"
+msgstr ""
+
+#: registry.py:166
+#, python-format
+msgid "Builder %r already exists (in module %s)"
+msgstr ""
+
+#: registry.py:182
+#, python-format
+msgid "Builder name %s not registered or available through entry point"
+msgstr ""
+
+#: registry.py:192
+#, python-format
+msgid "Builder name %s not registered"
+msgstr ""
+
+#: registry.py:199
+#, python-format
+msgid "domain %s already registered"
+msgstr ""
+
+#: registry.py:223 registry.py:244 registry.py:257
+#, python-format
+msgid "domain %s not yet registered"
+msgstr ""
+
+#: registry.py:230
+#, python-format
+msgid "The %r directive is already registered to domain %s"
+msgstr ""
+
+#: registry.py:248
+#, python-format
+msgid "The %r role is already registered to domain %s"
+msgstr ""
+
+#: registry.py:261
+#, python-format
+msgid "The %r index is already registered to domain %s"
+msgstr ""
+
+#: registry.py:308
+#, python-format
+msgid "The %r object_type is already registered"
+msgstr ""
+
+#: registry.py:339
+#, python-format
+msgid "The %r crossref_type is already registered"
+msgstr ""
+
+#: registry.py:348
+#, python-format
+msgid "source_suffix %r is already registered"
+msgstr ""
+
+#: registry.py:358
+#, python-format
+msgid "source_parser for %r is already registered"
+msgstr ""
+
+#: registry.py:367
+#, python-format
+msgid "Source parser for %s not registered"
+msgstr ""
+
+#: registry.py:388
+#, python-format
+msgid "Translator for %r already exists"
+msgstr ""
+
+#: registry.py:405
+#, python-format
+msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
msgstr ""
-#: config.py:366
+#: registry.py:498
+#, python-format
+msgid "enumerable_node %r already registered"
+msgstr ""
+
+#: registry.py:514
+#, python-format
+msgid "math renderer %s is already registered"
+msgstr ""
+
+#: registry.py:531
+#, python-format
msgid ""
-"Invalid configuration value found: 'language = None'. Update your "
-"configuration to a valid language code. Falling back to 'en' (English)."
+"the extension %r was already merged with Sphinx since version %s; this "
+"extension is ignored."
+msgstr ""
+
+#: registry.py:545
+msgid "Original exception:\n"
+msgstr ""
+
+#: registry.py:547
+#, python-format
+msgid "Could not import extension %s"
+msgstr ""
+
+#: registry.py:554
+#, python-format
+msgid ""
+"extension %r has no setup() function; is it really a Sphinx extension "
+"module?"
+msgstr ""
+
+#: registry.py:567
+#, python-format
+msgid ""
+"The %s extension used by this project needs at least Sphinx v%s; it "
+"therefore cannot be built with this version."
+msgstr ""
+
+#: registry.py:579
+#, python-format
+msgid ""
+"extension %r returned an unsupported object from its setup() function; it "
+"should return None or a metadata dictionary"
+msgstr ""
+
+#: registry.py:605
+#, python-format
+msgid "`None` is not a valid filetype for %r."
+msgstr ""
+
+#: config.py:351
+#, python-format
+msgid "config directory doesn't contain a conf.py file (%s)"
msgstr ""
-#: config.py:394
+#: config.py:374
#, python-format
msgid "'%s' must be '0' or '1', got '%s'"
msgstr ""
-#: config.py:399
+#: config.py:379
#, python-format
msgid ""
"cannot override dictionary config setting %r, ignoring (use %r to set "
"individual elements)"
msgstr ""
-#: config.py:411
+#: config.py:391
#, python-format
msgid "invalid number %r for config value %r, ignoring"
msgstr ""
-#: config.py:419
+#: config.py:399
#, python-format
msgid "cannot override config setting %r with unsupported type, ignoring"
msgstr ""
-#: config.py:442
+#: config.py:422
#, python-format
msgid "unknown config value %r in override, ignoring"
msgstr ""
-#: config.py:496
+#: config.py:476
#, python-format
msgid "No such config value: %r"
msgstr ""
-#: config.py:524
+#: config.py:504
#, python-format
msgid "Config value %r already present"
msgstr ""
-#: config.py:561
+#: config.py:541
#, python-format
msgid ""
"cannot cache unpickleable configuration value: %r (because it contains a "
"function, class, or module object)"
msgstr ""
-#: config.py:603
+#: config.py:577
+msgid ""
+"Invalid configuration value found: 'language = None'. Update your "
+"configuration to a valid language code. Falling back to 'en' (English)."
+msgstr ""
+
+#: config.py:599
#, python-format
msgid "There is a syntax error in your configuration file: %s\n"
msgstr ""
-#: config.py:607
+#: config.py:603
msgid ""
"The configuration file (or one of the modules it imports) called sys.exit()"
msgstr ""
-#: config.py:615
+#: config.py:611
#, python-format
msgid ""
"There is a programmable error in your configuration file:\n"
@@ -257,471 +537,627 @@ msgid ""
"%s"
msgstr ""
-#: config.py:637
+#: config.py:633
#, python-format
msgid "Failed to convert %r to a frozenset"
msgstr ""
-#: config.py:655 config.py:663
+#: config.py:651 config.py:659
#, python-format
msgid "Converting `source_suffix = %r` to `source_suffix = %r`."
msgstr ""
-#: config.py:669
+#: config.py:665
#, python-format
msgid ""
"The config value `source_suffix' expects a dictionary, a string, or a list "
"of strings. Got `%r' instead (type %s)."
msgstr ""
-#: config.py:690
+#: config.py:686
#, python-format
msgid "Section %s"
msgstr ""
-#: config.py:691
+#: config.py:687
#, python-format
msgid "Fig. %s"
msgstr "Ruwachib'äl %s"
-#: config.py:692
+#: config.py:688
#, python-format
msgid "Table %s"
msgstr "Kik'ajtz'ïk %s"
-#: config.py:693
+#: config.py:689
#, python-format
msgid "Listing %s"
msgstr ""
-#: config.py:802
+#: config.py:798
#, python-brace-format
msgid ""
"The config value `{name}` has to be a one of {candidates}, but `{current}` "
"is given."
msgstr ""
-#: config.py:833
+#: config.py:829
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}'; expected "
"{permitted}."
msgstr ""
-#: config.py:850
+#: config.py:846
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}', defaults to "
"`{default.__name__}'."
msgstr ""
-#: config.py:862
+#: config.py:858
#, python-format
msgid "primary_domain %r not found, ignored."
msgstr ""
-#: config.py:882
+#: config.py:878
msgid ""
"Sphinx now uses \"index\" as the master document by default. To keep pre-2.0"
" behaviour, set \"master_doc = 'contents'\"."
msgstr ""
-#: highlighting.py:170
-#, python-format
-msgid "Pygments lexer name %r is not known"
+#: config.py:892
+msgid ""
+"Support for source encodings other than UTF-8 is deprecated and will be "
+"removed in Sphinx 10. Please comment at https://github.com/sphinx-"
+"doc/sphinx/issues/13665 if this causes a problem."
msgstr ""
-#: highlighting.py:209
-#, python-format
-msgid ""
-"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
-"Retrying in relaxed mode."
+#: environment/__init__.py:89
+msgid "new config"
msgstr ""
-#: theming.py:115
-#, python-format
-msgid ""
-"Theme configuration sections other than [theme] and [options] are not "
-"supported (tried to get a value from %r)."
+#: environment/__init__.py:90
+msgid "config changed"
msgstr ""
-#: theming.py:120
-#, python-format
-msgid "setting %s.%s occurs in none of the searched theme configs"
+#: environment/__init__.py:91
+msgid "extensions changed"
msgstr ""
-#: theming.py:135
-#, python-format
-msgid "unsupported theme option %r given"
+#: environment/__init__.py:261
+msgid "build environment version not current"
msgstr ""
-#: theming.py:208
-#, python-format
-msgid "file %r on theme path is not a valid zipfile or contains no theme"
+#: environment/__init__.py:263
+msgid "source directory has changed"
msgstr ""
-#: theming.py:228
+#: environment/__init__.py:350
#, python-format
-msgid "no theme named %r found (missing theme.toml?)"
+msgid "The configuration has changed (1 option: %r)"
msgstr ""
-#: theming.py:268
+#: environment/__init__.py:355
#, python-format
-msgid "The %r theme has circular inheritance"
+msgid "The configuration has changed (%d options: %s)"
msgstr ""
-#: theming.py:276
+#: environment/__init__.py:361
#, python-format
-msgid ""
-"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
-"are: %s"
+msgid "The configuration has changed (%d options: %s, ...)"
msgstr ""
-#: theming.py:282
-#, python-format
-msgid "The %r theme has too many ancestors"
+#: environment/__init__.py:404
+msgid ""
+"This environment is incompatible with the selected builder, please choose "
+"another doctree directory."
msgstr ""
-#: theming.py:310
+#: environment/__init__.py:518
#, python-format
-msgid "no theme configuration file found in %r"
+msgid "Failed to scan documents in %s: %r"
msgstr ""
-#: theming.py:335 theming.py:388
+#: environment/__init__.py:645 ext/intersphinx/_resolve.py:238
#, python-format
-msgid "theme %r doesn't have the \"theme\" table"
+msgid "Domain %r is not registered"
msgstr ""
-#: theming.py:339
-#, python-format
-msgid "The %r theme \"[theme]\" table is not a table"
+#: environment/__init__.py:811
+msgid "document isn't included in any toctree"
msgstr ""
-#: theming.py:343 theming.py:391
-#, python-format
-msgid "The %r theme must define the \"theme.inherit\" setting"
+#: environment/__init__.py:922
+msgid "self referenced toctree found. Ignored."
msgstr ""
-#: theming.py:347
+#: environment/__init__.py:952
#, python-format
-msgid "The %r theme \"[options]\" table is not a table"
+msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
msgstr ""
-#: theming.py:366
-#, python-format
-msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+#: locale/__init__.py:229
+msgid "Attention"
msgstr ""
-#: events.py:77
-#, python-format
-msgid "Event %r already present"
+#: locale/__init__.py:230
+msgid "Caution"
msgstr ""
-#: events.py:370
-#, python-format
-msgid "Unknown event name: %s"
+#: locale/__init__.py:231
+msgid "Danger"
msgstr ""
-#: events.py:416
-#, python-format
-msgid "Handler %r for event %r threw an exception"
-msgstr ""
+#: locale/__init__.py:232
+msgid "Error"
+msgstr "Sachoj"
-#: project.py:72
-#, python-format
-msgid ""
-"multiple files found for the document \"%s\": %s\n"
-"Use %r for the build."
+#: locale/__init__.py:233
+msgid "Hint"
msgstr ""
-#: project.py:87
-#, python-format
-msgid "Ignored unreadable document %r."
+#: locale/__init__.py:234
+msgid "Important"
msgstr ""
-#: registry.py:167
-#, python-format
-msgid "Builder class %s has no \"name\" attribute"
+#: locale/__init__.py:235
+msgid "Note"
msgstr ""
-#: registry.py:171
-#, python-format
-msgid "Builder %r already exists (in module %s)"
-msgstr ""
+#: locale/__init__.py:236
+msgid "See also"
+msgstr "Tatz'u chuqa'"
-#: registry.py:187
-#, python-format
-msgid "Builder name %s not registered or available through entry point"
+#: locale/__init__.py:237
+msgid "Tip"
msgstr ""
-#: registry.py:197
-#, python-format
-msgid "Builder name %s not registered"
+#: locale/__init__.py:238
+msgid "Warning"
msgstr ""
-#: registry.py:204
+#: builders/texinfo.py:41
#, python-format
-msgid "domain %s already registered"
+msgid "The Texinfo files are in %(outdir)s."
msgstr ""
-#: registry.py:228 registry.py:249 registry.py:262
-#, python-format
-msgid "domain %s not yet registered"
+#: builders/texinfo.py:44
+msgid ""
+"\n"
+"Run 'make' in that directory to run these through makeinfo\n"
+"(use 'make info' here to do that automatically)."
msgstr ""
-#: registry.py:235
-#, python-format
-msgid "The %r directive is already registered to domain %s"
+#: builders/texinfo.py:73
+msgid "no \"texinfo_documents\" config value found; no documents will be written"
msgstr ""
-#: registry.py:253
+#: builders/texinfo.py:85
#, python-format
-msgid "The %r role is already registered to domain %s"
+msgid "\"texinfo_documents\" config value references unknown document %s"
msgstr ""
-#: registry.py:266
+#: builders/latex/__init__.py:310 builders/texinfo.py:105
#, python-format
-msgid "The %r index is already registered to domain %s"
+msgid "processing %s"
msgstr ""
-#: registry.py:313
-#, python-format
-msgid "The %r object_type is already registered"
+#: builders/latex/__init__.py:332 builders/manpage.py:54
+#: builders/singlehtml.py:176 builders/texinfo.py:111
+msgid "writing"
+msgstr "tajin nutz'ib'aj"
+
+#: builders/latex/__init__.py:398 builders/texinfo.py:160
+msgid "resolving references..."
msgstr ""
-#: registry.py:344
-#, python-format
-msgid "The %r crossref_type is already registered"
+#: builders/latex/__init__.py:409 builders/texinfo.py:170
+msgid " (in "
+msgstr "(chupam"
+
+#: builders/_epub_base.py:425 builders/html/__init__.py:768
+#: builders/latex/__init__.py:474 builders/texinfo.py:186
+msgid "copying images... "
msgstr ""
-#: registry.py:353
+#: builders/_epub_base.py:447 builders/latex/__init__.py:489
+#: builders/texinfo.py:203
#, python-format
-msgid "source_suffix %r is already registered"
+msgid "cannot copy image file %r: %s"
msgstr ""
-#: registry.py:363
-#, python-format
-msgid "source_parser for %r is already registered"
+#: builders/texinfo.py:210
+msgid "copying Texinfo support files"
msgstr ""
-#: registry.py:372
+#: builders/texinfo.py:218
#, python-format
-msgid "Source parser for %s not registered"
+msgid "error writing file Makefile: %s"
msgstr ""
-#: registry.py:390
+#: builders/manpage.py:37
#, python-format
-msgid "Translator for %r already exists"
+msgid "The manual pages are in %(outdir)s."
msgstr ""
-#: registry.py:407
-#, python-format
-msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
+#: builders/manpage.py:45
+msgid "no \"man_pages\" config value found; no manual pages will be written"
msgstr ""
-#: registry.py:496
+#: builders/manpage.py:64
#, python-format
-msgid "enumerable_node %r already registered"
+msgid "\"man_pages\" config value references unknown document %s"
msgstr ""
-#: registry.py:512
+#: builders/singlehtml.py:35
#, python-format
-msgid "math renderer %s is already registered"
+msgid "The HTML page is in %(outdir)s."
msgstr ""
-#: registry.py:529
-#, python-format
-msgid ""
-"the extension %r was already merged with Sphinx since version %s; this "
-"extension is ignored."
+#: builders/singlehtml.py:171
+msgid "assembling single document"
msgstr ""
-#: registry.py:543
-msgid "Original exception:\n"
+#: builders/singlehtml.py:189
+msgid "writing additional files"
msgstr ""
-#: registry.py:545
-#, python-format
-msgid "Could not import extension %s"
+#: builders/dummy.py:19
+msgid "The dummy builder generates no files."
msgstr ""
-#: registry.py:552
+#: builders/gettext.py:243
#, python-format
-msgid ""
-"extension %r has no setup() function; is it really a Sphinx extension "
-"module?"
+msgid "The message catalogs are in %(outdir)s."
msgstr ""
-#: registry.py:565
+#: builders/__init__.py:400 builders/gettext.py:264
#, python-format
-msgid ""
-"The %s extension used by this project needs at least Sphinx v%s; it "
-"therefore cannot be built with this version."
+msgid "building [%s]: "
msgstr ""
-#: registry.py:577
+#: builders/gettext.py:265
#, python-format
-msgid ""
-"extension %r returned an unsupported object from its setup() function; it "
-"should return None or a metadata dictionary"
+msgid "targets for %d template files"
msgstr ""
-#: registry.py:612
-#, python-format
-msgid "`None` is not a valid filetype for %r."
+#: builders/gettext.py:271
+msgid "reading templates... "
msgstr ""
-#: roles.py:206
-#, python-format
-msgid "Common Vulnerabilities and Exposures; CVE %s"
+#: builders/gettext.py:310
+msgid "writing message catalogs... "
msgstr ""
-#: roles.py:229
+#: builders/linkcheck.py:87
#, python-format
-msgid "invalid CVE number %s"
+msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
msgstr ""
-#: roles.py:251
+#: builders/linkcheck.py:159
#, python-format
-msgid "Common Weakness Enumeration; CWE %s"
+msgid "broken link: %s (%s)"
msgstr ""
-#: roles.py:274
+#: builders/linkcheck.py:561
#, python-format
-msgid "invalid CWE number %s"
+msgid "Anchor '%s' not found"
msgstr ""
-#: roles.py:294
-#, python-format
-msgid "Python Enhancement Proposals; PEP %s"
+#: builders/linkcheck.py:789
+msgid "linkcheck_allowed_redirects. Expected a dictionary."
msgstr ""
-#: roles.py:317
+#: builders/linkcheck.py:799
#, python-format
-msgid "invalid PEP number %s"
+msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
-#: roles.py:355
+#: builders/epub3.py:83
#, python-format
-msgid "invalid RFC number %s"
+msgid "The ePub file is in %(outdir)s."
msgstr ""
-#: ext/linkcode.py:86 ext/viewcode.py:226
-msgid "[source]"
+#: builders/epub3.py:188
+msgid "writing nav.xhtml file..."
msgstr ""
-#: ext/viewcode.py:289
-msgid "highlighting module code... "
+#: builders/epub3.py:224
+msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:320
-msgid "[docs]"
+#: builders/epub3.py:230
+msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
msgstr ""
-#: ext/viewcode.py:346
-msgid "Module code"
+#: builders/epub3.py:235
+msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:353
-#, python-format
-msgid "Source code for %s
"
+#: builders/epub3.py:241
+msgid "conf value \"epub_author\" should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:380
-msgid "Overview: module code"
+#: builders/epub3.py:245
+msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:381
-msgid "All modules for which code is available
"
+#: builders/epub3.py:250
+msgid "conf value \"epub_description\" should not be empty for EPUB3"
msgstr ""
-#: ext/extlinks.py:82
-#, python-format
-msgid ""
-"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+#: builders/epub3.py:254
+msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
msgstr ""
-#: ext/autosectionlabel.py:52
-#, python-format
-msgid "section \"%s\" gets labeled as \"%s\""
+#: builders/epub3.py:259
+msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
msgstr ""
-#: domains/std/__init__.py:833 domains/std/__init__.py:960
-#: ext/autosectionlabel.py:61
-#, python-format
-msgid "duplicate label %s, other instance in %s"
+#: builders/epub3.py:265
+msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
msgstr ""
-#: ext/imgmath.py:387 ext/mathjax.py:60
-msgid "Link to this equation"
+#: builders/epub3.py:268
+msgid "conf value \"version\" should not be empty for EPUB3"
msgstr ""
-#: ext/duration.py:90
-msgid ""
-"====================== slowest reading durations ======================="
+#: builders/epub3.py:282 builders/html/__init__.py:1296
+#, python-format
+msgid "invalid css_file: %r, ignored"
msgstr ""
-#: ext/doctest.py:118
+#: builders/xml.py:29
#, python-format
-msgid "missing '+' or '-' in '%s' option."
+msgid "The XML files are in %(outdir)s."
msgstr ""
-#: ext/doctest.py:124
+#: builders/html/__init__.py:1242 builders/text.py:71 builders/xml.py:81
#, python-format
-msgid "'%s' is not a valid option."
+msgid "error writing file %s: %s"
msgstr ""
-#: ext/doctest.py:139
+#: builders/xml.py:103
#, python-format
-msgid "'%s' is not a valid pyversion option"
+msgid "The pseudo-XML files are in %(outdir)s."
msgstr ""
-#: ext/doctest.py:226
-msgid "invalid TestCode type"
+#: builders/_epub_base.py:223
+#, python-format
+msgid "duplicated ToC entry found: %s"
msgstr ""
-#: ext/doctest.py:297
+#: builders/_epub_base.py:436
#, python-format
-msgid ""
-"Testing of doctests in the sources finished, look at the results in "
-"%(outdir)s/output.txt."
+msgid "cannot read image file %r: copying it instead"
msgstr ""
-#: ext/doctest.py:457
+#: builders/_epub_base.py:467
#, python-format
-msgid "no code/output in %s block at %s:%s"
+msgid "cannot write image file %r: %s"
msgstr ""
-#: ext/doctest.py:568
-#, python-format
-msgid "ignoring invalid doctest code: %r"
+#: builders/_epub_base.py:479
+msgid "Pillow not found - copying image files"
msgstr ""
-#: ext/imgmath.py:162
-#, python-format
-msgid ""
-"LaTeX command %r cannot be run (needed for math display), check the "
-"imgmath_latex setting"
+#: builders/_epub_base.py:514
+msgid "writing mimetype file..."
msgstr ""
-#: ext/imgmath.py:181
-#, python-format
-msgid ""
-"%s command %r cannot be run (needed for math display), check the imgmath_%s "
-"setting"
+#: builders/_epub_base.py:523
+msgid "writing META-INF/container.xml file..."
msgstr ""
-#: ext/imgmath.py:344
-#, python-format
-msgid "display latex %r: %s"
+#: builders/_epub_base.py:561
+msgid "writing content.opf file..."
msgstr ""
-#: ext/imgmath.py:380
+#: builders/_epub_base.py:594
#, python-format
-msgid "inline latex %r: %s"
+msgid "unknown mimetype for %s, ignoring"
msgstr ""
-#: ext/coverage.py:48
+#: builders/_epub_base.py:749
+msgid "node has an invalid level"
+msgstr ""
+
+#: builders/_epub_base.py:769
+msgid "writing toc.ncx file..."
+msgstr ""
+
+#: builders/_epub_base.py:802
+#, python-format
+msgid "writing %s file..."
+msgstr ""
+
+#: builders/text.py:27
+#, python-format
+msgid "The text files are in %(outdir)s."
+msgstr ""
+
+#: builders/__init__.py:229
+#, python-format
+msgid "a suitable image for %s builder not found: %s (%s)"
+msgstr ""
+
+#: builders/__init__.py:237
+#, python-format
+msgid "a suitable image for %s builder not found: %s"
+msgstr ""
+
+#: builders/__init__.py:260
+msgid "building [mo]: "
+msgstr ""
+
+#: builders/__init__.py:263 builders/__init__.py:771 builders/__init__.py:795
+msgid "writing output... "
+msgstr ""
+
+#: builders/__init__.py:280
+#, python-format
+msgid "all of %d po files"
+msgstr ""
+
+#: builders/__init__.py:302
+#, python-format
+msgid "targets for %d po files that are specified"
+msgstr ""
+
+#: builders/__init__.py:314
+#, python-format
+msgid "targets for %d po files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:324
+msgid "all source files"
+msgstr ""
+
+#: builders/__init__.py:335
+#, python-format
+msgid "file %r given on command line does not exist, "
+msgstr ""
+
+#: builders/__init__.py:342
+#, python-format
+msgid ""
+"file %r given on command line is not under the source directory, ignoring"
+msgstr ""
+
+#: builders/__init__.py:353
+#, python-format
+msgid "file %r given on command line is not a valid document, ignoring"
+msgstr ""
+
+#: builders/__init__.py:366
+#, python-format
+msgid "%d source files given on command line"
+msgstr ""
+
+#: builders/__init__.py:382
+#, python-format
+msgid "targets for %d source files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:411
+msgid "looking for now-outdated files... "
+msgstr ""
+
+#: builders/__init__.py:415
+#, python-format
+msgid "%d found"
+msgstr ""
+
+#: builders/__init__.py:417
+msgid "none found"
+msgstr ""
+
+#: builders/__init__.py:424
+msgid "pickling environment"
+msgstr ""
+
+#: builders/__init__.py:431
+msgid "checking consistency"
+msgstr ""
+
+#: builders/__init__.py:435
+msgid "no targets are out of date."
+msgstr ""
+
+#: builders/__init__.py:474
+msgid "updating environment: "
+msgstr ""
+
+#: builders/__init__.py:499
+#, python-format
+msgid "%s added, %s changed, %s removed"
+msgstr ""
+
+#: builders/__init__.py:536
+#, python-format
+msgid ""
+"Sphinx is unable to load the master document (%s) because it matches a "
+"built-in exclude pattern %r. Please move your master document to a different"
+" location."
+msgstr ""
+
+#: builders/__init__.py:545
+#, python-format
+msgid ""
+"Sphinx is unable to load the master document (%s) because it matches an "
+"exclude pattern specified in conf.py, %r. Please remove this pattern from "
+"conf.py."
+msgstr ""
+
+#: builders/__init__.py:556
+#, python-format
+msgid ""
+"Sphinx is unable to load the master document (%s) because it is not included"
+" in the custom include_patterns = %r. Ensure that a pattern in "
+"include_patterns matches the master document."
+msgstr ""
+
+#: builders/__init__.py:563
+#, python-format
+msgid ""
+"Sphinx is unable to load the master document (%s). The master document must "
+"be within the source directory or a subdirectory of it."
+msgstr ""
+
+#: builders/__init__.py:581 builders/__init__.py:598
+msgid "reading sources... "
+msgstr ""
+
+#: builders/__init__.py:725
+#, python-format
+msgid "docnames to write: %s"
+msgstr ""
+
+#: builders/__init__.py:727
+msgid "no docnames to write!"
+msgstr ""
+
+#: builders/__init__.py:740
+msgid "preparing documents"
+msgstr ""
+
+#: builders/__init__.py:743
+msgid "copying assets"
+msgstr ""
+
+#: builders/changes.py:29
+#, python-format
+msgid "The overview file is in %(outdir)s."
+msgstr ""
+
+#: builders/changes.py:65
+#, python-format
+msgid "no changes in version %s."
+msgstr ""
+
+#: builders/changes.py:67
+msgid "writing summary file..."
+msgstr ""
+
+#: builders/changes.py:79
+msgid "Builtins"
+msgstr ""
+
+#: builders/changes.py:81
+msgid "Module level"
+msgstr ""
+
+#: builders/changes.py:137
+msgid "copying source files..."
+msgstr ""
+
+#: builders/changes.py:146
+#, python-format
+msgid "could not read %r for changelog creation"
+msgstr ""
+
+#: ext/coverage.py:48
#, python-format
msgid "invalid regex %r in %s"
msgstr ""
@@ -739,9 +1175,10 @@ msgid ""
msgstr ""
#: ext/coverage.py:158
+#, python-format
msgid ""
"the following modules are specified in coverage_modules but were not "
-"documented"
+"documented: %s"
msgstr ""
#: ext/coverage.py:172
@@ -776,6 +1213,34 @@ msgstr ""
msgid "undocumented python method: %s :: %s :: %s"
msgstr ""
+#: ext/extlinks.py:82
+#, python-format
+msgid ""
+"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgstr ""
+
+#: ext/todo.py:61
+msgid "Todo"
+msgstr "Chi tiqib'ana'"
+
+#: ext/todo.py:94
+#, python-format
+msgid "TODO entry found: %s"
+msgstr ""
+
+#: ext/todo.py:152
+msgid "<>"
+msgstr "<>"
+
+#: ext/todo.py:154
+#, python-format
+msgid "(The <> is located in %s, line %d.)"
+msgstr "(Ri <> k'o chupam %s, pa juch' %d.)"
+
+#: ext/todo.py:166
+msgid "original entry"
+msgstr ""
+
#: ext/imgconverter.py:44
#, python-format
msgid ""
@@ -863,949 +1328,995 @@ msgstr ""
msgid "[graph]"
msgstr ""
-#: ext/todo.py:61
-msgid "Todo"
-msgstr "Chi tiqib'ana'"
-
-#: ext/todo.py:94
+#: ext/imgmath.py:148
#, python-format
-msgid "TODO entry found: %s"
+msgid ""
+"LaTeX command %r cannot be run (needed for math display), check the "
+"imgmath_latex setting"
msgstr ""
-#: ext/todo.py:152
-msgid "<>"
-msgstr "<>"
-
-#: ext/todo.py:154
+#: ext/imgmath.py:167
#, python-format
-msgid "(The <> is located in %s, line %d.)"
-msgstr "(Ri <> k'o chupam %s, pa juch' %d.)"
-
-#: ext/todo.py:166
-msgid "original entry"
-msgstr ""
-
-#: directives/code.py:66
-msgid "non-whitespace stripped by dedent"
+msgid ""
+"%s command %r cannot be run (needed for math display), check the imgmath_%s "
+"setting"
msgstr ""
-#: directives/code.py:87
+#: ext/imgmath.py:326
#, python-format
-msgid "Invalid caption: %s"
+msgid "display latex %r: %s"
msgstr ""
-#: directives/code.py:131 directives/code.py:297 directives/code.py:483
+#: ext/imgmath.py:362
#, python-format
-msgid "line number spec is out of range(1-%d): %r"
+msgid "inline latex %r: %s"
msgstr ""
-#: directives/code.py:216
-#, python-format
-msgid "Cannot use both \"%s\" and \"%s\" options"
+#: ext/imgmath.py:369 ext/mathjax.py:60
+msgid "Link to this equation"
msgstr ""
-#: directives/code.py:231
+#: ext/doctest.py:118
#, python-format
-msgid "Include file '%s' not found or reading it failed"
+msgid "missing '+' or '-' in '%s' option."
msgstr ""
-#: directives/code.py:235
+#: ext/doctest.py:124
#, python-format
-msgid ""
-"Encoding %r used for reading included file '%s' seems to be wrong, try "
-"giving an :encoding: option"
+msgid "'%s' is not a valid option."
msgstr ""
-#: directives/code.py:276
+#: ext/doctest.py:139
#, python-format
-msgid "Object named %r not found in include file %r"
+msgid "'%s' is not a valid pyversion option"
msgstr ""
-#: directives/code.py:309
-msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
+#: ext/doctest.py:226
+msgid "invalid TestCode type"
msgstr ""
-#: directives/code.py:314
+#: ext/doctest.py:297
#, python-format
-msgid "Line spec %r: no lines pulled from include file %r"
-msgstr ""
-
-#: directives/patches.py:71
msgid ""
-"\":file:\" option for csv-table directive now recognizes an absolute path as"
-" a relative path from source directory. Please update your document."
+"Testing of doctests in the sources finished, look at the results in "
+"%(outdir)s/output.txt."
msgstr ""
-#: directives/other.py:119
+#: ext/doctest.py:451
#, python-format
-msgid "toctree glob pattern %r didn't match any documents"
+msgid "no code/output in %s block at %s:%s"
msgstr ""
-#: directives/other.py:153 environment/adapters/toctree.py:361
+#: ext/doctest.py:568
#, python-format
-msgid "toctree contains reference to excluded document %r"
+msgid "ignoring invalid doctest code: %r"
msgstr ""
-#: directives/other.py:156
+#: ext/autosectionlabel.py:52
#, python-format
-msgid "toctree contains reference to nonexisting document %r"
+msgid "section \"%s\" gets labeled as \"%s\""
msgstr ""
-#: directives/other.py:169
+#: domains/std/__init__.py:833 domains/std/__init__.py:960
+#: ext/autosectionlabel.py:61
#, python-format
-msgid "duplicated entry found in toctree: %s"
+msgid "duplicate label %s, other instance in %s"
msgstr ""
-#: directives/other.py:203
-msgid "Section author: "
+#: ext/duration.py:47
+#, python-format
+msgid "Reading duration %.3fs exceeded the duration limit %.3fs"
msgstr ""
-#: directives/other.py:205
-msgid "Module author: "
+#: ext/duration.py:117
+msgid ""
+"====================== total reading duration =========================="
msgstr ""
-#: directives/other.py:207
-msgid "Code author: "
+#: ext/duration.py:124
+#, python-format
+msgid "Total time reading %d file%s: %dm %.3fs"
msgstr ""
-#: directives/other.py:209
-msgid "Author: "
+#: ext/duration.py:136
+msgid ""
+"====================== slowest reading durations ======================="
msgstr ""
-#: directives/other.py:269
-msgid ".. acks content is not a list"
+#: ext/duration.py:139
+#, python-format
+msgid "%.3fs %s"
msgstr ""
-#: directives/other.py:292
-msgid ".. hlist content is not a list"
+#: ext/linkcode.py:86 ext/viewcode.py:232
+msgid "[source]"
msgstr ""
-#: builders/changes.py:29
-#, python-format
-msgid "The overview file is in %(outdir)s."
+#: ext/viewcode.py:295
+msgid "highlighting module code... "
msgstr ""
-#: builders/changes.py:56
-#, python-format
-msgid "no changes in version %s."
+#: ext/viewcode.py:326
+msgid "[docs]"
msgstr ""
-#: builders/changes.py:58
-msgid "writing summary file..."
+#: ext/viewcode.py:352
+msgid "Module code"
msgstr ""
-#: builders/changes.py:70
-msgid "Builtins"
+#: ext/viewcode.py:359
+#, python-format
+msgid "Source code for %s
"
msgstr ""
-#: builders/changes.py:72
-msgid "Module level"
+#: ext/viewcode.py:386
+msgid "Overview: module code"
msgstr ""
-#: builders/changes.py:124
-msgid "copying source files..."
+#: ext/viewcode.py:387
+msgid "All modules for which code is available
"
msgstr ""
-#: builders/changes.py:133
+#: domains/citation.py:75
#, python-format
-msgid "could not read %r for changelog creation"
+msgid "duplicate citation %s, other instance in %s"
msgstr ""
-#: builders/manpage.py:37
+#: domains/citation.py:92
#, python-format
-msgid "The manual pages are in %(outdir)s."
+msgid "Citation [%s] is not referenced."
msgstr ""
-#: builders/manpage.py:45
-msgid "no \"man_pages\" config value found; no manual pages will be written"
+#: domains/math.py:73
+#, python-format
+msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
-#: builders/latex/__init__.py:347 builders/manpage.py:54
-#: builders/singlehtml.py:176 builders/texinfo.py:119
-msgid "writing"
-msgstr "tajin nutz'ib'aj"
-
-#: builders/manpage.py:71
+#: domains/math.py:130 writers/latex.py:2500
#, python-format
-msgid "\"man_pages\" config value references unknown document %s"
+msgid "Invalid math_eqref_format: %r"
msgstr ""
-#: builders/__init__.py:224
+#: domains/javascript.py:183
#, python-format
-msgid "a suitable image for %s builder not found: %s (%s)"
+msgid "%s() (built-in function)"
msgstr ""
-#: builders/__init__.py:232
+#: domains/javascript.py:184 domains/python/__init__.py:279
#, python-format
-msgid "a suitable image for %s builder not found: %s"
+msgid "%s() (%s method)"
msgstr ""
-#: builders/__init__.py:255
-msgid "building [mo]: "
+#: domains/javascript.py:186
+#, python-format
+msgid "%s() (class)"
msgstr ""
-#: builders/__init__.py:258 builders/__init__.py:759 builders/__init__.py:791
-msgid "writing output... "
+#: domains/javascript.py:188
+#, python-format
+msgid "%s (global variable or constant)"
msgstr ""
-#: builders/__init__.py:275
+#: domains/javascript.py:190 domains/python/__init__.py:370
#, python-format
-msgid "all of %d po files"
+msgid "%s (%s attribute)"
msgstr ""
-#: builders/__init__.py:297
-#, python-format
-msgid "targets for %d po files that are specified"
+#: domains/javascript.py:274
+msgid "Arguments"
msgstr ""
-#: builders/__init__.py:309
-#, python-format
-msgid "targets for %d po files that are out of date"
+#: domains/cpp/__init__.py:491 domains/javascript.py:281
+msgid "Throws"
msgstr ""
-#: builders/__init__.py:319
-msgid "all source files"
+#: domains/c/__init__.py:367 domains/cpp/__init__.py:504
+#: domains/javascript.py:288 domains/python/_object.py:221
+msgid "Returns"
msgstr ""
-#: builders/__init__.py:330
-#, python-format
-msgid "file %r given on command line does not exist, "
+#: domains/c/__init__.py:373 domains/javascript.py:294
+#: domains/python/_object.py:227
+msgid "Return type"
msgstr ""
-#: builders/__init__.py:337
+#: domains/javascript.py:374
#, python-format
-msgid ""
-"file %r given on command line is not under the source directory, ignoring"
+msgid "%s (module)"
msgstr ""
-#: builders/__init__.py:348
-#, python-format
-msgid "file %r given on command line is not a valid document, ignoring"
+#: domains/c/__init__.py:779 domains/cpp/__init__.py:943
+#: domains/javascript.py:419 domains/python/__init__.py:726
+msgid "function"
msgstr ""
-#: builders/__init__.py:361
-#, python-format
-msgid "%d source files given on command line"
+#: domains/javascript.py:420 domains/python/__init__.py:730
+msgid "method"
msgstr ""
-#: builders/__init__.py:377
-#, python-format
-msgid "targets for %d source files that are out of date"
+#: domains/cpp/__init__.py:941 domains/javascript.py:421
+#: domains/python/__init__.py:728
+msgid "class"
+msgstr "Ruwäch"
+
+#: domains/javascript.py:422 domains/python/__init__.py:727
+msgid "data"
msgstr ""
-#: builders/__init__.py:395 builders/gettext.py:265
-#, python-format
-msgid "building [%s]: "
+#: domains/javascript.py:423 domains/python/__init__.py:733
+msgid "attribute"
msgstr ""
-#: builders/__init__.py:406
-msgid "looking for now-outdated files... "
+#: domains/javascript.py:424 domains/python/__init__.py:736
+msgid "module"
msgstr ""
-#: builders/__init__.py:410
+#: domains/javascript.py:458
#, python-format
-msgid "%d found"
+msgid "duplicate %s description of %s, other %s in %s"
msgstr ""
-#: builders/__init__.py:412
-msgid "none found"
+#: domains/rst.py:131 domains/rst.py:190
+#, python-format
+msgid "%s (directive)"
msgstr ""
-#: builders/__init__.py:419
-msgid "pickling environment"
+#: domains/rst.py:191 domains/rst.py:202
+#, python-format
+msgid ":%s: (directive option)"
msgstr ""
-#: builders/__init__.py:426
-msgid "checking consistency"
+#: domains/rst.py:224
+#, python-format
+msgid "%s (role)"
msgstr ""
-#: builders/__init__.py:430
-msgid "no targets are out of date."
+#: domains/rst.py:234
+msgid "directive"
msgstr ""
-#: builders/__init__.py:469
-msgid "updating environment: "
+#: domains/rst.py:235
+msgid "directive-option"
msgstr ""
-#: builders/__init__.py:494
-#, python-format
-msgid "%s added, %s changed, %s removed"
+#: domains/rst.py:236
+msgid "role"
msgstr ""
-#: builders/__init__.py:531
+#: domains/rst.py:262
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches a "
-"built-in exclude pattern %r. Please move your master document to a different"
-" location."
+msgid "duplicate description of %s %s, other instance in %s"
msgstr ""
-#: builders/__init__.py:540
+#: domains/changeset.py:32
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches an "
-"exclude pattern specified in conf.py, %r. Please remove this pattern from "
-"conf.py."
+msgid "Added in version %s"
msgstr ""
-#: builders/__init__.py:551
+#: domains/changeset.py:33
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it is not included"
-" in the custom include_patterns = %r. Ensure that a pattern in "
-"include_patterns matches the master document."
+msgid "Changed in version %s"
msgstr ""
-#: builders/__init__.py:558
+#: domains/changeset.py:34
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s). The master document must "
-"be within the source directory or a subdirectory of it."
+msgid "Deprecated since version %s"
msgstr ""
-#: builders/__init__.py:576 builders/__init__.py:592
-msgid "reading sources... "
+#: domains/changeset.py:35
+#, python-format
+msgid "Removed in version %s"
msgstr ""
-#: builders/__init__.py:713
+#: domains/__init__.py:322
#, python-format
-msgid "docnames to write: %s"
+msgid "%s %s"
msgstr ""
-#: builders/__init__.py:715
-msgid "no docnames to write!"
+#: cmd/build.py:64
+msgid "job number should be a positive number"
msgstr ""
-#: builders/__init__.py:728
-msgid "preparing documents"
+#: cmd/build.py:73 cmd/quickstart.py:582 ext/apidoc/_cli.py:27
+#: ext/autosummary/generate.py:876
+msgid "For more information, visit ."
msgstr ""
-#: builders/__init__.py:731
-msgid "copying assets"
+#: cmd/build.py:74
+msgid ""
+"\n"
+"Generate documentation from source files.\n"
+"\n"
+"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
+"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
+"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
+"including 'conf.py'\n"
+"\n"
+"sphinx-build can create documentation in different formats. A format is\n"
+"selected by specifying the builder name on the command line; it defaults to\n"
+"HTML. Builders can also perform other tasks related to documentation\n"
+"processing.\n"
+"\n"
+"By default, everything that is outdated is built. Output only for selected\n"
+"files can be built by specifying individual filenames.\n"
msgstr ""
-#: builders/__init__.py:883
-#, python-format
-msgid "undecodable source characters, replacing with \"?\": %r"
+#: cmd/build.py:100
+msgid "path to documentation source files"
msgstr ""
-#: builders/epub3.py:84
-#, python-format
-msgid "The ePub file is in %(outdir)s."
+#: cmd/build.py:103
+msgid "path to output directory"
msgstr ""
-#: builders/epub3.py:189
-msgid "writing nav.xhtml file..."
+#: cmd/build.py:109
+msgid ""
+"(optional) a list of specific files to rebuild. Ignored if --write-all is "
+"specified"
msgstr ""
-#: builders/epub3.py:221
-msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
+#: cmd/build.py:114
+msgid "general options"
msgstr ""
-#: builders/epub3.py:227
-msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
+#: cmd/build.py:121
+msgid "builder to use (default: 'html')"
msgstr ""
-#: builders/epub3.py:232
-msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
+#: cmd/build.py:131
+msgid ""
+"run in parallel with N processes, when possible. 'auto' uses the number of "
+"CPU cores"
msgstr ""
-#: builders/epub3.py:238
-msgid "conf value \"epub_author\" should not be empty for EPUB3"
+#: cmd/build.py:140
+msgid "write all files (default: only write new and changed files)"
msgstr ""
-#: builders/epub3.py:242
-msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
+#: cmd/build.py:147
+msgid "don't use a saved environment, always read all files"
msgstr ""
-#: builders/epub3.py:247
-msgid "conf value \"epub_description\" should not be empty for EPUB3"
+#: cmd/build.py:150
+msgid "path options"
msgstr ""
-#: builders/epub3.py:251
-msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+#: cmd/build.py:157
+msgid ""
+"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
msgstr ""
-#: builders/epub3.py:256
-msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+#: cmd/build.py:166
+msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
msgstr ""
-#: builders/epub3.py:262
-msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+#: cmd/build.py:175
+msgid "use no configuration file, only use settings from -D options"
msgstr ""
-#: builders/epub3.py:265
-msgid "conf value \"version\" should not be empty for EPUB3"
+#: cmd/build.py:184
+msgid "override a setting in configuration file"
msgstr ""
-#: builders/epub3.py:279 builders/html/__init__.py:1291
-#, python-format
-msgid "invalid css_file: %r, ignored"
+#: cmd/build.py:193
+msgid "pass a value into HTML templates"
msgstr ""
-#: builders/xml.py:31
-#, python-format
-msgid "The XML files are in %(outdir)s."
+#: cmd/build.py:202
+msgid "define tag: include \"only\" blocks with TAG"
msgstr ""
-#: builders/html/__init__.py:1241 builders/text.py:76 builders/xml.py:90
-#, python-format
-msgid "error writing file %s: %s"
+#: cmd/build.py:209
+msgid "nitpicky mode: warn about all missing references"
msgstr ""
-#: builders/xml.py:101
-#, python-format
-msgid "The pseudo-XML files are in %(outdir)s."
+#: cmd/build.py:212
+msgid "console output options"
msgstr ""
-#: builders/texinfo.py:45
-#, python-format
-msgid "The Texinfo files are in %(outdir)s."
+#: cmd/build.py:219
+msgid "increase verbosity (can be repeated)"
msgstr ""
-#: builders/texinfo.py:48
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through makeinfo\n"
-"(use 'make info' here to do that automatically)."
+#: cmd/build.py:226 ext/apidoc/_cli.py:66
+msgid "no output on stdout, just warnings on stderr"
msgstr ""
-#: builders/texinfo.py:77
-msgid "no \"texinfo_documents\" config value found; no documents will be written"
+#: cmd/build.py:233
+msgid "no output at all, not even warnings"
msgstr ""
-#: builders/texinfo.py:89
-#, python-format
-msgid "\"texinfo_documents\" config value references unknown document %s"
+#: cmd/build.py:241
+msgid "do emit colored output (default: auto-detect)"
msgstr ""
-#: builders/latex/__init__.py:325 builders/texinfo.py:113
-#, python-format
-msgid "processing %s"
+#: cmd/build.py:249
+msgid "do not emit colored output (default: auto-detect)"
msgstr ""
-#: builders/latex/__init__.py:405 builders/texinfo.py:172
-msgid "resolving references..."
+#: cmd/build.py:252
+msgid "warning control options"
msgstr ""
-#: builders/latex/__init__.py:416 builders/texinfo.py:182
-msgid " (in "
-msgstr "(chupam"
+#: cmd/build.py:258
+msgid "write warnings (and errors) to given file"
+msgstr ""
-#: builders/_epub_base.py:422 builders/html/__init__.py:779
-#: builders/latex/__init__.py:481 builders/texinfo.py:198
-msgid "copying images... "
+#: cmd/build.py:265
+msgid "turn warnings into errors"
msgstr ""
-#: builders/_epub_base.py:444 builders/latex/__init__.py:496
-#: builders/texinfo.py:215
-#, python-format
-msgid "cannot copy image file %r: %s"
+#: cmd/build.py:273
+msgid "show full traceback on exception"
msgstr ""
-#: builders/texinfo.py:222
-msgid "copying Texinfo support files"
+#: cmd/build.py:276
+msgid "run Pdb on exception"
msgstr ""
-#: builders/texinfo.py:230
-#, python-format
-msgid "error writing file Makefile: %s"
+#: cmd/build.py:282
+msgid "raise an exception on warnings"
msgstr ""
-#: builders/_epub_base.py:223
-#, python-format
-msgid "duplicated ToC entry found: %s"
+#: cmd/build.py:325
+msgid "cannot combine -a option and filenames"
msgstr ""
-#: builders/_epub_base.py:433
+#: cmd/build.py:357
#, python-format
-msgid "cannot read image file %r: copying it instead"
+msgid "cannot open warning file '%s': %s"
msgstr ""
-#: builders/_epub_base.py:464
-#, python-format
-msgid "cannot write image file %r: %s"
+#: cmd/build.py:376
+msgid "-D option argument must be in the form name=value"
msgstr ""
-#: builders/_epub_base.py:476
-msgid "Pillow not found - copying image files"
+#: cmd/build.py:383
+msgid "-A option argument must be in the form name=value"
msgstr ""
-#: builders/_epub_base.py:511
-msgid "writing mimetype file..."
+#: cmd/quickstart.py:52
+msgid "automatically insert docstrings from modules"
msgstr ""
-#: builders/_epub_base.py:520
-msgid "writing META-INF/container.xml file..."
+#: cmd/quickstart.py:53
+msgid "automatically test code snippets in doctest blocks"
msgstr ""
-#: builders/_epub_base.py:558
-msgid "writing content.opf file..."
+#: cmd/quickstart.py:54
+msgid "link between Sphinx documentation of different projects"
msgstr ""
-#: builders/_epub_base.py:591
-#, python-format
-msgid "unknown mimetype for %s, ignoring"
+#: cmd/quickstart.py:55
+msgid "write \"todo\" entries that can be shown or hidden on build"
msgstr ""
-#: builders/_epub_base.py:745
-msgid "node has an invalid level"
+#: cmd/quickstart.py:56
+msgid "checks for documentation coverage"
msgstr ""
-#: builders/_epub_base.py:765
-msgid "writing toc.ncx file..."
+#: cmd/quickstart.py:57
+msgid "include math, rendered as PNG or SVG images"
msgstr ""
-#: builders/_epub_base.py:794
-#, python-format
-msgid "writing %s file..."
+#: cmd/quickstart.py:58
+msgid "include math, rendered in the browser by MathJax"
msgstr ""
-#: builders/dummy.py:19
-msgid "The dummy builder generates no files."
+#: cmd/quickstart.py:59
+msgid "conditional inclusion of content based on config values"
msgstr ""
-#: builders/gettext.py:244
-#, python-format
-msgid "The message catalogs are in %(outdir)s."
+#: cmd/quickstart.py:60
+msgid "include links to the source code of documented Python objects"
msgstr ""
-#: builders/gettext.py:266
-#, python-format
-msgid "targets for %d template files"
+#: cmd/quickstart.py:61
+msgid "create .nojekyll file to publish the document on GitHub pages"
msgstr ""
-#: builders/gettext.py:271
-msgid "reading templates... "
+#: cmd/quickstart.py:111
+msgid "Please enter a valid path name."
msgstr ""
-#: builders/gettext.py:307
-msgid "writing message catalogs... "
+#: cmd/quickstart.py:127
+msgid "Please enter some text."
msgstr ""
-#: builders/singlehtml.py:35
+#: cmd/quickstart.py:134
#, python-format
-msgid "The HTML page is in %(outdir)s."
+msgid "Please enter one of %s."
msgstr ""
-#: builders/singlehtml.py:171
-msgid "assembling single document"
+#: cmd/quickstart.py:142
+msgid "Please enter either 'y' or 'n'."
msgstr ""
-#: builders/singlehtml.py:189
-msgid "writing additional files"
+#: cmd/quickstart.py:148
+msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
msgstr ""
-#: builders/linkcheck.py:77
+#: cmd/quickstart.py:230
#, python-format
-msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
-msgstr ""
+msgid "Welcome to the Sphinx %s quickstart utility."
+msgstr "Ütz apetïk pa rokisanem runuk'ik Sphinx %s."
-#: builders/linkcheck.py:149
-#, python-format
-msgid "broken link: %s (%s)"
+#: cmd/quickstart.py:235
+msgid ""
+"Please enter values for the following settings (just press Enter to\n"
+"accept a default value, if one is given in brackets)."
msgstr ""
-#: builders/linkcheck.py:548
+#: cmd/quickstart.py:242
#, python-format
-msgid "Anchor '%s' not found"
+msgid "Selected root path: %s"
msgstr ""
-#: builders/linkcheck.py:758
-#, python-format
-msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
+#: cmd/quickstart.py:245
+msgid "Enter the root path for documentation."
msgstr ""
-#: builders/text.py:29
-#, python-format
-msgid "The text files are in %(outdir)s."
+#: cmd/quickstart.py:246
+msgid "Root path for the documentation"
msgstr ""
-#: transforms/i18n.py:227 transforms/i18n.py:302
-#, python-brace-format
-msgid ""
-"inconsistent footnote references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:255
+msgid "Error: an existing conf.py has been found in the selected root path."
msgstr ""
-#: transforms/i18n.py:272
-#, python-brace-format
-msgid ""
-"inconsistent references in translated message. original: {0}, translated: "
-"{1}"
+#: cmd/quickstart.py:260
+msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
msgstr ""
-#: transforms/i18n.py:322
-#, python-brace-format
-msgid ""
-"inconsistent citation references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:263
+msgid "Please enter a new root path (or just Enter to exit)"
msgstr ""
-#: transforms/i18n.py:344
-#, python-brace-format
+#: cmd/quickstart.py:274
msgid ""
-"inconsistent term references in translated message. original: {0}, "
-"translated: {1}"
+"You have two options for placing the build directory for Sphinx output.\n"
+"Either, you use a directory \"_build\" within the root path, or you separate\n"
+"\"source\" and \"build\" directories within the root path."
msgstr ""
-#: builders/html/__init__.py:486 builders/latex/__init__.py:199
-#: transforms/__init__.py:129 writers/manpage.py:98 writers/texinfo.py:220
-#, python-format
-msgid "%b %d, %Y"
+#: cmd/quickstart.py:280
+msgid "Separate source and build directories (y/n)"
msgstr ""
-#: transforms/__init__.py:139
-msgid "could not calculate translation progress!"
+#: cmd/quickstart.py:287
+msgid ""
+"Inside the root directory, two more directories will be created; \"_templates\"\n"
+"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
+"files. You can enter another prefix (such as \".\") to replace the underscore."
msgstr ""
-#: transforms/__init__.py:144
-msgid "no translated elements!"
+#: cmd/quickstart.py:292
+msgid "Name prefix for templates and static dir"
msgstr ""
-#: transforms/__init__.py:253
-#, python-format
+#: cmd/quickstart.py:298
msgid ""
-"4 column based index found. It might be a bug of extensions you use: %r"
+"The project name will occur in several places in the built documentation."
msgstr ""
-#: transforms/__init__.py:294
-#, python-format
-msgid "Footnote [%s] is not referenced."
-msgstr ""
+#: cmd/quickstart.py:301
+msgid "Project name"
+msgstr "Rub'i' samäj"
-#: transforms/__init__.py:303
-msgid "Footnote [*] is not referenced."
-msgstr ""
+#: cmd/quickstart.py:303
+msgid "Author name(s)"
+msgstr "Kib'i' ajtz'ib'anel(a')"
-#: transforms/__init__.py:314
-msgid "Footnote [#] is not referenced."
+#: cmd/quickstart.py:309
+msgid ""
+"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
+"software. Each version can have multiple releases. For example, for\n"
+"Python the version is something like 2.5 or 3.0, while the release is\n"
+"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
+"just set both to the same value."
msgstr ""
-#: _cli/__init__.py:73
-msgid "Usage:"
-msgstr ""
+#: cmd/quickstart.py:316
+msgid "Project version"
+msgstr "Rujalwäch samäj"
-#: _cli/__init__.py:75
-#, python-brace-format
-msgid "{0} [OPTIONS] []"
+#: cmd/quickstart.py:318
+msgid "Project release"
msgstr ""
-#: _cli/__init__.py:78
-msgid " The Sphinx documentation generator."
+#: cmd/quickstart.py:324
+msgid ""
+"If the documents are to be written in a language other than English,\n"
+"you can select a language here by its language code. Sphinx will then\n"
+"translate text that it generates into that language.\n"
+"\n"
+"For a list of supported codes, see\n"
+"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
msgstr ""
-#: _cli/__init__.py:87
-msgid "Commands:"
-msgstr ""
+#: cmd/quickstart.py:332
+msgid "Project language"
+msgstr "Ruch'ab'äl samaj"
-#: _cli/__init__.py:98
-msgid "Options"
+#: cmd/quickstart.py:340
+msgid ""
+"The file name suffix for source files. Commonly, this is either \".txt\"\n"
+"or \".rst\". Only files with this suffix are considered documents."
msgstr ""
-#: _cli/__init__.py:113 _cli/__init__.py:181
-msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
+#: cmd/quickstart.py:344
+msgid "Source file suffix"
msgstr ""
-#: _cli/__init__.py:171
-#, python-brace-format
+#: cmd/quickstart.py:350
msgid ""
-"{0}: error: {1}\n"
-"Run '{0} --help' for information"
+"One document is special in that it is considered the top node of the\n"
+"\"contents tree\", that is, it is the root of the hierarchical structure\n"
+"of the documents. Normally, this is \"index\", but if your \"index\"\n"
+"document is a custom template, you can also set this to another filename."
msgstr ""
-#: _cli/__init__.py:179
-msgid " Manage documentation with Sphinx."
+#: cmd/quickstart.py:357
+msgid "Name of your master document (without suffix)"
msgstr ""
-#: _cli/__init__.py:191
-msgid "Show the version and exit."
+#: cmd/quickstart.py:368
+#, python-format
+msgid ""
+"Error: the master file %s has already been found in the selected root path."
msgstr ""
-#: _cli/__init__.py:199
-msgid "Show this message and exit."
+#: cmd/quickstart.py:374
+msgid "sphinx-quickstart will not overwrite the existing file."
msgstr ""
-#: _cli/__init__.py:203
-msgid "Logging"
+#: cmd/quickstart.py:378
+msgid ""
+"Please enter a new file name, or rename the existing file and press Enter"
msgstr ""
-#: _cli/__init__.py:210
-msgid "Increase verbosity (can be repeated)"
+#: cmd/quickstart.py:386
+msgid "Indicate which of the following Sphinx extensions should be enabled:"
msgstr ""
-#: _cli/__init__.py:218
-msgid "Only print errors and warnings."
+#: cmd/quickstart.py:397
+msgid ""
+"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
+"been deselected."
msgstr ""
-#: _cli/__init__.py:225
-msgid "No output at all"
+#: cmd/quickstart.py:407
+msgid ""
+"A Makefile and a Windows command file can be generated for you so that you\n"
+"only have to run e.g. `make html' instead of invoking sphinx-build\n"
+"directly."
msgstr ""
-#: _cli/__init__.py:231
-msgid ""
+#: cmd/quickstart.py:412
+msgid "Create Makefile? (y/n)"
msgstr ""
-#: _cli/__init__.py:263
-msgid "See 'sphinx --help'.\n"
+#: cmd/quickstart.py:416
+msgid "Create Windows command file? (y/n)"
msgstr ""
-#: environment/__init__.py:86
-msgid "new config"
+#: cmd/quickstart.py:468 ext/apidoc/_generate.py:76
+#, python-format
+msgid "Creating file %s."
msgstr ""
-#: environment/__init__.py:87
-msgid "config changed"
+#: cmd/quickstart.py:473 ext/apidoc/_generate.py:73
+#, python-format
+msgid "File %s already exists, skipping."
msgstr ""
-#: environment/__init__.py:88
-msgid "extensions changed"
+#: cmd/quickstart.py:516
+msgid "Finished: An initial directory structure has been created."
msgstr ""
-#: environment/__init__.py:253
-msgid "build environment version not current"
+#: cmd/quickstart.py:520
+#, python-format
+msgid ""
+"You should now populate your master file %s and create other documentation\n"
+"source files. "
msgstr ""
-#: environment/__init__.py:255
-msgid "source directory has changed"
+#: cmd/quickstart.py:527
+msgid ""
+"Use the Makefile to build the docs, like so:\n"
+" make builder"
msgstr ""
-#: environment/__init__.py:325
+#: cmd/quickstart.py:531
#, python-format
-msgid "The configuration has changed (1 option: %r)"
+msgid ""
+"Use the sphinx-build command to build the docs, like so:\n"
+" sphinx-build -b builder %s %s"
msgstr ""
-#: environment/__init__.py:330
-#, python-format
-msgid "The configuration has changed (%d options: %s)"
+#: cmd/quickstart.py:538
+msgid ""
+"where \"builder\" is one of the supported builders, e.g. html, latex or "
+"linkcheck."
msgstr ""
-#: environment/__init__.py:336
-#, python-format
-msgid "The configuration has changed (%d options: %s, ...)"
+#: cmd/quickstart.py:573
+msgid ""
+"\n"
+"Generate required files for a Sphinx project.\n"
+"\n"
+"sphinx-quickstart is an interactive tool that asks some questions about your\n"
+"project and then generates a complete documentation directory and sample\n"
+"Makefile to be used with sphinx-build.\n"
msgstr ""
-#: environment/__init__.py:379
-msgid ""
-"This environment is incompatible with the selected builder, please choose "
-"another doctree directory."
+#: cmd/quickstart.py:592
+msgid "quiet mode"
msgstr ""
-#: environment/__init__.py:493
-#, python-format
-msgid "Failed to scan documents in %s: %r"
+#: cmd/quickstart.py:602
+msgid "project root"
msgstr ""
-#: environment/__init__.py:658 ext/intersphinx/_resolve.py:234
-#, python-format
-msgid "Domain %r is not registered"
+#: cmd/quickstart.py:605
+msgid "Structure options"
msgstr ""
-#: environment/__init__.py:813
-msgid "document isn't included in any toctree"
+#: cmd/quickstart.py:611
+msgid "if specified, separate source and build dirs"
msgstr ""
-#: environment/__init__.py:859
-msgid "self referenced toctree found. Ignored."
+#: cmd/quickstart.py:617
+msgid "if specified, create build dir under source dir"
msgstr ""
-#: environment/__init__.py:889
-#, python-format
-msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
+#: cmd/quickstart.py:623
+msgid "replacement for dot in _templates etc."
msgstr ""
-#: util/i18n.py:100
-#, python-format
-msgid "reading error: %s, %s"
-msgstr "rusachoj rusik'inïk: %s, %s"
+#: cmd/quickstart.py:626
+msgid "Project basic options"
+msgstr ""
-#: util/i18n.py:113
-#, python-format
-msgid "writing error: %s, %s"
-msgstr "rusachoj rutz'ib'axïk: %s, %s"
+#: cmd/quickstart.py:628
+msgid "project name"
+msgstr ""
-#: util/i18n.py:146
-#, python-format
-msgid "locale_dir %s does not exist"
+#: cmd/quickstart.py:631
+msgid "author names"
msgstr ""
-#: util/i18n.py:236
-#, python-format
-msgid "Invalid Babel locale: %r."
+#: cmd/quickstart.py:638
+msgid "version of project"
msgstr ""
-#: util/i18n.py:245
-#, python-format
-msgid ""
-"Invalid date format. Quote the string by single quote if you want to output "
-"it directly: %s"
+#: cmd/quickstart.py:645
+msgid "release of project"
msgstr ""
-#: util/docfields.py:103
-#, python-format
-msgid ""
-"Problem in %s domain: field is supposed to use role '%s', but that role is "
-"not in the domain."
+#: cmd/quickstart.py:652
+msgid "document language"
msgstr ""
-#: util/nodes.py:423
-#, python-format
-msgid ""
-"%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead."
+#: cmd/quickstart.py:655
+msgid "source file suffix"
msgstr ""
-#: util/nodes.py:490
-#, python-format
-msgid "toctree contains ref to nonexisting file %r"
+#: cmd/quickstart.py:658
+msgid "master document name"
+msgstr ""
+
+#: cmd/quickstart.py:661
+msgid "use epub"
+msgstr ""
+
+#: cmd/quickstart.py:664
+msgid "Extension options"
msgstr ""
-#: util/nodes.py:706
+#: cmd/quickstart.py:671
#, python-format
-msgid "exception while evaluating only directive expression: %s"
+msgid "enable %s extension"
msgstr ""
-#: util/display.py:82
-msgid "skipped"
+#: cmd/quickstart.py:678
+msgid "enable arbitrary extensions"
msgstr ""
-#: util/display.py:87
-msgid "failed"
+#: cmd/quickstart.py:681
+msgid "Makefile and Batchfile creation"
msgstr ""
-#: util/osutil.py:131
-#, python-format
+#: cmd/quickstart.py:687
+msgid "create makefile"
+msgstr ""
+
+#: cmd/quickstart.py:693
+msgid "do not create makefile"
+msgstr ""
+
+#: cmd/quickstart.py:700
+msgid "create batchfile"
+msgstr ""
+
+#: cmd/quickstart.py:706
+msgid "do not create batchfile"
+msgstr ""
+
+#: cmd/quickstart.py:715
+msgid "use make-mode for Makefile/make.bat"
+msgstr ""
+
+#: cmd/quickstart.py:718 ext/apidoc/_cli.py:243
+msgid "Project templating"
+msgstr ""
+
+#: cmd/quickstart.py:724 ext/apidoc/_cli.py:249
+msgid "template directory for template files"
+msgstr ""
+
+#: cmd/quickstart.py:731
+msgid "define a template variable"
+msgstr ""
+
+#: cmd/quickstart.py:767
+msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
+msgstr ""
+
+#: cmd/quickstart.py:786
msgid ""
-"Aborted attempted copy from %s to %s (the destination path has existing "
-"data)."
+"Error: specified path is not a directory, or sphinx files already exist."
msgstr ""
-#: util/docutils.py:309
-#, python-format
-msgid "unknown directive name: %s"
+#: cmd/quickstart.py:793
+msgid ""
+"sphinx-quickstart only generate into a empty directory. Please specify a new"
+" root path."
msgstr ""
-#: util/docutils.py:345
+#: cmd/quickstart.py:810
#, python-format
-msgid "unknown role name: %s"
+msgid "Invalid template variable: %s"
msgstr ""
-#: util/docutils.py:789
+#: directives/other.py:119
#, python-format
-msgid "unknown node type: %r"
+msgid "toctree glob pattern %r didn't match any documents"
msgstr ""
-#: util/fileutil.py:76
+#: directives/other.py:153 environment/adapters/toctree.py:372
#, python-format
-msgid ""
-"Aborted attempted copy from rendered template %s to %s (the destination path"
-" has existing data)."
+msgid "toctree contains reference to excluded document %r"
msgstr ""
-#: util/fileutil.py:89
+#: directives/other.py:156
#, python-format
-msgid "Writing evaluated template result to %s"
+msgid "toctree contains reference to nonexisting document %r"
msgstr ""
-#: util/rst.py:73
+#: directives/other.py:169
#, python-format
-msgid "default role %s not found"
+msgid "duplicated entry found in toctree: %s"
msgstr ""
-#: util/inventory.py:147
-#, python-format
-msgid "inventory <%s> contains duplicate definitions of %s"
+#: directives/other.py:203
+msgid "Section author: "
msgstr ""
-#: util/inventory.py:166
-#, python-format
-msgid "inventory <%s> contains multiple definitions for %s"
+#: directives/other.py:205
+msgid "Module author: "
msgstr ""
-#: writers/latex.py:1097 writers/manpage.py:259 writers/texinfo.py:663
-msgid "Footnotes"
+#: directives/other.py:207
+msgid "Code author: "
msgstr ""
-#: writers/manpage.py:289 writers/text.py:945
-#, python-format
-msgid "[image: %s]"
-msgstr "[wachib'äl: %s]"
+#: directives/other.py:209
+msgid "Author: "
+msgstr ""
-#: writers/manpage.py:290 writers/text.py:946
-msgid "[image]"
-msgstr "[wachib'äl]"
+#: directives/other.py:269
+msgid ".. acks content is not a list"
+msgstr ""
-#: builders/latex/__init__.py:206 domains/std/__init__.py:771
-#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:106
-#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
-#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
-#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
-#: themes/basic/genindex.html:59 themes/basic/layout.html:127
-#: writers/texinfo.py:514
-msgid "Index"
-msgstr "Cholwuj"
+#: directives/other.py:292
+msgid ".. hlist content is not a list"
+msgstr ""
-#: writers/latex.py:743 writers/texinfo.py:646
+#: directives/patches.py:70
msgid ""
-"encountered title node not in section, topic, table, admonition or sidebar"
+"\":file:\" option for csv-table directive now recognizes an absolute path as"
+" a relative path from source directory. Please update your document."
msgstr ""
-#: writers/texinfo.py:1217
-msgid "caption not inside a figure."
+#: directives/code.py:66
+msgid "non-whitespace stripped by dedent"
msgstr ""
-#: writers/texinfo.py:1303
+#: directives/code.py:87
#, python-format
-msgid "unimplemented node type: %r"
+msgid "Invalid caption: %s"
msgstr ""
-#: writers/latex.py:361
+#: directives/code.py:131 directives/code.py:297 directives/code.py:483
#, python-format
-msgid "unknown %r toplevel_sectioning for class %r"
+msgid "line number spec is out of range(1-%d): %r"
msgstr ""
-#: builders/latex/__init__.py:224 writers/latex.py:411
+#: directives/code.py:216
#, python-format
-msgid "no Babel option known for language %r"
+msgid "Cannot use both \"%s\" and \"%s\" options"
msgstr ""
-#: writers/latex.py:429
-msgid "too large :maxdepth:, ignored."
+#: directives/code.py:231
+#, python-format
+msgid "Include file '%s' not found or reading it failed"
+msgstr ""
+
+#: directives/code.py:235
+#, python-format
+msgid ""
+"Encoding %r used for reading included file '%s' seems to be wrong, try "
+"giving an :encoding: option"
msgstr ""
-#: writers/latex.py:591
+#: directives/code.py:276
#, python-format
-msgid "template %s not found; loading from legacy %s instead"
+msgid "Object named %r not found in include file %r"
msgstr ""
-#: writers/latex.py:707
-msgid "document title is not a single Text node"
+#: directives/code.py:309
+msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
msgstr ""
-#: writers/html5.py:572 writers/latex.py:1106
+#: directives/code.py:314
#, python-format
-msgid "unsupported rubric heading level: %s"
+msgid "Line spec %r: no lines pulled from include file %r"
+msgstr ""
+
+#: builders/html/__init__.py:475 builders/latex/__init__.py:196
+#: transforms/__init__.py:134 writers/manpage.py:97 writers/texinfo.py:220
+#, python-format
+msgid "%b %d, %Y"
msgstr ""
-#: writers/latex.py:1183
+#: builders/latex/__init__.py:203 domains/std/__init__.py:771
+#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:107
+#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
+#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
+#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
+#: themes/basic/genindex.html:59 themes/basic/layout.html:127
+#: writers/texinfo.py:514
+msgid "Index"
+msgstr "Cholwuj"
+
+#: writers/latex.py:768 writers/texinfo.py:646
msgid ""
-"both tabularcolumns and :widths: option are given. :widths: is ignored."
+"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
-#: writers/latex.py:1580
-#, python-format
-msgid "dimension unit %s is invalid. Ignored."
+#: writers/latex.py:1118 writers/manpage.py:258 writers/texinfo.py:663
+msgid "Footnotes"
msgstr ""
-#: writers/latex.py:1939
-#, python-format
-msgid "unknown index entry type %s found"
+#: writers/texinfo.py:1217
+msgid "caption not inside a figure."
msgstr ""
-#: domains/math.py:128 writers/latex.py:2495
+#: writers/texinfo.py:1303
#, python-format
-msgid "Invalid math_eqref_format: %r"
+msgid "unimplemented node type: %r"
msgstr ""
+#: writers/manpage.py:288 writers/text.py:971
+#, python-format
+msgid "[image: %s]"
+msgstr "[wachib'äl: %s]"
+
+#: writers/manpage.py:289 writers/text.py:972
+msgid "[image]"
+msgstr "[wachib'äl]"
+
#: writers/html5.py:96 writers/html5.py:105
msgid "Link to this definition"
msgstr ""
@@ -1832,6 +2343,11 @@ msgstr ""
msgid "Link to this table"
msgstr ""
+#: writers/html5.py:572 writers/latex.py:1127
+#, python-format
+msgid "unsupported rubric heading level: %s"
+msgstr ""
+
#: writers/html5.py:636
msgid "Link to this code"
msgstr ""
@@ -1848,775 +2364,472 @@ msgstr ""
msgid "Could not obtain image size. :scale: option is ignored."
msgstr ""
-#: domains/__init__.py:322
+#: writers/latex.py:386
#, python-format
-msgid "%s %s"
+msgid "unknown %r toplevel_sectioning for class %r"
msgstr ""
-#: domains/math.py:73
+#: builders/latex/__init__.py:221 writers/latex.py:436
#, python-format
-msgid "duplicate label of equation %s, other instance in %s"
+msgid "no Babel option known for language %r"
msgstr ""
-#: domains/javascript.py:182
-#, python-format
-msgid "%s() (built-in function)"
+#: writers/latex.py:454
+msgid "too large :maxdepth:, ignored."
msgstr ""
-#: domains/javascript.py:183 domains/python/__init__.py:287
+#: writers/latex.py:616
#, python-format
-msgid "%s() (%s method)"
+msgid "template %s not found; loading from legacy %s instead"
msgstr ""
-#: domains/javascript.py:185
-#, python-format
-msgid "%s() (class)"
+#: writers/latex.py:732
+msgid "document title is not a single Text node"
msgstr ""
-#: domains/javascript.py:187
-#, python-format
-msgid "%s (global variable or constant)"
+#: writers/latex.py:1198
+msgid ""
+"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
-#: domains/javascript.py:189 domains/python/__init__.py:378
+#: writers/latex.py:1228
#, python-format
-msgid "%s (%s attribute)"
+msgid ""
+"colspec %s was given which appears to use tabulary syntax. But this table "
+"can not be rendered as a tabulary; the given colspec will be ignored."
msgstr ""
-#: domains/javascript.py:273
-msgid "Arguments"
+#: writers/latex.py:1615
+#, python-format
+msgid "dimension unit %s is invalid. Ignored."
msgstr ""
-#: domains/cpp/__init__.py:489 domains/javascript.py:280
-msgid "Throws"
+#: writers/latex.py:1950
+#, python-format
+msgid "unknown index entry type %s found"
msgstr ""
-#: domains/c/__init__.py:339 domains/cpp/__init__.py:502
-#: domains/javascript.py:287 domains/python/_object.py:221
-msgid "Returns"
+#: _cli/__init__.py:73
+msgid "Usage:"
msgstr ""
-#: domains/c/__init__.py:345 domains/javascript.py:293
-#: domains/python/_object.py:227
-msgid "Return type"
+#: _cli/__init__.py:75
+#, python-brace-format
+msgid "{0} [OPTIONS] []"
msgstr ""
-#: domains/javascript.py:370
-#, python-format
-msgid "%s (module)"
+#: _cli/__init__.py:78
+msgid " The Sphinx documentation generator."
msgstr ""
-#: domains/c/__init__.py:751 domains/cpp/__init__.py:941
-#: domains/javascript.py:415 domains/python/__init__.py:740
-msgid "function"
+#: _cli/__init__.py:87
+msgid "Commands:"
msgstr ""
-#: domains/javascript.py:416 domains/python/__init__.py:744
-msgid "method"
+#: _cli/__init__.py:98
+msgid "Options"
msgstr ""
-#: domains/cpp/__init__.py:939 domains/javascript.py:417
-#: domains/python/__init__.py:742
-msgid "class"
-msgstr "Ruwäch"
+#: _cli/__init__.py:113 _cli/__init__.py:181
+msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
+msgstr ""
-#: domains/javascript.py:418 domains/python/__init__.py:741
-msgid "data"
+#: _cli/__init__.py:171
+#, python-brace-format
+msgid ""
+"{0}: error: {1}\n"
+"Run '{0} --help' for information"
msgstr ""
-#: domains/javascript.py:419 domains/python/__init__.py:747
-msgid "attribute"
+#: _cli/__init__.py:179
+msgid " Manage documentation with Sphinx."
msgstr ""
-#: domains/javascript.py:420 domains/python/__init__.py:750
-msgid "module"
+#: _cli/__init__.py:191
+msgid "Show the version and exit."
msgstr ""
-#: domains/javascript.py:454
-#, python-format
-msgid "duplicate %s description of %s, other %s in %s"
+#: _cli/__init__.py:199
+msgid "Show this message and exit."
msgstr ""
-#: domains/changeset.py:26
-#, python-format
-msgid "Added in version %s"
+#: _cli/__init__.py:203
+msgid "Logging"
msgstr ""
-#: domains/changeset.py:27
-#, python-format
-msgid "Changed in version %s"
+#: _cli/__init__.py:210
+msgid "Increase verbosity (can be repeated)"
msgstr ""
-#: domains/changeset.py:28
-#, python-format
-msgid "Deprecated since version %s"
+#: _cli/__init__.py:218
+msgid "Only print errors and warnings."
msgstr ""
-#: domains/changeset.py:29
-#, python-format
-msgid "Removed in version %s"
+#: _cli/__init__.py:225
+msgid "No output at all"
msgstr ""
-#: domains/rst.py:131 domains/rst.py:190
-#, python-format
-msgid "%s (directive)"
+#: _cli/__init__.py:231
+msgid ""
msgstr ""
-#: domains/rst.py:191 domains/rst.py:202
-#, python-format
-msgid ":%s: (directive option)"
+#: _cli/__init__.py:263
+msgid "See 'sphinx --help'.\n"
msgstr ""
-#: domains/rst.py:224
-#, python-format
-msgid "%s (role)"
+#: transforms/i18n.py:230 transforms/i18n.py:305
+#, python-brace-format
+msgid ""
+"inconsistent footnote references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: domains/rst.py:234
-msgid "directive"
+#: transforms/i18n.py:275
+#, python-brace-format
+msgid ""
+"inconsistent references in translated message. original: {0}, translated: "
+"{1}"
msgstr ""
-#: domains/rst.py:235
-msgid "directive-option"
+#: transforms/i18n.py:325
+#, python-brace-format
+msgid ""
+"inconsistent citation references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: domains/rst.py:236
-msgid "role"
+#: transforms/i18n.py:347
+#, python-brace-format
+msgid ""
+"inconsistent term references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: domains/rst.py:262
-#, python-format
-msgid "duplicate description of %s %s, other instance in %s"
+#: transforms/__init__.py:144
+msgid "could not calculate translation progress!"
msgstr ""
-#: domains/citation.py:75
-#, python-format
-msgid "duplicate citation %s, other instance in %s"
+#: transforms/__init__.py:149
+msgid "no translated elements!"
msgstr ""
-#: domains/citation.py:92
+#: transforms/__init__.py:258
#, python-format
-msgid "Citation [%s] is not referenced."
+msgid ""
+"4 column based index found. It might be a bug of extensions you use: %r"
msgstr ""
-#: locale/__init__.py:228
-msgid "Attention"
+#: transforms/__init__.py:299
+#, python-format
+msgid "Footnote [%s] is not referenced."
msgstr ""
-#: locale/__init__.py:229
-msgid "Caution"
+#: transforms/__init__.py:308
+msgid "Footnote [*] is not referenced."
msgstr ""
-#: locale/__init__.py:230
-msgid "Danger"
+#: transforms/__init__.py:319
+msgid "Footnote [#] is not referenced."
msgstr ""
-#: locale/__init__.py:231
-msgid "Error"
-msgstr "Sachoj"
-
-#: locale/__init__.py:232
-msgid "Hint"
+#: util/inventory.py:147
+#, python-format
+msgid "inventory <%s> contains duplicate definitions of %s"
msgstr ""
-#: locale/__init__.py:233
-msgid "Important"
+#: util/inventory.py:166
+#, python-format
+msgid "inventory <%s> contains multiple definitions for %s"
msgstr ""
-#: locale/__init__.py:234
-msgid "Note"
-msgstr ""
+#: util/i18n.py:100
+#, python-format
+msgid "reading error: %s, %s"
+msgstr "rusachoj rusik'inïk: %s, %s"
-#: locale/__init__.py:235
-msgid "See also"
-msgstr "Tatz'u chuqa'"
+#: util/i18n.py:113
+#, python-format
+msgid "writing error: %s, %s"
+msgstr "rusachoj rutz'ib'axïk: %s, %s"
-#: locale/__init__.py:236
-msgid "Tip"
+#: util/i18n.py:146
+#, python-format
+msgid "locale_dir %s does not exist"
msgstr ""
-#: locale/__init__.py:237
-msgid "Warning"
+#: util/i18n.py:244
+#, python-format
+msgid "Invalid Babel locale: %r."
msgstr ""
-#: cmd/quickstart.py:52
-msgid "automatically insert docstrings from modules"
+#: util/i18n.py:253
+#, python-format
+msgid ""
+"Invalid date format. Quote the string by single quote if you want to output "
+"it directly: %s"
msgstr ""
-#: cmd/quickstart.py:53
-msgid "automatically test code snippets in doctest blocks"
+#: util/osutil.py:131
+#, python-format
+msgid ""
+"Aborted attempted copy from %s to %s (the destination path has existing "
+"data)."
msgstr ""
-#: cmd/quickstart.py:54
-msgid "link between Sphinx documentation of different projects"
+#: util/display.py:82
+msgid "skipped"
msgstr ""
-#: cmd/quickstart.py:55
-msgid "write \"todo\" entries that can be shown or hidden on build"
+#: util/display.py:87
+msgid "failed"
msgstr ""
-#: cmd/quickstart.py:56
-msgid "checks for documentation coverage"
+#: util/docutils.py:325
+#, python-format
+msgid "unknown directive name: %s"
msgstr ""
-#: cmd/quickstart.py:57
-msgid "include math, rendered as PNG or SVG images"
+#: util/docutils.py:361
+#, python-format
+msgid "unknown role name: %s"
msgstr ""
-#: cmd/quickstart.py:58
-msgid "include math, rendered in the browser by MathJax"
+#: util/docutils.py:805
+#, python-format
+msgid "unknown node type: %r"
msgstr ""
-#: cmd/quickstart.py:59
-msgid "conditional inclusion of content based on config values"
+#: util/fileutil.py:76
+#, python-format
+msgid ""
+"Aborted attempted copy from rendered template %s to %s (the destination path"
+" has existing data)."
msgstr ""
-#: cmd/quickstart.py:60
-msgid "include links to the source code of documented Python objects"
+#: util/fileutil.py:89
+#, python-format
+msgid "Writing evaluated template result to %s"
msgstr ""
-#: cmd/quickstart.py:61
-msgid "create .nojekyll file to publish the document on GitHub pages"
+#: util/docfields.py:103
+#, python-format
+msgid ""
+"Problem in %s domain: field is supposed to use role '%s', but that role is "
+"not in the domain."
msgstr ""
-#: cmd/quickstart.py:110
-msgid "Please enter a valid path name."
+#: util/rst.py:73
+#, python-format
+msgid "default role %s not found"
msgstr ""
-#: cmd/quickstart.py:126
-msgid "Please enter some text."
+#: util/nodes.py:462
+#, python-format
+msgid ""
+"%r is no longer supported for index entries (from entry %r). Use 'pair: %s' "
+"instead."
msgstr ""
-#: cmd/quickstart.py:133
+#: util/nodes.py:523
#, python-format
-msgid "Please enter one of %s."
+msgid "toctree contains ref to nonexisting file %r"
msgstr ""
-#: cmd/quickstart.py:141
-msgid "Please enter either 'y' or 'n'."
+#: util/nodes.py:739
+#, python-format
+msgid "exception while evaluating only directive expression: %s"
msgstr ""
-#: cmd/quickstart.py:147
-msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
+#: templates/latex/longtable.tex.jinja:52
+#: templates/latex/sphinxmessages.sty.jinja:8
+msgid "continued from previous page"
msgstr ""
-#: cmd/quickstart.py:229
-#, python-format
-msgid "Welcome to the Sphinx %s quickstart utility."
-msgstr "Ütz apetïk pa rokisanem runuk'ik Sphinx %s."
-
-#: cmd/quickstart.py:234
-msgid ""
-"Please enter values for the following settings (just press Enter to\n"
-"accept a default value, if one is given in brackets)."
+#: templates/latex/longtable.tex.jinja:63
+#: templates/latex/sphinxmessages.sty.jinja:9
+msgid "continues on next page"
msgstr ""
-#: cmd/quickstart.py:241
-#, python-format
-msgid "Selected root path: %s"
+#: templates/latex/sphinxmessages.sty.jinja:10
+msgid "Non-alphabetical"
msgstr ""
-#: cmd/quickstart.py:244
-msgid "Enter the root path for documentation."
+#: environment/adapters/indexentries.py:267
+#: templates/latex/sphinxmessages.sty.jinja:11
+msgid "Symbols"
msgstr ""
-#: cmd/quickstart.py:245
-msgid "Root path for the documentation"
+#: templates/latex/sphinxmessages.sty.jinja:12
+msgid "Numbers"
+msgstr "Ajilanïk"
+
+#: templates/latex/sphinxmessages.sty.jinja:13
+msgid "page"
msgstr ""
-#: cmd/quickstart.py:254
-msgid "Error: an existing conf.py has been found in the selected root path."
+#: builders/latex/__init__.py:206 templates/latex/latex.tex.jinja:92
+msgid "Release"
msgstr ""
-#: cmd/quickstart.py:259
-msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
-msgstr ""
-
-#: cmd/quickstart.py:262
-msgid "Please enter a new root path (or just Enter to exit)"
-msgstr ""
-
-#: cmd/quickstart.py:273
-msgid ""
-"You have two options for placing the build directory for Sphinx output.\n"
-"Either, you use a directory \"_build\" within the root path, or you separate\n"
-"\"source\" and \"build\" directories within the root path."
-msgstr ""
-
-#: cmd/quickstart.py:279
-msgid "Separate source and build directories (y/n)"
-msgstr ""
-
-#: cmd/quickstart.py:286
-msgid ""
-"Inside the root directory, two more directories will be created; \"_templates\"\n"
-"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
-"files. You can enter another prefix (such as \".\") to replace the underscore."
-msgstr ""
-
-#: cmd/quickstart.py:291
-msgid "Name prefix for templates and static dir"
-msgstr ""
-
-#: cmd/quickstart.py:297
-msgid ""
-"The project name will occur in several places in the built documentation."
-msgstr ""
-
-#: cmd/quickstart.py:300
-msgid "Project name"
-msgstr "Rub'i' samäj"
-
-#: cmd/quickstart.py:302
-msgid "Author name(s)"
-msgstr "Kib'i' ajtz'ib'anel(a')"
-
-#: cmd/quickstart.py:308
-msgid ""
-"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
-"software. Each version can have multiple releases. For example, for\n"
-"Python the version is something like 2.5 or 3.0, while the release is\n"
-"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
-"just set both to the same value."
-msgstr ""
-
-#: cmd/quickstart.py:315
-msgid "Project version"
-msgstr "Rujalwäch samäj"
-
-#: cmd/quickstart.py:317
-msgid "Project release"
-msgstr ""
-
-#: cmd/quickstart.py:323
-msgid ""
-"If the documents are to be written in a language other than English,\n"
-"you can select a language here by its language code. Sphinx will then\n"
-"translate text that it generates into that language.\n"
-"\n"
-"For a list of supported codes, see\n"
-"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
-msgstr ""
-
-#: cmd/quickstart.py:331
-msgid "Project language"
-msgstr "Ruch'ab'äl samaj"
-
-#: cmd/quickstart.py:339
-msgid ""
-"The file name suffix for source files. Commonly, this is either \".txt\"\n"
-"or \".rst\". Only files with this suffix are considered documents."
-msgstr ""
-
-#: cmd/quickstart.py:343
-msgid "Source file suffix"
-msgstr ""
-
-#: cmd/quickstart.py:349
-msgid ""
-"One document is special in that it is considered the top node of the\n"
-"\"contents tree\", that is, it is the root of the hierarchical structure\n"
-"of the documents. Normally, this is \"index\", but if your \"index\"\n"
-"document is a custom template, you can also set this to another filename."
-msgstr ""
-
-#: cmd/quickstart.py:356
-msgid "Name of your master document (without suffix)"
-msgstr ""
-
-#: cmd/quickstart.py:367
-#, python-format
-msgid ""
-"Error: the master file %s has already been found in the selected root path."
-msgstr ""
-
-#: cmd/quickstart.py:373
-msgid "sphinx-quickstart will not overwrite the existing file."
-msgstr ""
-
-#: cmd/quickstart.py:377
-msgid ""
-"Please enter a new file name, or rename the existing file and press Enter"
-msgstr ""
-
-#: cmd/quickstart.py:385
-msgid "Indicate which of the following Sphinx extensions should be enabled:"
-msgstr ""
-
-#: cmd/quickstart.py:396
-msgid ""
-"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
-"been deselected."
-msgstr ""
-
-#: cmd/quickstart.py:406
-msgid ""
-"A Makefile and a Windows command file can be generated for you so that you\n"
-"only have to run e.g. `make html' instead of invoking sphinx-build\n"
-"directly."
-msgstr ""
-
-#: cmd/quickstart.py:411
-msgid "Create Makefile? (y/n)"
-msgstr ""
-
-#: cmd/quickstart.py:415
-msgid "Create Windows command file? (y/n)"
-msgstr ""
-
-#: cmd/quickstart.py:467 ext/apidoc/_generate.py:76
+#: transforms/post_transforms/images.py:79
#, python-format
-msgid "Creating file %s."
+msgid "Could not fetch remote image: %s [%s]"
msgstr ""
-#: cmd/quickstart.py:472 ext/apidoc/_generate.py:73
+#: transforms/post_transforms/images.py:96
#, python-format
-msgid "File %s already exists, skipping."
-msgstr ""
-
-#: cmd/quickstart.py:515
-msgid "Finished: An initial directory structure has been created."
+msgid "Could not fetch remote image: %s [%d]"
msgstr ""
-#: cmd/quickstart.py:519
+#: transforms/post_transforms/images.py:143
#, python-format
-msgid ""
-"You should now populate your master file %s and create other documentation\n"
-"source files. "
+msgid "Unknown image format: %s..."
msgstr ""
-#: cmd/quickstart.py:526
+#: transforms/post_transforms/__init__.py:88
msgid ""
-"Use the Makefile to build the docs, like so:\n"
-" make builder"
+"Could not determine the fallback text for the cross-reference. Might be a "
+"bug."
msgstr ""
-#: cmd/quickstart.py:530
+#: transforms/post_transforms/__init__.py:233
#, python-format
-msgid ""
-"Use the sphinx-build command to build the docs, like so:\n"
-" sphinx-build -b builder %s %s"
-msgstr ""
-
-#: cmd/quickstart.py:537
-msgid ""
-"where \"builder\" is one of the supported builders, e.g. html, latex or "
-"linkcheck."
-msgstr ""
-
-#: cmd/quickstart.py:572
-msgid ""
-"\n"
-"Generate required files for a Sphinx project.\n"
-"\n"
-"sphinx-quickstart is an interactive tool that asks some questions about your\n"
-"project and then generates a complete documentation directory and sample\n"
-"Makefile to be used with sphinx-build.\n"
-msgstr ""
-
-#: cmd/build.py:73 cmd/quickstart.py:581 ext/apidoc/_cli.py:27
-#: ext/autosummary/generate.py:835
-msgid "For more information, visit ."
-msgstr ""
-
-#: cmd/quickstart.py:591
-msgid "quiet mode"
-msgstr ""
-
-#: cmd/quickstart.py:601
-msgid "project root"
-msgstr ""
-
-#: cmd/quickstart.py:604
-msgid "Structure options"
-msgstr ""
-
-#: cmd/quickstart.py:610
-msgid "if specified, separate source and build dirs"
-msgstr ""
-
-#: cmd/quickstart.py:616
-msgid "if specified, create build dir under source dir"
-msgstr ""
-
-#: cmd/quickstart.py:622
-msgid "replacement for dot in _templates etc."
-msgstr ""
-
-#: cmd/quickstart.py:625
-msgid "Project basic options"
-msgstr ""
-
-#: cmd/quickstart.py:627
-msgid "project name"
-msgstr ""
-
-#: cmd/quickstart.py:630
-msgid "author names"
-msgstr ""
-
-#: cmd/quickstart.py:637
-msgid "version of project"
-msgstr ""
-
-#: cmd/quickstart.py:644
-msgid "release of project"
-msgstr ""
-
-#: cmd/quickstart.py:651
-msgid "document language"
-msgstr ""
-
-#: cmd/quickstart.py:654
-msgid "source file suffix"
-msgstr ""
-
-#: cmd/quickstart.py:657
-msgid "master document name"
-msgstr ""
-
-#: cmd/quickstart.py:660
-msgid "use epub"
-msgstr ""
-
-#: cmd/quickstart.py:663
-msgid "Extension options"
+msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr ""
-#: cmd/quickstart.py:670
+#: transforms/post_transforms/__init__.py:291
#, python-format
-msgid "enable %s extension"
-msgstr ""
-
-#: cmd/quickstart.py:677
-msgid "enable arbitrary extensions"
-msgstr ""
-
-#: cmd/quickstart.py:680
-msgid "Makefile and Batchfile creation"
-msgstr ""
-
-#: cmd/quickstart.py:686
-msgid "create makefile"
-msgstr ""
-
-#: cmd/quickstart.py:692
-msgid "do not create makefile"
-msgstr ""
-
-#: cmd/quickstart.py:699
-msgid "create batchfile"
-msgstr ""
-
-#: cmd/quickstart.py:705
-msgid "do not create batchfile"
-msgstr ""
-
-#: cmd/quickstart.py:714
-msgid "use make-mode for Makefile/make.bat"
-msgstr ""
-
-#: cmd/quickstart.py:717 ext/apidoc/_cli.py:243
-msgid "Project templating"
-msgstr ""
-
-#: cmd/quickstart.py:723 ext/apidoc/_cli.py:249
-msgid "template directory for template files"
-msgstr ""
-
-#: cmd/quickstart.py:730
-msgid "define a template variable"
-msgstr ""
-
-#: cmd/quickstart.py:766
-msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
-msgstr ""
-
-#: cmd/quickstart.py:785
-msgid ""
-"Error: specified path is not a directory, or sphinx files already exist."
-msgstr ""
-
-#: cmd/quickstart.py:792
-msgid ""
-"sphinx-quickstart only generate into a empty directory. Please specify a new"
-" root path."
+msgid "%s:%s reference target not found: %s"
msgstr ""
-#: cmd/quickstart.py:809
+#: transforms/post_transforms/__init__.py:297
#, python-format
-msgid "Invalid template variable: %s"
+msgid "%r reference target not found: %s"
msgstr ""
-#: cmd/build.py:64
-msgid "job number should be a positive number"
+#: _cli/util/errors.py:190
+msgid "Interrupted!"
msgstr ""
-#: cmd/build.py:74
-msgid ""
-"\n"
-"Generate documentation from source files.\n"
-"\n"
-"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
-"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
-"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
-"including 'conf.py'\n"
-"\n"
-"sphinx-build can create documentation in different formats. A format is\n"
-"selected by specifying the builder name on the command line; it defaults to\n"
-"HTML. Builders can also perform other tasks related to documentation\n"
-"processing.\n"
-"\n"
-"By default, everything that is outdated is built. Output only for selected\n"
-"files can be built by specifying individual filenames.\n"
+#: _cli/util/errors.py:194
+msgid "reStructuredText markup error!"
msgstr ""
-#: cmd/build.py:100
-msgid "path to documentation source files"
+#: _cli/util/errors.py:200
+msgid "Encoding error!"
msgstr ""
-#: cmd/build.py:103
-msgid "path to output directory"
+#: _cli/util/errors.py:203
+msgid "Recursion error!"
msgstr ""
-#: cmd/build.py:109
+#: _cli/util/errors.py:207
msgid ""
-"(optional) a list of specific files to rebuild. Ignored if --write-all is "
-"specified"
+"This can happen with very large or deeply nested source files. You can "
+"carefully increase the default Python recursion limit of 1,000 in conf.py "
+"with e.g.:"
msgstr ""
-#: cmd/build.py:114
-msgid "general options"
+#: _cli/util/errors.py:227
+msgid "Starting debugger:"
msgstr ""
-#: cmd/build.py:121
-msgid "builder to use (default: 'html')"
+#: _cli/util/errors.py:235
+msgid "The full traceback has been saved in:"
msgstr ""
-#: cmd/build.py:131
+#: _cli/util/errors.py:240
msgid ""
-"run in parallel with N processes, when possible. 'auto' uses the number of "
-"CPU cores"
-msgstr ""
-
-#: cmd/build.py:140
-msgid "write all files (default: only write new and changed files)"
-msgstr ""
-
-#: cmd/build.py:147
-msgid "don't use a saved environment, always read all files"
-msgstr ""
-
-#: cmd/build.py:150
-msgid "path options"
+"To report this error to the developers, please open an issue at "
+". Thanks!"
msgstr ""
-#: cmd/build.py:157
+#: _cli/util/errors.py:246
msgid ""
-"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
-msgstr ""
-
-#: cmd/build.py:166
-msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
-msgstr ""
-
-#: cmd/build.py:175
-msgid "use no configuration file, only use settings from -D options"
-msgstr ""
-
-#: cmd/build.py:184
-msgid "override a setting in configuration file"
-msgstr ""
-
-#: cmd/build.py:193
-msgid "pass a value into HTML templates"
-msgstr ""
-
-#: cmd/build.py:202
-msgid "define tag: include \"only\" blocks with TAG"
-msgstr ""
-
-#: cmd/build.py:209
-msgid "nitpicky mode: warn about all missing references"
+"Please also report this if it was a user error, so that a better error "
+"message can be provided next time."
msgstr ""
-#: cmd/build.py:212
-msgid "console output options"
+#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
+msgid "Collapse sidebar"
msgstr ""
-#: cmd/build.py:219
-msgid "increase verbosity (can be repeated)"
+#: themes/basic/layout.html:18
+msgid "Navigation"
msgstr ""
-#: cmd/build.py:226 ext/apidoc/_cli.py:66
-msgid "no output on stdout, just warnings on stderr"
+#: themes/basic/layout.html:115
+#, python-format
+msgid "Search within %(docstitle)s"
msgstr ""
-#: cmd/build.py:233
-msgid "no output at all, not even warnings"
+#: themes/basic/layout.html:124
+msgid "About these documents"
msgstr ""
-#: cmd/build.py:241
-msgid "do emit colored output (default: auto-detect)"
+#: themes/agogo/layout.html:34 themes/basic/layout.html:130
+#: themes/basic/search.html:3 themes/basic/search.html:15
+msgid "Search"
msgstr ""
-#: cmd/build.py:249
-msgid "do not emit colored output (default: auto-detect)"
+#: themes/basic/layout.html:133 themes/basic/layout.html:177
+#: themes/basic/layout.html:179
+msgid "Copyright"
msgstr ""
-#: cmd/build.py:252
-msgid "warning control options"
+#: themes/basic/layout.html:183 themes/basic/layout.html:189
+#, python-format
+msgid "© %(copyright_prefix)s %(copyright)s."
msgstr ""
-#: cmd/build.py:258
-msgid "write warnings (and errors) to given file"
+#: themes/basic/layout.html:201
+#, python-format
+msgid "Last updated on %(last_updated)s."
msgstr ""
-#: cmd/build.py:265
-msgid "turn warnings into errors"
+#: themes/basic/layout.html:204
+#, python-format
+msgid ""
+"Created using Sphinx "
+"%(sphinx_version)s."
msgstr ""
-#: cmd/build.py:273
-msgid "show full traceback on exception"
+#: themes/basic/relations.html:4
+msgid "Previous topic"
msgstr ""
-#: cmd/build.py:276
-msgid "run Pdb on exception"
+#: themes/basic/relations.html:6
+msgid "previous chapter"
msgstr ""
-#: cmd/build.py:282
-msgid "raise an exception on warnings"
+#: themes/basic/relations.html:11
+msgid "Next topic"
msgstr ""
-#: cmd/build.py:325
-msgid "cannot combine -a option and filenames"
+#: themes/basic/relations.html:13
+msgid "next chapter"
msgstr ""
-#: cmd/build.py:357
+#: themes/basic/genindex-single.html:26
#, python-format
-msgid "cannot open warning file '%s': %s"
-msgstr ""
-
-#: cmd/build.py:376
-msgid "-D option argument must be in the form name=value"
+msgid "Index – %(key)s"
msgstr ""
-#: cmd/build.py:383
-msgid "-A option argument must be in the form name=value"
+#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
+#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
+msgid "Full index on one page"
msgstr ""
-#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
-msgid "Collapse sidebar"
-msgstr ""
+#: themes/basic/sourcelink.html:4
+msgid "This Page"
+msgstr "Ruxaq wuj re'"
-#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
-#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
-msgid "Table of Contents"
+#: themes/agogo/layout.html:81 themes/basic/sourcelink.html:7
+msgid "Show Source"
msgstr ""
-#: themes/agogo/layout.html:34 themes/basic/layout.html:130
-#: themes/basic/search.html:3 themes/basic/search.html:15
-msgid "Search"
+#: themes/basic/searchbox.html:4
+msgid "Quick search"
msgstr ""
#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
@@ -2624,19 +2837,6 @@ msgstr ""
msgid "Go"
msgstr ""
-#: themes/agogo/layout.html:81 themes/basic/sourcelink.html:7
-msgid "Show Source"
-msgstr ""
-
-#: themes/haiku/layout.html:16
-msgid "Contents"
-msgstr ""
-
-#: themes/basic/opensearch.xml:4
-#, python-format
-msgid "Search %(docstitle)s"
-msgstr ""
-
#: themes/basic/defindex.html:4
msgid "Overview"
msgstr ""
@@ -2649,122 +2849,63 @@ msgstr "Ütz apetïk! Wawe' k'o"
msgid "the documentation for"
msgstr "ri wuj richin"
-#: themes/basic/defindex.html:10
-msgid "last updated"
-msgstr ""
-
-#: themes/basic/defindex.html:13
-msgid "Indices and tables:"
-msgstr ""
-
-#: themes/basic/defindex.html:16
-msgid "Complete Table of Contents"
-msgstr ""
-
-#: themes/basic/defindex.html:17
-msgid "lists all sections and subsections"
-msgstr ""
-
-#: domains/std/__init__.py:773 domains/std/__init__.py:786
-#: themes/basic/defindex.html:18
-msgid "Search Page"
-msgstr ""
-
-#: themes/basic/defindex.html:19
-msgid "search this documentation"
-msgstr ""
-
-#: themes/basic/defindex.html:21
-msgid "Global Module Index"
-msgstr ""
-
-#: themes/basic/defindex.html:22
-msgid "quick access to all modules"
-msgstr ""
-
-#: builders/html/__init__.py:507 themes/basic/defindex.html:23
-msgid "General Index"
-msgstr "Konojel cholwuj"
-
-#: themes/basic/defindex.html:24
-msgid "all functions, classes, terms"
-msgstr ""
-
-#: themes/basic/sourcelink.html:4
-msgid "This Page"
-msgstr "Ruxaq wuj re'"
-
-#: themes/basic/genindex-single.html:26
-#, python-format
-msgid "Index – %(key)s"
-msgstr ""
-
-#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
-#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
-msgid "Full index on one page"
-msgstr ""
-
-#: themes/basic/searchbox.html:4
-msgid "Quick search"
-msgstr ""
-
-#: themes/basic/genindex-split.html:8
-msgid "Index pages by letter"
+#: themes/basic/defindex.html:10
+msgid "last updated"
msgstr ""
-#: themes/basic/genindex-split.html:17
-msgid "can be huge"
+#: themes/basic/defindex.html:13
+msgid "Indices and tables:"
msgstr ""
-#: themes/basic/relations.html:4
-msgid "Previous topic"
+#: themes/basic/defindex.html:16
+msgid "Complete Table of Contents"
msgstr ""
-#: themes/basic/relations.html:6
-msgid "previous chapter"
+#: themes/basic/defindex.html:17
+msgid "lists all sections and subsections"
msgstr ""
-#: themes/basic/relations.html:11
-msgid "Next topic"
+#: domains/std/__init__.py:773 domains/std/__init__.py:786
+#: themes/basic/defindex.html:18
+msgid "Search Page"
msgstr ""
-#: themes/basic/relations.html:13
-msgid "next chapter"
+#: themes/basic/defindex.html:19
+msgid "search this documentation"
msgstr ""
-#: themes/basic/layout.html:18
-msgid "Navigation"
+#: themes/basic/defindex.html:21
+msgid "Global Module Index"
msgstr ""
-#: themes/basic/layout.html:115
-#, python-format
-msgid "Search within %(docstitle)s"
+#: themes/basic/defindex.html:22
+msgid "quick access to all modules"
msgstr ""
-#: themes/basic/layout.html:124
-msgid "About these documents"
+#: builders/html/__init__.py:496 themes/basic/defindex.html:23
+msgid "General Index"
+msgstr "Konojel cholwuj"
+
+#: themes/basic/defindex.html:24
+msgid "all functions, classes, terms"
msgstr ""
-#: themes/basic/layout.html:133 themes/basic/layout.html:177
-#: themes/basic/layout.html:179
-msgid "Copyright"
+#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
+#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
+msgid "Table of Contents"
msgstr ""
-#: themes/basic/layout.html:183 themes/basic/layout.html:189
+#: themes/basic/opensearch.xml:4
#, python-format
-msgid "© %(copyright_prefix)s %(copyright)s."
+msgid "Search %(docstitle)s"
msgstr ""
-#: themes/basic/layout.html:201
-#, python-format
-msgid "Last updated on %(last_updated)s."
+#: themes/basic/genindex-split.html:8
+msgid "Index pages by letter"
msgstr ""
-#: themes/basic/layout.html:204
-#, python-format
-msgid ""
-"Created using Sphinx "
-"%(sphinx_version)s."
+#: themes/basic/genindex-split.html:17
+msgid "can be huge"
msgstr ""
#: themes/basic/search.html:20
@@ -2783,21 +2924,21 @@ msgstr ""
msgid "search"
msgstr ""
-#: themes/basic/static/sphinx_highlight.js:112
-msgid "Hide Search Matches"
+#: themes/haiku/layout.html:16
+msgid "Contents"
msgstr ""
-#: themes/basic/static/searchtools.js:117
+#: themes/basic/static/searchtools.js:132
msgid "Search Results"
msgstr ""
-#: themes/basic/static/searchtools.js:119
+#: themes/basic/static/searchtools.js:134
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
msgstr ""
-#: themes/basic/static/searchtools.js:123
+#: themes/basic/static/searchtools.js:138
#, python-brace-format
msgid "Search finished, found one page matching the search query."
msgid_plural ""
@@ -2805,21 +2946,20 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: themes/basic/static/searchtools.js:253
+#: themes/basic/static/searchtools.js:276
msgid "Searching"
msgstr ""
-#: themes/basic/static/searchtools.js:270
+#: themes/basic/static/searchtools.js:293
msgid "Preparing search..."
msgstr ""
-#: themes/basic/static/searchtools.js:474
+#: themes/basic/static/searchtools.js:526
msgid ", in "
msgstr ", pa"
-#: themes/basic/changes/rstsource.html:5
-#, python-format
-msgid "%(filename)s — %(docstitle)s"
+#: themes/basic/static/sphinx_highlight.js:112
+msgid "Hide Search Matches"
msgstr ""
#: themes/basic/changes/frameset.html:5
@@ -2828,6 +2968,11 @@ msgstr ""
msgid "Changes in Version %(version)s — %(docstitle)s"
msgstr ""
+#: themes/basic/changes/rstsource.html:5
+#, python-format
+msgid "%(filename)s — %(docstitle)s"
+msgstr ""
+
#: themes/basic/changes/versionchanges.html:17
#, python-format
msgid "Automatically generated list of changes in version %(version)s"
@@ -2849,119 +2994,126 @@ msgstr ""
msgid "Expand sidebar"
msgstr ""
-#: domains/python/_annotations.py:529
+#: domains/python/_annotations.py:522
msgid "Positional-only parameter separator (PEP 570)"
msgstr ""
-#: domains/python/_annotations.py:540
+#: domains/python/_annotations.py:533
msgid "Keyword-only parameters separator (PEP 3102)"
msgstr ""
-#: domains/python/__init__.py:113 domains/python/__init__.py:278
+#: domains/c/__init__.py:354 domains/cpp/__init__.py:485
+#: domains/python/_object.py:190 ext/napoleon/docstring.py:980
+msgid "Parameters"
+msgstr "Jalajöj"
+
+#: domains/python/_object.py:206
+msgid "Variables"
+msgstr "Retal jalöj"
+
+#: domains/python/_object.py:214
+msgid "Raises"
+msgstr ""
+
+#: domains/python/__init__.py:105 domains/python/__init__.py:270
#, python-format
msgid "%s() (in module %s)"
msgstr ""
-#: domains/python/__init__.py:180 domains/python/__init__.py:374
-#: domains/python/__init__.py:434 domains/python/__init__.py:474
+#: domains/python/__init__.py:172 domains/python/__init__.py:366
+#: domains/python/__init__.py:426 domains/python/__init__.py:466
#, python-format
msgid "%s (in module %s)"
msgstr ""
-#: domains/python/__init__.py:182
+#: domains/python/__init__.py:174
#, python-format
msgid "%s (built-in variable)"
msgstr ""
-#: domains/python/__init__.py:217
+#: domains/python/__init__.py:209
#, python-format
msgid "%s (built-in class)"
msgstr ""
-#: domains/python/__init__.py:218
+#: domains/python/__init__.py:210
#, python-format
msgid "%s (class in %s)"
msgstr ""
-#: domains/python/__init__.py:283
+#: domains/python/__init__.py:275
#, python-format
msgid "%s() (%s class method)"
msgstr ""
-#: domains/python/__init__.py:285
+#: domains/python/__init__.py:277
#, python-format
msgid "%s() (%s static method)"
msgstr ""
-#: domains/python/__init__.py:438
+#: domains/python/__init__.py:430
#, python-format
msgid "%s (%s property)"
msgstr ""
-#: domains/python/__init__.py:478
+#: domains/python/__init__.py:470
#, python-format
msgid "%s (type alias in %s)"
msgstr ""
-#: domains/python/__init__.py:638
+#: domains/python/__init__.py:624
msgid "Python Module Index"
msgstr ""
-#: domains/python/__init__.py:639
+#: domains/python/__init__.py:625
msgid "modules"
msgstr ""
-#: domains/python/__init__.py:717
+#: domains/python/__init__.py:703
msgid "Deprecated"
msgstr ""
-#: domains/python/__init__.py:743
+#: domains/python/__init__.py:729
msgid "exception"
msgstr ""
-#: domains/python/__init__.py:745
+#: domains/python/__init__.py:731
msgid "class method"
msgstr ""
-#: domains/python/__init__.py:746
+#: domains/python/__init__.py:732
msgid "static method"
msgstr ""
-#: domains/python/__init__.py:748
+#: domains/python/__init__.py:734
msgid "property"
msgstr ""
-#: domains/python/__init__.py:749
+#: domains/python/__init__.py:735
msgid "type alias"
msgstr ""
-#: domains/python/__init__.py:818
+#: domains/python/__init__.py:804
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :no-index: for"
" one of them"
msgstr ""
-#: domains/python/__init__.py:978
+#: domains/python/__init__.py:974
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
-#: domains/python/__init__.py:1052
+#: domains/python/__init__.py:1048
msgid " (deprecated)"
msgstr ""
-#: domains/c/__init__.py:326 domains/cpp/__init__.py:483
-#: domains/python/_object.py:190 ext/napoleon/docstring.py:974
-msgid "Parameters"
-msgstr "Jalajöj"
-
-#: domains/python/_object.py:206
-msgid "Variables"
-msgstr "Retal jalöj"
-
-#: domains/python/_object.py:214
-msgid "Raises"
+#: domains/cpp/__init__.py:394 domains/cpp/_symbol.py:946
+#, python-format
+msgid ""
+"Duplicate C++ declaration, also defined at %s:%s.\n"
+"Declaration is '.. cpp:%s:: %s'."
msgstr ""
#: domains/cpp/__init__.py:159
@@ -2973,92 +3125,85 @@ msgstr ""
msgid "%s (C++ %s)"
msgstr ""
-#: domains/cpp/__init__.py:392 domains/cpp/_symbol.py:942
-#, python-format
-msgid ""
-"Duplicate C++ declaration, also defined at %s:%s.\n"
-"Declaration is '.. cpp:%s:: %s'."
-msgstr ""
-
-#: domains/c/__init__.py:333 domains/cpp/__init__.py:496
+#: domains/c/__init__.py:361 domains/cpp/__init__.py:498
msgid "Return values"
msgstr ""
-#: domains/c/__init__.py:754 domains/cpp/__init__.py:940
+#: domains/c/__init__.py:782 domains/cpp/__init__.py:942
msgid "union"
msgstr ""
-#: domains/c/__init__.py:749 domains/cpp/__init__.py:942
+#: domains/c/__init__.py:777 domains/cpp/__init__.py:944
msgid "member"
msgstr ""
-#: domains/c/__init__.py:757 domains/cpp/__init__.py:943
+#: domains/c/__init__.py:785 domains/cpp/__init__.py:945
msgid "type"
msgstr ""
-#: domains/cpp/__init__.py:944
+#: domains/cpp/__init__.py:946
msgid "concept"
msgstr ""
-#: domains/c/__init__.py:755 domains/cpp/__init__.py:945
+#: domains/c/__init__.py:783 domains/cpp/__init__.py:947
msgid "enum"
msgstr ""
-#: domains/c/__init__.py:756 domains/cpp/__init__.py:946
+#: domains/c/__init__.py:784 domains/cpp/__init__.py:948
msgid "enumerator"
msgstr ""
-#: domains/c/__init__.py:760 domains/cpp/__init__.py:949
+#: domains/c/__init__.py:788 domains/cpp/__init__.py:951
msgid "function parameter"
msgstr ""
-#: domains/cpp/__init__.py:952
+#: domains/cpp/__init__.py:954
msgid "template parameter"
msgstr ""
-#: domains/c/__init__.py:211
-#, python-format
-msgid "%s (C %s)"
-msgstr ""
-
-#: domains/c/__init__.py:277 domains/c/_symbol.py:557
+#: domains/c/__init__.py:279 domains/c/_symbol.py:569
#, python-format
msgid ""
"Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'."
msgstr ""
-#: domains/c/__init__.py:750
+#: domains/c/__init__.py:211
+#, python-format
+msgid "%s (C %s)"
+msgstr ""
+
+#: domains/c/__init__.py:778
msgid "variable"
msgstr "retal jalöj"
-#: domains/c/__init__.py:752
+#: domains/c/__init__.py:780
msgid "macro"
msgstr ""
-#: domains/c/__init__.py:753
+#: domains/c/__init__.py:781
msgid "struct"
msgstr ""
-#: domains/std/__init__.py:91 domains/std/__init__.py:111
+#: domains/std/__init__.py:88 domains/std/__init__.py:108
#, python-format
msgid "environment variable; %s"
msgstr ""
-#: domains/std/__init__.py:119
+#: domains/std/__init__.py:116
#, python-format
msgid "%s; configuration value"
msgstr ""
-#: domains/std/__init__.py:175
+#: domains/std/__init__.py:172
msgid "Type"
msgstr ""
-#: domains/std/__init__.py:185
+#: domains/std/__init__.py:182
msgid "Default"
msgstr ""
-#: domains/std/__init__.py:242
+#: domains/std/__init__.py:239
#, python-format
msgid ""
"Malformed option description %r, should look like \"opt\", \"-opt args\", \""
@@ -3094,573 +3239,481 @@ msgstr ""
msgid "grammar token"
msgstr ""
-#: domains/std/__init__.py:731
-msgid "reference label"
-msgstr ""
-
-#: domains/std/__init__.py:733
-msgid "environment variable"
-msgstr ""
-
-#: domains/std/__init__.py:734
-msgid "program option"
-msgstr ""
-
-#: domains/std/__init__.py:735
-msgid "document"
-msgstr "wuj"
-
-#: domains/std/__init__.py:772 domains/std/__init__.py:785
-msgid "Module Index"
-msgstr ""
-
-#: domains/std/__init__.py:857
-#, python-format
-msgid "duplicate %s description of %s, other instance in %s"
-msgstr ""
-
-#: domains/std/__init__.py:1113
-msgid "numfig is disabled. :numref: is ignored."
-msgstr ""
-
-#: domains/std/__init__.py:1124
-#, python-format
-msgid "Failed to create a cross reference. Any number is not assigned: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1138
-#, python-format
-msgid "the link has no caption: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1153
-#, python-format
-msgid "invalid numfig_format: %s (%r)"
-msgstr ""
-
-#: domains/std/__init__.py:1157
-#, python-format
-msgid "invalid numfig_format: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1453
-#, python-format
-msgid "undefined label: %r"
-msgstr ""
-
-#: domains/std/__init__.py:1456
-#, python-format
-msgid "Failed to create a cross reference. A title or caption not found: %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:324
-#, python-format
-msgid "circular toctree references detected, ignoring: %s <- %s"
-msgstr ""
-
-#: environment/adapters/toctree.py:349
-#, python-format
-msgid ""
-"toctree contains reference to document %r that doesn't have a title: no link"
-" will be generated"
-msgstr ""
-
-#: environment/adapters/toctree.py:364
-#, python-format
-msgid "toctree contains reference to non-included document %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:367
-#, python-format
-msgid "toctree contains reference to non-existing document %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:123
-#, python-format
-msgid "see %s"
-msgstr "tatz'u %s"
-
-#: environment/adapters/indexentries.py:133
-#, python-format
-msgid "see also %s"
-msgstr "tatz'u chuqa' %s"
-
-#: environment/adapters/indexentries.py:141
-#, python-format
-msgid "unknown index entry type %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:268
-#: templates/latex/sphinxmessages.sty.jinja:11
-msgid "Symbols"
-msgstr ""
-
-#: environment/collectors/asset.py:98
-#, python-format
-msgid "image file not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:126
-#, python-format
-msgid "image file %s not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:163
-#, python-format
-msgid "download file not readable: %s"
-msgstr ""
-
-#: environment/collectors/toctree.py:259
-#, python-format
-msgid "%s is already assigned section numbers (nested numbered toctree?)"
-msgstr ""
-
-#: _cli/util/errors.py:190
-msgid "Interrupted!"
-msgstr ""
-
-#: _cli/util/errors.py:194
-msgid "reStructuredText markup error!"
-msgstr ""
-
-#: _cli/util/errors.py:200
-msgid "Encoding error!"
-msgstr ""
-
-#: _cli/util/errors.py:203
-msgid "Recursion error!"
-msgstr ""
-
-#: _cli/util/errors.py:207
-msgid ""
-"This can happen with very large or deeply nested source files. You can "
-"carefully increase the default Python recursion limit of 1,000 in conf.py "
-"with e.g.:"
-msgstr ""
-
-#: _cli/util/errors.py:227
-msgid "Starting debugger:"
-msgstr ""
-
-#: _cli/util/errors.py:235
-msgid "The full traceback has been saved in:"
+#: domains/std/__init__.py:731
+msgid "reference label"
msgstr ""
-#: _cli/util/errors.py:240
-msgid ""
-"To report this error to the developers, please open an issue at "
-". Thanks!"
+#: domains/std/__init__.py:733
+msgid "environment variable"
msgstr ""
-#: _cli/util/errors.py:246
-msgid ""
-"Please also report this if it was a user error, so that a better error "
-"message can be provided next time."
+#: domains/std/__init__.py:734
+msgid "program option"
msgstr ""
-#: transforms/post_transforms/__init__.py:88
-msgid ""
-"Could not determine the fallback text for the cross-reference. Might be a "
-"bug."
+#: domains/std/__init__.py:735
+msgid "document"
+msgstr "wuj"
+
+#: domains/std/__init__.py:772 domains/std/__init__.py:785
+msgid "Module Index"
msgstr ""
-#: transforms/post_transforms/__init__.py:237
+#: domains/std/__init__.py:857
#, python-format
-msgid "more than one target found for 'any' cross-reference %r: could be %s"
+msgid "duplicate %s description of %s, other instance in %s"
+msgstr ""
+
+#: domains/std/__init__.py:1113
+msgid "numfig is disabled. :numref: is ignored."
msgstr ""
-#: transforms/post_transforms/__init__.py:299
+#: domains/std/__init__.py:1124
#, python-format
-msgid "%s:%s reference target not found: %s"
+msgid "Failed to create a cross reference. Any number is not assigned: %s"
msgstr ""
-#: transforms/post_transforms/__init__.py:305
+#: domains/std/__init__.py:1138
#, python-format
-msgid "%r reference target not found: %s"
+msgid "the link has no caption: %s"
msgstr ""
-#: transforms/post_transforms/images.py:79
+#: domains/std/__init__.py:1153
#, python-format
-msgid "Could not fetch remote image: %s [%s]"
+msgid "invalid numfig_format: %s (%r)"
msgstr ""
-#: transforms/post_transforms/images.py:96
+#: domains/std/__init__.py:1157
#, python-format
-msgid "Could not fetch remote image: %s [%d]"
+msgid "invalid numfig_format: %s"
msgstr ""
-#: transforms/post_transforms/images.py:143
+#: domains/std/__init__.py:1453
#, python-format
-msgid "Unknown image format: %s..."
+msgid "undefined label: %r"
msgstr ""
-#: builders/html/__init__.py:113
+#: domains/std/__init__.py:1456
#, python-format
-msgid "The HTML pages are in %(outdir)s."
+msgid "Failed to create a cross reference. A title or caption not found: %r"
msgstr ""
-#: builders/html/__init__.py:348
+#: ext/napoleon/docstring.py:178
#, python-format
-msgid "Failed to read build info file: %r"
+msgid "invalid value set (missing closing brace): %s"
msgstr ""
-#: builders/html/__init__.py:364
-msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+#: ext/napoleon/docstring.py:185
+#, python-format
+msgid "invalid value set (missing opening brace): %s"
msgstr ""
-#: builders/html/__init__.py:366
-msgid "building [html]: "
+#: ext/napoleon/docstring.py:192
+#, python-format
+msgid "malformed string literal (missing closing quote): %s"
msgstr ""
-#: builders/html/__init__.py:383
+#: ext/napoleon/docstring.py:199
#, python-format
-msgid ""
-"template %s has been changed since the previous build, all docs will be "
-"rebuilt"
+msgid "malformed string literal (missing opening quote): %s"
msgstr ""
-#: builders/html/__init__.py:507
-msgid "index"
-msgstr "cholwuj"
+#: ext/napoleon/docstring.py:902
+msgid "Example"
+msgstr "Tz'etb'äl"
-#: builders/html/__init__.py:560
-#, python-format
-msgid "Logo of %s"
+#: ext/napoleon/docstring.py:903
+msgid "Examples"
+msgstr "Tz'etb'äl"
+
+#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:947
+msgid "Keyword Arguments"
msgstr ""
-#: builders/html/__init__.py:589
-msgid "next"
-msgstr "jun chïk"
+#: ext/napoleon/docstring.py:962
+msgid "Notes"
+msgstr ""
-#: builders/html/__init__.py:598
-msgid "previous"
-msgstr "chi rij kan"
+#: ext/napoleon/docstring.py:971
+msgid "Other Parameters"
+msgstr "Jalajöj chïk"
-#: builders/html/__init__.py:696
-msgid "generating indices"
+#: ext/napoleon/docstring.py:1007
+msgid "Receives"
msgstr ""
-#: builders/html/__init__.py:711
-msgid "writing additional pages"
+#: ext/napoleon/docstring.py:1011
+msgid "References"
msgstr ""
-#: builders/html/__init__.py:794
-#, python-format
-msgid "cannot copy image file '%s': %s"
+#: ext/napoleon/docstring.py:1043
+msgid "Warns"
msgstr ""
-#: builders/html/__init__.py:806
-msgid "copying downloadable files... "
+#: ext/napoleon/docstring.py:1047
+msgid "Yields"
msgstr ""
-#: builders/html/__init__.py:818
+#: ext/autodoc/_generate.py:151
+#: ext/autodoc/_legacy_class_based/_documenters.py:859
#, python-format
-msgid "cannot copy downloadable file %r: %s"
+msgid "A mocked object is detected: %r"
msgstr ""
-#: builders/html/__init__.py:864
+#: ext/autodoc/_generate.py:334 ext/autodoc/_generate.py:348
+#: ext/autodoc/_generate.py:370 ext/autodoc/_generate.py:386
+#: ext/autodoc/_legacy_class_based/_documenters.py:1860
+#: ext/autodoc/_legacy_class_based/_documenters.py:1889
+#: ext/autodoc/_legacy_class_based/_documenters.py:1983
#, python-format
-msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
+msgid "alias of %s"
msgstr ""
-#: builders/html/__init__.py:882
+#: ext/autodoc/_legacy_class_based/_documenters.py:1745
+#: ext/autodoc/_renderer.py:88
#, python-format
-msgid "Failed to copy a file in html_static_file: %s: %r"
+msgid "Bases: %s"
msgstr ""
-#: builders/html/__init__.py:917
-msgid "copying static files"
+#: ext/autodoc/_directive_options.py:226
+#: ext/autodoc/_legacy_class_based/_directive_options.py:47
+#, python-format
+msgid "invalid value for member-order option: %s"
msgstr ""
-#: builders/html/__init__.py:934
+#: ext/autodoc/_directive_options.py:233
+#: ext/autodoc/_legacy_class_based/_directive_options.py:55
#, python-format
-msgid "cannot copy static file %r"
+msgid "invalid value for class-doc-from option: %s"
msgstr ""
-#: builders/html/__init__.py:939
-msgid "copying extra files"
+#: ext/autodoc/_legacy_class_based/_documenters.py:239
+#: ext/autodoc/_names.py:45
+#, python-format
+msgid "invalid signature for auto%s (%r)"
msgstr ""
-#: builders/html/__init__.py:949
+#: ext/autodoc/_legacy_class_based/_documenters.py:800
+#: ext/autodoc/_names.py:53 ext/autodoc/_names.py:101
#, python-format
-msgid "cannot copy extra file %r"
+msgid ""
+"don't know which module to import for autodocumenting %r (try placing a "
+"\"module\" or \"currentmodule\" directive in the document, or giving an "
+"explicit module name)"
msgstr ""
-#: builders/html/__init__.py:955
+#: ext/autodoc/_names.py:89
#, python-format
-msgid "Failed to write build info file: %r"
+msgid "signature arguments given for automodule: '%s'"
msgstr ""
-#: builders/html/__init__.py:1005
-msgid ""
-"search index couldn't be loaded, but not all documents will be built: the "
-"index will be incomplete."
+#: ext/autodoc/_names.py:93
+#, python-format
+msgid "return annotation given for automodule: '%s'"
+msgstr ""
+
+#: ext/autodoc/_legacy_class_based/_documenters.py:956
+#: ext/autodoc/_names.py:134
+msgid "\"::\" in automodule name doesn't make sense"
msgstr ""
-#: builders/html/__init__.py:1052
+#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:984
#, python-format
-msgid "page %s matches two patterns in html_sidebars: %r and %r"
+msgid "Failed to remove %s: %s"
msgstr ""
-#: builders/html/__init__.py:1216
+#: ext/apidoc/_generate.py:69
#, python-format
+msgid "Would create file %s."
+msgstr ""
+
+#: ext/apidoc/_cli.py:28
msgid ""
-"a Unicode error occurred when rendering the page %s. Please make sure all "
-"config values that contain non-ASCII content are Unicode strings."
+"\n"
+"Look recursively in for Python modules and packages and create\n"
+"one reST file with automodule directives per package in the .\n"
+"\n"
+"The s can be file and/or directory patterns that will be\n"
+"excluded from generation.\n"
+"\n"
+"Note: By default this script will not overwrite already created files."
msgstr ""
-#: builders/html/__init__.py:1224
-#, python-format
+#: ext/apidoc/_cli.py:45
+msgid "path to module to document"
+msgstr ""
+
+#: ext/apidoc/_cli.py:50
msgid ""
-"An error happened in rendering the page %s.\n"
-"Reason: %r"
+"fnmatch-style file and/or directory patterns to exclude from generation"
msgstr ""
-#: builders/html/__init__.py:1257
-msgid "dumping object inventory"
+#: ext/apidoc/_cli.py:60
+msgid "directory to place all output"
msgstr ""
-#: builders/html/__init__.py:1265
-#, python-format
-msgid "dumping search index in %s"
+#: ext/apidoc/_cli.py:75
+msgid "maximum depth of submodules to show in the TOC (default: 4)"
msgstr ""
-#: builders/html/__init__.py:1308
-#, python-format
-msgid "invalid js_file: %r, ignored"
+#: ext/apidoc/_cli.py:82
+msgid "overwrite existing files"
msgstr ""
-#: builders/html/__init__.py:1342
-msgid "Many math_renderers are registered. But no math_renderer is selected."
+#: ext/apidoc/_cli.py:91
+msgid ""
+"follow symbolic links. Powerful when combined with "
+"collective.recipe.omelette."
msgstr ""
-#: builders/html/__init__.py:1346
-#, python-format
-msgid "Unknown math_renderer %r is given."
+#: ext/apidoc/_cli.py:99
+msgid "run the script without creating files"
msgstr ""
-#: builders/html/__init__.py:1360
-#, python-format
-msgid "html_extra_path entry %r is placed inside outdir"
+#: ext/apidoc/_cli.py:106
+msgid "put documentation for each module on its own page"
msgstr ""
-#: builders/html/__init__.py:1365
-#, python-format
-msgid "html_extra_path entry %r does not exist"
+#: ext/apidoc/_cli.py:113
+msgid "include \"_private\" modules"
msgstr ""
-#: builders/html/__init__.py:1380
-#, python-format
-msgid "html_static_path entry %r is placed inside outdir"
+#: ext/apidoc/_cli.py:120
+msgid "filename of table of contents (default: modules)"
msgstr ""
-#: builders/html/__init__.py:1385
-#, python-format
-msgid "html_static_path entry %r does not exist"
+#: ext/apidoc/_cli.py:127
+msgid "don't create a table of contents file"
msgstr ""
-#: builders/html/__init__.py:1396 builders/latex/__init__.py:504
-#, python-format
-msgid "logo file %r does not exist"
+#: ext/apidoc/_cli.py:135
+msgid ""
+"don't create headings for the module/package packages (e.g. when the "
+"docstrings already contain them)"
msgstr ""
-#: builders/html/__init__.py:1407
-#, python-format
-msgid "favicon file %r does not exist"
+#: ext/apidoc/_cli.py:145
+msgid "put module documentation before submodule documentation"
msgstr ""
-#: builders/html/__init__.py:1420
-#, python-format
+#: ext/apidoc/_cli.py:152
msgid ""
-"Values in 'html_sidebars' must be a list of strings. At least one pattern "
-"has a string value: %s. Change to `html_sidebars = %r`."
+"interpret module paths according to PEP-0420 implicit namespaces "
+"specification"
msgstr ""
-#: builders/html/__init__.py:1433
+#: ext/apidoc/_cli.py:160
msgid ""
-"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
-"configuration options)"
+"Comma-separated list of options to pass to automodule directive (or use "
+"SPHINX_APIDOC_OPTIONS)."
msgstr ""
-#: builders/html/__init__.py:1449
-#, python-format
-msgid "%s %s documentation"
+#: ext/apidoc/_cli.py:170
+msgid "file suffix (default: rst)"
msgstr ""
-#: builders/html/_build_info.py:32
-msgid "failed to read broken build info file (unknown version)"
+#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:950
+msgid "Remove existing files in the output directory that were not generated"
msgstr ""
-#: builders/html/_build_info.py:36
-msgid "failed to read broken build info file (missing config entry)"
+#: ext/apidoc/_cli.py:186
+msgid "generate a full project with sphinx-quickstart"
msgstr ""
-#: builders/html/_build_info.py:39
-msgid "failed to read broken build info file (missing tags entry)"
+#: ext/apidoc/_cli.py:193
+msgid "append module_path to sys.path, used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:118
-#, python-format
-msgid "The LaTeX files are in %(outdir)s."
+#: ext/apidoc/_cli.py:200
+msgid "project name (default: root module name)"
msgstr ""
-#: builders/latex/__init__.py:121
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through (pdf)latex\n"
-"(use `make latexpdf' here to do that automatically)."
+#: ext/apidoc/_cli.py:207
+msgid "project author(s), used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:159
-msgid "no \"latex_documents\" config value found; no documents will be written"
+#: ext/apidoc/_cli.py:214
+msgid "project version, used when --full is given"
+msgstr ""
+
+#: ext/apidoc/_cli.py:222
+msgid "project release, used when --full is given, defaults to --doc-version"
+msgstr ""
+
+#: ext/apidoc/_cli.py:226
+msgid "extension options"
+msgstr ""
+
+#: ext/apidoc/_cli.py:232
+msgid "enable arbitrary extensions, used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:170
+#: ext/apidoc/_cli.py:240
#, python-format
-msgid "\"latex_documents\" config value references unknown document %s"
+msgid "enable %s extension, used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:209 templates/latex/latex.tex.jinja:91
-msgid "Release"
+#: ext/apidoc/_cli.py:291
+#, python-format
+msgid "%s is not a directory."
msgstr ""
-#: builders/latex/__init__.py:428
-msgid "copying TeX support files"
+#: ext/apidoc/_extension.py:50
+msgid "Running apidoc"
msgstr ""
-#: builders/latex/__init__.py:465
-msgid "copying additional files"
+#: ext/apidoc/_extension.py:102
+#, python-format
+msgid "apidoc_modules item %i must be a dict"
msgstr ""
-#: builders/latex/__init__.py:536
+#: ext/apidoc/_extension.py:110
#, python-format
-msgid "Unknown configure key: latex_elements[%r], ignored."
+msgid "apidoc_modules item %i must have a 'path' key"
msgstr ""
-#: builders/latex/__init__.py:544
+#: ext/apidoc/_extension.py:115
#, python-format
-msgid "Unknown theme option: latex_theme_options[%r], ignored."
+msgid "apidoc_modules item %i 'path' must be a string"
msgstr ""
-#: builders/latex/transforms.py:120
-msgid "Failed to get a docname!"
+#: ext/apidoc/_extension.py:121
+#, python-format
+msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
msgstr ""
-#: builders/latex/transforms.py:121
+#: ext/apidoc/_extension.py:133
#, python-format
-msgid "Failed to get a docname for source %r!"
+msgid "apidoc_modules item %i must have a 'destination' key"
msgstr ""
-#: builders/latex/transforms.py:487
+#: ext/apidoc/_extension.py:140
#, python-format
-msgid "No footnote was found for given reference node %r"
+msgid "apidoc_modules item %i 'destination' must be a string"
msgstr ""
-#: builders/latex/theming.py:88
+#: ext/apidoc/_extension.py:147
#, python-format
-msgid "%r doesn't have \"theme\" setting"
+msgid "apidoc_modules item %i 'destination' should be a relative path"
msgstr ""
-#: builders/latex/theming.py:91
+#: ext/apidoc/_extension.py:157
#, python-format
-msgid "%r doesn't have \"%s\" setting"
+msgid "apidoc_modules item %i cannot create destination directory: %s"
msgstr ""
-#: templates/latex/longtable.tex.jinja:52
-#: templates/latex/sphinxmessages.sty.jinja:8
-msgid "continued from previous page"
+#: ext/apidoc/_extension.py:178
+#, python-format
+msgid "apidoc_modules item %i '%s' must be an int"
msgstr ""
-#: templates/latex/longtable.tex.jinja:63
-#: templates/latex/sphinxmessages.sty.jinja:9
-msgid "continues on next page"
+#: ext/apidoc/_extension.py:192
+#, python-format
+msgid "apidoc_modules item %i '%s' must be a boolean"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:10
-msgid "Non-alphabetical"
+#: ext/apidoc/_extension.py:210
+#, python-format
+msgid "apidoc_modules item %i has unexpected keys: %s"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:12
-msgid "Numbers"
-msgstr "Ajilanïk"
-
-#: templates/latex/sphinxmessages.sty.jinja:13
-msgid "page"
+#: ext/apidoc/_extension.py:248
+#, python-format
+msgid "apidoc_modules item %i '%s' must be a sequence"
msgstr ""
-#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:940
-msgid "Keyword Arguments"
+#: ext/apidoc/_extension.py:257
+#, python-format
+msgid "apidoc_modules item %i '%s' must contain strings"
msgstr ""
-#: ext/napoleon/docstring.py:176
+#: ext/autosummary/generate.py:212 ext/autosummary/generate.py:425
#, python-format
-msgid "invalid value set (missing closing brace): %s"
+msgid ""
+"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
+"%s"
msgstr ""
-#: ext/napoleon/docstring.py:183
+#: ext/autosummary/generate.py:630
#, python-format
-msgid "invalid value set (missing opening brace): %s"
+msgid "[autosummary] generating autosummary for: %s"
msgstr ""
-#: ext/napoleon/docstring.py:190
+#: ext/autosummary/generate.py:634
#, python-format
-msgid "malformed string literal (missing closing quote): %s"
+msgid "[autosummary] writing to %s"
msgstr ""
-#: ext/napoleon/docstring.py:197
+#: ext/autosummary/generate.py:679
#, python-format
-msgid "malformed string literal (missing opening quote): %s"
+msgid ""
+"[autosummary] failed to import %s.\n"
+"Possible hints:\n"
+"%s"
msgstr ""
-#: ext/napoleon/docstring.py:895
-msgid "Example"
-msgstr "Tz'etb'äl"
-
-#: ext/napoleon/docstring.py:896
-msgid "Examples"
-msgstr "Tz'etb'äl"
+#: ext/autosummary/generate.py:877
+msgid ""
+"\n"
+"Generate ReStructuredText using autosummary directives.\n"
+"\n"
+"sphinx-autogen is a frontend to sphinx.ext.autosummary.generate. It generates\n"
+"the reStructuredText files from the autosummary directives contained in the\n"
+"given input files.\n"
+"\n"
+"The format of the autosummary directive is documented in the\n"
+"``sphinx.ext.autosummary`` Python module and can be read using::\n"
+"\n"
+" pydoc sphinx.ext.autosummary\n"
+msgstr ""
-#: ext/napoleon/docstring.py:956
-msgid "Notes"
+#: ext/autosummary/generate.py:899
+msgid "source files to generate rST files for"
msgstr ""
-#: ext/napoleon/docstring.py:965
-msgid "Other Parameters"
-msgstr "Jalajöj chïk"
+#: ext/autosummary/generate.py:907
+msgid "directory to place all output in"
+msgstr ""
-#: ext/napoleon/docstring.py:1001
-msgid "Receives"
+#: ext/autosummary/generate.py:915
+#, python-format
+msgid "default suffix for files (default: %(default)s)"
msgstr ""
-#: ext/napoleon/docstring.py:1005
-msgid "References"
+#: ext/autosummary/generate.py:923
+#, python-format
+msgid "custom template directory (default: %(default)s)"
msgstr ""
-#: ext/napoleon/docstring.py:1037
-msgid "Warns"
+#: ext/autosummary/generate.py:931
+#, python-format
+msgid "document imported members (default: %(default)s)"
msgstr ""
-#: ext/napoleon/docstring.py:1041
-msgid "Yields"
+#: ext/autosummary/generate.py:940
+#, python-format
+msgid ""
+"document exactly the members in module __all__ attribute. (default: "
+"%(default)s)"
msgstr ""
-#: ext/autosummary/__init__.py:284
+#: ext/autosummary/__init__.py:235
#, python-format
msgid "autosummary references excluded document %r. Ignored."
msgstr ""
-#: ext/autosummary/__init__.py:288
+#: ext/autosummary/__init__.py:239
#, python-format
msgid ""
"autosummary: stub file not found %r. Check your autosummary_generate "
"setting."
msgstr ""
-#: ext/autosummary/__init__.py:309
+#: ext/autosummary/__init__.py:260
msgid "A captioned autosummary requires :toctree: option. ignored."
msgstr ""
-#: ext/autosummary/__init__.py:384
+#: ext/autosummary/__init__.py:329
#, python-format
msgid ""
"autosummary: failed to import %s.\n"
@@ -3668,548 +3721,585 @@ msgid ""
"%s"
msgstr ""
-#: ext/autosummary/__init__.py:404
-#, python-format
-msgid "failed to parse name %s"
-msgstr ""
-
-#: ext/autosummary/__init__.py:412
+#: ext/autosummary/__init__.py:358
#, python-format
msgid "failed to import object %s"
msgstr ""
-#: ext/autosummary/__init__.py:730
+#: ext/autosummary/__init__.py:652
#, python-format
msgid ""
"Summarised items should not include the current module. Replace %r with %r."
msgstr ""
-#: ext/autosummary/__init__.py:927
+#: ext/autosummary/__init__.py:850
#, python-format
msgid "autosummary_generate: file not found: %s"
msgstr ""
-#: ext/autosummary/__init__.py:937
+#: ext/autosummary/__init__.py:860
msgid ""
"autosummary generates .rst files internally. But your source_suffix does not"
" contain .rst. Skipped."
msgstr ""
-#: ext/autosummary/generate.py:232 ext/autosummary/generate.py:450
+#: ext/intersphinx/_load.py:61
#, python-format
msgid ""
-"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
-"%s"
+"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
+"identifiers must be non-empty strings."
msgstr ""
-#: ext/autosummary/generate.py:588
+#: ext/intersphinx/_load.py:72
#, python-format
-msgid "[autosummary] generating autosummary for: %s"
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
+"or list."
msgstr ""
-#: ext/autosummary/generate.py:592
+#: ext/intersphinx/_load.py:83
#, python-format
-msgid "[autosummary] writing to %s"
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
+" inventory locations) pair."
msgstr ""
-#: ext/autosummary/generate.py:637
+#: ext/intersphinx/_load.py:94
#, python-format
msgid ""
-"[autosummary] failed to import %s.\n"
-"Possible hints:\n"
-"%s"
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique non-empty strings."
msgstr ""
-#: ext/autosummary/generate.py:836
+#: ext/intersphinx/_load.py:103
+#, python-format
msgid ""
-"\n"
-"Generate ReStructuredText using autosummary directives.\n"
-"\n"
-"sphinx-autogen is a frontend to sphinx.ext.autosummary.generate. It generates\n"
-"the reStructuredText files from the autosummary directives contained in the\n"
-"given input files.\n"
-"\n"
-"The format of the autosummary directive is documented in the\n"
-"``sphinx.ext.autosummary`` Python module and can be read using::\n"
-"\n"
-" pydoc sphinx.ext.autosummary\n"
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique (other instance in intersphinx_mapping[%r])."
msgstr ""
-#: ext/autosummary/generate.py:858
-msgid "source files to generate rST files for"
+#: ext/intersphinx/_load.py:122
+#, python-format
+msgid ""
+"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
+"Inventory locations must be non-empty strings or None."
msgstr ""
-#: ext/autosummary/generate.py:866
-msgid "directory to place all output in"
+#: ext/intersphinx/_load.py:132
+msgid "Invalid `intersphinx_mapping` configuration (1 error)."
msgstr ""
-#: ext/autosummary/generate.py:874
+#: ext/intersphinx/_load.py:135
#, python-format
-msgid "default suffix for files (default: %(default)s)"
+msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
msgstr ""
-#: ext/autosummary/generate.py:882
-#, python-format
-msgid "custom template directory (default: %(default)s)"
+#: ext/intersphinx/_load.py:158
+msgid "An invalid intersphinx_mapping entry was added after normalisation."
msgstr ""
-#: ext/autosummary/generate.py:890
+#: ext/intersphinx/_load.py:297
#, python-format
-msgid "document imported members (default: %(default)s)"
+msgid "loading intersphinx inventory '%s' from %s ..."
msgstr ""
-#: ext/autosummary/generate.py:899
+#: ext/intersphinx/_load.py:324
+msgid ""
+"encountered some issues with some of the inventories, but they had working "
+"alternatives:"
+msgstr ""
+
+#: ext/intersphinx/_load.py:332
#, python-format
msgid ""
-"document exactly the members in module __all__ attribute. (default: "
-"%(default)s)"
+"failed to reach any of the inventories with the following issues:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:909
-msgid "Remove existing files in the output directory that were not generated"
+#: ext/intersphinx/_load.py:411
+#, python-format
+msgid "intersphinx inventory has moved: %s -> %s"
msgstr ""
-#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:944
+#: ext/intersphinx/_resolve.py:53
#, python-format
-msgid "Failed to remove %s: %s"
+msgid "(in %s %s)"
msgstr ""
-#: ext/apidoc/_cli.py:28
-msgid ""
-"\n"
-"Look recursively in for Python modules and packages and create\n"
-"one reST file with automodule directives per package in the .\n"
-"\n"
-"The s can be file and/or directory patterns that will be\n"
-"excluded from generation.\n"
-"\n"
-"Note: By default this script will not overwrite already created files."
+#: ext/intersphinx/_resolve.py:55
+#, python-format
+msgid "(in %s)"
+msgstr "(chupam %s)"
+
+#: ext/intersphinx/_resolve.py:112
+#, python-format
+msgid "inventory '%s': duplicate matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:45
-msgid "path to module to document"
+#: ext/intersphinx/_resolve.py:122
+#, python-format
+msgid "inventory '%s': multiple matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:50
-msgid ""
-"fnmatch-style file and/or directory patterns to exclude from generation"
+#: ext/intersphinx/_resolve.py:387
+#, python-format
+msgid "inventory for external cross-reference not found: %r"
msgstr ""
-#: ext/apidoc/_cli.py:60
-msgid "directory to place all output"
+#: ext/intersphinx/_resolve.py:396
+#, python-format
+msgid "invalid external cross-reference suffix: %r"
msgstr ""
-#: ext/apidoc/_cli.py:75
-msgid "maximum depth of submodules to show in the TOC (default: 4)"
+#: ext/intersphinx/_resolve.py:407
+#, python-format
+msgid "domain for external cross-reference not found: %r"
msgstr ""
-#: ext/apidoc/_cli.py:82
-msgid "overwrite existing files"
+#: ext/intersphinx/_resolve.py:561
+#, python-format
+msgid "external %s:%s reference target not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:91
-msgid ""
-"follow symbolic links. Powerful when combined with "
-"collective.recipe.omelette."
+#: ext/autodoc/_dynamic/_loader.py:144
+#: ext/autodoc/_legacy_class_based/_documenters.py:882
+#, python-format
+msgid "error while formatting signature for %s: %s"
msgstr ""
-#: ext/apidoc/_cli.py:99
-msgid "run the script without creating files"
+#: ext/autodoc/_dynamic/_loader.py:193
+#, python-format
+msgid "Ignoring invalid __all__ in module %s: %r"
msgstr ""
-#: ext/apidoc/_cli.py:106
-msgid "put documentation for each module on its own page"
+#: ext/autodoc/_dynamic/_loader.py:332 ext/autodoc/_dynamic/_signatures.py:496
+#: ext/autodoc/_dynamic/_signatures.py:612
+#: ext/autodoc/_legacy_class_based/_documenters.py:1284
+#: ext/autodoc/_legacy_class_based/_documenters.py:1372
+#: ext/autodoc/_legacy_class_based/_documenters.py:2906
+#, python-format
+msgid "Failed to get a function signature for %s: %s"
msgstr ""
-#: ext/apidoc/_cli.py:113
-msgid "include \"_private\" modules"
+#: ext/autodoc/_dynamic/_type_comments.py:120
+#, python-format
+msgid "Failed to update signature for %r: parameter not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:120
-msgid "filename of table of contents (default: modules)"
+#: ext/autodoc/_dynamic/_type_comments.py:123
+#, python-format
+msgid "Failed to parse type_comment for %r: %s"
msgstr ""
-#: ext/apidoc/_cli.py:127
-msgid "don't create a table of contents file"
+#: ext/autodoc/_dynamic/_docstrings.py:268
+#: ext/autodoc/_legacy_class_based/_documenters.py:2499
+#, python-format
+msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
-#: ext/apidoc/_cli.py:135
-msgid ""
-"don't create headings for the module/package packages (e.g. when the "
-"docstrings already contain them)"
+#: ext/autodoc/_dynamic/_signatures.py:102
+#: ext/autodoc/_legacy_class_based/_documenters.py:358
+#, python-format
+msgid "error while formatting arguments for %s: %s"
msgstr ""
-#: ext/apidoc/_cli.py:145
-msgid "put module documentation before submodule documentation"
+#: ext/autodoc/_dynamic/_signatures.py:494
+#: ext/autodoc/_legacy_class_based/_documenters.py:1607
+#, python-format
+msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
-#: ext/apidoc/_cli.py:152
-msgid ""
-"interpret module paths according to PEP-0420 implicit namespaces "
-"specification"
+#: ext/autodoc/_dynamic/_signatures.py:498
+#: ext/autodoc/_legacy_class_based/_documenters.py:2235
+#: ext/autodoc/_legacy_class_based/_documenters.py:2355
+#, python-format
+msgid "Failed to get a method signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_signatures.py:500
+#, python-format
+msgid "Failed to get a signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_preserve_defaults.py:156
+#, python-format
+msgid "Failed to parse a default argument value for %r: %s"
msgstr ""
-#: ext/apidoc/_cli.py:160
+#: ext/autodoc/_dynamic/_member_finder.py:420
+#, python-format
msgid ""
-"Comma-separated list of options to pass to automodule directive (or use "
-"SPHINX_APIDOC_OPTIONS)."
+"attribute %s is listed in :members: but is missing as it was not found in "
+"object %r"
msgstr ""
-#: ext/apidoc/_cli.py:170
-msgid "file suffix (default: rst)"
+#: ext/autodoc/_dynamic/_member_finder.py:473
+#: ext/autodoc/_legacy_class_based/_documenters.py:677
+#, python-format
+msgid ""
+"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:186
-msgid "generate a full project with sphinx-quickstart"
+#: ext/autodoc/_legacy_class_based/_documenters.py:964
+#, python-format
+msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
-#: ext/apidoc/_cli.py:193
-msgid "append module_path to sys.path, used when --full is given"
+#: ext/autodoc/_legacy_class_based/_documenters.py:980
+#, python-format
+msgid ""
+"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
+"__all__"
msgstr ""
-#: ext/apidoc/_cli.py:200
-msgid "project name (default: root module name)"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1057
+#, python-format
+msgid ""
+"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
-#: ext/apidoc/_cli.py:207
-msgid "project author(s), used when --full is given"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1764
+#, python-format
+msgid "missing attribute %s in object %s"
msgstr ""
-#: ext/apidoc/_cli.py:214
-msgid "project version, used when --full is given"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1876
+#, python-format
+msgid "alias of TypeVar(%s)"
msgstr ""
-#: ext/apidoc/_cli.py:222
-msgid "project release, used when --full is given, defaults to --doc-version"
+#: builders/html/_build_info.py:32
+msgid "failed to read broken build info file (unknown version)"
msgstr ""
-#: ext/apidoc/_cli.py:226
-msgid "extension options"
+#: builders/html/_build_info.py:36
+msgid "failed to read broken build info file (missing config entry)"
msgstr ""
-#: ext/apidoc/_cli.py:232
-msgid "enable arbitrary extensions, used when --full is given"
+#: builders/html/_build_info.py:39
+msgid "failed to read broken build info file (missing tags entry)"
msgstr ""
-#: ext/apidoc/_cli.py:240
+#: builders/html/__init__.py:114
#, python-format
-msgid "enable %s extension, used when --full is given"
+msgid "The HTML pages are in %(outdir)s."
msgstr ""
-#: ext/apidoc/_cli.py:291
+#: builders/html/__init__.py:337
#, python-format
-msgid "%s is not a directory."
+msgid "Failed to read build info file: %r"
msgstr ""
-#: ext/apidoc/_extension.py:50
-msgid "Running apidoc"
+#: builders/html/__init__.py:353
+msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
msgstr ""
-#: ext/apidoc/_extension.py:102
-#, python-format
-msgid "apidoc_modules item %i must be a dict"
+#: builders/html/__init__.py:355
+msgid "building [html]: "
msgstr ""
-#: ext/apidoc/_extension.py:110
+#: builders/html/__init__.py:372
#, python-format
-msgid "apidoc_modules item %i must have a 'path' key"
+msgid ""
+"template %s has been changed since the previous build, all docs will be "
+"rebuilt"
msgstr ""
-#: ext/apidoc/_extension.py:115
+#: builders/html/__init__.py:496
+msgid "index"
+msgstr "cholwuj"
+
+#: builders/html/__init__.py:549
#, python-format
-msgid "apidoc_modules item %i 'path' must be a string"
+msgid "Logo of %s"
msgstr ""
-#: ext/apidoc/_extension.py:121
-#, python-format
-msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
+#: builders/html/__init__.py:578
+msgid "next"
+msgstr "jun chïk"
+
+#: builders/html/__init__.py:587
+msgid "previous"
+msgstr "chi rij kan"
+
+#: builders/html/__init__.py:685
+msgid "generating indices"
msgstr ""
-#: ext/apidoc/_extension.py:133
-#, python-format
-msgid "apidoc_modules item %i must have a 'destination' key"
+#: builders/html/__init__.py:700
+msgid "writing additional pages"
msgstr ""
-#: ext/apidoc/_extension.py:140
+#: builders/html/__init__.py:783
#, python-format
-msgid "apidoc_modules item %i 'destination' must be a string"
+msgid "cannot copy image file '%s': %s"
msgstr ""
-#: ext/apidoc/_extension.py:147
-#, python-format
-msgid "apidoc_modules item %i 'destination' should be a relative path"
+#: builders/html/__init__.py:795
+msgid "copying downloadable files... "
msgstr ""
-#: ext/apidoc/_extension.py:157
+#: builders/html/__init__.py:807
#, python-format
-msgid "apidoc_modules item %i cannot create destination directory: %s"
+msgid "cannot copy downloadable file %r: %s"
msgstr ""
-#: ext/apidoc/_extension.py:178
+#: builders/html/__init__.py:853
#, python-format
-msgid "apidoc_modules item %i '%s' must be an int"
+msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
msgstr ""
-#: ext/apidoc/_extension.py:192
+#: builders/html/__init__.py:871
#, python-format
-msgid "apidoc_modules item %i '%s' must be a boolean"
+msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr ""
-#: ext/apidoc/_extension.py:210
-#, python-format
-msgid "apidoc_modules item %i has unexpected keys: %s"
+#: builders/html/__init__.py:906
+msgid "copying static files"
msgstr ""
-#: ext/apidoc/_extension.py:247
+#: builders/html/__init__.py:923
#, python-format
-msgid "apidoc_modules item %i '%s' must be a sequence"
+msgid "cannot copy static file %r"
msgstr ""
-#: ext/apidoc/_extension.py:256
-#, python-format
-msgid "apidoc_modules item %i '%s' must contain strings"
+#: builders/html/__init__.py:928
+msgid "copying extra files"
msgstr ""
-#: ext/apidoc/_generate.py:69
+#: builders/html/__init__.py:938
#, python-format
-msgid "Would create file %s."
+msgid "cannot copy extra file %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:49
+#: builders/html/__init__.py:944
#, python-format
-msgid "(in %s v%s)"
+msgid "Failed to write build info file: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:51
-#, python-format
-msgid "(in %s)"
-msgstr "(chupam %s)"
+#: builders/html/__init__.py:994
+msgid ""
+"search index couldn't be loaded, but not all documents will be built: the "
+"index will be incomplete."
+msgstr ""
-#: ext/intersphinx/_resolve.py:108
+#: builders/html/__init__.py:1038
#, python-format
-msgid "inventory '%s': duplicate matches found for %s:%s"
+msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:118
+#: builders/html/__init__.py:1204
#, python-format
-msgid "inventory '%s': multiple matches found for %s:%s"
+msgid ""
+"a Unicode error occurred when rendering the page %s. Please make sure all "
+"config values that contain non-ASCII content are Unicode strings."
msgstr ""
-#: ext/intersphinx/_resolve.py:383
+#: builders/html/__init__.py:1217
#, python-format
-msgid "inventory for external cross-reference not found: %r"
+msgid ""
+"The '%s' theme does not support this version of Sphinx, because it uses the "
+"'style' field in HTML templates, which was was deprecated in Sphinx 5.1 and"
+" removed in Sphinx 7.0. The theme must be updated to use the 'styles' field "
+"instead. See https://www.sphinx-"
+"doc.org/en/master/development/html_themes/templating.html#styles"
msgstr ""
-#: ext/intersphinx/_resolve.py:392
+#: builders/html/__init__.py:1225
#, python-format
-msgid "invalid external cross-reference suffix: %r"
+msgid ""
+"An error happened in rendering the page %s.\n"
+"Reason: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:403
-#, python-format
-msgid "domain for external cross-reference not found: %r"
+#: builders/html/__init__.py:1258
+msgid "dumping object inventory"
msgstr ""
-#: ext/intersphinx/_resolve.py:619
+#: builders/html/__init__.py:1266
#, python-format
-msgid "external %s:%s reference target not found: %s"
+msgid "dumping search index in %s"
msgstr ""
-#: ext/intersphinx/_load.py:60
+#: builders/html/__init__.py:1313
#, python-format
-msgid ""
-"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
-"identifiers must be non-empty strings."
+msgid "invalid js_file: %r, ignored"
msgstr ""
-#: ext/intersphinx/_load.py:71
-#, python-format
-msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
-"or list."
+#: builders/html/__init__.py:1347
+msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr ""
-#: ext/intersphinx/_load.py:82
+#: builders/html/__init__.py:1351
#, python-format
-msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
-" inventory locations) pair."
+msgid "Unknown math_renderer %r is given."
msgstr ""
-#: ext/intersphinx/_load.py:93
+#: builders/html/__init__.py:1365
#, python-format
-msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique non-empty strings."
+msgid "html_extra_path entry %r is placed inside outdir"
msgstr ""
-#: ext/intersphinx/_load.py:102
+#: builders/html/__init__.py:1370
#, python-format
-msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique (other instance in intersphinx_mapping[%r])."
+msgid "html_extra_path entry %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:121
+#: builders/html/__init__.py:1385
#, python-format
-msgid ""
-"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
-"Inventory locations must be non-empty strings or None."
+msgid "html_static_path entry %r is placed inside outdir"
msgstr ""
-#: ext/intersphinx/_load.py:131
-msgid "Invalid `intersphinx_mapping` configuration (1 error)."
+#: builders/html/__init__.py:1390
+#, python-format
+msgid "html_static_path entry %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:134
+#: builders/html/__init__.py:1401 builders/latex/__init__.py:497
#, python-format
-msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
+msgid "logo file %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:157
-msgid "An invalid intersphinx_mapping entry was added after normalisation."
+#: builders/html/__init__.py:1412
+#, python-format
+msgid "favicon file %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:261
+#: builders/html/__init__.py:1425
#, python-format
-msgid "loading intersphinx inventory '%s' from %s ..."
+msgid ""
+"Values in 'html_sidebars' must be a list of strings. At least one pattern "
+"has a string value: %s. Change to `html_sidebars = %r`."
msgstr ""
-#: ext/intersphinx/_load.py:287
+#: builders/html/__init__.py:1438
msgid ""
-"encountered some issues with some of the inventories, but they had working "
-"alternatives:"
+"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
+"configuration options)"
msgstr ""
-#: ext/intersphinx/_load.py:297
-msgid "failed to reach any of the inventories with the following issues:"
+#: builders/html/__init__.py:1454
+#, python-format
+msgid "%s %s documentation"
msgstr ""
-#: ext/intersphinx/_load.py:361
+#: builders/latex/theming.py:87
#, python-format
-msgid "intersphinx inventory has moved: %s -> %s"
+msgid "%r doesn't have \"theme\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:150
+#: builders/latex/theming.py:90
#, python-format
-msgid "invalid value for member-order option: %s"
+msgid "%r doesn't have \"%s\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:158
-#, python-format
-msgid "invalid value for class-doc-from option: %s"
+#: builders/latex/transforms.py:120
+msgid "Failed to get a docname!"
msgstr ""
-#: ext/autodoc/__init__.py:460
+#: builders/latex/transforms.py:121
#, python-format
-msgid "invalid signature for auto%s (%r)"
+msgid "Failed to get a docname for source %r!"
msgstr ""
-#: ext/autodoc/__init__.py:579
+#: builders/latex/transforms.py:487
#, python-format
-msgid "error while formatting arguments for %s: %s"
+msgid "No footnote was found for given reference node %r"
msgstr ""
-#: ext/autodoc/__init__.py:898
+#: builders/latex/__init__.py:115
#, python-format
-msgid ""
-"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
-"%s"
+msgid "The LaTeX files are in %(outdir)s."
msgstr ""
-#: ext/autodoc/__init__.py:1021
-#, python-format
+#: builders/latex/__init__.py:118
msgid ""
-"don't know which module to import for autodocumenting %r (try placing a "
-"\"module\" or \"currentmodule\" directive in the document, or giving an "
-"explicit module name)"
+"\n"
+"Run 'make' in that directory to run these through (pdf)latex\n"
+"(use `make latexpdf' here to do that automatically)."
msgstr ""
-#: ext/autodoc/__init__.py:1080
-#, python-format
-msgid "A mocked object is detected: %r"
+#: builders/latex/__init__.py:156
+msgid "no \"latex_documents\" config value found; no documents will be written"
msgstr ""
-#: ext/autodoc/__init__.py:1103
+#: builders/latex/__init__.py:167
#, python-format
-msgid "error while formatting signature for %s: %s"
+msgid "\"latex_documents\" config value references unknown document %s"
msgstr ""
-#: ext/autodoc/__init__.py:1177
-msgid "\"::\" in automodule name doesn't make sense"
+#: builders/latex/__init__.py:421
+msgid "copying TeX support files"
msgstr ""
-#: ext/autodoc/__init__.py:1185
-#, python-format
-msgid "signature arguments or return annotation given for automodule %s"
+#: builders/latex/__init__.py:458
+msgid "copying additional files"
msgstr ""
-#: ext/autodoc/__init__.py:1201
+#: builders/latex/__init__.py:529
#, python-format
-msgid ""
-"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
-"__all__"
+msgid "Unknown configure key: latex_elements[%r], ignored."
msgstr ""
-#: ext/autodoc/__init__.py:1278
+#: builders/latex/__init__.py:537
#, python-format
-msgid ""
-"missing attribute mentioned in :members: option: module %s, attribute %s"
+msgid "Unknown theme option: latex_theme_options[%r], ignored."
msgstr ""
-#: ext/autodoc/__init__.py:1505 ext/autodoc/__init__.py:1593
-#: ext/autodoc/__init__.py:3127
+#: environment/collectors/toctree.py:259
#, python-format
-msgid "Failed to get a function signature for %s: %s"
+msgid "%s is already assigned section numbers (nested numbered toctree?)"
msgstr ""
-#: ext/autodoc/__init__.py:1828
+#: environment/collectors/asset.py:98
#, python-format
-msgid "Failed to get a constructor signature for %s: %s"
+msgid "image file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:1966
+#: environment/collectors/asset.py:126
#, python-format
-msgid "Bases: %s"
+msgid "image file %s not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:1985
+#: environment/collectors/asset.py:165
#, python-format
-msgid "missing attribute %s in object %s"
+msgid "download file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2081 ext/autodoc/__init__.py:2110
-#: ext/autodoc/__init__.py:2204
+#: environment/adapters/toctree.py:335
#, python-format
-msgid "alias of %s"
+msgid "circular toctree references detected, ignoring: %s <- %s"
msgstr ""
-#: ext/autodoc/__init__.py:2097
+#: environment/adapters/toctree.py:360
#, python-format
-msgid "alias of TypeVar(%s)"
+msgid ""
+"toctree contains reference to document %r that doesn't have a title: no link"
+" will be generated"
msgstr ""
-#: ext/autodoc/__init__.py:2456 ext/autodoc/__init__.py:2576
+#: environment/adapters/toctree.py:375
#, python-format
-msgid "Failed to get a method signature for %s: %s"
+msgid "toctree contains reference to non-included document %r"
msgstr ""
-#: ext/autodoc/__init__.py:2720
+#: environment/adapters/toctree.py:378
#, python-format
-msgid "Invalid __slots__ found on %s. Ignored."
+msgid "toctree contains reference to non-existing document %r"
msgstr ""
-#: ext/autodoc/preserve_defaults.py:195
+#: environment/adapters/indexentries.py:122
#, python-format
-msgid "Failed to parse a default argument value for %r: %s"
-msgstr ""
+msgid "see %s"
+msgstr "tatz'u %s"
-#: ext/autodoc/type_comment.py:151
+#: environment/adapters/indexentries.py:132
#, python-format
-msgid "Failed to update signature for %r: parameter not found: %s"
-msgstr ""
+msgid "see also %s"
+msgstr "tatz'u chuqa' %s"
-#: ext/autodoc/type_comment.py:154
+#: environment/adapters/indexentries.py:140
#, python-format
-msgid "Failed to parse type_comment for %r: %s"
+msgid "unknown index entry type %r"
msgstr ""
diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo
index b91950c4d80..139be3a0534 100644
Binary files a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo differ
diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po
index cce6e31673c..96e98543663 100644
--- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po
+++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2025-02-18 00:33+0000\n"
+"POT-Creation-Date: 2025-12-01 16:14+0000\n"
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
"Last-Translator: Vilibald W. , 2014-2015\n"
"Language-Team: Czech (http://app.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n"
@@ -20,6 +20,127 @@ msgstr ""
"Language: cs\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
+#: roles.py:205
+#, python-format
+msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgstr ""
+
+#: roles.py:228
+#, python-format
+msgid "invalid CVE number %s"
+msgstr ""
+
+#: roles.py:250
+#, python-format
+msgid "Common Weakness Enumeration; CWE %s"
+msgstr ""
+
+#: roles.py:273
+#, python-format
+msgid "invalid CWE number %s"
+msgstr ""
+
+#: roles.py:293
+#, python-format
+msgid "Python Enhancement Proposals; PEP %s"
+msgstr "Python Enhancement Proposals; PEP %s"
+
+#: roles.py:316
+#, python-format
+msgid "invalid PEP number %s"
+msgstr ""
+
+#: roles.py:354
+#, python-format
+msgid "invalid RFC number %s"
+msgstr ""
+
+#: theming.py:117
+#, python-format
+msgid ""
+"Theme configuration sections other than [theme] and [options] are not "
+"supported (tried to get a value from %r)."
+msgstr ""
+
+#: theming.py:122
+#, python-format
+msgid "setting %s.%s occurs in none of the searched theme configs"
+msgstr ""
+
+#: theming.py:137
+#, python-format
+msgid "unsupported theme option %r given"
+msgstr ""
+
+#: theming.py:218
+#, python-format
+msgid "file %r on theme path is not a valid zipfile or contains no theme"
+msgstr ""
+
+#: theming.py:238
+#, python-format
+msgid "no theme named %r found (missing theme.toml?)"
+msgstr ""
+
+#: theming.py:278
+#, python-format
+msgid "The %r theme has circular inheritance"
+msgstr ""
+
+#: theming.py:286
+#, python-format
+msgid ""
+"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
+"are: %s"
+msgstr ""
+
+#: theming.py:292
+#, python-format
+msgid "The %r theme has too many ancestors"
+msgstr ""
+
+#: theming.py:320
+#, python-format
+msgid "no theme configuration file found in %r"
+msgstr ""
+
+#: theming.py:345 theming.py:398
+#, python-format
+msgid "theme %r doesn't have the \"theme\" table"
+msgstr ""
+
+#: theming.py:349
+#, python-format
+msgid "The %r theme \"[theme]\" table is not a table"
+msgstr ""
+
+#: theming.py:353 theming.py:401
+#, python-format
+msgid "The %r theme must define the \"theme.inherit\" setting"
+msgstr ""
+
+#: theming.py:357
+#, python-format
+msgid "The %r theme \"[options]\" table is not a table"
+msgstr ""
+
+#: theming.py:376
+#, python-format
+msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+msgstr ""
+
+#: project.py:72
+#, python-format
+msgid ""
+"multiple files found for the document \"%s\": %s\n"
+"Use %r for the build."
+msgstr ""
+
+#: project.py:87
+#, python-format
+msgid "Ignored unreadable document %r."
+msgstr ""
+
#: extension.py:58
#, python-format
msgid ""
@@ -34,127 +155,154 @@ msgid ""
"cannot be built with the loaded version (%s)."
msgstr ""
-#: application.py:212
+#: highlighting.py:170
+#, python-format
+msgid "Pygments lexer name %r is not known"
+msgstr ""
+
+#: highlighting.py:209
+#, python-format
+msgid ""
+"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
+"Retrying in relaxed mode."
+msgstr ""
+
+#: events.py:92
+#, python-format
+msgid "Event %r already present"
+msgstr ""
+
+#: events.py:386
+#, python-format
+msgid "Unknown event name: %s"
+msgstr ""
+
+#: events.py:451
+#, python-format
+msgid "Handler %r for event %r threw an exception"
+msgstr ""
+
+#: application.py:218
#, python-format
msgid "Cannot find source directory (%s)"
msgstr ""
-#: application.py:217
+#: application.py:223
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
-#: application.py:222
+#: application.py:228
msgid "Source directory and destination directory cannot be identical"
msgstr ""
-#: application.py:252
+#: application.py:258
#, python-format
msgid "Running Sphinx v%s"
msgstr ""
-#: application.py:278
+#: application.py:286
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr ""
-#: application.py:297
+#: application.py:305
msgid "making output directory"
msgstr ""
-#: application.py:302 registry.py:538
+#: application.py:310 registry.py:540
#, python-format
msgid "while setting up extension %s:"
msgstr ""
-#: application.py:309
+#: application.py:317
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
-#: application.py:346
+#: application.py:360
#, python-format
msgid "loading translations [%s]... "
msgstr ""
-#: application.py:370 util/display.py:89
+#: application.py:384 util/display.py:89
msgid "done"
msgstr ""
-#: application.py:372
+#: application.py:386
msgid "not available for built-in messages"
msgstr ""
-#: application.py:386
+#: application.py:400
msgid "loading pickled environment"
msgstr ""
-#: application.py:394
+#: application.py:408
#, python-format
msgid "failed: %s"
msgstr ""
-#: application.py:407
+#: application.py:423
msgid "No builder selected, using default: html"
msgstr ""
-#: application.py:439
+#: application.py:455
msgid "build finished with problems."
msgstr ""
-#: application.py:441
+#: application.py:457
msgid "build succeeded."
msgstr ""
-#: application.py:446
+#: application.py:462
msgid ""
"build finished with problems, 1 warning (with warnings treated as errors)."
msgstr ""
-#: application.py:450
+#: application.py:466
msgid "build finished with problems, 1 warning."
msgstr ""
-#: application.py:452
+#: application.py:468
msgid "build succeeded, 1 warning."
msgstr ""
-#: application.py:458
+#: application.py:474
#, python-format
msgid ""
"build finished with problems, %s warnings (with warnings treated as errors)."
msgstr ""
-#: application.py:462
+#: application.py:478
#, python-format
msgid "build finished with problems, %s warnings."
msgstr ""
-#: application.py:464
+#: application.py:480
#, python-format
msgid "build succeeded, %s warnings."
msgstr ""
-#: application.py:1026
+#: application.py:1020
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
-#: application.py:1119
+#: application.py:1113
#, python-format
msgid "directive %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1145 application.py:1173
+#: application.py:1139 application.py:1167
#, python-format
msgid "role %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1770
+#: application.py:1766
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@@ -162,12 +310,12 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1775
+#: application.py:1771
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
-#: application.py:1779
+#: application.py:1775
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@@ -175,82 +323,214 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1784
+#: application.py:1780
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
-#: application.py:1792 application.py:1796
+#: application.py:1788 application.py:1792
#, python-format
msgid "doing serial %s"
msgstr ""
-#: config.py:355
+#: registry.py:162
#, python-format
-msgid "config directory doesn't contain a conf.py file (%s)"
+msgid "Builder class %s has no \"name\" attribute"
+msgstr ""
+
+#: registry.py:166
+#, python-format
+msgid "Builder %r already exists (in module %s)"
+msgstr ""
+
+#: registry.py:182
+#, python-format
+msgid "Builder name %s not registered or available through entry point"
+msgstr ""
+
+#: registry.py:192
+#, python-format
+msgid "Builder name %s not registered"
+msgstr ""
+
+#: registry.py:199
+#, python-format
+msgid "domain %s already registered"
+msgstr ""
+
+#: registry.py:223 registry.py:244 registry.py:257
+#, python-format
+msgid "domain %s not yet registered"
+msgstr ""
+
+#: registry.py:230
+#, python-format
+msgid "The %r directive is already registered to domain %s"
+msgstr ""
+
+#: registry.py:248
+#, python-format
+msgid "The %r role is already registered to domain %s"
+msgstr ""
+
+#: registry.py:261
+#, python-format
+msgid "The %r index is already registered to domain %s"
+msgstr ""
+
+#: registry.py:308
+#, python-format
+msgid "The %r object_type is already registered"
+msgstr ""
+
+#: registry.py:339
+#, python-format
+msgid "The %r crossref_type is already registered"
+msgstr ""
+
+#: registry.py:348
+#, python-format
+msgid "source_suffix %r is already registered"
+msgstr ""
+
+#: registry.py:358
+#, python-format
+msgid "source_parser for %r is already registered"
+msgstr ""
+
+#: registry.py:367
+#, python-format
+msgid "Source parser for %s not registered"
+msgstr ""
+
+#: registry.py:388
+#, python-format
+msgid "Translator for %r already exists"
+msgstr ""
+
+#: registry.py:405
+#, python-format
+msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
msgstr ""
-#: config.py:366
+#: registry.py:498
+#, python-format
+msgid "enumerable_node %r already registered"
+msgstr ""
+
+#: registry.py:514
+#, python-format
+msgid "math renderer %s is already registered"
+msgstr ""
+
+#: registry.py:531
+#, python-format
msgid ""
-"Invalid configuration value found: 'language = None'. Update your "
-"configuration to a valid language code. Falling back to 'en' (English)."
+"the extension %r was already merged with Sphinx since version %s; this "
+"extension is ignored."
+msgstr ""
+
+#: registry.py:545
+msgid "Original exception:\n"
+msgstr ""
+
+#: registry.py:547
+#, python-format
+msgid "Could not import extension %s"
+msgstr ""
+
+#: registry.py:554
+#, python-format
+msgid ""
+"extension %r has no setup() function; is it really a Sphinx extension "
+"module?"
+msgstr ""
+
+#: registry.py:567
+#, python-format
+msgid ""
+"The %s extension used by this project needs at least Sphinx v%s; it "
+"therefore cannot be built with this version."
+msgstr ""
+
+#: registry.py:579
+#, python-format
+msgid ""
+"extension %r returned an unsupported object from its setup() function; it "
+"should return None or a metadata dictionary"
+msgstr ""
+
+#: registry.py:605
+#, python-format
+msgid "`None` is not a valid filetype for %r."
+msgstr ""
+
+#: config.py:351
+#, python-format
+msgid "config directory doesn't contain a conf.py file (%s)"
msgstr ""
-#: config.py:394
+#: config.py:374
#, python-format
msgid "'%s' must be '0' or '1', got '%s'"
msgstr ""
-#: config.py:399
+#: config.py:379
#, python-format
msgid ""
"cannot override dictionary config setting %r, ignoring (use %r to set "
"individual elements)"
msgstr ""
-#: config.py:411
+#: config.py:391
#, python-format
msgid "invalid number %r for config value %r, ignoring"
msgstr ""
-#: config.py:419
+#: config.py:399
#, python-format
msgid "cannot override config setting %r with unsupported type, ignoring"
msgstr ""
-#: config.py:442
+#: config.py:422
#, python-format
msgid "unknown config value %r in override, ignoring"
msgstr ""
-#: config.py:496
+#: config.py:476
#, python-format
msgid "No such config value: %r"
msgstr ""
-#: config.py:524
+#: config.py:504
#, python-format
msgid "Config value %r already present"
msgstr ""
-#: config.py:561
+#: config.py:541
#, python-format
msgid ""
"cannot cache unpickleable configuration value: %r (because it contains a "
"function, class, or module object)"
msgstr ""
-#: config.py:603
+#: config.py:577
+msgid ""
+"Invalid configuration value found: 'language = None'. Update your "
+"configuration to a valid language code. Falling back to 'en' (English)."
+msgstr ""
+
+#: config.py:599
#, python-format
msgid "There is a syntax error in your configuration file: %s\n"
msgstr ""
-#: config.py:607
+#: config.py:603
msgid ""
"The configuration file (or one of the modules it imports) called sys.exit()"
msgstr ""
-#: config.py:615
+#: config.py:611
#, python-format
msgid ""
"There is a programmable error in your configuration file:\n"
@@ -258,468 +538,624 @@ msgid ""
"%s"
msgstr ""
-#: config.py:637
+#: config.py:633
#, python-format
msgid "Failed to convert %r to a frozenset"
msgstr ""
-#: config.py:655 config.py:663
+#: config.py:651 config.py:659
#, python-format
msgid "Converting `source_suffix = %r` to `source_suffix = %r`."
msgstr ""
-#: config.py:669
+#: config.py:665
#, python-format
msgid ""
"The config value `source_suffix' expects a dictionary, a string, or a list "
"of strings. Got `%r' instead (type %s)."
msgstr ""
-#: config.py:690
+#: config.py:686
#, python-format
msgid "Section %s"
msgstr ""
-#: config.py:691
+#: config.py:687
#, python-format
msgid "Fig. %s"
msgstr "Obr. %s"
-#: config.py:692
+#: config.py:688
#, python-format
msgid "Table %s"
msgstr "Tabulka %s"
-#: config.py:693
+#: config.py:689
#, python-format
msgid "Listing %s"
msgstr "Výpis %s"
-#: config.py:802
+#: config.py:798
#, python-brace-format
msgid ""
"The config value `{name}` has to be a one of {candidates}, but `{current}` "
"is given."
msgstr ""
-#: config.py:833
+#: config.py:829
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}'; expected "
"{permitted}."
msgstr ""
-#: config.py:850
+#: config.py:846
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}', defaults to "
"`{default.__name__}'."
msgstr ""
-#: config.py:862
+#: config.py:858
#, python-format
msgid "primary_domain %r not found, ignored."
msgstr ""
-#: config.py:882
+#: config.py:878
msgid ""
"Sphinx now uses \"index\" as the master document by default. To keep pre-2.0"
" behaviour, set \"master_doc = 'contents'\"."
msgstr ""
-#: highlighting.py:170
-#, python-format
-msgid "Pygments lexer name %r is not known"
+#: config.py:892
+msgid ""
+"Support for source encodings other than UTF-8 is deprecated and will be "
+"removed in Sphinx 10. Please comment at https://github.com/sphinx-"
+"doc/sphinx/issues/13665 if this causes a problem."
msgstr ""
-#: highlighting.py:209
-#, python-format
-msgid ""
-"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
-"Retrying in relaxed mode."
+#: environment/__init__.py:89
+msgid "new config"
msgstr ""
-#: theming.py:115
-#, python-format
-msgid ""
-"Theme configuration sections other than [theme] and [options] are not "
-"supported (tried to get a value from %r)."
+#: environment/__init__.py:90
+msgid "config changed"
msgstr ""
-#: theming.py:120
-#, python-format
-msgid "setting %s.%s occurs in none of the searched theme configs"
+#: environment/__init__.py:91
+msgid "extensions changed"
msgstr ""
-#: theming.py:135
-#, python-format
-msgid "unsupported theme option %r given"
+#: environment/__init__.py:261
+msgid "build environment version not current"
msgstr ""
-#: theming.py:208
-#, python-format
-msgid "file %r on theme path is not a valid zipfile or contains no theme"
+#: environment/__init__.py:263
+msgid "source directory has changed"
msgstr ""
-#: theming.py:228
+#: environment/__init__.py:350
#, python-format
-msgid "no theme named %r found (missing theme.toml?)"
+msgid "The configuration has changed (1 option: %r)"
msgstr ""
-#: theming.py:268
+#: environment/__init__.py:355
#, python-format
-msgid "The %r theme has circular inheritance"
+msgid "The configuration has changed (%d options: %s)"
msgstr ""
-#: theming.py:276
+#: environment/__init__.py:361
#, python-format
-msgid ""
-"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
-"are: %s"
+msgid "The configuration has changed (%d options: %s, ...)"
msgstr ""
-#: theming.py:282
-#, python-format
-msgid "The %r theme has too many ancestors"
+#: environment/__init__.py:404
+msgid ""
+"This environment is incompatible with the selected builder, please choose "
+"another doctree directory."
msgstr ""
-#: theming.py:310
+#: environment/__init__.py:518
#, python-format
-msgid "no theme configuration file found in %r"
+msgid "Failed to scan documents in %s: %r"
msgstr ""
-#: theming.py:335 theming.py:388
+#: environment/__init__.py:645 ext/intersphinx/_resolve.py:238
#, python-format
-msgid "theme %r doesn't have the \"theme\" table"
+msgid "Domain %r is not registered"
msgstr ""
-#: theming.py:339
-#, python-format
-msgid "The %r theme \"[theme]\" table is not a table"
+#: environment/__init__.py:811
+msgid "document isn't included in any toctree"
msgstr ""
-#: theming.py:343 theming.py:391
-#, python-format
-msgid "The %r theme must define the \"theme.inherit\" setting"
+#: environment/__init__.py:922
+msgid "self referenced toctree found. Ignored."
msgstr ""
-#: theming.py:347
+#: environment/__init__.py:952
#, python-format
-msgid "The %r theme \"[options]\" table is not a table"
+msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
msgstr ""
-#: theming.py:366
-#, python-format
-msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
-msgstr ""
+#: locale/__init__.py:229
+msgid "Attention"
+msgstr "Výstraha"
-#: events.py:77
-#, python-format
-msgid "Event %r already present"
-msgstr ""
+#: locale/__init__.py:230
+msgid "Caution"
+msgstr "Upozornění"
-#: events.py:370
-#, python-format
-msgid "Unknown event name: %s"
-msgstr ""
+#: locale/__init__.py:231
+msgid "Danger"
+msgstr "Nebezpečí"
+
+#: locale/__init__.py:232
+msgid "Error"
+msgstr "Chyba"
+
+#: locale/__init__.py:233
+msgid "Hint"
+msgstr "Rada"
+
+#: locale/__init__.py:234
+msgid "Important"
+msgstr "Důležité"
+
+#: locale/__init__.py:235
+msgid "Note"
+msgstr "Poznámka"
+
+#: locale/__init__.py:236
+msgid "See also"
+msgstr "Viz také"
+
+#: locale/__init__.py:237
+msgid "Tip"
+msgstr "Tip"
+
+#: locale/__init__.py:238
+msgid "Warning"
+msgstr "Varování"
-#: events.py:416
+#: builders/texinfo.py:41
#, python-format
-msgid "Handler %r for event %r threw an exception"
+msgid "The Texinfo files are in %(outdir)s."
msgstr ""
-#: project.py:72
-#, python-format
+#: builders/texinfo.py:44
msgid ""
-"multiple files found for the document \"%s\": %s\n"
-"Use %r for the build."
+"\n"
+"Run 'make' in that directory to run these through makeinfo\n"
+"(use 'make info' here to do that automatically)."
msgstr ""
-#: project.py:87
-#, python-format
-msgid "Ignored unreadable document %r."
+#: builders/texinfo.py:73
+msgid "no \"texinfo_documents\" config value found; no documents will be written"
msgstr ""
-#: registry.py:167
+#: builders/texinfo.py:85
#, python-format
-msgid "Builder class %s has no \"name\" attribute"
+msgid "\"texinfo_documents\" config value references unknown document %s"
msgstr ""
-#: registry.py:171
+#: builders/latex/__init__.py:310 builders/texinfo.py:105
#, python-format
-msgid "Builder %r already exists (in module %s)"
+msgid "processing %s"
msgstr ""
-#: registry.py:187
-#, python-format
-msgid "Builder name %s not registered or available through entry point"
+#: builders/latex/__init__.py:332 builders/manpage.py:54
+#: builders/singlehtml.py:176 builders/texinfo.py:111
+msgid "writing"
msgstr ""
-#: registry.py:197
-#, python-format
-msgid "Builder name %s not registered"
+#: builders/latex/__init__.py:398 builders/texinfo.py:160
+msgid "resolving references..."
msgstr ""
-#: registry.py:204
-#, python-format
-msgid "domain %s already registered"
-msgstr ""
+#: builders/latex/__init__.py:409 builders/texinfo.py:170
+msgid " (in "
+msgstr " (v "
-#: registry.py:228 registry.py:249 registry.py:262
-#, python-format
-msgid "domain %s not yet registered"
+#: builders/_epub_base.py:425 builders/html/__init__.py:768
+#: builders/latex/__init__.py:474 builders/texinfo.py:186
+msgid "copying images... "
msgstr ""
-#: registry.py:235
+#: builders/_epub_base.py:447 builders/latex/__init__.py:489
+#: builders/texinfo.py:203
#, python-format
-msgid "The %r directive is already registered to domain %s"
+msgid "cannot copy image file %r: %s"
msgstr ""
-#: registry.py:253
-#, python-format
-msgid "The %r role is already registered to domain %s"
+#: builders/texinfo.py:210
+msgid "copying Texinfo support files"
msgstr ""
-#: registry.py:266
+#: builders/texinfo.py:218
#, python-format
-msgid "The %r index is already registered to domain %s"
+msgid "error writing file Makefile: %s"
msgstr ""
-#: registry.py:313
+#: builders/manpage.py:37
#, python-format
-msgid "The %r object_type is already registered"
+msgid "The manual pages are in %(outdir)s."
msgstr ""
-#: registry.py:344
-#, python-format
-msgid "The %r crossref_type is already registered"
+#: builders/manpage.py:45
+msgid "no \"man_pages\" config value found; no manual pages will be written"
msgstr ""
-#: registry.py:353
+#: builders/manpage.py:64
#, python-format
-msgid "source_suffix %r is already registered"
+msgid "\"man_pages\" config value references unknown document %s"
msgstr ""
-#: registry.py:363
+#: builders/singlehtml.py:35
#, python-format
-msgid "source_parser for %r is already registered"
+msgid "The HTML page is in %(outdir)s."
msgstr ""
-#: registry.py:372
-#, python-format
-msgid "Source parser for %s not registered"
+#: builders/singlehtml.py:171
+msgid "assembling single document"
msgstr ""
-#: registry.py:390
-#, python-format
-msgid "Translator for %r already exists"
+#: builders/singlehtml.py:189
+msgid "writing additional files"
msgstr ""
-#: registry.py:407
-#, python-format
-msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
+#: builders/dummy.py:19
+msgid "The dummy builder generates no files."
msgstr ""
-#: registry.py:496
+#: builders/gettext.py:243
#, python-format
-msgid "enumerable_node %r already registered"
+msgid "The message catalogs are in %(outdir)s."
msgstr ""
-#: registry.py:512
+#: builders/__init__.py:400 builders/gettext.py:264
#, python-format
-msgid "math renderer %s is already registered"
+msgid "building [%s]: "
msgstr ""
-#: registry.py:529
+#: builders/gettext.py:265
#, python-format
-msgid ""
-"the extension %r was already merged with Sphinx since version %s; this "
-"extension is ignored."
+msgid "targets for %d template files"
msgstr ""
-#: registry.py:543
-msgid "Original exception:\n"
+#: builders/gettext.py:271
+msgid "reading templates... "
msgstr ""
-#: registry.py:545
-#, python-format
-msgid "Could not import extension %s"
+#: builders/gettext.py:310
+msgid "writing message catalogs... "
msgstr ""
-#: registry.py:552
+#: builders/linkcheck.py:87
#, python-format
-msgid ""
-"extension %r has no setup() function; is it really a Sphinx extension "
-"module?"
+msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
msgstr ""
-#: registry.py:565
+#: builders/linkcheck.py:159
#, python-format
-msgid ""
-"The %s extension used by this project needs at least Sphinx v%s; it "
-"therefore cannot be built with this version."
+msgid "broken link: %s (%s)"
msgstr ""
-#: registry.py:577
+#: builders/linkcheck.py:561
#, python-format
-msgid ""
-"extension %r returned an unsupported object from its setup() function; it "
-"should return None or a metadata dictionary"
+msgid "Anchor '%s' not found"
msgstr ""
-#: registry.py:612
-#, python-format
-msgid "`None` is not a valid filetype for %r."
+#: builders/linkcheck.py:789
+msgid "linkcheck_allowed_redirects. Expected a dictionary."
msgstr ""
-#: roles.py:206
+#: builders/linkcheck.py:799
#, python-format
-msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
-#: roles.py:229
+#: builders/epub3.py:83
#, python-format
-msgid "invalid CVE number %s"
+msgid "The ePub file is in %(outdir)s."
msgstr ""
-#: roles.py:251
-#, python-format
-msgid "Common Weakness Enumeration; CWE %s"
+#: builders/epub3.py:188
+msgid "writing nav.xhtml file..."
msgstr ""
-#: roles.py:274
-#, python-format
-msgid "invalid CWE number %s"
+#: builders/epub3.py:224
+msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
msgstr ""
-#: roles.py:294
-#, python-format
-msgid "Python Enhancement Proposals; PEP %s"
-msgstr "Python Enhancement Proposals; PEP %s"
-
-#: roles.py:317
-#, python-format
-msgid "invalid PEP number %s"
+#: builders/epub3.py:230
+msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
msgstr ""
-#: roles.py:355
-#, python-format
-msgid "invalid RFC number %s"
+#: builders/epub3.py:235
+msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
msgstr ""
-#: ext/linkcode.py:86 ext/viewcode.py:226
-msgid "[source]"
-msgstr "[zdroj]"
-
-#: ext/viewcode.py:289
-msgid "highlighting module code... "
+#: builders/epub3.py:241
+msgid "conf value \"epub_author\" should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:320
-msgid "[docs]"
-msgstr "[dokumentace]"
+#: builders/epub3.py:245
+msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:346
-msgid "Module code"
-msgstr "Kód modulu"
+#: builders/epub3.py:250
+msgid "conf value \"epub_description\" should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:353
-#, python-format
-msgid "Source code for %s
"
-msgstr "Zdrojový kód pro %s
"
+#: builders/epub3.py:254
+msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:380
-msgid "Overview: module code"
-msgstr "Přehled: kód modulu"
+#: builders/epub3.py:259
+msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:381
-msgid "All modules for which code is available
"
-msgstr "Všechny moduly s dostupným kódem
"
+#: builders/epub3.py:265
+msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+msgstr ""
-#: ext/extlinks.py:82
-#, python-format
-msgid ""
-"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+#: builders/epub3.py:268
+msgid "conf value \"version\" should not be empty for EPUB3"
msgstr ""
-#: ext/autosectionlabel.py:52
+#: builders/epub3.py:282 builders/html/__init__.py:1296
#, python-format
-msgid "section \"%s\" gets labeled as \"%s\""
+msgid "invalid css_file: %r, ignored"
msgstr ""
-#: domains/std/__init__.py:833 domains/std/__init__.py:960
-#: ext/autosectionlabel.py:61
+#: builders/xml.py:29
#, python-format
-msgid "duplicate label %s, other instance in %s"
+msgid "The XML files are in %(outdir)s."
msgstr ""
-#: ext/imgmath.py:387 ext/mathjax.py:60
-msgid "Link to this equation"
+#: builders/html/__init__.py:1242 builders/text.py:71 builders/xml.py:81
+#, python-format
+msgid "error writing file %s: %s"
msgstr ""
-#: ext/duration.py:90
-msgid ""
-"====================== slowest reading durations ======================="
+#: builders/xml.py:103
+#, python-format
+msgid "The pseudo-XML files are in %(outdir)s."
msgstr ""
-#: ext/doctest.py:118
+#: builders/_epub_base.py:223
#, python-format
-msgid "missing '+' or '-' in '%s' option."
+msgid "duplicated ToC entry found: %s"
msgstr ""
-#: ext/doctest.py:124
+#: builders/_epub_base.py:436
#, python-format
-msgid "'%s' is not a valid option."
+msgid "cannot read image file %r: copying it instead"
msgstr ""
-#: ext/doctest.py:139
+#: builders/_epub_base.py:467
#, python-format
-msgid "'%s' is not a valid pyversion option"
+msgid "cannot write image file %r: %s"
msgstr ""
-#: ext/doctest.py:226
-msgid "invalid TestCode type"
+#: builders/_epub_base.py:479
+msgid "Pillow not found - copying image files"
msgstr ""
-#: ext/doctest.py:297
+#: builders/_epub_base.py:514
+msgid "writing mimetype file..."
+msgstr ""
+
+#: builders/_epub_base.py:523
+msgid "writing META-INF/container.xml file..."
+msgstr ""
+
+#: builders/_epub_base.py:561
+msgid "writing content.opf file..."
+msgstr ""
+
+#: builders/_epub_base.py:594
+#, python-format
+msgid "unknown mimetype for %s, ignoring"
+msgstr ""
+
+#: builders/_epub_base.py:749
+msgid "node has an invalid level"
+msgstr ""
+
+#: builders/_epub_base.py:769
+msgid "writing toc.ncx file..."
+msgstr ""
+
+#: builders/_epub_base.py:802
+#, python-format
+msgid "writing %s file..."
+msgstr ""
+
+#: builders/text.py:27
+#, python-format
+msgid "The text files are in %(outdir)s."
+msgstr ""
+
+#: builders/__init__.py:229
+#, python-format
+msgid "a suitable image for %s builder not found: %s (%s)"
+msgstr ""
+
+#: builders/__init__.py:237
+#, python-format
+msgid "a suitable image for %s builder not found: %s"
+msgstr ""
+
+#: builders/__init__.py:260
+msgid "building [mo]: "
+msgstr ""
+
+#: builders/__init__.py:263 builders/__init__.py:771 builders/__init__.py:795
+msgid "writing output... "
+msgstr ""
+
+#: builders/__init__.py:280
+#, python-format
+msgid "all of %d po files"
+msgstr ""
+
+#: builders/__init__.py:302
+#, python-format
+msgid "targets for %d po files that are specified"
+msgstr ""
+
+#: builders/__init__.py:314
+#, python-format
+msgid "targets for %d po files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:324
+msgid "all source files"
+msgstr ""
+
+#: builders/__init__.py:335
+#, python-format
+msgid "file %r given on command line does not exist, "
+msgstr ""
+
+#: builders/__init__.py:342
#, python-format
msgid ""
-"Testing of doctests in the sources finished, look at the results in "
-"%(outdir)s/output.txt."
+"file %r given on command line is not under the source directory, ignoring"
msgstr ""
-#: ext/doctest.py:457
+#: builders/__init__.py:353
#, python-format
-msgid "no code/output in %s block at %s:%s"
+msgid "file %r given on command line is not a valid document, ignoring"
msgstr ""
-#: ext/doctest.py:568
+#: builders/__init__.py:366
#, python-format
-msgid "ignoring invalid doctest code: %r"
+msgid "%d source files given on command line"
+msgstr ""
+
+#: builders/__init__.py:382
+#, python-format
+msgid "targets for %d source files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:411
+msgid "looking for now-outdated files... "
+msgstr ""
+
+#: builders/__init__.py:415
+#, python-format
+msgid "%d found"
+msgstr ""
+
+#: builders/__init__.py:417
+msgid "none found"
+msgstr ""
+
+#: builders/__init__.py:424
+msgid "pickling environment"
+msgstr ""
+
+#: builders/__init__.py:431
+msgid "checking consistency"
+msgstr ""
+
+#: builders/__init__.py:435
+msgid "no targets are out of date."
+msgstr ""
+
+#: builders/__init__.py:474
+msgid "updating environment: "
+msgstr ""
+
+#: builders/__init__.py:499
+#, python-format
+msgid "%s added, %s changed, %s removed"
msgstr ""
-#: ext/imgmath.py:162
+#: builders/__init__.py:536
#, python-format
msgid ""
-"LaTeX command %r cannot be run (needed for math display), check the "
-"imgmath_latex setting"
+"Sphinx is unable to load the master document (%s) because it matches a "
+"built-in exclude pattern %r. Please move your master document to a different"
+" location."
msgstr ""
-#: ext/imgmath.py:181
+#: builders/__init__.py:545
#, python-format
msgid ""
-"%s command %r cannot be run (needed for math display), check the imgmath_%s "
-"setting"
+"Sphinx is unable to load the master document (%s) because it matches an "
+"exclude pattern specified in conf.py, %r. Please remove this pattern from "
+"conf.py."
msgstr ""
-#: ext/imgmath.py:344
+#: builders/__init__.py:556
#, python-format
-msgid "display latex %r: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s) because it is not included"
+" in the custom include_patterns = %r. Ensure that a pattern in "
+"include_patterns matches the master document."
msgstr ""
-#: ext/imgmath.py:380
+#: builders/__init__.py:563
#, python-format
-msgid "inline latex %r: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s). The master document must "
+"be within the source directory or a subdirectory of it."
+msgstr ""
+
+#: builders/__init__.py:581 builders/__init__.py:598
+msgid "reading sources... "
+msgstr ""
+
+#: builders/__init__.py:725
+#, python-format
+msgid "docnames to write: %s"
+msgstr ""
+
+#: builders/__init__.py:727
+msgid "no docnames to write!"
+msgstr ""
+
+#: builders/__init__.py:740
+msgid "preparing documents"
+msgstr ""
+
+#: builders/__init__.py:743
+msgid "copying assets"
+msgstr ""
+
+#: builders/changes.py:29
+#, python-format
+msgid "The overview file is in %(outdir)s."
+msgstr ""
+
+#: builders/changes.py:65
+#, python-format
+msgid "no changes in version %s."
+msgstr ""
+
+#: builders/changes.py:67
+msgid "writing summary file..."
+msgstr ""
+
+#: builders/changes.py:79
+msgid "Builtins"
+msgstr "Vestavěné funkce"
+
+#: builders/changes.py:81
+msgid "Module level"
+msgstr "Úroveň modulu"
+
+#: builders/changes.py:137
+msgid "copying source files..."
+msgstr ""
+
+#: builders/changes.py:146
+#, python-format
+msgid "could not read %r for changelog creation"
msgstr ""
#: ext/coverage.py:48
@@ -740,9 +1176,10 @@ msgid ""
msgstr ""
#: ext/coverage.py:158
+#, python-format
msgid ""
"the following modules are specified in coverage_modules but were not "
-"documented"
+"documented: %s"
msgstr ""
#: ext/coverage.py:172
@@ -777,6 +1214,34 @@ msgstr ""
msgid "undocumented python method: %s :: %s :: %s"
msgstr ""
+#: ext/extlinks.py:82
+#, python-format
+msgid ""
+"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgstr ""
+
+#: ext/todo.py:61
+msgid "Todo"
+msgstr "Todo"
+
+#: ext/todo.py:94
+#, python-format
+msgid "TODO entry found: %s"
+msgstr ""
+
+#: ext/todo.py:152
+msgid "<>"
+msgstr ""
+
+#: ext/todo.py:154
+#, python-format
+msgid "(The <> is located in %s, line %d.)"
+msgstr ""
+
+#: ext/todo.py:166
+msgid "original entry"
+msgstr "původní záznam"
+
#: ext/imgconverter.py:44
#, python-format
msgid ""
@@ -864,1779 +1329,1514 @@ msgstr "[graf: %s]"
msgid "[graph]"
msgstr "[graf]"
-#: ext/todo.py:61
-msgid "Todo"
-msgstr "Todo"
-
-#: ext/todo.py:94
+#: ext/imgmath.py:148
#, python-format
-msgid "TODO entry found: %s"
+msgid ""
+"LaTeX command %r cannot be run (needed for math display), check the "
+"imgmath_latex setting"
msgstr ""
-#: ext/todo.py:152
-msgid "<>"
+#: ext/imgmath.py:167
+#, python-format
+msgid ""
+"%s command %r cannot be run (needed for math display), check the imgmath_%s "
+"setting"
msgstr ""
-#: ext/todo.py:154
+#: ext/imgmath.py:326
#, python-format
-msgid "(The <> is located in %s, line %d.)"
+msgid "display latex %r: %s"
msgstr ""
-#: ext/todo.py:166
-msgid "original entry"
-msgstr "původní záznam"
+#: ext/imgmath.py:362
+#, python-format
+msgid "inline latex %r: %s"
+msgstr ""
-#: directives/code.py:66
-msgid "non-whitespace stripped by dedent"
+#: ext/imgmath.py:369 ext/mathjax.py:60
+msgid "Link to this equation"
msgstr ""
-#: directives/code.py:87
+#: ext/doctest.py:118
#, python-format
-msgid "Invalid caption: %s"
+msgid "missing '+' or '-' in '%s' option."
msgstr ""
-#: directives/code.py:131 directives/code.py:297 directives/code.py:483
+#: ext/doctest.py:124
#, python-format
-msgid "line number spec is out of range(1-%d): %r"
+msgid "'%s' is not a valid option."
msgstr ""
-#: directives/code.py:216
+#: ext/doctest.py:139
#, python-format
-msgid "Cannot use both \"%s\" and \"%s\" options"
+msgid "'%s' is not a valid pyversion option"
msgstr ""
-#: directives/code.py:231
-#, python-format
-msgid "Include file '%s' not found or reading it failed"
+#: ext/doctest.py:226
+msgid "invalid TestCode type"
msgstr ""
-#: directives/code.py:235
+#: ext/doctest.py:297
#, python-format
msgid ""
-"Encoding %r used for reading included file '%s' seems to be wrong, try "
-"giving an :encoding: option"
+"Testing of doctests in the sources finished, look at the results in "
+"%(outdir)s/output.txt."
msgstr ""
-#: directives/code.py:276
+#: ext/doctest.py:451
#, python-format
-msgid "Object named %r not found in include file %r"
-msgstr ""
-
-#: directives/code.py:309
-msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
+msgid "no code/output in %s block at %s:%s"
msgstr ""
-#: directives/code.py:314
+#: ext/doctest.py:568
#, python-format
-msgid "Line spec %r: no lines pulled from include file %r"
+msgid "ignoring invalid doctest code: %r"
msgstr ""
-#: directives/patches.py:71
-msgid ""
-"\":file:\" option for csv-table directive now recognizes an absolute path as"
-" a relative path from source directory. Please update your document."
+#: ext/autosectionlabel.py:52
+#, python-format
+msgid "section \"%s\" gets labeled as \"%s\""
msgstr ""
-#: directives/other.py:119
+#: domains/std/__init__.py:833 domains/std/__init__.py:960
+#: ext/autosectionlabel.py:61
#, python-format
-msgid "toctree glob pattern %r didn't match any documents"
+msgid "duplicate label %s, other instance in %s"
msgstr ""
-#: directives/other.py:153 environment/adapters/toctree.py:361
+#: ext/duration.py:47
#, python-format
-msgid "toctree contains reference to excluded document %r"
+msgid "Reading duration %.3fs exceeded the duration limit %.3fs"
msgstr ""
-#: directives/other.py:156
+#: ext/duration.py:117
+msgid ""
+"====================== total reading duration =========================="
+msgstr ""
+
+#: ext/duration.py:124
#, python-format
-msgid "toctree contains reference to nonexisting document %r"
+msgid "Total time reading %d file%s: %dm %.3fs"
msgstr ""
-#: directives/other.py:169
+#: ext/duration.py:136
+msgid ""
+"====================== slowest reading durations ======================="
+msgstr ""
+
+#: ext/duration.py:139
#, python-format
-msgid "duplicated entry found in toctree: %s"
+msgid "%.3fs %s"
msgstr ""
-#: directives/other.py:203
-msgid "Section author: "
-msgstr "Autor sekce: "
+#: ext/linkcode.py:86 ext/viewcode.py:232
+msgid "[source]"
+msgstr "[zdroj]"
-#: directives/other.py:205
-msgid "Module author: "
-msgstr "Autor modulu: "
+#: ext/viewcode.py:295
+msgid "highlighting module code... "
+msgstr ""
-#: directives/other.py:207
-msgid "Code author: "
-msgstr "Autor kódu:"
+#: ext/viewcode.py:326
+msgid "[docs]"
+msgstr "[dokumentace]"
-#: directives/other.py:209
-msgid "Author: "
-msgstr "Autor: "
+#: ext/viewcode.py:352
+msgid "Module code"
+msgstr "Kód modulu"
-#: directives/other.py:269
-msgid ".. acks content is not a list"
-msgstr ""
+#: ext/viewcode.py:359
+#, python-format
+msgid "Source code for %s
"
+msgstr "Zdrojový kód pro %s
"
-#: directives/other.py:292
-msgid ".. hlist content is not a list"
+#: ext/viewcode.py:386
+msgid "Overview: module code"
+msgstr "Přehled: kód modulu"
+
+#: ext/viewcode.py:387
+msgid "All modules for which code is available
"
+msgstr "Všechny moduly s dostupným kódem
"
+
+#: domains/citation.py:75
+#, python-format
+msgid "duplicate citation %s, other instance in %s"
msgstr ""
-#: builders/changes.py:29
+#: domains/citation.py:92
#, python-format
-msgid "The overview file is in %(outdir)s."
+msgid "Citation [%s] is not referenced."
msgstr ""
-#: builders/changes.py:56
+#: domains/math.py:73
#, python-format
-msgid "no changes in version %s."
+msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
-#: builders/changes.py:58
-msgid "writing summary file..."
+#: domains/math.py:130 writers/latex.py:2500
+#, python-format
+msgid "Invalid math_eqref_format: %r"
msgstr ""
-#: builders/changes.py:70
-msgid "Builtins"
-msgstr "Vestavěné funkce"
+#: domains/javascript.py:183
+#, python-format
+msgid "%s() (built-in function)"
+msgstr "%s() (vestavěná funkce)"
-#: builders/changes.py:72
-msgid "Module level"
-msgstr "Úroveň modulu"
+#: domains/javascript.py:184 domains/python/__init__.py:279
+#, python-format
+msgid "%s() (%s method)"
+msgstr "%s() (metoda %s)"
-#: builders/changes.py:124
-msgid "copying source files..."
-msgstr ""
+#: domains/javascript.py:186
+#, python-format
+msgid "%s() (class)"
+msgstr "%s() (třída)"
-#: builders/changes.py:133
+#: domains/javascript.py:188
#, python-format
-msgid "could not read %r for changelog creation"
-msgstr ""
+msgid "%s (global variable or constant)"
+msgstr "%s (globální proměnná nebo konstanta)"
-#: builders/manpage.py:37
+#: domains/javascript.py:190 domains/python/__init__.py:370
#, python-format
-msgid "The manual pages are in %(outdir)s."
-msgstr ""
+msgid "%s (%s attribute)"
+msgstr "%s (atribut %s)"
-#: builders/manpage.py:45
-msgid "no \"man_pages\" config value found; no manual pages will be written"
-msgstr ""
+#: domains/javascript.py:274
+msgid "Arguments"
+msgstr "Argumenty"
-#: builders/latex/__init__.py:347 builders/manpage.py:54
-#: builders/singlehtml.py:176 builders/texinfo.py:119
-msgid "writing"
-msgstr ""
+#: domains/cpp/__init__.py:491 domains/javascript.py:281
+msgid "Throws"
+msgstr "Vyvolá"
-#: builders/manpage.py:71
-#, python-format
-msgid "\"man_pages\" config value references unknown document %s"
-msgstr ""
+#: domains/c/__init__.py:367 domains/cpp/__init__.py:504
+#: domains/javascript.py:288 domains/python/_object.py:221
+msgid "Returns"
+msgstr "Vrací"
-#: builders/__init__.py:224
-#, python-format
-msgid "a suitable image for %s builder not found: %s (%s)"
-msgstr ""
+#: domains/c/__init__.py:373 domains/javascript.py:294
+#: domains/python/_object.py:227
+msgid "Return type"
+msgstr "Typ návratové hodnoty"
-#: builders/__init__.py:232
+#: domains/javascript.py:374
#, python-format
-msgid "a suitable image for %s builder not found: %s"
-msgstr ""
+msgid "%s (module)"
+msgstr "%s (modul)"
-#: builders/__init__.py:255
-msgid "building [mo]: "
-msgstr ""
+#: domains/c/__init__.py:779 domains/cpp/__init__.py:943
+#: domains/javascript.py:419 domains/python/__init__.py:726
+msgid "function"
+msgstr "funkce"
-#: builders/__init__.py:258 builders/__init__.py:759 builders/__init__.py:791
-msgid "writing output... "
-msgstr ""
+#: domains/javascript.py:420 domains/python/__init__.py:730
+msgid "method"
+msgstr "metoda"
+
+#: domains/cpp/__init__.py:941 domains/javascript.py:421
+#: domains/python/__init__.py:728
+msgid "class"
+msgstr "třída"
+
+#: domains/javascript.py:422 domains/python/__init__.py:727
+msgid "data"
+msgstr "data"
+
+#: domains/javascript.py:423 domains/python/__init__.py:733
+msgid "attribute"
+msgstr "atribut"
-#: builders/__init__.py:275
+#: domains/javascript.py:424 domains/python/__init__.py:736
+msgid "module"
+msgstr "modul"
+
+#: domains/javascript.py:458
#, python-format
-msgid "all of %d po files"
+msgid "duplicate %s description of %s, other %s in %s"
msgstr ""
-#: builders/__init__.py:297
+#: domains/rst.py:131 domains/rst.py:190
#, python-format
-msgid "targets for %d po files that are specified"
-msgstr ""
+msgid "%s (directive)"
+msgstr "%s (direktiva)"
-#: builders/__init__.py:309
+#: domains/rst.py:191 domains/rst.py:202
#, python-format
-msgid "targets for %d po files that are out of date"
+msgid ":%s: (directive option)"
msgstr ""
-#: builders/__init__.py:319
-msgid "all source files"
+#: domains/rst.py:224
+#, python-format
+msgid "%s (role)"
+msgstr "%s (role)"
+
+#: domains/rst.py:234
+msgid "directive"
+msgstr "direktiva"
+
+#: domains/rst.py:235
+msgid "directive-option"
msgstr ""
-#: builders/__init__.py:330
+#: domains/rst.py:236
+msgid "role"
+msgstr "role"
+
+#: domains/rst.py:262
#, python-format
-msgid "file %r given on command line does not exist, "
+msgid "duplicate description of %s %s, other instance in %s"
msgstr ""
-#: builders/__init__.py:337
+#: domains/changeset.py:32
#, python-format
-msgid ""
-"file %r given on command line is not under the source directory, ignoring"
+msgid "Added in version %s"
msgstr ""
-#: builders/__init__.py:348
+#: domains/changeset.py:33
#, python-format
-msgid "file %r given on command line is not a valid document, ignoring"
-msgstr ""
+msgid "Changed in version %s"
+msgstr "Změněno ve verzi %s"
-#: builders/__init__.py:361
+#: domains/changeset.py:34
#, python-format
-msgid "%d source files given on command line"
-msgstr ""
+msgid "Deprecated since version %s"
+msgstr "Zastaralé od verze %s"
-#: builders/__init__.py:377
+#: domains/changeset.py:35
#, python-format
-msgid "targets for %d source files that are out of date"
+msgid "Removed in version %s"
msgstr ""
-#: builders/__init__.py:395 builders/gettext.py:265
+#: domains/__init__.py:322
#, python-format
-msgid "building [%s]: "
-msgstr ""
+msgid "%s %s"
+msgstr "%s %s"
-#: builders/__init__.py:406
-msgid "looking for now-outdated files... "
+#: cmd/build.py:64
+msgid "job number should be a positive number"
msgstr ""
-#: builders/__init__.py:410
-#, python-format
-msgid "%d found"
+#: cmd/build.py:73 cmd/quickstart.py:582 ext/apidoc/_cli.py:27
+#: ext/autosummary/generate.py:876
+msgid "For more information, visit ."
msgstr ""
-#: builders/__init__.py:412
-msgid "none found"
+#: cmd/build.py:74
+msgid ""
+"\n"
+"Generate documentation from source files.\n"
+"\n"
+"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
+"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
+"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
+"including 'conf.py'\n"
+"\n"
+"sphinx-build can create documentation in different formats. A format is\n"
+"selected by specifying the builder name on the command line; it defaults to\n"
+"HTML. Builders can also perform other tasks related to documentation\n"
+"processing.\n"
+"\n"
+"By default, everything that is outdated is built. Output only for selected\n"
+"files can be built by specifying individual filenames.\n"
msgstr ""
-#: builders/__init__.py:419
-msgid "pickling environment"
+#: cmd/build.py:100
+msgid "path to documentation source files"
msgstr ""
-#: builders/__init__.py:426
-msgid "checking consistency"
+#: cmd/build.py:103
+msgid "path to output directory"
msgstr ""
-#: builders/__init__.py:430
-msgid "no targets are out of date."
+#: cmd/build.py:109
+msgid ""
+"(optional) a list of specific files to rebuild. Ignored if --write-all is "
+"specified"
msgstr ""
-#: builders/__init__.py:469
-msgid "updating environment: "
+#: cmd/build.py:114
+msgid "general options"
msgstr ""
-#: builders/__init__.py:494
-#, python-format
-msgid "%s added, %s changed, %s removed"
+#: cmd/build.py:121
+msgid "builder to use (default: 'html')"
msgstr ""
-#: builders/__init__.py:531
-#, python-format
+#: cmd/build.py:131
msgid ""
-"Sphinx is unable to load the master document (%s) because it matches a "
-"built-in exclude pattern %r. Please move your master document to a different"
-" location."
+"run in parallel with N processes, when possible. 'auto' uses the number of "
+"CPU cores"
msgstr ""
-#: builders/__init__.py:540
-#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches an "
-"exclude pattern specified in conf.py, %r. Please remove this pattern from "
-"conf.py."
+#: cmd/build.py:140
+msgid "write all files (default: only write new and changed files)"
msgstr ""
-#: builders/__init__.py:551
-#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it is not included"
-" in the custom include_patterns = %r. Ensure that a pattern in "
-"include_patterns matches the master document."
+#: cmd/build.py:147
+msgid "don't use a saved environment, always read all files"
msgstr ""
-#: builders/__init__.py:558
-#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s). The master document must "
-"be within the source directory or a subdirectory of it."
+#: cmd/build.py:150
+msgid "path options"
msgstr ""
-#: builders/__init__.py:576 builders/__init__.py:592
-msgid "reading sources... "
+#: cmd/build.py:157
+msgid ""
+"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
msgstr ""
-#: builders/__init__.py:713
-#, python-format
-msgid "docnames to write: %s"
+#: cmd/build.py:166
+msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
msgstr ""
-#: builders/__init__.py:715
-msgid "no docnames to write!"
+#: cmd/build.py:175
+msgid "use no configuration file, only use settings from -D options"
msgstr ""
-#: builders/__init__.py:728
-msgid "preparing documents"
+#: cmd/build.py:184
+msgid "override a setting in configuration file"
msgstr ""
-#: builders/__init__.py:731
-msgid "copying assets"
+#: cmd/build.py:193
+msgid "pass a value into HTML templates"
msgstr ""
-#: builders/__init__.py:883
-#, python-format
-msgid "undecodable source characters, replacing with \"?\": %r"
+#: cmd/build.py:202
+msgid "define tag: include \"only\" blocks with TAG"
msgstr ""
-#: builders/epub3.py:84
-#, python-format
-msgid "The ePub file is in %(outdir)s."
+#: cmd/build.py:209
+msgid "nitpicky mode: warn about all missing references"
msgstr ""
-#: builders/epub3.py:189
-msgid "writing nav.xhtml file..."
+#: cmd/build.py:212
+msgid "console output options"
msgstr ""
-#: builders/epub3.py:221
-msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
+#: cmd/build.py:219
+msgid "increase verbosity (can be repeated)"
msgstr ""
-#: builders/epub3.py:227
-msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
+#: cmd/build.py:226 ext/apidoc/_cli.py:66
+msgid "no output on stdout, just warnings on stderr"
msgstr ""
-#: builders/epub3.py:232
-msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
+#: cmd/build.py:233
+msgid "no output at all, not even warnings"
msgstr ""
-#: builders/epub3.py:238
-msgid "conf value \"epub_author\" should not be empty for EPUB3"
+#: cmd/build.py:241
+msgid "do emit colored output (default: auto-detect)"
msgstr ""
-#: builders/epub3.py:242
-msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
+#: cmd/build.py:249
+msgid "do not emit colored output (default: auto-detect)"
msgstr ""
-#: builders/epub3.py:247
-msgid "conf value \"epub_description\" should not be empty for EPUB3"
+#: cmd/build.py:252
+msgid "warning control options"
msgstr ""
-#: builders/epub3.py:251
-msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+#: cmd/build.py:258
+msgid "write warnings (and errors) to given file"
msgstr ""
-#: builders/epub3.py:256
-msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+#: cmd/build.py:265
+msgid "turn warnings into errors"
msgstr ""
-#: builders/epub3.py:262
-msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+#: cmd/build.py:273
+msgid "show full traceback on exception"
msgstr ""
-#: builders/epub3.py:265
-msgid "conf value \"version\" should not be empty for EPUB3"
+#: cmd/build.py:276
+msgid "run Pdb on exception"
msgstr ""
-#: builders/epub3.py:279 builders/html/__init__.py:1291
-#, python-format
-msgid "invalid css_file: %r, ignored"
+#: cmd/build.py:282
+msgid "raise an exception on warnings"
msgstr ""
-#: builders/xml.py:31
-#, python-format
-msgid "The XML files are in %(outdir)s."
+#: cmd/build.py:325
+msgid "cannot combine -a option and filenames"
msgstr ""
-#: builders/html/__init__.py:1241 builders/text.py:76 builders/xml.py:90
+#: cmd/build.py:357
#, python-format
-msgid "error writing file %s: %s"
+msgid "cannot open warning file '%s': %s"
msgstr ""
-#: builders/xml.py:101
-#, python-format
-msgid "The pseudo-XML files are in %(outdir)s."
+#: cmd/build.py:376
+msgid "-D option argument must be in the form name=value"
msgstr ""
-#: builders/texinfo.py:45
-#, python-format
-msgid "The Texinfo files are in %(outdir)s."
+#: cmd/build.py:383
+msgid "-A option argument must be in the form name=value"
msgstr ""
-#: builders/texinfo.py:48
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through makeinfo\n"
-"(use 'make info' here to do that automatically)."
+#: cmd/quickstart.py:52
+msgid "automatically insert docstrings from modules"
msgstr ""
-#: builders/texinfo.py:77
-msgid "no \"texinfo_documents\" config value found; no documents will be written"
+#: cmd/quickstart.py:53
+msgid "automatically test code snippets in doctest blocks"
msgstr ""
-#: builders/texinfo.py:89
-#, python-format
-msgid "\"texinfo_documents\" config value references unknown document %s"
+#: cmd/quickstart.py:54
+msgid "link between Sphinx documentation of different projects"
msgstr ""
-#: builders/latex/__init__.py:325 builders/texinfo.py:113
-#, python-format
-msgid "processing %s"
+#: cmd/quickstart.py:55
+msgid "write \"todo\" entries that can be shown or hidden on build"
msgstr ""
-#: builders/latex/__init__.py:405 builders/texinfo.py:172
-msgid "resolving references..."
+#: cmd/quickstart.py:56
+msgid "checks for documentation coverage"
msgstr ""
-#: builders/latex/__init__.py:416 builders/texinfo.py:182
-msgid " (in "
-msgstr " (v "
+#: cmd/quickstart.py:57
+msgid "include math, rendered as PNG or SVG images"
+msgstr ""
-#: builders/_epub_base.py:422 builders/html/__init__.py:779
-#: builders/latex/__init__.py:481 builders/texinfo.py:198
-msgid "copying images... "
+#: cmd/quickstart.py:58
+msgid "include math, rendered in the browser by MathJax"
msgstr ""
-#: builders/_epub_base.py:444 builders/latex/__init__.py:496
-#: builders/texinfo.py:215
-#, python-format
-msgid "cannot copy image file %r: %s"
+#: cmd/quickstart.py:59
+msgid "conditional inclusion of content based on config values"
msgstr ""
-#: builders/texinfo.py:222
-msgid "copying Texinfo support files"
+#: cmd/quickstart.py:60
+msgid "include links to the source code of documented Python objects"
msgstr ""
-#: builders/texinfo.py:230
-#, python-format
-msgid "error writing file Makefile: %s"
+#: cmd/quickstart.py:61
+msgid "create .nojekyll file to publish the document on GitHub pages"
msgstr ""
-#: builders/_epub_base.py:223
-#, python-format
-msgid "duplicated ToC entry found: %s"
+#: cmd/quickstart.py:111
+msgid "Please enter a valid path name."
msgstr ""
-#: builders/_epub_base.py:433
-#, python-format
-msgid "cannot read image file %r: copying it instead"
+#: cmd/quickstart.py:127
+msgid "Please enter some text."
msgstr ""
-#: builders/_epub_base.py:464
+#: cmd/quickstart.py:134
#, python-format
-msgid "cannot write image file %r: %s"
+msgid "Please enter one of %s."
msgstr ""
-#: builders/_epub_base.py:476
-msgid "Pillow not found - copying image files"
+#: cmd/quickstart.py:142
+msgid "Please enter either 'y' or 'n'."
msgstr ""
-#: builders/_epub_base.py:511
-msgid "writing mimetype file..."
+#: cmd/quickstart.py:148
+msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
msgstr ""
-#: builders/_epub_base.py:520
-msgid "writing META-INF/container.xml file..."
+#: cmd/quickstart.py:230
+#, python-format
+msgid "Welcome to the Sphinx %s quickstart utility."
msgstr ""
-#: builders/_epub_base.py:558
-msgid "writing content.opf file..."
+#: cmd/quickstart.py:235
+msgid ""
+"Please enter values for the following settings (just press Enter to\n"
+"accept a default value, if one is given in brackets)."
msgstr ""
-#: builders/_epub_base.py:591
+#: cmd/quickstart.py:242
#, python-format
-msgid "unknown mimetype for %s, ignoring"
-msgstr ""
-
-#: builders/_epub_base.py:745
-msgid "node has an invalid level"
+msgid "Selected root path: %s"
msgstr ""
-#: builders/_epub_base.py:765
-msgid "writing toc.ncx file..."
+#: cmd/quickstart.py:245
+msgid "Enter the root path for documentation."
msgstr ""
-#: builders/_epub_base.py:794
-#, python-format
-msgid "writing %s file..."
+#: cmd/quickstart.py:246
+msgid "Root path for the documentation"
msgstr ""
-#: builders/dummy.py:19
-msgid "The dummy builder generates no files."
+#: cmd/quickstart.py:255
+msgid "Error: an existing conf.py has been found in the selected root path."
msgstr ""
-#: builders/gettext.py:244
-#, python-format
-msgid "The message catalogs are in %(outdir)s."
+#: cmd/quickstart.py:260
+msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
msgstr ""
-#: builders/gettext.py:266
-#, python-format
-msgid "targets for %d template files"
+#: cmd/quickstart.py:263
+msgid "Please enter a new root path (or just Enter to exit)"
msgstr ""
-#: builders/gettext.py:271
-msgid "reading templates... "
+#: cmd/quickstart.py:274
+msgid ""
+"You have two options for placing the build directory for Sphinx output.\n"
+"Either, you use a directory \"_build\" within the root path, or you separate\n"
+"\"source\" and \"build\" directories within the root path."
msgstr ""
-#: builders/gettext.py:307
-msgid "writing message catalogs... "
+#: cmd/quickstart.py:280
+msgid "Separate source and build directories (y/n)"
msgstr ""
-#: builders/singlehtml.py:35
-#, python-format
-msgid "The HTML page is in %(outdir)s."
+#: cmd/quickstart.py:287
+msgid ""
+"Inside the root directory, two more directories will be created; \"_templates\"\n"
+"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
+"files. You can enter another prefix (such as \".\") to replace the underscore."
msgstr ""
-#: builders/singlehtml.py:171
-msgid "assembling single document"
+#: cmd/quickstart.py:292
+msgid "Name prefix for templates and static dir"
msgstr ""
-#: builders/singlehtml.py:189
-msgid "writing additional files"
+#: cmd/quickstart.py:298
+msgid ""
+"The project name will occur in several places in the built documentation."
msgstr ""
-#: builders/linkcheck.py:77
-#, python-format
-msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
+#: cmd/quickstart.py:301
+msgid "Project name"
msgstr ""
-#: builders/linkcheck.py:149
-#, python-format
-msgid "broken link: %s (%s)"
+#: cmd/quickstart.py:303
+msgid "Author name(s)"
msgstr ""
-#: builders/linkcheck.py:548
-#, python-format
-msgid "Anchor '%s' not found"
+#: cmd/quickstart.py:309
+msgid ""
+"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
+"software. Each version can have multiple releases. For example, for\n"
+"Python the version is something like 2.5 or 3.0, while the release is\n"
+"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
+"just set both to the same value."
msgstr ""
-#: builders/linkcheck.py:758
-#, python-format
-msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
+#: cmd/quickstart.py:316
+msgid "Project version"
msgstr ""
-#: builders/text.py:29
-#, python-format
-msgid "The text files are in %(outdir)s."
+#: cmd/quickstart.py:318
+msgid "Project release"
msgstr ""
-#: transforms/i18n.py:227 transforms/i18n.py:302
-#, python-brace-format
+#: cmd/quickstart.py:324
msgid ""
-"inconsistent footnote references in translated message. original: {0}, "
-"translated: {1}"
+"If the documents are to be written in a language other than English,\n"
+"you can select a language here by its language code. Sphinx will then\n"
+"translate text that it generates into that language.\n"
+"\n"
+"For a list of supported codes, see\n"
+"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
msgstr ""
-#: transforms/i18n.py:272
-#, python-brace-format
-msgid ""
-"inconsistent references in translated message. original: {0}, translated: "
-"{1}"
+#: cmd/quickstart.py:332
+msgid "Project language"
msgstr ""
-#: transforms/i18n.py:322
-#, python-brace-format
+#: cmd/quickstart.py:340
msgid ""
-"inconsistent citation references in translated message. original: {0}, "
-"translated: {1}"
+"The file name suffix for source files. Commonly, this is either \".txt\"\n"
+"or \".rst\". Only files with this suffix are considered documents."
msgstr ""
-#: transforms/i18n.py:344
-#, python-brace-format
-msgid ""
-"inconsistent term references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:344
+msgid "Source file suffix"
msgstr ""
-#: builders/html/__init__.py:486 builders/latex/__init__.py:199
-#: transforms/__init__.py:129 writers/manpage.py:98 writers/texinfo.py:220
-#, python-format
-msgid "%b %d, %Y"
-msgstr "%d.%m.%Y"
-
-#: transforms/__init__.py:139
-msgid "could not calculate translation progress!"
+#: cmd/quickstart.py:350
+msgid ""
+"One document is special in that it is considered the top node of the\n"
+"\"contents tree\", that is, it is the root of the hierarchical structure\n"
+"of the documents. Normally, this is \"index\", but if your \"index\"\n"
+"document is a custom template, you can also set this to another filename."
msgstr ""
-#: transforms/__init__.py:144
-msgid "no translated elements!"
+#: cmd/quickstart.py:357
+msgid "Name of your master document (without suffix)"
msgstr ""
-#: transforms/__init__.py:253
+#: cmd/quickstart.py:368
#, python-format
msgid ""
-"4 column based index found. It might be a bug of extensions you use: %r"
+"Error: the master file %s has already been found in the selected root path."
msgstr ""
-#: transforms/__init__.py:294
-#, python-format
-msgid "Footnote [%s] is not referenced."
+#: cmd/quickstart.py:374
+msgid "sphinx-quickstart will not overwrite the existing file."
msgstr ""
-#: transforms/__init__.py:303
-msgid "Footnote [*] is not referenced."
+#: cmd/quickstart.py:378
+msgid ""
+"Please enter a new file name, or rename the existing file and press Enter"
msgstr ""
-#: transforms/__init__.py:314
-msgid "Footnote [#] is not referenced."
+#: cmd/quickstart.py:386
+msgid "Indicate which of the following Sphinx extensions should be enabled:"
msgstr ""
-#: _cli/__init__.py:73
-msgid "Usage:"
+#: cmd/quickstart.py:397
+msgid ""
+"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
+"been deselected."
msgstr ""
-#: _cli/__init__.py:75
-#, python-brace-format
-msgid "{0} [OPTIONS] []"
+#: cmd/quickstart.py:407
+msgid ""
+"A Makefile and a Windows command file can be generated for you so that you\n"
+"only have to run e.g. `make html' instead of invoking sphinx-build\n"
+"directly."
msgstr ""
-#: _cli/__init__.py:78
-msgid " The Sphinx documentation generator."
+#: cmd/quickstart.py:412
+msgid "Create Makefile? (y/n)"
msgstr ""
-#: _cli/__init__.py:87
-msgid "Commands:"
+#: cmd/quickstart.py:416
+msgid "Create Windows command file? (y/n)"
msgstr ""
-#: _cli/__init__.py:98
-msgid "Options"
-msgstr ""
-
-#: _cli/__init__.py:113 _cli/__init__.py:181
-msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
-msgstr ""
-
-#: _cli/__init__.py:171
-#, python-brace-format
-msgid ""
-"{0}: error: {1}\n"
-"Run '{0} --help' for information"
-msgstr ""
-
-#: _cli/__init__.py:179
-msgid " Manage documentation with Sphinx."
-msgstr ""
-
-#: _cli/__init__.py:191
-msgid "Show the version and exit."
-msgstr ""
-
-#: _cli/__init__.py:199
-msgid "Show this message and exit."
-msgstr ""
-
-#: _cli/__init__.py:203
-msgid "Logging"
-msgstr ""
-
-#: _cli/__init__.py:210
-msgid "Increase verbosity (can be repeated)"
-msgstr ""
-
-#: _cli/__init__.py:218
-msgid "Only print errors and warnings."
-msgstr ""
-
-#: _cli/__init__.py:225
-msgid "No output at all"
-msgstr ""
-
-#: _cli/__init__.py:231
-msgid ""
-msgstr ""
-
-#: _cli/__init__.py:263
-msgid "See 'sphinx --help'.\n"
-msgstr ""
-
-#: environment/__init__.py:86
-msgid "new config"
-msgstr ""
-
-#: environment/__init__.py:87
-msgid "config changed"
-msgstr ""
-
-#: environment/__init__.py:88
-msgid "extensions changed"
-msgstr ""
-
-#: environment/__init__.py:253
-msgid "build environment version not current"
-msgstr ""
-
-#: environment/__init__.py:255
-msgid "source directory has changed"
-msgstr ""
-
-#: environment/__init__.py:325
-#, python-format
-msgid "The configuration has changed (1 option: %r)"
-msgstr ""
-
-#: environment/__init__.py:330
-#, python-format
-msgid "The configuration has changed (%d options: %s)"
-msgstr ""
-
-#: environment/__init__.py:336
-#, python-format
-msgid "The configuration has changed (%d options: %s, ...)"
-msgstr ""
-
-#: environment/__init__.py:379
-msgid ""
-"This environment is incompatible with the selected builder, please choose "
-"another doctree directory."
-msgstr ""
-
-#: environment/__init__.py:493
-#, python-format
-msgid "Failed to scan documents in %s: %r"
-msgstr ""
-
-#: environment/__init__.py:658 ext/intersphinx/_resolve.py:234
-#, python-format
-msgid "Domain %r is not registered"
-msgstr ""
-
-#: environment/__init__.py:813
-msgid "document isn't included in any toctree"
-msgstr ""
-
-#: environment/__init__.py:859
-msgid "self referenced toctree found. Ignored."
-msgstr ""
-
-#: environment/__init__.py:889
-#, python-format
-msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
-msgstr ""
-
-#: util/i18n.py:100
-#, python-format
-msgid "reading error: %s, %s"
-msgstr ""
-
-#: util/i18n.py:113
-#, python-format
-msgid "writing error: %s, %s"
-msgstr ""
-
-#: util/i18n.py:146
+#: cmd/quickstart.py:468 ext/apidoc/_generate.py:76
#, python-format
-msgid "locale_dir %s does not exist"
-msgstr ""
-
-#: util/i18n.py:236
-#, python-format
-msgid "Invalid Babel locale: %r."
+msgid "Creating file %s."
msgstr ""
-#: util/i18n.py:245
+#: cmd/quickstart.py:473 ext/apidoc/_generate.py:73
#, python-format
-msgid ""
-"Invalid date format. Quote the string by single quote if you want to output "
-"it directly: %s"
+msgid "File %s already exists, skipping."
msgstr ""
-#: util/docfields.py:103
-#, python-format
-msgid ""
-"Problem in %s domain: field is supposed to use role '%s', but that role is "
-"not in the domain."
+#: cmd/quickstart.py:516
+msgid "Finished: An initial directory structure has been created."
msgstr ""
-#: util/nodes.py:423
+#: cmd/quickstart.py:520
#, python-format
msgid ""
-"%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead."
-msgstr ""
-
-#: util/nodes.py:490
-#, python-format
-msgid "toctree contains ref to nonexisting file %r"
-msgstr ""
-
-#: util/nodes.py:706
-#, python-format
-msgid "exception while evaluating only directive expression: %s"
-msgstr ""
-
-#: util/display.py:82
-msgid "skipped"
-msgstr ""
-
-#: util/display.py:87
-msgid "failed"
+"You should now populate your master file %s and create other documentation\n"
+"source files. "
msgstr ""
-#: util/osutil.py:131
-#, python-format
+#: cmd/quickstart.py:527
msgid ""
-"Aborted attempted copy from %s to %s (the destination path has existing "
-"data)."
-msgstr ""
-
-#: util/docutils.py:309
-#, python-format
-msgid "unknown directive name: %s"
-msgstr ""
-
-#: util/docutils.py:345
-#, python-format
-msgid "unknown role name: %s"
-msgstr ""
-
-#: util/docutils.py:789
-#, python-format
-msgid "unknown node type: %r"
+"Use the Makefile to build the docs, like so:\n"
+" make builder"
msgstr ""
-#: util/fileutil.py:76
+#: cmd/quickstart.py:531
#, python-format
msgid ""
-"Aborted attempted copy from rendered template %s to %s (the destination path"
-" has existing data)."
-msgstr ""
-
-#: util/fileutil.py:89
-#, python-format
-msgid "Writing evaluated template result to %s"
-msgstr ""
-
-#: util/rst.py:73
-#, python-format
-msgid "default role %s not found"
-msgstr ""
-
-#: util/inventory.py:147
-#, python-format
-msgid "inventory <%s> contains duplicate definitions of %s"
-msgstr ""
-
-#: util/inventory.py:166
-#, python-format
-msgid "inventory <%s> contains multiple definitions for %s"
+"Use the sphinx-build command to build the docs, like so:\n"
+" sphinx-build -b builder %s %s"
msgstr ""
-#: writers/latex.py:1097 writers/manpage.py:259 writers/texinfo.py:663
-msgid "Footnotes"
-msgstr "Poznámky pod čarou"
-
-#: writers/manpage.py:289 writers/text.py:945
-#, python-format
-msgid "[image: %s]"
-msgstr "[obrázek: %s]"
-
-#: writers/manpage.py:290 writers/text.py:946
-msgid "[image]"
-msgstr "[obrázek]"
-
-#: builders/latex/__init__.py:206 domains/std/__init__.py:771
-#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:106
-#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
-#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
-#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
-#: themes/basic/genindex.html:59 themes/basic/layout.html:127
-#: writers/texinfo.py:514
-msgid "Index"
-msgstr "Rejstřík"
-
-#: writers/latex.py:743 writers/texinfo.py:646
+#: cmd/quickstart.py:538
msgid ""
-"encountered title node not in section, topic, table, admonition or sidebar"
-msgstr ""
-
-#: writers/texinfo.py:1217
-msgid "caption not inside a figure."
-msgstr ""
-
-#: writers/texinfo.py:1303
-#, python-format
-msgid "unimplemented node type: %r"
-msgstr ""
-
-#: writers/latex.py:361
-#, python-format
-msgid "unknown %r toplevel_sectioning for class %r"
-msgstr ""
-
-#: builders/latex/__init__.py:224 writers/latex.py:411
-#, python-format
-msgid "no Babel option known for language %r"
-msgstr ""
-
-#: writers/latex.py:429
-msgid "too large :maxdepth:, ignored."
-msgstr ""
-
-#: writers/latex.py:591
-#, python-format
-msgid "template %s not found; loading from legacy %s instead"
-msgstr ""
-
-#: writers/latex.py:707
-msgid "document title is not a single Text node"
-msgstr ""
-
-#: writers/html5.py:572 writers/latex.py:1106
-#, python-format
-msgid "unsupported rubric heading level: %s"
+"where \"builder\" is one of the supported builders, e.g. html, latex or "
+"linkcheck."
msgstr ""
-#: writers/latex.py:1183
+#: cmd/quickstart.py:573
msgid ""
-"both tabularcolumns and :widths: option are given. :widths: is ignored."
-msgstr ""
-
-#: writers/latex.py:1580
-#, python-format
-msgid "dimension unit %s is invalid. Ignored."
-msgstr ""
-
-#: writers/latex.py:1939
-#, python-format
-msgid "unknown index entry type %s found"
-msgstr ""
-
-#: domains/math.py:128 writers/latex.py:2495
-#, python-format
-msgid "Invalid math_eqref_format: %r"
-msgstr ""
-
-#: writers/html5.py:96 writers/html5.py:105
-msgid "Link to this definition"
-msgstr ""
-
-#: writers/html5.py:431
-#, python-format
-msgid "numfig_format is not defined for %s"
-msgstr ""
-
-#: writers/html5.py:441
-#, python-format
-msgid "Any IDs not assigned for %s node"
-msgstr ""
-
-#: writers/html5.py:496
-msgid "Link to this term"
-msgstr ""
-
-#: writers/html5.py:548 writers/html5.py:553
-msgid "Link to this heading"
-msgstr ""
-
-#: writers/html5.py:558
-msgid "Link to this table"
-msgstr ""
-
-#: writers/html5.py:636
-msgid "Link to this code"
-msgstr ""
-
-#: writers/html5.py:638
-msgid "Link to this image"
-msgstr ""
-
-#: writers/html5.py:640
-msgid "Link to this toctree"
-msgstr ""
-
-#: writers/html5.py:766
-msgid "Could not obtain image size. :scale: option is ignored."
-msgstr ""
-
-#: domains/__init__.py:322
-#, python-format
-msgid "%s %s"
-msgstr "%s %s"
-
-#: domains/math.py:73
-#, python-format
-msgid "duplicate label of equation %s, other instance in %s"
-msgstr ""
-
-#: domains/javascript.py:182
-#, python-format
-msgid "%s() (built-in function)"
-msgstr "%s() (vestavěná funkce)"
-
-#: domains/javascript.py:183 domains/python/__init__.py:287
-#, python-format
-msgid "%s() (%s method)"
-msgstr "%s() (metoda %s)"
-
-#: domains/javascript.py:185
-#, python-format
-msgid "%s() (class)"
-msgstr "%s() (třída)"
-
-#: domains/javascript.py:187
-#, python-format
-msgid "%s (global variable or constant)"
-msgstr "%s (globální proměnná nebo konstanta)"
-
-#: domains/javascript.py:189 domains/python/__init__.py:378
-#, python-format
-msgid "%s (%s attribute)"
-msgstr "%s (atribut %s)"
-
-#: domains/javascript.py:273
-msgid "Arguments"
-msgstr "Argumenty"
-
-#: domains/cpp/__init__.py:489 domains/javascript.py:280
-msgid "Throws"
-msgstr "Vyvolá"
-
-#: domains/c/__init__.py:339 domains/cpp/__init__.py:502
-#: domains/javascript.py:287 domains/python/_object.py:221
-msgid "Returns"
-msgstr "Vrací"
-
-#: domains/c/__init__.py:345 domains/javascript.py:293
-#: domains/python/_object.py:227
-msgid "Return type"
-msgstr "Typ návratové hodnoty"
-
-#: domains/javascript.py:370
-#, python-format
-msgid "%s (module)"
-msgstr "%s (modul)"
-
-#: domains/c/__init__.py:751 domains/cpp/__init__.py:941
-#: domains/javascript.py:415 domains/python/__init__.py:740
-msgid "function"
-msgstr "funkce"
-
-#: domains/javascript.py:416 domains/python/__init__.py:744
-msgid "method"
-msgstr "metoda"
-
-#: domains/cpp/__init__.py:939 domains/javascript.py:417
-#: domains/python/__init__.py:742
-msgid "class"
-msgstr "třída"
-
-#: domains/javascript.py:418 domains/python/__init__.py:741
-msgid "data"
-msgstr "data"
-
-#: domains/javascript.py:419 domains/python/__init__.py:747
-msgid "attribute"
-msgstr "atribut"
-
-#: domains/javascript.py:420 domains/python/__init__.py:750
-msgid "module"
-msgstr "modul"
-
-#: domains/javascript.py:454
-#, python-format
-msgid "duplicate %s description of %s, other %s in %s"
-msgstr ""
-
-#: domains/changeset.py:26
-#, python-format
-msgid "Added in version %s"
+"\n"
+"Generate required files for a Sphinx project.\n"
+"\n"
+"sphinx-quickstart is an interactive tool that asks some questions about your\n"
+"project and then generates a complete documentation directory and sample\n"
+"Makefile to be used with sphinx-build.\n"
msgstr ""
-#: domains/changeset.py:27
-#, python-format
-msgid "Changed in version %s"
-msgstr "Změněno ve verzi %s"
-
-#: domains/changeset.py:28
-#, python-format
-msgid "Deprecated since version %s"
-msgstr "Zastaralé od verze %s"
-
-#: domains/changeset.py:29
-#, python-format
-msgid "Removed in version %s"
+#: cmd/quickstart.py:592
+msgid "quiet mode"
msgstr ""
-#: domains/rst.py:131 domains/rst.py:190
-#, python-format
-msgid "%s (directive)"
-msgstr "%s (direktiva)"
-
-#: domains/rst.py:191 domains/rst.py:202
-#, python-format
-msgid ":%s: (directive option)"
+#: cmd/quickstart.py:602
+msgid "project root"
msgstr ""
-#: domains/rst.py:224
-#, python-format
-msgid "%s (role)"
-msgstr "%s (role)"
-
-#: domains/rst.py:234
-msgid "directive"
-msgstr "direktiva"
-
-#: domains/rst.py:235
-msgid "directive-option"
+#: cmd/quickstart.py:605
+msgid "Structure options"
msgstr ""
-#: domains/rst.py:236
-msgid "role"
-msgstr "role"
-
-#: domains/rst.py:262
-#, python-format
-msgid "duplicate description of %s %s, other instance in %s"
+#: cmd/quickstart.py:611
+msgid "if specified, separate source and build dirs"
msgstr ""
-#: domains/citation.py:75
-#, python-format
-msgid "duplicate citation %s, other instance in %s"
+#: cmd/quickstart.py:617
+msgid "if specified, create build dir under source dir"
msgstr ""
-#: domains/citation.py:92
-#, python-format
-msgid "Citation [%s] is not referenced."
+#: cmd/quickstart.py:623
+msgid "replacement for dot in _templates etc."
msgstr ""
-#: locale/__init__.py:228
-msgid "Attention"
-msgstr "Výstraha"
-
-#: locale/__init__.py:229
-msgid "Caution"
-msgstr "Upozornění"
-
-#: locale/__init__.py:230
-msgid "Danger"
-msgstr "Nebezpečí"
-
-#: locale/__init__.py:231
-msgid "Error"
-msgstr "Chyba"
+#: cmd/quickstart.py:626
+msgid "Project basic options"
+msgstr ""
-#: locale/__init__.py:232
-msgid "Hint"
-msgstr "Rada"
+#: cmd/quickstart.py:628
+msgid "project name"
+msgstr ""
-#: locale/__init__.py:233
-msgid "Important"
-msgstr "Důležité"
+#: cmd/quickstart.py:631
+msgid "author names"
+msgstr ""
-#: locale/__init__.py:234
-msgid "Note"
-msgstr "Poznámka"
+#: cmd/quickstart.py:638
+msgid "version of project"
+msgstr ""
-#: locale/__init__.py:235
-msgid "See also"
-msgstr "Viz také"
+#: cmd/quickstart.py:645
+msgid "release of project"
+msgstr ""
-#: locale/__init__.py:236
-msgid "Tip"
-msgstr "Tip"
+#: cmd/quickstart.py:652
+msgid "document language"
+msgstr ""
-#: locale/__init__.py:237
-msgid "Warning"
-msgstr "Varování"
+#: cmd/quickstart.py:655
+msgid "source file suffix"
+msgstr ""
-#: cmd/quickstart.py:52
-msgid "automatically insert docstrings from modules"
+#: cmd/quickstart.py:658
+msgid "master document name"
msgstr ""
-#: cmd/quickstart.py:53
-msgid "automatically test code snippets in doctest blocks"
+#: cmd/quickstart.py:661
+msgid "use epub"
msgstr ""
-#: cmd/quickstart.py:54
-msgid "link between Sphinx documentation of different projects"
+#: cmd/quickstart.py:664
+msgid "Extension options"
msgstr ""
-#: cmd/quickstart.py:55
-msgid "write \"todo\" entries that can be shown or hidden on build"
+#: cmd/quickstart.py:671
+#, python-format
+msgid "enable %s extension"
msgstr ""
-#: cmd/quickstart.py:56
-msgid "checks for documentation coverage"
+#: cmd/quickstart.py:678
+msgid "enable arbitrary extensions"
msgstr ""
-#: cmd/quickstart.py:57
-msgid "include math, rendered as PNG or SVG images"
+#: cmd/quickstart.py:681
+msgid "Makefile and Batchfile creation"
msgstr ""
-#: cmd/quickstart.py:58
-msgid "include math, rendered in the browser by MathJax"
+#: cmd/quickstart.py:687
+msgid "create makefile"
msgstr ""
-#: cmd/quickstart.py:59
-msgid "conditional inclusion of content based on config values"
+#: cmd/quickstart.py:693
+msgid "do not create makefile"
msgstr ""
-#: cmd/quickstart.py:60
-msgid "include links to the source code of documented Python objects"
+#: cmd/quickstart.py:700
+msgid "create batchfile"
msgstr ""
-#: cmd/quickstart.py:61
-msgid "create .nojekyll file to publish the document on GitHub pages"
+#: cmd/quickstart.py:706
+msgid "do not create batchfile"
msgstr ""
-#: cmd/quickstart.py:110
-msgid "Please enter a valid path name."
+#: cmd/quickstart.py:715
+msgid "use make-mode for Makefile/make.bat"
msgstr ""
-#: cmd/quickstart.py:126
-msgid "Please enter some text."
+#: cmd/quickstart.py:718 ext/apidoc/_cli.py:243
+msgid "Project templating"
msgstr ""
-#: cmd/quickstart.py:133
-#, python-format
-msgid "Please enter one of %s."
+#: cmd/quickstart.py:724 ext/apidoc/_cli.py:249
+msgid "template directory for template files"
msgstr ""
-#: cmd/quickstart.py:141
-msgid "Please enter either 'y' or 'n'."
+#: cmd/quickstart.py:731
+msgid "define a template variable"
msgstr ""
-#: cmd/quickstart.py:147
-msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
+#: cmd/quickstart.py:767
+msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
msgstr ""
-#: cmd/quickstart.py:229
-#, python-format
-msgid "Welcome to the Sphinx %s quickstart utility."
+#: cmd/quickstart.py:786
+msgid ""
+"Error: specified path is not a directory, or sphinx files already exist."
msgstr ""
-#: cmd/quickstart.py:234
+#: cmd/quickstart.py:793
msgid ""
-"Please enter values for the following settings (just press Enter to\n"
-"accept a default value, if one is given in brackets)."
+"sphinx-quickstart only generate into a empty directory. Please specify a new"
+" root path."
msgstr ""
-#: cmd/quickstart.py:241
+#: cmd/quickstart.py:810
#, python-format
-msgid "Selected root path: %s"
+msgid "Invalid template variable: %s"
msgstr ""
-#: cmd/quickstart.py:244
-msgid "Enter the root path for documentation."
+#: directives/other.py:119
+#, python-format
+msgid "toctree glob pattern %r didn't match any documents"
msgstr ""
-#: cmd/quickstart.py:245
-msgid "Root path for the documentation"
+#: directives/other.py:153 environment/adapters/toctree.py:372
+#, python-format
+msgid "toctree contains reference to excluded document %r"
msgstr ""
-#: cmd/quickstart.py:254
-msgid "Error: an existing conf.py has been found in the selected root path."
+#: directives/other.py:156
+#, python-format
+msgid "toctree contains reference to nonexisting document %r"
msgstr ""
-#: cmd/quickstart.py:259
-msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
+#: directives/other.py:169
+#, python-format
+msgid "duplicated entry found in toctree: %s"
msgstr ""
-#: cmd/quickstart.py:262
-msgid "Please enter a new root path (or just Enter to exit)"
-msgstr ""
+#: directives/other.py:203
+msgid "Section author: "
+msgstr "Autor sekce: "
-#: cmd/quickstart.py:273
-msgid ""
-"You have two options for placing the build directory for Sphinx output.\n"
-"Either, you use a directory \"_build\" within the root path, or you separate\n"
-"\"source\" and \"build\" directories within the root path."
+#: directives/other.py:205
+msgid "Module author: "
+msgstr "Autor modulu: "
+
+#: directives/other.py:207
+msgid "Code author: "
+msgstr "Autor kódu:"
+
+#: directives/other.py:209
+msgid "Author: "
+msgstr "Autor: "
+
+#: directives/other.py:269
+msgid ".. acks content is not a list"
msgstr ""
-#: cmd/quickstart.py:279
-msgid "Separate source and build directories (y/n)"
+#: directives/other.py:292
+msgid ".. hlist content is not a list"
msgstr ""
-#: cmd/quickstart.py:286
+#: directives/patches.py:70
msgid ""
-"Inside the root directory, two more directories will be created; \"_templates\"\n"
-"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
-"files. You can enter another prefix (such as \".\") to replace the underscore."
+"\":file:\" option for csv-table directive now recognizes an absolute path as"
+" a relative path from source directory. Please update your document."
msgstr ""
-#: cmd/quickstart.py:291
-msgid "Name prefix for templates and static dir"
+#: directives/code.py:66
+msgid "non-whitespace stripped by dedent"
msgstr ""
-#: cmd/quickstart.py:297
-msgid ""
-"The project name will occur in several places in the built documentation."
+#: directives/code.py:87
+#, python-format
+msgid "Invalid caption: %s"
msgstr ""
-#: cmd/quickstart.py:300
-msgid "Project name"
+#: directives/code.py:131 directives/code.py:297 directives/code.py:483
+#, python-format
+msgid "line number spec is out of range(1-%d): %r"
msgstr ""
-#: cmd/quickstart.py:302
-msgid "Author name(s)"
+#: directives/code.py:216
+#, python-format
+msgid "Cannot use both \"%s\" and \"%s\" options"
msgstr ""
-#: cmd/quickstart.py:308
-msgid ""
-"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
-"software. Each version can have multiple releases. For example, for\n"
-"Python the version is something like 2.5 or 3.0, while the release is\n"
-"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
-"just set both to the same value."
+#: directives/code.py:231
+#, python-format
+msgid "Include file '%s' not found or reading it failed"
msgstr ""
-#: cmd/quickstart.py:315
-msgid "Project version"
+#: directives/code.py:235
+#, python-format
+msgid ""
+"Encoding %r used for reading included file '%s' seems to be wrong, try "
+"giving an :encoding: option"
msgstr ""
-#: cmd/quickstart.py:317
-msgid "Project release"
+#: directives/code.py:276
+#, python-format
+msgid "Object named %r not found in include file %r"
msgstr ""
-#: cmd/quickstart.py:323
-msgid ""
-"If the documents are to be written in a language other than English,\n"
-"you can select a language here by its language code. Sphinx will then\n"
-"translate text that it generates into that language.\n"
-"\n"
-"For a list of supported codes, see\n"
-"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
+#: directives/code.py:309
+msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
msgstr ""
-#: cmd/quickstart.py:331
-msgid "Project language"
+#: directives/code.py:314
+#, python-format
+msgid "Line spec %r: no lines pulled from include file %r"
msgstr ""
-#: cmd/quickstart.py:339
+#: builders/html/__init__.py:475 builders/latex/__init__.py:196
+#: transforms/__init__.py:134 writers/manpage.py:97 writers/texinfo.py:220
+#, python-format
+msgid "%b %d, %Y"
+msgstr "%d.%m.%Y"
+
+#: builders/latex/__init__.py:203 domains/std/__init__.py:771
+#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:107
+#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
+#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
+#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
+#: themes/basic/genindex.html:59 themes/basic/layout.html:127
+#: writers/texinfo.py:514
+msgid "Index"
+msgstr "Rejstřík"
+
+#: writers/latex.py:768 writers/texinfo.py:646
msgid ""
-"The file name suffix for source files. Commonly, this is either \".txt\"\n"
-"or \".rst\". Only files with this suffix are considered documents."
+"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
-#: cmd/quickstart.py:343
-msgid "Source file suffix"
+#: writers/latex.py:1118 writers/manpage.py:258 writers/texinfo.py:663
+msgid "Footnotes"
+msgstr "Poznámky pod čarou"
+
+#: writers/texinfo.py:1217
+msgid "caption not inside a figure."
msgstr ""
-#: cmd/quickstart.py:349
-msgid ""
-"One document is special in that it is considered the top node of the\n"
-"\"contents tree\", that is, it is the root of the hierarchical structure\n"
-"of the documents. Normally, this is \"index\", but if your \"index\"\n"
-"document is a custom template, you can also set this to another filename."
+#: writers/texinfo.py:1303
+#, python-format
+msgid "unimplemented node type: %r"
msgstr ""
-#: cmd/quickstart.py:356
-msgid "Name of your master document (without suffix)"
+#: writers/manpage.py:288 writers/text.py:971
+#, python-format
+msgid "[image: %s]"
+msgstr "[obrázek: %s]"
+
+#: writers/manpage.py:289 writers/text.py:972
+msgid "[image]"
+msgstr "[obrázek]"
+
+#: writers/html5.py:96 writers/html5.py:105
+msgid "Link to this definition"
msgstr ""
-#: cmd/quickstart.py:367
+#: writers/html5.py:431
#, python-format
-msgid ""
-"Error: the master file %s has already been found in the selected root path."
+msgid "numfig_format is not defined for %s"
msgstr ""
-#: cmd/quickstart.py:373
-msgid "sphinx-quickstart will not overwrite the existing file."
+#: writers/html5.py:441
+#, python-format
+msgid "Any IDs not assigned for %s node"
msgstr ""
-#: cmd/quickstart.py:377
-msgid ""
-"Please enter a new file name, or rename the existing file and press Enter"
+#: writers/html5.py:496
+msgid "Link to this term"
msgstr ""
-#: cmd/quickstart.py:385
-msgid "Indicate which of the following Sphinx extensions should be enabled:"
+#: writers/html5.py:548 writers/html5.py:553
+msgid "Link to this heading"
msgstr ""
-#: cmd/quickstart.py:396
-msgid ""
-"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
-"been deselected."
+#: writers/html5.py:558
+msgid "Link to this table"
msgstr ""
-#: cmd/quickstart.py:406
-msgid ""
-"A Makefile and a Windows command file can be generated for you so that you\n"
-"only have to run e.g. `make html' instead of invoking sphinx-build\n"
-"directly."
+#: writers/html5.py:572 writers/latex.py:1127
+#, python-format
+msgid "unsupported rubric heading level: %s"
msgstr ""
-#: cmd/quickstart.py:411
-msgid "Create Makefile? (y/n)"
+#: writers/html5.py:636
+msgid "Link to this code"
+msgstr ""
+
+#: writers/html5.py:638
+msgid "Link to this image"
+msgstr ""
+
+#: writers/html5.py:640
+msgid "Link to this toctree"
msgstr ""
-#: cmd/quickstart.py:415
-msgid "Create Windows command file? (y/n)"
+#: writers/html5.py:766
+msgid "Could not obtain image size. :scale: option is ignored."
msgstr ""
-#: cmd/quickstart.py:467 ext/apidoc/_generate.py:76
+#: writers/latex.py:386
#, python-format
-msgid "Creating file %s."
+msgid "unknown %r toplevel_sectioning for class %r"
msgstr ""
-#: cmd/quickstart.py:472 ext/apidoc/_generate.py:73
+#: builders/latex/__init__.py:221 writers/latex.py:436
#, python-format
-msgid "File %s already exists, skipping."
+msgid "no Babel option known for language %r"
msgstr ""
-#: cmd/quickstart.py:515
-msgid "Finished: An initial directory structure has been created."
+#: writers/latex.py:454
+msgid "too large :maxdepth:, ignored."
msgstr ""
-#: cmd/quickstart.py:519
+#: writers/latex.py:616
#, python-format
-msgid ""
-"You should now populate your master file %s and create other documentation\n"
-"source files. "
+msgid "template %s not found; loading from legacy %s instead"
+msgstr ""
+
+#: writers/latex.py:732
+msgid "document title is not a single Text node"
msgstr ""
-#: cmd/quickstart.py:526
+#: writers/latex.py:1198
msgid ""
-"Use the Makefile to build the docs, like so:\n"
-" make builder"
+"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
-#: cmd/quickstart.py:530
+#: writers/latex.py:1228
#, python-format
msgid ""
-"Use the sphinx-build command to build the docs, like so:\n"
-" sphinx-build -b builder %s %s"
+"colspec %s was given which appears to use tabulary syntax. But this table "
+"can not be rendered as a tabulary; the given colspec will be ignored."
msgstr ""
-#: cmd/quickstart.py:537
-msgid ""
-"where \"builder\" is one of the supported builders, e.g. html, latex or "
-"linkcheck."
+#: writers/latex.py:1615
+#, python-format
+msgid "dimension unit %s is invalid. Ignored."
msgstr ""
-#: cmd/quickstart.py:572
-msgid ""
-"\n"
-"Generate required files for a Sphinx project.\n"
-"\n"
-"sphinx-quickstart is an interactive tool that asks some questions about your\n"
-"project and then generates a complete documentation directory and sample\n"
-"Makefile to be used with sphinx-build.\n"
+#: writers/latex.py:1950
+#, python-format
+msgid "unknown index entry type %s found"
msgstr ""
-#: cmd/build.py:73 cmd/quickstart.py:581 ext/apidoc/_cli.py:27
-#: ext/autosummary/generate.py:835
-msgid "For more information, visit ."
+#: _cli/__init__.py:73
+msgid "Usage:"
msgstr ""
-#: cmd/quickstart.py:591
-msgid "quiet mode"
+#: _cli/__init__.py:75
+#, python-brace-format
+msgid "{0} [OPTIONS] []"
msgstr ""
-#: cmd/quickstart.py:601
-msgid "project root"
+#: _cli/__init__.py:78
+msgid " The Sphinx documentation generator."
msgstr ""
-#: cmd/quickstart.py:604
-msgid "Structure options"
+#: _cli/__init__.py:87
+msgid "Commands:"
msgstr ""
-#: cmd/quickstart.py:610
-msgid "if specified, separate source and build dirs"
+#: _cli/__init__.py:98
+msgid "Options"
msgstr ""
-#: cmd/quickstart.py:616
-msgid "if specified, create build dir under source dir"
+#: _cli/__init__.py:113 _cli/__init__.py:181
+msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
msgstr ""
-#: cmd/quickstart.py:622
-msgid "replacement for dot in _templates etc."
+#: _cli/__init__.py:171
+#, python-brace-format
+msgid ""
+"{0}: error: {1}\n"
+"Run '{0} --help' for information"
msgstr ""
-#: cmd/quickstart.py:625
-msgid "Project basic options"
+#: _cli/__init__.py:179
+msgid " Manage documentation with Sphinx."
msgstr ""
-#: cmd/quickstart.py:627
-msgid "project name"
+#: _cli/__init__.py:191
+msgid "Show the version and exit."
msgstr ""
-#: cmd/quickstart.py:630
-msgid "author names"
+#: _cli/__init__.py:199
+msgid "Show this message and exit."
msgstr ""
-#: cmd/quickstart.py:637
-msgid "version of project"
+#: _cli/__init__.py:203
+msgid "Logging"
msgstr ""
-#: cmd/quickstart.py:644
-msgid "release of project"
+#: _cli/__init__.py:210
+msgid "Increase verbosity (can be repeated)"
msgstr ""
-#: cmd/quickstart.py:651
-msgid "document language"
+#: _cli/__init__.py:218
+msgid "Only print errors and warnings."
msgstr ""
-#: cmd/quickstart.py:654
-msgid "source file suffix"
+#: _cli/__init__.py:225
+msgid "No output at all"
msgstr ""
-#: cmd/quickstart.py:657
-msgid "master document name"
+#: _cli/__init__.py:231
+msgid ""
msgstr ""
-#: cmd/quickstart.py:660
-msgid "use epub"
+#: _cli/__init__.py:263
+msgid "See 'sphinx --help'.\n"
msgstr ""
-#: cmd/quickstart.py:663
-msgid "Extension options"
+#: transforms/i18n.py:230 transforms/i18n.py:305
+#, python-brace-format
+msgid ""
+"inconsistent footnote references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:670
-#, python-format
-msgid "enable %s extension"
+#: transforms/i18n.py:275
+#, python-brace-format
+msgid ""
+"inconsistent references in translated message. original: {0}, translated: "
+"{1}"
msgstr ""
-#: cmd/quickstart.py:677
-msgid "enable arbitrary extensions"
+#: transforms/i18n.py:325
+#, python-brace-format
+msgid ""
+"inconsistent citation references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:680
-msgid "Makefile and Batchfile creation"
+#: transforms/i18n.py:347
+#, python-brace-format
+msgid ""
+"inconsistent term references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:686
-msgid "create makefile"
+#: transforms/__init__.py:144
+msgid "could not calculate translation progress!"
msgstr ""
-#: cmd/quickstart.py:692
-msgid "do not create makefile"
+#: transforms/__init__.py:149
+msgid "no translated elements!"
msgstr ""
-#: cmd/quickstart.py:699
-msgid "create batchfile"
+#: transforms/__init__.py:258
+#, python-format
+msgid ""
+"4 column based index found. It might be a bug of extensions you use: %r"
msgstr ""
-#: cmd/quickstart.py:705
-msgid "do not create batchfile"
+#: transforms/__init__.py:299
+#, python-format
+msgid "Footnote [%s] is not referenced."
msgstr ""
-#: cmd/quickstart.py:714
-msgid "use make-mode for Makefile/make.bat"
+#: transforms/__init__.py:308
+msgid "Footnote [*] is not referenced."
msgstr ""
-#: cmd/quickstart.py:717 ext/apidoc/_cli.py:243
-msgid "Project templating"
+#: transforms/__init__.py:319
+msgid "Footnote [#] is not referenced."
msgstr ""
-#: cmd/quickstart.py:723 ext/apidoc/_cli.py:249
-msgid "template directory for template files"
+#: util/inventory.py:147
+#, python-format
+msgid "inventory <%s> contains duplicate definitions of %s"
msgstr ""
-#: cmd/quickstart.py:730
-msgid "define a template variable"
+#: util/inventory.py:166
+#, python-format
+msgid "inventory <%s> contains multiple definitions for %s"
msgstr ""
-#: cmd/quickstart.py:766
-msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
+#: util/i18n.py:100
+#, python-format
+msgid "reading error: %s, %s"
msgstr ""
-#: cmd/quickstart.py:785
-msgid ""
-"Error: specified path is not a directory, or sphinx files already exist."
+#: util/i18n.py:113
+#, python-format
+msgid "writing error: %s, %s"
msgstr ""
-#: cmd/quickstart.py:792
-msgid ""
-"sphinx-quickstart only generate into a empty directory. Please specify a new"
-" root path."
+#: util/i18n.py:146
+#, python-format
+msgid "locale_dir %s does not exist"
msgstr ""
-#: cmd/quickstart.py:809
+#: util/i18n.py:244
#, python-format
-msgid "Invalid template variable: %s"
+msgid "Invalid Babel locale: %r."
msgstr ""
-#: cmd/build.py:64
-msgid "job number should be a positive number"
+#: util/i18n.py:253
+#, python-format
+msgid ""
+"Invalid date format. Quote the string by single quote if you want to output "
+"it directly: %s"
msgstr ""
-#: cmd/build.py:74
+#: util/osutil.py:131
+#, python-format
msgid ""
-"\n"
-"Generate documentation from source files.\n"
-"\n"
-"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
-"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
-"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
-"including 'conf.py'\n"
-"\n"
-"sphinx-build can create documentation in different formats. A format is\n"
-"selected by specifying the builder name on the command line; it defaults to\n"
-"HTML. Builders can also perform other tasks related to documentation\n"
-"processing.\n"
-"\n"
-"By default, everything that is outdated is built. Output only for selected\n"
-"files can be built by specifying individual filenames.\n"
+"Aborted attempted copy from %s to %s (the destination path has existing "
+"data)."
msgstr ""
-#: cmd/build.py:100
-msgid "path to documentation source files"
+#: util/display.py:82
+msgid "skipped"
msgstr ""
-#: cmd/build.py:103
-msgid "path to output directory"
+#: util/display.py:87
+msgid "failed"
msgstr ""
-#: cmd/build.py:109
-msgid ""
-"(optional) a list of specific files to rebuild. Ignored if --write-all is "
-"specified"
+#: util/docutils.py:325
+#, python-format
+msgid "unknown directive name: %s"
msgstr ""
-#: cmd/build.py:114
-msgid "general options"
+#: util/docutils.py:361
+#, python-format
+msgid "unknown role name: %s"
msgstr ""
-#: cmd/build.py:121
-msgid "builder to use (default: 'html')"
+#: util/docutils.py:805
+#, python-format
+msgid "unknown node type: %r"
msgstr ""
-#: cmd/build.py:131
+#: util/fileutil.py:76
+#, python-format
msgid ""
-"run in parallel with N processes, when possible. 'auto' uses the number of "
-"CPU cores"
+"Aborted attempted copy from rendered template %s to %s (the destination path"
+" has existing data)."
msgstr ""
-#: cmd/build.py:140
-msgid "write all files (default: only write new and changed files)"
+#: util/fileutil.py:89
+#, python-format
+msgid "Writing evaluated template result to %s"
msgstr ""
-#: cmd/build.py:147
-msgid "don't use a saved environment, always read all files"
+#: util/docfields.py:103
+#, python-format
+msgid ""
+"Problem in %s domain: field is supposed to use role '%s', but that role is "
+"not in the domain."
msgstr ""
-#: cmd/build.py:150
-msgid "path options"
+#: util/rst.py:73
+#, python-format
+msgid "default role %s not found"
msgstr ""
-#: cmd/build.py:157
+#: util/nodes.py:462
+#, python-format
msgid ""
-"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
+"%r is no longer supported for index entries (from entry %r). Use 'pair: %s' "
+"instead."
msgstr ""
-#: cmd/build.py:166
-msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
+#: util/nodes.py:523
+#, python-format
+msgid "toctree contains ref to nonexisting file %r"
msgstr ""
-#: cmd/build.py:175
-msgid "use no configuration file, only use settings from -D options"
+#: util/nodes.py:739
+#, python-format
+msgid "exception while evaluating only directive expression: %s"
msgstr ""
-#: cmd/build.py:184
-msgid "override a setting in configuration file"
+#: templates/latex/longtable.tex.jinja:52
+#: templates/latex/sphinxmessages.sty.jinja:8
+msgid "continued from previous page"
+msgstr "pokračujte na předchozí stránce"
+
+#: templates/latex/longtable.tex.jinja:63
+#: templates/latex/sphinxmessages.sty.jinja:9
+msgid "continues on next page"
msgstr ""
-#: cmd/build.py:193
-msgid "pass a value into HTML templates"
+#: templates/latex/sphinxmessages.sty.jinja:10
+msgid "Non-alphabetical"
+msgstr ""
+
+#: environment/adapters/indexentries.py:267
+#: templates/latex/sphinxmessages.sty.jinja:11
+msgid "Symbols"
+msgstr "Symboly"
+
+#: templates/latex/sphinxmessages.sty.jinja:12
+msgid "Numbers"
msgstr ""
-#: cmd/build.py:202
-msgid "define tag: include \"only\" blocks with TAG"
+#: templates/latex/sphinxmessages.sty.jinja:13
+msgid "page"
msgstr ""
-#: cmd/build.py:209
-msgid "nitpicky mode: warn about all missing references"
-msgstr ""
+#: builders/latex/__init__.py:206 templates/latex/latex.tex.jinja:92
+msgid "Release"
+msgstr "Vydání"
-#: cmd/build.py:212
-msgid "console output options"
+#: transforms/post_transforms/images.py:79
+#, python-format
+msgid "Could not fetch remote image: %s [%s]"
msgstr ""
-#: cmd/build.py:219
-msgid "increase verbosity (can be repeated)"
+#: transforms/post_transforms/images.py:96
+#, python-format
+msgid "Could not fetch remote image: %s [%d]"
msgstr ""
-#: cmd/build.py:226 ext/apidoc/_cli.py:66
-msgid "no output on stdout, just warnings on stderr"
+#: transforms/post_transforms/images.py:143
+#, python-format
+msgid "Unknown image format: %s..."
msgstr ""
-#: cmd/build.py:233
-msgid "no output at all, not even warnings"
+#: transforms/post_transforms/__init__.py:88
+msgid ""
+"Could not determine the fallback text for the cross-reference. Might be a "
+"bug."
msgstr ""
-#: cmd/build.py:241
-msgid "do emit colored output (default: auto-detect)"
+#: transforms/post_transforms/__init__.py:233
+#, python-format
+msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr ""
-#: cmd/build.py:249
-msgid "do not emit colored output (default: auto-detect)"
+#: transforms/post_transforms/__init__.py:291
+#, python-format
+msgid "%s:%s reference target not found: %s"
msgstr ""
-#: cmd/build.py:252
-msgid "warning control options"
+#: transforms/post_transforms/__init__.py:297
+#, python-format
+msgid "%r reference target not found: %s"
msgstr ""
-#: cmd/build.py:258
-msgid "write warnings (and errors) to given file"
+#: _cli/util/errors.py:190
+msgid "Interrupted!"
msgstr ""
-#: cmd/build.py:265
-msgid "turn warnings into errors"
+#: _cli/util/errors.py:194
+msgid "reStructuredText markup error!"
msgstr ""
-#: cmd/build.py:273
-msgid "show full traceback on exception"
+#: _cli/util/errors.py:200
+msgid "Encoding error!"
msgstr ""
-#: cmd/build.py:276
-msgid "run Pdb on exception"
+#: _cli/util/errors.py:203
+msgid "Recursion error!"
msgstr ""
-#: cmd/build.py:282
-msgid "raise an exception on warnings"
+#: _cli/util/errors.py:207
+msgid ""
+"This can happen with very large or deeply nested source files. You can "
+"carefully increase the default Python recursion limit of 1,000 in conf.py "
+"with e.g.:"
msgstr ""
-#: cmd/build.py:325
-msgid "cannot combine -a option and filenames"
+#: _cli/util/errors.py:227
+msgid "Starting debugger:"
msgstr ""
-#: cmd/build.py:357
-#, python-format
-msgid "cannot open warning file '%s': %s"
+#: _cli/util/errors.py:235
+msgid "The full traceback has been saved in:"
msgstr ""
-#: cmd/build.py:376
-msgid "-D option argument must be in the form name=value"
+#: _cli/util/errors.py:240
+msgid ""
+"To report this error to the developers, please open an issue at "
+". Thanks!"
msgstr ""
-#: cmd/build.py:383
-msgid "-A option argument must be in the form name=value"
+#: _cli/util/errors.py:246
+msgid ""
+"Please also report this if it was a user error, so that a better error "
+"message can be provided next time."
msgstr ""
#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
msgid "Collapse sidebar"
msgstr "Sbalit boční lištu"
-#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
-#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
-msgid "Table of Contents"
-msgstr ""
+#: themes/basic/layout.html:18
+msgid "Navigation"
+msgstr "Navigace"
+
+#: themes/basic/layout.html:115
+#, python-format
+msgid "Search within %(docstitle)s"
+msgstr "Prohledat %(docstitle)s"
+
+#: themes/basic/layout.html:124
+msgid "About these documents"
+msgstr "O těchto dokumentech"
#: themes/agogo/layout.html:34 themes/basic/layout.html:130
#: themes/basic/search.html:3 themes/basic/search.html:15
msgid "Search"
msgstr "Vyhledávání"
-#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
-#: themes/basic/searchfield.html:12
-msgid "Go"
-msgstr "OK"
+#: themes/basic/layout.html:133 themes/basic/layout.html:177
+#: themes/basic/layout.html:179
+msgid "Copyright"
+msgstr "Veškerá práva vyhrazena"
+
+#: themes/basic/layout.html:183 themes/basic/layout.html:189
+#, python-format
+msgid "© %(copyright_prefix)s %(copyright)s."
+msgstr ""
+
+#: themes/basic/layout.html:201
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "Aktualizováno dne %(last_updated)s."
+
+#: themes/basic/layout.html:204
+#, python-format
+msgid ""
+"Created using Sphinx "
+"%(sphinx_version)s."
+msgstr ""
+
+#: themes/basic/relations.html:4
+msgid "Previous topic"
+msgstr "Přechozí téma"
+
+#: themes/basic/relations.html:6
+msgid "previous chapter"
+msgstr "předchozí kapitola"
+
+#: themes/basic/relations.html:11
+msgid "Next topic"
+msgstr "Další téma"
+
+#: themes/basic/relations.html:13
+msgid "next chapter"
+msgstr "další kapitola"
+
+#: themes/basic/genindex-single.html:26
+#, python-format
+msgid "Index – %(key)s"
+msgstr ""
+
+#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
+#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
+msgid "Full index on one page"
+msgstr "Celý rejstřík na jedné stránce"
+
+#: themes/basic/sourcelink.html:4
+msgid "This Page"
+msgstr "Tato stránka"
#: themes/agogo/layout.html:81 themes/basic/sourcelink.html:7
msgid "Show Source"
msgstr "Ukázat zdroj"
-#: themes/haiku/layout.html:16
-msgid "Contents"
-msgstr "Obsah"
+#: themes/basic/searchbox.html:4
+msgid "Quick search"
+msgstr "Rychlé vyhledávání"
-#: themes/basic/opensearch.xml:4
-#, python-format
-msgid "Search %(docstitle)s"
-msgstr "Prohledat %(docstitle)s"
+#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
+#: themes/basic/searchfield.html:12
+msgid "Go"
+msgstr "OK"
#: themes/basic/defindex.html:4
msgid "Overview"
@@ -2683,7 +2883,7 @@ msgstr "Celkový rejstřík modulů"
msgid "quick access to all modules"
msgstr "rychlý přístup ke všem modulům"
-#: builders/html/__init__.py:507 themes/basic/defindex.html:23
+#: builders/html/__init__.py:496 themes/basic/defindex.html:23
msgid "General Index"
msgstr "Obecný rejstřík"
@@ -2691,23 +2891,15 @@ msgstr "Obecný rejstřík"
msgid "all functions, classes, terms"
msgstr "všechny funkce, třídy, termíny"
-#: themes/basic/sourcelink.html:4
-msgid "This Page"
-msgstr "Tato stránka"
-
-#: themes/basic/genindex-single.html:26
-#, python-format
-msgid "Index – %(key)s"
+#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
+#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
+msgid "Table of Contents"
msgstr ""
-#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
-#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
-msgid "Full index on one page"
-msgstr "Celý rejstřík na jedné stránce"
-
-#: themes/basic/searchbox.html:4
-msgid "Quick search"
-msgstr "Rychlé vyhledávání"
+#: themes/basic/opensearch.xml:4
+#, python-format
+msgid "Search %(docstitle)s"
+msgstr "Prohledat %(docstitle)s"
#: themes/basic/genindex-split.html:8
msgid "Index pages by letter"
@@ -2717,57 +2909,6 @@ msgstr "Rejstřík podle písmene"
msgid "can be huge"
msgstr "může být obrovský"
-#: themes/basic/relations.html:4
-msgid "Previous topic"
-msgstr "Přechozí téma"
-
-#: themes/basic/relations.html:6
-msgid "previous chapter"
-msgstr "předchozí kapitola"
-
-#: themes/basic/relations.html:11
-msgid "Next topic"
-msgstr "Další téma"
-
-#: themes/basic/relations.html:13
-msgid "next chapter"
-msgstr "další kapitola"
-
-#: themes/basic/layout.html:18
-msgid "Navigation"
-msgstr "Navigace"
-
-#: themes/basic/layout.html:115
-#, python-format
-msgid "Search within %(docstitle)s"
-msgstr "Prohledat %(docstitle)s"
-
-#: themes/basic/layout.html:124
-msgid "About these documents"
-msgstr "O těchto dokumentech"
-
-#: themes/basic/layout.html:133 themes/basic/layout.html:177
-#: themes/basic/layout.html:179
-msgid "Copyright"
-msgstr "Veškerá práva vyhrazena"
-
-#: themes/basic/layout.html:183 themes/basic/layout.html:189
-#, python-format
-msgid "© %(copyright_prefix)s %(copyright)s."
-msgstr ""
-
-#: themes/basic/layout.html:201
-#, python-format
-msgid "Last updated on %(last_updated)s."
-msgstr "Aktualizováno dne %(last_updated)s."
-
-#: themes/basic/layout.html:204
-#, python-format
-msgid ""
-"Created using Sphinx "
-"%(sphinx_version)s."
-msgstr ""
-
#: themes/basic/search.html:20
msgid ""
"Please activate JavaScript to enable the search\n"
@@ -2784,21 +2925,21 @@ msgstr ""
msgid "search"
msgstr "hledat"
-#: themes/basic/static/sphinx_highlight.js:112
-msgid "Hide Search Matches"
-msgstr "Skrýt výsledky vyhledávání"
+#: themes/haiku/layout.html:16
+msgid "Contents"
+msgstr "Obsah"
-#: themes/basic/static/searchtools.js:117
+#: themes/basic/static/searchtools.js:132
msgid "Search Results"
msgstr "Výsledky vyhledávání"
-#: themes/basic/static/searchtools.js:119
+#: themes/basic/static/searchtools.js:134
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
msgstr "Vyhledávání nenalezlo žádný odpovídající dokument. Ujistěte se, že jste všechna slova zapsal/a správně a že jste vybral/a dostatek kategorií."
-#: themes/basic/static/searchtools.js:123
+#: themes/basic/static/searchtools.js:138
#, python-brace-format
msgid "Search finished, found one page matching the search query."
msgid_plural ""
@@ -2808,22 +2949,21 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: themes/basic/static/searchtools.js:253
+#: themes/basic/static/searchtools.js:276
msgid "Searching"
msgstr "Probíhá vyhledání"
-#: themes/basic/static/searchtools.js:270
+#: themes/basic/static/searchtools.js:293
msgid "Preparing search..."
msgstr "Vyhledávání se připravuje..."
-#: themes/basic/static/searchtools.js:474
+#: themes/basic/static/searchtools.js:526
msgid ", in "
msgstr ", v "
-#: themes/basic/changes/rstsource.html:5
-#, python-format
-msgid "%(filename)s — %(docstitle)s"
-msgstr ""
+#: themes/basic/static/sphinx_highlight.js:112
+msgid "Hide Search Matches"
+msgstr "Skrýt výsledky vyhledávání"
#: themes/basic/changes/frameset.html:5
#: themes/basic/changes/versionchanges.html:12
@@ -2831,6 +2971,11 @@ msgstr ""
msgid "Changes in Version %(version)s — %(docstitle)s"
msgstr ""
+#: themes/basic/changes/rstsource.html:5
+#, python-format
+msgid "%(filename)s — %(docstitle)s"
+msgstr ""
+
#: themes/basic/changes/versionchanges.html:17
#, python-format
msgid "Automatically generated list of changes in version %(version)s"
@@ -2852,120 +2997,127 @@ msgstr "Ostatní změny"
msgid "Expand sidebar"
msgstr "Rozbalit boční lištu"
-#: domains/python/_annotations.py:529
+#: domains/python/_annotations.py:522
msgid "Positional-only parameter separator (PEP 570)"
msgstr ""
-#: domains/python/_annotations.py:540
+#: domains/python/_annotations.py:533
msgid "Keyword-only parameters separator (PEP 3102)"
msgstr ""
-#: domains/python/__init__.py:113 domains/python/__init__.py:278
+#: domains/c/__init__.py:354 domains/cpp/__init__.py:485
+#: domains/python/_object.py:190 ext/napoleon/docstring.py:980
+msgid "Parameters"
+msgstr "Parametry"
+
+#: domains/python/_object.py:206
+msgid "Variables"
+msgstr "Proměnné"
+
+#: domains/python/_object.py:214
+msgid "Raises"
+msgstr "Vyvolá"
+
+#: domains/python/__init__.py:105 domains/python/__init__.py:270
#, python-format
msgid "%s() (in module %s)"
msgstr "%s() (v modulu %s)"
-#: domains/python/__init__.py:180 domains/python/__init__.py:374
-#: domains/python/__init__.py:434 domains/python/__init__.py:474
+#: domains/python/__init__.py:172 domains/python/__init__.py:366
+#: domains/python/__init__.py:426 domains/python/__init__.py:466
#, python-format
msgid "%s (in module %s)"
msgstr "%s (v modulu %s)"
-#: domains/python/__init__.py:182
+#: domains/python/__init__.py:174
#, python-format
msgid "%s (built-in variable)"
msgstr "%s (vestavěná proměnná)"
-#: domains/python/__init__.py:217
+#: domains/python/__init__.py:209
#, python-format
msgid "%s (built-in class)"
msgstr "%s (vestavěná třída)"
-#: domains/python/__init__.py:218
+#: domains/python/__init__.py:210
#, python-format
msgid "%s (class in %s)"
msgstr "%s (třída v %s)"
-#: domains/python/__init__.py:283
+#: domains/python/__init__.py:275
#, python-format
msgid "%s() (%s class method)"
msgstr "%s() (třídní metoda %s)"
-#: domains/python/__init__.py:285
+#: domains/python/__init__.py:277
#, python-format
msgid "%s() (%s static method)"
msgstr "%s() (statická metoda %s)"
-#: domains/python/__init__.py:438
+#: domains/python/__init__.py:430
#, python-format
msgid "%s (%s property)"
msgstr ""
-#: domains/python/__init__.py:478
+#: domains/python/__init__.py:470
#, python-format
msgid "%s (type alias in %s)"
msgstr ""
-#: domains/python/__init__.py:638
+#: domains/python/__init__.py:624
msgid "Python Module Index"
msgstr "Rejstřík modulů Pythonu"
-#: domains/python/__init__.py:639
+#: domains/python/__init__.py:625
msgid "modules"
msgstr "moduly"
-#: domains/python/__init__.py:717
+#: domains/python/__init__.py:703
msgid "Deprecated"
msgstr "Zastaralé"
-#: domains/python/__init__.py:743
+#: domains/python/__init__.py:729
msgid "exception"
msgstr "výjimka"
-#: domains/python/__init__.py:745
+#: domains/python/__init__.py:731
msgid "class method"
msgstr "třídní metoda"
-#: domains/python/__init__.py:746
+#: domains/python/__init__.py:732
msgid "static method"
msgstr "statická metoda"
-#: domains/python/__init__.py:748
+#: domains/python/__init__.py:734
msgid "property"
msgstr ""
-#: domains/python/__init__.py:749
+#: domains/python/__init__.py:735
msgid "type alias"
msgstr ""
-#: domains/python/__init__.py:818
+#: domains/python/__init__.py:804
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :no-index: for"
" one of them"
msgstr ""
-#: domains/python/__init__.py:978
+#: domains/python/__init__.py:974
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
-#: domains/python/__init__.py:1052
+#: domains/python/__init__.py:1048
msgid " (deprecated)"
msgstr " (zastaralé)"
-#: domains/c/__init__.py:326 domains/cpp/__init__.py:483
-#: domains/python/_object.py:190 ext/napoleon/docstring.py:974
-msgid "Parameters"
-msgstr "Parametry"
-
-#: domains/python/_object.py:206
-msgid "Variables"
-msgstr "Proměnné"
-
-#: domains/python/_object.py:214
-msgid "Raises"
-msgstr "Vyvolá"
+#: domains/cpp/__init__.py:394 domains/cpp/_symbol.py:946
+#, python-format
+msgid ""
+"Duplicate C++ declaration, also defined at %s:%s.\n"
+"Declaration is '.. cpp:%s:: %s'."
+msgstr ""
#: domains/cpp/__init__.py:159
msgid "Template Parameters"
@@ -2976,746 +3128,526 @@ msgstr ""
msgid "%s (C++ %s)"
msgstr ""
-#: domains/cpp/__init__.py:392 domains/cpp/_symbol.py:942
-#, python-format
-msgid ""
-"Duplicate C++ declaration, also defined at %s:%s.\n"
-"Declaration is '.. cpp:%s:: %s'."
-msgstr ""
-
-#: domains/c/__init__.py:333 domains/cpp/__init__.py:496
+#: domains/c/__init__.py:361 domains/cpp/__init__.py:498
msgid "Return values"
msgstr ""
-#: domains/c/__init__.py:754 domains/cpp/__init__.py:940
+#: domains/c/__init__.py:782 domains/cpp/__init__.py:942
msgid "union"
msgstr ""
-#: domains/c/__init__.py:749 domains/cpp/__init__.py:942
+#: domains/c/__init__.py:777 domains/cpp/__init__.py:944
msgid "member"
msgstr "člen"
-#: domains/c/__init__.py:757 domains/cpp/__init__.py:943
+#: domains/c/__init__.py:785 domains/cpp/__init__.py:945
msgid "type"
msgstr "typ"
-#: domains/cpp/__init__.py:944
+#: domains/cpp/__init__.py:946
msgid "concept"
msgstr ""
-#: domains/c/__init__.py:755 domains/cpp/__init__.py:945
+#: domains/c/__init__.py:783 domains/cpp/__init__.py:947
msgid "enum"
msgstr ""
-#: domains/c/__init__.py:756 domains/cpp/__init__.py:946
+#: domains/c/__init__.py:784 domains/cpp/__init__.py:948
msgid "enumerator"
msgstr ""
-#: domains/c/__init__.py:760 domains/cpp/__init__.py:949
+#: domains/c/__init__.py:788 domains/cpp/__init__.py:951
msgid "function parameter"
msgstr ""
-#: domains/cpp/__init__.py:952
+#: domains/cpp/__init__.py:954
msgid "template parameter"
msgstr ""
-#: domains/c/__init__.py:211
-#, python-format
-msgid "%s (C %s)"
-msgstr ""
-
-#: domains/c/__init__.py:277 domains/c/_symbol.py:557
+#: domains/c/__init__.py:279 domains/c/_symbol.py:569
#, python-format
msgid ""
"Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'."
msgstr ""
-#: domains/c/__init__.py:750
-msgid "variable"
-msgstr "proměnná"
-
-#: domains/c/__init__.py:752
-msgid "macro"
-msgstr "makro"
-
-#: domains/c/__init__.py:753
-msgid "struct"
-msgstr ""
-
-#: domains/std/__init__.py:91 domains/std/__init__.py:111
-#, python-format
-msgid "environment variable; %s"
-msgstr "proměnná prostředí; %s"
-
-#: domains/std/__init__.py:119
-#, python-format
-msgid "%s; configuration value"
-msgstr ""
-
-#: domains/std/__init__.py:175
-msgid "Type"
-msgstr ""
-
-#: domains/std/__init__.py:185
-msgid "Default"
-msgstr ""
-
-#: domains/std/__init__.py:242
-#, python-format
-msgid ""
-"Malformed option description %r, should look like \"opt\", \"-opt args\", \""
-"--opt args\", \"/opt args\" or \"+opt args\""
-msgstr ""
-
-#: domains/std/__init__.py:319
-#, python-format
-msgid "%s command line option"
-msgstr ""
-
-#: domains/std/__init__.py:321
-msgid "command line option"
-msgstr ""
-
-#: domains/std/__init__.py:461
-msgid "glossary term must be preceded by empty line"
-msgstr ""
-
-#: domains/std/__init__.py:474
-msgid "glossary terms must not be separated by empty lines"
-msgstr ""
-
-#: domains/std/__init__.py:486 domains/std/__init__.py:504
-msgid "glossary seems to be misformatted, check indentation"
-msgstr ""
-
-#: domains/std/__init__.py:729
-msgid "glossary term"
-msgstr "termín v glosáři"
-
-#: domains/std/__init__.py:730
-msgid "grammar token"
-msgstr "token gramatiky"
-
-#: domains/std/__init__.py:731
-msgid "reference label"
-msgstr "referenční návěstí"
-
-#: domains/std/__init__.py:733
-msgid "environment variable"
-msgstr "proměnná prostředí"
-
-#: domains/std/__init__.py:734
-msgid "program option"
-msgstr "volba programu"
-
-#: domains/std/__init__.py:735
-msgid "document"
-msgstr ""
-
-#: domains/std/__init__.py:772 domains/std/__init__.py:785
-msgid "Module Index"
-msgstr "Rejstřík modulů"
-
-#: domains/std/__init__.py:857
-#, python-format
-msgid "duplicate %s description of %s, other instance in %s"
-msgstr ""
-
-#: domains/std/__init__.py:1113
-msgid "numfig is disabled. :numref: is ignored."
-msgstr ""
-
-#: domains/std/__init__.py:1124
-#, python-format
-msgid "Failed to create a cross reference. Any number is not assigned: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1138
-#, python-format
-msgid "the link has no caption: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1153
-#, python-format
-msgid "invalid numfig_format: %s (%r)"
-msgstr ""
-
-#: domains/std/__init__.py:1157
-#, python-format
-msgid "invalid numfig_format: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1453
-#, python-format
-msgid "undefined label: %r"
-msgstr ""
-
-#: domains/std/__init__.py:1456
-#, python-format
-msgid "Failed to create a cross reference. A title or caption not found: %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:324
-#, python-format
-msgid "circular toctree references detected, ignoring: %s <- %s"
-msgstr ""
-
-#: environment/adapters/toctree.py:349
-#, python-format
-msgid ""
-"toctree contains reference to document %r that doesn't have a title: no link"
-" will be generated"
-msgstr ""
-
-#: environment/adapters/toctree.py:364
-#, python-format
-msgid "toctree contains reference to non-included document %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:367
-#, python-format
-msgid "toctree contains reference to non-existing document %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:123
-#, python-format
-msgid "see %s"
-msgstr "viz %s"
-
-#: environment/adapters/indexentries.py:133
-#, python-format
-msgid "see also %s"
-msgstr "viz také %s"
-
-#: environment/adapters/indexentries.py:141
-#, python-format
-msgid "unknown index entry type %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:268
-#: templates/latex/sphinxmessages.sty.jinja:11
-msgid "Symbols"
-msgstr "Symboly"
-
-#: environment/collectors/asset.py:98
-#, python-format
-msgid "image file not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:126
-#, python-format
-msgid "image file %s not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:163
-#, python-format
-msgid "download file not readable: %s"
-msgstr ""
-
-#: environment/collectors/toctree.py:259
+#: domains/c/__init__.py:211
#, python-format
-msgid "%s is already assigned section numbers (nested numbered toctree?)"
-msgstr ""
-
-#: _cli/util/errors.py:190
-msgid "Interrupted!"
-msgstr ""
-
-#: _cli/util/errors.py:194
-msgid "reStructuredText markup error!"
-msgstr ""
-
-#: _cli/util/errors.py:200
-msgid "Encoding error!"
-msgstr ""
-
-#: _cli/util/errors.py:203
-msgid "Recursion error!"
-msgstr ""
-
-#: _cli/util/errors.py:207
-msgid ""
-"This can happen with very large or deeply nested source files. You can "
-"carefully increase the default Python recursion limit of 1,000 in conf.py "
-"with e.g.:"
-msgstr ""
-
-#: _cli/util/errors.py:227
-msgid "Starting debugger:"
-msgstr ""
-
-#: _cli/util/errors.py:235
-msgid "The full traceback has been saved in:"
+msgid "%s (C %s)"
msgstr ""
-#: _cli/util/errors.py:240
-msgid ""
-"To report this error to the developers, please open an issue at "
-". Thanks!"
-msgstr ""
+#: domains/c/__init__.py:778
+msgid "variable"
+msgstr "proměnná"
-#: _cli/util/errors.py:246
-msgid ""
-"Please also report this if it was a user error, so that a better error "
-"message can be provided next time."
-msgstr ""
+#: domains/c/__init__.py:780
+msgid "macro"
+msgstr "makro"
-#: transforms/post_transforms/__init__.py:88
-msgid ""
-"Could not determine the fallback text for the cross-reference. Might be a "
-"bug."
+#: domains/c/__init__.py:781
+msgid "struct"
msgstr ""
-#: transforms/post_transforms/__init__.py:237
+#: domains/std/__init__.py:88 domains/std/__init__.py:108
#, python-format
-msgid "more than one target found for 'any' cross-reference %r: could be %s"
-msgstr ""
+msgid "environment variable; %s"
+msgstr "proměnná prostředí; %s"
-#: transforms/post_transforms/__init__.py:299
+#: domains/std/__init__.py:116
#, python-format
-msgid "%s:%s reference target not found: %s"
+msgid "%s; configuration value"
msgstr ""
-#: transforms/post_transforms/__init__.py:305
-#, python-format
-msgid "%r reference target not found: %s"
+#: domains/std/__init__.py:172
+msgid "Type"
msgstr ""
-#: transforms/post_transforms/images.py:79
-#, python-format
-msgid "Could not fetch remote image: %s [%s]"
+#: domains/std/__init__.py:182
+msgid "Default"
msgstr ""
-#: transforms/post_transforms/images.py:96
+#: domains/std/__init__.py:239
#, python-format
-msgid "Could not fetch remote image: %s [%d]"
+msgid ""
+"Malformed option description %r, should look like \"opt\", \"-opt args\", \""
+"--opt args\", \"/opt args\" or \"+opt args\""
msgstr ""
-#: transforms/post_transforms/images.py:143
+#: domains/std/__init__.py:319
#, python-format
-msgid "Unknown image format: %s..."
+msgid "%s command line option"
msgstr ""
-#: builders/html/__init__.py:113
-#, python-format
-msgid "The HTML pages are in %(outdir)s."
+#: domains/std/__init__.py:321
+msgid "command line option"
msgstr ""
-#: builders/html/__init__.py:348
-#, python-format
-msgid "Failed to read build info file: %r"
+#: domains/std/__init__.py:461
+msgid "glossary term must be preceded by empty line"
msgstr ""
-#: builders/html/__init__.py:364
-msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+#: domains/std/__init__.py:474
+msgid "glossary terms must not be separated by empty lines"
msgstr ""
-#: builders/html/__init__.py:366
-msgid "building [html]: "
+#: domains/std/__init__.py:486 domains/std/__init__.py:504
+msgid "glossary seems to be misformatted, check indentation"
msgstr ""
-#: builders/html/__init__.py:383
-#, python-format
-msgid ""
-"template %s has been changed since the previous build, all docs will be "
-"rebuilt"
-msgstr ""
+#: domains/std/__init__.py:729
+msgid "glossary term"
+msgstr "termín v glosáři"
-#: builders/html/__init__.py:507
-msgid "index"
-msgstr "rejstřík"
+#: domains/std/__init__.py:730
+msgid "grammar token"
+msgstr "token gramatiky"
-#: builders/html/__init__.py:560
-#, python-format
-msgid "Logo of %s"
-msgstr ""
+#: domains/std/__init__.py:731
+msgid "reference label"
+msgstr "referenční návěstí"
-#: builders/html/__init__.py:589
-msgid "next"
-msgstr "další"
+#: domains/std/__init__.py:733
+msgid "environment variable"
+msgstr "proměnná prostředí"
-#: builders/html/__init__.py:598
-msgid "previous"
-msgstr "předchozí"
+#: domains/std/__init__.py:734
+msgid "program option"
+msgstr "volba programu"
-#: builders/html/__init__.py:696
-msgid "generating indices"
+#: domains/std/__init__.py:735
+msgid "document"
msgstr ""
-#: builders/html/__init__.py:711
-msgid "writing additional pages"
-msgstr ""
+#: domains/std/__init__.py:772 domains/std/__init__.py:785
+msgid "Module Index"
+msgstr "Rejstřík modulů"
-#: builders/html/__init__.py:794
+#: domains/std/__init__.py:857
#, python-format
-msgid "cannot copy image file '%s': %s"
+msgid "duplicate %s description of %s, other instance in %s"
msgstr ""
-#: builders/html/__init__.py:806
-msgid "copying downloadable files... "
+#: domains/std/__init__.py:1113
+msgid "numfig is disabled. :numref: is ignored."
msgstr ""
-#: builders/html/__init__.py:818
+#: domains/std/__init__.py:1124
#, python-format
-msgid "cannot copy downloadable file %r: %s"
+msgid "Failed to create a cross reference. Any number is not assigned: %s"
msgstr ""
-#: builders/html/__init__.py:864
+#: domains/std/__init__.py:1138
#, python-format
-msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
+msgid "the link has no caption: %s"
msgstr ""
-#: builders/html/__init__.py:882
+#: domains/std/__init__.py:1153
#, python-format
-msgid "Failed to copy a file in html_static_file: %s: %r"
+msgid "invalid numfig_format: %s (%r)"
msgstr ""
-#: builders/html/__init__.py:917
-msgid "copying static files"
+#: domains/std/__init__.py:1157
+#, python-format
+msgid "invalid numfig_format: %s"
msgstr ""
-#: builders/html/__init__.py:934
+#: domains/std/__init__.py:1453
#, python-format
-msgid "cannot copy static file %r"
+msgid "undefined label: %r"
msgstr ""
-#: builders/html/__init__.py:939
-msgid "copying extra files"
+#: domains/std/__init__.py:1456
+#, python-format
+msgid "Failed to create a cross reference. A title or caption not found: %r"
msgstr ""
-#: builders/html/__init__.py:949
+#: ext/napoleon/docstring.py:178
#, python-format
-msgid "cannot copy extra file %r"
+msgid "invalid value set (missing closing brace): %s"
msgstr ""
-#: builders/html/__init__.py:955
+#: ext/napoleon/docstring.py:185
#, python-format
-msgid "Failed to write build info file: %r"
+msgid "invalid value set (missing opening brace): %s"
msgstr ""
-#: builders/html/__init__.py:1005
-msgid ""
-"search index couldn't be loaded, but not all documents will be built: the "
-"index will be incomplete."
+#: ext/napoleon/docstring.py:192
+#, python-format
+msgid "malformed string literal (missing closing quote): %s"
msgstr ""
-#: builders/html/__init__.py:1052
+#: ext/napoleon/docstring.py:199
#, python-format
-msgid "page %s matches two patterns in html_sidebars: %r and %r"
+msgid "malformed string literal (missing opening quote): %s"
msgstr ""
-#: builders/html/__init__.py:1216
-#, python-format
-msgid ""
-"a Unicode error occurred when rendering the page %s. Please make sure all "
-"config values that contain non-ASCII content are Unicode strings."
+#: ext/napoleon/docstring.py:902
+msgid "Example"
msgstr ""
-#: builders/html/__init__.py:1224
-#, python-format
-msgid ""
-"An error happened in rendering the page %s.\n"
-"Reason: %r"
+#: ext/napoleon/docstring.py:903
+msgid "Examples"
msgstr ""
-#: builders/html/__init__.py:1257
-msgid "dumping object inventory"
+#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:947
+msgid "Keyword Arguments"
msgstr ""
-#: builders/html/__init__.py:1265
-#, python-format
-msgid "dumping search index in %s"
+#: ext/napoleon/docstring.py:962
+msgid "Notes"
msgstr ""
-#: builders/html/__init__.py:1308
-#, python-format
-msgid "invalid js_file: %r, ignored"
+#: ext/napoleon/docstring.py:971
+msgid "Other Parameters"
msgstr ""
-#: builders/html/__init__.py:1342
-msgid "Many math_renderers are registered. But no math_renderer is selected."
+#: ext/napoleon/docstring.py:1007
+msgid "Receives"
msgstr ""
-#: builders/html/__init__.py:1346
-#, python-format
-msgid "Unknown math_renderer %r is given."
+#: ext/napoleon/docstring.py:1011
+msgid "References"
msgstr ""
-#: builders/html/__init__.py:1360
-#, python-format
-msgid "html_extra_path entry %r is placed inside outdir"
+#: ext/napoleon/docstring.py:1043
+msgid "Warns"
msgstr ""
-#: builders/html/__init__.py:1365
+#: ext/napoleon/docstring.py:1047
+msgid "Yields"
+msgstr ""
+
+#: ext/autodoc/_generate.py:151
+#: ext/autodoc/_legacy_class_based/_documenters.py:859
#, python-format
-msgid "html_extra_path entry %r does not exist"
+msgid "A mocked object is detected: %r"
msgstr ""
-#: builders/html/__init__.py:1380
+#: ext/autodoc/_generate.py:334 ext/autodoc/_generate.py:348
+#: ext/autodoc/_generate.py:370 ext/autodoc/_generate.py:386
+#: ext/autodoc/_legacy_class_based/_documenters.py:1860
+#: ext/autodoc/_legacy_class_based/_documenters.py:1889
+#: ext/autodoc/_legacy_class_based/_documenters.py:1983
#, python-format
-msgid "html_static_path entry %r is placed inside outdir"
+msgid "alias of %s"
msgstr ""
-#: builders/html/__init__.py:1385
+#: ext/autodoc/_legacy_class_based/_documenters.py:1745
+#: ext/autodoc/_renderer.py:88
#, python-format
-msgid "html_static_path entry %r does not exist"
+msgid "Bases: %s"
msgstr ""
-#: builders/html/__init__.py:1396 builders/latex/__init__.py:504
+#: ext/autodoc/_directive_options.py:226
+#: ext/autodoc/_legacy_class_based/_directive_options.py:47
#, python-format
-msgid "logo file %r does not exist"
+msgid "invalid value for member-order option: %s"
msgstr ""
-#: builders/html/__init__.py:1407
+#: ext/autodoc/_directive_options.py:233
+#: ext/autodoc/_legacy_class_based/_directive_options.py:55
#, python-format
-msgid "favicon file %r does not exist"
+msgid "invalid value for class-doc-from option: %s"
msgstr ""
-#: builders/html/__init__.py:1420
+#: ext/autodoc/_legacy_class_based/_documenters.py:239
+#: ext/autodoc/_names.py:45
#, python-format
-msgid ""
-"Values in 'html_sidebars' must be a list of strings. At least one pattern "
-"has a string value: %s. Change to `html_sidebars = %r`."
+msgid "invalid signature for auto%s (%r)"
msgstr ""
-#: builders/html/__init__.py:1433
+#: ext/autodoc/_legacy_class_based/_documenters.py:800
+#: ext/autodoc/_names.py:53 ext/autodoc/_names.py:101
+#, python-format
msgid ""
-"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
-"configuration options)"
+"don't know which module to import for autodocumenting %r (try placing a "
+"\"module\" or \"currentmodule\" directive in the document, or giving an "
+"explicit module name)"
msgstr ""
-#: builders/html/__init__.py:1449
+#: ext/autodoc/_names.py:89
#, python-format
-msgid "%s %s documentation"
-msgstr "Dokumentace pro %s %s"
+msgid "signature arguments given for automodule: '%s'"
+msgstr ""
-#: builders/html/_build_info.py:32
-msgid "failed to read broken build info file (unknown version)"
+#: ext/autodoc/_names.py:93
+#, python-format
+msgid "return annotation given for automodule: '%s'"
msgstr ""
-#: builders/html/_build_info.py:36
-msgid "failed to read broken build info file (missing config entry)"
+#: ext/autodoc/_legacy_class_based/_documenters.py:956
+#: ext/autodoc/_names.py:134
+msgid "\"::\" in automodule name doesn't make sense"
msgstr ""
-#: builders/html/_build_info.py:39
-msgid "failed to read broken build info file (missing tags entry)"
+#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:984
+#, python-format
+msgid "Failed to remove %s: %s"
msgstr ""
-#: builders/latex/__init__.py:118
+#: ext/apidoc/_generate.py:69
#, python-format
-msgid "The LaTeX files are in %(outdir)s."
+msgid "Would create file %s."
msgstr ""
-#: builders/latex/__init__.py:121
+#: ext/apidoc/_cli.py:28
msgid ""
"\n"
-"Run 'make' in that directory to run these through (pdf)latex\n"
-"(use `make latexpdf' here to do that automatically)."
+"Look recursively in for Python modules and packages and create\n"
+"one reST file with automodule directives per package in the .\n"
+"\n"
+"The s can be file and/or directory patterns that will be\n"
+"excluded from generation.\n"
+"\n"
+"Note: By default this script will not overwrite already created files."
msgstr ""
-#: builders/latex/__init__.py:159
-msgid "no \"latex_documents\" config value found; no documents will be written"
+#: ext/apidoc/_cli.py:45
+msgid "path to module to document"
msgstr ""
-#: builders/latex/__init__.py:170
-#, python-format
-msgid "\"latex_documents\" config value references unknown document %s"
+#: ext/apidoc/_cli.py:50
+msgid ""
+"fnmatch-style file and/or directory patterns to exclude from generation"
msgstr ""
-#: builders/latex/__init__.py:209 templates/latex/latex.tex.jinja:91
-msgid "Release"
-msgstr "Vydání"
+#: ext/apidoc/_cli.py:60
+msgid "directory to place all output"
+msgstr ""
-#: builders/latex/__init__.py:428
-msgid "copying TeX support files"
+#: ext/apidoc/_cli.py:75
+msgid "maximum depth of submodules to show in the TOC (default: 4)"
msgstr ""
-#: builders/latex/__init__.py:465
-msgid "copying additional files"
+#: ext/apidoc/_cli.py:82
+msgid "overwrite existing files"
msgstr ""
-#: builders/latex/__init__.py:536
-#, python-format
-msgid "Unknown configure key: latex_elements[%r], ignored."
+#: ext/apidoc/_cli.py:91
+msgid ""
+"follow symbolic links. Powerful when combined with "
+"collective.recipe.omelette."
msgstr ""
-#: builders/latex/__init__.py:544
-#, python-format
-msgid "Unknown theme option: latex_theme_options[%r], ignored."
+#: ext/apidoc/_cli.py:99
+msgid "run the script without creating files"
msgstr ""
-#: builders/latex/transforms.py:120
-msgid "Failed to get a docname!"
+#: ext/apidoc/_cli.py:106
+msgid "put documentation for each module on its own page"
msgstr ""
-#: builders/latex/transforms.py:121
-#, python-format
-msgid "Failed to get a docname for source %r!"
+#: ext/apidoc/_cli.py:113
+msgid "include \"_private\" modules"
msgstr ""
-#: builders/latex/transforms.py:487
-#, python-format
-msgid "No footnote was found for given reference node %r"
+#: ext/apidoc/_cli.py:120
+msgid "filename of table of contents (default: modules)"
msgstr ""
-#: builders/latex/theming.py:88
-#, python-format
-msgid "%r doesn't have \"theme\" setting"
+#: ext/apidoc/_cli.py:127
+msgid "don't create a table of contents file"
msgstr ""
-#: builders/latex/theming.py:91
-#, python-format
-msgid "%r doesn't have \"%s\" setting"
+#: ext/apidoc/_cli.py:135
+msgid ""
+"don't create headings for the module/package packages (e.g. when the "
+"docstrings already contain them)"
+msgstr ""
+
+#: ext/apidoc/_cli.py:145
+msgid "put module documentation before submodule documentation"
+msgstr ""
+
+#: ext/apidoc/_cli.py:152
+msgid ""
+"interpret module paths according to PEP-0420 implicit namespaces "
+"specification"
msgstr ""
-#: templates/latex/longtable.tex.jinja:52
-#: templates/latex/sphinxmessages.sty.jinja:8
-msgid "continued from previous page"
-msgstr "pokračujte na předchozí stránce"
+#: ext/apidoc/_cli.py:160
+msgid ""
+"Comma-separated list of options to pass to automodule directive (or use "
+"SPHINX_APIDOC_OPTIONS)."
+msgstr ""
-#: templates/latex/longtable.tex.jinja:63
-#: templates/latex/sphinxmessages.sty.jinja:9
-msgid "continues on next page"
+#: ext/apidoc/_cli.py:170
+msgid "file suffix (default: rst)"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:10
-msgid "Non-alphabetical"
+#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:950
+msgid "Remove existing files in the output directory that were not generated"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:12
-msgid "Numbers"
+#: ext/apidoc/_cli.py:186
+msgid "generate a full project with sphinx-quickstart"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:13
-msgid "page"
+#: ext/apidoc/_cli.py:193
+msgid "append module_path to sys.path, used when --full is given"
msgstr ""
-#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:940
-msgid "Keyword Arguments"
+#: ext/apidoc/_cli.py:200
+msgid "project name (default: root module name)"
msgstr ""
-#: ext/napoleon/docstring.py:176
-#, python-format
-msgid "invalid value set (missing closing brace): %s"
+#: ext/apidoc/_cli.py:207
+msgid "project author(s), used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:183
-#, python-format
-msgid "invalid value set (missing opening brace): %s"
+#: ext/apidoc/_cli.py:214
+msgid "project version, used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:190
-#, python-format
-msgid "malformed string literal (missing closing quote): %s"
+#: ext/apidoc/_cli.py:222
+msgid "project release, used when --full is given, defaults to --doc-version"
msgstr ""
-#: ext/napoleon/docstring.py:197
-#, python-format
-msgid "malformed string literal (missing opening quote): %s"
+#: ext/apidoc/_cli.py:226
+msgid "extension options"
msgstr ""
-#: ext/napoleon/docstring.py:895
-msgid "Example"
+#: ext/apidoc/_cli.py:232
+msgid "enable arbitrary extensions, used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:896
-msgid "Examples"
+#: ext/apidoc/_cli.py:240
+#, python-format
+msgid "enable %s extension, used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:956
-msgid "Notes"
+#: ext/apidoc/_cli.py:291
+#, python-format
+msgid "%s is not a directory."
msgstr ""
-#: ext/napoleon/docstring.py:965
-msgid "Other Parameters"
+#: ext/apidoc/_extension.py:50
+msgid "Running apidoc"
msgstr ""
-#: ext/napoleon/docstring.py:1001
-msgid "Receives"
+#: ext/apidoc/_extension.py:102
+#, python-format
+msgid "apidoc_modules item %i must be a dict"
msgstr ""
-#: ext/napoleon/docstring.py:1005
-msgid "References"
+#: ext/apidoc/_extension.py:110
+#, python-format
+msgid "apidoc_modules item %i must have a 'path' key"
msgstr ""
-#: ext/napoleon/docstring.py:1037
-msgid "Warns"
+#: ext/apidoc/_extension.py:115
+#, python-format
+msgid "apidoc_modules item %i 'path' must be a string"
msgstr ""
-#: ext/napoleon/docstring.py:1041
-msgid "Yields"
+#: ext/apidoc/_extension.py:121
+#, python-format
+msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
msgstr ""
-#: ext/autosummary/__init__.py:284
+#: ext/apidoc/_extension.py:133
#, python-format
-msgid "autosummary references excluded document %r. Ignored."
+msgid "apidoc_modules item %i must have a 'destination' key"
msgstr ""
-#: ext/autosummary/__init__.py:288
+#: ext/apidoc/_extension.py:140
#, python-format
-msgid ""
-"autosummary: stub file not found %r. Check your autosummary_generate "
-"setting."
+msgid "apidoc_modules item %i 'destination' must be a string"
msgstr ""
-#: ext/autosummary/__init__.py:309
-msgid "A captioned autosummary requires :toctree: option. ignored."
+#: ext/apidoc/_extension.py:147
+#, python-format
+msgid "apidoc_modules item %i 'destination' should be a relative path"
msgstr ""
-#: ext/autosummary/__init__.py:384
+#: ext/apidoc/_extension.py:157
#, python-format
-msgid ""
-"autosummary: failed to import %s.\n"
-"Possible hints:\n"
-"%s"
+msgid "apidoc_modules item %i cannot create destination directory: %s"
msgstr ""
-#: ext/autosummary/__init__.py:404
+#: ext/apidoc/_extension.py:178
#, python-format
-msgid "failed to parse name %s"
+msgid "apidoc_modules item %i '%s' must be an int"
msgstr ""
-#: ext/autosummary/__init__.py:412
+#: ext/apidoc/_extension.py:192
#, python-format
-msgid "failed to import object %s"
+msgid "apidoc_modules item %i '%s' must be a boolean"
msgstr ""
-#: ext/autosummary/__init__.py:730
+#: ext/apidoc/_extension.py:210
#, python-format
-msgid ""
-"Summarised items should not include the current module. Replace %r with %r."
+msgid "apidoc_modules item %i has unexpected keys: %s"
msgstr ""
-#: ext/autosummary/__init__.py:927
+#: ext/apidoc/_extension.py:248
#, python-format
-msgid "autosummary_generate: file not found: %s"
+msgid "apidoc_modules item %i '%s' must be a sequence"
msgstr ""
-#: ext/autosummary/__init__.py:937
-msgid ""
-"autosummary generates .rst files internally. But your source_suffix does not"
-" contain .rst. Skipped."
+#: ext/apidoc/_extension.py:257
+#, python-format
+msgid "apidoc_modules item %i '%s' must contain strings"
msgstr ""
-#: ext/autosummary/generate.py:232 ext/autosummary/generate.py:450
+#: ext/autosummary/generate.py:212 ext/autosummary/generate.py:425
#, python-format
msgid ""
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
"%s"
msgstr ""
-#: ext/autosummary/generate.py:588
+#: ext/autosummary/generate.py:630
#, python-format
msgid "[autosummary] generating autosummary for: %s"
msgstr ""
-#: ext/autosummary/generate.py:592
+#: ext/autosummary/generate.py:634
#, python-format
msgid "[autosummary] writing to %s"
msgstr ""
-#: ext/autosummary/generate.py:637
+#: ext/autosummary/generate.py:679
#, python-format
msgid ""
"[autosummary] failed to import %s.\n"
@@ -3723,7 +3655,7 @@ msgid ""
"%s"
msgstr ""
-#: ext/autosummary/generate.py:836
+#: ext/autosummary/generate.py:877
msgid ""
"\n"
"Generate ReStructuredText using autosummary directives.\n"
@@ -3738,481 +3670,639 @@ msgid ""
" pydoc sphinx.ext.autosummary\n"
msgstr ""
-#: ext/autosummary/generate.py:858
+#: ext/autosummary/generate.py:899
msgid "source files to generate rST files for"
msgstr ""
-#: ext/autosummary/generate.py:866
+#: ext/autosummary/generate.py:907
msgid "directory to place all output in"
msgstr ""
-#: ext/autosummary/generate.py:874
+#: ext/autosummary/generate.py:915
#, python-format
msgid "default suffix for files (default: %(default)s)"
msgstr ""
-#: ext/autosummary/generate.py:882
+#: ext/autosummary/generate.py:923
#, python-format
msgid "custom template directory (default: %(default)s)"
msgstr ""
-#: ext/autosummary/generate.py:890
+#: ext/autosummary/generate.py:931
#, python-format
msgid "document imported members (default: %(default)s)"
msgstr ""
-#: ext/autosummary/generate.py:899
+#: ext/autosummary/generate.py:940
#, python-format
msgid ""
"document exactly the members in module __all__ attribute. (default: "
"%(default)s)"
msgstr ""
-#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:909
-msgid "Remove existing files in the output directory that were not generated"
+#: ext/autosummary/__init__.py:235
+#, python-format
+msgid "autosummary references excluded document %r. Ignored."
msgstr ""
-#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:944
+#: ext/autosummary/__init__.py:239
#, python-format
-msgid "Failed to remove %s: %s"
+msgid ""
+"autosummary: stub file not found %r. Check your autosummary_generate "
+"setting."
msgstr ""
-#: ext/apidoc/_cli.py:28
+#: ext/autosummary/__init__.py:260
+msgid "A captioned autosummary requires :toctree: option. ignored."
+msgstr ""
+
+#: ext/autosummary/__init__.py:329
+#, python-format
msgid ""
-"\n"
-"Look recursively in for Python modules and packages and create\n"
-"one reST file with automodule directives per package in the .\n"
-"\n"
-"The s can be file and/or directory patterns that will be\n"
-"excluded from generation.\n"
-"\n"
-"Note: By default this script will not overwrite already created files."
+"autosummary: failed to import %s.\n"
+"Possible hints:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:45
-msgid "path to module to document"
+#: ext/autosummary/__init__.py:358
+#, python-format
+msgid "failed to import object %s"
msgstr ""
-#: ext/apidoc/_cli.py:50
+#: ext/autosummary/__init__.py:652
+#, python-format
msgid ""
-"fnmatch-style file and/or directory patterns to exclude from generation"
+"Summarised items should not include the current module. Replace %r with %r."
msgstr ""
-#: ext/apidoc/_cli.py:60
-msgid "directory to place all output"
+#: ext/autosummary/__init__.py:850
+#, python-format
+msgid "autosummary_generate: file not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:75
-msgid "maximum depth of submodules to show in the TOC (default: 4)"
+#: ext/autosummary/__init__.py:860
+msgid ""
+"autosummary generates .rst files internally. But your source_suffix does not"
+" contain .rst. Skipped."
msgstr ""
-#: ext/apidoc/_cli.py:82
-msgid "overwrite existing files"
+#: ext/intersphinx/_load.py:61
+#, python-format
+msgid ""
+"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
+"identifiers must be non-empty strings."
msgstr ""
-#: ext/apidoc/_cli.py:91
+#: ext/intersphinx/_load.py:72
+#, python-format
msgid ""
-"follow symbolic links. Powerful when combined with "
-"collective.recipe.omelette."
+"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
+"or list."
msgstr ""
-#: ext/apidoc/_cli.py:99
-msgid "run the script without creating files"
+#: ext/intersphinx/_load.py:83
+#, python-format
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
+" inventory locations) pair."
msgstr ""
-#: ext/apidoc/_cli.py:106
-msgid "put documentation for each module on its own page"
+#: ext/intersphinx/_load.py:94
+#, python-format
+msgid ""
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique non-empty strings."
msgstr ""
-#: ext/apidoc/_cli.py:113
-msgid "include \"_private\" modules"
+#: ext/intersphinx/_load.py:103
+#, python-format
+msgid ""
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique (other instance in intersphinx_mapping[%r])."
msgstr ""
-#: ext/apidoc/_cli.py:120
-msgid "filename of table of contents (default: modules)"
+#: ext/intersphinx/_load.py:122
+#, python-format
+msgid ""
+"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
+"Inventory locations must be non-empty strings or None."
msgstr ""
-#: ext/apidoc/_cli.py:127
-msgid "don't create a table of contents file"
+#: ext/intersphinx/_load.py:132
+msgid "Invalid `intersphinx_mapping` configuration (1 error)."
msgstr ""
-#: ext/apidoc/_cli.py:135
-msgid ""
-"don't create headings for the module/package packages (e.g. when the "
-"docstrings already contain them)"
+#: ext/intersphinx/_load.py:135
+#, python-format
+msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
msgstr ""
-#: ext/apidoc/_cli.py:145
-msgid "put module documentation before submodule documentation"
+#: ext/intersphinx/_load.py:158
+msgid "An invalid intersphinx_mapping entry was added after normalisation."
msgstr ""
-#: ext/apidoc/_cli.py:152
+#: ext/intersphinx/_load.py:297
+#, python-format
+msgid "loading intersphinx inventory '%s' from %s ..."
+msgstr ""
+
+#: ext/intersphinx/_load.py:324
msgid ""
-"interpret module paths according to PEP-0420 implicit namespaces "
-"specification"
+"encountered some issues with some of the inventories, but they had working "
+"alternatives:"
msgstr ""
-#: ext/apidoc/_cli.py:160
+#: ext/intersphinx/_load.py:332
+#, python-format
msgid ""
-"Comma-separated list of options to pass to automodule directive (or use "
-"SPHINX_APIDOC_OPTIONS)."
+"failed to reach any of the inventories with the following issues:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:170
-msgid "file suffix (default: rst)"
+#: ext/intersphinx/_load.py:411
+#, python-format
+msgid "intersphinx inventory has moved: %s -> %s"
msgstr ""
-#: ext/apidoc/_cli.py:186
-msgid "generate a full project with sphinx-quickstart"
+#: ext/intersphinx/_resolve.py:53
+#, python-format
+msgid "(in %s %s)"
msgstr ""
-#: ext/apidoc/_cli.py:193
-msgid "append module_path to sys.path, used when --full is given"
+#: ext/intersphinx/_resolve.py:55
+#, python-format
+msgid "(in %s)"
msgstr ""
-#: ext/apidoc/_cli.py:200
-msgid "project name (default: root module name)"
+#: ext/intersphinx/_resolve.py:112
+#, python-format
+msgid "inventory '%s': duplicate matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:207
-msgid "project author(s), used when --full is given"
+#: ext/intersphinx/_resolve.py:122
+#, python-format
+msgid "inventory '%s': multiple matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:214
-msgid "project version, used when --full is given"
+#: ext/intersphinx/_resolve.py:387
+#, python-format
+msgid "inventory for external cross-reference not found: %r"
msgstr ""
-#: ext/apidoc/_cli.py:222
-msgid "project release, used when --full is given, defaults to --doc-version"
+#: ext/intersphinx/_resolve.py:396
+#, python-format
+msgid "invalid external cross-reference suffix: %r"
msgstr ""
-#: ext/apidoc/_cli.py:226
-msgid "extension options"
+#: ext/intersphinx/_resolve.py:407
+#, python-format
+msgid "domain for external cross-reference not found: %r"
+msgstr ""
+
+#: ext/intersphinx/_resolve.py:561
+#, python-format
+msgid "external %s:%s reference target not found: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_loader.py:144
+#: ext/autodoc/_legacy_class_based/_documenters.py:882
+#, python-format
+msgid "error while formatting signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_loader.py:193
+#, python-format
+msgid "Ignoring invalid __all__ in module %s: %r"
msgstr ""
-#: ext/apidoc/_cli.py:232
-msgid "enable arbitrary extensions, used when --full is given"
+#: ext/autodoc/_dynamic/_loader.py:332 ext/autodoc/_dynamic/_signatures.py:496
+#: ext/autodoc/_dynamic/_signatures.py:612
+#: ext/autodoc/_legacy_class_based/_documenters.py:1284
+#: ext/autodoc/_legacy_class_based/_documenters.py:1372
+#: ext/autodoc/_legacy_class_based/_documenters.py:2906
+#, python-format
+msgid "Failed to get a function signature for %s: %s"
msgstr ""
-#: ext/apidoc/_cli.py:240
+#: ext/autodoc/_dynamic/_type_comments.py:120
#, python-format
-msgid "enable %s extension, used when --full is given"
+msgid "Failed to update signature for %r: parameter not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:291
+#: ext/autodoc/_dynamic/_type_comments.py:123
#, python-format
-msgid "%s is not a directory."
+msgid "Failed to parse type_comment for %r: %s"
msgstr ""
-#: ext/apidoc/_extension.py:50
-msgid "Running apidoc"
+#: ext/autodoc/_dynamic/_docstrings.py:268
+#: ext/autodoc/_legacy_class_based/_documenters.py:2499
+#, python-format
+msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
-#: ext/apidoc/_extension.py:102
+#: ext/autodoc/_dynamic/_signatures.py:102
+#: ext/autodoc/_legacy_class_based/_documenters.py:358
#, python-format
-msgid "apidoc_modules item %i must be a dict"
+msgid "error while formatting arguments for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:110
+#: ext/autodoc/_dynamic/_signatures.py:494
+#: ext/autodoc/_legacy_class_based/_documenters.py:1607
#, python-format
-msgid "apidoc_modules item %i must have a 'path' key"
+msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:115
+#: ext/autodoc/_dynamic/_signatures.py:498
+#: ext/autodoc/_legacy_class_based/_documenters.py:2235
+#: ext/autodoc/_legacy_class_based/_documenters.py:2355
#, python-format
-msgid "apidoc_modules item %i 'path' must be a string"
+msgid "Failed to get a method signature for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:121
+#: ext/autodoc/_dynamic/_signatures.py:500
#, python-format
-msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
+msgid "Failed to get a signature for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:133
+#: ext/autodoc/_dynamic/_preserve_defaults.py:156
#, python-format
-msgid "apidoc_modules item %i must have a 'destination' key"
+msgid "Failed to parse a default argument value for %r: %s"
msgstr ""
-#: ext/apidoc/_extension.py:140
+#: ext/autodoc/_dynamic/_member_finder.py:420
#, python-format
-msgid "apidoc_modules item %i 'destination' must be a string"
+msgid ""
+"attribute %s is listed in :members: but is missing as it was not found in "
+"object %r"
msgstr ""
-#: ext/apidoc/_extension.py:147
+#: ext/autodoc/_dynamic/_member_finder.py:473
+#: ext/autodoc/_legacy_class_based/_documenters.py:677
#, python-format
-msgid "apidoc_modules item %i 'destination' should be a relative path"
+msgid ""
+"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_extension.py:157
+#: ext/autodoc/_legacy_class_based/_documenters.py:964
#, python-format
-msgid "apidoc_modules item %i cannot create destination directory: %s"
+msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
-#: ext/apidoc/_extension.py:178
+#: ext/autodoc/_legacy_class_based/_documenters.py:980
#, python-format
-msgid "apidoc_modules item %i '%s' must be an int"
+msgid ""
+"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
+"__all__"
msgstr ""
-#: ext/apidoc/_extension.py:192
+#: ext/autodoc/_legacy_class_based/_documenters.py:1057
#, python-format
-msgid "apidoc_modules item %i '%s' must be a boolean"
+msgid ""
+"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
-#: ext/apidoc/_extension.py:210
+#: ext/autodoc/_legacy_class_based/_documenters.py:1764
#, python-format
-msgid "apidoc_modules item %i has unexpected keys: %s"
+msgid "missing attribute %s in object %s"
msgstr ""
-#: ext/apidoc/_extension.py:247
+#: ext/autodoc/_legacy_class_based/_documenters.py:1876
#, python-format
-msgid "apidoc_modules item %i '%s' must be a sequence"
+msgid "alias of TypeVar(%s)"
msgstr ""
-#: ext/apidoc/_extension.py:256
-#, python-format
-msgid "apidoc_modules item %i '%s' must contain strings"
+#: builders/html/_build_info.py:32
+msgid "failed to read broken build info file (unknown version)"
msgstr ""
-#: ext/apidoc/_generate.py:69
+#: builders/html/_build_info.py:36
+msgid "failed to read broken build info file (missing config entry)"
+msgstr ""
+
+#: builders/html/_build_info.py:39
+msgid "failed to read broken build info file (missing tags entry)"
+msgstr ""
+
+#: builders/html/__init__.py:114
#, python-format
-msgid "Would create file %s."
+msgid "The HTML pages are in %(outdir)s."
msgstr ""
-#: ext/intersphinx/_resolve.py:49
+#: builders/html/__init__.py:337
#, python-format
-msgid "(in %s v%s)"
-msgstr "(v %s v%s)"
+msgid "Failed to read build info file: %r"
+msgstr ""
+
+#: builders/html/__init__.py:353
+msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+msgstr ""
+
+#: builders/html/__init__.py:355
+msgid "building [html]: "
+msgstr ""
-#: ext/intersphinx/_resolve.py:51
+#: builders/html/__init__.py:372
#, python-format
-msgid "(in %s)"
+msgid ""
+"template %s has been changed since the previous build, all docs will be "
+"rebuilt"
msgstr ""
-#: ext/intersphinx/_resolve.py:108
+#: builders/html/__init__.py:496
+msgid "index"
+msgstr "rejstřík"
+
+#: builders/html/__init__.py:549
#, python-format
-msgid "inventory '%s': duplicate matches found for %s:%s"
+msgid "Logo of %s"
+msgstr ""
+
+#: builders/html/__init__.py:578
+msgid "next"
+msgstr "další"
+
+#: builders/html/__init__.py:587
+msgid "previous"
+msgstr "předchozí"
+
+#: builders/html/__init__.py:685
+msgid "generating indices"
+msgstr ""
+
+#: builders/html/__init__.py:700
+msgid "writing additional pages"
msgstr ""
-#: ext/intersphinx/_resolve.py:118
+#: builders/html/__init__.py:783
#, python-format
-msgid "inventory '%s': multiple matches found for %s:%s"
+msgid "cannot copy image file '%s': %s"
+msgstr ""
+
+#: builders/html/__init__.py:795
+msgid "copying downloadable files... "
msgstr ""
-#: ext/intersphinx/_resolve.py:383
+#: builders/html/__init__.py:807
#, python-format
-msgid "inventory for external cross-reference not found: %r"
+msgid "cannot copy downloadable file %r: %s"
msgstr ""
-#: ext/intersphinx/_resolve.py:392
+#: builders/html/__init__.py:853
#, python-format
-msgid "invalid external cross-reference suffix: %r"
+msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:403
+#: builders/html/__init__.py:871
#, python-format
-msgid "domain for external cross-reference not found: %r"
+msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:619
+#: builders/html/__init__.py:906
+msgid "copying static files"
+msgstr ""
+
+#: builders/html/__init__.py:923
#, python-format
-msgid "external %s:%s reference target not found: %s"
+msgid "cannot copy static file %r"
+msgstr ""
+
+#: builders/html/__init__.py:928
+msgid "copying extra files"
msgstr ""
-#: ext/intersphinx/_load.py:60
+#: builders/html/__init__.py:938
#, python-format
-msgid ""
-"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
-"identifiers must be non-empty strings."
+msgid "cannot copy extra file %r"
msgstr ""
-#: ext/intersphinx/_load.py:71
+#: builders/html/__init__.py:944
#, python-format
+msgid "Failed to write build info file: %r"
+msgstr ""
+
+#: builders/html/__init__.py:994
msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
-"or list."
+"search index couldn't be loaded, but not all documents will be built: the "
+"index will be incomplete."
msgstr ""
-#: ext/intersphinx/_load.py:82
+#: builders/html/__init__.py:1038
#, python-format
-msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
-" inventory locations) pair."
+msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr ""
-#: ext/intersphinx/_load.py:93
+#: builders/html/__init__.py:1204
#, python-format
msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique non-empty strings."
+"a Unicode error occurred when rendering the page %s. Please make sure all "
+"config values that contain non-ASCII content are Unicode strings."
msgstr ""
-#: ext/intersphinx/_load.py:102
+#: builders/html/__init__.py:1217
#, python-format
msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique (other instance in intersphinx_mapping[%r])."
+"The '%s' theme does not support this version of Sphinx, because it uses the "
+"'style' field in HTML templates, which was was deprecated in Sphinx 5.1 and"
+" removed in Sphinx 7.0. The theme must be updated to use the 'styles' field "
+"instead. See https://www.sphinx-"
+"doc.org/en/master/development/html_themes/templating.html#styles"
msgstr ""
-#: ext/intersphinx/_load.py:121
+#: builders/html/__init__.py:1225
#, python-format
msgid ""
-"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
-"Inventory locations must be non-empty strings or None."
+"An error happened in rendering the page %s.\n"
+"Reason: %r"
msgstr ""
-#: ext/intersphinx/_load.py:131
-msgid "Invalid `intersphinx_mapping` configuration (1 error)."
+#: builders/html/__init__.py:1258
+msgid "dumping object inventory"
msgstr ""
-#: ext/intersphinx/_load.py:134
+#: builders/html/__init__.py:1266
#, python-format
-msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
+msgid "dumping search index in %s"
msgstr ""
-#: ext/intersphinx/_load.py:157
-msgid "An invalid intersphinx_mapping entry was added after normalisation."
+#: builders/html/__init__.py:1313
+#, python-format
+msgid "invalid js_file: %r, ignored"
msgstr ""
-#: ext/intersphinx/_load.py:261
-#, python-format
-msgid "loading intersphinx inventory '%s' from %s ..."
+#: builders/html/__init__.py:1347
+msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr ""
-#: ext/intersphinx/_load.py:287
-msgid ""
-"encountered some issues with some of the inventories, but they had working "
-"alternatives:"
+#: builders/html/__init__.py:1351
+#, python-format
+msgid "Unknown math_renderer %r is given."
msgstr ""
-#: ext/intersphinx/_load.py:297
-msgid "failed to reach any of the inventories with the following issues:"
+#: builders/html/__init__.py:1365
+#, python-format
+msgid "html_extra_path entry %r is placed inside outdir"
msgstr ""
-#: ext/intersphinx/_load.py:361
+#: builders/html/__init__.py:1370
#, python-format
-msgid "intersphinx inventory has moved: %s -> %s"
+msgid "html_extra_path entry %r does not exist"
msgstr ""
-#: ext/autodoc/__init__.py:150
+#: builders/html/__init__.py:1385
#, python-format
-msgid "invalid value for member-order option: %s"
+msgid "html_static_path entry %r is placed inside outdir"
msgstr ""
-#: ext/autodoc/__init__.py:158
+#: builders/html/__init__.py:1390
#, python-format
-msgid "invalid value for class-doc-from option: %s"
+msgid "html_static_path entry %r does not exist"
msgstr ""
-#: ext/autodoc/__init__.py:460
+#: builders/html/__init__.py:1401 builders/latex/__init__.py:497
#, python-format
-msgid "invalid signature for auto%s (%r)"
+msgid "logo file %r does not exist"
msgstr ""
-#: ext/autodoc/__init__.py:579
+#: builders/html/__init__.py:1412
#, python-format
-msgid "error while formatting arguments for %s: %s"
+msgid "favicon file %r does not exist"
msgstr ""
-#: ext/autodoc/__init__.py:898
+#: builders/html/__init__.py:1425
#, python-format
msgid ""
-"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
-"%s"
+"Values in 'html_sidebars' must be a list of strings. At least one pattern "
+"has a string value: %s. Change to `html_sidebars = %r`."
msgstr ""
-#: ext/autodoc/__init__.py:1021
-#, python-format
+#: builders/html/__init__.py:1438
msgid ""
-"don't know which module to import for autodocumenting %r (try placing a "
-"\"module\" or \"currentmodule\" directive in the document, or giving an "
-"explicit module name)"
+"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
+"configuration options)"
msgstr ""
-#: ext/autodoc/__init__.py:1080
+#: builders/html/__init__.py:1454
#, python-format
-msgid "A mocked object is detected: %r"
+msgid "%s %s documentation"
+msgstr "Dokumentace pro %s %s"
+
+#: builders/latex/theming.py:87
+#, python-format
+msgid "%r doesn't have \"theme\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:1103
+#: builders/latex/theming.py:90
#, python-format
-msgid "error while formatting signature for %s: %s"
+msgid "%r doesn't have \"%s\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:1177
-msgid "\"::\" in automodule name doesn't make sense"
+#: builders/latex/transforms.py:120
+msgid "Failed to get a docname!"
msgstr ""
-#: ext/autodoc/__init__.py:1185
+#: builders/latex/transforms.py:121
#, python-format
-msgid "signature arguments or return annotation given for automodule %s"
+msgid "Failed to get a docname for source %r!"
msgstr ""
-#: ext/autodoc/__init__.py:1201
+#: builders/latex/transforms.py:487
#, python-format
-msgid ""
-"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
-"__all__"
+msgid "No footnote was found for given reference node %r"
msgstr ""
-#: ext/autodoc/__init__.py:1278
+#: builders/latex/__init__.py:115
#, python-format
+msgid "The LaTeX files are in %(outdir)s."
+msgstr ""
+
+#: builders/latex/__init__.py:118
msgid ""
-"missing attribute mentioned in :members: option: module %s, attribute %s"
+"\n"
+"Run 'make' in that directory to run these through (pdf)latex\n"
+"(use `make latexpdf' here to do that automatically)."
msgstr ""
-#: ext/autodoc/__init__.py:1505 ext/autodoc/__init__.py:1593
-#: ext/autodoc/__init__.py:3127
+#: builders/latex/__init__.py:156
+msgid "no \"latex_documents\" config value found; no documents will be written"
+msgstr ""
+
+#: builders/latex/__init__.py:167
#, python-format
-msgid "Failed to get a function signature for %s: %s"
+msgid "\"latex_documents\" config value references unknown document %s"
+msgstr ""
+
+#: builders/latex/__init__.py:421
+msgid "copying TeX support files"
msgstr ""
-#: ext/autodoc/__init__.py:1828
+#: builders/latex/__init__.py:458
+msgid "copying additional files"
+msgstr ""
+
+#: builders/latex/__init__.py:529
#, python-format
-msgid "Failed to get a constructor signature for %s: %s"
+msgid "Unknown configure key: latex_elements[%r], ignored."
msgstr ""
-#: ext/autodoc/__init__.py:1966
+#: builders/latex/__init__.py:537
#, python-format
-msgid "Bases: %s"
+msgid "Unknown theme option: latex_theme_options[%r], ignored."
+msgstr ""
+
+#: environment/collectors/toctree.py:259
+#, python-format
+msgid "%s is already assigned section numbers (nested numbered toctree?)"
msgstr ""
-#: ext/autodoc/__init__.py:1985
+#: environment/collectors/asset.py:98
#, python-format
-msgid "missing attribute %s in object %s"
+msgid "image file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2081 ext/autodoc/__init__.py:2110
-#: ext/autodoc/__init__.py:2204
+#: environment/collectors/asset.py:126
#, python-format
-msgid "alias of %s"
+msgid "image file %s not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2097
+#: environment/collectors/asset.py:165
#, python-format
-msgid "alias of TypeVar(%s)"
+msgid "download file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2456 ext/autodoc/__init__.py:2576
+#: environment/adapters/toctree.py:335
#, python-format
-msgid "Failed to get a method signature for %s: %s"
+msgid "circular toctree references detected, ignoring: %s <- %s"
msgstr ""
-#: ext/autodoc/__init__.py:2720
+#: environment/adapters/toctree.py:360
#, python-format
-msgid "Invalid __slots__ found on %s. Ignored."
+msgid ""
+"toctree contains reference to document %r that doesn't have a title: no link"
+" will be generated"
msgstr ""
-#: ext/autodoc/preserve_defaults.py:195
+#: environment/adapters/toctree.py:375
#, python-format
-msgid "Failed to parse a default argument value for %r: %s"
+msgid "toctree contains reference to non-included document %r"
msgstr ""
-#: ext/autodoc/type_comment.py:151
+#: environment/adapters/toctree.py:378
#, python-format
-msgid "Failed to update signature for %r: parameter not found: %s"
+msgid "toctree contains reference to non-existing document %r"
msgstr ""
-#: ext/autodoc/type_comment.py:154
+#: environment/adapters/indexentries.py:122
#, python-format
-msgid "Failed to parse type_comment for %r: %s"
+msgid "see %s"
+msgstr "viz %s"
+
+#: environment/adapters/indexentries.py:132
+#, python-format
+msgid "see also %s"
+msgstr "viz také %s"
+
+#: environment/adapters/indexentries.py:140
+#, python-format
+msgid "unknown index entry type %r"
msgstr ""
diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo
index 31232b73332..44fddec6d8c 100644
Binary files a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo differ
diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po
index b613158d446..3f0ac1d9f41 100644
--- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po
+++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2025-02-18 00:33+0000\n"
+"POT-Creation-Date: 2025-12-01 16:14+0000\n"
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
"Last-Translator: Geraint Palmer , 2016\n"
"Language-Team: Welsh (http://app.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n"
@@ -20,6 +20,127 @@ msgstr ""
"Language: cy\n"
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n"
+#: roles.py:205
+#, python-format
+msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgstr ""
+
+#: roles.py:228
+#, python-format
+msgid "invalid CVE number %s"
+msgstr ""
+
+#: roles.py:250
+#, python-format
+msgid "Common Weakness Enumeration; CWE %s"
+msgstr ""
+
+#: roles.py:273
+#, python-format
+msgid "invalid CWE number %s"
+msgstr ""
+
+#: roles.py:293
+#, python-format
+msgid "Python Enhancement Proposals; PEP %s"
+msgstr "Python Enhancement Proposals; PEP %s"
+
+#: roles.py:316
+#, python-format
+msgid "invalid PEP number %s"
+msgstr ""
+
+#: roles.py:354
+#, python-format
+msgid "invalid RFC number %s"
+msgstr ""
+
+#: theming.py:117
+#, python-format
+msgid ""
+"Theme configuration sections other than [theme] and [options] are not "
+"supported (tried to get a value from %r)."
+msgstr ""
+
+#: theming.py:122
+#, python-format
+msgid "setting %s.%s occurs in none of the searched theme configs"
+msgstr ""
+
+#: theming.py:137
+#, python-format
+msgid "unsupported theme option %r given"
+msgstr ""
+
+#: theming.py:218
+#, python-format
+msgid "file %r on theme path is not a valid zipfile or contains no theme"
+msgstr ""
+
+#: theming.py:238
+#, python-format
+msgid "no theme named %r found (missing theme.toml?)"
+msgstr ""
+
+#: theming.py:278
+#, python-format
+msgid "The %r theme has circular inheritance"
+msgstr ""
+
+#: theming.py:286
+#, python-format
+msgid ""
+"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
+"are: %s"
+msgstr ""
+
+#: theming.py:292
+#, python-format
+msgid "The %r theme has too many ancestors"
+msgstr ""
+
+#: theming.py:320
+#, python-format
+msgid "no theme configuration file found in %r"
+msgstr ""
+
+#: theming.py:345 theming.py:398
+#, python-format
+msgid "theme %r doesn't have the \"theme\" table"
+msgstr ""
+
+#: theming.py:349
+#, python-format
+msgid "The %r theme \"[theme]\" table is not a table"
+msgstr ""
+
+#: theming.py:353 theming.py:401
+#, python-format
+msgid "The %r theme must define the \"theme.inherit\" setting"
+msgstr ""
+
+#: theming.py:357
+#, python-format
+msgid "The %r theme \"[options]\" table is not a table"
+msgstr ""
+
+#: theming.py:376
+#, python-format
+msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+msgstr ""
+
+#: project.py:72
+#, python-format
+msgid ""
+"multiple files found for the document \"%s\": %s\n"
+"Use %r for the build."
+msgstr ""
+
+#: project.py:87
+#, python-format
+msgid "Ignored unreadable document %r."
+msgstr ""
+
#: extension.py:58
#, python-format
msgid ""
@@ -34,127 +155,154 @@ msgid ""
"cannot be built with the loaded version (%s)."
msgstr ""
-#: application.py:212
+#: highlighting.py:170
+#, python-format
+msgid "Pygments lexer name %r is not known"
+msgstr ""
+
+#: highlighting.py:209
+#, python-format
+msgid ""
+"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
+"Retrying in relaxed mode."
+msgstr ""
+
+#: events.py:92
+#, python-format
+msgid "Event %r already present"
+msgstr ""
+
+#: events.py:386
+#, python-format
+msgid "Unknown event name: %s"
+msgstr ""
+
+#: events.py:451
+#, python-format
+msgid "Handler %r for event %r threw an exception"
+msgstr ""
+
+#: application.py:218
#, python-format
msgid "Cannot find source directory (%s)"
msgstr ""
-#: application.py:217
+#: application.py:223
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
-#: application.py:222
+#: application.py:228
msgid "Source directory and destination directory cannot be identical"
msgstr ""
-#: application.py:252
+#: application.py:258
#, python-format
msgid "Running Sphinx v%s"
msgstr ""
-#: application.py:278
+#: application.py:286
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr ""
-#: application.py:297
+#: application.py:305
msgid "making output directory"
msgstr ""
-#: application.py:302 registry.py:538
+#: application.py:310 registry.py:540
#, python-format
msgid "while setting up extension %s:"
msgstr ""
-#: application.py:309
+#: application.py:317
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
-#: application.py:346
+#: application.py:360
#, python-format
msgid "loading translations [%s]... "
msgstr ""
-#: application.py:370 util/display.py:89
+#: application.py:384 util/display.py:89
msgid "done"
msgstr ""
-#: application.py:372
+#: application.py:386
msgid "not available for built-in messages"
msgstr ""
-#: application.py:386
+#: application.py:400
msgid "loading pickled environment"
msgstr ""
-#: application.py:394
+#: application.py:408
#, python-format
msgid "failed: %s"
msgstr ""
-#: application.py:407
+#: application.py:423
msgid "No builder selected, using default: html"
msgstr ""
-#: application.py:439
+#: application.py:455
msgid "build finished with problems."
msgstr ""
-#: application.py:441
+#: application.py:457
msgid "build succeeded."
msgstr ""
-#: application.py:446
+#: application.py:462
msgid ""
"build finished with problems, 1 warning (with warnings treated as errors)."
msgstr ""
-#: application.py:450
+#: application.py:466
msgid "build finished with problems, 1 warning."
msgstr ""
-#: application.py:452
+#: application.py:468
msgid "build succeeded, 1 warning."
msgstr ""
-#: application.py:458
+#: application.py:474
#, python-format
msgid ""
"build finished with problems, %s warnings (with warnings treated as errors)."
msgstr ""
-#: application.py:462
+#: application.py:478
#, python-format
msgid "build finished with problems, %s warnings."
msgstr ""
-#: application.py:464
+#: application.py:480
#, python-format
msgid "build succeeded, %s warnings."
msgstr ""
-#: application.py:1026
+#: application.py:1020
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
-#: application.py:1119
+#: application.py:1113
#, python-format
msgid "directive %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1145 application.py:1173
+#: application.py:1139 application.py:1167
#, python-format
msgid "role %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1770
+#: application.py:1766
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@@ -162,12 +310,12 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1775
+#: application.py:1771
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
-#: application.py:1779
+#: application.py:1775
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@@ -175,82 +323,214 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1784
+#: application.py:1780
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
-#: application.py:1792 application.py:1796
+#: application.py:1788 application.py:1792
#, python-format
msgid "doing serial %s"
msgstr ""
-#: config.py:355
+#: registry.py:162
#, python-format
-msgid "config directory doesn't contain a conf.py file (%s)"
+msgid "Builder class %s has no \"name\" attribute"
+msgstr ""
+
+#: registry.py:166
+#, python-format
+msgid "Builder %r already exists (in module %s)"
+msgstr ""
+
+#: registry.py:182
+#, python-format
+msgid "Builder name %s not registered or available through entry point"
+msgstr ""
+
+#: registry.py:192
+#, python-format
+msgid "Builder name %s not registered"
+msgstr ""
+
+#: registry.py:199
+#, python-format
+msgid "domain %s already registered"
+msgstr ""
+
+#: registry.py:223 registry.py:244 registry.py:257
+#, python-format
+msgid "domain %s not yet registered"
+msgstr ""
+
+#: registry.py:230
+#, python-format
+msgid "The %r directive is already registered to domain %s"
+msgstr ""
+
+#: registry.py:248
+#, python-format
+msgid "The %r role is already registered to domain %s"
+msgstr ""
+
+#: registry.py:261
+#, python-format
+msgid "The %r index is already registered to domain %s"
+msgstr ""
+
+#: registry.py:308
+#, python-format
+msgid "The %r object_type is already registered"
+msgstr ""
+
+#: registry.py:339
+#, python-format
+msgid "The %r crossref_type is already registered"
+msgstr ""
+
+#: registry.py:348
+#, python-format
+msgid "source_suffix %r is already registered"
+msgstr ""
+
+#: registry.py:358
+#, python-format
+msgid "source_parser for %r is already registered"
+msgstr ""
+
+#: registry.py:367
+#, python-format
+msgid "Source parser for %s not registered"
+msgstr ""
+
+#: registry.py:388
+#, python-format
+msgid "Translator for %r already exists"
+msgstr ""
+
+#: registry.py:405
+#, python-format
+msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
msgstr ""
-#: config.py:366
+#: registry.py:498
+#, python-format
+msgid "enumerable_node %r already registered"
+msgstr ""
+
+#: registry.py:514
+#, python-format
+msgid "math renderer %s is already registered"
+msgstr ""
+
+#: registry.py:531
+#, python-format
msgid ""
-"Invalid configuration value found: 'language = None'. Update your "
-"configuration to a valid language code. Falling back to 'en' (English)."
+"the extension %r was already merged with Sphinx since version %s; this "
+"extension is ignored."
+msgstr ""
+
+#: registry.py:545
+msgid "Original exception:\n"
+msgstr ""
+
+#: registry.py:547
+#, python-format
+msgid "Could not import extension %s"
+msgstr ""
+
+#: registry.py:554
+#, python-format
+msgid ""
+"extension %r has no setup() function; is it really a Sphinx extension "
+"module?"
+msgstr ""
+
+#: registry.py:567
+#, python-format
+msgid ""
+"The %s extension used by this project needs at least Sphinx v%s; it "
+"therefore cannot be built with this version."
+msgstr ""
+
+#: registry.py:579
+#, python-format
+msgid ""
+"extension %r returned an unsupported object from its setup() function; it "
+"should return None or a metadata dictionary"
+msgstr ""
+
+#: registry.py:605
+#, python-format
+msgid "`None` is not a valid filetype for %r."
+msgstr ""
+
+#: config.py:351
+#, python-format
+msgid "config directory doesn't contain a conf.py file (%s)"
msgstr ""
-#: config.py:394
+#: config.py:374
#, python-format
msgid "'%s' must be '0' or '1', got '%s'"
msgstr ""
-#: config.py:399
+#: config.py:379
#, python-format
msgid ""
"cannot override dictionary config setting %r, ignoring (use %r to set "
"individual elements)"
msgstr ""
-#: config.py:411
+#: config.py:391
#, python-format
msgid "invalid number %r for config value %r, ignoring"
msgstr ""
-#: config.py:419
+#: config.py:399
#, python-format
msgid "cannot override config setting %r with unsupported type, ignoring"
msgstr ""
-#: config.py:442
+#: config.py:422
#, python-format
msgid "unknown config value %r in override, ignoring"
msgstr ""
-#: config.py:496
+#: config.py:476
#, python-format
msgid "No such config value: %r"
msgstr ""
-#: config.py:524
+#: config.py:504
#, python-format
msgid "Config value %r already present"
msgstr ""
-#: config.py:561
+#: config.py:541
#, python-format
msgid ""
"cannot cache unpickleable configuration value: %r (because it contains a "
"function, class, or module object)"
msgstr ""
-#: config.py:603
+#: config.py:577
+msgid ""
+"Invalid configuration value found: 'language = None'. Update your "
+"configuration to a valid language code. Falling back to 'en' (English)."
+msgstr ""
+
+#: config.py:599
#, python-format
msgid "There is a syntax error in your configuration file: %s\n"
msgstr ""
-#: config.py:607
+#: config.py:603
msgid ""
"The configuration file (or one of the modules it imports) called sys.exit()"
msgstr ""
-#: config.py:615
+#: config.py:611
#, python-format
msgid ""
"There is a programmable error in your configuration file:\n"
@@ -258,468 +538,624 @@ msgid ""
"%s"
msgstr ""
-#: config.py:637
+#: config.py:633
#, python-format
msgid "Failed to convert %r to a frozenset"
msgstr ""
-#: config.py:655 config.py:663
+#: config.py:651 config.py:659
#, python-format
msgid "Converting `source_suffix = %r` to `source_suffix = %r`."
msgstr ""
-#: config.py:669
+#: config.py:665
#, python-format
msgid ""
"The config value `source_suffix' expects a dictionary, a string, or a list "
"of strings. Got `%r' instead (type %s)."
msgstr ""
-#: config.py:690
+#: config.py:686
#, python-format
msgid "Section %s"
msgstr ""
-#: config.py:691
+#: config.py:687
#, python-format
msgid "Fig. %s"
msgstr "Ffig. %s"
-#: config.py:692
+#: config.py:688
#, python-format
msgid "Table %s"
msgstr "Tabl %s"
-#: config.py:693
+#: config.py:689
#, python-format
msgid "Listing %s"
msgstr "Listing %s"
-#: config.py:802
+#: config.py:798
#, python-brace-format
msgid ""
"The config value `{name}` has to be a one of {candidates}, but `{current}` "
"is given."
msgstr ""
-#: config.py:833
+#: config.py:829
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}'; expected "
"{permitted}."
msgstr ""
-#: config.py:850
+#: config.py:846
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}', defaults to "
"`{default.__name__}'."
msgstr ""
-#: config.py:862
+#: config.py:858
#, python-format
msgid "primary_domain %r not found, ignored."
msgstr ""
-#: config.py:882
+#: config.py:878
msgid ""
"Sphinx now uses \"index\" as the master document by default. To keep pre-2.0"
" behaviour, set \"master_doc = 'contents'\"."
msgstr ""
-#: highlighting.py:170
-#, python-format
-msgid "Pygments lexer name %r is not known"
+#: config.py:892
+msgid ""
+"Support for source encodings other than UTF-8 is deprecated and will be "
+"removed in Sphinx 10. Please comment at https://github.com/sphinx-"
+"doc/sphinx/issues/13665 if this causes a problem."
msgstr ""
-#: highlighting.py:209
-#, python-format
-msgid ""
-"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
-"Retrying in relaxed mode."
+#: environment/__init__.py:89
+msgid "new config"
msgstr ""
-#: theming.py:115
-#, python-format
-msgid ""
-"Theme configuration sections other than [theme] and [options] are not "
-"supported (tried to get a value from %r)."
+#: environment/__init__.py:90
+msgid "config changed"
msgstr ""
-#: theming.py:120
-#, python-format
-msgid "setting %s.%s occurs in none of the searched theme configs"
+#: environment/__init__.py:91
+msgid "extensions changed"
msgstr ""
-#: theming.py:135
-#, python-format
-msgid "unsupported theme option %r given"
+#: environment/__init__.py:261
+msgid "build environment version not current"
msgstr ""
-#: theming.py:208
-#, python-format
-msgid "file %r on theme path is not a valid zipfile or contains no theme"
+#: environment/__init__.py:263
+msgid "source directory has changed"
msgstr ""
-#: theming.py:228
+#: environment/__init__.py:350
#, python-format
-msgid "no theme named %r found (missing theme.toml?)"
+msgid "The configuration has changed (1 option: %r)"
msgstr ""
-#: theming.py:268
+#: environment/__init__.py:355
#, python-format
-msgid "The %r theme has circular inheritance"
+msgid "The configuration has changed (%d options: %s)"
msgstr ""
-#: theming.py:276
+#: environment/__init__.py:361
#, python-format
-msgid ""
-"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
-"are: %s"
+msgid "The configuration has changed (%d options: %s, ...)"
msgstr ""
-#: theming.py:282
-#, python-format
-msgid "The %r theme has too many ancestors"
+#: environment/__init__.py:404
+msgid ""
+"This environment is incompatible with the selected builder, please choose "
+"another doctree directory."
msgstr ""
-#: theming.py:310
+#: environment/__init__.py:518
#, python-format
-msgid "no theme configuration file found in %r"
+msgid "Failed to scan documents in %s: %r"
msgstr ""
-#: theming.py:335 theming.py:388
+#: environment/__init__.py:645 ext/intersphinx/_resolve.py:238
#, python-format
-msgid "theme %r doesn't have the \"theme\" table"
+msgid "Domain %r is not registered"
msgstr ""
-#: theming.py:339
-#, python-format
-msgid "The %r theme \"[theme]\" table is not a table"
+#: environment/__init__.py:811
+msgid "document isn't included in any toctree"
msgstr ""
-#: theming.py:343 theming.py:391
-#, python-format
-msgid "The %r theme must define the \"theme.inherit\" setting"
+#: environment/__init__.py:922
+msgid "self referenced toctree found. Ignored."
msgstr ""
-#: theming.py:347
+#: environment/__init__.py:952
#, python-format
-msgid "The %r theme \"[options]\" table is not a table"
+msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
msgstr ""
-#: theming.py:366
-#, python-format
-msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
-msgstr ""
+#: locale/__init__.py:229
+msgid "Attention"
+msgstr "Sylw"
-#: events.py:77
-#, python-format
-msgid "Event %r already present"
-msgstr ""
+#: locale/__init__.py:230
+msgid "Caution"
+msgstr "Gofal"
-#: events.py:370
-#, python-format
-msgid "Unknown event name: %s"
-msgstr ""
+#: locale/__init__.py:231
+msgid "Danger"
+msgstr "Perygl"
+
+#: locale/__init__.py:232
+msgid "Error"
+msgstr "Gwall"
+
+#: locale/__init__.py:233
+msgid "Hint"
+msgstr "Awgrym"
+
+#: locale/__init__.py:234
+msgid "Important"
+msgstr "Pwysig"
+
+#: locale/__init__.py:235
+msgid "Note"
+msgstr "Nodyn"
+
+#: locale/__init__.py:236
+msgid "See also"
+msgstr "Gweler hefyd"
+
+#: locale/__init__.py:237
+msgid "Tip"
+msgstr "Awgrym"
+
+#: locale/__init__.py:238
+msgid "Warning"
+msgstr "Rhybudd"
-#: events.py:416
+#: builders/texinfo.py:41
#, python-format
-msgid "Handler %r for event %r threw an exception"
+msgid "The Texinfo files are in %(outdir)s."
msgstr ""
-#: project.py:72
-#, python-format
+#: builders/texinfo.py:44
msgid ""
-"multiple files found for the document \"%s\": %s\n"
-"Use %r for the build."
+"\n"
+"Run 'make' in that directory to run these through makeinfo\n"
+"(use 'make info' here to do that automatically)."
msgstr ""
-#: project.py:87
-#, python-format
-msgid "Ignored unreadable document %r."
+#: builders/texinfo.py:73
+msgid "no \"texinfo_documents\" config value found; no documents will be written"
msgstr ""
-#: registry.py:167
+#: builders/texinfo.py:85
#, python-format
-msgid "Builder class %s has no \"name\" attribute"
+msgid "\"texinfo_documents\" config value references unknown document %s"
msgstr ""
-#: registry.py:171
+#: builders/latex/__init__.py:310 builders/texinfo.py:105
#, python-format
-msgid "Builder %r already exists (in module %s)"
+msgid "processing %s"
msgstr ""
-#: registry.py:187
-#, python-format
-msgid "Builder name %s not registered or available through entry point"
+#: builders/latex/__init__.py:332 builders/manpage.py:54
+#: builders/singlehtml.py:176 builders/texinfo.py:111
+msgid "writing"
msgstr ""
-#: registry.py:197
-#, python-format
-msgid "Builder name %s not registered"
+#: builders/latex/__init__.py:398 builders/texinfo.py:160
+msgid "resolving references..."
msgstr ""
-#: registry.py:204
-#, python-format
-msgid "domain %s already registered"
-msgstr ""
+#: builders/latex/__init__.py:409 builders/texinfo.py:170
+msgid " (in "
+msgstr " (yn "
-#: registry.py:228 registry.py:249 registry.py:262
-#, python-format
-msgid "domain %s not yet registered"
+#: builders/_epub_base.py:425 builders/html/__init__.py:768
+#: builders/latex/__init__.py:474 builders/texinfo.py:186
+msgid "copying images... "
msgstr ""
-#: registry.py:235
+#: builders/_epub_base.py:447 builders/latex/__init__.py:489
+#: builders/texinfo.py:203
#, python-format
-msgid "The %r directive is already registered to domain %s"
+msgid "cannot copy image file %r: %s"
msgstr ""
-#: registry.py:253
-#, python-format
-msgid "The %r role is already registered to domain %s"
+#: builders/texinfo.py:210
+msgid "copying Texinfo support files"
msgstr ""
-#: registry.py:266
+#: builders/texinfo.py:218
#, python-format
-msgid "The %r index is already registered to domain %s"
+msgid "error writing file Makefile: %s"
msgstr ""
-#: registry.py:313
+#: builders/manpage.py:37
#, python-format
-msgid "The %r object_type is already registered"
+msgid "The manual pages are in %(outdir)s."
msgstr ""
-#: registry.py:344
-#, python-format
-msgid "The %r crossref_type is already registered"
+#: builders/manpage.py:45
+msgid "no \"man_pages\" config value found; no manual pages will be written"
msgstr ""
-#: registry.py:353
+#: builders/manpage.py:64
#, python-format
-msgid "source_suffix %r is already registered"
+msgid "\"man_pages\" config value references unknown document %s"
msgstr ""
-#: registry.py:363
+#: builders/singlehtml.py:35
#, python-format
-msgid "source_parser for %r is already registered"
+msgid "The HTML page is in %(outdir)s."
msgstr ""
-#: registry.py:372
-#, python-format
-msgid "Source parser for %s not registered"
+#: builders/singlehtml.py:171
+msgid "assembling single document"
msgstr ""
-#: registry.py:390
-#, python-format
-msgid "Translator for %r already exists"
+#: builders/singlehtml.py:189
+msgid "writing additional files"
msgstr ""
-#: registry.py:407
-#, python-format
-msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
+#: builders/dummy.py:19
+msgid "The dummy builder generates no files."
msgstr ""
-#: registry.py:496
+#: builders/gettext.py:243
#, python-format
-msgid "enumerable_node %r already registered"
+msgid "The message catalogs are in %(outdir)s."
msgstr ""
-#: registry.py:512
+#: builders/__init__.py:400 builders/gettext.py:264
#, python-format
-msgid "math renderer %s is already registered"
+msgid "building [%s]: "
msgstr ""
-#: registry.py:529
+#: builders/gettext.py:265
#, python-format
-msgid ""
-"the extension %r was already merged with Sphinx since version %s; this "
-"extension is ignored."
+msgid "targets for %d template files"
msgstr ""
-#: registry.py:543
-msgid "Original exception:\n"
+#: builders/gettext.py:271
+msgid "reading templates... "
msgstr ""
-#: registry.py:545
-#, python-format
-msgid "Could not import extension %s"
+#: builders/gettext.py:310
+msgid "writing message catalogs... "
msgstr ""
-#: registry.py:552
+#: builders/linkcheck.py:87
#, python-format
-msgid ""
-"extension %r has no setup() function; is it really a Sphinx extension "
-"module?"
+msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
msgstr ""
-#: registry.py:565
+#: builders/linkcheck.py:159
#, python-format
-msgid ""
-"The %s extension used by this project needs at least Sphinx v%s; it "
-"therefore cannot be built with this version."
+msgid "broken link: %s (%s)"
msgstr ""
-#: registry.py:577
+#: builders/linkcheck.py:561
#, python-format
-msgid ""
-"extension %r returned an unsupported object from its setup() function; it "
-"should return None or a metadata dictionary"
+msgid "Anchor '%s' not found"
msgstr ""
-#: registry.py:612
-#, python-format
-msgid "`None` is not a valid filetype for %r."
+#: builders/linkcheck.py:789
+msgid "linkcheck_allowed_redirects. Expected a dictionary."
msgstr ""
-#: roles.py:206
+#: builders/linkcheck.py:799
#, python-format
-msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
-#: roles.py:229
+#: builders/epub3.py:83
#, python-format
-msgid "invalid CVE number %s"
+msgid "The ePub file is in %(outdir)s."
msgstr ""
-#: roles.py:251
-#, python-format
-msgid "Common Weakness Enumeration; CWE %s"
+#: builders/epub3.py:188
+msgid "writing nav.xhtml file..."
msgstr ""
-#: roles.py:274
-#, python-format
-msgid "invalid CWE number %s"
+#: builders/epub3.py:224
+msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
msgstr ""
-#: roles.py:294
-#, python-format
-msgid "Python Enhancement Proposals; PEP %s"
-msgstr "Python Enhancement Proposals; PEP %s"
-
-#: roles.py:317
-#, python-format
-msgid "invalid PEP number %s"
+#: builders/epub3.py:230
+msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
msgstr ""
-#: roles.py:355
-#, python-format
-msgid "invalid RFC number %s"
+#: builders/epub3.py:235
+msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
msgstr ""
-#: ext/linkcode.py:86 ext/viewcode.py:226
-msgid "[source]"
-msgstr "[ffynhonnell]"
-
-#: ext/viewcode.py:289
-msgid "highlighting module code... "
+#: builders/epub3.py:241
+msgid "conf value \"epub_author\" should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:320
-msgid "[docs]"
-msgstr "[docs]"
+#: builders/epub3.py:245
+msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:346
-msgid "Module code"
-msgstr "Cod y modiwl"
+#: builders/epub3.py:250
+msgid "conf value \"epub_description\" should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:353
-#, python-format
-msgid "Source code for %s
"
-msgstr "Cod ffynhonnell ar gyfer %s
"
+#: builders/epub3.py:254
+msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:380
-msgid "Overview: module code"
-msgstr "Trosolwg: cod y modiwl"
+#: builders/epub3.py:259
+msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:381
-msgid "All modules for which code is available
"
-msgstr "Holl fodiwlau lle mae'r cod ar gael
"
+#: builders/epub3.py:265
+msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+msgstr ""
-#: ext/extlinks.py:82
-#, python-format
-msgid ""
-"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+#: builders/epub3.py:268
+msgid "conf value \"version\" should not be empty for EPUB3"
msgstr ""
-#: ext/autosectionlabel.py:52
+#: builders/epub3.py:282 builders/html/__init__.py:1296
#, python-format
-msgid "section \"%s\" gets labeled as \"%s\""
+msgid "invalid css_file: %r, ignored"
msgstr ""
-#: domains/std/__init__.py:833 domains/std/__init__.py:960
-#: ext/autosectionlabel.py:61
+#: builders/xml.py:29
#, python-format
-msgid "duplicate label %s, other instance in %s"
+msgid "The XML files are in %(outdir)s."
msgstr ""
-#: ext/imgmath.py:387 ext/mathjax.py:60
-msgid "Link to this equation"
+#: builders/html/__init__.py:1242 builders/text.py:71 builders/xml.py:81
+#, python-format
+msgid "error writing file %s: %s"
msgstr ""
-#: ext/duration.py:90
-msgid ""
-"====================== slowest reading durations ======================="
+#: builders/xml.py:103
+#, python-format
+msgid "The pseudo-XML files are in %(outdir)s."
msgstr ""
-#: ext/doctest.py:118
+#: builders/_epub_base.py:223
#, python-format
-msgid "missing '+' or '-' in '%s' option."
+msgid "duplicated ToC entry found: %s"
msgstr ""
-#: ext/doctest.py:124
+#: builders/_epub_base.py:436
#, python-format
-msgid "'%s' is not a valid option."
+msgid "cannot read image file %r: copying it instead"
msgstr ""
-#: ext/doctest.py:139
+#: builders/_epub_base.py:467
#, python-format
-msgid "'%s' is not a valid pyversion option"
+msgid "cannot write image file %r: %s"
msgstr ""
-#: ext/doctest.py:226
-msgid "invalid TestCode type"
+#: builders/_epub_base.py:479
+msgid "Pillow not found - copying image files"
msgstr ""
-#: ext/doctest.py:297
+#: builders/_epub_base.py:514
+msgid "writing mimetype file..."
+msgstr ""
+
+#: builders/_epub_base.py:523
+msgid "writing META-INF/container.xml file..."
+msgstr ""
+
+#: builders/_epub_base.py:561
+msgid "writing content.opf file..."
+msgstr ""
+
+#: builders/_epub_base.py:594
+#, python-format
+msgid "unknown mimetype for %s, ignoring"
+msgstr ""
+
+#: builders/_epub_base.py:749
+msgid "node has an invalid level"
+msgstr ""
+
+#: builders/_epub_base.py:769
+msgid "writing toc.ncx file..."
+msgstr ""
+
+#: builders/_epub_base.py:802
+#, python-format
+msgid "writing %s file..."
+msgstr ""
+
+#: builders/text.py:27
+#, python-format
+msgid "The text files are in %(outdir)s."
+msgstr ""
+
+#: builders/__init__.py:229
+#, python-format
+msgid "a suitable image for %s builder not found: %s (%s)"
+msgstr ""
+
+#: builders/__init__.py:237
+#, python-format
+msgid "a suitable image for %s builder not found: %s"
+msgstr ""
+
+#: builders/__init__.py:260
+msgid "building [mo]: "
+msgstr ""
+
+#: builders/__init__.py:263 builders/__init__.py:771 builders/__init__.py:795
+msgid "writing output... "
+msgstr ""
+
+#: builders/__init__.py:280
+#, python-format
+msgid "all of %d po files"
+msgstr ""
+
+#: builders/__init__.py:302
+#, python-format
+msgid "targets for %d po files that are specified"
+msgstr ""
+
+#: builders/__init__.py:314
+#, python-format
+msgid "targets for %d po files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:324
+msgid "all source files"
+msgstr ""
+
+#: builders/__init__.py:335
+#, python-format
+msgid "file %r given on command line does not exist, "
+msgstr ""
+
+#: builders/__init__.py:342
#, python-format
msgid ""
-"Testing of doctests in the sources finished, look at the results in "
-"%(outdir)s/output.txt."
+"file %r given on command line is not under the source directory, ignoring"
msgstr ""
-#: ext/doctest.py:457
+#: builders/__init__.py:353
#, python-format
-msgid "no code/output in %s block at %s:%s"
+msgid "file %r given on command line is not a valid document, ignoring"
msgstr ""
-#: ext/doctest.py:568
+#: builders/__init__.py:366
#, python-format
-msgid "ignoring invalid doctest code: %r"
+msgid "%d source files given on command line"
+msgstr ""
+
+#: builders/__init__.py:382
+#, python-format
+msgid "targets for %d source files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:411
+msgid "looking for now-outdated files... "
+msgstr ""
+
+#: builders/__init__.py:415
+#, python-format
+msgid "%d found"
+msgstr ""
+
+#: builders/__init__.py:417
+msgid "none found"
+msgstr ""
+
+#: builders/__init__.py:424
+msgid "pickling environment"
+msgstr ""
+
+#: builders/__init__.py:431
+msgid "checking consistency"
+msgstr ""
+
+#: builders/__init__.py:435
+msgid "no targets are out of date."
+msgstr ""
+
+#: builders/__init__.py:474
+msgid "updating environment: "
+msgstr ""
+
+#: builders/__init__.py:499
+#, python-format
+msgid "%s added, %s changed, %s removed"
msgstr ""
-#: ext/imgmath.py:162
+#: builders/__init__.py:536
#, python-format
msgid ""
-"LaTeX command %r cannot be run (needed for math display), check the "
-"imgmath_latex setting"
+"Sphinx is unable to load the master document (%s) because it matches a "
+"built-in exclude pattern %r. Please move your master document to a different"
+" location."
msgstr ""
-#: ext/imgmath.py:181
+#: builders/__init__.py:545
#, python-format
msgid ""
-"%s command %r cannot be run (needed for math display), check the imgmath_%s "
-"setting"
+"Sphinx is unable to load the master document (%s) because it matches an "
+"exclude pattern specified in conf.py, %r. Please remove this pattern from "
+"conf.py."
msgstr ""
-#: ext/imgmath.py:344
+#: builders/__init__.py:556
#, python-format
-msgid "display latex %r: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s) because it is not included"
+" in the custom include_patterns = %r. Ensure that a pattern in "
+"include_patterns matches the master document."
msgstr ""
-#: ext/imgmath.py:380
+#: builders/__init__.py:563
#, python-format
-msgid "inline latex %r: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s). The master document must "
+"be within the source directory or a subdirectory of it."
+msgstr ""
+
+#: builders/__init__.py:581 builders/__init__.py:598
+msgid "reading sources... "
+msgstr ""
+
+#: builders/__init__.py:725
+#, python-format
+msgid "docnames to write: %s"
+msgstr ""
+
+#: builders/__init__.py:727
+msgid "no docnames to write!"
+msgstr ""
+
+#: builders/__init__.py:740
+msgid "preparing documents"
+msgstr ""
+
+#: builders/__init__.py:743
+msgid "copying assets"
+msgstr ""
+
+#: builders/changes.py:29
+#, python-format
+msgid "The overview file is in %(outdir)s."
+msgstr ""
+
+#: builders/changes.py:65
+#, python-format
+msgid "no changes in version %s."
+msgstr ""
+
+#: builders/changes.py:67
+msgid "writing summary file..."
+msgstr ""
+
+#: builders/changes.py:79
+msgid "Builtins"
+msgstr ""
+
+#: builders/changes.py:81
+msgid "Module level"
+msgstr "Lefel modiwl"
+
+#: builders/changes.py:137
+msgid "copying source files..."
+msgstr ""
+
+#: builders/changes.py:146
+#, python-format
+msgid "could not read %r for changelog creation"
msgstr ""
#: ext/coverage.py:48
@@ -740,9 +1176,10 @@ msgid ""
msgstr ""
#: ext/coverage.py:158
+#, python-format
msgid ""
"the following modules are specified in coverage_modules but were not "
-"documented"
+"documented: %s"
msgstr ""
#: ext/coverage.py:172
@@ -777,6 +1214,34 @@ msgstr ""
msgid "undocumented python method: %s :: %s :: %s"
msgstr ""
+#: ext/extlinks.py:82
+#, python-format
+msgid ""
+"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgstr ""
+
+#: ext/todo.py:61
+msgid "Todo"
+msgstr "Todo"
+
+#: ext/todo.py:94
+#, python-format
+msgid "TODO entry found: %s"
+msgstr ""
+
+#: ext/todo.py:152
+msgid "<>"
+msgstr ""
+
+#: ext/todo.py:154
+#, python-format
+msgid "(The <> is located in %s, line %d.)"
+msgstr ""
+
+#: ext/todo.py:166
+msgid "original entry"
+msgstr "eitem wreiddiol"
+
#: ext/imgconverter.py:44
#, python-format
msgid ""
@@ -864,948 +1329,994 @@ msgstr "[graff: %s]"
msgid "[graph]"
msgstr "[graff]"
-#: ext/todo.py:61
-msgid "Todo"
-msgstr "Todo"
-
-#: ext/todo.py:94
+#: ext/imgmath.py:148
#, python-format
-msgid "TODO entry found: %s"
+msgid ""
+"LaTeX command %r cannot be run (needed for math display), check the "
+"imgmath_latex setting"
msgstr ""
-#: ext/todo.py:152
-msgid "<>"
+#: ext/imgmath.py:167
+#, python-format
+msgid ""
+"%s command %r cannot be run (needed for math display), check the imgmath_%s "
+"setting"
msgstr ""
-#: ext/todo.py:154
+#: ext/imgmath.py:326
#, python-format
-msgid "(The <> is located in %s, line %d.)"
+msgid "display latex %r: %s"
msgstr ""
-#: ext/todo.py:166
-msgid "original entry"
-msgstr "eitem wreiddiol"
+#: ext/imgmath.py:362
+#, python-format
+msgid "inline latex %r: %s"
+msgstr ""
-#: directives/code.py:66
-msgid "non-whitespace stripped by dedent"
+#: ext/imgmath.py:369 ext/mathjax.py:60
+msgid "Link to this equation"
msgstr ""
-#: directives/code.py:87
+#: ext/doctest.py:118
#, python-format
-msgid "Invalid caption: %s"
+msgid "missing '+' or '-' in '%s' option."
msgstr ""
-#: directives/code.py:131 directives/code.py:297 directives/code.py:483
+#: ext/doctest.py:124
#, python-format
-msgid "line number spec is out of range(1-%d): %r"
+msgid "'%s' is not a valid option."
msgstr ""
-#: directives/code.py:216
+#: ext/doctest.py:139
#, python-format
-msgid "Cannot use both \"%s\" and \"%s\" options"
+msgid "'%s' is not a valid pyversion option"
msgstr ""
-#: directives/code.py:231
-#, python-format
-msgid "Include file '%s' not found or reading it failed"
+#: ext/doctest.py:226
+msgid "invalid TestCode type"
msgstr ""
-#: directives/code.py:235
+#: ext/doctest.py:297
#, python-format
msgid ""
-"Encoding %r used for reading included file '%s' seems to be wrong, try "
-"giving an :encoding: option"
+"Testing of doctests in the sources finished, look at the results in "
+"%(outdir)s/output.txt."
msgstr ""
-#: directives/code.py:276
+#: ext/doctest.py:451
#, python-format
-msgid "Object named %r not found in include file %r"
-msgstr ""
-
-#: directives/code.py:309
-msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
+msgid "no code/output in %s block at %s:%s"
msgstr ""
-#: directives/code.py:314
+#: ext/doctest.py:568
#, python-format
-msgid "Line spec %r: no lines pulled from include file %r"
+msgid "ignoring invalid doctest code: %r"
msgstr ""
-#: directives/patches.py:71
-msgid ""
-"\":file:\" option for csv-table directive now recognizes an absolute path as"
-" a relative path from source directory. Please update your document."
+#: ext/autosectionlabel.py:52
+#, python-format
+msgid "section \"%s\" gets labeled as \"%s\""
msgstr ""
-#: directives/other.py:119
+#: domains/std/__init__.py:833 domains/std/__init__.py:960
+#: ext/autosectionlabel.py:61
#, python-format
-msgid "toctree glob pattern %r didn't match any documents"
+msgid "duplicate label %s, other instance in %s"
msgstr ""
-#: directives/other.py:153 environment/adapters/toctree.py:361
+#: ext/duration.py:47
#, python-format
-msgid "toctree contains reference to excluded document %r"
+msgid "Reading duration %.3fs exceeded the duration limit %.3fs"
msgstr ""
-#: directives/other.py:156
-#, python-format
-msgid "toctree contains reference to nonexisting document %r"
+#: ext/duration.py:117
+msgid ""
+"====================== total reading duration =========================="
msgstr ""
-#: directives/other.py:169
+#: ext/duration.py:124
#, python-format
-msgid "duplicated entry found in toctree: %s"
+msgid "Total time reading %d file%s: %dm %.3fs"
msgstr ""
-#: directives/other.py:203
-msgid "Section author: "
-msgstr "Awdur yr adran:"
-
-#: directives/other.py:205
-msgid "Module author: "
-msgstr "Awdur y fodiwl:"
+#: ext/duration.py:136
+msgid ""
+"====================== slowest reading durations ======================="
+msgstr ""
-#: directives/other.py:207
-msgid "Code author: "
-msgstr "Awdur y cod:"
+#: ext/duration.py:139
+#, python-format
+msgid "%.3fs %s"
+msgstr ""
-#: directives/other.py:209
-msgid "Author: "
-msgstr "Awdur:"
+#: ext/linkcode.py:86 ext/viewcode.py:232
+msgid "[source]"
+msgstr "[ffynhonnell]"
-#: directives/other.py:269
-msgid ".. acks content is not a list"
+#: ext/viewcode.py:295
+msgid "highlighting module code... "
msgstr ""
-#: directives/other.py:292
-msgid ".. hlist content is not a list"
-msgstr ""
+#: ext/viewcode.py:326
+msgid "[docs]"
+msgstr "[docs]"
-#: builders/changes.py:29
-#, python-format
-msgid "The overview file is in %(outdir)s."
-msgstr ""
+#: ext/viewcode.py:352
+msgid "Module code"
+msgstr "Cod y modiwl"
-#: builders/changes.py:56
+#: ext/viewcode.py:359
#, python-format
-msgid "no changes in version %s."
-msgstr ""
-
-#: builders/changes.py:58
-msgid "writing summary file..."
-msgstr ""
+msgid "Source code for %s
"
+msgstr "Cod ffynhonnell ar gyfer %s
"
-#: builders/changes.py:70
-msgid "Builtins"
-msgstr ""
+#: ext/viewcode.py:386
+msgid "Overview: module code"
+msgstr "Trosolwg: cod y modiwl"
-#: builders/changes.py:72
-msgid "Module level"
-msgstr "Lefel modiwl"
+#: ext/viewcode.py:387
+msgid "All modules for which code is available
"
+msgstr "Holl fodiwlau lle mae'r cod ar gael
"
-#: builders/changes.py:124
-msgid "copying source files..."
+#: domains/citation.py:75
+#, python-format
+msgid "duplicate citation %s, other instance in %s"
msgstr ""
-#: builders/changes.py:133
+#: domains/citation.py:92
#, python-format
-msgid "could not read %r for changelog creation"
+msgid "Citation [%s] is not referenced."
msgstr ""
-#: builders/manpage.py:37
+#: domains/math.py:73
#, python-format
-msgid "The manual pages are in %(outdir)s."
+msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
-#: builders/manpage.py:45
-msgid "no \"man_pages\" config value found; no manual pages will be written"
+#: domains/math.py:130 writers/latex.py:2500
+#, python-format
+msgid "Invalid math_eqref_format: %r"
msgstr ""
-#: builders/latex/__init__.py:347 builders/manpage.py:54
-#: builders/singlehtml.py:176 builders/texinfo.py:119
-msgid "writing"
+#: domains/javascript.py:183
+#, python-format
+msgid "%s() (built-in function)"
msgstr ""
-#: builders/manpage.py:71
+#: domains/javascript.py:184 domains/python/__init__.py:279
#, python-format
-msgid "\"man_pages\" config value references unknown document %s"
+msgid "%s() (%s method)"
msgstr ""
-#: builders/__init__.py:224
+#: domains/javascript.py:186
#, python-format
-msgid "a suitable image for %s builder not found: %s (%s)"
+msgid "%s() (class)"
msgstr ""
-#: builders/__init__.py:232
+#: domains/javascript.py:188
#, python-format
-msgid "a suitable image for %s builder not found: %s"
+msgid "%s (global variable or constant)"
+msgstr "%s (newidyn byd-eang neu cysonyn)"
+
+#: domains/javascript.py:190 domains/python/__init__.py:370
+#, python-format
+msgid "%s (%s attribute)"
msgstr ""
-#: builders/__init__.py:255
-msgid "building [mo]: "
+#: domains/javascript.py:274
+msgid "Arguments"
msgstr ""
-#: builders/__init__.py:258 builders/__init__.py:759 builders/__init__.py:791
-msgid "writing output... "
+#: domains/cpp/__init__.py:491 domains/javascript.py:281
+msgid "Throws"
msgstr ""
-#: builders/__init__.py:275
-#, python-format
-msgid "all of %d po files"
+#: domains/c/__init__.py:367 domains/cpp/__init__.py:504
+#: domains/javascript.py:288 domains/python/_object.py:221
+msgid "Returns"
msgstr ""
-#: builders/__init__.py:297
-#, python-format
-msgid "targets for %d po files that are specified"
+#: domains/c/__init__.py:373 domains/javascript.py:294
+#: domains/python/_object.py:227
+msgid "Return type"
msgstr ""
-#: builders/__init__.py:309
+#: domains/javascript.py:374
#, python-format
-msgid "targets for %d po files that are out of date"
+msgid "%s (module)"
msgstr ""
-#: builders/__init__.py:319
-msgid "all source files"
-msgstr ""
+#: domains/c/__init__.py:779 domains/cpp/__init__.py:943
+#: domains/javascript.py:419 domains/python/__init__.py:726
+msgid "function"
+msgstr "ffwythiant"
-#: builders/__init__.py:330
-#, python-format
-msgid "file %r given on command line does not exist, "
+#: domains/javascript.py:420 domains/python/__init__.py:730
+msgid "method"
msgstr ""
-#: builders/__init__.py:337
-#, python-format
-msgid ""
-"file %r given on command line is not under the source directory, ignoring"
+#: domains/cpp/__init__.py:941 domains/javascript.py:421
+#: domains/python/__init__.py:728
+msgid "class"
msgstr ""
-#: builders/__init__.py:348
-#, python-format
-msgid "file %r given on command line is not a valid document, ignoring"
+#: domains/javascript.py:422 domains/python/__init__.py:727
+msgid "data"
msgstr ""
-#: builders/__init__.py:361
-#, python-format
-msgid "%d source files given on command line"
+#: domains/javascript.py:423 domains/python/__init__.py:733
+msgid "attribute"
msgstr ""
-#: builders/__init__.py:377
-#, python-format
-msgid "targets for %d source files that are out of date"
-msgstr ""
+#: domains/javascript.py:424 domains/python/__init__.py:736
+msgid "module"
+msgstr "modiwl"
-#: builders/__init__.py:395 builders/gettext.py:265
+#: domains/javascript.py:458
#, python-format
-msgid "building [%s]: "
+msgid "duplicate %s description of %s, other %s in %s"
msgstr ""
-#: builders/__init__.py:406
-msgid "looking for now-outdated files... "
+#: domains/rst.py:131 domains/rst.py:190
+#, python-format
+msgid "%s (directive)"
msgstr ""
-#: builders/__init__.py:410
+#: domains/rst.py:191 domains/rst.py:202
#, python-format
-msgid "%d found"
+msgid ":%s: (directive option)"
msgstr ""
-#: builders/__init__.py:412
-msgid "none found"
+#: domains/rst.py:224
+#, python-format
+msgid "%s (role)"
msgstr ""
-#: builders/__init__.py:419
-msgid "pickling environment"
+#: domains/rst.py:234
+msgid "directive"
msgstr ""
-#: builders/__init__.py:426
-msgid "checking consistency"
+#: domains/rst.py:235
+msgid "directive-option"
msgstr ""
-#: builders/__init__.py:430
-msgid "no targets are out of date."
+#: domains/rst.py:236
+msgid "role"
msgstr ""
-#: builders/__init__.py:469
-msgid "updating environment: "
+#: domains/rst.py:262
+#, python-format
+msgid "duplicate description of %s %s, other instance in %s"
msgstr ""
-#: builders/__init__.py:494
+#: domains/changeset.py:32
#, python-format
-msgid "%s added, %s changed, %s removed"
+msgid "Added in version %s"
msgstr ""
-#: builders/__init__.py:531
+#: domains/changeset.py:33
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches a "
-"built-in exclude pattern %r. Please move your master document to a different"
-" location."
-msgstr ""
+msgid "Changed in version %s"
+msgstr "Wedi newid yn fersiwn %s"
-#: builders/__init__.py:540
+#: domains/changeset.py:34
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches an "
-"exclude pattern specified in conf.py, %r. Please remove this pattern from "
-"conf.py."
-msgstr ""
+msgid "Deprecated since version %s"
+msgstr "Dibrisiwyd ers fersiwn %s"
-#: builders/__init__.py:551
+#: domains/changeset.py:35
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it is not included"
-" in the custom include_patterns = %r. Ensure that a pattern in "
-"include_patterns matches the master document."
+msgid "Removed in version %s"
msgstr ""
-#: builders/__init__.py:558
+#: domains/__init__.py:322
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s). The master document must "
-"be within the source directory or a subdirectory of it."
+msgid "%s %s"
msgstr ""
-#: builders/__init__.py:576 builders/__init__.py:592
-msgid "reading sources... "
+#: cmd/build.py:64
+msgid "job number should be a positive number"
msgstr ""
-#: builders/__init__.py:713
-#, python-format
-msgid "docnames to write: %s"
+#: cmd/build.py:73 cmd/quickstart.py:582 ext/apidoc/_cli.py:27
+#: ext/autosummary/generate.py:876
+msgid "For more information, visit ."
msgstr ""
-#: builders/__init__.py:715
-msgid "no docnames to write!"
+#: cmd/build.py:74
+msgid ""
+"\n"
+"Generate documentation from source files.\n"
+"\n"
+"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
+"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
+"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
+"including 'conf.py'\n"
+"\n"
+"sphinx-build can create documentation in different formats. A format is\n"
+"selected by specifying the builder name on the command line; it defaults to\n"
+"HTML. Builders can also perform other tasks related to documentation\n"
+"processing.\n"
+"\n"
+"By default, everything that is outdated is built. Output only for selected\n"
+"files can be built by specifying individual filenames.\n"
msgstr ""
-#: builders/__init__.py:728
-msgid "preparing documents"
+#: cmd/build.py:100
+msgid "path to documentation source files"
msgstr ""
-#: builders/__init__.py:731
-msgid "copying assets"
+#: cmd/build.py:103
+msgid "path to output directory"
msgstr ""
-#: builders/__init__.py:883
-#, python-format
-msgid "undecodable source characters, replacing with \"?\": %r"
+#: cmd/build.py:109
+msgid ""
+"(optional) a list of specific files to rebuild. Ignored if --write-all is "
+"specified"
msgstr ""
-#: builders/epub3.py:84
-#, python-format
-msgid "The ePub file is in %(outdir)s."
+#: cmd/build.py:114
+msgid "general options"
msgstr ""
-#: builders/epub3.py:189
-msgid "writing nav.xhtml file..."
+#: cmd/build.py:121
+msgid "builder to use (default: 'html')"
msgstr ""
-#: builders/epub3.py:221
-msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
+#: cmd/build.py:131
+msgid ""
+"run in parallel with N processes, when possible. 'auto' uses the number of "
+"CPU cores"
msgstr ""
-#: builders/epub3.py:227
-msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
+#: cmd/build.py:140
+msgid "write all files (default: only write new and changed files)"
msgstr ""
-#: builders/epub3.py:232
-msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
+#: cmd/build.py:147
+msgid "don't use a saved environment, always read all files"
msgstr ""
-#: builders/epub3.py:238
-msgid "conf value \"epub_author\" should not be empty for EPUB3"
+#: cmd/build.py:150
+msgid "path options"
msgstr ""
-#: builders/epub3.py:242
-msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
+#: cmd/build.py:157
+msgid ""
+"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
msgstr ""
-#: builders/epub3.py:247
-msgid "conf value \"epub_description\" should not be empty for EPUB3"
+#: cmd/build.py:166
+msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
msgstr ""
-#: builders/epub3.py:251
-msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+#: cmd/build.py:175
+msgid "use no configuration file, only use settings from -D options"
msgstr ""
-#: builders/epub3.py:256
-msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+#: cmd/build.py:184
+msgid "override a setting in configuration file"
msgstr ""
-#: builders/epub3.py:262
-msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+#: cmd/build.py:193
+msgid "pass a value into HTML templates"
msgstr ""
-#: builders/epub3.py:265
-msgid "conf value \"version\" should not be empty for EPUB3"
+#: cmd/build.py:202
+msgid "define tag: include \"only\" blocks with TAG"
msgstr ""
-#: builders/epub3.py:279 builders/html/__init__.py:1291
-#, python-format
-msgid "invalid css_file: %r, ignored"
+#: cmd/build.py:209
+msgid "nitpicky mode: warn about all missing references"
msgstr ""
-#: builders/xml.py:31
-#, python-format
-msgid "The XML files are in %(outdir)s."
-msgstr ""
-
-#: builders/html/__init__.py:1241 builders/text.py:76 builders/xml.py:90
-#, python-format
-msgid "error writing file %s: %s"
+#: cmd/build.py:212
+msgid "console output options"
msgstr ""
-#: builders/xml.py:101
-#, python-format
-msgid "The pseudo-XML files are in %(outdir)s."
+#: cmd/build.py:219
+msgid "increase verbosity (can be repeated)"
msgstr ""
-#: builders/texinfo.py:45
-#, python-format
-msgid "The Texinfo files are in %(outdir)s."
+#: cmd/build.py:226 ext/apidoc/_cli.py:66
+msgid "no output on stdout, just warnings on stderr"
msgstr ""
-#: builders/texinfo.py:48
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through makeinfo\n"
-"(use 'make info' here to do that automatically)."
+#: cmd/build.py:233
+msgid "no output at all, not even warnings"
msgstr ""
-#: builders/texinfo.py:77
-msgid "no \"texinfo_documents\" config value found; no documents will be written"
+#: cmd/build.py:241
+msgid "do emit colored output (default: auto-detect)"
msgstr ""
-#: builders/texinfo.py:89
-#, python-format
-msgid "\"texinfo_documents\" config value references unknown document %s"
+#: cmd/build.py:249
+msgid "do not emit colored output (default: auto-detect)"
msgstr ""
-#: builders/latex/__init__.py:325 builders/texinfo.py:113
-#, python-format
-msgid "processing %s"
+#: cmd/build.py:252
+msgid "warning control options"
msgstr ""
-#: builders/latex/__init__.py:405 builders/texinfo.py:172
-msgid "resolving references..."
+#: cmd/build.py:258
+msgid "write warnings (and errors) to given file"
msgstr ""
-#: builders/latex/__init__.py:416 builders/texinfo.py:182
-msgid " (in "
-msgstr " (yn "
-
-#: builders/_epub_base.py:422 builders/html/__init__.py:779
-#: builders/latex/__init__.py:481 builders/texinfo.py:198
-msgid "copying images... "
+#: cmd/build.py:265
+msgid "turn warnings into errors"
msgstr ""
-#: builders/_epub_base.py:444 builders/latex/__init__.py:496
-#: builders/texinfo.py:215
-#, python-format
-msgid "cannot copy image file %r: %s"
+#: cmd/build.py:273
+msgid "show full traceback on exception"
msgstr ""
-#: builders/texinfo.py:222
-msgid "copying Texinfo support files"
+#: cmd/build.py:276
+msgid "run Pdb on exception"
msgstr ""
-#: builders/texinfo.py:230
-#, python-format
-msgid "error writing file Makefile: %s"
+#: cmd/build.py:282
+msgid "raise an exception on warnings"
msgstr ""
-#: builders/_epub_base.py:223
-#, python-format
-msgid "duplicated ToC entry found: %s"
+#: cmd/build.py:325
+msgid "cannot combine -a option and filenames"
msgstr ""
-#: builders/_epub_base.py:433
+#: cmd/build.py:357
#, python-format
-msgid "cannot read image file %r: copying it instead"
+msgid "cannot open warning file '%s': %s"
msgstr ""
-#: builders/_epub_base.py:464
-#, python-format
-msgid "cannot write image file %r: %s"
+#: cmd/build.py:376
+msgid "-D option argument must be in the form name=value"
msgstr ""
-#: builders/_epub_base.py:476
-msgid "Pillow not found - copying image files"
+#: cmd/build.py:383
+msgid "-A option argument must be in the form name=value"
msgstr ""
-#: builders/_epub_base.py:511
-msgid "writing mimetype file..."
+#: cmd/quickstart.py:52
+msgid "automatically insert docstrings from modules"
msgstr ""
-#: builders/_epub_base.py:520
-msgid "writing META-INF/container.xml file..."
+#: cmd/quickstart.py:53
+msgid "automatically test code snippets in doctest blocks"
msgstr ""
-#: builders/_epub_base.py:558
-msgid "writing content.opf file..."
+#: cmd/quickstart.py:54
+msgid "link between Sphinx documentation of different projects"
msgstr ""
-#: builders/_epub_base.py:591
-#, python-format
-msgid "unknown mimetype for %s, ignoring"
+#: cmd/quickstart.py:55
+msgid "write \"todo\" entries that can be shown or hidden on build"
msgstr ""
-#: builders/_epub_base.py:745
-msgid "node has an invalid level"
+#: cmd/quickstart.py:56
+msgid "checks for documentation coverage"
msgstr ""
-#: builders/_epub_base.py:765
-msgid "writing toc.ncx file..."
+#: cmd/quickstart.py:57
+msgid "include math, rendered as PNG or SVG images"
msgstr ""
-#: builders/_epub_base.py:794
-#, python-format
-msgid "writing %s file..."
+#: cmd/quickstart.py:58
+msgid "include math, rendered in the browser by MathJax"
msgstr ""
-#: builders/dummy.py:19
-msgid "The dummy builder generates no files."
+#: cmd/quickstart.py:59
+msgid "conditional inclusion of content based on config values"
msgstr ""
-#: builders/gettext.py:244
-#, python-format
-msgid "The message catalogs are in %(outdir)s."
+#: cmd/quickstart.py:60
+msgid "include links to the source code of documented Python objects"
msgstr ""
-#: builders/gettext.py:266
-#, python-format
-msgid "targets for %d template files"
+#: cmd/quickstart.py:61
+msgid "create .nojekyll file to publish the document on GitHub pages"
msgstr ""
-#: builders/gettext.py:271
-msgid "reading templates... "
+#: cmd/quickstart.py:111
+msgid "Please enter a valid path name."
msgstr ""
-#: builders/gettext.py:307
-msgid "writing message catalogs... "
+#: cmd/quickstart.py:127
+msgid "Please enter some text."
msgstr ""
-#: builders/singlehtml.py:35
+#: cmd/quickstart.py:134
#, python-format
-msgid "The HTML page is in %(outdir)s."
+msgid "Please enter one of %s."
msgstr ""
-#: builders/singlehtml.py:171
-msgid "assembling single document"
+#: cmd/quickstart.py:142
+msgid "Please enter either 'y' or 'n'."
msgstr ""
-#: builders/singlehtml.py:189
-msgid "writing additional files"
+#: cmd/quickstart.py:148
+msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
msgstr ""
-#: builders/linkcheck.py:77
+#: cmd/quickstart.py:230
#, python-format
-msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
+msgid "Welcome to the Sphinx %s quickstart utility."
msgstr ""
-#: builders/linkcheck.py:149
-#, python-format
-msgid "broken link: %s (%s)"
+#: cmd/quickstart.py:235
+msgid ""
+"Please enter values for the following settings (just press Enter to\n"
+"accept a default value, if one is given in brackets)."
msgstr ""
-#: builders/linkcheck.py:548
+#: cmd/quickstart.py:242
#, python-format
-msgid "Anchor '%s' not found"
+msgid "Selected root path: %s"
msgstr ""
-#: builders/linkcheck.py:758
-#, python-format
-msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
+#: cmd/quickstart.py:245
+msgid "Enter the root path for documentation."
msgstr ""
-#: builders/text.py:29
-#, python-format
-msgid "The text files are in %(outdir)s."
+#: cmd/quickstart.py:246
+msgid "Root path for the documentation"
msgstr ""
-#: transforms/i18n.py:227 transforms/i18n.py:302
-#, python-brace-format
-msgid ""
-"inconsistent footnote references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:255
+msgid "Error: an existing conf.py has been found in the selected root path."
msgstr ""
-#: transforms/i18n.py:272
-#, python-brace-format
-msgid ""
-"inconsistent references in translated message. original: {0}, translated: "
-"{1}"
+#: cmd/quickstart.py:260
+msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
msgstr ""
-#: transforms/i18n.py:322
-#, python-brace-format
-msgid ""
-"inconsistent citation references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:263
+msgid "Please enter a new root path (or just Enter to exit)"
msgstr ""
-#: transforms/i18n.py:344
-#, python-brace-format
+#: cmd/quickstart.py:274
msgid ""
-"inconsistent term references in translated message. original: {0}, "
-"translated: {1}"
+"You have two options for placing the build directory for Sphinx output.\n"
+"Either, you use a directory \"_build\" within the root path, or you separate\n"
+"\"source\" and \"build\" directories within the root path."
msgstr ""
-#: builders/html/__init__.py:486 builders/latex/__init__.py:199
-#: transforms/__init__.py:129 writers/manpage.py:98 writers/texinfo.py:220
-#, python-format
-msgid "%b %d, %Y"
+#: cmd/quickstart.py:280
+msgid "Separate source and build directories (y/n)"
msgstr ""
-#: transforms/__init__.py:139
-msgid "could not calculate translation progress!"
+#: cmd/quickstart.py:287
+msgid ""
+"Inside the root directory, two more directories will be created; \"_templates\"\n"
+"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
+"files. You can enter another prefix (such as \".\") to replace the underscore."
msgstr ""
-#: transforms/__init__.py:144
-msgid "no translated elements!"
+#: cmd/quickstart.py:292
+msgid "Name prefix for templates and static dir"
msgstr ""
-#: transforms/__init__.py:253
-#, python-format
+#: cmd/quickstart.py:298
msgid ""
-"4 column based index found. It might be a bug of extensions you use: %r"
+"The project name will occur in several places in the built documentation."
msgstr ""
-#: transforms/__init__.py:294
-#, python-format
-msgid "Footnote [%s] is not referenced."
+#: cmd/quickstart.py:301
+msgid "Project name"
msgstr ""
-#: transforms/__init__.py:303
-msgid "Footnote [*] is not referenced."
+#: cmd/quickstart.py:303
+msgid "Author name(s)"
msgstr ""
-#: transforms/__init__.py:314
-msgid "Footnote [#] is not referenced."
+#: cmd/quickstart.py:309
+msgid ""
+"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
+"software. Each version can have multiple releases. For example, for\n"
+"Python the version is something like 2.5 or 3.0, while the release is\n"
+"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
+"just set both to the same value."
msgstr ""
-#: _cli/__init__.py:73
-msgid "Usage:"
+#: cmd/quickstart.py:316
+msgid "Project version"
msgstr ""
-#: _cli/__init__.py:75
-#, python-brace-format
-msgid "{0} [OPTIONS] []"
+#: cmd/quickstart.py:318
+msgid "Project release"
msgstr ""
-#: _cli/__init__.py:78
-msgid " The Sphinx documentation generator."
+#: cmd/quickstart.py:324
+msgid ""
+"If the documents are to be written in a language other than English,\n"
+"you can select a language here by its language code. Sphinx will then\n"
+"translate text that it generates into that language.\n"
+"\n"
+"For a list of supported codes, see\n"
+"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
msgstr ""
-#: _cli/__init__.py:87
-msgid "Commands:"
+#: cmd/quickstart.py:332
+msgid "Project language"
msgstr ""
-#: _cli/__init__.py:98
-msgid "Options"
+#: cmd/quickstart.py:340
+msgid ""
+"The file name suffix for source files. Commonly, this is either \".txt\"\n"
+"or \".rst\". Only files with this suffix are considered documents."
msgstr ""
-#: _cli/__init__.py:113 _cli/__init__.py:181
-msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
+#: cmd/quickstart.py:344
+msgid "Source file suffix"
msgstr ""
-#: _cli/__init__.py:171
-#, python-brace-format
+#: cmd/quickstart.py:350
msgid ""
-"{0}: error: {1}\n"
-"Run '{0} --help' for information"
+"One document is special in that it is considered the top node of the\n"
+"\"contents tree\", that is, it is the root of the hierarchical structure\n"
+"of the documents. Normally, this is \"index\", but if your \"index\"\n"
+"document is a custom template, you can also set this to another filename."
msgstr ""
-#: _cli/__init__.py:179
-msgid " Manage documentation with Sphinx."
+#: cmd/quickstart.py:357
+msgid "Name of your master document (without suffix)"
msgstr ""
-#: _cli/__init__.py:191
-msgid "Show the version and exit."
+#: cmd/quickstart.py:368
+#, python-format
+msgid ""
+"Error: the master file %s has already been found in the selected root path."
msgstr ""
-#: _cli/__init__.py:199
-msgid "Show this message and exit."
+#: cmd/quickstart.py:374
+msgid "sphinx-quickstart will not overwrite the existing file."
msgstr ""
-#: _cli/__init__.py:203
-msgid "Logging"
+#: cmd/quickstart.py:378
+msgid ""
+"Please enter a new file name, or rename the existing file and press Enter"
msgstr ""
-#: _cli/__init__.py:210
-msgid "Increase verbosity (can be repeated)"
+#: cmd/quickstart.py:386
+msgid "Indicate which of the following Sphinx extensions should be enabled:"
msgstr ""
-#: _cli/__init__.py:218
-msgid "Only print errors and warnings."
+#: cmd/quickstart.py:397
+msgid ""
+"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
+"been deselected."
msgstr ""
-#: _cli/__init__.py:225
-msgid "No output at all"
+#: cmd/quickstart.py:407
+msgid ""
+"A Makefile and a Windows command file can be generated for you so that you\n"
+"only have to run e.g. `make html' instead of invoking sphinx-build\n"
+"directly."
msgstr ""
-#: _cli/__init__.py:231
-msgid ""
+#: cmd/quickstart.py:412
+msgid "Create Makefile? (y/n)"
msgstr ""
-#: _cli/__init__.py:263
-msgid "See 'sphinx --help'.\n"
+#: cmd/quickstart.py:416
+msgid "Create Windows command file? (y/n)"
msgstr ""
-#: environment/__init__.py:86
-msgid "new config"
+#: cmd/quickstart.py:468 ext/apidoc/_generate.py:76
+#, python-format
+msgid "Creating file %s."
msgstr ""
-#: environment/__init__.py:87
-msgid "config changed"
+#: cmd/quickstart.py:473 ext/apidoc/_generate.py:73
+#, python-format
+msgid "File %s already exists, skipping."
msgstr ""
-#: environment/__init__.py:88
-msgid "extensions changed"
+#: cmd/quickstart.py:516
+msgid "Finished: An initial directory structure has been created."
msgstr ""
-#: environment/__init__.py:253
-msgid "build environment version not current"
+#: cmd/quickstart.py:520
+#, python-format
+msgid ""
+"You should now populate your master file %s and create other documentation\n"
+"source files. "
msgstr ""
-#: environment/__init__.py:255
-msgid "source directory has changed"
+#: cmd/quickstart.py:527
+msgid ""
+"Use the Makefile to build the docs, like so:\n"
+" make builder"
msgstr ""
-#: environment/__init__.py:325
+#: cmd/quickstart.py:531
#, python-format
-msgid "The configuration has changed (1 option: %r)"
+msgid ""
+"Use the sphinx-build command to build the docs, like so:\n"
+" sphinx-build -b builder %s %s"
msgstr ""
-#: environment/__init__.py:330
-#, python-format
-msgid "The configuration has changed (%d options: %s)"
+#: cmd/quickstart.py:538
+msgid ""
+"where \"builder\" is one of the supported builders, e.g. html, latex or "
+"linkcheck."
msgstr ""
-#: environment/__init__.py:336
-#, python-format
-msgid "The configuration has changed (%d options: %s, ...)"
+#: cmd/quickstart.py:573
+msgid ""
+"\n"
+"Generate required files for a Sphinx project.\n"
+"\n"
+"sphinx-quickstart is an interactive tool that asks some questions about your\n"
+"project and then generates a complete documentation directory and sample\n"
+"Makefile to be used with sphinx-build.\n"
msgstr ""
-#: environment/__init__.py:379
-msgid ""
-"This environment is incompatible with the selected builder, please choose "
-"another doctree directory."
+#: cmd/quickstart.py:592
+msgid "quiet mode"
msgstr ""
-#: environment/__init__.py:493
-#, python-format
-msgid "Failed to scan documents in %s: %r"
+#: cmd/quickstart.py:602
+msgid "project root"
msgstr ""
-#: environment/__init__.py:658 ext/intersphinx/_resolve.py:234
-#, python-format
-msgid "Domain %r is not registered"
+#: cmd/quickstart.py:605
+msgid "Structure options"
msgstr ""
-#: environment/__init__.py:813
-msgid "document isn't included in any toctree"
+#: cmd/quickstart.py:611
+msgid "if specified, separate source and build dirs"
msgstr ""
-#: environment/__init__.py:859
-msgid "self referenced toctree found. Ignored."
+#: cmd/quickstart.py:617
+msgid "if specified, create build dir under source dir"
msgstr ""
-#: environment/__init__.py:889
-#, python-format
-msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
+#: cmd/quickstart.py:623
+msgid "replacement for dot in _templates etc."
msgstr ""
-#: util/i18n.py:100
-#, python-format
-msgid "reading error: %s, %s"
+#: cmd/quickstart.py:626
+msgid "Project basic options"
msgstr ""
-#: util/i18n.py:113
-#, python-format
-msgid "writing error: %s, %s"
+#: cmd/quickstart.py:628
+msgid "project name"
msgstr ""
-#: util/i18n.py:146
-#, python-format
-msgid "locale_dir %s does not exist"
+#: cmd/quickstart.py:631
+msgid "author names"
msgstr ""
-#: util/i18n.py:236
-#, python-format
-msgid "Invalid Babel locale: %r."
+#: cmd/quickstart.py:638
+msgid "version of project"
msgstr ""
-#: util/i18n.py:245
-#, python-format
-msgid ""
-"Invalid date format. Quote the string by single quote if you want to output "
-"it directly: %s"
+#: cmd/quickstart.py:645
+msgid "release of project"
msgstr ""
-#: util/docfields.py:103
-#, python-format
-msgid ""
-"Problem in %s domain: field is supposed to use role '%s', but that role is "
-"not in the domain."
+#: cmd/quickstart.py:652
+msgid "document language"
msgstr ""
-#: util/nodes.py:423
-#, python-format
-msgid ""
-"%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead."
+#: cmd/quickstart.py:655
+msgid "source file suffix"
msgstr ""
-#: util/nodes.py:490
-#, python-format
-msgid "toctree contains ref to nonexisting file %r"
+#: cmd/quickstart.py:658
+msgid "master document name"
+msgstr ""
+
+#: cmd/quickstart.py:661
+msgid "use epub"
msgstr ""
-#: util/nodes.py:706
+#: cmd/quickstart.py:664
+msgid "Extension options"
+msgstr ""
+
+#: cmd/quickstart.py:671
#, python-format
-msgid "exception while evaluating only directive expression: %s"
+msgid "enable %s extension"
msgstr ""
-#: util/display.py:82
-msgid "skipped"
+#: cmd/quickstart.py:678
+msgid "enable arbitrary extensions"
msgstr ""
-#: util/display.py:87
-msgid "failed"
+#: cmd/quickstart.py:681
+msgid "Makefile and Batchfile creation"
msgstr ""
-#: util/osutil.py:131
-#, python-format
-msgid ""
-"Aborted attempted copy from %s to %s (the destination path has existing "
-"data)."
+#: cmd/quickstart.py:687
+msgid "create makefile"
msgstr ""
-#: util/docutils.py:309
-#, python-format
-msgid "unknown directive name: %s"
+#: cmd/quickstart.py:693
+msgid "do not create makefile"
msgstr ""
-#: util/docutils.py:345
-#, python-format
-msgid "unknown role name: %s"
+#: cmd/quickstart.py:700
+msgid "create batchfile"
msgstr ""
-#: util/docutils.py:789
-#, python-format
-msgid "unknown node type: %r"
+#: cmd/quickstart.py:706
+msgid "do not create batchfile"
msgstr ""
-#: util/fileutil.py:76
-#, python-format
+#: cmd/quickstart.py:715
+msgid "use make-mode for Makefile/make.bat"
+msgstr ""
+
+#: cmd/quickstart.py:718 ext/apidoc/_cli.py:243
+msgid "Project templating"
+msgstr ""
+
+#: cmd/quickstart.py:724 ext/apidoc/_cli.py:249
+msgid "template directory for template files"
+msgstr ""
+
+#: cmd/quickstart.py:731
+msgid "define a template variable"
+msgstr ""
+
+#: cmd/quickstart.py:767
+msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
+msgstr ""
+
+#: cmd/quickstart.py:786
msgid ""
-"Aborted attempted copy from rendered template %s to %s (the destination path"
-" has existing data)."
+"Error: specified path is not a directory, or sphinx files already exist."
msgstr ""
-#: util/fileutil.py:89
-#, python-format
-msgid "Writing evaluated template result to %s"
+#: cmd/quickstart.py:793
+msgid ""
+"sphinx-quickstart only generate into a empty directory. Please specify a new"
+" root path."
msgstr ""
-#: util/rst.py:73
+#: cmd/quickstart.py:810
#, python-format
-msgid "default role %s not found"
+msgid "Invalid template variable: %s"
msgstr ""
-#: util/inventory.py:147
+#: directives/other.py:119
#, python-format
-msgid "inventory <%s> contains duplicate definitions of %s"
+msgid "toctree glob pattern %r didn't match any documents"
msgstr ""
-#: util/inventory.py:166
+#: directives/other.py:153 environment/adapters/toctree.py:372
#, python-format
-msgid "inventory <%s> contains multiple definitions for %s"
+msgid "toctree contains reference to excluded document %r"
msgstr ""
-#: writers/latex.py:1097 writers/manpage.py:259 writers/texinfo.py:663
-msgid "Footnotes"
-msgstr "Troednodiadau"
+#: directives/other.py:156
+#, python-format
+msgid "toctree contains reference to nonexisting document %r"
+msgstr ""
-#: writers/manpage.py:289 writers/text.py:945
+#: directives/other.py:169
#, python-format
-msgid "[image: %s]"
-msgstr "[delwedd: %s]"
+msgid "duplicated entry found in toctree: %s"
+msgstr ""
-#: writers/manpage.py:290 writers/text.py:946
-msgid "[image]"
-msgstr "[delwedd]"
+#: directives/other.py:203
+msgid "Section author: "
+msgstr "Awdur yr adran:"
-#: builders/latex/__init__.py:206 domains/std/__init__.py:771
-#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:106
-#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
-#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
-#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
-#: themes/basic/genindex.html:59 themes/basic/layout.html:127
-#: writers/texinfo.py:514
-msgid "Index"
-msgstr "Indecs"
+#: directives/other.py:205
+msgid "Module author: "
+msgstr "Awdur y fodiwl:"
+
+#: directives/other.py:207
+msgid "Code author: "
+msgstr "Awdur y cod:"
+
+#: directives/other.py:209
+msgid "Author: "
+msgstr "Awdur:"
-#: writers/latex.py:743 writers/texinfo.py:646
+#: directives/other.py:269
+msgid ".. acks content is not a list"
+msgstr ""
+
+#: directives/other.py:292
+msgid ".. hlist content is not a list"
+msgstr ""
+
+#: directives/patches.py:70
msgid ""
-"encountered title node not in section, topic, table, admonition or sidebar"
+"\":file:\" option for csv-table directive now recognizes an absolute path as"
+" a relative path from source directory. Please update your document."
msgstr ""
-#: writers/texinfo.py:1217
-msgid "caption not inside a figure."
+#: directives/code.py:66
+msgid "non-whitespace stripped by dedent"
msgstr ""
-#: writers/texinfo.py:1303
+#: directives/code.py:87
#, python-format
-msgid "unimplemented node type: %r"
+msgid "Invalid caption: %s"
msgstr ""
-#: writers/latex.py:361
+#: directives/code.py:131 directives/code.py:297 directives/code.py:483
#, python-format
-msgid "unknown %r toplevel_sectioning for class %r"
+msgid "line number spec is out of range(1-%d): %r"
msgstr ""
-#: builders/latex/__init__.py:224 writers/latex.py:411
+#: directives/code.py:216
#, python-format
-msgid "no Babel option known for language %r"
+msgid "Cannot use both \"%s\" and \"%s\" options"
msgstr ""
-#: writers/latex.py:429
-msgid "too large :maxdepth:, ignored."
+#: directives/code.py:231
+#, python-format
+msgid "Include file '%s' not found or reading it failed"
msgstr ""
-#: writers/latex.py:591
+#: directives/code.py:235
#, python-format
-msgid "template %s not found; loading from legacy %s instead"
+msgid ""
+"Encoding %r used for reading included file '%s' seems to be wrong, try "
+"giving an :encoding: option"
msgstr ""
-#: writers/latex.py:707
-msgid "document title is not a single Text node"
+#: directives/code.py:276
+#, python-format
+msgid "Object named %r not found in include file %r"
+msgstr ""
+
+#: directives/code.py:309
+msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
msgstr ""
-#: writers/html5.py:572 writers/latex.py:1106
+#: directives/code.py:314
#, python-format
-msgid "unsupported rubric heading level: %s"
+msgid "Line spec %r: no lines pulled from include file %r"
+msgstr ""
+
+#: builders/html/__init__.py:475 builders/latex/__init__.py:196
+#: transforms/__init__.py:134 writers/manpage.py:97 writers/texinfo.py:220
+#, python-format
+msgid "%b %d, %Y"
msgstr ""
-#: writers/latex.py:1183
+#: builders/latex/__init__.py:203 domains/std/__init__.py:771
+#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:107
+#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
+#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
+#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
+#: themes/basic/genindex.html:59 themes/basic/layout.html:127
+#: writers/texinfo.py:514
+msgid "Index"
+msgstr "Indecs"
+
+#: writers/latex.py:768 writers/texinfo.py:646
msgid ""
-"both tabularcolumns and :widths: option are given. :widths: is ignored."
+"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
-#: writers/latex.py:1580
-#, python-format
-msgid "dimension unit %s is invalid. Ignored."
+#: writers/latex.py:1118 writers/manpage.py:258 writers/texinfo.py:663
+msgid "Footnotes"
+msgstr "Troednodiadau"
+
+#: writers/texinfo.py:1217
+msgid "caption not inside a figure."
msgstr ""
-#: writers/latex.py:1939
+#: writers/texinfo.py:1303
#, python-format
-msgid "unknown index entry type %s found"
+msgid "unimplemented node type: %r"
msgstr ""
-#: domains/math.py:128 writers/latex.py:2495
+#: writers/manpage.py:288 writers/text.py:971
#, python-format
-msgid "Invalid math_eqref_format: %r"
-msgstr ""
+msgid "[image: %s]"
+msgstr "[delwedd: %s]"
+
+#: writers/manpage.py:289 writers/text.py:972
+msgid "[image]"
+msgstr "[delwedd]"
#: writers/html5.py:96 writers/html5.py:105
msgid "Link to this definition"
@@ -1833,6 +2344,11 @@ msgstr ""
msgid "Link to this table"
msgstr ""
+#: writers/html5.py:572 writers/latex.py:1127
+#, python-format
+msgid "unsupported rubric heading level: %s"
+msgstr ""
+
#: writers/html5.py:636
msgid "Link to this code"
msgstr ""
@@ -1849,794 +2365,478 @@ msgstr ""
msgid "Could not obtain image size. :scale: option is ignored."
msgstr ""
-#: domains/__init__.py:322
-#, python-format
-msgid "%s %s"
-msgstr ""
-
-#: domains/math.py:73
-#, python-format
-msgid "duplicate label of equation %s, other instance in %s"
-msgstr ""
-
-#: domains/javascript.py:182
-#, python-format
-msgid "%s() (built-in function)"
-msgstr ""
-
-#: domains/javascript.py:183 domains/python/__init__.py:287
-#, python-format
-msgid "%s() (%s method)"
-msgstr ""
-
-#: domains/javascript.py:185
-#, python-format
-msgid "%s() (class)"
-msgstr ""
-
-#: domains/javascript.py:187
-#, python-format
-msgid "%s (global variable or constant)"
-msgstr "%s (newidyn byd-eang neu cysonyn)"
-
-#: domains/javascript.py:189 domains/python/__init__.py:378
-#, python-format
-msgid "%s (%s attribute)"
-msgstr ""
-
-#: domains/javascript.py:273
-msgid "Arguments"
-msgstr ""
-
-#: domains/cpp/__init__.py:489 domains/javascript.py:280
-msgid "Throws"
-msgstr ""
-
-#: domains/c/__init__.py:339 domains/cpp/__init__.py:502
-#: domains/javascript.py:287 domains/python/_object.py:221
-msgid "Returns"
-msgstr ""
-
-#: domains/c/__init__.py:345 domains/javascript.py:293
-#: domains/python/_object.py:227
-msgid "Return type"
-msgstr ""
-
-#: domains/javascript.py:370
-#, python-format
-msgid "%s (module)"
-msgstr ""
-
-#: domains/c/__init__.py:751 domains/cpp/__init__.py:941
-#: domains/javascript.py:415 domains/python/__init__.py:740
-msgid "function"
-msgstr "ffwythiant"
-
-#: domains/javascript.py:416 domains/python/__init__.py:744
-msgid "method"
-msgstr ""
-
-#: domains/cpp/__init__.py:939 domains/javascript.py:417
-#: domains/python/__init__.py:742
-msgid "class"
-msgstr ""
-
-#: domains/javascript.py:418 domains/python/__init__.py:741
-msgid "data"
-msgstr ""
-
-#: domains/javascript.py:419 domains/python/__init__.py:747
-msgid "attribute"
-msgstr ""
-
-#: domains/javascript.py:420 domains/python/__init__.py:750
-msgid "module"
-msgstr "modiwl"
-
-#: domains/javascript.py:454
-#, python-format
-msgid "duplicate %s description of %s, other %s in %s"
-msgstr ""
-
-#: domains/changeset.py:26
-#, python-format
-msgid "Added in version %s"
-msgstr ""
-
-#: domains/changeset.py:27
-#, python-format
-msgid "Changed in version %s"
-msgstr "Wedi newid yn fersiwn %s"
-
-#: domains/changeset.py:28
-#, python-format
-msgid "Deprecated since version %s"
-msgstr "Dibrisiwyd ers fersiwn %s"
-
-#: domains/changeset.py:29
-#, python-format
-msgid "Removed in version %s"
-msgstr ""
-
-#: domains/rst.py:131 domains/rst.py:190
-#, python-format
-msgid "%s (directive)"
-msgstr ""
-
-#: domains/rst.py:191 domains/rst.py:202
-#, python-format
-msgid ":%s: (directive option)"
-msgstr ""
-
-#: domains/rst.py:224
-#, python-format
-msgid "%s (role)"
-msgstr ""
-
-#: domains/rst.py:234
-msgid "directive"
-msgstr ""
-
-#: domains/rst.py:235
-msgid "directive-option"
-msgstr ""
-
-#: domains/rst.py:236
-msgid "role"
-msgstr ""
-
-#: domains/rst.py:262
-#, python-format
-msgid "duplicate description of %s %s, other instance in %s"
-msgstr ""
-
-#: domains/citation.py:75
-#, python-format
-msgid "duplicate citation %s, other instance in %s"
-msgstr ""
-
-#: domains/citation.py:92
-#, python-format
-msgid "Citation [%s] is not referenced."
-msgstr ""
-
-#: locale/__init__.py:228
-msgid "Attention"
-msgstr "Sylw"
-
-#: locale/__init__.py:229
-msgid "Caution"
-msgstr "Gofal"
-
-#: locale/__init__.py:230
-msgid "Danger"
-msgstr "Perygl"
-
-#: locale/__init__.py:231
-msgid "Error"
-msgstr "Gwall"
-
-#: locale/__init__.py:232
-msgid "Hint"
-msgstr "Awgrym"
-
-#: locale/__init__.py:233
-msgid "Important"
-msgstr "Pwysig"
-
-#: locale/__init__.py:234
-msgid "Note"
-msgstr "Nodyn"
-
-#: locale/__init__.py:235
-msgid "See also"
-msgstr "Gweler hefyd"
-
-#: locale/__init__.py:236
-msgid "Tip"
-msgstr "Awgrym"
-
-#: locale/__init__.py:237
-msgid "Warning"
-msgstr "Rhybudd"
-
-#: cmd/quickstart.py:52
-msgid "automatically insert docstrings from modules"
-msgstr ""
-
-#: cmd/quickstart.py:53
-msgid "automatically test code snippets in doctest blocks"
-msgstr ""
-
-#: cmd/quickstart.py:54
-msgid "link between Sphinx documentation of different projects"
-msgstr ""
-
-#: cmd/quickstart.py:55
-msgid "write \"todo\" entries that can be shown or hidden on build"
-msgstr ""
-
-#: cmd/quickstart.py:56
-msgid "checks for documentation coverage"
-msgstr ""
-
-#: cmd/quickstart.py:57
-msgid "include math, rendered as PNG or SVG images"
-msgstr ""
-
-#: cmd/quickstart.py:58
-msgid "include math, rendered in the browser by MathJax"
-msgstr ""
-
-#: cmd/quickstart.py:59
-msgid "conditional inclusion of content based on config values"
-msgstr ""
-
-#: cmd/quickstart.py:60
-msgid "include links to the source code of documented Python objects"
-msgstr ""
-
-#: cmd/quickstart.py:61
-msgid "create .nojekyll file to publish the document on GitHub pages"
-msgstr ""
-
-#: cmd/quickstart.py:110
-msgid "Please enter a valid path name."
-msgstr ""
-
-#: cmd/quickstart.py:126
-msgid "Please enter some text."
-msgstr ""
-
-#: cmd/quickstart.py:133
-#, python-format
-msgid "Please enter one of %s."
-msgstr ""
-
-#: cmd/quickstart.py:141
-msgid "Please enter either 'y' or 'n'."
-msgstr ""
-
-#: cmd/quickstart.py:147
-msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
-msgstr ""
-
-#: cmd/quickstart.py:229
-#, python-format
-msgid "Welcome to the Sphinx %s quickstart utility."
-msgstr ""
-
-#: cmd/quickstart.py:234
-msgid ""
-"Please enter values for the following settings (just press Enter to\n"
-"accept a default value, if one is given in brackets)."
-msgstr ""
-
-#: cmd/quickstart.py:241
-#, python-format
-msgid "Selected root path: %s"
-msgstr ""
-
-#: cmd/quickstart.py:244
-msgid "Enter the root path for documentation."
-msgstr ""
-
-#: cmd/quickstart.py:245
-msgid "Root path for the documentation"
-msgstr ""
-
-#: cmd/quickstart.py:254
-msgid "Error: an existing conf.py has been found in the selected root path."
-msgstr ""
-
-#: cmd/quickstart.py:259
-msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
-msgstr ""
-
-#: cmd/quickstart.py:262
-msgid "Please enter a new root path (or just Enter to exit)"
-msgstr ""
-
-#: cmd/quickstart.py:273
-msgid ""
-"You have two options for placing the build directory for Sphinx output.\n"
-"Either, you use a directory \"_build\" within the root path, or you separate\n"
-"\"source\" and \"build\" directories within the root path."
-msgstr ""
-
-#: cmd/quickstart.py:279
-msgid "Separate source and build directories (y/n)"
-msgstr ""
-
-#: cmd/quickstart.py:286
-msgid ""
-"Inside the root directory, two more directories will be created; \"_templates\"\n"
-"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
-"files. You can enter another prefix (such as \".\") to replace the underscore."
-msgstr ""
-
-#: cmd/quickstart.py:291
-msgid "Name prefix for templates and static dir"
-msgstr ""
-
-#: cmd/quickstart.py:297
-msgid ""
-"The project name will occur in several places in the built documentation."
-msgstr ""
-
-#: cmd/quickstart.py:300
-msgid "Project name"
-msgstr ""
-
-#: cmd/quickstart.py:302
-msgid "Author name(s)"
-msgstr ""
-
-#: cmd/quickstart.py:308
-msgid ""
-"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
-"software. Each version can have multiple releases. For example, for\n"
-"Python the version is something like 2.5 or 3.0, while the release is\n"
-"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
-"just set both to the same value."
-msgstr ""
-
-#: cmd/quickstart.py:315
-msgid "Project version"
-msgstr ""
-
-#: cmd/quickstart.py:317
-msgid "Project release"
-msgstr ""
-
-#: cmd/quickstart.py:323
-msgid ""
-"If the documents are to be written in a language other than English,\n"
-"you can select a language here by its language code. Sphinx will then\n"
-"translate text that it generates into that language.\n"
-"\n"
-"For a list of supported codes, see\n"
-"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
-msgstr ""
-
-#: cmd/quickstart.py:331
-msgid "Project language"
-msgstr ""
-
-#: cmd/quickstart.py:339
-msgid ""
-"The file name suffix for source files. Commonly, this is either \".txt\"\n"
-"or \".rst\". Only files with this suffix are considered documents."
-msgstr ""
-
-#: cmd/quickstart.py:343
-msgid "Source file suffix"
-msgstr ""
-
-#: cmd/quickstart.py:349
-msgid ""
-"One document is special in that it is considered the top node of the\n"
-"\"contents tree\", that is, it is the root of the hierarchical structure\n"
-"of the documents. Normally, this is \"index\", but if your \"index\"\n"
-"document is a custom template, you can also set this to another filename."
-msgstr ""
-
-#: cmd/quickstart.py:356
-msgid "Name of your master document (without suffix)"
-msgstr ""
-
-#: cmd/quickstart.py:367
-#, python-format
-msgid ""
-"Error: the master file %s has already been found in the selected root path."
-msgstr ""
-
-#: cmd/quickstart.py:373
-msgid "sphinx-quickstart will not overwrite the existing file."
-msgstr ""
-
-#: cmd/quickstart.py:377
-msgid ""
-"Please enter a new file name, or rename the existing file and press Enter"
-msgstr ""
-
-#: cmd/quickstart.py:385
-msgid "Indicate which of the following Sphinx extensions should be enabled:"
-msgstr ""
-
-#: cmd/quickstart.py:396
-msgid ""
-"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
-"been deselected."
-msgstr ""
-
-#: cmd/quickstart.py:406
-msgid ""
-"A Makefile and a Windows command file can be generated for you so that you\n"
-"only have to run e.g. `make html' instead of invoking sphinx-build\n"
-"directly."
+#: writers/latex.py:386
+#, python-format
+msgid "unknown %r toplevel_sectioning for class %r"
msgstr ""
-#: cmd/quickstart.py:411
-msgid "Create Makefile? (y/n)"
+#: builders/latex/__init__.py:221 writers/latex.py:436
+#, python-format
+msgid "no Babel option known for language %r"
msgstr ""
-#: cmd/quickstart.py:415
-msgid "Create Windows command file? (y/n)"
+#: writers/latex.py:454
+msgid "too large :maxdepth:, ignored."
msgstr ""
-#: cmd/quickstart.py:467 ext/apidoc/_generate.py:76
+#: writers/latex.py:616
#, python-format
-msgid "Creating file %s."
+msgid "template %s not found; loading from legacy %s instead"
msgstr ""
-#: cmd/quickstart.py:472 ext/apidoc/_generate.py:73
-#, python-format
-msgid "File %s already exists, skipping."
+#: writers/latex.py:732
+msgid "document title is not a single Text node"
msgstr ""
-#: cmd/quickstart.py:515
-msgid "Finished: An initial directory structure has been created."
+#: writers/latex.py:1198
+msgid ""
+"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
-#: cmd/quickstart.py:519
+#: writers/latex.py:1228
#, python-format
msgid ""
-"You should now populate your master file %s and create other documentation\n"
-"source files. "
+"colspec %s was given which appears to use tabulary syntax. But this table "
+"can not be rendered as a tabulary; the given colspec will be ignored."
msgstr ""
-#: cmd/quickstart.py:526
-msgid ""
-"Use the Makefile to build the docs, like so:\n"
-" make builder"
+#: writers/latex.py:1615
+#, python-format
+msgid "dimension unit %s is invalid. Ignored."
msgstr ""
-#: cmd/quickstart.py:530
+#: writers/latex.py:1950
#, python-format
-msgid ""
-"Use the sphinx-build command to build the docs, like so:\n"
-" sphinx-build -b builder %s %s"
+msgid "unknown index entry type %s found"
msgstr ""
-#: cmd/quickstart.py:537
-msgid ""
-"where \"builder\" is one of the supported builders, e.g. html, latex or "
-"linkcheck."
+#: _cli/__init__.py:73
+msgid "Usage:"
msgstr ""
-#: cmd/quickstart.py:572
-msgid ""
-"\n"
-"Generate required files for a Sphinx project.\n"
-"\n"
-"sphinx-quickstart is an interactive tool that asks some questions about your\n"
-"project and then generates a complete documentation directory and sample\n"
-"Makefile to be used with sphinx-build.\n"
+#: _cli/__init__.py:75
+#, python-brace-format
+msgid "{0} [OPTIONS] []"
msgstr ""
-#: cmd/build.py:73 cmd/quickstart.py:581 ext/apidoc/_cli.py:27
-#: ext/autosummary/generate.py:835
-msgid "For more information, visit ."
+#: _cli/__init__.py:78
+msgid " The Sphinx documentation generator."
msgstr ""
-#: cmd/quickstart.py:591
-msgid "quiet mode"
+#: _cli/__init__.py:87
+msgid "Commands:"
msgstr ""
-#: cmd/quickstart.py:601
-msgid "project root"
+#: _cli/__init__.py:98
+msgid "Options"
msgstr ""
-#: cmd/quickstart.py:604
-msgid "Structure options"
+#: _cli/__init__.py:113 _cli/__init__.py:181
+msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
msgstr ""
-#: cmd/quickstart.py:610
-msgid "if specified, separate source and build dirs"
+#: _cli/__init__.py:171
+#, python-brace-format
+msgid ""
+"{0}: error: {1}\n"
+"Run '{0} --help' for information"
msgstr ""
-#: cmd/quickstart.py:616
-msgid "if specified, create build dir under source dir"
+#: _cli/__init__.py:179
+msgid " Manage documentation with Sphinx."
msgstr ""
-#: cmd/quickstart.py:622
-msgid "replacement for dot in _templates etc."
+#: _cli/__init__.py:191
+msgid "Show the version and exit."
msgstr ""
-#: cmd/quickstart.py:625
-msgid "Project basic options"
+#: _cli/__init__.py:199
+msgid "Show this message and exit."
msgstr ""
-#: cmd/quickstart.py:627
-msgid "project name"
+#: _cli/__init__.py:203
+msgid "Logging"
msgstr ""
-#: cmd/quickstart.py:630
-msgid "author names"
+#: _cli/__init__.py:210
+msgid "Increase verbosity (can be repeated)"
msgstr ""
-#: cmd/quickstart.py:637
-msgid "version of project"
+#: _cli/__init__.py:218
+msgid "Only print errors and warnings."
msgstr ""
-#: cmd/quickstart.py:644
-msgid "release of project"
+#: _cli/__init__.py:225
+msgid "No output at all"
msgstr ""
-#: cmd/quickstart.py:651
-msgid "document language"
+#: _cli/__init__.py:231
+msgid ""
msgstr ""
-#: cmd/quickstart.py:654
-msgid "source file suffix"
+#: _cli/__init__.py:263
+msgid "See 'sphinx --help'.\n"
msgstr ""
-#: cmd/quickstart.py:657
-msgid "master document name"
+#: transforms/i18n.py:230 transforms/i18n.py:305
+#, python-brace-format
+msgid ""
+"inconsistent footnote references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:660
-msgid "use epub"
+#: transforms/i18n.py:275
+#, python-brace-format
+msgid ""
+"inconsistent references in translated message. original: {0}, translated: "
+"{1}"
msgstr ""
-#: cmd/quickstart.py:663
-msgid "Extension options"
+#: transforms/i18n.py:325
+#, python-brace-format
+msgid ""
+"inconsistent citation references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:670
-#, python-format
-msgid "enable %s extension"
+#: transforms/i18n.py:347
+#, python-brace-format
+msgid ""
+"inconsistent term references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:677
-msgid "enable arbitrary extensions"
+#: transforms/__init__.py:144
+msgid "could not calculate translation progress!"
msgstr ""
-#: cmd/quickstart.py:680
-msgid "Makefile and Batchfile creation"
+#: transforms/__init__.py:149
+msgid "no translated elements!"
msgstr ""
-#: cmd/quickstart.py:686
-msgid "create makefile"
+#: transforms/__init__.py:258
+#, python-format
+msgid ""
+"4 column based index found. It might be a bug of extensions you use: %r"
msgstr ""
-#: cmd/quickstart.py:692
-msgid "do not create makefile"
+#: transforms/__init__.py:299
+#, python-format
+msgid "Footnote [%s] is not referenced."
msgstr ""
-#: cmd/quickstart.py:699
-msgid "create batchfile"
+#: transforms/__init__.py:308
+msgid "Footnote [*] is not referenced."
msgstr ""
-#: cmd/quickstart.py:705
-msgid "do not create batchfile"
+#: transforms/__init__.py:319
+msgid "Footnote [#] is not referenced."
msgstr ""
-#: cmd/quickstart.py:714
-msgid "use make-mode for Makefile/make.bat"
+#: util/inventory.py:147
+#, python-format
+msgid "inventory <%s> contains duplicate definitions of %s"
msgstr ""
-#: cmd/quickstart.py:717 ext/apidoc/_cli.py:243
-msgid "Project templating"
+#: util/inventory.py:166
+#, python-format
+msgid "inventory <%s> contains multiple definitions for %s"
msgstr ""
-#: cmd/quickstart.py:723 ext/apidoc/_cli.py:249
-msgid "template directory for template files"
+#: util/i18n.py:100
+#, python-format
+msgid "reading error: %s, %s"
msgstr ""
-#: cmd/quickstart.py:730
-msgid "define a template variable"
+#: util/i18n.py:113
+#, python-format
+msgid "writing error: %s, %s"
msgstr ""
-#: cmd/quickstart.py:766
-msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
+#: util/i18n.py:146
+#, python-format
+msgid "locale_dir %s does not exist"
msgstr ""
-#: cmd/quickstart.py:785
-msgid ""
-"Error: specified path is not a directory, or sphinx files already exist."
+#: util/i18n.py:244
+#, python-format
+msgid "Invalid Babel locale: %r."
msgstr ""
-#: cmd/quickstart.py:792
+#: util/i18n.py:253
+#, python-format
msgid ""
-"sphinx-quickstart only generate into a empty directory. Please specify a new"
-" root path."
+"Invalid date format. Quote the string by single quote if you want to output "
+"it directly: %s"
msgstr ""
-#: cmd/quickstart.py:809
+#: util/osutil.py:131
#, python-format
-msgid "Invalid template variable: %s"
+msgid ""
+"Aborted attempted copy from %s to %s (the destination path has existing "
+"data)."
msgstr ""
-#: cmd/build.py:64
-msgid "job number should be a positive number"
+#: util/display.py:82
+msgid "skipped"
msgstr ""
-#: cmd/build.py:74
-msgid ""
-"\n"
-"Generate documentation from source files.\n"
-"\n"
-"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
-"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
-"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
-"including 'conf.py'\n"
-"\n"
-"sphinx-build can create documentation in different formats. A format is\n"
-"selected by specifying the builder name on the command line; it defaults to\n"
-"HTML. Builders can also perform other tasks related to documentation\n"
-"processing.\n"
-"\n"
-"By default, everything that is outdated is built. Output only for selected\n"
-"files can be built by specifying individual filenames.\n"
+#: util/display.py:87
+msgid "failed"
msgstr ""
-#: cmd/build.py:100
-msgid "path to documentation source files"
+#: util/docutils.py:325
+#, python-format
+msgid "unknown directive name: %s"
msgstr ""
-#: cmd/build.py:103
-msgid "path to output directory"
+#: util/docutils.py:361
+#, python-format
+msgid "unknown role name: %s"
msgstr ""
-#: cmd/build.py:109
-msgid ""
-"(optional) a list of specific files to rebuild. Ignored if --write-all is "
-"specified"
+#: util/docutils.py:805
+#, python-format
+msgid "unknown node type: %r"
msgstr ""
-#: cmd/build.py:114
-msgid "general options"
+#: util/fileutil.py:76
+#, python-format
+msgid ""
+"Aborted attempted copy from rendered template %s to %s (the destination path"
+" has existing data)."
msgstr ""
-#: cmd/build.py:121
-msgid "builder to use (default: 'html')"
+#: util/fileutil.py:89
+#, python-format
+msgid "Writing evaluated template result to %s"
msgstr ""
-#: cmd/build.py:131
+#: util/docfields.py:103
+#, python-format
msgid ""
-"run in parallel with N processes, when possible. 'auto' uses the number of "
-"CPU cores"
+"Problem in %s domain: field is supposed to use role '%s', but that role is "
+"not in the domain."
msgstr ""
-#: cmd/build.py:140
-msgid "write all files (default: only write new and changed files)"
+#: util/rst.py:73
+#, python-format
+msgid "default role %s not found"
msgstr ""
-#: cmd/build.py:147
-msgid "don't use a saved environment, always read all files"
+#: util/nodes.py:462
+#, python-format
+msgid ""
+"%r is no longer supported for index entries (from entry %r). Use 'pair: %s' "
+"instead."
msgstr ""
-#: cmd/build.py:150
-msgid "path options"
+#: util/nodes.py:523
+#, python-format
+msgid "toctree contains ref to nonexisting file %r"
msgstr ""
-#: cmd/build.py:157
-msgid ""
-"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
+#: util/nodes.py:739
+#, python-format
+msgid "exception while evaluating only directive expression: %s"
msgstr ""
-#: cmd/build.py:166
-msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
-msgstr ""
+#: templates/latex/longtable.tex.jinja:52
+#: templates/latex/sphinxmessages.sty.jinja:8
+msgid "continued from previous page"
+msgstr "wedi'i barhau o'r tudalen blaenorol"
-#: cmd/build.py:175
-msgid "use no configuration file, only use settings from -D options"
+#: templates/latex/longtable.tex.jinja:63
+#: templates/latex/sphinxmessages.sty.jinja:9
+msgid "continues on next page"
msgstr ""
-#: cmd/build.py:184
-msgid "override a setting in configuration file"
+#: templates/latex/sphinxmessages.sty.jinja:10
+msgid "Non-alphabetical"
msgstr ""
-#: cmd/build.py:193
-msgid "pass a value into HTML templates"
-msgstr ""
+#: environment/adapters/indexentries.py:267
+#: templates/latex/sphinxmessages.sty.jinja:11
+msgid "Symbols"
+msgstr "Symbolau"
-#: cmd/build.py:202
-msgid "define tag: include \"only\" blocks with TAG"
+#: templates/latex/sphinxmessages.sty.jinja:12
+msgid "Numbers"
msgstr ""
-#: cmd/build.py:209
-msgid "nitpicky mode: warn about all missing references"
+#: templates/latex/sphinxmessages.sty.jinja:13
+msgid "page"
msgstr ""
-#: cmd/build.py:212
-msgid "console output options"
+#: builders/latex/__init__.py:206 templates/latex/latex.tex.jinja:92
+msgid "Release"
+msgstr "Rhyddhad"
+
+#: transforms/post_transforms/images.py:79
+#, python-format
+msgid "Could not fetch remote image: %s [%s]"
msgstr ""
-#: cmd/build.py:219
-msgid "increase verbosity (can be repeated)"
+#: transforms/post_transforms/images.py:96
+#, python-format
+msgid "Could not fetch remote image: %s [%d]"
msgstr ""
-#: cmd/build.py:226 ext/apidoc/_cli.py:66
-msgid "no output on stdout, just warnings on stderr"
+#: transforms/post_transforms/images.py:143
+#, python-format
+msgid "Unknown image format: %s..."
msgstr ""
-#: cmd/build.py:233
-msgid "no output at all, not even warnings"
+#: transforms/post_transforms/__init__.py:88
+msgid ""
+"Could not determine the fallback text for the cross-reference. Might be a "
+"bug."
msgstr ""
-#: cmd/build.py:241
-msgid "do emit colored output (default: auto-detect)"
+#: transforms/post_transforms/__init__.py:233
+#, python-format
+msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr ""
-#: cmd/build.py:249
-msgid "do not emit colored output (default: auto-detect)"
+#: transforms/post_transforms/__init__.py:291
+#, python-format
+msgid "%s:%s reference target not found: %s"
msgstr ""
-#: cmd/build.py:252
-msgid "warning control options"
+#: transforms/post_transforms/__init__.py:297
+#, python-format
+msgid "%r reference target not found: %s"
msgstr ""
-#: cmd/build.py:258
-msgid "write warnings (and errors) to given file"
+#: _cli/util/errors.py:190
+msgid "Interrupted!"
msgstr ""
-#: cmd/build.py:265
-msgid "turn warnings into errors"
+#: _cli/util/errors.py:194
+msgid "reStructuredText markup error!"
msgstr ""
-#: cmd/build.py:273
-msgid "show full traceback on exception"
+#: _cli/util/errors.py:200
+msgid "Encoding error!"
msgstr ""
-#: cmd/build.py:276
-msgid "run Pdb on exception"
+#: _cli/util/errors.py:203
+msgid "Recursion error!"
msgstr ""
-#: cmd/build.py:282
-msgid "raise an exception on warnings"
+#: _cli/util/errors.py:207
+msgid ""
+"This can happen with very large or deeply nested source files. You can "
+"carefully increase the default Python recursion limit of 1,000 in conf.py "
+"with e.g.:"
msgstr ""
-#: cmd/build.py:325
-msgid "cannot combine -a option and filenames"
+#: _cli/util/errors.py:227
+msgid "Starting debugger:"
msgstr ""
-#: cmd/build.py:357
-#, python-format
-msgid "cannot open warning file '%s': %s"
+#: _cli/util/errors.py:235
+msgid "The full traceback has been saved in:"
msgstr ""
-#: cmd/build.py:376
-msgid "-D option argument must be in the form name=value"
+#: _cli/util/errors.py:240
+msgid ""
+"To report this error to the developers, please open an issue at "
+". Thanks!"
msgstr ""
-#: cmd/build.py:383
-msgid "-A option argument must be in the form name=value"
+#: _cli/util/errors.py:246
+msgid ""
+"Please also report this if it was a user error, so that a better error "
+"message can be provided next time."
msgstr ""
#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
msgid "Collapse sidebar"
msgstr "Cyfangu'r bar ochr"
-#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
-#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
-msgid "Table of Contents"
-msgstr ""
+#: themes/basic/layout.html:18
+msgid "Navigation"
+msgstr "Llywio"
+
+#: themes/basic/layout.html:115
+#, python-format
+msgid "Search within %(docstitle)s"
+msgstr "Chwilio o fewn %(docstitle)s"
+
+#: themes/basic/layout.html:124
+msgid "About these documents"
+msgstr "Ynglŷn â'r dogfennau hyn"
#: themes/agogo/layout.html:34 themes/basic/layout.html:130
#: themes/basic/search.html:3 themes/basic/search.html:15
msgid "Search"
msgstr "Chwilio"
-#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
-#: themes/basic/searchfield.html:12
-msgid "Go"
-msgstr "Ewch"
+#: themes/basic/layout.html:133 themes/basic/layout.html:177
+#: themes/basic/layout.html:179
+msgid "Copyright"
+msgstr "Hawlfraint"
+
+#: themes/basic/layout.html:183 themes/basic/layout.html:189
+#, python-format
+msgid "© %(copyright_prefix)s %(copyright)s."
+msgstr ""
+
+#: themes/basic/layout.html:201
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "Diweddarwyd yn ddiwethaf ar %(last_updated)s."
+
+#: themes/basic/layout.html:204
+#, python-format
+msgid ""
+"Created using Sphinx "
+"%(sphinx_version)s."
+msgstr ""
+
+#: themes/basic/relations.html:4
+msgid "Previous topic"
+msgstr "Pwnc blaenorol"
+
+#: themes/basic/relations.html:6
+msgid "previous chapter"
+msgstr "pennod blaenorol"
+
+#: themes/basic/relations.html:11
+msgid "Next topic"
+msgstr "Pwnc nesaf"
+
+#: themes/basic/relations.html:13
+msgid "next chapter"
+msgstr "pennod nesaf"
+
+#: themes/basic/genindex-single.html:26
+#, python-format
+msgid "Index – %(key)s"
+msgstr ""
+
+#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
+#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
+msgid "Full index on one page"
+msgstr "Indecs llawn ar un tudalen"
+
+#: themes/basic/sourcelink.html:4
+msgid "This Page"
+msgstr "Y Dudalen Hon"
#: themes/agogo/layout.html:81 themes/basic/sourcelink.html:7
msgid "Show Source"
msgstr "Dangos Ffynhonell"
-#: themes/haiku/layout.html:16
-msgid "Contents"
-msgstr "Cynnwys"
+#: themes/basic/searchbox.html:4
+msgid "Quick search"
+msgstr "Chwilio cyflym"
-#: themes/basic/opensearch.xml:4
-#, python-format
-msgid "Search %(docstitle)s"
-msgstr "Chwilio %(docstitle)s"
+#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
+#: themes/basic/searchfield.html:12
+msgid "Go"
+msgstr "Ewch"
#: themes/basic/defindex.html:4
msgid "Overview"
@@ -2683,7 +2883,7 @@ msgstr "Indecs Modiwl Byd-Eang"
msgid "quick access to all modules"
msgstr "mynediad cloi i bob modiwl"
-#: builders/html/__init__.py:507 themes/basic/defindex.html:23
+#: builders/html/__init__.py:496 themes/basic/defindex.html:23
msgid "General Index"
msgstr "Indecs cyffredinol"
@@ -2691,23 +2891,15 @@ msgstr "Indecs cyffredinol"
msgid "all functions, classes, terms"
msgstr "holl ffwythiannau, dosbarthau a thermau"
-#: themes/basic/sourcelink.html:4
-msgid "This Page"
-msgstr "Y Dudalen Hon"
-
-#: themes/basic/genindex-single.html:26
-#, python-format
-msgid "Index – %(key)s"
+#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
+#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
+msgid "Table of Contents"
msgstr ""
-#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
-#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
-msgid "Full index on one page"
-msgstr "Indecs llawn ar un tudalen"
-
-#: themes/basic/searchbox.html:4
-msgid "Quick search"
-msgstr "Chwilio cyflym"
+#: themes/basic/opensearch.xml:4
+#, python-format
+msgid "Search %(docstitle)s"
+msgstr "Chwilio %(docstitle)s"
#: themes/basic/genindex-split.html:8
msgid "Index pages by letter"
@@ -2717,57 +2909,6 @@ msgstr "Indecs tudalennau gan lythyren"
msgid "can be huge"
msgstr "gall fod yn enfawr"
-#: themes/basic/relations.html:4
-msgid "Previous topic"
-msgstr "Pwnc blaenorol"
-
-#: themes/basic/relations.html:6
-msgid "previous chapter"
-msgstr "pennod blaenorol"
-
-#: themes/basic/relations.html:11
-msgid "Next topic"
-msgstr "Pwnc nesaf"
-
-#: themes/basic/relations.html:13
-msgid "next chapter"
-msgstr "pennod nesaf"
-
-#: themes/basic/layout.html:18
-msgid "Navigation"
-msgstr "Llywio"
-
-#: themes/basic/layout.html:115
-#, python-format
-msgid "Search within %(docstitle)s"
-msgstr "Chwilio o fewn %(docstitle)s"
-
-#: themes/basic/layout.html:124
-msgid "About these documents"
-msgstr "Ynglŷn â'r dogfennau hyn"
-
-#: themes/basic/layout.html:133 themes/basic/layout.html:177
-#: themes/basic/layout.html:179
-msgid "Copyright"
-msgstr "Hawlfraint"
-
-#: themes/basic/layout.html:183 themes/basic/layout.html:189
-#, python-format
-msgid "© %(copyright_prefix)s %(copyright)s."
-msgstr ""
-
-#: themes/basic/layout.html:201
-#, python-format
-msgid "Last updated on %(last_updated)s."
-msgstr "Diweddarwyd yn ddiwethaf ar %(last_updated)s."
-
-#: themes/basic/layout.html:204
-#, python-format
-msgid ""
-"Created using Sphinx "
-"%(sphinx_version)s."
-msgstr ""
-
#: themes/basic/search.html:20
msgid ""
"Please activate JavaScript to enable the search\n"
@@ -2784,21 +2925,21 @@ msgstr ""
msgid "search"
msgstr "chwilio"
-#: themes/basic/static/sphinx_highlight.js:112
-msgid "Hide Search Matches"
-msgstr "Cuddio Canlyniadau Chwilio"
-
-#: themes/basic/static/searchtools.js:117
+#: themes/haiku/layout.html:16
+msgid "Contents"
+msgstr "Cynnwys"
+
+#: themes/basic/static/searchtools.js:132
msgid "Search Results"
msgstr "Canlyniadau chwilio"
-#: themes/basic/static/searchtools.js:119
+#: themes/basic/static/searchtools.js:134
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
msgstr "Nid yw eich chwiliad yn cyfateb unrhyw ddogfennau. Gwnewch yn siŵr fod pob gair wedi'i sillafu'n gywir, ac eich bod wedi dewis digon o gategorïau."
-#: themes/basic/static/searchtools.js:123
+#: themes/basic/static/searchtools.js:138
#, python-brace-format
msgid "Search finished, found one page matching the search query."
msgid_plural ""
@@ -2808,22 +2949,21 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: themes/basic/static/searchtools.js:253
+#: themes/basic/static/searchtools.js:276
msgid "Searching"
msgstr "Yn chwilio"
-#: themes/basic/static/searchtools.js:270
+#: themes/basic/static/searchtools.js:293
msgid "Preparing search..."
msgstr "Paratoi chwilio..."
-#: themes/basic/static/searchtools.js:474
+#: themes/basic/static/searchtools.js:526
msgid ", in "
msgstr ", yn "
-#: themes/basic/changes/rstsource.html:5
-#, python-format
-msgid "%(filename)s — %(docstitle)s"
-msgstr ""
+#: themes/basic/static/sphinx_highlight.js:112
+msgid "Hide Search Matches"
+msgstr "Cuddio Canlyniadau Chwilio"
#: themes/basic/changes/frameset.html:5
#: themes/basic/changes/versionchanges.html:12
@@ -2831,6 +2971,11 @@ msgstr ""
msgid "Changes in Version %(version)s — %(docstitle)s"
msgstr ""
+#: themes/basic/changes/rstsource.html:5
+#, python-format
+msgid "%(filename)s — %(docstitle)s"
+msgstr ""
+
#: themes/basic/changes/versionchanges.html:17
#, python-format
msgid "Automatically generated list of changes in version %(version)s"
@@ -2852,119 +2997,126 @@ msgstr "Newidiadau arall"
msgid "Expand sidebar"
msgstr "Ehangu'r bar ochr"
-#: domains/python/_annotations.py:529
+#: domains/python/_annotations.py:522
msgid "Positional-only parameter separator (PEP 570)"
msgstr ""
-#: domains/python/_annotations.py:540
+#: domains/python/_annotations.py:533
msgid "Keyword-only parameters separator (PEP 3102)"
msgstr ""
-#: domains/python/__init__.py:113 domains/python/__init__.py:278
+#: domains/c/__init__.py:354 domains/cpp/__init__.py:485
+#: domains/python/_object.py:190 ext/napoleon/docstring.py:980
+msgid "Parameters"
+msgstr "Paramedrau"
+
+#: domains/python/_object.py:206
+msgid "Variables"
+msgstr ""
+
+#: domains/python/_object.py:214
+msgid "Raises"
+msgstr ""
+
+#: domains/python/__init__.py:105 domains/python/__init__.py:270
#, python-format
msgid "%s() (in module %s)"
msgstr ""
-#: domains/python/__init__.py:180 domains/python/__init__.py:374
-#: domains/python/__init__.py:434 domains/python/__init__.py:474
+#: domains/python/__init__.py:172 domains/python/__init__.py:366
+#: domains/python/__init__.py:426 domains/python/__init__.py:466
#, python-format
msgid "%s (in module %s)"
msgstr ""
-#: domains/python/__init__.py:182
+#: domains/python/__init__.py:174
#, python-format
msgid "%s (built-in variable)"
msgstr ""
-#: domains/python/__init__.py:217
+#: domains/python/__init__.py:209
#, python-format
msgid "%s (built-in class)"
msgstr ""
-#: domains/python/__init__.py:218
+#: domains/python/__init__.py:210
#, python-format
msgid "%s (class in %s)"
msgstr ""
-#: domains/python/__init__.py:283
+#: domains/python/__init__.py:275
#, python-format
msgid "%s() (%s class method)"
msgstr ""
-#: domains/python/__init__.py:285
+#: domains/python/__init__.py:277
#, python-format
msgid "%s() (%s static method)"
msgstr ""
-#: domains/python/__init__.py:438
+#: domains/python/__init__.py:430
#, python-format
msgid "%s (%s property)"
msgstr ""
-#: domains/python/__init__.py:478
+#: domains/python/__init__.py:470
#, python-format
msgid "%s (type alias in %s)"
msgstr ""
-#: domains/python/__init__.py:638
+#: domains/python/__init__.py:624
msgid "Python Module Index"
msgstr ""
-#: domains/python/__init__.py:639
+#: domains/python/__init__.py:625
msgid "modules"
msgstr ""
-#: domains/python/__init__.py:717
+#: domains/python/__init__.py:703
msgid "Deprecated"
msgstr ""
-#: domains/python/__init__.py:743
+#: domains/python/__init__.py:729
msgid "exception"
msgstr ""
-#: domains/python/__init__.py:745
+#: domains/python/__init__.py:731
msgid "class method"
msgstr ""
-#: domains/python/__init__.py:746
+#: domains/python/__init__.py:732
msgid "static method"
msgstr ""
-#: domains/python/__init__.py:748
+#: domains/python/__init__.py:734
msgid "property"
msgstr ""
-#: domains/python/__init__.py:749
+#: domains/python/__init__.py:735
msgid "type alias"
msgstr ""
-#: domains/python/__init__.py:818
+#: domains/python/__init__.py:804
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :no-index: for"
" one of them"
msgstr ""
-#: domains/python/__init__.py:978
+#: domains/python/__init__.py:974
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
-#: domains/python/__init__.py:1052
+#: domains/python/__init__.py:1048
msgid " (deprecated)"
msgstr ""
-#: domains/c/__init__.py:326 domains/cpp/__init__.py:483
-#: domains/python/_object.py:190 ext/napoleon/docstring.py:974
-msgid "Parameters"
-msgstr "Paramedrau"
-
-#: domains/python/_object.py:206
-msgid "Variables"
-msgstr ""
-
-#: domains/python/_object.py:214
-msgid "Raises"
+#: domains/cpp/__init__.py:394 domains/cpp/_symbol.py:946
+#, python-format
+msgid ""
+"Duplicate C++ declaration, also defined at %s:%s.\n"
+"Declaration is '.. cpp:%s:: %s'."
msgstr ""
#: domains/cpp/__init__.py:159
@@ -2976,746 +3128,526 @@ msgstr ""
msgid "%s (C++ %s)"
msgstr ""
-#: domains/cpp/__init__.py:392 domains/cpp/_symbol.py:942
-#, python-format
-msgid ""
-"Duplicate C++ declaration, also defined at %s:%s.\n"
-"Declaration is '.. cpp:%s:: %s'."
-msgstr ""
-
-#: domains/c/__init__.py:333 domains/cpp/__init__.py:496
+#: domains/c/__init__.py:361 domains/cpp/__init__.py:498
msgid "Return values"
msgstr ""
-#: domains/c/__init__.py:754 domains/cpp/__init__.py:940
+#: domains/c/__init__.py:782 domains/cpp/__init__.py:942
msgid "union"
msgstr ""
-#: domains/c/__init__.py:749 domains/cpp/__init__.py:942
+#: domains/c/__init__.py:777 domains/cpp/__init__.py:944
msgid "member"
msgstr "aelod"
-#: domains/c/__init__.py:757 domains/cpp/__init__.py:943
+#: domains/c/__init__.py:785 domains/cpp/__init__.py:945
msgid "type"
msgstr ""
-#: domains/cpp/__init__.py:944
+#: domains/cpp/__init__.py:946
msgid "concept"
msgstr ""
-#: domains/c/__init__.py:755 domains/cpp/__init__.py:945
+#: domains/c/__init__.py:783 domains/cpp/__init__.py:947
msgid "enum"
msgstr ""
-#: domains/c/__init__.py:756 domains/cpp/__init__.py:946
+#: domains/c/__init__.py:784 domains/cpp/__init__.py:948
msgid "enumerator"
msgstr ""
-#: domains/c/__init__.py:760 domains/cpp/__init__.py:949
+#: domains/c/__init__.py:788 domains/cpp/__init__.py:951
msgid "function parameter"
msgstr ""
-#: domains/cpp/__init__.py:952
+#: domains/cpp/__init__.py:954
msgid "template parameter"
msgstr ""
-#: domains/c/__init__.py:211
-#, python-format
-msgid "%s (C %s)"
-msgstr ""
-
-#: domains/c/__init__.py:277 domains/c/_symbol.py:557
+#: domains/c/__init__.py:279 domains/c/_symbol.py:569
#, python-format
msgid ""
"Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'."
msgstr ""
-#: domains/c/__init__.py:750
-msgid "variable"
-msgstr ""
-
-#: domains/c/__init__.py:752
-msgid "macro"
-msgstr ""
-
-#: domains/c/__init__.py:753
-msgid "struct"
-msgstr ""
-
-#: domains/std/__init__.py:91 domains/std/__init__.py:111
-#, python-format
-msgid "environment variable; %s"
-msgstr ""
-
-#: domains/std/__init__.py:119
-#, python-format
-msgid "%s; configuration value"
-msgstr ""
-
-#: domains/std/__init__.py:175
-msgid "Type"
-msgstr ""
-
-#: domains/std/__init__.py:185
-msgid "Default"
-msgstr ""
-
-#: domains/std/__init__.py:242
-#, python-format
-msgid ""
-"Malformed option description %r, should look like \"opt\", \"-opt args\", \""
-"--opt args\", \"/opt args\" or \"+opt args\""
-msgstr ""
-
-#: domains/std/__init__.py:319
-#, python-format
-msgid "%s command line option"
-msgstr ""
-
-#: domains/std/__init__.py:321
-msgid "command line option"
-msgstr ""
-
-#: domains/std/__init__.py:461
-msgid "glossary term must be preceded by empty line"
-msgstr ""
-
-#: domains/std/__init__.py:474
-msgid "glossary terms must not be separated by empty lines"
-msgstr ""
-
-#: domains/std/__init__.py:486 domains/std/__init__.py:504
-msgid "glossary seems to be misformatted, check indentation"
-msgstr ""
-
-#: domains/std/__init__.py:729
-msgid "glossary term"
-msgstr ""
-
-#: domains/std/__init__.py:730
-msgid "grammar token"
-msgstr ""
-
-#: domains/std/__init__.py:731
-msgid "reference label"
-msgstr ""
-
-#: domains/std/__init__.py:733
-msgid "environment variable"
-msgstr ""
-
-#: domains/std/__init__.py:734
-msgid "program option"
-msgstr ""
-
-#: domains/std/__init__.py:735
-msgid "document"
-msgstr ""
-
-#: domains/std/__init__.py:772 domains/std/__init__.py:785
-msgid "Module Index"
-msgstr "Indecs Modiwlau"
-
-#: domains/std/__init__.py:857
-#, python-format
-msgid "duplicate %s description of %s, other instance in %s"
-msgstr ""
-
-#: domains/std/__init__.py:1113
-msgid "numfig is disabled. :numref: is ignored."
-msgstr ""
-
-#: domains/std/__init__.py:1124
-#, python-format
-msgid "Failed to create a cross reference. Any number is not assigned: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1138
-#, python-format
-msgid "the link has no caption: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1153
-#, python-format
-msgid "invalid numfig_format: %s (%r)"
-msgstr ""
-
-#: domains/std/__init__.py:1157
-#, python-format
-msgid "invalid numfig_format: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1453
-#, python-format
-msgid "undefined label: %r"
-msgstr ""
-
-#: domains/std/__init__.py:1456
-#, python-format
-msgid "Failed to create a cross reference. A title or caption not found: %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:324
-#, python-format
-msgid "circular toctree references detected, ignoring: %s <- %s"
-msgstr ""
-
-#: environment/adapters/toctree.py:349
-#, python-format
-msgid ""
-"toctree contains reference to document %r that doesn't have a title: no link"
-" will be generated"
-msgstr ""
-
-#: environment/adapters/toctree.py:364
-#, python-format
-msgid "toctree contains reference to non-included document %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:367
-#, python-format
-msgid "toctree contains reference to non-existing document %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:123
-#, python-format
-msgid "see %s"
-msgstr "gweler %s"
-
-#: environment/adapters/indexentries.py:133
-#, python-format
-msgid "see also %s"
-msgstr "gweler hefyd %s"
-
-#: environment/adapters/indexentries.py:141
-#, python-format
-msgid "unknown index entry type %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:268
-#: templates/latex/sphinxmessages.sty.jinja:11
-msgid "Symbols"
-msgstr "Symbolau"
-
-#: environment/collectors/asset.py:98
-#, python-format
-msgid "image file not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:126
-#, python-format
-msgid "image file %s not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:163
-#, python-format
-msgid "download file not readable: %s"
-msgstr ""
-
-#: environment/collectors/toctree.py:259
+#: domains/c/__init__.py:211
#, python-format
-msgid "%s is already assigned section numbers (nested numbered toctree?)"
-msgstr ""
-
-#: _cli/util/errors.py:190
-msgid "Interrupted!"
-msgstr ""
-
-#: _cli/util/errors.py:194
-msgid "reStructuredText markup error!"
-msgstr ""
-
-#: _cli/util/errors.py:200
-msgid "Encoding error!"
-msgstr ""
-
-#: _cli/util/errors.py:203
-msgid "Recursion error!"
-msgstr ""
-
-#: _cli/util/errors.py:207
-msgid ""
-"This can happen with very large or deeply nested source files. You can "
-"carefully increase the default Python recursion limit of 1,000 in conf.py "
-"with e.g.:"
-msgstr ""
-
-#: _cli/util/errors.py:227
-msgid "Starting debugger:"
-msgstr ""
-
-#: _cli/util/errors.py:235
-msgid "The full traceback has been saved in:"
-msgstr ""
-
-#: _cli/util/errors.py:240
-msgid ""
-"To report this error to the developers, please open an issue at "
-". Thanks!"
+msgid "%s (C %s)"
msgstr ""
-#: _cli/util/errors.py:246
-msgid ""
-"Please also report this if it was a user error, so that a better error "
-"message can be provided next time."
+#: domains/c/__init__.py:778
+msgid "variable"
msgstr ""
-#: transforms/post_transforms/__init__.py:88
-msgid ""
-"Could not determine the fallback text for the cross-reference. Might be a "
-"bug."
+#: domains/c/__init__.py:780
+msgid "macro"
msgstr ""
-#: transforms/post_transforms/__init__.py:237
-#, python-format
-msgid "more than one target found for 'any' cross-reference %r: could be %s"
+#: domains/c/__init__.py:781
+msgid "struct"
msgstr ""
-#: transforms/post_transforms/__init__.py:299
+#: domains/std/__init__.py:88 domains/std/__init__.py:108
#, python-format
-msgid "%s:%s reference target not found: %s"
+msgid "environment variable; %s"
msgstr ""
-#: transforms/post_transforms/__init__.py:305
+#: domains/std/__init__.py:116
#, python-format
-msgid "%r reference target not found: %s"
+msgid "%s; configuration value"
msgstr ""
-#: transforms/post_transforms/images.py:79
-#, python-format
-msgid "Could not fetch remote image: %s [%s]"
+#: domains/std/__init__.py:172
+msgid "Type"
msgstr ""
-#: transforms/post_transforms/images.py:96
-#, python-format
-msgid "Could not fetch remote image: %s [%d]"
+#: domains/std/__init__.py:182
+msgid "Default"
msgstr ""
-#: transforms/post_transforms/images.py:143
+#: domains/std/__init__.py:239
#, python-format
-msgid "Unknown image format: %s..."
+msgid ""
+"Malformed option description %r, should look like \"opt\", \"-opt args\", \""
+"--opt args\", \"/opt args\" or \"+opt args\""
msgstr ""
-#: builders/html/__init__.py:113
+#: domains/std/__init__.py:319
#, python-format
-msgid "The HTML pages are in %(outdir)s."
+msgid "%s command line option"
msgstr ""
-#: builders/html/__init__.py:348
-#, python-format
-msgid "Failed to read build info file: %r"
+#: domains/std/__init__.py:321
+msgid "command line option"
msgstr ""
-#: builders/html/__init__.py:364
-msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+#: domains/std/__init__.py:461
+msgid "glossary term must be preceded by empty line"
msgstr ""
-#: builders/html/__init__.py:366
-msgid "building [html]: "
+#: domains/std/__init__.py:474
+msgid "glossary terms must not be separated by empty lines"
msgstr ""
-#: builders/html/__init__.py:383
-#, python-format
-msgid ""
-"template %s has been changed since the previous build, all docs will be "
-"rebuilt"
+#: domains/std/__init__.py:486 domains/std/__init__.py:504
+msgid "glossary seems to be misformatted, check indentation"
msgstr ""
-#: builders/html/__init__.py:507
-msgid "index"
-msgstr "indecs"
+#: domains/std/__init__.py:729
+msgid "glossary term"
+msgstr ""
-#: builders/html/__init__.py:560
-#, python-format
-msgid "Logo of %s"
+#: domains/std/__init__.py:730
+msgid "grammar token"
msgstr ""
-#: builders/html/__init__.py:589
-msgid "next"
-msgstr "nesaf"
+#: domains/std/__init__.py:731
+msgid "reference label"
+msgstr ""
-#: builders/html/__init__.py:598
-msgid "previous"
-msgstr "blaenorol"
+#: domains/std/__init__.py:733
+msgid "environment variable"
+msgstr ""
-#: builders/html/__init__.py:696
-msgid "generating indices"
+#: domains/std/__init__.py:734
+msgid "program option"
msgstr ""
-#: builders/html/__init__.py:711
-msgid "writing additional pages"
+#: domains/std/__init__.py:735
+msgid "document"
msgstr ""
-#: builders/html/__init__.py:794
+#: domains/std/__init__.py:772 domains/std/__init__.py:785
+msgid "Module Index"
+msgstr "Indecs Modiwlau"
+
+#: domains/std/__init__.py:857
#, python-format
-msgid "cannot copy image file '%s': %s"
+msgid "duplicate %s description of %s, other instance in %s"
msgstr ""
-#: builders/html/__init__.py:806
-msgid "copying downloadable files... "
+#: domains/std/__init__.py:1113
+msgid "numfig is disabled. :numref: is ignored."
msgstr ""
-#: builders/html/__init__.py:818
+#: domains/std/__init__.py:1124
#, python-format
-msgid "cannot copy downloadable file %r: %s"
+msgid "Failed to create a cross reference. Any number is not assigned: %s"
msgstr ""
-#: builders/html/__init__.py:864
+#: domains/std/__init__.py:1138
#, python-format
-msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
+msgid "the link has no caption: %s"
msgstr ""
-#: builders/html/__init__.py:882
+#: domains/std/__init__.py:1153
#, python-format
-msgid "Failed to copy a file in html_static_file: %s: %r"
+msgid "invalid numfig_format: %s (%r)"
msgstr ""
-#: builders/html/__init__.py:917
-msgid "copying static files"
+#: domains/std/__init__.py:1157
+#, python-format
+msgid "invalid numfig_format: %s"
msgstr ""
-#: builders/html/__init__.py:934
+#: domains/std/__init__.py:1453
#, python-format
-msgid "cannot copy static file %r"
+msgid "undefined label: %r"
msgstr ""
-#: builders/html/__init__.py:939
-msgid "copying extra files"
+#: domains/std/__init__.py:1456
+#, python-format
+msgid "Failed to create a cross reference. A title or caption not found: %r"
msgstr ""
-#: builders/html/__init__.py:949
+#: ext/napoleon/docstring.py:178
#, python-format
-msgid "cannot copy extra file %r"
+msgid "invalid value set (missing closing brace): %s"
msgstr ""
-#: builders/html/__init__.py:955
+#: ext/napoleon/docstring.py:185
#, python-format
-msgid "Failed to write build info file: %r"
+msgid "invalid value set (missing opening brace): %s"
msgstr ""
-#: builders/html/__init__.py:1005
-msgid ""
-"search index couldn't be loaded, but not all documents will be built: the "
-"index will be incomplete."
+#: ext/napoleon/docstring.py:192
+#, python-format
+msgid "malformed string literal (missing closing quote): %s"
msgstr ""
-#: builders/html/__init__.py:1052
+#: ext/napoleon/docstring.py:199
#, python-format
-msgid "page %s matches two patterns in html_sidebars: %r and %r"
+msgid "malformed string literal (missing opening quote): %s"
msgstr ""
-#: builders/html/__init__.py:1216
-#, python-format
-msgid ""
-"a Unicode error occurred when rendering the page %s. Please make sure all "
-"config values that contain non-ASCII content are Unicode strings."
+#: ext/napoleon/docstring.py:902
+msgid "Example"
msgstr ""
-#: builders/html/__init__.py:1224
-#, python-format
-msgid ""
-"An error happened in rendering the page %s.\n"
-"Reason: %r"
+#: ext/napoleon/docstring.py:903
+msgid "Examples"
msgstr ""
-#: builders/html/__init__.py:1257
-msgid "dumping object inventory"
+#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:947
+msgid "Keyword Arguments"
msgstr ""
-#: builders/html/__init__.py:1265
-#, python-format
-msgid "dumping search index in %s"
+#: ext/napoleon/docstring.py:962
+msgid "Notes"
msgstr ""
-#: builders/html/__init__.py:1308
-#, python-format
-msgid "invalid js_file: %r, ignored"
+#: ext/napoleon/docstring.py:971
+msgid "Other Parameters"
msgstr ""
-#: builders/html/__init__.py:1342
-msgid "Many math_renderers are registered. But no math_renderer is selected."
+#: ext/napoleon/docstring.py:1007
+msgid "Receives"
msgstr ""
-#: builders/html/__init__.py:1346
-#, python-format
-msgid "Unknown math_renderer %r is given."
+#: ext/napoleon/docstring.py:1011
+msgid "References"
msgstr ""
-#: builders/html/__init__.py:1360
-#, python-format
-msgid "html_extra_path entry %r is placed inside outdir"
+#: ext/napoleon/docstring.py:1043
+msgid "Warns"
msgstr ""
-#: builders/html/__init__.py:1365
+#: ext/napoleon/docstring.py:1047
+msgid "Yields"
+msgstr ""
+
+#: ext/autodoc/_generate.py:151
+#: ext/autodoc/_legacy_class_based/_documenters.py:859
#, python-format
-msgid "html_extra_path entry %r does not exist"
+msgid "A mocked object is detected: %r"
msgstr ""
-#: builders/html/__init__.py:1380
+#: ext/autodoc/_generate.py:334 ext/autodoc/_generate.py:348
+#: ext/autodoc/_generate.py:370 ext/autodoc/_generate.py:386
+#: ext/autodoc/_legacy_class_based/_documenters.py:1860
+#: ext/autodoc/_legacy_class_based/_documenters.py:1889
+#: ext/autodoc/_legacy_class_based/_documenters.py:1983
#, python-format
-msgid "html_static_path entry %r is placed inside outdir"
+msgid "alias of %s"
msgstr ""
-#: builders/html/__init__.py:1385
+#: ext/autodoc/_legacy_class_based/_documenters.py:1745
+#: ext/autodoc/_renderer.py:88
#, python-format
-msgid "html_static_path entry %r does not exist"
+msgid "Bases: %s"
msgstr ""
-#: builders/html/__init__.py:1396 builders/latex/__init__.py:504
+#: ext/autodoc/_directive_options.py:226
+#: ext/autodoc/_legacy_class_based/_directive_options.py:47
#, python-format
-msgid "logo file %r does not exist"
+msgid "invalid value for member-order option: %s"
msgstr ""
-#: builders/html/__init__.py:1407
+#: ext/autodoc/_directive_options.py:233
+#: ext/autodoc/_legacy_class_based/_directive_options.py:55
#, python-format
-msgid "favicon file %r does not exist"
+msgid "invalid value for class-doc-from option: %s"
msgstr ""
-#: builders/html/__init__.py:1420
+#: ext/autodoc/_legacy_class_based/_documenters.py:239
+#: ext/autodoc/_names.py:45
#, python-format
-msgid ""
-"Values in 'html_sidebars' must be a list of strings. At least one pattern "
-"has a string value: %s. Change to `html_sidebars = %r`."
+msgid "invalid signature for auto%s (%r)"
msgstr ""
-#: builders/html/__init__.py:1433
+#: ext/autodoc/_legacy_class_based/_documenters.py:800
+#: ext/autodoc/_names.py:53 ext/autodoc/_names.py:101
+#, python-format
msgid ""
-"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
-"configuration options)"
+"don't know which module to import for autodocumenting %r (try placing a "
+"\"module\" or \"currentmodule\" directive in the document, or giving an "
+"explicit module name)"
msgstr ""
-#: builders/html/__init__.py:1449
+#: ext/autodoc/_names.py:89
#, python-format
-msgid "%s %s documentation"
-msgstr "Dogfennaeth %s %s "
+msgid "signature arguments given for automodule: '%s'"
+msgstr ""
-#: builders/html/_build_info.py:32
-msgid "failed to read broken build info file (unknown version)"
+#: ext/autodoc/_names.py:93
+#, python-format
+msgid "return annotation given for automodule: '%s'"
msgstr ""
-#: builders/html/_build_info.py:36
-msgid "failed to read broken build info file (missing config entry)"
+#: ext/autodoc/_legacy_class_based/_documenters.py:956
+#: ext/autodoc/_names.py:134
+msgid "\"::\" in automodule name doesn't make sense"
msgstr ""
-#: builders/html/_build_info.py:39
-msgid "failed to read broken build info file (missing tags entry)"
+#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:984
+#, python-format
+msgid "Failed to remove %s: %s"
msgstr ""
-#: builders/latex/__init__.py:118
+#: ext/apidoc/_generate.py:69
#, python-format
-msgid "The LaTeX files are in %(outdir)s."
+msgid "Would create file %s."
msgstr ""
-#: builders/latex/__init__.py:121
+#: ext/apidoc/_cli.py:28
msgid ""
"\n"
-"Run 'make' in that directory to run these through (pdf)latex\n"
-"(use `make latexpdf' here to do that automatically)."
+"Look recursively in for Python modules and packages and create\n"
+"one reST file with automodule directives per package in the .\n"
+"\n"
+"The s can be file and/or directory patterns that will be\n"
+"excluded from generation.\n"
+"\n"
+"Note: By default this script will not overwrite already created files."
msgstr ""
-#: builders/latex/__init__.py:159
-msgid "no \"latex_documents\" config value found; no documents will be written"
+#: ext/apidoc/_cli.py:45
+msgid "path to module to document"
msgstr ""
-#: builders/latex/__init__.py:170
-#, python-format
-msgid "\"latex_documents\" config value references unknown document %s"
+#: ext/apidoc/_cli.py:50
+msgid ""
+"fnmatch-style file and/or directory patterns to exclude from generation"
msgstr ""
-#: builders/latex/__init__.py:209 templates/latex/latex.tex.jinja:91
-msgid "Release"
-msgstr "Rhyddhad"
+#: ext/apidoc/_cli.py:60
+msgid "directory to place all output"
+msgstr ""
-#: builders/latex/__init__.py:428
-msgid "copying TeX support files"
+#: ext/apidoc/_cli.py:75
+msgid "maximum depth of submodules to show in the TOC (default: 4)"
msgstr ""
-#: builders/latex/__init__.py:465
-msgid "copying additional files"
+#: ext/apidoc/_cli.py:82
+msgid "overwrite existing files"
msgstr ""
-#: builders/latex/__init__.py:536
-#, python-format
-msgid "Unknown configure key: latex_elements[%r], ignored."
+#: ext/apidoc/_cli.py:91
+msgid ""
+"follow symbolic links. Powerful when combined with "
+"collective.recipe.omelette."
msgstr ""
-#: builders/latex/__init__.py:544
-#, python-format
-msgid "Unknown theme option: latex_theme_options[%r], ignored."
+#: ext/apidoc/_cli.py:99
+msgid "run the script without creating files"
msgstr ""
-#: builders/latex/transforms.py:120
-msgid "Failed to get a docname!"
+#: ext/apidoc/_cli.py:106
+msgid "put documentation for each module on its own page"
msgstr ""
-#: builders/latex/transforms.py:121
-#, python-format
-msgid "Failed to get a docname for source %r!"
+#: ext/apidoc/_cli.py:113
+msgid "include \"_private\" modules"
msgstr ""
-#: builders/latex/transforms.py:487
-#, python-format
-msgid "No footnote was found for given reference node %r"
+#: ext/apidoc/_cli.py:120
+msgid "filename of table of contents (default: modules)"
msgstr ""
-#: builders/latex/theming.py:88
-#, python-format
-msgid "%r doesn't have \"theme\" setting"
+#: ext/apidoc/_cli.py:127
+msgid "don't create a table of contents file"
msgstr ""
-#: builders/latex/theming.py:91
-#, python-format
-msgid "%r doesn't have \"%s\" setting"
+#: ext/apidoc/_cli.py:135
+msgid ""
+"don't create headings for the module/package packages (e.g. when the "
+"docstrings already contain them)"
+msgstr ""
+
+#: ext/apidoc/_cli.py:145
+msgid "put module documentation before submodule documentation"
+msgstr ""
+
+#: ext/apidoc/_cli.py:152
+msgid ""
+"interpret module paths according to PEP-0420 implicit namespaces "
+"specification"
msgstr ""
-#: templates/latex/longtable.tex.jinja:52
-#: templates/latex/sphinxmessages.sty.jinja:8
-msgid "continued from previous page"
-msgstr "wedi'i barhau o'r tudalen blaenorol"
+#: ext/apidoc/_cli.py:160
+msgid ""
+"Comma-separated list of options to pass to automodule directive (or use "
+"SPHINX_APIDOC_OPTIONS)."
+msgstr ""
-#: templates/latex/longtable.tex.jinja:63
-#: templates/latex/sphinxmessages.sty.jinja:9
-msgid "continues on next page"
+#: ext/apidoc/_cli.py:170
+msgid "file suffix (default: rst)"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:10
-msgid "Non-alphabetical"
+#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:950
+msgid "Remove existing files in the output directory that were not generated"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:12
-msgid "Numbers"
+#: ext/apidoc/_cli.py:186
+msgid "generate a full project with sphinx-quickstart"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:13
-msgid "page"
+#: ext/apidoc/_cli.py:193
+msgid "append module_path to sys.path, used when --full is given"
msgstr ""
-#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:940
-msgid "Keyword Arguments"
+#: ext/apidoc/_cli.py:200
+msgid "project name (default: root module name)"
msgstr ""
-#: ext/napoleon/docstring.py:176
-#, python-format
-msgid "invalid value set (missing closing brace): %s"
+#: ext/apidoc/_cli.py:207
+msgid "project author(s), used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:183
-#, python-format
-msgid "invalid value set (missing opening brace): %s"
+#: ext/apidoc/_cli.py:214
+msgid "project version, used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:190
-#, python-format
-msgid "malformed string literal (missing closing quote): %s"
+#: ext/apidoc/_cli.py:222
+msgid "project release, used when --full is given, defaults to --doc-version"
msgstr ""
-#: ext/napoleon/docstring.py:197
-#, python-format
-msgid "malformed string literal (missing opening quote): %s"
+#: ext/apidoc/_cli.py:226
+msgid "extension options"
msgstr ""
-#: ext/napoleon/docstring.py:895
-msgid "Example"
+#: ext/apidoc/_cli.py:232
+msgid "enable arbitrary extensions, used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:896
-msgid "Examples"
+#: ext/apidoc/_cli.py:240
+#, python-format
+msgid "enable %s extension, used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:956
-msgid "Notes"
+#: ext/apidoc/_cli.py:291
+#, python-format
+msgid "%s is not a directory."
msgstr ""
-#: ext/napoleon/docstring.py:965
-msgid "Other Parameters"
+#: ext/apidoc/_extension.py:50
+msgid "Running apidoc"
msgstr ""
-#: ext/napoleon/docstring.py:1001
-msgid "Receives"
+#: ext/apidoc/_extension.py:102
+#, python-format
+msgid "apidoc_modules item %i must be a dict"
msgstr ""
-#: ext/napoleon/docstring.py:1005
-msgid "References"
+#: ext/apidoc/_extension.py:110
+#, python-format
+msgid "apidoc_modules item %i must have a 'path' key"
msgstr ""
-#: ext/napoleon/docstring.py:1037
-msgid "Warns"
+#: ext/apidoc/_extension.py:115
+#, python-format
+msgid "apidoc_modules item %i 'path' must be a string"
msgstr ""
-#: ext/napoleon/docstring.py:1041
-msgid "Yields"
+#: ext/apidoc/_extension.py:121
+#, python-format
+msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
msgstr ""
-#: ext/autosummary/__init__.py:284
+#: ext/apidoc/_extension.py:133
#, python-format
-msgid "autosummary references excluded document %r. Ignored."
+msgid "apidoc_modules item %i must have a 'destination' key"
msgstr ""
-#: ext/autosummary/__init__.py:288
+#: ext/apidoc/_extension.py:140
#, python-format
-msgid ""
-"autosummary: stub file not found %r. Check your autosummary_generate "
-"setting."
+msgid "apidoc_modules item %i 'destination' must be a string"
msgstr ""
-#: ext/autosummary/__init__.py:309
-msgid "A captioned autosummary requires :toctree: option. ignored."
+#: ext/apidoc/_extension.py:147
+#, python-format
+msgid "apidoc_modules item %i 'destination' should be a relative path"
msgstr ""
-#: ext/autosummary/__init__.py:384
+#: ext/apidoc/_extension.py:157
#, python-format
-msgid ""
-"autosummary: failed to import %s.\n"
-"Possible hints:\n"
-"%s"
+msgid "apidoc_modules item %i cannot create destination directory: %s"
msgstr ""
-#: ext/autosummary/__init__.py:404
+#: ext/apidoc/_extension.py:178
#, python-format
-msgid "failed to parse name %s"
+msgid "apidoc_modules item %i '%s' must be an int"
msgstr ""
-#: ext/autosummary/__init__.py:412
+#: ext/apidoc/_extension.py:192
#, python-format
-msgid "failed to import object %s"
+msgid "apidoc_modules item %i '%s' must be a boolean"
msgstr ""
-#: ext/autosummary/__init__.py:730
+#: ext/apidoc/_extension.py:210
#, python-format
-msgid ""
-"Summarised items should not include the current module. Replace %r with %r."
+msgid "apidoc_modules item %i has unexpected keys: %s"
msgstr ""
-#: ext/autosummary/__init__.py:927
+#: ext/apidoc/_extension.py:248
#, python-format
-msgid "autosummary_generate: file not found: %s"
+msgid "apidoc_modules item %i '%s' must be a sequence"
msgstr ""
-#: ext/autosummary/__init__.py:937
-msgid ""
-"autosummary generates .rst files internally. But your source_suffix does not"
-" contain .rst. Skipped."
+#: ext/apidoc/_extension.py:257
+#, python-format
+msgid "apidoc_modules item %i '%s' must contain strings"
msgstr ""
-#: ext/autosummary/generate.py:232 ext/autosummary/generate.py:450
+#: ext/autosummary/generate.py:212 ext/autosummary/generate.py:425
#, python-format
msgid ""
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
"%s"
msgstr ""
-#: ext/autosummary/generate.py:588
+#: ext/autosummary/generate.py:630
#, python-format
msgid "[autosummary] generating autosummary for: %s"
msgstr ""
-#: ext/autosummary/generate.py:592
+#: ext/autosummary/generate.py:634
#, python-format
msgid "[autosummary] writing to %s"
msgstr ""
-#: ext/autosummary/generate.py:637
+#: ext/autosummary/generate.py:679
#, python-format
msgid ""
"[autosummary] failed to import %s.\n"
@@ -3723,7 +3655,7 @@ msgid ""
"%s"
msgstr ""
-#: ext/autosummary/generate.py:836
+#: ext/autosummary/generate.py:877
msgid ""
"\n"
"Generate ReStructuredText using autosummary directives.\n"
@@ -3738,481 +3670,639 @@ msgid ""
" pydoc sphinx.ext.autosummary\n"
msgstr ""
-#: ext/autosummary/generate.py:858
+#: ext/autosummary/generate.py:899
msgid "source files to generate rST files for"
msgstr ""
-#: ext/autosummary/generate.py:866
+#: ext/autosummary/generate.py:907
msgid "directory to place all output in"
msgstr ""
-#: ext/autosummary/generate.py:874
+#: ext/autosummary/generate.py:915
#, python-format
msgid "default suffix for files (default: %(default)s)"
msgstr ""
-#: ext/autosummary/generate.py:882
+#: ext/autosummary/generate.py:923
#, python-format
msgid "custom template directory (default: %(default)s)"
msgstr ""
-#: ext/autosummary/generate.py:890
+#: ext/autosummary/generate.py:931
#, python-format
msgid "document imported members (default: %(default)s)"
msgstr ""
-#: ext/autosummary/generate.py:899
+#: ext/autosummary/generate.py:940
#, python-format
msgid ""
"document exactly the members in module __all__ attribute. (default: "
"%(default)s)"
msgstr ""
-#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:909
-msgid "Remove existing files in the output directory that were not generated"
+#: ext/autosummary/__init__.py:235
+#, python-format
+msgid "autosummary references excluded document %r. Ignored."
msgstr ""
-#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:944
+#: ext/autosummary/__init__.py:239
#, python-format
-msgid "Failed to remove %s: %s"
+msgid ""
+"autosummary: stub file not found %r. Check your autosummary_generate "
+"setting."
msgstr ""
-#: ext/apidoc/_cli.py:28
+#: ext/autosummary/__init__.py:260
+msgid "A captioned autosummary requires :toctree: option. ignored."
+msgstr ""
+
+#: ext/autosummary/__init__.py:329
+#, python-format
msgid ""
-"\n"
-"Look recursively in for Python modules and packages and create\n"
-"one reST file with automodule directives per package in the .\n"
-"\n"
-"The s can be file and/or directory patterns that will be\n"
-"excluded from generation.\n"
-"\n"
-"Note: By default this script will not overwrite already created files."
+"autosummary: failed to import %s.\n"
+"Possible hints:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:45
-msgid "path to module to document"
+#: ext/autosummary/__init__.py:358
+#, python-format
+msgid "failed to import object %s"
msgstr ""
-#: ext/apidoc/_cli.py:50
+#: ext/autosummary/__init__.py:652
+#, python-format
msgid ""
-"fnmatch-style file and/or directory patterns to exclude from generation"
+"Summarised items should not include the current module. Replace %r with %r."
msgstr ""
-#: ext/apidoc/_cli.py:60
-msgid "directory to place all output"
+#: ext/autosummary/__init__.py:850
+#, python-format
+msgid "autosummary_generate: file not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:75
-msgid "maximum depth of submodules to show in the TOC (default: 4)"
+#: ext/autosummary/__init__.py:860
+msgid ""
+"autosummary generates .rst files internally. But your source_suffix does not"
+" contain .rst. Skipped."
msgstr ""
-#: ext/apidoc/_cli.py:82
-msgid "overwrite existing files"
+#: ext/intersphinx/_load.py:61
+#, python-format
+msgid ""
+"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
+"identifiers must be non-empty strings."
msgstr ""
-#: ext/apidoc/_cli.py:91
+#: ext/intersphinx/_load.py:72
+#, python-format
msgid ""
-"follow symbolic links. Powerful when combined with "
-"collective.recipe.omelette."
+"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
+"or list."
msgstr ""
-#: ext/apidoc/_cli.py:99
-msgid "run the script without creating files"
+#: ext/intersphinx/_load.py:83
+#, python-format
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
+" inventory locations) pair."
msgstr ""
-#: ext/apidoc/_cli.py:106
-msgid "put documentation for each module on its own page"
+#: ext/intersphinx/_load.py:94
+#, python-format
+msgid ""
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique non-empty strings."
msgstr ""
-#: ext/apidoc/_cli.py:113
-msgid "include \"_private\" modules"
+#: ext/intersphinx/_load.py:103
+#, python-format
+msgid ""
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique (other instance in intersphinx_mapping[%r])."
msgstr ""
-#: ext/apidoc/_cli.py:120
-msgid "filename of table of contents (default: modules)"
+#: ext/intersphinx/_load.py:122
+#, python-format
+msgid ""
+"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
+"Inventory locations must be non-empty strings or None."
msgstr ""
-#: ext/apidoc/_cli.py:127
-msgid "don't create a table of contents file"
+#: ext/intersphinx/_load.py:132
+msgid "Invalid `intersphinx_mapping` configuration (1 error)."
msgstr ""
-#: ext/apidoc/_cli.py:135
-msgid ""
-"don't create headings for the module/package packages (e.g. when the "
-"docstrings already contain them)"
+#: ext/intersphinx/_load.py:135
+#, python-format
+msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
msgstr ""
-#: ext/apidoc/_cli.py:145
-msgid "put module documentation before submodule documentation"
+#: ext/intersphinx/_load.py:158
+msgid "An invalid intersphinx_mapping entry was added after normalisation."
msgstr ""
-#: ext/apidoc/_cli.py:152
+#: ext/intersphinx/_load.py:297
+#, python-format
+msgid "loading intersphinx inventory '%s' from %s ..."
+msgstr ""
+
+#: ext/intersphinx/_load.py:324
msgid ""
-"interpret module paths according to PEP-0420 implicit namespaces "
-"specification"
+"encountered some issues with some of the inventories, but they had working "
+"alternatives:"
msgstr ""
-#: ext/apidoc/_cli.py:160
+#: ext/intersphinx/_load.py:332
+#, python-format
msgid ""
-"Comma-separated list of options to pass to automodule directive (or use "
-"SPHINX_APIDOC_OPTIONS)."
+"failed to reach any of the inventories with the following issues:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:170
-msgid "file suffix (default: rst)"
+#: ext/intersphinx/_load.py:411
+#, python-format
+msgid "intersphinx inventory has moved: %s -> %s"
msgstr ""
-#: ext/apidoc/_cli.py:186
-msgid "generate a full project with sphinx-quickstart"
+#: ext/intersphinx/_resolve.py:53
+#, python-format
+msgid "(in %s %s)"
msgstr ""
-#: ext/apidoc/_cli.py:193
-msgid "append module_path to sys.path, used when --full is given"
+#: ext/intersphinx/_resolve.py:55
+#, python-format
+msgid "(in %s)"
msgstr ""
-#: ext/apidoc/_cli.py:200
-msgid "project name (default: root module name)"
+#: ext/intersphinx/_resolve.py:112
+#, python-format
+msgid "inventory '%s': duplicate matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:207
-msgid "project author(s), used when --full is given"
+#: ext/intersphinx/_resolve.py:122
+#, python-format
+msgid "inventory '%s': multiple matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:214
-msgid "project version, used when --full is given"
+#: ext/intersphinx/_resolve.py:387
+#, python-format
+msgid "inventory for external cross-reference not found: %r"
msgstr ""
-#: ext/apidoc/_cli.py:222
-msgid "project release, used when --full is given, defaults to --doc-version"
+#: ext/intersphinx/_resolve.py:396
+#, python-format
+msgid "invalid external cross-reference suffix: %r"
msgstr ""
-#: ext/apidoc/_cli.py:226
-msgid "extension options"
+#: ext/intersphinx/_resolve.py:407
+#, python-format
+msgid "domain for external cross-reference not found: %r"
+msgstr ""
+
+#: ext/intersphinx/_resolve.py:561
+#, python-format
+msgid "external %s:%s reference target not found: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_loader.py:144
+#: ext/autodoc/_legacy_class_based/_documenters.py:882
+#, python-format
+msgid "error while formatting signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_loader.py:193
+#, python-format
+msgid "Ignoring invalid __all__ in module %s: %r"
msgstr ""
-#: ext/apidoc/_cli.py:232
-msgid "enable arbitrary extensions, used when --full is given"
+#: ext/autodoc/_dynamic/_loader.py:332 ext/autodoc/_dynamic/_signatures.py:496
+#: ext/autodoc/_dynamic/_signatures.py:612
+#: ext/autodoc/_legacy_class_based/_documenters.py:1284
+#: ext/autodoc/_legacy_class_based/_documenters.py:1372
+#: ext/autodoc/_legacy_class_based/_documenters.py:2906
+#, python-format
+msgid "Failed to get a function signature for %s: %s"
msgstr ""
-#: ext/apidoc/_cli.py:240
+#: ext/autodoc/_dynamic/_type_comments.py:120
#, python-format
-msgid "enable %s extension, used when --full is given"
+msgid "Failed to update signature for %r: parameter not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:291
+#: ext/autodoc/_dynamic/_type_comments.py:123
#, python-format
-msgid "%s is not a directory."
+msgid "Failed to parse type_comment for %r: %s"
msgstr ""
-#: ext/apidoc/_extension.py:50
-msgid "Running apidoc"
+#: ext/autodoc/_dynamic/_docstrings.py:268
+#: ext/autodoc/_legacy_class_based/_documenters.py:2499
+#, python-format
+msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
-#: ext/apidoc/_extension.py:102
+#: ext/autodoc/_dynamic/_signatures.py:102
+#: ext/autodoc/_legacy_class_based/_documenters.py:358
#, python-format
-msgid "apidoc_modules item %i must be a dict"
+msgid "error while formatting arguments for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:110
+#: ext/autodoc/_dynamic/_signatures.py:494
+#: ext/autodoc/_legacy_class_based/_documenters.py:1607
#, python-format
-msgid "apidoc_modules item %i must have a 'path' key"
+msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:115
+#: ext/autodoc/_dynamic/_signatures.py:498
+#: ext/autodoc/_legacy_class_based/_documenters.py:2235
+#: ext/autodoc/_legacy_class_based/_documenters.py:2355
#, python-format
-msgid "apidoc_modules item %i 'path' must be a string"
+msgid "Failed to get a method signature for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:121
+#: ext/autodoc/_dynamic/_signatures.py:500
#, python-format
-msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
+msgid "Failed to get a signature for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:133
+#: ext/autodoc/_dynamic/_preserve_defaults.py:156
#, python-format
-msgid "apidoc_modules item %i must have a 'destination' key"
+msgid "Failed to parse a default argument value for %r: %s"
msgstr ""
-#: ext/apidoc/_extension.py:140
+#: ext/autodoc/_dynamic/_member_finder.py:420
#, python-format
-msgid "apidoc_modules item %i 'destination' must be a string"
+msgid ""
+"attribute %s is listed in :members: but is missing as it was not found in "
+"object %r"
msgstr ""
-#: ext/apidoc/_extension.py:147
+#: ext/autodoc/_dynamic/_member_finder.py:473
+#: ext/autodoc/_legacy_class_based/_documenters.py:677
#, python-format
-msgid "apidoc_modules item %i 'destination' should be a relative path"
+msgid ""
+"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_extension.py:157
+#: ext/autodoc/_legacy_class_based/_documenters.py:964
#, python-format
-msgid "apidoc_modules item %i cannot create destination directory: %s"
+msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
-#: ext/apidoc/_extension.py:178
+#: ext/autodoc/_legacy_class_based/_documenters.py:980
#, python-format
-msgid "apidoc_modules item %i '%s' must be an int"
+msgid ""
+"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
+"__all__"
msgstr ""
-#: ext/apidoc/_extension.py:192
+#: ext/autodoc/_legacy_class_based/_documenters.py:1057
#, python-format
-msgid "apidoc_modules item %i '%s' must be a boolean"
+msgid ""
+"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
-#: ext/apidoc/_extension.py:210
+#: ext/autodoc/_legacy_class_based/_documenters.py:1764
#, python-format
-msgid "apidoc_modules item %i has unexpected keys: %s"
+msgid "missing attribute %s in object %s"
msgstr ""
-#: ext/apidoc/_extension.py:247
+#: ext/autodoc/_legacy_class_based/_documenters.py:1876
#, python-format
-msgid "apidoc_modules item %i '%s' must be a sequence"
+msgid "alias of TypeVar(%s)"
msgstr ""
-#: ext/apidoc/_extension.py:256
-#, python-format
-msgid "apidoc_modules item %i '%s' must contain strings"
+#: builders/html/_build_info.py:32
+msgid "failed to read broken build info file (unknown version)"
msgstr ""
-#: ext/apidoc/_generate.py:69
+#: builders/html/_build_info.py:36
+msgid "failed to read broken build info file (missing config entry)"
+msgstr ""
+
+#: builders/html/_build_info.py:39
+msgid "failed to read broken build info file (missing tags entry)"
+msgstr ""
+
+#: builders/html/__init__.py:114
#, python-format
-msgid "Would create file %s."
+msgid "The HTML pages are in %(outdir)s."
msgstr ""
-#: ext/intersphinx/_resolve.py:49
+#: builders/html/__init__.py:337
#, python-format
-msgid "(in %s v%s)"
-msgstr "(yn %s v%s)"
+msgid "Failed to read build info file: %r"
+msgstr ""
+
+#: builders/html/__init__.py:353
+msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+msgstr ""
+
+#: builders/html/__init__.py:355
+msgid "building [html]: "
+msgstr ""
-#: ext/intersphinx/_resolve.py:51
+#: builders/html/__init__.py:372
#, python-format
-msgid "(in %s)"
+msgid ""
+"template %s has been changed since the previous build, all docs will be "
+"rebuilt"
msgstr ""
-#: ext/intersphinx/_resolve.py:108
+#: builders/html/__init__.py:496
+msgid "index"
+msgstr "indecs"
+
+#: builders/html/__init__.py:549
#, python-format
-msgid "inventory '%s': duplicate matches found for %s:%s"
+msgid "Logo of %s"
+msgstr ""
+
+#: builders/html/__init__.py:578
+msgid "next"
+msgstr "nesaf"
+
+#: builders/html/__init__.py:587
+msgid "previous"
+msgstr "blaenorol"
+
+#: builders/html/__init__.py:685
+msgid "generating indices"
+msgstr ""
+
+#: builders/html/__init__.py:700
+msgid "writing additional pages"
msgstr ""
-#: ext/intersphinx/_resolve.py:118
+#: builders/html/__init__.py:783
#, python-format
-msgid "inventory '%s': multiple matches found for %s:%s"
+msgid "cannot copy image file '%s': %s"
+msgstr ""
+
+#: builders/html/__init__.py:795
+msgid "copying downloadable files... "
msgstr ""
-#: ext/intersphinx/_resolve.py:383
+#: builders/html/__init__.py:807
#, python-format
-msgid "inventory for external cross-reference not found: %r"
+msgid "cannot copy downloadable file %r: %s"
msgstr ""
-#: ext/intersphinx/_resolve.py:392
+#: builders/html/__init__.py:853
#, python-format
-msgid "invalid external cross-reference suffix: %r"
+msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:403
+#: builders/html/__init__.py:871
#, python-format
-msgid "domain for external cross-reference not found: %r"
+msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:619
+#: builders/html/__init__.py:906
+msgid "copying static files"
+msgstr ""
+
+#: builders/html/__init__.py:923
#, python-format
-msgid "external %s:%s reference target not found: %s"
+msgid "cannot copy static file %r"
+msgstr ""
+
+#: builders/html/__init__.py:928
+msgid "copying extra files"
msgstr ""
-#: ext/intersphinx/_load.py:60
+#: builders/html/__init__.py:938
#, python-format
-msgid ""
-"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
-"identifiers must be non-empty strings."
+msgid "cannot copy extra file %r"
msgstr ""
-#: ext/intersphinx/_load.py:71
+#: builders/html/__init__.py:944
#, python-format
+msgid "Failed to write build info file: %r"
+msgstr ""
+
+#: builders/html/__init__.py:994
msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
-"or list."
+"search index couldn't be loaded, but not all documents will be built: the "
+"index will be incomplete."
msgstr ""
-#: ext/intersphinx/_load.py:82
+#: builders/html/__init__.py:1038
#, python-format
-msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
-" inventory locations) pair."
+msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr ""
-#: ext/intersphinx/_load.py:93
+#: builders/html/__init__.py:1204
#, python-format
msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique non-empty strings."
+"a Unicode error occurred when rendering the page %s. Please make sure all "
+"config values that contain non-ASCII content are Unicode strings."
msgstr ""
-#: ext/intersphinx/_load.py:102
+#: builders/html/__init__.py:1217
#, python-format
msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique (other instance in intersphinx_mapping[%r])."
+"The '%s' theme does not support this version of Sphinx, because it uses the "
+"'style' field in HTML templates, which was was deprecated in Sphinx 5.1 and"
+" removed in Sphinx 7.0. The theme must be updated to use the 'styles' field "
+"instead. See https://www.sphinx-"
+"doc.org/en/master/development/html_themes/templating.html#styles"
msgstr ""
-#: ext/intersphinx/_load.py:121
+#: builders/html/__init__.py:1225
#, python-format
msgid ""
-"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
-"Inventory locations must be non-empty strings or None."
+"An error happened in rendering the page %s.\n"
+"Reason: %r"
msgstr ""
-#: ext/intersphinx/_load.py:131
-msgid "Invalid `intersphinx_mapping` configuration (1 error)."
+#: builders/html/__init__.py:1258
+msgid "dumping object inventory"
msgstr ""
-#: ext/intersphinx/_load.py:134
+#: builders/html/__init__.py:1266
#, python-format
-msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
+msgid "dumping search index in %s"
msgstr ""
-#: ext/intersphinx/_load.py:157
-msgid "An invalid intersphinx_mapping entry was added after normalisation."
+#: builders/html/__init__.py:1313
+#, python-format
+msgid "invalid js_file: %r, ignored"
msgstr ""
-#: ext/intersphinx/_load.py:261
-#, python-format
-msgid "loading intersphinx inventory '%s' from %s ..."
+#: builders/html/__init__.py:1347
+msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr ""
-#: ext/intersphinx/_load.py:287
-msgid ""
-"encountered some issues with some of the inventories, but they had working "
-"alternatives:"
+#: builders/html/__init__.py:1351
+#, python-format
+msgid "Unknown math_renderer %r is given."
msgstr ""
-#: ext/intersphinx/_load.py:297
-msgid "failed to reach any of the inventories with the following issues:"
+#: builders/html/__init__.py:1365
+#, python-format
+msgid "html_extra_path entry %r is placed inside outdir"
msgstr ""
-#: ext/intersphinx/_load.py:361
+#: builders/html/__init__.py:1370
#, python-format
-msgid "intersphinx inventory has moved: %s -> %s"
+msgid "html_extra_path entry %r does not exist"
msgstr ""
-#: ext/autodoc/__init__.py:150
+#: builders/html/__init__.py:1385
#, python-format
-msgid "invalid value for member-order option: %s"
+msgid "html_static_path entry %r is placed inside outdir"
msgstr ""
-#: ext/autodoc/__init__.py:158
+#: builders/html/__init__.py:1390
#, python-format
-msgid "invalid value for class-doc-from option: %s"
+msgid "html_static_path entry %r does not exist"
msgstr ""
-#: ext/autodoc/__init__.py:460
+#: builders/html/__init__.py:1401 builders/latex/__init__.py:497
#, python-format
-msgid "invalid signature for auto%s (%r)"
+msgid "logo file %r does not exist"
msgstr ""
-#: ext/autodoc/__init__.py:579
+#: builders/html/__init__.py:1412
#, python-format
-msgid "error while formatting arguments for %s: %s"
+msgid "favicon file %r does not exist"
msgstr ""
-#: ext/autodoc/__init__.py:898
+#: builders/html/__init__.py:1425
#, python-format
msgid ""
-"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
-"%s"
+"Values in 'html_sidebars' must be a list of strings. At least one pattern "
+"has a string value: %s. Change to `html_sidebars = %r`."
msgstr ""
-#: ext/autodoc/__init__.py:1021
-#, python-format
+#: builders/html/__init__.py:1438
msgid ""
-"don't know which module to import for autodocumenting %r (try placing a "
-"\"module\" or \"currentmodule\" directive in the document, or giving an "
-"explicit module name)"
+"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
+"configuration options)"
msgstr ""
-#: ext/autodoc/__init__.py:1080
+#: builders/html/__init__.py:1454
#, python-format
-msgid "A mocked object is detected: %r"
+msgid "%s %s documentation"
+msgstr "Dogfennaeth %s %s "
+
+#: builders/latex/theming.py:87
+#, python-format
+msgid "%r doesn't have \"theme\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:1103
+#: builders/latex/theming.py:90
#, python-format
-msgid "error while formatting signature for %s: %s"
+msgid "%r doesn't have \"%s\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:1177
-msgid "\"::\" in automodule name doesn't make sense"
+#: builders/latex/transforms.py:120
+msgid "Failed to get a docname!"
msgstr ""
-#: ext/autodoc/__init__.py:1185
+#: builders/latex/transforms.py:121
#, python-format
-msgid "signature arguments or return annotation given for automodule %s"
+msgid "Failed to get a docname for source %r!"
msgstr ""
-#: ext/autodoc/__init__.py:1201
+#: builders/latex/transforms.py:487
#, python-format
-msgid ""
-"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
-"__all__"
+msgid "No footnote was found for given reference node %r"
msgstr ""
-#: ext/autodoc/__init__.py:1278
+#: builders/latex/__init__.py:115
#, python-format
+msgid "The LaTeX files are in %(outdir)s."
+msgstr ""
+
+#: builders/latex/__init__.py:118
msgid ""
-"missing attribute mentioned in :members: option: module %s, attribute %s"
+"\n"
+"Run 'make' in that directory to run these through (pdf)latex\n"
+"(use `make latexpdf' here to do that automatically)."
msgstr ""
-#: ext/autodoc/__init__.py:1505 ext/autodoc/__init__.py:1593
-#: ext/autodoc/__init__.py:3127
+#: builders/latex/__init__.py:156
+msgid "no \"latex_documents\" config value found; no documents will be written"
+msgstr ""
+
+#: builders/latex/__init__.py:167
#, python-format
-msgid "Failed to get a function signature for %s: %s"
+msgid "\"latex_documents\" config value references unknown document %s"
+msgstr ""
+
+#: builders/latex/__init__.py:421
+msgid "copying TeX support files"
msgstr ""
-#: ext/autodoc/__init__.py:1828
+#: builders/latex/__init__.py:458
+msgid "copying additional files"
+msgstr ""
+
+#: builders/latex/__init__.py:529
#, python-format
-msgid "Failed to get a constructor signature for %s: %s"
+msgid "Unknown configure key: latex_elements[%r], ignored."
msgstr ""
-#: ext/autodoc/__init__.py:1966
+#: builders/latex/__init__.py:537
#, python-format
-msgid "Bases: %s"
+msgid "Unknown theme option: latex_theme_options[%r], ignored."
+msgstr ""
+
+#: environment/collectors/toctree.py:259
+#, python-format
+msgid "%s is already assigned section numbers (nested numbered toctree?)"
msgstr ""
-#: ext/autodoc/__init__.py:1985
+#: environment/collectors/asset.py:98
#, python-format
-msgid "missing attribute %s in object %s"
+msgid "image file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2081 ext/autodoc/__init__.py:2110
-#: ext/autodoc/__init__.py:2204
+#: environment/collectors/asset.py:126
#, python-format
-msgid "alias of %s"
+msgid "image file %s not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2097
+#: environment/collectors/asset.py:165
#, python-format
-msgid "alias of TypeVar(%s)"
+msgid "download file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2456 ext/autodoc/__init__.py:2576
+#: environment/adapters/toctree.py:335
#, python-format
-msgid "Failed to get a method signature for %s: %s"
+msgid "circular toctree references detected, ignoring: %s <- %s"
msgstr ""
-#: ext/autodoc/__init__.py:2720
+#: environment/adapters/toctree.py:360
#, python-format
-msgid "Invalid __slots__ found on %s. Ignored."
+msgid ""
+"toctree contains reference to document %r that doesn't have a title: no link"
+" will be generated"
msgstr ""
-#: ext/autodoc/preserve_defaults.py:195
+#: environment/adapters/toctree.py:375
#, python-format
-msgid "Failed to parse a default argument value for %r: %s"
+msgid "toctree contains reference to non-included document %r"
msgstr ""
-#: ext/autodoc/type_comment.py:151
+#: environment/adapters/toctree.py:378
#, python-format
-msgid "Failed to update signature for %r: parameter not found: %s"
+msgid "toctree contains reference to non-existing document %r"
msgstr ""
-#: ext/autodoc/type_comment.py:154
+#: environment/adapters/indexentries.py:122
#, python-format
-msgid "Failed to parse type_comment for %r: %s"
+msgid "see %s"
+msgstr "gweler %s"
+
+#: environment/adapters/indexentries.py:132
+#, python-format
+msgid "see also %s"
+msgstr "gweler hefyd %s"
+
+#: environment/adapters/indexentries.py:140
+#, python-format
+msgid "unknown index entry type %r"
msgstr ""
diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo
index 54521ffb375..c001d903c43 100644
Binary files a/sphinx/locale/da/LC_MESSAGES/sphinx.mo and b/sphinx/locale/da/LC_MESSAGES/sphinx.mo differ
diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po
index da61a5e20f6..1a36bb736d4 100644
--- a/sphinx/locale/da/LC_MESSAGES/sphinx.po
+++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2025-02-18 00:33+0000\n"
+"POT-Creation-Date: 2025-12-01 16:14+0000\n"
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
"Last-Translator: Komiya Takeshi , 2021\n"
"Language-Team: Danish (http://app.transifex.com/sphinx-doc/sphinx-1/language/da/)\n"
@@ -22,6 +22,127 @@ msgstr ""
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: roles.py:205
+#, python-format
+msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgstr ""
+
+#: roles.py:228
+#, python-format
+msgid "invalid CVE number %s"
+msgstr ""
+
+#: roles.py:250
+#, python-format
+msgid "Common Weakness Enumeration; CWE %s"
+msgstr ""
+
+#: roles.py:273
+#, python-format
+msgid "invalid CWE number %s"
+msgstr ""
+
+#: roles.py:293
+#, python-format
+msgid "Python Enhancement Proposals; PEP %s"
+msgstr "Python Enhancement Proposals; PEP %s"
+
+#: roles.py:316
+#, python-format
+msgid "invalid PEP number %s"
+msgstr ""
+
+#: roles.py:354
+#, python-format
+msgid "invalid RFC number %s"
+msgstr ""
+
+#: theming.py:117
+#, python-format
+msgid ""
+"Theme configuration sections other than [theme] and [options] are not "
+"supported (tried to get a value from %r)."
+msgstr ""
+
+#: theming.py:122
+#, python-format
+msgid "setting %s.%s occurs in none of the searched theme configs"
+msgstr ""
+
+#: theming.py:137
+#, python-format
+msgid "unsupported theme option %r given"
+msgstr ""
+
+#: theming.py:218
+#, python-format
+msgid "file %r on theme path is not a valid zipfile or contains no theme"
+msgstr ""
+
+#: theming.py:238
+#, python-format
+msgid "no theme named %r found (missing theme.toml?)"
+msgstr ""
+
+#: theming.py:278
+#, python-format
+msgid "The %r theme has circular inheritance"
+msgstr ""
+
+#: theming.py:286
+#, python-format
+msgid ""
+"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
+"are: %s"
+msgstr ""
+
+#: theming.py:292
+#, python-format
+msgid "The %r theme has too many ancestors"
+msgstr ""
+
+#: theming.py:320
+#, python-format
+msgid "no theme configuration file found in %r"
+msgstr ""
+
+#: theming.py:345 theming.py:398
+#, python-format
+msgid "theme %r doesn't have the \"theme\" table"
+msgstr ""
+
+#: theming.py:349
+#, python-format
+msgid "The %r theme \"[theme]\" table is not a table"
+msgstr ""
+
+#: theming.py:353 theming.py:401
+#, python-format
+msgid "The %r theme must define the \"theme.inherit\" setting"
+msgstr ""
+
+#: theming.py:357
+#, python-format
+msgid "The %r theme \"[options]\" table is not a table"
+msgstr ""
+
+#: theming.py:376
+#, python-format
+msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+msgstr ""
+
+#: project.py:72
+#, python-format
+msgid ""
+"multiple files found for the document \"%s\": %s\n"
+"Use %r for the build."
+msgstr ""
+
+#: project.py:87
+#, python-format
+msgid "Ignored unreadable document %r."
+msgstr ""
+
#: extension.py:58
#, python-format
msgid ""
@@ -36,127 +157,154 @@ msgid ""
"cannot be built with the loaded version (%s)."
msgstr ""
-#: application.py:212
+#: highlighting.py:170
+#, python-format
+msgid "Pygments lexer name %r is not known"
+msgstr ""
+
+#: highlighting.py:209
+#, python-format
+msgid ""
+"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
+"Retrying in relaxed mode."
+msgstr ""
+
+#: events.py:92
+#, python-format
+msgid "Event %r already present"
+msgstr ""
+
+#: events.py:386
+#, python-format
+msgid "Unknown event name: %s"
+msgstr "Ukendt hændelsesnavn: %s"
+
+#: events.py:451
+#, python-format
+msgid "Handler %r for event %r threw an exception"
+msgstr ""
+
+#: application.py:218
#, python-format
msgid "Cannot find source directory (%s)"
msgstr "Kan ikke finde kildemappen (%s)"
-#: application.py:217
+#: application.py:223
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
-#: application.py:222
+#: application.py:228
msgid "Source directory and destination directory cannot be identical"
msgstr "Kildemappe og destinationsmappe kan ikke være identiske"
-#: application.py:252
+#: application.py:258
#, python-format
msgid "Running Sphinx v%s"
msgstr "Kører Sphinx v%s"
-#: application.py:278
+#: application.py:286
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr "Dette projekt kræver mindst Sphinx v%s og kan derfor ikke bygges med denne version."
-#: application.py:297
+#: application.py:305
msgid "making output directory"
msgstr ""
-#: application.py:302 registry.py:538
+#: application.py:310 registry.py:540
#, python-format
msgid "while setting up extension %s:"
msgstr ""
-#: application.py:309
+#: application.py:317
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
-#: application.py:346
+#: application.py:360
#, python-format
msgid "loading translations [%s]... "
msgstr "indlæser oversættelser [%s] ..."
-#: application.py:370 util/display.py:89
+#: application.py:384 util/display.py:89
msgid "done"
msgstr "færdig"
-#: application.py:372
+#: application.py:386
msgid "not available for built-in messages"
msgstr "ikke tilgængelig for indbyggede beskeder"
-#: application.py:386
+#: application.py:400
msgid "loading pickled environment"
msgstr ""
-#: application.py:394
+#: application.py:408
#, python-format
msgid "failed: %s"
msgstr "fejlede: %s"
-#: application.py:407
+#: application.py:423
msgid "No builder selected, using default: html"
msgstr ""
-#: application.py:439
+#: application.py:455
msgid "build finished with problems."
msgstr ""
-#: application.py:441
+#: application.py:457
msgid "build succeeded."
msgstr ""
-#: application.py:446
+#: application.py:462
msgid ""
"build finished with problems, 1 warning (with warnings treated as errors)."
msgstr ""
-#: application.py:450
+#: application.py:466
msgid "build finished with problems, 1 warning."
msgstr ""
-#: application.py:452
+#: application.py:468
msgid "build succeeded, 1 warning."
msgstr ""
-#: application.py:458
+#: application.py:474
#, python-format
msgid ""
"build finished with problems, %s warnings (with warnings treated as errors)."
msgstr ""
-#: application.py:462
+#: application.py:478
#, python-format
msgid "build finished with problems, %s warnings."
msgstr ""
-#: application.py:464
+#: application.py:480
#, python-format
msgid "build succeeded, %s warnings."
msgstr ""
-#: application.py:1026
+#: application.py:1020
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
-#: application.py:1119
+#: application.py:1113
#, python-format
msgid "directive %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1145 application.py:1173
+#: application.py:1139 application.py:1167
#, python-format
msgid "role %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1770
+#: application.py:1766
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@@ -164,12 +312,12 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1775
+#: application.py:1771
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
-#: application.py:1779
+#: application.py:1775
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@@ -177,82 +325,214 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1784
+#: application.py:1780
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
-#: application.py:1792 application.py:1796
+#: application.py:1788 application.py:1792
#, python-format
msgid "doing serial %s"
msgstr ""
-#: config.py:355
+#: registry.py:162
#, python-format
-msgid "config directory doesn't contain a conf.py file (%s)"
-msgstr "konfigurationsmappe indeholder ikke en conf.py-fil (%s)"
+msgid "Builder class %s has no \"name\" attribute"
+msgstr ""
+
+#: registry.py:166
+#, python-format
+msgid "Builder %r already exists (in module %s)"
+msgstr ""
+
+#: registry.py:182
+#, python-format
+msgid "Builder name %s not registered or available through entry point"
+msgstr ""
+
+#: registry.py:192
+#, python-format
+msgid "Builder name %s not registered"
+msgstr ""
+
+#: registry.py:199
+#, python-format
+msgid "domain %s already registered"
+msgstr "domænet %s er allerede registreret"
+
+#: registry.py:223 registry.py:244 registry.py:257
+#, python-format
+msgid "domain %s not yet registered"
+msgstr ""
+
+#: registry.py:230
+#, python-format
+msgid "The %r directive is already registered to domain %s"
+msgstr ""
+
+#: registry.py:248
+#, python-format
+msgid "The %r role is already registered to domain %s"
+msgstr "Rollen %r er allerede registreret til domæne %s"
+
+#: registry.py:261
+#, python-format
+msgid "The %r index is already registered to domain %s"
+msgstr ""
+
+#: registry.py:308
+#, python-format
+msgid "The %r object_type is already registered"
+msgstr ""
+
+#: registry.py:339
+#, python-format
+msgid "The %r crossref_type is already registered"
+msgstr ""
+
+#: registry.py:348
+#, python-format
+msgid "source_suffix %r is already registered"
+msgstr ""
+
+#: registry.py:358
+#, python-format
+msgid "source_parser for %r is already registered"
+msgstr "source_parser for %r er allerede registreret"
+
+#: registry.py:367
+#, python-format
+msgid "Source parser for %s not registered"
+msgstr ""
+
+#: registry.py:388
+#, python-format
+msgid "Translator for %r already exists"
+msgstr ""
+
+#: registry.py:405
+#, python-format
+msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
+msgstr ""
+
+#: registry.py:498
+#, python-format
+msgid "enumerable_node %r already registered"
+msgstr ""
+
+#: registry.py:514
+#, python-format
+msgid "math renderer %s is already registered"
+msgstr ""
-#: config.py:366
+#: registry.py:531
+#, python-format
msgid ""
-"Invalid configuration value found: 'language = None'. Update your "
-"configuration to a valid language code. Falling back to 'en' (English)."
+"the extension %r was already merged with Sphinx since version %s; this "
+"extension is ignored."
+msgstr ""
+
+#: registry.py:545
+msgid "Original exception:\n"
+msgstr ""
+
+#: registry.py:547
+#, python-format
+msgid "Could not import extension %s"
+msgstr "Kunne ikke importere udvidelse %s"
+
+#: registry.py:554
+#, python-format
+msgid ""
+"extension %r has no setup() function; is it really a Sphinx extension "
+"module?"
+msgstr ""
+
+#: registry.py:567
+#, python-format
+msgid ""
+"The %s extension used by this project needs at least Sphinx v%s; it "
+"therefore cannot be built with this version."
+msgstr "Udvidelsen %s brugt af dette projekt kræver mindst Sphinx v%s; den kan derfor ikke bygges med denne version."
+
+#: registry.py:579
+#, python-format
+msgid ""
+"extension %r returned an unsupported object from its setup() function; it "
+"should return None or a metadata dictionary"
+msgstr ""
+
+#: registry.py:605
+#, python-format
+msgid "`None` is not a valid filetype for %r."
msgstr ""
-#: config.py:394
+#: config.py:351
+#, python-format
+msgid "config directory doesn't contain a conf.py file (%s)"
+msgstr "konfigurationsmappe indeholder ikke en conf.py-fil (%s)"
+
+#: config.py:374
#, python-format
msgid "'%s' must be '0' or '1', got '%s'"
msgstr ""
-#: config.py:399
+#: config.py:379
#, python-format
msgid ""
"cannot override dictionary config setting %r, ignoring (use %r to set "
"individual elements)"
msgstr ""
-#: config.py:411
+#: config.py:391
#, python-format
msgid "invalid number %r for config value %r, ignoring"
msgstr ""
-#: config.py:419
+#: config.py:399
#, python-format
msgid "cannot override config setting %r with unsupported type, ignoring"
msgstr ""
-#: config.py:442
+#: config.py:422
#, python-format
msgid "unknown config value %r in override, ignoring"
msgstr ""
-#: config.py:496
+#: config.py:476
#, python-format
msgid "No such config value: %r"
msgstr ""
-#: config.py:524
+#: config.py:504
#, python-format
msgid "Config value %r already present"
msgstr "Konfigurationsværdien %r er allerede til stede"
-#: config.py:561
+#: config.py:541
#, python-format
msgid ""
"cannot cache unpickleable configuration value: %r (because it contains a "
"function, class, or module object)"
msgstr ""
-#: config.py:603
+#: config.py:577
+msgid ""
+"Invalid configuration value found: 'language = None'. Update your "
+"configuration to a valid language code. Falling back to 'en' (English)."
+msgstr ""
+
+#: config.py:599
#, python-format
msgid "There is a syntax error in your configuration file: %s\n"
msgstr ""
-#: config.py:607
+#: config.py:603
msgid ""
"The configuration file (or one of the modules it imports) called sys.exit()"
msgstr ""
-#: config.py:615
+#: config.py:611
#, python-format
msgid ""
"There is a programmable error in your configuration file:\n"
@@ -260,468 +540,624 @@ msgid ""
"%s"
msgstr ""
-#: config.py:637
+#: config.py:633
#, python-format
msgid "Failed to convert %r to a frozenset"
msgstr ""
-#: config.py:655 config.py:663
+#: config.py:651 config.py:659
#, python-format
msgid "Converting `source_suffix = %r` to `source_suffix = %r`."
msgstr ""
-#: config.py:669
+#: config.py:665
#, python-format
msgid ""
"The config value `source_suffix' expects a dictionary, a string, or a list "
"of strings. Got `%r' instead (type %s)."
msgstr ""
-#: config.py:690
+#: config.py:686
#, python-format
msgid "Section %s"
msgstr ""
-#: config.py:691
+#: config.py:687
#, python-format
msgid "Fig. %s"
msgstr "figur %s"
-#: config.py:692
+#: config.py:688
#, python-format
msgid "Table %s"
msgstr "tabel %s"
-#: config.py:693
+#: config.py:689
#, python-format
msgid "Listing %s"
msgstr "Kildekode %s"
-#: config.py:802
+#: config.py:798
#, python-brace-format
msgid ""
"The config value `{name}` has to be a one of {candidates}, but `{current}` "
"is given."
msgstr ""
-#: config.py:833
+#: config.py:829
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}'; expected "
"{permitted}."
msgstr ""
-#: config.py:850
+#: config.py:846
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}', defaults to "
"`{default.__name__}'."
msgstr ""
-#: config.py:862
+#: config.py:858
#, python-format
msgid "primary_domain %r not found, ignored."
msgstr "primary_domain %r blev ikke fundet, ignorerer."
-#: config.py:882
+#: config.py:878
msgid ""
"Sphinx now uses \"index\" as the master document by default. To keep pre-2.0"
" behaviour, set \"master_doc = 'contents'\"."
msgstr ""
-#: highlighting.py:170
-#, python-format
-msgid "Pygments lexer name %r is not known"
+#: config.py:892
+msgid ""
+"Support for source encodings other than UTF-8 is deprecated and will be "
+"removed in Sphinx 10. Please comment at https://github.com/sphinx-"
+"doc/sphinx/issues/13665 if this causes a problem."
msgstr ""
-#: highlighting.py:209
-#, python-format
-msgid ""
-"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
-"Retrying in relaxed mode."
-msgstr ""
+#: environment/__init__.py:89
+msgid "new config"
+msgstr "ny konfiguration"
-#: theming.py:115
-#, python-format
-msgid ""
-"Theme configuration sections other than [theme] and [options] are not "
-"supported (tried to get a value from %r)."
+#: environment/__init__.py:90
+msgid "config changed"
msgstr ""
-#: theming.py:120
-#, python-format
-msgid "setting %s.%s occurs in none of the searched theme configs"
-msgstr ""
+#: environment/__init__.py:91
+msgid "extensions changed"
+msgstr "udvidelser ændret"
-#: theming.py:135
-#, python-format
-msgid "unsupported theme option %r given"
+#: environment/__init__.py:261
+msgid "build environment version not current"
msgstr ""
-#: theming.py:208
+#: environment/__init__.py:263
+msgid "source directory has changed"
+msgstr "kildemappe er ændret"
+
+#: environment/__init__.py:350
#, python-format
-msgid "file %r on theme path is not a valid zipfile or contains no theme"
+msgid "The configuration has changed (1 option: %r)"
msgstr ""
-#: theming.py:228
+#: environment/__init__.py:355
#, python-format
-msgid "no theme named %r found (missing theme.toml?)"
+msgid "The configuration has changed (%d options: %s)"
msgstr ""
-#: theming.py:268
+#: environment/__init__.py:361
#, python-format
-msgid "The %r theme has circular inheritance"
+msgid "The configuration has changed (%d options: %s, ...)"
msgstr ""
-#: theming.py:276
-#, python-format
+#: environment/__init__.py:404
msgid ""
-"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
-"are: %s"
+"This environment is incompatible with the selected builder, please choose "
+"another doctree directory."
msgstr ""
-#: theming.py:282
+#: environment/__init__.py:518
#, python-format
-msgid "The %r theme has too many ancestors"
+msgid "Failed to scan documents in %s: %r"
msgstr ""
-#: theming.py:310
+#: environment/__init__.py:645 ext/intersphinx/_resolve.py:238
#, python-format
-msgid "no theme configuration file found in %r"
+msgid "Domain %r is not registered"
msgstr ""
-#: theming.py:335 theming.py:388
-#, python-format
-msgid "theme %r doesn't have the \"theme\" table"
+#: environment/__init__.py:811
+msgid "document isn't included in any toctree"
msgstr ""
-#: theming.py:339
-#, python-format
-msgid "The %r theme \"[theme]\" table is not a table"
+#: environment/__init__.py:922
+msgid "self referenced toctree found. Ignored."
msgstr ""
-#: theming.py:343 theming.py:391
+#: environment/__init__.py:952
#, python-format
-msgid "The %r theme must define the \"theme.inherit\" setting"
+msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
msgstr ""
-#: theming.py:347
-#, python-format
-msgid "The %r theme \"[options]\" table is not a table"
-msgstr ""
+#: locale/__init__.py:229
+msgid "Attention"
+msgstr "Vær opmærksom"
-#: theming.py:366
-#, python-format
-msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
-msgstr ""
+#: locale/__init__.py:230
+msgid "Caution"
+msgstr "Forsigtig"
-#: events.py:77
-#, python-format
-msgid "Event %r already present"
-msgstr ""
+#: locale/__init__.py:231
+msgid "Danger"
+msgstr "Fare"
-#: events.py:370
-#, python-format
-msgid "Unknown event name: %s"
-msgstr "Ukendt hændelsesnavn: %s"
+#: locale/__init__.py:232
+msgid "Error"
+msgstr "Fejl"
+
+#: locale/__init__.py:233
+msgid "Hint"
+msgstr "Fif"
+
+#: locale/__init__.py:234
+msgid "Important"
+msgstr "Vigtigt"
+
+#: locale/__init__.py:235
+msgid "Note"
+msgstr "Bemærk"
+
+#: locale/__init__.py:236
+msgid "See also"
+msgstr "Se også"
+
+#: locale/__init__.py:237
+msgid "Tip"
+msgstr "Tip"
+
+#: locale/__init__.py:238
+msgid "Warning"
+msgstr "Advarsel"
-#: events.py:416
+#: builders/texinfo.py:41
#, python-format
-msgid "Handler %r for event %r threw an exception"
+msgid "The Texinfo files are in %(outdir)s."
msgstr ""
-#: project.py:72
-#, python-format
+#: builders/texinfo.py:44
msgid ""
-"multiple files found for the document \"%s\": %s\n"
-"Use %r for the build."
+"\n"
+"Run 'make' in that directory to run these through makeinfo\n"
+"(use 'make info' here to do that automatically)."
msgstr ""
-#: project.py:87
-#, python-format
-msgid "Ignored unreadable document %r."
+#: builders/texinfo.py:73
+msgid "no \"texinfo_documents\" config value found; no documents will be written"
msgstr ""
-#: registry.py:167
+#: builders/texinfo.py:85
#, python-format
-msgid "Builder class %s has no \"name\" attribute"
+msgid "\"texinfo_documents\" config value references unknown document %s"
msgstr ""
-#: registry.py:171
+#: builders/latex/__init__.py:310 builders/texinfo.py:105
#, python-format
-msgid "Builder %r already exists (in module %s)"
+msgid "processing %s"
msgstr ""
-#: registry.py:187
-#, python-format
-msgid "Builder name %s not registered or available through entry point"
+#: builders/latex/__init__.py:332 builders/manpage.py:54
+#: builders/singlehtml.py:176 builders/texinfo.py:111
+msgid "writing"
msgstr ""
-#: registry.py:197
-#, python-format
-msgid "Builder name %s not registered"
+#: builders/latex/__init__.py:398 builders/texinfo.py:160
+msgid "resolving references..."
msgstr ""
-#: registry.py:204
-#, python-format
-msgid "domain %s already registered"
-msgstr "domænet %s er allerede registreret"
+#: builders/latex/__init__.py:409 builders/texinfo.py:170
+msgid " (in "
+msgstr " (i "
-#: registry.py:228 registry.py:249 registry.py:262
-#, python-format
-msgid "domain %s not yet registered"
+#: builders/_epub_base.py:425 builders/html/__init__.py:768
+#: builders/latex/__init__.py:474 builders/texinfo.py:186
+msgid "copying images... "
msgstr ""
-#: registry.py:235
+#: builders/_epub_base.py:447 builders/latex/__init__.py:489
+#: builders/texinfo.py:203
#, python-format
-msgid "The %r directive is already registered to domain %s"
+msgid "cannot copy image file %r: %s"
msgstr ""
-#: registry.py:253
-#, python-format
-msgid "The %r role is already registered to domain %s"
-msgstr "Rollen %r er allerede registreret til domæne %s"
+#: builders/texinfo.py:210
+msgid "copying Texinfo support files"
+msgstr ""
-#: registry.py:266
+#: builders/texinfo.py:218
#, python-format
-msgid "The %r index is already registered to domain %s"
+msgid "error writing file Makefile: %s"
msgstr ""
-#: registry.py:313
+#: builders/manpage.py:37
#, python-format
-msgid "The %r object_type is already registered"
+msgid "The manual pages are in %(outdir)s."
msgstr ""
-#: registry.py:344
-#, python-format
-msgid "The %r crossref_type is already registered"
+#: builders/manpage.py:45
+msgid "no \"man_pages\" config value found; no manual pages will be written"
msgstr ""
-#: registry.py:353
+#: builders/manpage.py:64
#, python-format
-msgid "source_suffix %r is already registered"
+msgid "\"man_pages\" config value references unknown document %s"
msgstr ""
-#: registry.py:363
+#: builders/singlehtml.py:35
#, python-format
-msgid "source_parser for %r is already registered"
-msgstr "source_parser for %r er allerede registreret"
+msgid "The HTML page is in %(outdir)s."
+msgstr "HTML-siden er i %(outdir)s."
-#: registry.py:372
-#, python-format
-msgid "Source parser for %s not registered"
+#: builders/singlehtml.py:171
+msgid "assembling single document"
msgstr ""
-#: registry.py:390
-#, python-format
-msgid "Translator for %r already exists"
+#: builders/singlehtml.py:189
+msgid "writing additional files"
msgstr ""
-#: registry.py:407
-#, python-format
-msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
+#: builders/dummy.py:19
+msgid "The dummy builder generates no files."
msgstr ""
-#: registry.py:496
+#: builders/gettext.py:243
#, python-format
-msgid "enumerable_node %r already registered"
-msgstr ""
+msgid "The message catalogs are in %(outdir)s."
+msgstr "Beskedkatalogerne er i %(outdir)s."
-#: registry.py:512
+#: builders/__init__.py:400 builders/gettext.py:264
#, python-format
-msgid "math renderer %s is already registered"
+msgid "building [%s]: "
msgstr ""
-#: registry.py:529
+#: builders/gettext.py:265
#, python-format
-msgid ""
-"the extension %r was already merged with Sphinx since version %s; this "
-"extension is ignored."
+msgid "targets for %d template files"
msgstr ""
-#: registry.py:543
-msgid "Original exception:\n"
-msgstr ""
+#: builders/gettext.py:271
+msgid "reading templates... "
+msgstr "læser skabeloner ..."
-#: registry.py:545
-#, python-format
-msgid "Could not import extension %s"
-msgstr "Kunne ikke importere udvidelse %s"
+#: builders/gettext.py:310
+msgid "writing message catalogs... "
+msgstr "skriver beskedkataloger ..."
-#: registry.py:552
+#: builders/linkcheck.py:87
#, python-format
-msgid ""
-"extension %r has no setup() function; is it really a Sphinx extension "
-"module?"
+msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
msgstr ""
-#: registry.py:565
+#: builders/linkcheck.py:159
#, python-format
-msgid ""
-"The %s extension used by this project needs at least Sphinx v%s; it "
-"therefore cannot be built with this version."
-msgstr "Udvidelsen %s brugt af dette projekt kræver mindst Sphinx v%s; den kan derfor ikke bygges med denne version."
+msgid "broken link: %s (%s)"
+msgstr ""
-#: registry.py:577
+#: builders/linkcheck.py:561
#, python-format
-msgid ""
-"extension %r returned an unsupported object from its setup() function; it "
-"should return None or a metadata dictionary"
+msgid "Anchor '%s' not found"
msgstr ""
-#: registry.py:612
-#, python-format
-msgid "`None` is not a valid filetype for %r."
+#: builders/linkcheck.py:789
+msgid "linkcheck_allowed_redirects. Expected a dictionary."
msgstr ""
-#: roles.py:206
+#: builders/linkcheck.py:799
#, python-format
-msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
-#: roles.py:229
+#: builders/epub3.py:83
#, python-format
-msgid "invalid CVE number %s"
+msgid "The ePub file is in %(outdir)s."
msgstr ""
-#: roles.py:251
-#, python-format
-msgid "Common Weakness Enumeration; CWE %s"
+#: builders/epub3.py:188
+msgid "writing nav.xhtml file..."
msgstr ""
-#: roles.py:274
-#, python-format
-msgid "invalid CWE number %s"
+#: builders/epub3.py:224
+msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
msgstr ""
-#: roles.py:294
-#, python-format
-msgid "Python Enhancement Proposals; PEP %s"
-msgstr "Python Enhancement Proposals; PEP %s"
+#: builders/epub3.py:230
+msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
+msgstr ""
-#: roles.py:317
-#, python-format
-msgid "invalid PEP number %s"
+#: builders/epub3.py:235
+msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
msgstr ""
-#: roles.py:355
-#, python-format
-msgid "invalid RFC number %s"
+#: builders/epub3.py:241
+msgid "conf value \"epub_author\" should not be empty for EPUB3"
msgstr ""
-#: ext/linkcode.py:86 ext/viewcode.py:226
-msgid "[source]"
-msgstr "[kilde]"
+#: builders/epub3.py:245
+msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
+msgstr "konfigurationsværdien »epub_contributor« bør ikke være tom for EPUB3"
-#: ext/viewcode.py:289
-msgid "highlighting module code... "
+#: builders/epub3.py:250
+msgid "conf value \"epub_description\" should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:320
-msgid "[docs]"
-msgstr "[dok]"
+#: builders/epub3.py:254
+msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:346
-msgid "Module code"
-msgstr "Modulkode"
+#: builders/epub3.py:259
+msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:353
-#, python-format
-msgid "Source code for %s
"
-msgstr "Kildekode for %s
"
+#: builders/epub3.py:265
+msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:380
-msgid "Overview: module code"
-msgstr "Oversigt: modulkode"
+#: builders/epub3.py:268
+msgid "conf value \"version\" should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:381
-msgid "All modules for which code is available
"
-msgstr "Alle moduler, der er kode tilgængelig for
"
+#: builders/epub3.py:282 builders/html/__init__.py:1296
+#, python-format
+msgid "invalid css_file: %r, ignored"
+msgstr "ugyldig css_file: %r, ignoreret"
-#: ext/extlinks.py:82
+#: builders/xml.py:29
#, python-format
-msgid ""
-"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgid "The XML files are in %(outdir)s."
msgstr ""
-#: ext/autosectionlabel.py:52
+#: builders/html/__init__.py:1242 builders/text.py:71 builders/xml.py:81
#, python-format
-msgid "section \"%s\" gets labeled as \"%s\""
+msgid "error writing file %s: %s"
msgstr ""
-#: domains/std/__init__.py:833 domains/std/__init__.py:960
-#: ext/autosectionlabel.py:61
+#: builders/xml.py:103
#, python-format
-msgid "duplicate label %s, other instance in %s"
+msgid "The pseudo-XML files are in %(outdir)s."
msgstr ""
-#: ext/imgmath.py:387 ext/mathjax.py:60
-msgid "Link to this equation"
+#: builders/_epub_base.py:223
+#, python-format
+msgid "duplicated ToC entry found: %s"
msgstr ""
-#: ext/duration.py:90
-msgid ""
-"====================== slowest reading durations ======================="
+#: builders/_epub_base.py:436
+#, python-format
+msgid "cannot read image file %r: copying it instead"
msgstr ""
-#: ext/doctest.py:118
+#: builders/_epub_base.py:467
#, python-format
-msgid "missing '+' or '-' in '%s' option."
+msgid "cannot write image file %r: %s"
msgstr ""
-#: ext/doctest.py:124
+#: builders/_epub_base.py:479
+msgid "Pillow not found - copying image files"
+msgstr ""
+
+#: builders/_epub_base.py:514
+msgid "writing mimetype file..."
+msgstr ""
+
+#: builders/_epub_base.py:523
+msgid "writing META-INF/container.xml file..."
+msgstr ""
+
+#: builders/_epub_base.py:561
+msgid "writing content.opf file..."
+msgstr ""
+
+#: builders/_epub_base.py:594
#, python-format
-msgid "'%s' is not a valid option."
+msgid "unknown mimetype for %s, ignoring"
msgstr ""
-#: ext/doctest.py:139
+#: builders/_epub_base.py:749
+msgid "node has an invalid level"
+msgstr ""
+
+#: builders/_epub_base.py:769
+msgid "writing toc.ncx file..."
+msgstr ""
+
+#: builders/_epub_base.py:802
#, python-format
-msgid "'%s' is not a valid pyversion option"
+msgid "writing %s file..."
msgstr ""
-#: ext/doctest.py:226
-msgid "invalid TestCode type"
+#: builders/text.py:27
+#, python-format
+msgid "The text files are in %(outdir)s."
msgstr ""
-#: ext/doctest.py:297
+#: builders/__init__.py:229
+#, python-format
+msgid "a suitable image for %s builder not found: %s (%s)"
+msgstr ""
+
+#: builders/__init__.py:237
+#, python-format
+msgid "a suitable image for %s builder not found: %s"
+msgstr ""
+
+#: builders/__init__.py:260
+msgid "building [mo]: "
+msgstr ""
+
+#: builders/__init__.py:263 builders/__init__.py:771 builders/__init__.py:795
+msgid "writing output... "
+msgstr ""
+
+#: builders/__init__.py:280
+#, python-format
+msgid "all of %d po files"
+msgstr ""
+
+#: builders/__init__.py:302
+#, python-format
+msgid "targets for %d po files that are specified"
+msgstr ""
+
+#: builders/__init__.py:314
+#, python-format
+msgid "targets for %d po files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:324
+msgid "all source files"
+msgstr ""
+
+#: builders/__init__.py:335
+#, python-format
+msgid "file %r given on command line does not exist, "
+msgstr ""
+
+#: builders/__init__.py:342
#, python-format
msgid ""
-"Testing of doctests in the sources finished, look at the results in "
-"%(outdir)s/output.txt."
+"file %r given on command line is not under the source directory, ignoring"
msgstr ""
-#: ext/doctest.py:457
+#: builders/__init__.py:353
#, python-format
-msgid "no code/output in %s block at %s:%s"
+msgid "file %r given on command line is not a valid document, ignoring"
msgstr ""
-#: ext/doctest.py:568
+#: builders/__init__.py:366
#, python-format
-msgid "ignoring invalid doctest code: %r"
+msgid "%d source files given on command line"
+msgstr ""
+
+#: builders/__init__.py:382
+#, python-format
+msgid "targets for %d source files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:411
+msgid "looking for now-outdated files... "
+msgstr ""
+
+#: builders/__init__.py:415
+#, python-format
+msgid "%d found"
+msgstr ""
+
+#: builders/__init__.py:417
+msgid "none found"
+msgstr ""
+
+#: builders/__init__.py:424
+msgid "pickling environment"
+msgstr ""
+
+#: builders/__init__.py:431
+msgid "checking consistency"
+msgstr ""
+
+#: builders/__init__.py:435
+msgid "no targets are out of date."
msgstr ""
-#: ext/imgmath.py:162
+#: builders/__init__.py:474
+msgid "updating environment: "
+msgstr ""
+
+#: builders/__init__.py:499
+#, python-format
+msgid "%s added, %s changed, %s removed"
+msgstr ""
+
+#: builders/__init__.py:536
#, python-format
msgid ""
-"LaTeX command %r cannot be run (needed for math display), check the "
-"imgmath_latex setting"
+"Sphinx is unable to load the master document (%s) because it matches a "
+"built-in exclude pattern %r. Please move your master document to a different"
+" location."
msgstr ""
-#: ext/imgmath.py:181
+#: builders/__init__.py:545
#, python-format
msgid ""
-"%s command %r cannot be run (needed for math display), check the imgmath_%s "
-"setting"
+"Sphinx is unable to load the master document (%s) because it matches an "
+"exclude pattern specified in conf.py, %r. Please remove this pattern from "
+"conf.py."
msgstr ""
-#: ext/imgmath.py:344
+#: builders/__init__.py:556
#, python-format
-msgid "display latex %r: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s) because it is not included"
+" in the custom include_patterns = %r. Ensure that a pattern in "
+"include_patterns matches the master document."
msgstr ""
-#: ext/imgmath.py:380
+#: builders/__init__.py:563
#, python-format
-msgid "inline latex %r: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s). The master document must "
+"be within the source directory or a subdirectory of it."
+msgstr ""
+
+#: builders/__init__.py:581 builders/__init__.py:598
+msgid "reading sources... "
+msgstr "læser kilder ..."
+
+#: builders/__init__.py:725
+#, python-format
+msgid "docnames to write: %s"
+msgstr ""
+
+#: builders/__init__.py:727
+msgid "no docnames to write!"
+msgstr ""
+
+#: builders/__init__.py:740
+msgid "preparing documents"
+msgstr "forbereder dokumenter"
+
+#: builders/__init__.py:743
+msgid "copying assets"
+msgstr ""
+
+#: builders/changes.py:29
+#, python-format
+msgid "The overview file is in %(outdir)s."
+msgstr ""
+
+#: builders/changes.py:65
+#, python-format
+msgid "no changes in version %s."
+msgstr ""
+
+#: builders/changes.py:67
+msgid "writing summary file..."
+msgstr ""
+
+#: builders/changes.py:79
+msgid "Builtins"
+msgstr "Indbyggede"
+
+#: builders/changes.py:81
+msgid "Module level"
+msgstr "Modulniveau"
+
+#: builders/changes.py:137
+msgid "copying source files..."
+msgstr ""
+
+#: builders/changes.py:146
+#, python-format
+msgid "could not read %r for changelog creation"
msgstr ""
#: ext/coverage.py:48
@@ -742,9 +1178,10 @@ msgid ""
msgstr ""
#: ext/coverage.py:158
+#, python-format
msgid ""
"the following modules are specified in coverage_modules but were not "
-"documented"
+"documented: %s"
msgstr ""
#: ext/coverage.py:172
@@ -779,6 +1216,34 @@ msgstr ""
msgid "undocumented python method: %s :: %s :: %s"
msgstr ""
+#: ext/extlinks.py:82
+#, python-format
+msgid ""
+"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgstr ""
+
+#: ext/todo.py:61
+msgid "Todo"
+msgstr "Todo"
+
+#: ext/todo.py:94
+#, python-format
+msgid "TODO entry found: %s"
+msgstr ""
+
+#: ext/todo.py:152
+msgid "<>"
+msgstr "<>"
+
+#: ext/todo.py:154
+#, python-format
+msgid "(The <> is located in %s, line %d.)"
+msgstr "(Det <> befinder sig i %s, linje %d.)"
+
+#: ext/todo.py:166
+msgid "original entry"
+msgstr "oprindeligt punkt"
+
#: ext/imgconverter.py:44
#, python-format
msgid ""
@@ -866,1779 +1331,1514 @@ msgstr "[graf: %s]"
msgid "[graph]"
msgstr "[graf]"
-#: ext/todo.py:61
-msgid "Todo"
-msgstr "Todo"
-
-#: ext/todo.py:94
+#: ext/imgmath.py:148
#, python-format
-msgid "TODO entry found: %s"
+msgid ""
+"LaTeX command %r cannot be run (needed for math display), check the "
+"imgmath_latex setting"
msgstr ""
-#: ext/todo.py:152
-msgid "<>"
-msgstr "<>"
-
-#: ext/todo.py:154
+#: ext/imgmath.py:167
#, python-format
-msgid "(The <> is located in %s, line %d.)"
-msgstr "(Det <> befinder sig i %s, linje %d.)"
-
-#: ext/todo.py:166
-msgid "original entry"
-msgstr "oprindeligt punkt"
-
-#: directives/code.py:66
-msgid "non-whitespace stripped by dedent"
+msgid ""
+"%s command %r cannot be run (needed for math display), check the imgmath_%s "
+"setting"
msgstr ""
-#: directives/code.py:87
+#: ext/imgmath.py:326
#, python-format
-msgid "Invalid caption: %s"
+msgid "display latex %r: %s"
msgstr ""
-#: directives/code.py:131 directives/code.py:297 directives/code.py:483
+#: ext/imgmath.py:362
#, python-format
-msgid "line number spec is out of range(1-%d): %r"
+msgid "inline latex %r: %s"
msgstr ""
-#: directives/code.py:216
-#, python-format
-msgid "Cannot use both \"%s\" and \"%s\" options"
+#: ext/imgmath.py:369 ext/mathjax.py:60
+msgid "Link to this equation"
msgstr ""
-#: directives/code.py:231
+#: ext/doctest.py:118
#, python-format
-msgid "Include file '%s' not found or reading it failed"
+msgid "missing '+' or '-' in '%s' option."
msgstr ""
-#: directives/code.py:235
+#: ext/doctest.py:124
#, python-format
-msgid ""
-"Encoding %r used for reading included file '%s' seems to be wrong, try "
-"giving an :encoding: option"
+msgid "'%s' is not a valid option."
msgstr ""
-#: directives/code.py:276
+#: ext/doctest.py:139
#, python-format
-msgid "Object named %r not found in include file %r"
+msgid "'%s' is not a valid pyversion option"
msgstr ""
-#: directives/code.py:309
-msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
+#: ext/doctest.py:226
+msgid "invalid TestCode type"
msgstr ""
-#: directives/code.py:314
+#: ext/doctest.py:297
#, python-format
-msgid "Line spec %r: no lines pulled from include file %r"
-msgstr ""
-
-#: directives/patches.py:71
msgid ""
-"\":file:\" option for csv-table directive now recognizes an absolute path as"
-" a relative path from source directory. Please update your document."
+"Testing of doctests in the sources finished, look at the results in "
+"%(outdir)s/output.txt."
msgstr ""
-#: directives/other.py:119
+#: ext/doctest.py:451
#, python-format
-msgid "toctree glob pattern %r didn't match any documents"
+msgid "no code/output in %s block at %s:%s"
msgstr ""
-#: directives/other.py:153 environment/adapters/toctree.py:361
+#: ext/doctest.py:568
#, python-format
-msgid "toctree contains reference to excluded document %r"
+msgid "ignoring invalid doctest code: %r"
msgstr ""
-#: directives/other.py:156
+#: ext/autosectionlabel.py:52
#, python-format
-msgid "toctree contains reference to nonexisting document %r"
+msgid "section \"%s\" gets labeled as \"%s\""
msgstr ""
-#: directives/other.py:169
+#: domains/std/__init__.py:833 domains/std/__init__.py:960
+#: ext/autosectionlabel.py:61
#, python-format
-msgid "duplicated entry found in toctree: %s"
+msgid "duplicate label %s, other instance in %s"
msgstr ""
-#: directives/other.py:203
-msgid "Section author: "
-msgstr "Afsnitsforfatter: "
-
-#: directives/other.py:205
-msgid "Module author: "
-msgstr "Modulforfatter: "
-
-#: directives/other.py:207
-msgid "Code author: "
-msgstr "Kodeforfatter: "
-
-#: directives/other.py:209
-msgid "Author: "
-msgstr "Forfatter: "
-
-#: directives/other.py:269
-msgid ".. acks content is not a list"
+#: ext/duration.py:47
+#, python-format
+msgid "Reading duration %.3fs exceeded the duration limit %.3fs"
msgstr ""
-#: directives/other.py:292
-msgid ".. hlist content is not a list"
+#: ext/duration.py:117
+msgid ""
+"====================== total reading duration =========================="
msgstr ""
-#: builders/changes.py:29
+#: ext/duration.py:124
#, python-format
-msgid "The overview file is in %(outdir)s."
+msgid "Total time reading %d file%s: %dm %.3fs"
msgstr ""
-#: builders/changes.py:56
-#, python-format
-msgid "no changes in version %s."
+#: ext/duration.py:136
+msgid ""
+"====================== slowest reading durations ======================="
msgstr ""
-#: builders/changes.py:58
-msgid "writing summary file..."
+#: ext/duration.py:139
+#, python-format
+msgid "%.3fs %s"
msgstr ""
-#: builders/changes.py:70
-msgid "Builtins"
-msgstr "Indbyggede"
-
-#: builders/changes.py:72
-msgid "Module level"
-msgstr "Modulniveau"
+#: ext/linkcode.py:86 ext/viewcode.py:232
+msgid "[source]"
+msgstr "[kilde]"
-#: builders/changes.py:124
-msgid "copying source files..."
+#: ext/viewcode.py:295
+msgid "highlighting module code... "
msgstr ""
-#: builders/changes.py:133
-#, python-format
-msgid "could not read %r for changelog creation"
-msgstr ""
+#: ext/viewcode.py:326
+msgid "[docs]"
+msgstr "[dok]"
-#: builders/manpage.py:37
+#: ext/viewcode.py:352
+msgid "Module code"
+msgstr "Modulkode"
+
+#: ext/viewcode.py:359
#, python-format
-msgid "The manual pages are in %(outdir)s."
-msgstr ""
+msgid "Source code for %s
"
+msgstr "Kildekode for %s
"
-#: builders/manpage.py:45
-msgid "no \"man_pages\" config value found; no manual pages will be written"
-msgstr ""
+#: ext/viewcode.py:386
+msgid "Overview: module code"
+msgstr "Oversigt: modulkode"
-#: builders/latex/__init__.py:347 builders/manpage.py:54
-#: builders/singlehtml.py:176 builders/texinfo.py:119
-msgid "writing"
-msgstr ""
+#: ext/viewcode.py:387
+msgid "All modules for which code is available
"
+msgstr "Alle moduler, der er kode tilgængelig for
"
-#: builders/manpage.py:71
+#: domains/citation.py:75
#, python-format
-msgid "\"man_pages\" config value references unknown document %s"
+msgid "duplicate citation %s, other instance in %s"
msgstr ""
-#: builders/__init__.py:224
+#: domains/citation.py:92
#, python-format
-msgid "a suitable image for %s builder not found: %s (%s)"
+msgid "Citation [%s] is not referenced."
msgstr ""
-#: builders/__init__.py:232
+#: domains/math.py:73
#, python-format
-msgid "a suitable image for %s builder not found: %s"
-msgstr ""
-
-#: builders/__init__.py:255
-msgid "building [mo]: "
-msgstr ""
-
-#: builders/__init__.py:258 builders/__init__.py:759 builders/__init__.py:791
-msgid "writing output... "
+msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
-#: builders/__init__.py:275
+#: domains/math.py:130 writers/latex.py:2500
#, python-format
-msgid "all of %d po files"
+msgid "Invalid math_eqref_format: %r"
msgstr ""
-#: builders/__init__.py:297
+#: domains/javascript.py:183
#, python-format
-msgid "targets for %d po files that are specified"
-msgstr ""
+msgid "%s() (built-in function)"
+msgstr "%s() (indbygget funktion)"
-#: builders/__init__.py:309
+#: domains/javascript.py:184 domains/python/__init__.py:279
#, python-format
-msgid "targets for %d po files that are out of date"
-msgstr ""
-
-#: builders/__init__.py:319
-msgid "all source files"
-msgstr ""
+msgid "%s() (%s method)"
+msgstr "%s() (metode i %s)"
-#: builders/__init__.py:330
+#: domains/javascript.py:186
#, python-format
-msgid "file %r given on command line does not exist, "
-msgstr ""
+msgid "%s() (class)"
+msgstr "%s() (klasse)"
-#: builders/__init__.py:337
+#: domains/javascript.py:188
#, python-format
-msgid ""
-"file %r given on command line is not under the source directory, ignoring"
-msgstr ""
+msgid "%s (global variable or constant)"
+msgstr "%s (global variabel eller konstant)"
-#: builders/__init__.py:348
+#: domains/javascript.py:190 domains/python/__init__.py:370
#, python-format
-msgid "file %r given on command line is not a valid document, ignoring"
-msgstr ""
+msgid "%s (%s attribute)"
+msgstr "%s (attribut i %s)"
-#: builders/__init__.py:361
-#, python-format
-msgid "%d source files given on command line"
-msgstr ""
+#: domains/javascript.py:274
+msgid "Arguments"
+msgstr "Parametre"
-#: builders/__init__.py:377
-#, python-format
-msgid "targets for %d source files that are out of date"
-msgstr ""
+#: domains/cpp/__init__.py:491 domains/javascript.py:281
+msgid "Throws"
+msgstr "Kaster"
-#: builders/__init__.py:395 builders/gettext.py:265
-#, python-format
-msgid "building [%s]: "
-msgstr ""
+#: domains/c/__init__.py:367 domains/cpp/__init__.py:504
+#: domains/javascript.py:288 domains/python/_object.py:221
+msgid "Returns"
+msgstr "Returnerer"
-#: builders/__init__.py:406
-msgid "looking for now-outdated files... "
-msgstr ""
+#: domains/c/__init__.py:373 domains/javascript.py:294
+#: domains/python/_object.py:227
+msgid "Return type"
+msgstr "Returtype"
-#: builders/__init__.py:410
+#: domains/javascript.py:374
#, python-format
-msgid "%d found"
-msgstr ""
+msgid "%s (module)"
+msgstr "%s (modul)"
-#: builders/__init__.py:412
-msgid "none found"
-msgstr ""
+#: domains/c/__init__.py:779 domains/cpp/__init__.py:943
+#: domains/javascript.py:419 domains/python/__init__.py:726
+msgid "function"
+msgstr "funktion"
-#: builders/__init__.py:419
-msgid "pickling environment"
-msgstr ""
+#: domains/javascript.py:420 domains/python/__init__.py:730
+msgid "method"
+msgstr "metode"
-#: builders/__init__.py:426
-msgid "checking consistency"
-msgstr ""
+#: domains/cpp/__init__.py:941 domains/javascript.py:421
+#: domains/python/__init__.py:728
+msgid "class"
+msgstr "klasse"
-#: builders/__init__.py:430
-msgid "no targets are out of date."
-msgstr ""
+#: domains/javascript.py:422 domains/python/__init__.py:727
+msgid "data"
+msgstr "data"
-#: builders/__init__.py:469
-msgid "updating environment: "
-msgstr ""
+#: domains/javascript.py:423 domains/python/__init__.py:733
+msgid "attribute"
+msgstr "attribut"
-#: builders/__init__.py:494
-#, python-format
-msgid "%s added, %s changed, %s removed"
-msgstr ""
+#: domains/javascript.py:424 domains/python/__init__.py:736
+msgid "module"
+msgstr "modul"
-#: builders/__init__.py:531
+#: domains/javascript.py:458
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches a "
-"built-in exclude pattern %r. Please move your master document to a different"
-" location."
+msgid "duplicate %s description of %s, other %s in %s"
msgstr ""
-#: builders/__init__.py:540
+#: domains/rst.py:131 domains/rst.py:190
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches an "
-"exclude pattern specified in conf.py, %r. Please remove this pattern from "
-"conf.py."
-msgstr ""
+msgid "%s (directive)"
+msgstr "%s (direktiv)"
-#: builders/__init__.py:551
+#: domains/rst.py:191 domains/rst.py:202
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it is not included"
-" in the custom include_patterns = %r. Ensure that a pattern in "
-"include_patterns matches the master document."
+msgid ":%s: (directive option)"
msgstr ""
-#: builders/__init__.py:558
+#: domains/rst.py:224
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s). The master document must "
-"be within the source directory or a subdirectory of it."
+msgid "%s (role)"
+msgstr "%s (rolle)"
+
+#: domains/rst.py:234
+msgid "directive"
+msgstr "direktiv"
+
+#: domains/rst.py:235
+msgid "directive-option"
msgstr ""
-#: builders/__init__.py:576 builders/__init__.py:592
-msgid "reading sources... "
-msgstr "læser kilder ..."
+#: domains/rst.py:236
+msgid "role"
+msgstr "rolle"
-#: builders/__init__.py:713
+#: domains/rst.py:262
#, python-format
-msgid "docnames to write: %s"
+msgid "duplicate description of %s %s, other instance in %s"
msgstr ""
-#: builders/__init__.py:715
-msgid "no docnames to write!"
+#: domains/changeset.py:32
+#, python-format
+msgid "Added in version %s"
msgstr ""
-#: builders/__init__.py:728
-msgid "preparing documents"
-msgstr "forbereder dokumenter"
+#: domains/changeset.py:33
+#, python-format
+msgid "Changed in version %s"
+msgstr "Ændret i version %s"
-#: builders/__init__.py:731
-msgid "copying assets"
-msgstr ""
+#: domains/changeset.py:34
+#, python-format
+msgid "Deprecated since version %s"
+msgstr "Forældet siden version %s"
-#: builders/__init__.py:883
+#: domains/changeset.py:35
#, python-format
-msgid "undecodable source characters, replacing with \"?\": %r"
+msgid "Removed in version %s"
msgstr ""
-#: builders/epub3.py:84
+#: domains/__init__.py:322
#, python-format
-msgid "The ePub file is in %(outdir)s."
-msgstr ""
+msgid "%s %s"
+msgstr "%s %s"
-#: builders/epub3.py:189
-msgid "writing nav.xhtml file..."
+#: cmd/build.py:64
+msgid "job number should be a positive number"
msgstr ""
-#: builders/epub3.py:221
-msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
+#: cmd/build.py:73 cmd/quickstart.py:582 ext/apidoc/_cli.py:27
+#: ext/autosummary/generate.py:876
+msgid "For more information, visit ."
msgstr ""
-#: builders/epub3.py:227
-msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
+#: cmd/build.py:74
+msgid ""
+"\n"
+"Generate documentation from source files.\n"
+"\n"
+"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
+"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
+"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
+"including 'conf.py'\n"
+"\n"
+"sphinx-build can create documentation in different formats. A format is\n"
+"selected by specifying the builder name on the command line; it defaults to\n"
+"HTML. Builders can also perform other tasks related to documentation\n"
+"processing.\n"
+"\n"
+"By default, everything that is outdated is built. Output only for selected\n"
+"files can be built by specifying individual filenames.\n"
msgstr ""
-#: builders/epub3.py:232
-msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
+#: cmd/build.py:100
+msgid "path to documentation source files"
msgstr ""
-#: builders/epub3.py:238
-msgid "conf value \"epub_author\" should not be empty for EPUB3"
+#: cmd/build.py:103
+msgid "path to output directory"
msgstr ""
-#: builders/epub3.py:242
-msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
-msgstr "konfigurationsværdien »epub_contributor« bør ikke være tom for EPUB3"
-
-#: builders/epub3.py:247
-msgid "conf value \"epub_description\" should not be empty for EPUB3"
+#: cmd/build.py:109
+msgid ""
+"(optional) a list of specific files to rebuild. Ignored if --write-all is "
+"specified"
msgstr ""
-#: builders/epub3.py:251
-msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+#: cmd/build.py:114
+msgid "general options"
msgstr ""
-#: builders/epub3.py:256
-msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+#: cmd/build.py:121
+msgid "builder to use (default: 'html')"
msgstr ""
-#: builders/epub3.py:262
-msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+#: cmd/build.py:131
+msgid ""
+"run in parallel with N processes, when possible. 'auto' uses the number of "
+"CPU cores"
msgstr ""
-#: builders/epub3.py:265
-msgid "conf value \"version\" should not be empty for EPUB3"
+#: cmd/build.py:140
+msgid "write all files (default: only write new and changed files)"
msgstr ""
-#: builders/epub3.py:279 builders/html/__init__.py:1291
-#, python-format
-msgid "invalid css_file: %r, ignored"
-msgstr "ugyldig css_file: %r, ignoreret"
+#: cmd/build.py:147
+msgid "don't use a saved environment, always read all files"
+msgstr ""
-#: builders/xml.py:31
-#, python-format
-msgid "The XML files are in %(outdir)s."
+#: cmd/build.py:150
+msgid "path options"
msgstr ""
-#: builders/html/__init__.py:1241 builders/text.py:76 builders/xml.py:90
-#, python-format
-msgid "error writing file %s: %s"
+#: cmd/build.py:157
+msgid ""
+"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
msgstr ""
-#: builders/xml.py:101
-#, python-format
-msgid "The pseudo-XML files are in %(outdir)s."
+#: cmd/build.py:166
+msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
msgstr ""
-#: builders/texinfo.py:45
-#, python-format
-msgid "The Texinfo files are in %(outdir)s."
+#: cmd/build.py:175
+msgid "use no configuration file, only use settings from -D options"
msgstr ""
-#: builders/texinfo.py:48
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through makeinfo\n"
-"(use 'make info' here to do that automatically)."
+#: cmd/build.py:184
+msgid "override a setting in configuration file"
msgstr ""
-#: builders/texinfo.py:77
-msgid "no \"texinfo_documents\" config value found; no documents will be written"
+#: cmd/build.py:193
+msgid "pass a value into HTML templates"
msgstr ""
-#: builders/texinfo.py:89
-#, python-format
-msgid "\"texinfo_documents\" config value references unknown document %s"
+#: cmd/build.py:202
+msgid "define tag: include \"only\" blocks with TAG"
msgstr ""
-#: builders/latex/__init__.py:325 builders/texinfo.py:113
-#, python-format
-msgid "processing %s"
+#: cmd/build.py:209
+msgid "nitpicky mode: warn about all missing references"
msgstr ""
-#: builders/latex/__init__.py:405 builders/texinfo.py:172
-msgid "resolving references..."
+#: cmd/build.py:212
+msgid "console output options"
msgstr ""
-#: builders/latex/__init__.py:416 builders/texinfo.py:182
-msgid " (in "
-msgstr " (i "
+#: cmd/build.py:219
+msgid "increase verbosity (can be repeated)"
+msgstr ""
-#: builders/_epub_base.py:422 builders/html/__init__.py:779
-#: builders/latex/__init__.py:481 builders/texinfo.py:198
-msgid "copying images... "
+#: cmd/build.py:226 ext/apidoc/_cli.py:66
+msgid "no output on stdout, just warnings on stderr"
msgstr ""
-#: builders/_epub_base.py:444 builders/latex/__init__.py:496
-#: builders/texinfo.py:215
-#, python-format
-msgid "cannot copy image file %r: %s"
+#: cmd/build.py:233
+msgid "no output at all, not even warnings"
msgstr ""
-#: builders/texinfo.py:222
-msgid "copying Texinfo support files"
+#: cmd/build.py:241
+msgid "do emit colored output (default: auto-detect)"
msgstr ""
-#: builders/texinfo.py:230
-#, python-format
-msgid "error writing file Makefile: %s"
+#: cmd/build.py:249
+msgid "do not emit colored output (default: auto-detect)"
msgstr ""
-#: builders/_epub_base.py:223
-#, python-format
-msgid "duplicated ToC entry found: %s"
+#: cmd/build.py:252
+msgid "warning control options"
msgstr ""
-#: builders/_epub_base.py:433
-#, python-format
-msgid "cannot read image file %r: copying it instead"
+#: cmd/build.py:258
+msgid "write warnings (and errors) to given file"
msgstr ""
-#: builders/_epub_base.py:464
-#, python-format
-msgid "cannot write image file %r: %s"
+#: cmd/build.py:265
+msgid "turn warnings into errors"
msgstr ""
-#: builders/_epub_base.py:476
-msgid "Pillow not found - copying image files"
+#: cmd/build.py:273
+msgid "show full traceback on exception"
msgstr ""
-#: builders/_epub_base.py:511
-msgid "writing mimetype file..."
+#: cmd/build.py:276
+msgid "run Pdb on exception"
msgstr ""
-#: builders/_epub_base.py:520
-msgid "writing META-INF/container.xml file..."
+#: cmd/build.py:282
+msgid "raise an exception on warnings"
msgstr ""
-#: builders/_epub_base.py:558
-msgid "writing content.opf file..."
+#: cmd/build.py:325
+msgid "cannot combine -a option and filenames"
msgstr ""
-#: builders/_epub_base.py:591
+#: cmd/build.py:357
#, python-format
-msgid "unknown mimetype for %s, ignoring"
+msgid "cannot open warning file '%s': %s"
msgstr ""
-#: builders/_epub_base.py:745
-msgid "node has an invalid level"
+#: cmd/build.py:376
+msgid "-D option argument must be in the form name=value"
msgstr ""
-#: builders/_epub_base.py:765
-msgid "writing toc.ncx file..."
+#: cmd/build.py:383
+msgid "-A option argument must be in the form name=value"
msgstr ""
-#: builders/_epub_base.py:794
-#, python-format
-msgid "writing %s file..."
+#: cmd/quickstart.py:52
+msgid "automatically insert docstrings from modules"
msgstr ""
-#: builders/dummy.py:19
-msgid "The dummy builder generates no files."
+#: cmd/quickstart.py:53
+msgid "automatically test code snippets in doctest blocks"
msgstr ""
-#: builders/gettext.py:244
-#, python-format
-msgid "The message catalogs are in %(outdir)s."
-msgstr "Beskedkatalogerne er i %(outdir)s."
-
-#: builders/gettext.py:266
-#, python-format
-msgid "targets for %d template files"
+#: cmd/quickstart.py:54
+msgid "link between Sphinx documentation of different projects"
msgstr ""
-#: builders/gettext.py:271
-msgid "reading templates... "
-msgstr "læser skabeloner ..."
-
-#: builders/gettext.py:307
-msgid "writing message catalogs... "
-msgstr "skriver beskedkataloger ..."
+#: cmd/quickstart.py:55
+msgid "write \"todo\" entries that can be shown or hidden on build"
+msgstr ""
-#: builders/singlehtml.py:35
-#, python-format
-msgid "The HTML page is in %(outdir)s."
-msgstr "HTML-siden er i %(outdir)s."
+#: cmd/quickstart.py:56
+msgid "checks for documentation coverage"
+msgstr ""
-#: builders/singlehtml.py:171
-msgid "assembling single document"
+#: cmd/quickstart.py:57
+msgid "include math, rendered as PNG or SVG images"
msgstr ""
-#: builders/singlehtml.py:189
-msgid "writing additional files"
+#: cmd/quickstart.py:58
+msgid "include math, rendered in the browser by MathJax"
msgstr ""
-#: builders/linkcheck.py:77
-#, python-format
-msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
+#: cmd/quickstart.py:59
+msgid "conditional inclusion of content based on config values"
msgstr ""
-#: builders/linkcheck.py:149
-#, python-format
-msgid "broken link: %s (%s)"
+#: cmd/quickstart.py:60
+msgid "include links to the source code of documented Python objects"
msgstr ""
-#: builders/linkcheck.py:548
-#, python-format
-msgid "Anchor '%s' not found"
+#: cmd/quickstart.py:61
+msgid "create .nojekyll file to publish the document on GitHub pages"
msgstr ""
-#: builders/linkcheck.py:758
-#, python-format
-msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
+#: cmd/quickstart.py:111
+msgid "Please enter a valid path name."
msgstr ""
-#: builders/text.py:29
+#: cmd/quickstart.py:127
+msgid "Please enter some text."
+msgstr "Indtast venligst noget tekst."
+
+#: cmd/quickstart.py:134
#, python-format
-msgid "The text files are in %(outdir)s."
+msgid "Please enter one of %s."
msgstr ""
-#: transforms/i18n.py:227 transforms/i18n.py:302
-#, python-brace-format
-msgid ""
-"inconsistent footnote references in translated message. original: {0}, "
-"translated: {1}"
-msgstr ""
+#: cmd/quickstart.py:142
+msgid "Please enter either 'y' or 'n'."
+msgstr "Indtast venligst enten »y« eller »n«."
-#: transforms/i18n.py:272
-#, python-brace-format
-msgid ""
-"inconsistent references in translated message. original: {0}, translated: "
-"{1}"
-msgstr ""
+#: cmd/quickstart.py:148
+msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
+msgstr "Indtast venligt et filsuffiks, f.eks. ».rst« eller ».txt«"
-#: transforms/i18n.py:322
-#, python-brace-format
-msgid ""
-"inconsistent citation references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:230
+#, python-format
+msgid "Welcome to the Sphinx %s quickstart utility."
msgstr ""
-#: transforms/i18n.py:344
-#, python-brace-format
+#: cmd/quickstart.py:235
msgid ""
-"inconsistent term references in translated message. original: {0}, "
-"translated: {1}"
+"Please enter values for the following settings (just press Enter to\n"
+"accept a default value, if one is given in brackets)."
msgstr ""
-#: builders/html/__init__.py:486 builders/latex/__init__.py:199
-#: transforms/__init__.py:129 writers/manpage.py:98 writers/texinfo.py:220
+#: cmd/quickstart.py:242
#, python-format
-msgid "%b %d, %Y"
-msgstr "%d. %b, %Y"
+msgid "Selected root path: %s"
+msgstr ""
-#: transforms/__init__.py:139
-msgid "could not calculate translation progress!"
+#: cmd/quickstart.py:245
+msgid "Enter the root path for documentation."
msgstr ""
-#: transforms/__init__.py:144
-msgid "no translated elements!"
+#: cmd/quickstart.py:246
+msgid "Root path for the documentation"
msgstr ""
-#: transforms/__init__.py:253
-#, python-format
-msgid ""
-"4 column based index found. It might be a bug of extensions you use: %r"
+#: cmd/quickstart.py:255
+msgid "Error: an existing conf.py has been found in the selected root path."
msgstr ""
-#: transforms/__init__.py:294
-#, python-format
-msgid "Footnote [%s] is not referenced."
+#: cmd/quickstart.py:260
+msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
msgstr ""
-#: transforms/__init__.py:303
-msgid "Footnote [*] is not referenced."
+#: cmd/quickstart.py:263
+msgid "Please enter a new root path (or just Enter to exit)"
msgstr ""
-#: transforms/__init__.py:314
-msgid "Footnote [#] is not referenced."
+#: cmd/quickstart.py:274
+msgid ""
+"You have two options for placing the build directory for Sphinx output.\n"
+"Either, you use a directory \"_build\" within the root path, or you separate\n"
+"\"source\" and \"build\" directories within the root path."
msgstr ""
-#: _cli/__init__.py:73
-msgid "Usage:"
+#: cmd/quickstart.py:280
+msgid "Separate source and build directories (y/n)"
msgstr ""
-#: _cli/__init__.py:75
-#, python-brace-format
-msgid "{0} [OPTIONS] []"
+#: cmd/quickstart.py:287
+msgid ""
+"Inside the root directory, two more directories will be created; \"_templates\"\n"
+"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
+"files. You can enter another prefix (such as \".\") to replace the underscore."
msgstr ""
-#: _cli/__init__.py:78
-msgid " The Sphinx documentation generator."
+#: cmd/quickstart.py:292
+msgid "Name prefix for templates and static dir"
msgstr ""
-#: _cli/__init__.py:87
-msgid "Commands:"
+#: cmd/quickstart.py:298
+msgid ""
+"The project name will occur in several places in the built documentation."
msgstr ""
-#: _cli/__init__.py:98
-msgid "Options"
+#: cmd/quickstart.py:301
+msgid "Project name"
msgstr ""
-#: _cli/__init__.py:113 _cli/__init__.py:181
-msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
+#: cmd/quickstart.py:303
+msgid "Author name(s)"
msgstr ""
-#: _cli/__init__.py:171
-#, python-brace-format
+#: cmd/quickstart.py:309
msgid ""
-"{0}: error: {1}\n"
-"Run '{0} --help' for information"
-msgstr ""
-
-#: _cli/__init__.py:179
-msgid " Manage documentation with Sphinx."
-msgstr ""
-
-#: _cli/__init__.py:191
-msgid "Show the version and exit."
-msgstr ""
-
-#: _cli/__init__.py:199
-msgid "Show this message and exit."
-msgstr ""
-
-#: _cli/__init__.py:203
-msgid "Logging"
+"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
+"software. Each version can have multiple releases. For example, for\n"
+"Python the version is something like 2.5 or 3.0, while the release is\n"
+"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
+"just set both to the same value."
msgstr ""
-#: _cli/__init__.py:210
-msgid "Increase verbosity (can be repeated)"
+#: cmd/quickstart.py:316
+msgid "Project version"
msgstr ""
-#: _cli/__init__.py:218
-msgid "Only print errors and warnings."
+#: cmd/quickstart.py:318
+msgid "Project release"
msgstr ""
-#: _cli/__init__.py:225
-msgid "No output at all"
+#: cmd/quickstart.py:324
+msgid ""
+"If the documents are to be written in a language other than English,\n"
+"you can select a language here by its language code. Sphinx will then\n"
+"translate text that it generates into that language.\n"
+"\n"
+"For a list of supported codes, see\n"
+"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
msgstr ""
-#: _cli/__init__.py:231
-msgid ""
+#: cmd/quickstart.py:332
+msgid "Project language"
msgstr ""
-#: _cli/__init__.py:263
-msgid "See 'sphinx --help'.\n"
+#: cmd/quickstart.py:340
+msgid ""
+"The file name suffix for source files. Commonly, this is either \".txt\"\n"
+"or \".rst\". Only files with this suffix are considered documents."
msgstr ""
-#: environment/__init__.py:86
-msgid "new config"
-msgstr "ny konfiguration"
-
-#: environment/__init__.py:87
-msgid "config changed"
+#: cmd/quickstart.py:344
+msgid "Source file suffix"
msgstr ""
-#: environment/__init__.py:88
-msgid "extensions changed"
-msgstr "udvidelser ændret"
-
-#: environment/__init__.py:253
-msgid "build environment version not current"
+#: cmd/quickstart.py:350
+msgid ""
+"One document is special in that it is considered the top node of the\n"
+"\"contents tree\", that is, it is the root of the hierarchical structure\n"
+"of the documents. Normally, this is \"index\", but if your \"index\"\n"
+"document is a custom template, you can also set this to another filename."
msgstr ""
-#: environment/__init__.py:255
-msgid "source directory has changed"
-msgstr "kildemappe er ændret"
-
-#: environment/__init__.py:325
-#, python-format
-msgid "The configuration has changed (1 option: %r)"
+#: cmd/quickstart.py:357
+msgid "Name of your master document (without suffix)"
msgstr ""
-#: environment/__init__.py:330
+#: cmd/quickstart.py:368
#, python-format
-msgid "The configuration has changed (%d options: %s)"
+msgid ""
+"Error: the master file %s has already been found in the selected root path."
msgstr ""
-#: environment/__init__.py:336
-#, python-format
-msgid "The configuration has changed (%d options: %s, ...)"
+#: cmd/quickstart.py:374
+msgid "sphinx-quickstart will not overwrite the existing file."
msgstr ""
-#: environment/__init__.py:379
+#: cmd/quickstart.py:378
msgid ""
-"This environment is incompatible with the selected builder, please choose "
-"another doctree directory."
+"Please enter a new file name, or rename the existing file and press Enter"
msgstr ""
-#: environment/__init__.py:493
-#, python-format
-msgid "Failed to scan documents in %s: %r"
+#: cmd/quickstart.py:386
+msgid "Indicate which of the following Sphinx extensions should be enabled:"
msgstr ""
-#: environment/__init__.py:658 ext/intersphinx/_resolve.py:234
-#, python-format
-msgid "Domain %r is not registered"
+#: cmd/quickstart.py:397
+msgid ""
+"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
+"been deselected."
msgstr ""
-#: environment/__init__.py:813
-msgid "document isn't included in any toctree"
+#: cmd/quickstart.py:407
+msgid ""
+"A Makefile and a Windows command file can be generated for you so that you\n"
+"only have to run e.g. `make html' instead of invoking sphinx-build\n"
+"directly."
msgstr ""
-#: environment/__init__.py:859
-msgid "self referenced toctree found. Ignored."
+#: cmd/quickstart.py:412
+msgid "Create Makefile? (y/n)"
msgstr ""
-#: environment/__init__.py:889
-#, python-format
-msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
+#: cmd/quickstart.py:416
+msgid "Create Windows command file? (y/n)"
msgstr ""
-#: util/i18n.py:100
+#: cmd/quickstart.py:468 ext/apidoc/_generate.py:76
#, python-format
-msgid "reading error: %s, %s"
+msgid "Creating file %s."
msgstr ""
-#: util/i18n.py:113
+#: cmd/quickstart.py:473 ext/apidoc/_generate.py:73
#, python-format
-msgid "writing error: %s, %s"
+msgid "File %s already exists, skipping."
+msgstr "Filen %s findes allerede, udelader."
+
+#: cmd/quickstart.py:516
+msgid "Finished: An initial directory structure has been created."
msgstr ""
-#: util/i18n.py:146
+#: cmd/quickstart.py:520
#, python-format
-msgid "locale_dir %s does not exist"
+msgid ""
+"You should now populate your master file %s and create other documentation\n"
+"source files. "
msgstr ""
-#: util/i18n.py:236
-#, python-format
-msgid "Invalid Babel locale: %r."
+#: cmd/quickstart.py:527
+msgid ""
+"Use the Makefile to build the docs, like so:\n"
+" make builder"
msgstr ""
-#: util/i18n.py:245
+#: cmd/quickstart.py:531
#, python-format
msgid ""
-"Invalid date format. Quote the string by single quote if you want to output "
-"it directly: %s"
+"Use the sphinx-build command to build the docs, like so:\n"
+" sphinx-build -b builder %s %s"
msgstr ""
-#: util/docfields.py:103
-#, python-format
+#: cmd/quickstart.py:538
msgid ""
-"Problem in %s domain: field is supposed to use role '%s', but that role is "
-"not in the domain."
+"where \"builder\" is one of the supported builders, e.g. html, latex or "
+"linkcheck."
msgstr ""
-#: util/nodes.py:423
-#, python-format
+#: cmd/quickstart.py:573
msgid ""
-"%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead."
+"\n"
+"Generate required files for a Sphinx project.\n"
+"\n"
+"sphinx-quickstart is an interactive tool that asks some questions about your\n"
+"project and then generates a complete documentation directory and sample\n"
+"Makefile to be used with sphinx-build.\n"
msgstr ""
-#: util/nodes.py:490
-#, python-format
-msgid "toctree contains ref to nonexisting file %r"
+#: cmd/quickstart.py:592
+msgid "quiet mode"
msgstr ""
-#: util/nodes.py:706
-#, python-format
-msgid "exception while evaluating only directive expression: %s"
+#: cmd/quickstart.py:602
+msgid "project root"
msgstr ""
-#: util/display.py:82
-msgid "skipped"
+#: cmd/quickstart.py:605
+msgid "Structure options"
msgstr ""
-#: util/display.py:87
-msgid "failed"
+#: cmd/quickstart.py:611
+msgid "if specified, separate source and build dirs"
msgstr ""
-#: util/osutil.py:131
-#, python-format
-msgid ""
-"Aborted attempted copy from %s to %s (the destination path has existing "
-"data)."
+#: cmd/quickstart.py:617
+msgid "if specified, create build dir under source dir"
msgstr ""
-#: util/docutils.py:309
-#, python-format
-msgid "unknown directive name: %s"
+#: cmd/quickstart.py:623
+msgid "replacement for dot in _templates etc."
msgstr ""
-#: util/docutils.py:345
-#, python-format
-msgid "unknown role name: %s"
+#: cmd/quickstart.py:626
+msgid "Project basic options"
msgstr ""
-#: util/docutils.py:789
-#, python-format
-msgid "unknown node type: %r"
+#: cmd/quickstart.py:628
+msgid "project name"
msgstr ""
-#: util/fileutil.py:76
-#, python-format
-msgid ""
-"Aborted attempted copy from rendered template %s to %s (the destination path"
-" has existing data)."
+#: cmd/quickstart.py:631
+msgid "author names"
msgstr ""
-#: util/fileutil.py:89
-#, python-format
-msgid "Writing evaluated template result to %s"
+#: cmd/quickstart.py:638
+msgid "version of project"
msgstr ""
-#: util/rst.py:73
-#, python-format
-msgid "default role %s not found"
+#: cmd/quickstart.py:645
+msgid "release of project"
msgstr ""
-#: util/inventory.py:147
-#, python-format
-msgid "inventory <%s> contains duplicate definitions of %s"
+#: cmd/quickstart.py:652
+msgid "document language"
msgstr ""
-#: util/inventory.py:166
-#, python-format
-msgid "inventory <%s> contains multiple definitions for %s"
+#: cmd/quickstart.py:655
+msgid "source file suffix"
msgstr ""
-#: writers/latex.py:1097 writers/manpage.py:259 writers/texinfo.py:663
-msgid "Footnotes"
-msgstr "Fodnoter"
+#: cmd/quickstart.py:658
+msgid "master document name"
+msgstr ""
-#: writers/manpage.py:289 writers/text.py:945
-#, python-format
-msgid "[image: %s]"
-msgstr "[billede: %s]"
+#: cmd/quickstart.py:661
+msgid "use epub"
+msgstr ""
-#: writers/manpage.py:290 writers/text.py:946
-msgid "[image]"
-msgstr "[billede]"
+#: cmd/quickstart.py:664
+msgid "Extension options"
+msgstr ""
-#: builders/latex/__init__.py:206 domains/std/__init__.py:771
-#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:106
-#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
-#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
-#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
-#: themes/basic/genindex.html:59 themes/basic/layout.html:127
-#: writers/texinfo.py:514
-msgid "Index"
-msgstr "Indeks"
+#: cmd/quickstart.py:671
+#, python-format
+msgid "enable %s extension"
+msgstr ""
-#: writers/latex.py:743 writers/texinfo.py:646
-msgid ""
-"encountered title node not in section, topic, table, admonition or sidebar"
+#: cmd/quickstart.py:678
+msgid "enable arbitrary extensions"
msgstr ""
-#: writers/texinfo.py:1217
-msgid "caption not inside a figure."
+#: cmd/quickstart.py:681
+msgid "Makefile and Batchfile creation"
msgstr ""
-#: writers/texinfo.py:1303
-#, python-format
-msgid "unimplemented node type: %r"
+#: cmd/quickstart.py:687
+msgid "create makefile"
msgstr ""
-#: writers/latex.py:361
-#, python-format
-msgid "unknown %r toplevel_sectioning for class %r"
+#: cmd/quickstart.py:693
+msgid "do not create makefile"
+msgstr "opret ikke makefile"
+
+#: cmd/quickstart.py:700
+msgid "create batchfile"
msgstr ""
-#: builders/latex/__init__.py:224 writers/latex.py:411
-#, python-format
-msgid "no Babel option known for language %r"
+#: cmd/quickstart.py:706
+msgid "do not create batchfile"
msgstr ""
-#: writers/latex.py:429
-msgid "too large :maxdepth:, ignored."
+#: cmd/quickstart.py:715
+msgid "use make-mode for Makefile/make.bat"
msgstr ""
-#: writers/latex.py:591
-#, python-format
-msgid "template %s not found; loading from legacy %s instead"
+#: cmd/quickstart.py:718 ext/apidoc/_cli.py:243
+msgid "Project templating"
msgstr ""
-#: writers/latex.py:707
-msgid "document title is not a single Text node"
+#: cmd/quickstart.py:724 ext/apidoc/_cli.py:249
+msgid "template directory for template files"
+msgstr "skabelonmappe for skabelonfiler"
+
+#: cmd/quickstart.py:731
+msgid "define a template variable"
msgstr ""
-#: writers/html5.py:572 writers/latex.py:1106
-#, python-format
-msgid "unsupported rubric heading level: %s"
+#: cmd/quickstart.py:767
+msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
msgstr ""
-#: writers/latex.py:1183
+#: cmd/quickstart.py:786
msgid ""
-"both tabularcolumns and :widths: option are given. :widths: is ignored."
+"Error: specified path is not a directory, or sphinx files already exist."
msgstr ""
-#: writers/latex.py:1580
-#, python-format
-msgid "dimension unit %s is invalid. Ignored."
+#: cmd/quickstart.py:793
+msgid ""
+"sphinx-quickstart only generate into a empty directory. Please specify a new"
+" root path."
msgstr ""
-#: writers/latex.py:1939
+#: cmd/quickstart.py:810
#, python-format
-msgid "unknown index entry type %s found"
+msgid "Invalid template variable: %s"
msgstr ""
-#: domains/math.py:128 writers/latex.py:2495
+#: directives/other.py:119
#, python-format
-msgid "Invalid math_eqref_format: %r"
+msgid "toctree glob pattern %r didn't match any documents"
msgstr ""
-#: writers/html5.py:96 writers/html5.py:105
-msgid "Link to this definition"
+#: directives/other.py:153 environment/adapters/toctree.py:372
+#, python-format
+msgid "toctree contains reference to excluded document %r"
msgstr ""
-#: writers/html5.py:431
+#: directives/other.py:156
#, python-format
-msgid "numfig_format is not defined for %s"
+msgid "toctree contains reference to nonexisting document %r"
msgstr ""
-#: writers/html5.py:441
+#: directives/other.py:169
#, python-format
-msgid "Any IDs not assigned for %s node"
+msgid "duplicated entry found in toctree: %s"
msgstr ""
-#: writers/html5.py:496
-msgid "Link to this term"
-msgstr ""
+#: directives/other.py:203
+msgid "Section author: "
+msgstr "Afsnitsforfatter: "
-#: writers/html5.py:548 writers/html5.py:553
-msgid "Link to this heading"
-msgstr ""
+#: directives/other.py:205
+msgid "Module author: "
+msgstr "Modulforfatter: "
-#: writers/html5.py:558
-msgid "Link to this table"
-msgstr ""
+#: directives/other.py:207
+msgid "Code author: "
+msgstr "Kodeforfatter: "
-#: writers/html5.py:636
-msgid "Link to this code"
-msgstr ""
+#: directives/other.py:209
+msgid "Author: "
+msgstr "Forfatter: "
-#: writers/html5.py:638
-msgid "Link to this image"
+#: directives/other.py:269
+msgid ".. acks content is not a list"
msgstr ""
-#: writers/html5.py:640
-msgid "Link to this toctree"
+#: directives/other.py:292
+msgid ".. hlist content is not a list"
msgstr ""
-#: writers/html5.py:766
-msgid "Could not obtain image size. :scale: option is ignored."
+#: directives/patches.py:70
+msgid ""
+"\":file:\" option for csv-table directive now recognizes an absolute path as"
+" a relative path from source directory. Please update your document."
msgstr ""
-#: domains/__init__.py:322
-#, python-format
-msgid "%s %s"
-msgstr "%s %s"
-
-#: domains/math.py:73
-#, python-format
-msgid "duplicate label of equation %s, other instance in %s"
+#: directives/code.py:66
+msgid "non-whitespace stripped by dedent"
msgstr ""
-#: domains/javascript.py:182
-#, python-format
-msgid "%s() (built-in function)"
-msgstr "%s() (indbygget funktion)"
-
-#: domains/javascript.py:183 domains/python/__init__.py:287
-#, python-format
-msgid "%s() (%s method)"
-msgstr "%s() (metode i %s)"
-
-#: domains/javascript.py:185
-#, python-format
-msgid "%s() (class)"
-msgstr "%s() (klasse)"
-
-#: domains/javascript.py:187
-#, python-format
-msgid "%s (global variable or constant)"
-msgstr "%s (global variabel eller konstant)"
-
-#: domains/javascript.py:189 domains/python/__init__.py:378
-#, python-format
-msgid "%s (%s attribute)"
-msgstr "%s (attribut i %s)"
-
-#: domains/javascript.py:273
-msgid "Arguments"
-msgstr "Parametre"
-
-#: domains/cpp/__init__.py:489 domains/javascript.py:280
-msgid "Throws"
-msgstr "Kaster"
-
-#: domains/c/__init__.py:339 domains/cpp/__init__.py:502
-#: domains/javascript.py:287 domains/python/_object.py:221
-msgid "Returns"
-msgstr "Returnerer"
-
-#: domains/c/__init__.py:345 domains/javascript.py:293
-#: domains/python/_object.py:227
-msgid "Return type"
-msgstr "Returtype"
-
-#: domains/javascript.py:370
-#, python-format
-msgid "%s (module)"
-msgstr "%s (modul)"
-
-#: domains/c/__init__.py:751 domains/cpp/__init__.py:941
-#: domains/javascript.py:415 domains/python/__init__.py:740
-msgid "function"
-msgstr "funktion"
-
-#: domains/javascript.py:416 domains/python/__init__.py:744
-msgid "method"
-msgstr "metode"
-
-#: domains/cpp/__init__.py:939 domains/javascript.py:417
-#: domains/python/__init__.py:742
-msgid "class"
-msgstr "klasse"
-
-#: domains/javascript.py:418 domains/python/__init__.py:741
-msgid "data"
-msgstr "data"
-
-#: domains/javascript.py:419 domains/python/__init__.py:747
-msgid "attribute"
-msgstr "attribut"
-
-#: domains/javascript.py:420 domains/python/__init__.py:750
-msgid "module"
-msgstr "modul"
-
-#: domains/javascript.py:454
+#: directives/code.py:87
#, python-format
-msgid "duplicate %s description of %s, other %s in %s"
+msgid "Invalid caption: %s"
msgstr ""
-#: domains/changeset.py:26
+#: directives/code.py:131 directives/code.py:297 directives/code.py:483
#, python-format
-msgid "Added in version %s"
+msgid "line number spec is out of range(1-%d): %r"
msgstr ""
-#: domains/changeset.py:27
-#, python-format
-msgid "Changed in version %s"
-msgstr "Ændret i version %s"
-
-#: domains/changeset.py:28
-#, python-format
-msgid "Deprecated since version %s"
-msgstr "Forældet siden version %s"
-
-#: domains/changeset.py:29
+#: directives/code.py:216
#, python-format
-msgid "Removed in version %s"
+msgid "Cannot use both \"%s\" and \"%s\" options"
msgstr ""
-#: domains/rst.py:131 domains/rst.py:190
-#, python-format
-msgid "%s (directive)"
-msgstr "%s (direktiv)"
-
-#: domains/rst.py:191 domains/rst.py:202
+#: directives/code.py:231
#, python-format
-msgid ":%s: (directive option)"
+msgid "Include file '%s' not found or reading it failed"
msgstr ""
-#: domains/rst.py:224
+#: directives/code.py:235
#, python-format
-msgid "%s (role)"
-msgstr "%s (rolle)"
-
-#: domains/rst.py:234
-msgid "directive"
-msgstr "direktiv"
-
-#: domains/rst.py:235
-msgid "directive-option"
+msgid ""
+"Encoding %r used for reading included file '%s' seems to be wrong, try "
+"giving an :encoding: option"
msgstr ""
-#: domains/rst.py:236
-msgid "role"
-msgstr "rolle"
-
-#: domains/rst.py:262
+#: directives/code.py:276
#, python-format
-msgid "duplicate description of %s %s, other instance in %s"
+msgid "Object named %r not found in include file %r"
msgstr ""
-#: domains/citation.py:75
-#, python-format
-msgid "duplicate citation %s, other instance in %s"
+#: directives/code.py:309
+msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
msgstr ""
-#: domains/citation.py:92
+#: directives/code.py:314
#, python-format
-msgid "Citation [%s] is not referenced."
-msgstr ""
-
-#: locale/__init__.py:228
-msgid "Attention"
-msgstr "Vær opmærksom"
-
-#: locale/__init__.py:229
-msgid "Caution"
-msgstr "Forsigtig"
-
-#: locale/__init__.py:230
-msgid "Danger"
-msgstr "Fare"
-
-#: locale/__init__.py:231
-msgid "Error"
-msgstr "Fejl"
-
-#: locale/__init__.py:232
-msgid "Hint"
-msgstr "Fif"
-
-#: locale/__init__.py:233
-msgid "Important"
-msgstr "Vigtigt"
-
-#: locale/__init__.py:234
-msgid "Note"
-msgstr "Bemærk"
-
-#: locale/__init__.py:235
-msgid "See also"
-msgstr "Se også"
-
-#: locale/__init__.py:236
-msgid "Tip"
-msgstr "Tip"
-
-#: locale/__init__.py:237
-msgid "Warning"
-msgstr "Advarsel"
-
-#: cmd/quickstart.py:52
-msgid "automatically insert docstrings from modules"
-msgstr ""
-
-#: cmd/quickstart.py:53
-msgid "automatically test code snippets in doctest blocks"
-msgstr ""
-
-#: cmd/quickstart.py:54
-msgid "link between Sphinx documentation of different projects"
-msgstr ""
-
-#: cmd/quickstart.py:55
-msgid "write \"todo\" entries that can be shown or hidden on build"
-msgstr ""
-
-#: cmd/quickstart.py:56
-msgid "checks for documentation coverage"
-msgstr ""
-
-#: cmd/quickstart.py:57
-msgid "include math, rendered as PNG or SVG images"
-msgstr ""
-
-#: cmd/quickstart.py:58
-msgid "include math, rendered in the browser by MathJax"
-msgstr ""
-
-#: cmd/quickstart.py:59
-msgid "conditional inclusion of content based on config values"
-msgstr ""
-
-#: cmd/quickstart.py:60
-msgid "include links to the source code of documented Python objects"
-msgstr ""
-
-#: cmd/quickstart.py:61
-msgid "create .nojekyll file to publish the document on GitHub pages"
-msgstr ""
-
-#: cmd/quickstart.py:110
-msgid "Please enter a valid path name."
+msgid "Line spec %r: no lines pulled from include file %r"
msgstr ""
-#: cmd/quickstart.py:126
-msgid "Please enter some text."
-msgstr "Indtast venligst noget tekst."
-
-#: cmd/quickstart.py:133
+#: builders/html/__init__.py:475 builders/latex/__init__.py:196
+#: transforms/__init__.py:134 writers/manpage.py:97 writers/texinfo.py:220
#, python-format
-msgid "Please enter one of %s."
-msgstr ""
-
-#: cmd/quickstart.py:141
-msgid "Please enter either 'y' or 'n'."
-msgstr "Indtast venligst enten »y« eller »n«."
-
-#: cmd/quickstart.py:147
-msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
-msgstr "Indtast venligt et filsuffiks, f.eks. ».rst« eller ».txt«"
+msgid "%b %d, %Y"
+msgstr "%d. %b, %Y"
-#: cmd/quickstart.py:229
-#, python-format
-msgid "Welcome to the Sphinx %s quickstart utility."
-msgstr ""
+#: builders/latex/__init__.py:203 domains/std/__init__.py:771
+#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:107
+#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
+#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
+#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
+#: themes/basic/genindex.html:59 themes/basic/layout.html:127
+#: writers/texinfo.py:514
+msgid "Index"
+msgstr "Indeks"
-#: cmd/quickstart.py:234
+#: writers/latex.py:768 writers/texinfo.py:646
msgid ""
-"Please enter values for the following settings (just press Enter to\n"
-"accept a default value, if one is given in brackets)."
-msgstr ""
-
-#: cmd/quickstart.py:241
-#, python-format
-msgid "Selected root path: %s"
-msgstr ""
-
-#: cmd/quickstart.py:244
-msgid "Enter the root path for documentation."
-msgstr ""
-
-#: cmd/quickstart.py:245
-msgid "Root path for the documentation"
+"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
-#: cmd/quickstart.py:254
-msgid "Error: an existing conf.py has been found in the selected root path."
-msgstr ""
+#: writers/latex.py:1118 writers/manpage.py:258 writers/texinfo.py:663
+msgid "Footnotes"
+msgstr "Fodnoter"
-#: cmd/quickstart.py:259
-msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
+#: writers/texinfo.py:1217
+msgid "caption not inside a figure."
msgstr ""
-#: cmd/quickstart.py:262
-msgid "Please enter a new root path (or just Enter to exit)"
+#: writers/texinfo.py:1303
+#, python-format
+msgid "unimplemented node type: %r"
msgstr ""
-#: cmd/quickstart.py:273
-msgid ""
-"You have two options for placing the build directory for Sphinx output.\n"
-"Either, you use a directory \"_build\" within the root path, or you separate\n"
-"\"source\" and \"build\" directories within the root path."
-msgstr ""
+#: writers/manpage.py:288 writers/text.py:971
+#, python-format
+msgid "[image: %s]"
+msgstr "[billede: %s]"
-#: cmd/quickstart.py:279
-msgid "Separate source and build directories (y/n)"
-msgstr ""
+#: writers/manpage.py:289 writers/text.py:972
+msgid "[image]"
+msgstr "[billede]"
-#: cmd/quickstart.py:286
-msgid ""
-"Inside the root directory, two more directories will be created; \"_templates\"\n"
-"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
-"files. You can enter another prefix (such as \".\") to replace the underscore."
+#: writers/html5.py:96 writers/html5.py:105
+msgid "Link to this definition"
msgstr ""
-#: cmd/quickstart.py:291
-msgid "Name prefix for templates and static dir"
+#: writers/html5.py:431
+#, python-format
+msgid "numfig_format is not defined for %s"
msgstr ""
-#: cmd/quickstart.py:297
-msgid ""
-"The project name will occur in several places in the built documentation."
+#: writers/html5.py:441
+#, python-format
+msgid "Any IDs not assigned for %s node"
msgstr ""
-#: cmd/quickstart.py:300
-msgid "Project name"
+#: writers/html5.py:496
+msgid "Link to this term"
msgstr ""
-#: cmd/quickstart.py:302
-msgid "Author name(s)"
+#: writers/html5.py:548 writers/html5.py:553
+msgid "Link to this heading"
msgstr ""
-#: cmd/quickstart.py:308
-msgid ""
-"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
-"software. Each version can have multiple releases. For example, for\n"
-"Python the version is something like 2.5 or 3.0, while the release is\n"
-"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
-"just set both to the same value."
+#: writers/html5.py:558
+msgid "Link to this table"
msgstr ""
-#: cmd/quickstart.py:315
-msgid "Project version"
+#: writers/html5.py:572 writers/latex.py:1127
+#, python-format
+msgid "unsupported rubric heading level: %s"
msgstr ""
-#: cmd/quickstart.py:317
-msgid "Project release"
+#: writers/html5.py:636
+msgid "Link to this code"
msgstr ""
-#: cmd/quickstart.py:323
-msgid ""
-"If the documents are to be written in a language other than English,\n"
-"you can select a language here by its language code. Sphinx will then\n"
-"translate text that it generates into that language.\n"
-"\n"
-"For a list of supported codes, see\n"
-"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
+#: writers/html5.py:638
+msgid "Link to this image"
msgstr ""
-#: cmd/quickstart.py:331
-msgid "Project language"
+#: writers/html5.py:640
+msgid "Link to this toctree"
msgstr ""
-#: cmd/quickstart.py:339
-msgid ""
-"The file name suffix for source files. Commonly, this is either \".txt\"\n"
-"or \".rst\". Only files with this suffix are considered documents."
+#: writers/html5.py:766
+msgid "Could not obtain image size. :scale: option is ignored."
msgstr ""
-#: cmd/quickstart.py:343
-msgid "Source file suffix"
+#: writers/latex.py:386
+#, python-format
+msgid "unknown %r toplevel_sectioning for class %r"
msgstr ""
-#: cmd/quickstart.py:349
-msgid ""
-"One document is special in that it is considered the top node of the\n"
-"\"contents tree\", that is, it is the root of the hierarchical structure\n"
-"of the documents. Normally, this is \"index\", but if your \"index\"\n"
-"document is a custom template, you can also set this to another filename."
+#: builders/latex/__init__.py:221 writers/latex.py:436
+#, python-format
+msgid "no Babel option known for language %r"
msgstr ""
-#: cmd/quickstart.py:356
-msgid "Name of your master document (without suffix)"
+#: writers/latex.py:454
+msgid "too large :maxdepth:, ignored."
msgstr ""
-#: cmd/quickstart.py:367
+#: writers/latex.py:616
#, python-format
-msgid ""
-"Error: the master file %s has already been found in the selected root path."
+msgid "template %s not found; loading from legacy %s instead"
msgstr ""
-#: cmd/quickstart.py:373
-msgid "sphinx-quickstart will not overwrite the existing file."
+#: writers/latex.py:732
+msgid "document title is not a single Text node"
msgstr ""
-#: cmd/quickstart.py:377
+#: writers/latex.py:1198
msgid ""
-"Please enter a new file name, or rename the existing file and press Enter"
+"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
-#: cmd/quickstart.py:385
-msgid "Indicate which of the following Sphinx extensions should be enabled:"
+#: writers/latex.py:1228
+#, python-format
+msgid ""
+"colspec %s was given which appears to use tabulary syntax. But this table "
+"can not be rendered as a tabulary; the given colspec will be ignored."
msgstr ""
-#: cmd/quickstart.py:396
-msgid ""
-"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
-"been deselected."
+#: writers/latex.py:1615
+#, python-format
+msgid "dimension unit %s is invalid. Ignored."
msgstr ""
-#: cmd/quickstart.py:406
-msgid ""
-"A Makefile and a Windows command file can be generated for you so that you\n"
-"only have to run e.g. `make html' instead of invoking sphinx-build\n"
-"directly."
+#: writers/latex.py:1950
+#, python-format
+msgid "unknown index entry type %s found"
msgstr ""
-#: cmd/quickstart.py:411
-msgid "Create Makefile? (y/n)"
+#: _cli/__init__.py:73
+msgid "Usage:"
msgstr ""
-#: cmd/quickstart.py:415
-msgid "Create Windows command file? (y/n)"
+#: _cli/__init__.py:75
+#, python-brace-format
+msgid "{0} [OPTIONS] []"
msgstr ""
-#: cmd/quickstart.py:467 ext/apidoc/_generate.py:76
-#, python-format
-msgid "Creating file %s."
+#: _cli/__init__.py:78
+msgid " The Sphinx documentation generator."
msgstr ""
-#: cmd/quickstart.py:472 ext/apidoc/_generate.py:73
-#, python-format
-msgid "File %s already exists, skipping."
-msgstr "Filen %s findes allerede, udelader."
+#: _cli/__init__.py:87
+msgid "Commands:"
+msgstr ""
-#: cmd/quickstart.py:515
-msgid "Finished: An initial directory structure has been created."
+#: _cli/__init__.py:98
+msgid "Options"
msgstr ""
-#: cmd/quickstart.py:519
-#, python-format
-msgid ""
-"You should now populate your master file %s and create other documentation\n"
-"source files. "
+#: _cli/__init__.py:113 _cli/__init__.py:181
+msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
msgstr ""
-#: cmd/quickstart.py:526
+#: _cli/__init__.py:171
+#, python-brace-format
msgid ""
-"Use the Makefile to build the docs, like so:\n"
-" make builder"
+"{0}: error: {1}\n"
+"Run '{0} --help' for information"
msgstr ""
-#: cmd/quickstart.py:530
-#, python-format
-msgid ""
-"Use the sphinx-build command to build the docs, like so:\n"
-" sphinx-build -b builder %s %s"
+#: _cli/__init__.py:179
+msgid " Manage documentation with Sphinx."
msgstr ""
-#: cmd/quickstart.py:537
-msgid ""
-"where \"builder\" is one of the supported builders, e.g. html, latex or "
-"linkcheck."
+#: _cli/__init__.py:191
+msgid "Show the version and exit."
msgstr ""
-#: cmd/quickstart.py:572
-msgid ""
-"\n"
-"Generate required files for a Sphinx project.\n"
-"\n"
-"sphinx-quickstart is an interactive tool that asks some questions about your\n"
-"project and then generates a complete documentation directory and sample\n"
-"Makefile to be used with sphinx-build.\n"
+#: _cli/__init__.py:199
+msgid "Show this message and exit."
msgstr ""
-#: cmd/build.py:73 cmd/quickstart.py:581 ext/apidoc/_cli.py:27
-#: ext/autosummary/generate.py:835
-msgid "For more information, visit ."
+#: _cli/__init__.py:203
+msgid "Logging"
msgstr ""
-#: cmd/quickstart.py:591
-msgid "quiet mode"
+#: _cli/__init__.py:210
+msgid "Increase verbosity (can be repeated)"
msgstr ""
-#: cmd/quickstart.py:601
-msgid "project root"
+#: _cli/__init__.py:218
+msgid "Only print errors and warnings."
msgstr ""
-#: cmd/quickstart.py:604
-msgid "Structure options"
+#: _cli/__init__.py:225
+msgid "No output at all"
msgstr ""
-#: cmd/quickstart.py:610
-msgid "if specified, separate source and build dirs"
+#: _cli/__init__.py:231
+msgid ""
msgstr ""
-#: cmd/quickstart.py:616
-msgid "if specified, create build dir under source dir"
+#: _cli/__init__.py:263
+msgid "See 'sphinx --help'.\n"
msgstr ""
-#: cmd/quickstart.py:622
-msgid "replacement for dot in _templates etc."
+#: transforms/i18n.py:230 transforms/i18n.py:305
+#, python-brace-format
+msgid ""
+"inconsistent footnote references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:625
-msgid "Project basic options"
+#: transforms/i18n.py:275
+#, python-brace-format
+msgid ""
+"inconsistent references in translated message. original: {0}, translated: "
+"{1}"
msgstr ""
-#: cmd/quickstart.py:627
-msgid "project name"
+#: transforms/i18n.py:325
+#, python-brace-format
+msgid ""
+"inconsistent citation references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:630
-msgid "author names"
+#: transforms/i18n.py:347
+#, python-brace-format
+msgid ""
+"inconsistent term references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:637
-msgid "version of project"
+#: transforms/__init__.py:144
+msgid "could not calculate translation progress!"
msgstr ""
-#: cmd/quickstart.py:644
-msgid "release of project"
+#: transforms/__init__.py:149
+msgid "no translated elements!"
msgstr ""
-#: cmd/quickstart.py:651
-msgid "document language"
+#: transforms/__init__.py:258
+#, python-format
+msgid ""
+"4 column based index found. It might be a bug of extensions you use: %r"
msgstr ""
-#: cmd/quickstart.py:654
-msgid "source file suffix"
+#: transforms/__init__.py:299
+#, python-format
+msgid "Footnote [%s] is not referenced."
msgstr ""
-#: cmd/quickstart.py:657
-msgid "master document name"
+#: transforms/__init__.py:308
+msgid "Footnote [*] is not referenced."
msgstr ""
-#: cmd/quickstart.py:660
-msgid "use epub"
+#: transforms/__init__.py:319
+msgid "Footnote [#] is not referenced."
msgstr ""
-#: cmd/quickstart.py:663
-msgid "Extension options"
+#: util/inventory.py:147
+#, python-format
+msgid "inventory <%s> contains duplicate definitions of %s"
msgstr ""
-#: cmd/quickstart.py:670
+#: util/inventory.py:166
#, python-format
-msgid "enable %s extension"
+msgid "inventory <%s> contains multiple definitions for %s"
msgstr ""
-#: cmd/quickstart.py:677
-msgid "enable arbitrary extensions"
+#: util/i18n.py:100
+#, python-format
+msgid "reading error: %s, %s"
msgstr ""
-#: cmd/quickstart.py:680
-msgid "Makefile and Batchfile creation"
+#: util/i18n.py:113
+#, python-format
+msgid "writing error: %s, %s"
msgstr ""
-#: cmd/quickstart.py:686
-msgid "create makefile"
+#: util/i18n.py:146
+#, python-format
+msgid "locale_dir %s does not exist"
msgstr ""
-#: cmd/quickstart.py:692
-msgid "do not create makefile"
-msgstr "opret ikke makefile"
+#: util/i18n.py:244
+#, python-format
+msgid "Invalid Babel locale: %r."
+msgstr ""
-#: cmd/quickstart.py:699
-msgid "create batchfile"
+#: util/i18n.py:253
+#, python-format
+msgid ""
+"Invalid date format. Quote the string by single quote if you want to output "
+"it directly: %s"
msgstr ""
-#: cmd/quickstart.py:705
-msgid "do not create batchfile"
+#: util/osutil.py:131
+#, python-format
+msgid ""
+"Aborted attempted copy from %s to %s (the destination path has existing "
+"data)."
msgstr ""
-#: cmd/quickstart.py:714
-msgid "use make-mode for Makefile/make.bat"
+#: util/display.py:82
+msgid "skipped"
msgstr ""
-#: cmd/quickstart.py:717 ext/apidoc/_cli.py:243
-msgid "Project templating"
+#: util/display.py:87
+msgid "failed"
msgstr ""
-#: cmd/quickstart.py:723 ext/apidoc/_cli.py:249
-msgid "template directory for template files"
-msgstr "skabelonmappe for skabelonfiler"
+#: util/docutils.py:325
+#, python-format
+msgid "unknown directive name: %s"
+msgstr ""
-#: cmd/quickstart.py:730
-msgid "define a template variable"
+#: util/docutils.py:361
+#, python-format
+msgid "unknown role name: %s"
msgstr ""
-#: cmd/quickstart.py:766
-msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
+#: util/docutils.py:805
+#, python-format
+msgid "unknown node type: %r"
msgstr ""
-#: cmd/quickstart.py:785
+#: util/fileutil.py:76
+#, python-format
msgid ""
-"Error: specified path is not a directory, or sphinx files already exist."
+"Aborted attempted copy from rendered template %s to %s (the destination path"
+" has existing data)."
msgstr ""
-#: cmd/quickstart.py:792
-msgid ""
-"sphinx-quickstart only generate into a empty directory. Please specify a new"
-" root path."
+#: util/fileutil.py:89
+#, python-format
+msgid "Writing evaluated template result to %s"
msgstr ""
-#: cmd/quickstart.py:809
+#: util/docfields.py:103
#, python-format
-msgid "Invalid template variable: %s"
+msgid ""
+"Problem in %s domain: field is supposed to use role '%s', but that role is "
+"not in the domain."
msgstr ""
-#: cmd/build.py:64
-msgid "job number should be a positive number"
+#: util/rst.py:73
+#, python-format
+msgid "default role %s not found"
msgstr ""
-#: cmd/build.py:74
+#: util/nodes.py:462
+#, python-format
msgid ""
-"\n"
-"Generate documentation from source files.\n"
-"\n"
-"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
-"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
-"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
-"including 'conf.py'\n"
-"\n"
-"sphinx-build can create documentation in different formats. A format is\n"
-"selected by specifying the builder name on the command line; it defaults to\n"
-"HTML. Builders can also perform other tasks related to documentation\n"
-"processing.\n"
-"\n"
-"By default, everything that is outdated is built. Output only for selected\n"
-"files can be built by specifying individual filenames.\n"
+"%r is no longer supported for index entries (from entry %r). Use 'pair: %s' "
+"instead."
msgstr ""
-#: cmd/build.py:100
-msgid "path to documentation source files"
+#: util/nodes.py:523
+#, python-format
+msgid "toctree contains ref to nonexisting file %r"
msgstr ""
-#: cmd/build.py:103
-msgid "path to output directory"
+#: util/nodes.py:739
+#, python-format
+msgid "exception while evaluating only directive expression: %s"
msgstr ""
-#: cmd/build.py:109
-msgid ""
-"(optional) a list of specific files to rebuild. Ignored if --write-all is "
-"specified"
-msgstr ""
+#: templates/latex/longtable.tex.jinja:52
+#: templates/latex/sphinxmessages.sty.jinja:8
+msgid "continued from previous page"
+msgstr "fortsat fra forrige side"
-#: cmd/build.py:114
-msgid "general options"
-msgstr ""
+#: templates/latex/longtable.tex.jinja:63
+#: templates/latex/sphinxmessages.sty.jinja:9
+msgid "continues on next page"
+msgstr "fortsætter på næste side"
-#: cmd/build.py:121
-msgid "builder to use (default: 'html')"
+#: templates/latex/sphinxmessages.sty.jinja:10
+msgid "Non-alphabetical"
msgstr ""
-#: cmd/build.py:131
-msgid ""
-"run in parallel with N processes, when possible. 'auto' uses the number of "
-"CPU cores"
+#: environment/adapters/indexentries.py:267
+#: templates/latex/sphinxmessages.sty.jinja:11
+msgid "Symbols"
+msgstr "Symboler"
+
+#: templates/latex/sphinxmessages.sty.jinja:12
+msgid "Numbers"
msgstr ""
-#: cmd/build.py:140
-msgid "write all files (default: only write new and changed files)"
+#: templates/latex/sphinxmessages.sty.jinja:13
+msgid "page"
+msgstr "side"
+
+#: builders/latex/__init__.py:206 templates/latex/latex.tex.jinja:92
+msgid "Release"
+msgstr "Udgave"
+
+#: transforms/post_transforms/images.py:79
+#, python-format
+msgid "Could not fetch remote image: %s [%s]"
msgstr ""
-#: cmd/build.py:147
-msgid "don't use a saved environment, always read all files"
+#: transforms/post_transforms/images.py:96
+#, python-format
+msgid "Could not fetch remote image: %s [%d]"
msgstr ""
-#: cmd/build.py:150
-msgid "path options"
+#: transforms/post_transforms/images.py:143
+#, python-format
+msgid "Unknown image format: %s..."
msgstr ""
-#: cmd/build.py:157
+#: transforms/post_transforms/__init__.py:88
msgid ""
-"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
+"Could not determine the fallback text for the cross-reference. Might be a "
+"bug."
msgstr ""
-#: cmd/build.py:166
-msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
+#: transforms/post_transforms/__init__.py:233
+#, python-format
+msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr ""
-#: cmd/build.py:175
-msgid "use no configuration file, only use settings from -D options"
+#: transforms/post_transforms/__init__.py:291
+#, python-format
+msgid "%s:%s reference target not found: %s"
msgstr ""
-#: cmd/build.py:184
-msgid "override a setting in configuration file"
+#: transforms/post_transforms/__init__.py:297
+#, python-format
+msgid "%r reference target not found: %s"
msgstr ""
-#: cmd/build.py:193
-msgid "pass a value into HTML templates"
+#: _cli/util/errors.py:190
+msgid "Interrupted!"
msgstr ""
-#: cmd/build.py:202
-msgid "define tag: include \"only\" blocks with TAG"
+#: _cli/util/errors.py:194
+msgid "reStructuredText markup error!"
msgstr ""
-#: cmd/build.py:209
-msgid "nitpicky mode: warn about all missing references"
+#: _cli/util/errors.py:200
+msgid "Encoding error!"
msgstr ""
-#: cmd/build.py:212
-msgid "console output options"
+#: _cli/util/errors.py:203
+msgid "Recursion error!"
msgstr ""
-#: cmd/build.py:219
-msgid "increase verbosity (can be repeated)"
+#: _cli/util/errors.py:207
+msgid ""
+"This can happen with very large or deeply nested source files. You can "
+"carefully increase the default Python recursion limit of 1,000 in conf.py "
+"with e.g.:"
msgstr ""
-#: cmd/build.py:226 ext/apidoc/_cli.py:66
-msgid "no output on stdout, just warnings on stderr"
+#: _cli/util/errors.py:227
+msgid "Starting debugger:"
msgstr ""
-#: cmd/build.py:233
-msgid "no output at all, not even warnings"
+#: _cli/util/errors.py:235
+msgid "The full traceback has been saved in:"
msgstr ""
-#: cmd/build.py:241
-msgid "do emit colored output (default: auto-detect)"
+#: _cli/util/errors.py:240
+msgid ""
+"To report this error to the developers, please open an issue at "
+". Thanks!"
msgstr ""
-#: cmd/build.py:249
-msgid "do not emit colored output (default: auto-detect)"
+#: _cli/util/errors.py:246
+msgid ""
+"Please also report this if it was a user error, so that a better error "
+"message can be provided next time."
msgstr ""
-#: cmd/build.py:252
-msgid "warning control options"
-msgstr ""
+#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
+msgid "Collapse sidebar"
+msgstr "Sammenfold sidebjælke"
-#: cmd/build.py:258
-msgid "write warnings (and errors) to given file"
-msgstr ""
+#: themes/basic/layout.html:18
+msgid "Navigation"
+msgstr "Navigation"
-#: cmd/build.py:265
-msgid "turn warnings into errors"
-msgstr ""
+#: themes/basic/layout.html:115
+#, python-format
+msgid "Search within %(docstitle)s"
+msgstr "Søg i %(docstitle)s"
-#: cmd/build.py:273
-msgid "show full traceback on exception"
-msgstr ""
+#: themes/basic/layout.html:124
+msgid "About these documents"
+msgstr "Om disse dokumenter"
-#: cmd/build.py:276
-msgid "run Pdb on exception"
-msgstr ""
+#: themes/agogo/layout.html:34 themes/basic/layout.html:130
+#: themes/basic/search.html:3 themes/basic/search.html:15
+msgid "Search"
+msgstr "Søg"
-#: cmd/build.py:282
-msgid "raise an exception on warnings"
-msgstr ""
+#: themes/basic/layout.html:133 themes/basic/layout.html:177
+#: themes/basic/layout.html:179
+msgid "Copyright"
+msgstr "Ophavsret"
-#: cmd/build.py:325
-msgid "cannot combine -a option and filenames"
+#: themes/basic/layout.html:183 themes/basic/layout.html:189
+#, python-format
+msgid "© %(copyright_prefix)s %(copyright)s."
msgstr ""
-#: cmd/build.py:357
+#: themes/basic/layout.html:201
#, python-format
-msgid "cannot open warning file '%s': %s"
-msgstr ""
+msgid "Last updated on %(last_updated)s."
+msgstr "Sidst opdateret %(last_updated)s."
-#: cmd/build.py:376
-msgid "-D option argument must be in the form name=value"
+#: themes/basic/layout.html:204
+#, python-format
+msgid ""
+"Created using Sphinx "
+"%(sphinx_version)s."
msgstr ""
-#: cmd/build.py:383
-msgid "-A option argument must be in the form name=value"
-msgstr ""
+#: themes/basic/relations.html:4
+msgid "Previous topic"
+msgstr "Forrige emne"
-#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
-msgid "Collapse sidebar"
-msgstr "Sammenfold sidebjælke"
+#: themes/basic/relations.html:6
+msgid "previous chapter"
+msgstr "forrige kapitel"
-#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
-#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
-msgid "Table of Contents"
+#: themes/basic/relations.html:11
+msgid "Next topic"
+msgstr "Næste emne"
+
+#: themes/basic/relations.html:13
+msgid "next chapter"
+msgstr "næste kapitel"
+
+#: themes/basic/genindex-single.html:26
+#, python-format
+msgid "Index – %(key)s"
msgstr ""
-#: themes/agogo/layout.html:34 themes/basic/layout.html:130
-#: themes/basic/search.html:3 themes/basic/search.html:15
-msgid "Search"
-msgstr "Søg"
+#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
+#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
+msgid "Full index on one page"
+msgstr "Fuldt indeks på én side"
-#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
-#: themes/basic/searchfield.html:12
-msgid "Go"
-msgstr "Søg"
+#: themes/basic/sourcelink.html:4
+msgid "This Page"
+msgstr "Denne side"
#: themes/agogo/layout.html:81 themes/basic/sourcelink.html:7
msgid "Show Source"
msgstr "Vis kilde"
-#: themes/haiku/layout.html:16
-msgid "Contents"
-msgstr "Indhold"
+#: themes/basic/searchbox.html:4
+msgid "Quick search"
+msgstr "Hurtig søgning"
-#: themes/basic/opensearch.xml:4
-#, python-format
-msgid "Search %(docstitle)s"
-msgstr "Søg i %(docstitle)s"
+#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
+#: themes/basic/searchfield.html:12
+msgid "Go"
+msgstr "Søg"
#: themes/basic/defindex.html:4
msgid "Overview"
@@ -2668,107 +2868,48 @@ msgstr "Fuldstændig indholdsfortegnelse"
msgid "lists all sections and subsections"
msgstr "viser alle afsnit og underafsnit"
-#: domains/std/__init__.py:773 domains/std/__init__.py:786
-#: themes/basic/defindex.html:18
-msgid "Search Page"
-msgstr "Søgeside"
-
-#: themes/basic/defindex.html:19
-msgid "search this documentation"
-msgstr "søg i denne dokumentation"
-
-#: themes/basic/defindex.html:21
-msgid "Global Module Index"
-msgstr "Globalt modulindeks"
-
-#: themes/basic/defindex.html:22
-msgid "quick access to all modules"
-msgstr "hurtig adgang til alle moduler"
-
-#: builders/html/__init__.py:507 themes/basic/defindex.html:23
-msgid "General Index"
-msgstr "Generelt indeks"
-
-#: themes/basic/defindex.html:24
-msgid "all functions, classes, terms"
-msgstr "alle funktioner, klasser, begreber"
-
-#: themes/basic/sourcelink.html:4
-msgid "This Page"
-msgstr "Denne side"
-
-#: themes/basic/genindex-single.html:26
-#, python-format
-msgid "Index – %(key)s"
-msgstr ""
-
-#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
-#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
-msgid "Full index on one page"
-msgstr "Fuldt indeks på én side"
-
-#: themes/basic/searchbox.html:4
-msgid "Quick search"
-msgstr "Hurtig søgning"
-
-#: themes/basic/genindex-split.html:8
-msgid "Index pages by letter"
-msgstr "Indeksér sider efter bogstav"
-
-#: themes/basic/genindex-split.html:17
-msgid "can be huge"
-msgstr "kan være enormt"
-
-#: themes/basic/relations.html:4
-msgid "Previous topic"
-msgstr "Forrige emne"
-
-#: themes/basic/relations.html:6
-msgid "previous chapter"
-msgstr "forrige kapitel"
-
-#: themes/basic/relations.html:11
-msgid "Next topic"
-msgstr "Næste emne"
+#: domains/std/__init__.py:773 domains/std/__init__.py:786
+#: themes/basic/defindex.html:18
+msgid "Search Page"
+msgstr "Søgeside"
-#: themes/basic/relations.html:13
-msgid "next chapter"
-msgstr "næste kapitel"
+#: themes/basic/defindex.html:19
+msgid "search this documentation"
+msgstr "søg i denne dokumentation"
-#: themes/basic/layout.html:18
-msgid "Navigation"
-msgstr "Navigation"
+#: themes/basic/defindex.html:21
+msgid "Global Module Index"
+msgstr "Globalt modulindeks"
-#: themes/basic/layout.html:115
-#, python-format
-msgid "Search within %(docstitle)s"
-msgstr "Søg i %(docstitle)s"
+#: themes/basic/defindex.html:22
+msgid "quick access to all modules"
+msgstr "hurtig adgang til alle moduler"
-#: themes/basic/layout.html:124
-msgid "About these documents"
-msgstr "Om disse dokumenter"
+#: builders/html/__init__.py:496 themes/basic/defindex.html:23
+msgid "General Index"
+msgstr "Generelt indeks"
-#: themes/basic/layout.html:133 themes/basic/layout.html:177
-#: themes/basic/layout.html:179
-msgid "Copyright"
-msgstr "Ophavsret"
+#: themes/basic/defindex.html:24
+msgid "all functions, classes, terms"
+msgstr "alle funktioner, klasser, begreber"
-#: themes/basic/layout.html:183 themes/basic/layout.html:189
-#, python-format
-msgid "© %(copyright_prefix)s %(copyright)s."
+#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
+#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
+msgid "Table of Contents"
msgstr ""
-#: themes/basic/layout.html:201
+#: themes/basic/opensearch.xml:4
#, python-format
-msgid "Last updated on %(last_updated)s."
-msgstr "Sidst opdateret %(last_updated)s."
+msgid "Search %(docstitle)s"
+msgstr "Søg i %(docstitle)s"
-#: themes/basic/layout.html:204
-#, python-format
-msgid ""
-"Created using Sphinx "
-"%(sphinx_version)s."
-msgstr ""
+#: themes/basic/genindex-split.html:8
+msgid "Index pages by letter"
+msgstr "Indeksér sider efter bogstav"
+
+#: themes/basic/genindex-split.html:17
+msgid "can be huge"
+msgstr "kan være enormt"
#: themes/basic/search.html:20
msgid ""
@@ -2786,21 +2927,21 @@ msgstr "Bemærk: Hvis du søger efter flere ord, vises kun resultater der indeho
msgid "search"
msgstr "søg"
-#: themes/basic/static/sphinx_highlight.js:112
-msgid "Hide Search Matches"
-msgstr "Skjul søgeresultater"
+#: themes/haiku/layout.html:16
+msgid "Contents"
+msgstr "Indhold"
-#: themes/basic/static/searchtools.js:117
+#: themes/basic/static/searchtools.js:132
msgid "Search Results"
msgstr "Søgeresultater"
-#: themes/basic/static/searchtools.js:119
+#: themes/basic/static/searchtools.js:134
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
msgstr "Din søgning matchede ikke nogen dokumenter. Sikr dig at alle ord er stavet korrekt og at du har valgt nok kategorier."
-#: themes/basic/static/searchtools.js:123
+#: themes/basic/static/searchtools.js:138
#, python-brace-format
msgid "Search finished, found one page matching the search query."
msgid_plural ""
@@ -2808,22 +2949,21 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: themes/basic/static/searchtools.js:253
+#: themes/basic/static/searchtools.js:276
msgid "Searching"
msgstr "Søger"
-#: themes/basic/static/searchtools.js:270
+#: themes/basic/static/searchtools.js:293
msgid "Preparing search..."
msgstr "Forbereder søgning..."
-#: themes/basic/static/searchtools.js:474
+#: themes/basic/static/searchtools.js:526
msgid ", in "
msgstr ", i"
-#: themes/basic/changes/rstsource.html:5
-#, python-format
-msgid "%(filename)s — %(docstitle)s"
-msgstr "%(filename)s — %(docstitle)s"
+#: themes/basic/static/sphinx_highlight.js:112
+msgid "Hide Search Matches"
+msgstr "Skjul søgeresultater"
#: themes/basic/changes/frameset.html:5
#: themes/basic/changes/versionchanges.html:12
@@ -2831,6 +2971,11 @@ msgstr "%(filename)s — %(docstitle)s"
msgid "Changes in Version %(version)s — %(docstitle)s"
msgstr "Ændringer i version %(version)s — %(docstitle)s"
+#: themes/basic/changes/rstsource.html:5
+#, python-format
+msgid "%(filename)s — %(docstitle)s"
+msgstr "%(filename)s — %(docstitle)s"
+
#: themes/basic/changes/versionchanges.html:17
#, python-format
msgid "Automatically generated list of changes in version %(version)s"
@@ -2852,120 +2997,127 @@ msgstr "Andre ændringer"
msgid "Expand sidebar"
msgstr "Udfold sidebjælke"
-#: domains/python/_annotations.py:529
+#: domains/python/_annotations.py:522
msgid "Positional-only parameter separator (PEP 570)"
msgstr ""
-#: domains/python/_annotations.py:540
+#: domains/python/_annotations.py:533
msgid "Keyword-only parameters separator (PEP 3102)"
msgstr ""
-#: domains/python/__init__.py:113 domains/python/__init__.py:278
+#: domains/c/__init__.py:354 domains/cpp/__init__.py:485
+#: domains/python/_object.py:190 ext/napoleon/docstring.py:980
+msgid "Parameters"
+msgstr "Parametre"
+
+#: domains/python/_object.py:206
+msgid "Variables"
+msgstr "Variable"
+
+#: domains/python/_object.py:214
+msgid "Raises"
+msgstr "Rejser"
+
+#: domains/python/__init__.py:105 domains/python/__init__.py:270
#, python-format
msgid "%s() (in module %s)"
msgstr "%s() (i modulet %s)"
-#: domains/python/__init__.py:180 domains/python/__init__.py:374
-#: domains/python/__init__.py:434 domains/python/__init__.py:474
+#: domains/python/__init__.py:172 domains/python/__init__.py:366
+#: domains/python/__init__.py:426 domains/python/__init__.py:466
#, python-format
msgid "%s (in module %s)"
msgstr "%s (i modulet %s)"
-#: domains/python/__init__.py:182
+#: domains/python/__init__.py:174
#, python-format
msgid "%s (built-in variable)"
msgstr "%s (indbygget variabel)"
-#: domains/python/__init__.py:217
+#: domains/python/__init__.py:209
#, python-format
msgid "%s (built-in class)"
msgstr "%s (indbygget klasse)"
-#: domains/python/__init__.py:218
+#: domains/python/__init__.py:210
#, python-format
msgid "%s (class in %s)"
msgstr "%s (klasse i %s)"
-#: domains/python/__init__.py:283
+#: domains/python/__init__.py:275
#, python-format
msgid "%s() (%s class method)"
msgstr "%s() (klassemetode i %s)"
-#: domains/python/__init__.py:285
+#: domains/python/__init__.py:277
#, python-format
msgid "%s() (%s static method)"
msgstr "%s() (statisk metode i %s)"
-#: domains/python/__init__.py:438
+#: domains/python/__init__.py:430
#, python-format
msgid "%s (%s property)"
msgstr ""
-#: domains/python/__init__.py:478
+#: domains/python/__init__.py:470
#, python-format
msgid "%s (type alias in %s)"
msgstr ""
-#: domains/python/__init__.py:638
+#: domains/python/__init__.py:624
msgid "Python Module Index"
msgstr "Python-modulindeks"
-#: domains/python/__init__.py:639
+#: domains/python/__init__.py:625
msgid "modules"
msgstr "moduler"
-#: domains/python/__init__.py:717
+#: domains/python/__init__.py:703
msgid "Deprecated"
msgstr "Forældet"
-#: domains/python/__init__.py:743
+#: domains/python/__init__.py:729
msgid "exception"
msgstr "undtagelse"
-#: domains/python/__init__.py:745
+#: domains/python/__init__.py:731
msgid "class method"
msgstr "klassemetode"
-#: domains/python/__init__.py:746
+#: domains/python/__init__.py:732
msgid "static method"
msgstr "statisk metode"
-#: domains/python/__init__.py:748
+#: domains/python/__init__.py:734
msgid "property"
msgstr ""
-#: domains/python/__init__.py:749
+#: domains/python/__init__.py:735
msgid "type alias"
msgstr ""
-#: domains/python/__init__.py:818
+#: domains/python/__init__.py:804
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :no-index: for"
" one of them"
msgstr ""
-#: domains/python/__init__.py:978
+#: domains/python/__init__.py:974
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
-#: domains/python/__init__.py:1052
+#: domains/python/__init__.py:1048
msgid " (deprecated)"
msgstr " (forældet)"
-#: domains/c/__init__.py:326 domains/cpp/__init__.py:483
-#: domains/python/_object.py:190 ext/napoleon/docstring.py:974
-msgid "Parameters"
-msgstr "Parametre"
-
-#: domains/python/_object.py:206
-msgid "Variables"
-msgstr "Variable"
-
-#: domains/python/_object.py:214
-msgid "Raises"
-msgstr "Rejser"
+#: domains/cpp/__init__.py:394 domains/cpp/_symbol.py:946
+#, python-format
+msgid ""
+"Duplicate C++ declaration, also defined at %s:%s.\n"
+"Declaration is '.. cpp:%s:: %s'."
+msgstr ""
#: domains/cpp/__init__.py:159
msgid "Template Parameters"
@@ -2976,92 +3128,85 @@ msgstr "Template-parametre"
msgid "%s (C++ %s)"
msgstr ""
-#: domains/cpp/__init__.py:392 domains/cpp/_symbol.py:942
-#, python-format
-msgid ""
-"Duplicate C++ declaration, also defined at %s:%s.\n"
-"Declaration is '.. cpp:%s:: %s'."
-msgstr ""
-
-#: domains/c/__init__.py:333 domains/cpp/__init__.py:496
+#: domains/c/__init__.py:361 domains/cpp/__init__.py:498
msgid "Return values"
msgstr ""
-#: domains/c/__init__.py:754 domains/cpp/__init__.py:940
+#: domains/c/__init__.py:782 domains/cpp/__init__.py:942
msgid "union"
msgstr ""
-#: domains/c/__init__.py:749 domains/cpp/__init__.py:942
+#: domains/c/__init__.py:777 domains/cpp/__init__.py:944
msgid "member"
msgstr "medlem"
-#: domains/c/__init__.py:757 domains/cpp/__init__.py:943
+#: domains/c/__init__.py:785 domains/cpp/__init__.py:945
msgid "type"
msgstr "type"
-#: domains/cpp/__init__.py:944
+#: domains/cpp/__init__.py:946
msgid "concept"
msgstr "koncept"
-#: domains/c/__init__.py:755 domains/cpp/__init__.py:945
+#: domains/c/__init__.py:783 domains/cpp/__init__.py:947
msgid "enum"
msgstr "optæl"
-#: domains/c/__init__.py:756 domains/cpp/__init__.py:946
+#: domains/c/__init__.py:784 domains/cpp/__init__.py:948
msgid "enumerator"
msgstr "optælling"
-#: domains/c/__init__.py:760 domains/cpp/__init__.py:949
+#: domains/c/__init__.py:788 domains/cpp/__init__.py:951
msgid "function parameter"
msgstr ""
-#: domains/cpp/__init__.py:952
+#: domains/cpp/__init__.py:954
msgid "template parameter"
msgstr ""
-#: domains/c/__init__.py:211
-#, python-format
-msgid "%s (C %s)"
-msgstr ""
-
-#: domains/c/__init__.py:277 domains/c/_symbol.py:557
+#: domains/c/__init__.py:279 domains/c/_symbol.py:569
#, python-format
msgid ""
"Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'."
msgstr ""
-#: domains/c/__init__.py:750
+#: domains/c/__init__.py:211
+#, python-format
+msgid "%s (C %s)"
+msgstr ""
+
+#: domains/c/__init__.py:778
msgid "variable"
msgstr "variabel"
-#: domains/c/__init__.py:752
+#: domains/c/__init__.py:780
msgid "macro"
msgstr "makro"
-#: domains/c/__init__.py:753
+#: domains/c/__init__.py:781
msgid "struct"
msgstr ""
-#: domains/std/__init__.py:91 domains/std/__init__.py:111
+#: domains/std/__init__.py:88 domains/std/__init__.py:108
#, python-format
msgid "environment variable; %s"
msgstr "miljøvariabel; %s"
-#: domains/std/__init__.py:119
+#: domains/std/__init__.py:116
#, python-format
msgid "%s; configuration value"
msgstr ""
-#: domains/std/__init__.py:175
+#: domains/std/__init__.py:172
msgid "Type"
msgstr ""
-#: domains/std/__init__.py:185
+#: domains/std/__init__.py:182
msgid "Default"
msgstr ""
-#: domains/std/__init__.py:242
+#: domains/std/__init__.py:239
#, python-format
msgid ""
"Malformed option description %r, should look like \"opt\", \"-opt args\", \""
@@ -3115,607 +3260,394 @@ msgstr "dokument"
#: domains/std/__init__.py:772 domains/std/__init__.py:785
msgid "Module Index"
-msgstr "Modulindeks"
-
-#: domains/std/__init__.py:857
-#, python-format
-msgid "duplicate %s description of %s, other instance in %s"
-msgstr ""
-
-#: domains/std/__init__.py:1113
-msgid "numfig is disabled. :numref: is ignored."
-msgstr ""
-
-#: domains/std/__init__.py:1124
-#, python-format
-msgid "Failed to create a cross reference. Any number is not assigned: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1138
-#, python-format
-msgid "the link has no caption: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1153
-#, python-format
-msgid "invalid numfig_format: %s (%r)"
-msgstr ""
-
-#: domains/std/__init__.py:1157
-#, python-format
-msgid "invalid numfig_format: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1453
-#, python-format
-msgid "undefined label: %r"
-msgstr ""
-
-#: domains/std/__init__.py:1456
-#, python-format
-msgid "Failed to create a cross reference. A title or caption not found: %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:324
-#, python-format
-msgid "circular toctree references detected, ignoring: %s <- %s"
-msgstr ""
-
-#: environment/adapters/toctree.py:349
-#, python-format
-msgid ""
-"toctree contains reference to document %r that doesn't have a title: no link"
-" will be generated"
-msgstr ""
-
-#: environment/adapters/toctree.py:364
-#, python-format
-msgid "toctree contains reference to non-included document %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:367
-#, python-format
-msgid "toctree contains reference to non-existing document %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:123
-#, python-format
-msgid "see %s"
-msgstr "se %s"
-
-#: environment/adapters/indexentries.py:133
-#, python-format
-msgid "see also %s"
-msgstr "se også %s"
-
-#: environment/adapters/indexentries.py:141
-#, python-format
-msgid "unknown index entry type %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:268
-#: templates/latex/sphinxmessages.sty.jinja:11
-msgid "Symbols"
-msgstr "Symboler"
-
-#: environment/collectors/asset.py:98
-#, python-format
-msgid "image file not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:126
-#, python-format
-msgid "image file %s not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:163
-#, python-format
-msgid "download file not readable: %s"
-msgstr ""
-
-#: environment/collectors/toctree.py:259
-#, python-format
-msgid "%s is already assigned section numbers (nested numbered toctree?)"
-msgstr ""
-
-#: _cli/util/errors.py:190
-msgid "Interrupted!"
-msgstr ""
-
-#: _cli/util/errors.py:194
-msgid "reStructuredText markup error!"
-msgstr ""
-
-#: _cli/util/errors.py:200
-msgid "Encoding error!"
-msgstr ""
-
-#: _cli/util/errors.py:203
-msgid "Recursion error!"
-msgstr ""
-
-#: _cli/util/errors.py:207
-msgid ""
-"This can happen with very large or deeply nested source files. You can "
-"carefully increase the default Python recursion limit of 1,000 in conf.py "
-"with e.g.:"
-msgstr ""
-
-#: _cli/util/errors.py:227
-msgid "Starting debugger:"
-msgstr ""
-
-#: _cli/util/errors.py:235
-msgid "The full traceback has been saved in:"
-msgstr ""
-
-#: _cli/util/errors.py:240
-msgid ""
-"To report this error to the developers, please open an issue at "
-". Thanks!"
-msgstr ""
-
-#: _cli/util/errors.py:246
-msgid ""
-"Please also report this if it was a user error, so that a better error "
-"message can be provided next time."
-msgstr ""
+msgstr "Modulindeks"
-#: transforms/post_transforms/__init__.py:88
-msgid ""
-"Could not determine the fallback text for the cross-reference. Might be a "
-"bug."
+#: domains/std/__init__.py:857
+#, python-format
+msgid "duplicate %s description of %s, other instance in %s"
msgstr ""
-#: transforms/post_transforms/__init__.py:237
-#, python-format
-msgid "more than one target found for 'any' cross-reference %r: could be %s"
+#: domains/std/__init__.py:1113
+msgid "numfig is disabled. :numref: is ignored."
msgstr ""
-#: transforms/post_transforms/__init__.py:299
+#: domains/std/__init__.py:1124
#, python-format
-msgid "%s:%s reference target not found: %s"
+msgid "Failed to create a cross reference. Any number is not assigned: %s"
msgstr ""
-#: transforms/post_transforms/__init__.py:305
+#: domains/std/__init__.py:1138
#, python-format
-msgid "%r reference target not found: %s"
+msgid "the link has no caption: %s"
msgstr ""
-#: transforms/post_transforms/images.py:79
+#: domains/std/__init__.py:1153
#, python-format
-msgid "Could not fetch remote image: %s [%s]"
+msgid "invalid numfig_format: %s (%r)"
msgstr ""
-#: transforms/post_transforms/images.py:96
+#: domains/std/__init__.py:1157
#, python-format
-msgid "Could not fetch remote image: %s [%d]"
+msgid "invalid numfig_format: %s"
msgstr ""
-#: transforms/post_transforms/images.py:143
+#: domains/std/__init__.py:1453
#, python-format
-msgid "Unknown image format: %s..."
+msgid "undefined label: %r"
msgstr ""
-#: builders/html/__init__.py:113
+#: domains/std/__init__.py:1456
#, python-format
-msgid "The HTML pages are in %(outdir)s."
-msgstr "HTML-siderne er i %(outdir)s."
+msgid "Failed to create a cross reference. A title or caption not found: %r"
+msgstr ""
-#: builders/html/__init__.py:348
+#: ext/napoleon/docstring.py:178
#, python-format
-msgid "Failed to read build info file: %r"
+msgid "invalid value set (missing closing brace): %s"
msgstr ""
-#: builders/html/__init__.py:364
-msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+#: ext/napoleon/docstring.py:185
+#, python-format
+msgid "invalid value set (missing opening brace): %s"
msgstr ""
-#: builders/html/__init__.py:366
-msgid "building [html]: "
+#: ext/napoleon/docstring.py:192
+#, python-format
+msgid "malformed string literal (missing closing quote): %s"
msgstr ""
-#: builders/html/__init__.py:383
+#: ext/napoleon/docstring.py:199
#, python-format
-msgid ""
-"template %s has been changed since the previous build, all docs will be "
-"rebuilt"
+msgid "malformed string literal (missing opening quote): %s"
msgstr ""
-#: builders/html/__init__.py:507
-msgid "index"
-msgstr "indeks"
-
-#: builders/html/__init__.py:560
-#, python-format
-msgid "Logo of %s"
+#: ext/napoleon/docstring.py:902
+msgid "Example"
msgstr ""
-#: builders/html/__init__.py:589
-msgid "next"
-msgstr "næste"
+#: ext/napoleon/docstring.py:903
+msgid "Examples"
+msgstr "Eksempler"
-#: builders/html/__init__.py:598
-msgid "previous"
-msgstr "forrige"
+#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:947
+msgid "Keyword Arguments"
+msgstr "Nøgleordsargumenter"
-#: builders/html/__init__.py:696
-msgid "generating indices"
+#: ext/napoleon/docstring.py:962
+msgid "Notes"
msgstr ""
-#: builders/html/__init__.py:711
-msgid "writing additional pages"
-msgstr ""
+#: ext/napoleon/docstring.py:971
+msgid "Other Parameters"
+msgstr "Andre parametre"
-#: builders/html/__init__.py:794
-#, python-format
-msgid "cannot copy image file '%s': %s"
+#: ext/napoleon/docstring.py:1007
+msgid "Receives"
msgstr ""
-#: builders/html/__init__.py:806
-msgid "copying downloadable files... "
-msgstr ""
+#: ext/napoleon/docstring.py:1011
+msgid "References"
+msgstr "Referencer"
-#: builders/html/__init__.py:818
-#, python-format
-msgid "cannot copy downloadable file %r: %s"
+#: ext/napoleon/docstring.py:1043
+msgid "Warns"
msgstr ""
-#: builders/html/__init__.py:864
-#, python-format
-msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
+#: ext/napoleon/docstring.py:1047
+msgid "Yields"
msgstr ""
-#: builders/html/__init__.py:882
+#: ext/autodoc/_generate.py:151
+#: ext/autodoc/_legacy_class_based/_documenters.py:859
#, python-format
-msgid "Failed to copy a file in html_static_file: %s: %r"
-msgstr ""
-
-#: builders/html/__init__.py:917
-msgid "copying static files"
+msgid "A mocked object is detected: %r"
msgstr ""
-#: builders/html/__init__.py:934
+#: ext/autodoc/_generate.py:334 ext/autodoc/_generate.py:348
+#: ext/autodoc/_generate.py:370 ext/autodoc/_generate.py:386
+#: ext/autodoc/_legacy_class_based/_documenters.py:1860
+#: ext/autodoc/_legacy_class_based/_documenters.py:1889
+#: ext/autodoc/_legacy_class_based/_documenters.py:1983
#, python-format
-msgid "cannot copy static file %r"
-msgstr "kan ikke kopiere statisk fil %r"
-
-#: builders/html/__init__.py:939
-msgid "copying extra files"
+msgid "alias of %s"
msgstr ""
-#: builders/html/__init__.py:949
+#: ext/autodoc/_legacy_class_based/_documenters.py:1745
+#: ext/autodoc/_renderer.py:88
#, python-format
-msgid "cannot copy extra file %r"
+msgid "Bases: %s"
msgstr ""
-#: builders/html/__init__.py:955
+#: ext/autodoc/_directive_options.py:226
+#: ext/autodoc/_legacy_class_based/_directive_options.py:47
#, python-format
-msgid "Failed to write build info file: %r"
-msgstr ""
-
-#: builders/html/__init__.py:1005
-msgid ""
-"search index couldn't be loaded, but not all documents will be built: the "
-"index will be incomplete."
+msgid "invalid value for member-order option: %s"
msgstr ""
-#: builders/html/__init__.py:1052
+#: ext/autodoc/_directive_options.py:233
+#: ext/autodoc/_legacy_class_based/_directive_options.py:55
#, python-format
-msgid "page %s matches two patterns in html_sidebars: %r and %r"
+msgid "invalid value for class-doc-from option: %s"
msgstr ""
-#: builders/html/__init__.py:1216
+#: ext/autodoc/_legacy_class_based/_documenters.py:239
+#: ext/autodoc/_names.py:45
#, python-format
-msgid ""
-"a Unicode error occurred when rendering the page %s. Please make sure all "
-"config values that contain non-ASCII content are Unicode strings."
+msgid "invalid signature for auto%s (%r)"
msgstr ""
-#: builders/html/__init__.py:1224
+#: ext/autodoc/_legacy_class_based/_documenters.py:800
+#: ext/autodoc/_names.py:53 ext/autodoc/_names.py:101
#, python-format
msgid ""
-"An error happened in rendering the page %s.\n"
-"Reason: %r"
-msgstr ""
-
-#: builders/html/__init__.py:1257
-msgid "dumping object inventory"
-msgstr ""
-
-#: builders/html/__init__.py:1265
-#, python-format
-msgid "dumping search index in %s"
+"don't know which module to import for autodocumenting %r (try placing a "
+"\"module\" or \"currentmodule\" directive in the document, or giving an "
+"explicit module name)"
msgstr ""
-#: builders/html/__init__.py:1308
+#: ext/autodoc/_names.py:89
#, python-format
-msgid "invalid js_file: %r, ignored"
-msgstr "udgyldig js_file: %r, ignoreret"
-
-#: builders/html/__init__.py:1342
-msgid "Many math_renderers are registered. But no math_renderer is selected."
+msgid "signature arguments given for automodule: '%s'"
msgstr ""
-#: builders/html/__init__.py:1346
+#: ext/autodoc/_names.py:93
#, python-format
-msgid "Unknown math_renderer %r is given."
+msgid "return annotation given for automodule: '%s'"
msgstr ""
-#: builders/html/__init__.py:1360
-#, python-format
-msgid "html_extra_path entry %r is placed inside outdir"
+#: ext/autodoc/_legacy_class_based/_documenters.py:956
+#: ext/autodoc/_names.py:134
+msgid "\"::\" in automodule name doesn't make sense"
msgstr ""
-#: builders/html/__init__.py:1365
+#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:984
#, python-format
-msgid "html_extra_path entry %r does not exist"
+msgid "Failed to remove %s: %s"
msgstr ""
-#: builders/html/__init__.py:1380
+#: ext/apidoc/_generate.py:69
#, python-format
-msgid "html_static_path entry %r is placed inside outdir"
+msgid "Would create file %s."
msgstr ""
-#: builders/html/__init__.py:1385
-#, python-format
-msgid "html_static_path entry %r does not exist"
+#: ext/apidoc/_cli.py:28
+msgid ""
+"\n"
+"Look recursively in for Python modules and packages and create\n"
+"one reST file with automodule directives per package in the .\n"
+"\n"
+"The s can be file and/or directory patterns that will be\n"
+"excluded from generation.\n"
+"\n"
+"Note: By default this script will not overwrite already created files."
msgstr ""
-#: builders/html/__init__.py:1396 builders/latex/__init__.py:504
-#, python-format
-msgid "logo file %r does not exist"
+#: ext/apidoc/_cli.py:45
+msgid "path to module to document"
msgstr ""
-#: builders/html/__init__.py:1407
-#, python-format
-msgid "favicon file %r does not exist"
-msgstr "favicon-filen %r findes ikke"
-
-#: builders/html/__init__.py:1420
-#, python-format
+#: ext/apidoc/_cli.py:50
msgid ""
-"Values in 'html_sidebars' must be a list of strings. At least one pattern "
-"has a string value: %s. Change to `html_sidebars = %r`."
+"fnmatch-style file and/or directory patterns to exclude from generation"
msgstr ""
-#: builders/html/__init__.py:1433
-msgid ""
-"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
-"configuration options)"
+#: ext/apidoc/_cli.py:60
+msgid "directory to place all output"
msgstr ""
-#: builders/html/__init__.py:1449
-#, python-format
-msgid "%s %s documentation"
-msgstr "%s %s dokumentation"
-
-#: builders/html/_build_info.py:32
-msgid "failed to read broken build info file (unknown version)"
+#: ext/apidoc/_cli.py:75
+msgid "maximum depth of submodules to show in the TOC (default: 4)"
msgstr ""
-#: builders/html/_build_info.py:36
-msgid "failed to read broken build info file (missing config entry)"
-msgstr ""
+#: ext/apidoc/_cli.py:82
+msgid "overwrite existing files"
+msgstr "overskriv eksisterende filer"
-#: builders/html/_build_info.py:39
-msgid "failed to read broken build info file (missing tags entry)"
+#: ext/apidoc/_cli.py:91
+msgid ""
+"follow symbolic links. Powerful when combined with "
+"collective.recipe.omelette."
msgstr ""
-#: builders/latex/__init__.py:118
-#, python-format
-msgid "The LaTeX files are in %(outdir)s."
+#: ext/apidoc/_cli.py:99
+msgid "run the script without creating files"
msgstr ""
-#: builders/latex/__init__.py:121
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through (pdf)latex\n"
-"(use `make latexpdf' here to do that automatically)."
+#: ext/apidoc/_cli.py:106
+msgid "put documentation for each module on its own page"
msgstr ""
-#: builders/latex/__init__.py:159
-msgid "no \"latex_documents\" config value found; no documents will be written"
+#: ext/apidoc/_cli.py:113
+msgid "include \"_private\" modules"
msgstr ""
-#: builders/latex/__init__.py:170
-#, python-format
-msgid "\"latex_documents\" config value references unknown document %s"
+#: ext/apidoc/_cli.py:120
+msgid "filename of table of contents (default: modules)"
msgstr ""
-#: builders/latex/__init__.py:209 templates/latex/latex.tex.jinja:91
-msgid "Release"
-msgstr "Udgave"
-
-#: builders/latex/__init__.py:428
-msgid "copying TeX support files"
+#: ext/apidoc/_cli.py:127
+msgid "don't create a table of contents file"
msgstr ""
-#: builders/latex/__init__.py:465
-msgid "copying additional files"
+#: ext/apidoc/_cli.py:135
+msgid ""
+"don't create headings for the module/package packages (e.g. when the "
+"docstrings already contain them)"
msgstr ""
-#: builders/latex/__init__.py:536
-#, python-format
-msgid "Unknown configure key: latex_elements[%r], ignored."
+#: ext/apidoc/_cli.py:145
+msgid "put module documentation before submodule documentation"
msgstr ""
-#: builders/latex/__init__.py:544
-#, python-format
-msgid "Unknown theme option: latex_theme_options[%r], ignored."
+#: ext/apidoc/_cli.py:152
+msgid ""
+"interpret module paths according to PEP-0420 implicit namespaces "
+"specification"
msgstr ""
-#: builders/latex/transforms.py:120
-msgid "Failed to get a docname!"
+#: ext/apidoc/_cli.py:160
+msgid ""
+"Comma-separated list of options to pass to automodule directive (or use "
+"SPHINX_APIDOC_OPTIONS)."
msgstr ""
-#: builders/latex/transforms.py:121
-#, python-format
-msgid "Failed to get a docname for source %r!"
+#: ext/apidoc/_cli.py:170
+msgid "file suffix (default: rst)"
msgstr ""
-#: builders/latex/transforms.py:487
-#, python-format
-msgid "No footnote was found for given reference node %r"
+#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:950
+msgid "Remove existing files in the output directory that were not generated"
msgstr ""
-#: builders/latex/theming.py:88
-#, python-format
-msgid "%r doesn't have \"theme\" setting"
+#: ext/apidoc/_cli.py:186
+msgid "generate a full project with sphinx-quickstart"
msgstr ""
-#: builders/latex/theming.py:91
-#, python-format
-msgid "%r doesn't have \"%s\" setting"
+#: ext/apidoc/_cli.py:193
+msgid "append module_path to sys.path, used when --full is given"
msgstr ""
-#: templates/latex/longtable.tex.jinja:52
-#: templates/latex/sphinxmessages.sty.jinja:8
-msgid "continued from previous page"
-msgstr "fortsat fra forrige side"
-
-#: templates/latex/longtable.tex.jinja:63
-#: templates/latex/sphinxmessages.sty.jinja:9
-msgid "continues on next page"
-msgstr "fortsætter på næste side"
-
-#: templates/latex/sphinxmessages.sty.jinja:10
-msgid "Non-alphabetical"
+#: ext/apidoc/_cli.py:200
+msgid "project name (default: root module name)"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:12
-msgid "Numbers"
+#: ext/apidoc/_cli.py:207
+msgid "project author(s), used when --full is given"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:13
-msgid "page"
-msgstr "side"
+#: ext/apidoc/_cli.py:214
+msgid "project version, used when --full is given"
+msgstr ""
-#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:940
-msgid "Keyword Arguments"
-msgstr "Nøgleordsargumenter"
+#: ext/apidoc/_cli.py:222
+msgid "project release, used when --full is given, defaults to --doc-version"
+msgstr ""
-#: ext/napoleon/docstring.py:176
-#, python-format
-msgid "invalid value set (missing closing brace): %s"
+#: ext/apidoc/_cli.py:226
+msgid "extension options"
msgstr ""
-#: ext/napoleon/docstring.py:183
-#, python-format
-msgid "invalid value set (missing opening brace): %s"
+#: ext/apidoc/_cli.py:232
+msgid "enable arbitrary extensions, used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:190
+#: ext/apidoc/_cli.py:240
#, python-format
-msgid "malformed string literal (missing closing quote): %s"
+msgid "enable %s extension, used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:197
+#: ext/apidoc/_cli.py:291
#, python-format
-msgid "malformed string literal (missing opening quote): %s"
-msgstr ""
+msgid "%s is not a directory."
+msgstr "%s er ikke en mappe"
-#: ext/napoleon/docstring.py:895
-msgid "Example"
+#: ext/apidoc/_extension.py:50
+msgid "Running apidoc"
msgstr ""
-#: ext/napoleon/docstring.py:896
-msgid "Examples"
-msgstr "Eksempler"
-
-#: ext/napoleon/docstring.py:956
-msgid "Notes"
+#: ext/apidoc/_extension.py:102
+#, python-format
+msgid "apidoc_modules item %i must be a dict"
msgstr ""
-#: ext/napoleon/docstring.py:965
-msgid "Other Parameters"
-msgstr "Andre parametre"
-
-#: ext/napoleon/docstring.py:1001
-msgid "Receives"
+#: ext/apidoc/_extension.py:110
+#, python-format
+msgid "apidoc_modules item %i must have a 'path' key"
msgstr ""
-#: ext/napoleon/docstring.py:1005
-msgid "References"
-msgstr "Referencer"
-
-#: ext/napoleon/docstring.py:1037
-msgid "Warns"
+#: ext/apidoc/_extension.py:115
+#, python-format
+msgid "apidoc_modules item %i 'path' must be a string"
msgstr ""
-#: ext/napoleon/docstring.py:1041
-msgid "Yields"
+#: ext/apidoc/_extension.py:121
+#, python-format
+msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
msgstr ""
-#: ext/autosummary/__init__.py:284
+#: ext/apidoc/_extension.py:133
#, python-format
-msgid "autosummary references excluded document %r. Ignored."
+msgid "apidoc_modules item %i must have a 'destination' key"
msgstr ""
-#: ext/autosummary/__init__.py:288
+#: ext/apidoc/_extension.py:140
#, python-format
-msgid ""
-"autosummary: stub file not found %r. Check your autosummary_generate "
-"setting."
+msgid "apidoc_modules item %i 'destination' must be a string"
msgstr ""
-#: ext/autosummary/__init__.py:309
-msgid "A captioned autosummary requires :toctree: option. ignored."
+#: ext/apidoc/_extension.py:147
+#, python-format
+msgid "apidoc_modules item %i 'destination' should be a relative path"
msgstr ""
-#: ext/autosummary/__init__.py:384
+#: ext/apidoc/_extension.py:157
#, python-format
-msgid ""
-"autosummary: failed to import %s.\n"
-"Possible hints:\n"
-"%s"
+msgid "apidoc_modules item %i cannot create destination directory: %s"
msgstr ""
-#: ext/autosummary/__init__.py:404
+#: ext/apidoc/_extension.py:178
#, python-format
-msgid "failed to parse name %s"
+msgid "apidoc_modules item %i '%s' must be an int"
msgstr ""
-#: ext/autosummary/__init__.py:412
+#: ext/apidoc/_extension.py:192
#, python-format
-msgid "failed to import object %s"
+msgid "apidoc_modules item %i '%s' must be a boolean"
msgstr ""
-#: ext/autosummary/__init__.py:730
+#: ext/apidoc/_extension.py:210
#, python-format
-msgid ""
-"Summarised items should not include the current module. Replace %r with %r."
+msgid "apidoc_modules item %i has unexpected keys: %s"
msgstr ""
-#: ext/autosummary/__init__.py:927
+#: ext/apidoc/_extension.py:248
#, python-format
-msgid "autosummary_generate: file not found: %s"
+msgid "apidoc_modules item %i '%s' must be a sequence"
msgstr ""
-#: ext/autosummary/__init__.py:937
-msgid ""
-"autosummary generates .rst files internally. But your source_suffix does not"
-" contain .rst. Skipped."
+#: ext/apidoc/_extension.py:257
+#, python-format
+msgid "apidoc_modules item %i '%s' must contain strings"
msgstr ""
-#: ext/autosummary/generate.py:232 ext/autosummary/generate.py:450
+#: ext/autosummary/generate.py:212 ext/autosummary/generate.py:425
#, python-format
msgid ""
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
"%s"
msgstr ""
-#: ext/autosummary/generate.py:588
+#: ext/autosummary/generate.py:630
#, python-format
msgid "[autosummary] generating autosummary for: %s"
msgstr ""
-#: ext/autosummary/generate.py:592
+#: ext/autosummary/generate.py:634
#, python-format
msgid "[autosummary] writing to %s"
msgstr ""
-#: ext/autosummary/generate.py:637
+#: ext/autosummary/generate.py:679
#, python-format
msgid ""
"[autosummary] failed to import %s.\n"
@@ -3723,7 +3655,7 @@ msgid ""
"%s"
msgstr ""
-#: ext/autosummary/generate.py:836
+#: ext/autosummary/generate.py:877
msgid ""
"\n"
"Generate ReStructuredText using autosummary directives.\n"
@@ -3738,481 +3670,639 @@ msgid ""
" pydoc sphinx.ext.autosummary\n"
msgstr ""
-#: ext/autosummary/generate.py:858
+#: ext/autosummary/generate.py:899
msgid "source files to generate rST files for"
msgstr ""
-#: ext/autosummary/generate.py:866
+#: ext/autosummary/generate.py:907
msgid "directory to place all output in"
msgstr ""
-#: ext/autosummary/generate.py:874
+#: ext/autosummary/generate.py:915
#, python-format
msgid "default suffix for files (default: %(default)s)"
msgstr ""
-#: ext/autosummary/generate.py:882
+#: ext/autosummary/generate.py:923
#, python-format
msgid "custom template directory (default: %(default)s)"
msgstr ""
-#: ext/autosummary/generate.py:890
+#: ext/autosummary/generate.py:931
#, python-format
msgid "document imported members (default: %(default)s)"
msgstr ""
-#: ext/autosummary/generate.py:899
+#: ext/autosummary/generate.py:940
#, python-format
msgid ""
"document exactly the members in module __all__ attribute. (default: "
"%(default)s)"
msgstr ""
-#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:909
-msgid "Remove existing files in the output directory that were not generated"
+#: ext/autosummary/__init__.py:235
+#, python-format
+msgid "autosummary references excluded document %r. Ignored."
msgstr ""
-#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:944
+#: ext/autosummary/__init__.py:239
#, python-format
-msgid "Failed to remove %s: %s"
+msgid ""
+"autosummary: stub file not found %r. Check your autosummary_generate "
+"setting."
msgstr ""
-#: ext/apidoc/_cli.py:28
+#: ext/autosummary/__init__.py:260
+msgid "A captioned autosummary requires :toctree: option. ignored."
+msgstr ""
+
+#: ext/autosummary/__init__.py:329
+#, python-format
msgid ""
-"\n"
-"Look recursively in for Python modules and packages and create\n"
-"one reST file with automodule directives per package in the .\n"
-"\n"
-"The s can be file and/or directory patterns that will be\n"
-"excluded from generation.\n"
-"\n"
-"Note: By default this script will not overwrite already created files."
+"autosummary: failed to import %s.\n"
+"Possible hints:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:45
-msgid "path to module to document"
+#: ext/autosummary/__init__.py:358
+#, python-format
+msgid "failed to import object %s"
msgstr ""
-#: ext/apidoc/_cli.py:50
+#: ext/autosummary/__init__.py:652
+#, python-format
msgid ""
-"fnmatch-style file and/or directory patterns to exclude from generation"
+"Summarised items should not include the current module. Replace %r with %r."
msgstr ""
-#: ext/apidoc/_cli.py:60
-msgid "directory to place all output"
+#: ext/autosummary/__init__.py:850
+#, python-format
+msgid "autosummary_generate: file not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:75
-msgid "maximum depth of submodules to show in the TOC (default: 4)"
+#: ext/autosummary/__init__.py:860
+msgid ""
+"autosummary generates .rst files internally. But your source_suffix does not"
+" contain .rst. Skipped."
msgstr ""
-#: ext/apidoc/_cli.py:82
-msgid "overwrite existing files"
-msgstr "overskriv eksisterende filer"
+#: ext/intersphinx/_load.py:61
+#, python-format
+msgid ""
+"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
+"identifiers must be non-empty strings."
+msgstr ""
-#: ext/apidoc/_cli.py:91
+#: ext/intersphinx/_load.py:72
+#, python-format
msgid ""
-"follow symbolic links. Powerful when combined with "
-"collective.recipe.omelette."
+"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
+"or list."
msgstr ""
-#: ext/apidoc/_cli.py:99
-msgid "run the script without creating files"
+#: ext/intersphinx/_load.py:83
+#, python-format
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
+" inventory locations) pair."
msgstr ""
-#: ext/apidoc/_cli.py:106
-msgid "put documentation for each module on its own page"
+#: ext/intersphinx/_load.py:94
+#, python-format
+msgid ""
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique non-empty strings."
msgstr ""
-#: ext/apidoc/_cli.py:113
-msgid "include \"_private\" modules"
+#: ext/intersphinx/_load.py:103
+#, python-format
+msgid ""
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique (other instance in intersphinx_mapping[%r])."
msgstr ""
-#: ext/apidoc/_cli.py:120
-msgid "filename of table of contents (default: modules)"
+#: ext/intersphinx/_load.py:122
+#, python-format
+msgid ""
+"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
+"Inventory locations must be non-empty strings or None."
msgstr ""
-#: ext/apidoc/_cli.py:127
-msgid "don't create a table of contents file"
+#: ext/intersphinx/_load.py:132
+msgid "Invalid `intersphinx_mapping` configuration (1 error)."
msgstr ""
-#: ext/apidoc/_cli.py:135
-msgid ""
-"don't create headings for the module/package packages (e.g. when the "
-"docstrings already contain them)"
+#: ext/intersphinx/_load.py:135
+#, python-format
+msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
msgstr ""
-#: ext/apidoc/_cli.py:145
-msgid "put module documentation before submodule documentation"
+#: ext/intersphinx/_load.py:158
+msgid "An invalid intersphinx_mapping entry was added after normalisation."
msgstr ""
-#: ext/apidoc/_cli.py:152
+#: ext/intersphinx/_load.py:297
+#, python-format
+msgid "loading intersphinx inventory '%s' from %s ..."
+msgstr ""
+
+#: ext/intersphinx/_load.py:324
msgid ""
-"interpret module paths according to PEP-0420 implicit namespaces "
-"specification"
+"encountered some issues with some of the inventories, but they had working "
+"alternatives:"
msgstr ""
-#: ext/apidoc/_cli.py:160
+#: ext/intersphinx/_load.py:332
+#, python-format
msgid ""
-"Comma-separated list of options to pass to automodule directive (or use "
-"SPHINX_APIDOC_OPTIONS)."
+"failed to reach any of the inventories with the following issues:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:170
-msgid "file suffix (default: rst)"
+#: ext/intersphinx/_load.py:411
+#, python-format
+msgid "intersphinx inventory has moved: %s -> %s"
msgstr ""
-#: ext/apidoc/_cli.py:186
-msgid "generate a full project with sphinx-quickstart"
+#: ext/intersphinx/_resolve.py:53
+#, python-format
+msgid "(in %s %s)"
msgstr ""
-#: ext/apidoc/_cli.py:193
-msgid "append module_path to sys.path, used when --full is given"
+#: ext/intersphinx/_resolve.py:55
+#, python-format
+msgid "(in %s)"
msgstr ""
-#: ext/apidoc/_cli.py:200
-msgid "project name (default: root module name)"
+#: ext/intersphinx/_resolve.py:112
+#, python-format
+msgid "inventory '%s': duplicate matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:207
-msgid "project author(s), used when --full is given"
+#: ext/intersphinx/_resolve.py:122
+#, python-format
+msgid "inventory '%s': multiple matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:214
-msgid "project version, used when --full is given"
+#: ext/intersphinx/_resolve.py:387
+#, python-format
+msgid "inventory for external cross-reference not found: %r"
msgstr ""
-#: ext/apidoc/_cli.py:222
-msgid "project release, used when --full is given, defaults to --doc-version"
+#: ext/intersphinx/_resolve.py:396
+#, python-format
+msgid "invalid external cross-reference suffix: %r"
msgstr ""
-#: ext/apidoc/_cli.py:226
-msgid "extension options"
+#: ext/intersphinx/_resolve.py:407
+#, python-format
+msgid "domain for external cross-reference not found: %r"
msgstr ""
-#: ext/apidoc/_cli.py:232
-msgid "enable arbitrary extensions, used when --full is given"
+#: ext/intersphinx/_resolve.py:561
+#, python-format
+msgid "external %s:%s reference target not found: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_loader.py:144
+#: ext/autodoc/_legacy_class_based/_documenters.py:882
+#, python-format
+msgid "error while formatting signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_loader.py:193
+#, python-format
+msgid "Ignoring invalid __all__ in module %s: %r"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_loader.py:332 ext/autodoc/_dynamic/_signatures.py:496
+#: ext/autodoc/_dynamic/_signatures.py:612
+#: ext/autodoc/_legacy_class_based/_documenters.py:1284
+#: ext/autodoc/_legacy_class_based/_documenters.py:1372
+#: ext/autodoc/_legacy_class_based/_documenters.py:2906
+#, python-format
+msgid "Failed to get a function signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_type_comments.py:120
+#, python-format
+msgid "Failed to update signature for %r: parameter not found: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_type_comments.py:123
+#, python-format
+msgid "Failed to parse type_comment for %r: %s"
msgstr ""
-#: ext/apidoc/_cli.py:240
+#: ext/autodoc/_dynamic/_docstrings.py:268
+#: ext/autodoc/_legacy_class_based/_documenters.py:2499
#, python-format
-msgid "enable %s extension, used when --full is given"
+msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
-#: ext/apidoc/_cli.py:291
+#: ext/autodoc/_dynamic/_signatures.py:102
+#: ext/autodoc/_legacy_class_based/_documenters.py:358
#, python-format
-msgid "%s is not a directory."
-msgstr "%s er ikke en mappe"
-
-#: ext/apidoc/_extension.py:50
-msgid "Running apidoc"
+msgid "error while formatting arguments for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:102
+#: ext/autodoc/_dynamic/_signatures.py:494
+#: ext/autodoc/_legacy_class_based/_documenters.py:1607
#, python-format
-msgid "apidoc_modules item %i must be a dict"
+msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:110
+#: ext/autodoc/_dynamic/_signatures.py:498
+#: ext/autodoc/_legacy_class_based/_documenters.py:2235
+#: ext/autodoc/_legacy_class_based/_documenters.py:2355
#, python-format
-msgid "apidoc_modules item %i must have a 'path' key"
+msgid "Failed to get a method signature for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:115
+#: ext/autodoc/_dynamic/_signatures.py:500
#, python-format
-msgid "apidoc_modules item %i 'path' must be a string"
+msgid "Failed to get a signature for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:121
+#: ext/autodoc/_dynamic/_preserve_defaults.py:156
#, python-format
-msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
+msgid "Failed to parse a default argument value for %r: %s"
msgstr ""
-#: ext/apidoc/_extension.py:133
+#: ext/autodoc/_dynamic/_member_finder.py:420
#, python-format
-msgid "apidoc_modules item %i must have a 'destination' key"
+msgid ""
+"attribute %s is listed in :members: but is missing as it was not found in "
+"object %r"
msgstr ""
-#: ext/apidoc/_extension.py:140
+#: ext/autodoc/_dynamic/_member_finder.py:473
+#: ext/autodoc/_legacy_class_based/_documenters.py:677
#, python-format
-msgid "apidoc_modules item %i 'destination' must be a string"
+msgid ""
+"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_extension.py:147
+#: ext/autodoc/_legacy_class_based/_documenters.py:964
#, python-format
-msgid "apidoc_modules item %i 'destination' should be a relative path"
+msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
-#: ext/apidoc/_extension.py:157
+#: ext/autodoc/_legacy_class_based/_documenters.py:980
#, python-format
-msgid "apidoc_modules item %i cannot create destination directory: %s"
+msgid ""
+"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
+"__all__"
msgstr ""
-#: ext/apidoc/_extension.py:178
+#: ext/autodoc/_legacy_class_based/_documenters.py:1057
#, python-format
-msgid "apidoc_modules item %i '%s' must be an int"
+msgid ""
+"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
-#: ext/apidoc/_extension.py:192
+#: ext/autodoc/_legacy_class_based/_documenters.py:1764
#, python-format
-msgid "apidoc_modules item %i '%s' must be a boolean"
+msgid "missing attribute %s in object %s"
msgstr ""
-#: ext/apidoc/_extension.py:210
+#: ext/autodoc/_legacy_class_based/_documenters.py:1876
#, python-format
-msgid "apidoc_modules item %i has unexpected keys: %s"
+msgid "alias of TypeVar(%s)"
msgstr ""
-#: ext/apidoc/_extension.py:247
-#, python-format
-msgid "apidoc_modules item %i '%s' must be a sequence"
+#: builders/html/_build_info.py:32
+msgid "failed to read broken build info file (unknown version)"
msgstr ""
-#: ext/apidoc/_extension.py:256
-#, python-format
-msgid "apidoc_modules item %i '%s' must contain strings"
+#: builders/html/_build_info.py:36
+msgid "failed to read broken build info file (missing config entry)"
msgstr ""
-#: ext/apidoc/_generate.py:69
-#, python-format
-msgid "Would create file %s."
+#: builders/html/_build_info.py:39
+msgid "failed to read broken build info file (missing tags entry)"
msgstr ""
-#: ext/intersphinx/_resolve.py:49
+#: builders/html/__init__.py:114
#, python-format
-msgid "(in %s v%s)"
-msgstr "(i %s v%s)"
+msgid "The HTML pages are in %(outdir)s."
+msgstr "HTML-siderne er i %(outdir)s."
-#: ext/intersphinx/_resolve.py:51
+#: builders/html/__init__.py:337
#, python-format
-msgid "(in %s)"
+msgid "Failed to read build info file: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:108
-#, python-format
-msgid "inventory '%s': duplicate matches found for %s:%s"
+#: builders/html/__init__.py:353
+msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+msgstr ""
+
+#: builders/html/__init__.py:355
+msgid "building [html]: "
msgstr ""
-#: ext/intersphinx/_resolve.py:118
+#: builders/html/__init__.py:372
#, python-format
-msgid "inventory '%s': multiple matches found for %s:%s"
+msgid ""
+"template %s has been changed since the previous build, all docs will be "
+"rebuilt"
msgstr ""
-#: ext/intersphinx/_resolve.py:383
+#: builders/html/__init__.py:496
+msgid "index"
+msgstr "indeks"
+
+#: builders/html/__init__.py:549
#, python-format
-msgid "inventory for external cross-reference not found: %r"
+msgid "Logo of %s"
+msgstr ""
+
+#: builders/html/__init__.py:578
+msgid "next"
+msgstr "næste"
+
+#: builders/html/__init__.py:587
+msgid "previous"
+msgstr "forrige"
+
+#: builders/html/__init__.py:685
+msgid "generating indices"
msgstr ""
-#: ext/intersphinx/_resolve.py:392
+#: builders/html/__init__.py:700
+msgid "writing additional pages"
+msgstr ""
+
+#: builders/html/__init__.py:783
#, python-format
-msgid "invalid external cross-reference suffix: %r"
+msgid "cannot copy image file '%s': %s"
+msgstr ""
+
+#: builders/html/__init__.py:795
+msgid "copying downloadable files... "
msgstr ""
-#: ext/intersphinx/_resolve.py:403
+#: builders/html/__init__.py:807
#, python-format
-msgid "domain for external cross-reference not found: %r"
+msgid "cannot copy downloadable file %r: %s"
msgstr ""
-#: ext/intersphinx/_resolve.py:619
+#: builders/html/__init__.py:853
#, python-format
-msgid "external %s:%s reference target not found: %s"
+msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
msgstr ""
-#: ext/intersphinx/_load.py:60
+#: builders/html/__init__.py:871
#, python-format
-msgid ""
-"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
-"identifiers must be non-empty strings."
+msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr ""
-#: ext/intersphinx/_load.py:71
+#: builders/html/__init__.py:906
+msgid "copying static files"
+msgstr ""
+
+#: builders/html/__init__.py:923
#, python-format
-msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
-"or list."
+msgid "cannot copy static file %r"
+msgstr "kan ikke kopiere statisk fil %r"
+
+#: builders/html/__init__.py:928
+msgid "copying extra files"
msgstr ""
-#: ext/intersphinx/_load.py:82
+#: builders/html/__init__.py:938
#, python-format
-msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
-" inventory locations) pair."
+msgid "cannot copy extra file %r"
msgstr ""
-#: ext/intersphinx/_load.py:93
+#: builders/html/__init__.py:944
#, python-format
+msgid "Failed to write build info file: %r"
+msgstr ""
+
+#: builders/html/__init__.py:994
msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique non-empty strings."
+"search index couldn't be loaded, but not all documents will be built: the "
+"index will be incomplete."
msgstr ""
-#: ext/intersphinx/_load.py:102
+#: builders/html/__init__.py:1038
#, python-format
-msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique (other instance in intersphinx_mapping[%r])."
+msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr ""
-#: ext/intersphinx/_load.py:121
+#: builders/html/__init__.py:1204
#, python-format
msgid ""
-"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
-"Inventory locations must be non-empty strings or None."
+"a Unicode error occurred when rendering the page %s. Please make sure all "
+"config values that contain non-ASCII content are Unicode strings."
msgstr ""
-#: ext/intersphinx/_load.py:131
-msgid "Invalid `intersphinx_mapping` configuration (1 error)."
+#: builders/html/__init__.py:1217
+#, python-format
+msgid ""
+"The '%s' theme does not support this version of Sphinx, because it uses the "
+"'style' field in HTML templates, which was was deprecated in Sphinx 5.1 and"
+" removed in Sphinx 7.0. The theme must be updated to use the 'styles' field "
+"instead. See https://www.sphinx-"
+"doc.org/en/master/development/html_themes/templating.html#styles"
msgstr ""
-#: ext/intersphinx/_load.py:134
+#: builders/html/__init__.py:1225
#, python-format
-msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
+msgid ""
+"An error happened in rendering the page %s.\n"
+"Reason: %r"
msgstr ""
-#: ext/intersphinx/_load.py:157
-msgid "An invalid intersphinx_mapping entry was added after normalisation."
+#: builders/html/__init__.py:1258
+msgid "dumping object inventory"
msgstr ""
-#: ext/intersphinx/_load.py:261
+#: builders/html/__init__.py:1266
#, python-format
-msgid "loading intersphinx inventory '%s' from %s ..."
+msgid "dumping search index in %s"
msgstr ""
-#: ext/intersphinx/_load.py:287
-msgid ""
-"encountered some issues with some of the inventories, but they had working "
-"alternatives:"
+#: builders/html/__init__.py:1313
+#, python-format
+msgid "invalid js_file: %r, ignored"
+msgstr "udgyldig js_file: %r, ignoreret"
+
+#: builders/html/__init__.py:1347
+msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr ""
-#: ext/intersphinx/_load.py:297
-msgid "failed to reach any of the inventories with the following issues:"
+#: builders/html/__init__.py:1351
+#, python-format
+msgid "Unknown math_renderer %r is given."
msgstr ""
-#: ext/intersphinx/_load.py:361
+#: builders/html/__init__.py:1365
#, python-format
-msgid "intersphinx inventory has moved: %s -> %s"
+msgid "html_extra_path entry %r is placed inside outdir"
msgstr ""
-#: ext/autodoc/__init__.py:150
+#: builders/html/__init__.py:1370
#, python-format
-msgid "invalid value for member-order option: %s"
+msgid "html_extra_path entry %r does not exist"
msgstr ""
-#: ext/autodoc/__init__.py:158
+#: builders/html/__init__.py:1385
#, python-format
-msgid "invalid value for class-doc-from option: %s"
+msgid "html_static_path entry %r is placed inside outdir"
msgstr ""
-#: ext/autodoc/__init__.py:460
+#: builders/html/__init__.py:1390
#, python-format
-msgid "invalid signature for auto%s (%r)"
+msgid "html_static_path entry %r does not exist"
msgstr ""
-#: ext/autodoc/__init__.py:579
+#: builders/html/__init__.py:1401 builders/latex/__init__.py:497
#, python-format
-msgid "error while formatting arguments for %s: %s"
+msgid "logo file %r does not exist"
msgstr ""
-#: ext/autodoc/__init__.py:898
+#: builders/html/__init__.py:1412
+#, python-format
+msgid "favicon file %r does not exist"
+msgstr "favicon-filen %r findes ikke"
+
+#: builders/html/__init__.py:1425
#, python-format
msgid ""
-"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
-"%s"
+"Values in 'html_sidebars' must be a list of strings. At least one pattern "
+"has a string value: %s. Change to `html_sidebars = %r`."
msgstr ""
-#: ext/autodoc/__init__.py:1021
-#, python-format
+#: builders/html/__init__.py:1438
msgid ""
-"don't know which module to import for autodocumenting %r (try placing a "
-"\"module\" or \"currentmodule\" directive in the document, or giving an "
-"explicit module name)"
+"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
+"configuration options)"
msgstr ""
-#: ext/autodoc/__init__.py:1080
+#: builders/html/__init__.py:1454
#, python-format
-msgid "A mocked object is detected: %r"
+msgid "%s %s documentation"
+msgstr "%s %s dokumentation"
+
+#: builders/latex/theming.py:87
+#, python-format
+msgid "%r doesn't have \"theme\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:1103
+#: builders/latex/theming.py:90
#, python-format
-msgid "error while formatting signature for %s: %s"
+msgid "%r doesn't have \"%s\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:1177
-msgid "\"::\" in automodule name doesn't make sense"
+#: builders/latex/transforms.py:120
+msgid "Failed to get a docname!"
msgstr ""
-#: ext/autodoc/__init__.py:1185
+#: builders/latex/transforms.py:121
#, python-format
-msgid "signature arguments or return annotation given for automodule %s"
+msgid "Failed to get a docname for source %r!"
msgstr ""
-#: ext/autodoc/__init__.py:1201
+#: builders/latex/transforms.py:487
#, python-format
-msgid ""
-"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
-"__all__"
+msgid "No footnote was found for given reference node %r"
msgstr ""
-#: ext/autodoc/__init__.py:1278
+#: builders/latex/__init__.py:115
#, python-format
+msgid "The LaTeX files are in %(outdir)s."
+msgstr ""
+
+#: builders/latex/__init__.py:118
msgid ""
-"missing attribute mentioned in :members: option: module %s, attribute %s"
+"\n"
+"Run 'make' in that directory to run these through (pdf)latex\n"
+"(use `make latexpdf' here to do that automatically)."
msgstr ""
-#: ext/autodoc/__init__.py:1505 ext/autodoc/__init__.py:1593
-#: ext/autodoc/__init__.py:3127
+#: builders/latex/__init__.py:156
+msgid "no \"latex_documents\" config value found; no documents will be written"
+msgstr ""
+
+#: builders/latex/__init__.py:167
#, python-format
-msgid "Failed to get a function signature for %s: %s"
+msgid "\"latex_documents\" config value references unknown document %s"
+msgstr ""
+
+#: builders/latex/__init__.py:421
+msgid "copying TeX support files"
msgstr ""
-#: ext/autodoc/__init__.py:1828
+#: builders/latex/__init__.py:458
+msgid "copying additional files"
+msgstr ""
+
+#: builders/latex/__init__.py:529
#, python-format
-msgid "Failed to get a constructor signature for %s: %s"
+msgid "Unknown configure key: latex_elements[%r], ignored."
msgstr ""
-#: ext/autodoc/__init__.py:1966
+#: builders/latex/__init__.py:537
#, python-format
-msgid "Bases: %s"
+msgid "Unknown theme option: latex_theme_options[%r], ignored."
+msgstr ""
+
+#: environment/collectors/toctree.py:259
+#, python-format
+msgid "%s is already assigned section numbers (nested numbered toctree?)"
msgstr ""
-#: ext/autodoc/__init__.py:1985
+#: environment/collectors/asset.py:98
#, python-format
-msgid "missing attribute %s in object %s"
+msgid "image file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2081 ext/autodoc/__init__.py:2110
-#: ext/autodoc/__init__.py:2204
+#: environment/collectors/asset.py:126
#, python-format
-msgid "alias of %s"
+msgid "image file %s not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2097
+#: environment/collectors/asset.py:165
#, python-format
-msgid "alias of TypeVar(%s)"
+msgid "download file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2456 ext/autodoc/__init__.py:2576
+#: environment/adapters/toctree.py:335
#, python-format
-msgid "Failed to get a method signature for %s: %s"
+msgid "circular toctree references detected, ignoring: %s <- %s"
msgstr ""
-#: ext/autodoc/__init__.py:2720
+#: environment/adapters/toctree.py:360
#, python-format
-msgid "Invalid __slots__ found on %s. Ignored."
+msgid ""
+"toctree contains reference to document %r that doesn't have a title: no link"
+" will be generated"
msgstr ""
-#: ext/autodoc/preserve_defaults.py:195
+#: environment/adapters/toctree.py:375
#, python-format
-msgid "Failed to parse a default argument value for %r: %s"
+msgid "toctree contains reference to non-included document %r"
msgstr ""
-#: ext/autodoc/type_comment.py:151
+#: environment/adapters/toctree.py:378
#, python-format
-msgid "Failed to update signature for %r: parameter not found: %s"
+msgid "toctree contains reference to non-existing document %r"
msgstr ""
-#: ext/autodoc/type_comment.py:154
+#: environment/adapters/indexentries.py:122
#, python-format
-msgid "Failed to parse type_comment for %r: %s"
+msgid "see %s"
+msgstr "se %s"
+
+#: environment/adapters/indexentries.py:132
+#, python-format
+msgid "see also %s"
+msgstr "se også %s"
+
+#: environment/adapters/indexentries.py:140
+#, python-format
+msgid "unknown index entry type %r"
msgstr ""
diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo
index 71a0d4ab23b..667f0290e08 100644
Binary files a/sphinx/locale/de/LC_MESSAGES/sphinx.mo and b/sphinx/locale/de/LC_MESSAGES/sphinx.mo differ
diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po
index 65baa1a991f..9a63ceadffd 100644
--- a/sphinx/locale/de/LC_MESSAGES/sphinx.po
+++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2025-02-18 00:33+0000\n"
+"POT-Creation-Date: 2025-12-01 16:14+0000\n"
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
"Last-Translator: Jean-François B. , 2018\n"
"Language-Team: German (http://app.transifex.com/sphinx-doc/sphinx-1/language/de/)\n"
@@ -22,6 +22,127 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: roles.py:205
+#, python-format
+msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgstr ""
+
+#: roles.py:228
+#, python-format
+msgid "invalid CVE number %s"
+msgstr ""
+
+#: roles.py:250
+#, python-format
+msgid "Common Weakness Enumeration; CWE %s"
+msgstr ""
+
+#: roles.py:273
+#, python-format
+msgid "invalid CWE number %s"
+msgstr ""
+
+#: roles.py:293
+#, python-format
+msgid "Python Enhancement Proposals; PEP %s"
+msgstr "Python Enhancement Proposals; PEP %s"
+
+#: roles.py:316
+#, python-format
+msgid "invalid PEP number %s"
+msgstr ""
+
+#: roles.py:354
+#, python-format
+msgid "invalid RFC number %s"
+msgstr ""
+
+#: theming.py:117
+#, python-format
+msgid ""
+"Theme configuration sections other than [theme] and [options] are not "
+"supported (tried to get a value from %r)."
+msgstr ""
+
+#: theming.py:122
+#, python-format
+msgid "setting %s.%s occurs in none of the searched theme configs"
+msgstr ""
+
+#: theming.py:137
+#, python-format
+msgid "unsupported theme option %r given"
+msgstr ""
+
+#: theming.py:218
+#, python-format
+msgid "file %r on theme path is not a valid zipfile or contains no theme"
+msgstr ""
+
+#: theming.py:238
+#, python-format
+msgid "no theme named %r found (missing theme.toml?)"
+msgstr ""
+
+#: theming.py:278
+#, python-format
+msgid "The %r theme has circular inheritance"
+msgstr ""
+
+#: theming.py:286
+#, python-format
+msgid ""
+"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
+"are: %s"
+msgstr ""
+
+#: theming.py:292
+#, python-format
+msgid "The %r theme has too many ancestors"
+msgstr ""
+
+#: theming.py:320
+#, python-format
+msgid "no theme configuration file found in %r"
+msgstr ""
+
+#: theming.py:345 theming.py:398
+#, python-format
+msgid "theme %r doesn't have the \"theme\" table"
+msgstr ""
+
+#: theming.py:349
+#, python-format
+msgid "The %r theme \"[theme]\" table is not a table"
+msgstr ""
+
+#: theming.py:353 theming.py:401
+#, python-format
+msgid "The %r theme must define the \"theme.inherit\" setting"
+msgstr ""
+
+#: theming.py:357
+#, python-format
+msgid "The %r theme \"[options]\" table is not a table"
+msgstr ""
+
+#: theming.py:376
+#, python-format
+msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+msgstr ""
+
+#: project.py:72
+#, python-format
+msgid ""
+"multiple files found for the document \"%s\": %s\n"
+"Use %r for the build."
+msgstr ""
+
+#: project.py:87
+#, python-format
+msgid "Ignored unreadable document %r."
+msgstr ""
+
#: extension.py:58
#, python-format
msgid ""
@@ -36,127 +157,154 @@ msgid ""
"cannot be built with the loaded version (%s)."
msgstr ""
-#: application.py:212
+#: highlighting.py:170
+#, python-format
+msgid "Pygments lexer name %r is not known"
+msgstr "Pygments Lexer Name %r ist unbekannt"
+
+#: highlighting.py:209
+#, python-format
+msgid ""
+"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
+"Retrying in relaxed mode."
+msgstr ""
+
+#: events.py:92
+#, python-format
+msgid "Event %r already present"
+msgstr "Event %r bereits verfügbar"
+
+#: events.py:386
+#, python-format
+msgid "Unknown event name: %s"
+msgstr "Unbekannter Event name: %s"
+
+#: events.py:451
+#, python-format
+msgid "Handler %r for event %r threw an exception"
+msgstr ""
+
+#: application.py:218
#, python-format
msgid "Cannot find source directory (%s)"
msgstr "Kann Quellverzeichnis nicht finden (%s)"
-#: application.py:217
+#: application.py:223
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
-#: application.py:222
+#: application.py:228
msgid "Source directory and destination directory cannot be identical"
msgstr "Quellverzeichnis und Zielverzeichnis können nicht identisch sein"
-#: application.py:252
+#: application.py:258
#, python-format
msgid "Running Sphinx v%s"
msgstr "Sphinx v%s in Verwendung"
-#: application.py:278
+#: application.py:286
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr "Dieses Projekt benötigt Version %s oder später und kann daher nicht gebaut werden."
-#: application.py:297
+#: application.py:305
msgid "making output directory"
msgstr ""
-#: application.py:302 registry.py:538
+#: application.py:310 registry.py:540
#, python-format
msgid "while setting up extension %s:"
msgstr ""
-#: application.py:309
+#: application.py:317
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
-#: application.py:346
+#: application.py:360
#, python-format
msgid "loading translations [%s]... "
msgstr "Lade Übersetzungen [%s]…"
-#: application.py:370 util/display.py:89
+#: application.py:384 util/display.py:89
msgid "done"
msgstr "erledigt"
-#: application.py:372
+#: application.py:386
msgid "not available for built-in messages"
msgstr "nicht verfügbar für vordefinierte Nachrichten"
-#: application.py:386
+#: application.py:400
msgid "loading pickled environment"
msgstr ""
-#: application.py:394
+#: application.py:408
#, python-format
msgid "failed: %s"
msgstr "Fehlgeschlagen: %s"
-#: application.py:407
+#: application.py:423
msgid "No builder selected, using default: html"
msgstr "Kein builder ausgewählt, verwende 'html' per default"
-#: application.py:439
+#: application.py:455
msgid "build finished with problems."
msgstr ""
-#: application.py:441
+#: application.py:457
msgid "build succeeded."
msgstr ""
-#: application.py:446
+#: application.py:462
msgid ""
"build finished with problems, 1 warning (with warnings treated as errors)."
msgstr ""
-#: application.py:450
+#: application.py:466
msgid "build finished with problems, 1 warning."
msgstr ""
-#: application.py:452
+#: application.py:468
msgid "build succeeded, 1 warning."
msgstr ""
-#: application.py:458
+#: application.py:474
#, python-format
msgid ""
"build finished with problems, %s warnings (with warnings treated as errors)."
msgstr ""
-#: application.py:462
+#: application.py:478
#, python-format
msgid "build finished with problems, %s warnings."
msgstr ""
-#: application.py:464
+#: application.py:480
#, python-format
msgid "build succeeded, %s warnings."
msgstr ""
-#: application.py:1026
+#: application.py:1020
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
-#: application.py:1119
+#: application.py:1113
#, python-format
msgid "directive %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1145 application.py:1173
+#: application.py:1139 application.py:1167
#, python-format
msgid "role %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1770
+#: application.py:1766
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@@ -164,12 +312,12 @@ msgid ""
"explicit"
msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenlesen fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe"
-#: application.py:1775
+#: application.py:1771
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
-#: application.py:1779
+#: application.py:1775
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@@ -177,82 +325,214 @@ msgid ""
"explicit"
msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenschreiben fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe"
-#: application.py:1784
+#: application.py:1780
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
-#: application.py:1792 application.py:1796
+#: application.py:1788 application.py:1792
#, python-format
msgid "doing serial %s"
msgstr ""
-#: config.py:355
+#: registry.py:162
#, python-format
-msgid "config directory doesn't contain a conf.py file (%s)"
-msgstr "Konfigurationsverzeichnis enthält keine conf.py Datei (%s)"
+msgid "Builder class %s has no \"name\" attribute"
+msgstr ""
+
+#: registry.py:166
+#, python-format
+msgid "Builder %r already exists (in module %s)"
+msgstr ""
+
+#: registry.py:182
+#, python-format
+msgid "Builder name %s not registered or available through entry point"
+msgstr ""
+
+#: registry.py:192
+#, python-format
+msgid "Builder name %s not registered"
+msgstr ""
+
+#: registry.py:199
+#, python-format
+msgid "domain %s already registered"
+msgstr ""
+
+#: registry.py:223 registry.py:244 registry.py:257
+#, python-format
+msgid "domain %s not yet registered"
+msgstr ""
+
+#: registry.py:230
+#, python-format
+msgid "The %r directive is already registered to domain %s"
+msgstr ""
+
+#: registry.py:248
+#, python-format
+msgid "The %r role is already registered to domain %s"
+msgstr ""
+
+#: registry.py:261
+#, python-format
+msgid "The %r index is already registered to domain %s"
+msgstr ""
+
+#: registry.py:308
+#, python-format
+msgid "The %r object_type is already registered"
+msgstr ""
+
+#: registry.py:339
+#, python-format
+msgid "The %r crossref_type is already registered"
+msgstr ""
+
+#: registry.py:348
+#, python-format
+msgid "source_suffix %r is already registered"
+msgstr ""
+
+#: registry.py:358
+#, python-format
+msgid "source_parser for %r is already registered"
+msgstr ""
+
+#: registry.py:367
+#, python-format
+msgid "Source parser for %s not registered"
+msgstr ""
+
+#: registry.py:388
+#, python-format
+msgid "Translator for %r already exists"
+msgstr ""
+
+#: registry.py:405
+#, python-format
+msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
+msgstr ""
+
+#: registry.py:498
+#, python-format
+msgid "enumerable_node %r already registered"
+msgstr ""
+
+#: registry.py:514
+#, python-format
+msgid "math renderer %s is already registered"
+msgstr ""
-#: config.py:366
+#: registry.py:531
+#, python-format
msgid ""
-"Invalid configuration value found: 'language = None'. Update your "
-"configuration to a valid language code. Falling back to 'en' (English)."
+"the extension %r was already merged with Sphinx since version %s; this "
+"extension is ignored."
+msgstr ""
+
+#: registry.py:545
+msgid "Original exception:\n"
+msgstr "Ursprüngliche Ausnahme:\n"
+
+#: registry.py:547
+#, python-format
+msgid "Could not import extension %s"
+msgstr ""
+
+#: registry.py:554
+#, python-format
+msgid ""
+"extension %r has no setup() function; is it really a Sphinx extension "
+"module?"
+msgstr ""
+
+#: registry.py:567
+#, python-format
+msgid ""
+"The %s extension used by this project needs at least Sphinx v%s; it "
+"therefore cannot be built with this version."
+msgstr ""
+
+#: registry.py:579
+#, python-format
+msgid ""
+"extension %r returned an unsupported object from its setup() function; it "
+"should return None or a metadata dictionary"
+msgstr ""
+
+#: registry.py:605
+#, python-format
+msgid "`None` is not a valid filetype for %r."
msgstr ""
-#: config.py:394
+#: config.py:351
+#, python-format
+msgid "config directory doesn't contain a conf.py file (%s)"
+msgstr "Konfigurationsverzeichnis enthält keine conf.py Datei (%s)"
+
+#: config.py:374
#, python-format
msgid "'%s' must be '0' or '1', got '%s'"
msgstr ""
-#: config.py:399
+#: config.py:379
#, python-format
msgid ""
"cannot override dictionary config setting %r, ignoring (use %r to set "
"individual elements)"
msgstr ""
-#: config.py:411
+#: config.py:391
#, python-format
msgid "invalid number %r for config value %r, ignoring"
msgstr "Ungültige Nummer %r for Konfiguration %r, wird ignoriert"
-#: config.py:419
+#: config.py:399
#, python-format
msgid "cannot override config setting %r with unsupported type, ignoring"
msgstr ""
-#: config.py:442
+#: config.py:422
#, python-format
msgid "unknown config value %r in override, ignoring"
msgstr ""
-#: config.py:496
+#: config.py:476
#, python-format
msgid "No such config value: %r"
msgstr ""
-#: config.py:524
+#: config.py:504
#, python-format
msgid "Config value %r already present"
msgstr "Konfigurationswert %r bereits gesetzt"
-#: config.py:561
+#: config.py:541
#, python-format
msgid ""
"cannot cache unpickleable configuration value: %r (because it contains a "
"function, class, or module object)"
msgstr ""
-#: config.py:603
+#: config.py:577
+msgid ""
+"Invalid configuration value found: 'language = None'. Update your "
+"configuration to a valid language code. Falling back to 'en' (English)."
+msgstr ""
+
+#: config.py:599
#, python-format
msgid "There is a syntax error in your configuration file: %s\n"
msgstr ""
-#: config.py:607
+#: config.py:603
msgid ""
"The configuration file (or one of the modules it imports) called sys.exit()"
msgstr ""
-#: config.py:615
+#: config.py:611
#, python-format
msgid ""
"There is a programmable error in your configuration file:\n"
@@ -260,468 +540,624 @@ msgid ""
"%s"
msgstr ""
-#: config.py:637
+#: config.py:633
#, python-format
msgid "Failed to convert %r to a frozenset"
msgstr ""
-#: config.py:655 config.py:663
+#: config.py:651 config.py:659
#, python-format
msgid "Converting `source_suffix = %r` to `source_suffix = %r`."
msgstr ""
-#: config.py:669
+#: config.py:665
#, python-format
msgid ""
"The config value `source_suffix' expects a dictionary, a string, or a list "
"of strings. Got `%r' instead (type %s)."
msgstr ""
-#: config.py:690
+#: config.py:686
#, python-format
msgid "Section %s"
msgstr "Abschnitt %s"
-#: config.py:691
+#: config.py:687
#, python-format
msgid "Fig. %s"
msgstr "Abb. %s"
-#: config.py:692
+#: config.py:688
#, python-format
msgid "Table %s"
msgstr "Tab. %s"
-#: config.py:693
+#: config.py:689
#, python-format
msgid "Listing %s"
msgstr "Quellcode %s"
-#: config.py:802
+#: config.py:798
#, python-brace-format
msgid ""
"The config value `{name}` has to be a one of {candidates}, but `{current}` "
"is given."
msgstr ""
-#: config.py:833
+#: config.py:829
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}'; expected "
"{permitted}."
msgstr ""
-#: config.py:850
+#: config.py:846
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}', defaults to "
"`{default.__name__}'."
msgstr ""
-#: config.py:862
+#: config.py:858
#, python-format
msgid "primary_domain %r not found, ignored."
msgstr "primary_domain %r nicht gefunden, daher ignoriert."
-#: config.py:882
+#: config.py:878
msgid ""
"Sphinx now uses \"index\" as the master document by default. To keep pre-2.0"
" behaviour, set \"master_doc = 'contents'\"."
msgstr ""
-#: highlighting.py:170
-#, python-format
-msgid "Pygments lexer name %r is not known"
-msgstr "Pygments Lexer Name %r ist unbekannt"
+#: config.py:892
+msgid ""
+"Support for source encodings other than UTF-8 is deprecated and will be "
+"removed in Sphinx 10. Please comment at https://github.com/sphinx-"
+"doc/sphinx/issues/13665 if this causes a problem."
+msgstr ""
-#: highlighting.py:209
-#, python-format
-msgid ""
-"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
-"Retrying in relaxed mode."
+#: environment/__init__.py:89
+msgid "new config"
msgstr ""
-#: theming.py:115
-#, python-format
-msgid ""
-"Theme configuration sections other than [theme] and [options] are not "
-"supported (tried to get a value from %r)."
+#: environment/__init__.py:90
+msgid "config changed"
msgstr ""
-#: theming.py:120
-#, python-format
-msgid "setting %s.%s occurs in none of the searched theme configs"
+#: environment/__init__.py:91
+msgid "extensions changed"
msgstr ""
-#: theming.py:135
-#, python-format
-msgid "unsupported theme option %r given"
+#: environment/__init__.py:261
+msgid "build environment version not current"
msgstr ""
-#: theming.py:208
-#, python-format
-msgid "file %r on theme path is not a valid zipfile or contains no theme"
+#: environment/__init__.py:263
+msgid "source directory has changed"
msgstr ""
-#: theming.py:228
+#: environment/__init__.py:350
#, python-format
-msgid "no theme named %r found (missing theme.toml?)"
+msgid "The configuration has changed (1 option: %r)"
msgstr ""
-#: theming.py:268
+#: environment/__init__.py:355
#, python-format
-msgid "The %r theme has circular inheritance"
+msgid "The configuration has changed (%d options: %s)"
msgstr ""
-#: theming.py:276
+#: environment/__init__.py:361
#, python-format
-msgid ""
-"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
-"are: %s"
+msgid "The configuration has changed (%d options: %s, ...)"
msgstr ""
-#: theming.py:282
-#, python-format
-msgid "The %r theme has too many ancestors"
+#: environment/__init__.py:404
+msgid ""
+"This environment is incompatible with the selected builder, please choose "
+"another doctree directory."
msgstr ""
-#: theming.py:310
+#: environment/__init__.py:518
#, python-format
-msgid "no theme configuration file found in %r"
+msgid "Failed to scan documents in %s: %r"
msgstr ""
-#: theming.py:335 theming.py:388
+#: environment/__init__.py:645 ext/intersphinx/_resolve.py:238
#, python-format
-msgid "theme %r doesn't have the \"theme\" table"
+msgid "Domain %r is not registered"
msgstr ""
-#: theming.py:339
-#, python-format
-msgid "The %r theme \"[theme]\" table is not a table"
+#: environment/__init__.py:811
+msgid "document isn't included in any toctree"
msgstr ""
-#: theming.py:343 theming.py:391
-#, python-format
-msgid "The %r theme must define the \"theme.inherit\" setting"
+#: environment/__init__.py:922
+msgid "self referenced toctree found. Ignored."
msgstr ""
-#: theming.py:347
+#: environment/__init__.py:952
#, python-format
-msgid "The %r theme \"[options]\" table is not a table"
+msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
msgstr ""
-#: theming.py:366
-#, python-format
-msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
-msgstr ""
+#: locale/__init__.py:229
+msgid "Attention"
+msgstr "Achtung"
-#: events.py:77
-#, python-format
-msgid "Event %r already present"
-msgstr "Event %r bereits verfügbar"
+#: locale/__init__.py:230
+msgid "Caution"
+msgstr "Vorsicht"
-#: events.py:370
-#, python-format
-msgid "Unknown event name: %s"
-msgstr "Unbekannter Event name: %s"
+#: locale/__init__.py:231
+msgid "Danger"
+msgstr "Gefahr"
+
+#: locale/__init__.py:232
+msgid "Error"
+msgstr "Fehler"
+
+#: locale/__init__.py:233
+msgid "Hint"
+msgstr "Hinweis"
+
+#: locale/__init__.py:234
+msgid "Important"
+msgstr "Wichtig"
+
+#: locale/__init__.py:235
+msgid "Note"
+msgstr "Bemerkung"
+
+#: locale/__init__.py:236
+msgid "See also"
+msgstr "Siehe auch"
+
+#: locale/__init__.py:237
+msgid "Tip"
+msgstr "Tipp"
+
+#: locale/__init__.py:238
+msgid "Warning"
+msgstr "Warnung"
-#: events.py:416
+#: builders/texinfo.py:41
#, python-format
-msgid "Handler %r for event %r threw an exception"
+msgid "The Texinfo files are in %(outdir)s."
msgstr ""
-#: project.py:72
-#, python-format
+#: builders/texinfo.py:44
msgid ""
-"multiple files found for the document \"%s\": %s\n"
-"Use %r for the build."
+"\n"
+"Run 'make' in that directory to run these through makeinfo\n"
+"(use 'make info' here to do that automatically)."
msgstr ""
-#: project.py:87
-#, python-format
-msgid "Ignored unreadable document %r."
+#: builders/texinfo.py:73
+msgid "no \"texinfo_documents\" config value found; no documents will be written"
msgstr ""
-#: registry.py:167
+#: builders/texinfo.py:85
#, python-format
-msgid "Builder class %s has no \"name\" attribute"
+msgid "\"texinfo_documents\" config value references unknown document %s"
msgstr ""
-#: registry.py:171
+#: builders/latex/__init__.py:310 builders/texinfo.py:105
#, python-format
-msgid "Builder %r already exists (in module %s)"
+msgid "processing %s"
msgstr ""
-#: registry.py:187
-#, python-format
-msgid "Builder name %s not registered or available through entry point"
+#: builders/latex/__init__.py:332 builders/manpage.py:54
+#: builders/singlehtml.py:176 builders/texinfo.py:111
+msgid "writing"
msgstr ""
-#: registry.py:197
-#, python-format
-msgid "Builder name %s not registered"
+#: builders/latex/__init__.py:398 builders/texinfo.py:160
+msgid "resolving references..."
msgstr ""
-#: registry.py:204
-#, python-format
-msgid "domain %s already registered"
-msgstr ""
+#: builders/latex/__init__.py:409 builders/texinfo.py:170
+msgid " (in "
+msgstr " (in "
-#: registry.py:228 registry.py:249 registry.py:262
-#, python-format
-msgid "domain %s not yet registered"
+#: builders/_epub_base.py:425 builders/html/__init__.py:768
+#: builders/latex/__init__.py:474 builders/texinfo.py:186
+msgid "copying images... "
msgstr ""
-#: registry.py:235
+#: builders/_epub_base.py:447 builders/latex/__init__.py:489
+#: builders/texinfo.py:203
#, python-format
-msgid "The %r directive is already registered to domain %s"
+msgid "cannot copy image file %r: %s"
msgstr ""
-#: registry.py:253
-#, python-format
-msgid "The %r role is already registered to domain %s"
+#: builders/texinfo.py:210
+msgid "copying Texinfo support files"
msgstr ""
-#: registry.py:266
+#: builders/texinfo.py:218
#, python-format
-msgid "The %r index is already registered to domain %s"
+msgid "error writing file Makefile: %s"
msgstr ""
-#: registry.py:313
+#: builders/manpage.py:37
#, python-format
-msgid "The %r object_type is already registered"
+msgid "The manual pages are in %(outdir)s."
msgstr ""
-#: registry.py:344
-#, python-format
-msgid "The %r crossref_type is already registered"
+#: builders/manpage.py:45
+msgid "no \"man_pages\" config value found; no manual pages will be written"
msgstr ""
-#: registry.py:353
+#: builders/manpage.py:64
#, python-format
-msgid "source_suffix %r is already registered"
+msgid "\"man_pages\" config value references unknown document %s"
msgstr ""
-#: registry.py:363
+#: builders/singlehtml.py:35
#, python-format
-msgid "source_parser for %r is already registered"
+msgid "The HTML page is in %(outdir)s."
msgstr ""
-#: registry.py:372
-#, python-format
-msgid "Source parser for %s not registered"
+#: builders/singlehtml.py:171
+msgid "assembling single document"
msgstr ""
-#: registry.py:390
-#, python-format
-msgid "Translator for %r already exists"
+#: builders/singlehtml.py:189
+msgid "writing additional files"
msgstr ""
-#: registry.py:407
-#, python-format
-msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
+#: builders/dummy.py:19
+msgid "The dummy builder generates no files."
msgstr ""
-#: registry.py:496
+#: builders/gettext.py:243
#, python-format
-msgid "enumerable_node %r already registered"
+msgid "The message catalogs are in %(outdir)s."
msgstr ""
-#: registry.py:512
+#: builders/__init__.py:400 builders/gettext.py:264
#, python-format
-msgid "math renderer %s is already registered"
+msgid "building [%s]: "
msgstr ""
-#: registry.py:529
+#: builders/gettext.py:265
#, python-format
-msgid ""
-"the extension %r was already merged with Sphinx since version %s; this "
-"extension is ignored."
+msgid "targets for %d template files"
msgstr ""
-#: registry.py:543
-msgid "Original exception:\n"
-msgstr "Ursprüngliche Ausnahme:\n"
-
-#: registry.py:545
-#, python-format
-msgid "Could not import extension %s"
+#: builders/gettext.py:271
+msgid "reading templates... "
msgstr ""
-#: registry.py:552
-#, python-format
-msgid ""
-"extension %r has no setup() function; is it really a Sphinx extension "
-"module?"
+#: builders/gettext.py:310
+msgid "writing message catalogs... "
msgstr ""
-#: registry.py:565
+#: builders/linkcheck.py:87
#, python-format
-msgid ""
-"The %s extension used by this project needs at least Sphinx v%s; it "
-"therefore cannot be built with this version."
+msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
msgstr ""
-#: registry.py:577
+#: builders/linkcheck.py:159
#, python-format
-msgid ""
-"extension %r returned an unsupported object from its setup() function; it "
-"should return None or a metadata dictionary"
+msgid "broken link: %s (%s)"
msgstr ""
-#: registry.py:612
+#: builders/linkcheck.py:561
#, python-format
-msgid "`None` is not a valid filetype for %r."
+msgid "Anchor '%s' not found"
msgstr ""
-#: roles.py:206
-#, python-format
-msgid "Common Vulnerabilities and Exposures; CVE %s"
+#: builders/linkcheck.py:789
+msgid "linkcheck_allowed_redirects. Expected a dictionary."
msgstr ""
-#: roles.py:229
+#: builders/linkcheck.py:799
#, python-format
-msgid "invalid CVE number %s"
+msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
-#: roles.py:251
+#: builders/epub3.py:83
#, python-format
-msgid "Common Weakness Enumeration; CWE %s"
+msgid "The ePub file is in %(outdir)s."
msgstr ""
-#: roles.py:274
-#, python-format
-msgid "invalid CWE number %s"
+#: builders/epub3.py:188
+msgid "writing nav.xhtml file..."
msgstr ""
-#: roles.py:294
-#, python-format
-msgid "Python Enhancement Proposals; PEP %s"
-msgstr "Python Enhancement Proposals; PEP %s"
+#: builders/epub3.py:224
+msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
+msgstr ""
-#: roles.py:317
-#, python-format
-msgid "invalid PEP number %s"
+#: builders/epub3.py:230
+msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
msgstr ""
-#: roles.py:355
-#, python-format
-msgid "invalid RFC number %s"
+#: builders/epub3.py:235
+msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
msgstr ""
-#: ext/linkcode.py:86 ext/viewcode.py:226
-msgid "[source]"
-msgstr "[Quellcode]"
+#: builders/epub3.py:241
+msgid "conf value \"epub_author\" should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:289
-msgid "highlighting module code... "
+#: builders/epub3.py:245
+msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:320
-msgid "[docs]"
-msgstr "[Doku]"
+#: builders/epub3.py:250
+msgid "conf value \"epub_description\" should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:346
-msgid "Module code"
-msgstr "Modul-Quellcode"
+#: builders/epub3.py:254
+msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:353
-#, python-format
-msgid "Source code for %s
"
-msgstr "Quellcode für %s
"
+#: builders/epub3.py:259
+msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:380
-msgid "Overview: module code"
-msgstr "Überblick: Modul-Quellcode"
+#: builders/epub3.py:265
+msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+msgstr ""
-#: ext/viewcode.py:381
-msgid "All modules for which code is available
"
-msgstr "Alle Module, für die Quellcode verfügbar ist
"
+#: builders/epub3.py:268
+msgid "conf value \"version\" should not be empty for EPUB3"
+msgstr ""
-#: ext/extlinks.py:82
+#: builders/epub3.py:282 builders/html/__init__.py:1296
#, python-format
-msgid ""
-"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgid "invalid css_file: %r, ignored"
msgstr ""
-#: ext/autosectionlabel.py:52
+#: builders/xml.py:29
#, python-format
-msgid "section \"%s\" gets labeled as \"%s\""
+msgid "The XML files are in %(outdir)s."
msgstr ""
-#: domains/std/__init__.py:833 domains/std/__init__.py:960
-#: ext/autosectionlabel.py:61
+#: builders/html/__init__.py:1242 builders/text.py:71 builders/xml.py:81
#, python-format
-msgid "duplicate label %s, other instance in %s"
+msgid "error writing file %s: %s"
msgstr ""
-#: ext/imgmath.py:387 ext/mathjax.py:60
-msgid "Link to this equation"
+#: builders/xml.py:103
+#, python-format
+msgid "The pseudo-XML files are in %(outdir)s."
msgstr ""
-#: ext/duration.py:90
-msgid ""
-"====================== slowest reading durations ======================="
+#: builders/_epub_base.py:223
+#, python-format
+msgid "duplicated ToC entry found: %s"
msgstr ""
-#: ext/doctest.py:118
+#: builders/_epub_base.py:436
#, python-format
-msgid "missing '+' or '-' in '%s' option."
+msgid "cannot read image file %r: copying it instead"
msgstr ""
-#: ext/doctest.py:124
+#: builders/_epub_base.py:467
#, python-format
-msgid "'%s' is not a valid option."
+msgid "cannot write image file %r: %s"
msgstr ""
-#: ext/doctest.py:139
+#: builders/_epub_base.py:479
+msgid "Pillow not found - copying image files"
+msgstr ""
+
+#: builders/_epub_base.py:514
+msgid "writing mimetype file..."
+msgstr ""
+
+#: builders/_epub_base.py:523
+msgid "writing META-INF/container.xml file..."
+msgstr ""
+
+#: builders/_epub_base.py:561
+msgid "writing content.opf file..."
+msgstr ""
+
+#: builders/_epub_base.py:594
#, python-format
-msgid "'%s' is not a valid pyversion option"
+msgid "unknown mimetype for %s, ignoring"
msgstr ""
-#: ext/doctest.py:226
-msgid "invalid TestCode type"
+#: builders/_epub_base.py:749
+msgid "node has an invalid level"
msgstr ""
-#: ext/doctest.py:297
+#: builders/_epub_base.py:769
+msgid "writing toc.ncx file..."
+msgstr ""
+
+#: builders/_epub_base.py:802
+#, python-format
+msgid "writing %s file..."
+msgstr ""
+
+#: builders/text.py:27
+#, python-format
+msgid "The text files are in %(outdir)s."
+msgstr ""
+
+#: builders/__init__.py:229
+#, python-format
+msgid "a suitable image for %s builder not found: %s (%s)"
+msgstr ""
+
+#: builders/__init__.py:237
+#, python-format
+msgid "a suitable image for %s builder not found: %s"
+msgstr ""
+
+#: builders/__init__.py:260
+msgid "building [mo]: "
+msgstr ""
+
+#: builders/__init__.py:263 builders/__init__.py:771 builders/__init__.py:795
+msgid "writing output... "
+msgstr ""
+
+#: builders/__init__.py:280
+#, python-format
+msgid "all of %d po files"
+msgstr ""
+
+#: builders/__init__.py:302
+#, python-format
+msgid "targets for %d po files that are specified"
+msgstr ""
+
+#: builders/__init__.py:314
+#, python-format
+msgid "targets for %d po files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:324
+msgid "all source files"
+msgstr ""
+
+#: builders/__init__.py:335
+#, python-format
+msgid "file %r given on command line does not exist, "
+msgstr ""
+
+#: builders/__init__.py:342
#, python-format
msgid ""
-"Testing of doctests in the sources finished, look at the results in "
-"%(outdir)s/output.txt."
+"file %r given on command line is not under the source directory, ignoring"
msgstr ""
-#: ext/doctest.py:457
+#: builders/__init__.py:353
#, python-format
-msgid "no code/output in %s block at %s:%s"
+msgid "file %r given on command line is not a valid document, ignoring"
msgstr ""
-#: ext/doctest.py:568
+#: builders/__init__.py:366
#, python-format
-msgid "ignoring invalid doctest code: %r"
+msgid "%d source files given on command line"
+msgstr ""
+
+#: builders/__init__.py:382
+#, python-format
+msgid "targets for %d source files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:411
+msgid "looking for now-outdated files... "
+msgstr ""
+
+#: builders/__init__.py:415
+#, python-format
+msgid "%d found"
+msgstr ""
+
+#: builders/__init__.py:417
+msgid "none found"
+msgstr ""
+
+#: builders/__init__.py:424
+msgid "pickling environment"
+msgstr ""
+
+#: builders/__init__.py:431
+msgid "checking consistency"
+msgstr ""
+
+#: builders/__init__.py:435
+msgid "no targets are out of date."
+msgstr ""
+
+#: builders/__init__.py:474
+msgid "updating environment: "
+msgstr ""
+
+#: builders/__init__.py:499
+#, python-format
+msgid "%s added, %s changed, %s removed"
msgstr ""
-#: ext/imgmath.py:162
+#: builders/__init__.py:536
#, python-format
msgid ""
-"LaTeX command %r cannot be run (needed for math display), check the "
-"imgmath_latex setting"
+"Sphinx is unable to load the master document (%s) because it matches a "
+"built-in exclude pattern %r. Please move your master document to a different"
+" location."
msgstr ""
-#: ext/imgmath.py:181
+#: builders/__init__.py:545
#, python-format
msgid ""
-"%s command %r cannot be run (needed for math display), check the imgmath_%s "
-"setting"
+"Sphinx is unable to load the master document (%s) because it matches an "
+"exclude pattern specified in conf.py, %r. Please remove this pattern from "
+"conf.py."
msgstr ""
-#: ext/imgmath.py:344
+#: builders/__init__.py:556
#, python-format
-msgid "display latex %r: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s) because it is not included"
+" in the custom include_patterns = %r. Ensure that a pattern in "
+"include_patterns matches the master document."
msgstr ""
-#: ext/imgmath.py:380
+#: builders/__init__.py:563
#, python-format
-msgid "inline latex %r: %s"
+msgid ""
+"Sphinx is unable to load the master document (%s). The master document must "
+"be within the source directory or a subdirectory of it."
+msgstr ""
+
+#: builders/__init__.py:581 builders/__init__.py:598
+msgid "reading sources... "
+msgstr ""
+
+#: builders/__init__.py:725
+#, python-format
+msgid "docnames to write: %s"
+msgstr ""
+
+#: builders/__init__.py:727
+msgid "no docnames to write!"
+msgstr ""
+
+#: builders/__init__.py:740
+msgid "preparing documents"
+msgstr ""
+
+#: builders/__init__.py:743
+msgid "copying assets"
+msgstr ""
+
+#: builders/changes.py:29
+#, python-format
+msgid "The overview file is in %(outdir)s."
+msgstr ""
+
+#: builders/changes.py:65
+#, python-format
+msgid "no changes in version %s."
+msgstr ""
+
+#: builders/changes.py:67
+msgid "writing summary file..."
+msgstr ""
+
+#: builders/changes.py:79
+msgid "Builtins"
+msgstr "Builtins"
+
+#: builders/changes.py:81
+msgid "Module level"
+msgstr "Modulebene"
+
+#: builders/changes.py:137
+msgid "copying source files..."
+msgstr ""
+
+#: builders/changes.py:146
+#, python-format
+msgid "could not read %r for changelog creation"
msgstr ""
#: ext/coverage.py:48
@@ -742,9 +1178,10 @@ msgid ""
msgstr ""
#: ext/coverage.py:158
+#, python-format
msgid ""
"the following modules are specified in coverage_modules but were not "
-"documented"
+"documented: %s"
msgstr ""
#: ext/coverage.py:172
@@ -779,6 +1216,34 @@ msgstr ""
msgid "undocumented python method: %s :: %s :: %s"
msgstr ""
+#: ext/extlinks.py:82
+#, python-format
+msgid ""
+"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgstr ""
+
+#: ext/todo.py:61
+msgid "Todo"
+msgstr "Zu tun"
+
+#: ext/todo.py:94
+#, python-format
+msgid "TODO entry found: %s"
+msgstr ""
+
+#: ext/todo.py:152
+msgid "<>"
+msgstr "<>"
+
+#: ext/todo.py:154
+#, python-format
+msgid "(The <> is located in %s, line %d.)"
+msgstr "(Der <> steht in %s, Zeile %d.)"
+
+#: ext/todo.py:166
+msgid "original entry"
+msgstr "ursprüngliche Eintrag"
+
#: ext/imgconverter.py:44
#, python-format
msgid ""
@@ -866,1779 +1331,1514 @@ msgstr "[Diagramm: %s]"
msgid "[graph]"
msgstr "[Diagramm]"
-#: ext/todo.py:61
-msgid "Todo"
-msgstr "Zu tun"
-
-#: ext/todo.py:94
+#: ext/imgmath.py:148
#, python-format
-msgid "TODO entry found: %s"
+msgid ""
+"LaTeX command %r cannot be run (needed for math display), check the "
+"imgmath_latex setting"
msgstr ""
-#: ext/todo.py:152
-msgid "<>"
-msgstr "<>"
-
-#: ext/todo.py:154
+#: ext/imgmath.py:167
#, python-format
-msgid "(The <> is located in %s, line %d.)"
-msgstr "(Der <> steht in %s, Zeile %d.)"
-
-#: ext/todo.py:166
-msgid "original entry"
-msgstr "ursprüngliche Eintrag"
-
-#: directives/code.py:66
-msgid "non-whitespace stripped by dedent"
+msgid ""
+"%s command %r cannot be run (needed for math display), check the imgmath_%s "
+"setting"
msgstr ""
-#: directives/code.py:87
+#: ext/imgmath.py:326
#, python-format
-msgid "Invalid caption: %s"
+msgid "display latex %r: %s"
msgstr ""
-#: directives/code.py:131 directives/code.py:297 directives/code.py:483
+#: ext/imgmath.py:362
#, python-format
-msgid "line number spec is out of range(1-%d): %r"
+msgid "inline latex %r: %s"
msgstr ""
-#: directives/code.py:216
-#, python-format
-msgid "Cannot use both \"%s\" and \"%s\" options"
+#: ext/imgmath.py:369 ext/mathjax.py:60
+msgid "Link to this equation"
msgstr ""
-#: directives/code.py:231
+#: ext/doctest.py:118
#, python-format
-msgid "Include file '%s' not found or reading it failed"
+msgid "missing '+' or '-' in '%s' option."
msgstr ""
-#: directives/code.py:235
+#: ext/doctest.py:124
#, python-format
-msgid ""
-"Encoding %r used for reading included file '%s' seems to be wrong, try "
-"giving an :encoding: option"
+msgid "'%s' is not a valid option."
msgstr ""
-#: directives/code.py:276
+#: ext/doctest.py:139
#, python-format
-msgid "Object named %r not found in include file %r"
+msgid "'%s' is not a valid pyversion option"
msgstr ""
-#: directives/code.py:309
-msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
+#: ext/doctest.py:226
+msgid "invalid TestCode type"
msgstr ""
-#: directives/code.py:314
+#: ext/doctest.py:297
#, python-format
-msgid "Line spec %r: no lines pulled from include file %r"
-msgstr ""
-
-#: directives/patches.py:71
msgid ""
-"\":file:\" option for csv-table directive now recognizes an absolute path as"
-" a relative path from source directory. Please update your document."
+"Testing of doctests in the sources finished, look at the results in "
+"%(outdir)s/output.txt."
msgstr ""
-#: directives/other.py:119
+#: ext/doctest.py:451
#, python-format
-msgid "toctree glob pattern %r didn't match any documents"
+msgid "no code/output in %s block at %s:%s"
msgstr ""
-#: directives/other.py:153 environment/adapters/toctree.py:361
+#: ext/doctest.py:568
#, python-format
-msgid "toctree contains reference to excluded document %r"
+msgid "ignoring invalid doctest code: %r"
msgstr ""
-#: directives/other.py:156
+#: ext/autosectionlabel.py:52
#, python-format
-msgid "toctree contains reference to nonexisting document %r"
+msgid "section \"%s\" gets labeled as \"%s\""
msgstr ""
-#: directives/other.py:169
+#: domains/std/__init__.py:833 domains/std/__init__.py:960
+#: ext/autosectionlabel.py:61
#, python-format
-msgid "duplicated entry found in toctree: %s"
+msgid "duplicate label %s, other instance in %s"
msgstr ""
-#: directives/other.py:203
-msgid "Section author: "
-msgstr "Autor des Abschnitts: "
-
-#: directives/other.py:205
-msgid "Module author: "
-msgstr "Autor des Moduls: "
-
-#: directives/other.py:207
-msgid "Code author: "
-msgstr "Autor des Quellcode: "
-
-#: directives/other.py:209
-msgid "Author: "
-msgstr "Autor: "
-
-#: directives/other.py:269
-msgid ".. acks content is not a list"
+#: ext/duration.py:47
+#, python-format
+msgid "Reading duration %.3fs exceeded the duration limit %.3fs"
msgstr ""
-#: directives/other.py:292
-msgid ".. hlist content is not a list"
+#: ext/duration.py:117
+msgid ""
+"====================== total reading duration =========================="
msgstr ""
-#: builders/changes.py:29
+#: ext/duration.py:124
#, python-format
-msgid "The overview file is in %(outdir)s."
+msgid "Total time reading %d file%s: %dm %.3fs"
msgstr ""
-#: builders/changes.py:56
-#, python-format
-msgid "no changes in version %s."
+#: ext/duration.py:136
+msgid ""
+"====================== slowest reading durations ======================="
msgstr ""
-#: builders/changes.py:58
-msgid "writing summary file..."
+#: ext/duration.py:139
+#, python-format
+msgid "%.3fs %s"
msgstr ""
-#: builders/changes.py:70
-msgid "Builtins"
-msgstr "Builtins"
-
-#: builders/changes.py:72
-msgid "Module level"
-msgstr "Modulebene"
+#: ext/linkcode.py:86 ext/viewcode.py:232
+msgid "[source]"
+msgstr "[Quellcode]"
-#: builders/changes.py:124
-msgid "copying source files..."
+#: ext/viewcode.py:295
+msgid "highlighting module code... "
msgstr ""
-#: builders/changes.py:133
-#, python-format
-msgid "could not read %r for changelog creation"
-msgstr ""
+#: ext/viewcode.py:326
+msgid "[docs]"
+msgstr "[Doku]"
-#: builders/manpage.py:37
+#: ext/viewcode.py:352
+msgid "Module code"
+msgstr "Modul-Quellcode"
+
+#: ext/viewcode.py:359
#, python-format
-msgid "The manual pages are in %(outdir)s."
-msgstr ""
+msgid "Source code for %s
"
+msgstr "Quellcode für %s
"
-#: builders/manpage.py:45
-msgid "no \"man_pages\" config value found; no manual pages will be written"
-msgstr ""
+#: ext/viewcode.py:386
+msgid "Overview: module code"
+msgstr "Überblick: Modul-Quellcode"
-#: builders/latex/__init__.py:347 builders/manpage.py:54
-#: builders/singlehtml.py:176 builders/texinfo.py:119
-msgid "writing"
-msgstr ""
+#: ext/viewcode.py:387
+msgid "All modules for which code is available
"
+msgstr "Alle Module, für die Quellcode verfügbar ist
"
-#: builders/manpage.py:71
+#: domains/citation.py:75
#, python-format
-msgid "\"man_pages\" config value references unknown document %s"
+msgid "duplicate citation %s, other instance in %s"
msgstr ""
-#: builders/__init__.py:224
+#: domains/citation.py:92
#, python-format
-msgid "a suitable image for %s builder not found: %s (%s)"
+msgid "Citation [%s] is not referenced."
msgstr ""
-#: builders/__init__.py:232
+#: domains/math.py:73
#, python-format
-msgid "a suitable image for %s builder not found: %s"
-msgstr ""
-
-#: builders/__init__.py:255
-msgid "building [mo]: "
-msgstr ""
-
-#: builders/__init__.py:258 builders/__init__.py:759 builders/__init__.py:791
-msgid "writing output... "
+msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
-#: builders/__init__.py:275
+#: domains/math.py:130 writers/latex.py:2500
#, python-format
-msgid "all of %d po files"
+msgid "Invalid math_eqref_format: %r"
msgstr ""
-#: builders/__init__.py:297
+#: domains/javascript.py:183
#, python-format
-msgid "targets for %d po files that are specified"
-msgstr ""
+msgid "%s() (built-in function)"
+msgstr "%s() (Standard-Funktion)"
-#: builders/__init__.py:309
+#: domains/javascript.py:184 domains/python/__init__.py:279
#, python-format
-msgid "targets for %d po files that are out of date"
-msgstr ""
-
-#: builders/__init__.py:319
-msgid "all source files"
-msgstr ""
+msgid "%s() (%s method)"
+msgstr "%s() (Methode von %s)"
-#: builders/__init__.py:330
+#: domains/javascript.py:186
#, python-format
-msgid "file %r given on command line does not exist, "
-msgstr ""
+msgid "%s() (class)"
+msgstr "%s() (Klasse)"
-#: builders/__init__.py:337
+#: domains/javascript.py:188
#, python-format
-msgid ""
-"file %r given on command line is not under the source directory, ignoring"
-msgstr ""
+msgid "%s (global variable or constant)"
+msgstr "%s (globale Variable oder Konstante)"
-#: builders/__init__.py:348
+#: domains/javascript.py:190 domains/python/__init__.py:370
#, python-format
-msgid "file %r given on command line is not a valid document, ignoring"
-msgstr ""
+msgid "%s (%s attribute)"
+msgstr "%s (Attribut von %s)"
-#: builders/__init__.py:361
-#, python-format
-msgid "%d source files given on command line"
-msgstr ""
+#: domains/javascript.py:274
+msgid "Arguments"
+msgstr "Parameter"
-#: builders/__init__.py:377
-#, python-format
-msgid "targets for %d source files that are out of date"
-msgstr ""
+#: domains/cpp/__init__.py:491 domains/javascript.py:281
+msgid "Throws"
+msgstr "Wirft"
-#: builders/__init__.py:395 builders/gettext.py:265
-#, python-format
-msgid "building [%s]: "
-msgstr ""
+#: domains/c/__init__.py:367 domains/cpp/__init__.py:504
+#: domains/javascript.py:288 domains/python/_object.py:221
+msgid "Returns"
+msgstr "Rückgabe"
-#: builders/__init__.py:406
-msgid "looking for now-outdated files... "
-msgstr ""
+#: domains/c/__init__.py:373 domains/javascript.py:294
+#: domains/python/_object.py:227
+msgid "Return type"
+msgstr "Rückgabetyp"
-#: builders/__init__.py:410
+#: domains/javascript.py:374
#, python-format
-msgid "%d found"
-msgstr ""
+msgid "%s (module)"
+msgstr "%s (Modul)"
-#: builders/__init__.py:412
-msgid "none found"
-msgstr ""
+#: domains/c/__init__.py:779 domains/cpp/__init__.py:943
+#: domains/javascript.py:419 domains/python/__init__.py:726
+msgid "function"
+msgstr "Funktion"
-#: builders/__init__.py:419
-msgid "pickling environment"
-msgstr ""
+#: domains/javascript.py:420 domains/python/__init__.py:730
+msgid "method"
+msgstr "Methode"
-#: builders/__init__.py:426
-msgid "checking consistency"
-msgstr ""
+#: domains/cpp/__init__.py:941 domains/javascript.py:421
+#: domains/python/__init__.py:728
+msgid "class"
+msgstr "Klasse"
-#: builders/__init__.py:430
-msgid "no targets are out of date."
-msgstr ""
+#: domains/javascript.py:422 domains/python/__init__.py:727
+msgid "data"
+msgstr "Wert"
-#: builders/__init__.py:469
-msgid "updating environment: "
-msgstr ""
+#: domains/javascript.py:423 domains/python/__init__.py:733
+msgid "attribute"
+msgstr "Attribut"
-#: builders/__init__.py:494
-#, python-format
-msgid "%s added, %s changed, %s removed"
-msgstr ""
+#: domains/javascript.py:424 domains/python/__init__.py:736
+msgid "module"
+msgstr "Modul"
-#: builders/__init__.py:531
+#: domains/javascript.py:458
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches a "
-"built-in exclude pattern %r. Please move your master document to a different"
-" location."
+msgid "duplicate %s description of %s, other %s in %s"
msgstr ""
-#: builders/__init__.py:540
+#: domains/rst.py:131 domains/rst.py:190
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches an "
-"exclude pattern specified in conf.py, %r. Please remove this pattern from "
-"conf.py."
-msgstr ""
+msgid "%s (directive)"
+msgstr "%s (Direktive)"
-#: builders/__init__.py:551
+#: domains/rst.py:191 domains/rst.py:202
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it is not included"
-" in the custom include_patterns = %r. Ensure that a pattern in "
-"include_patterns matches the master document."
+msgid ":%s: (directive option)"
msgstr ""
-#: builders/__init__.py:558
+#: domains/rst.py:224
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s). The master document must "
-"be within the source directory or a subdirectory of it."
-msgstr ""
+msgid "%s (role)"
+msgstr "%s (Rolle)"
-#: builders/__init__.py:576 builders/__init__.py:592
-msgid "reading sources... "
+#: domains/rst.py:234
+msgid "directive"
+msgstr "Direktive"
+
+#: domains/rst.py:235
+msgid "directive-option"
msgstr ""
-#: builders/__init__.py:713
+#: domains/rst.py:236
+msgid "role"
+msgstr "Rolle"
+
+#: domains/rst.py:262
#, python-format
-msgid "docnames to write: %s"
+msgid "duplicate description of %s %s, other instance in %s"
msgstr ""
-#: builders/__init__.py:715
-msgid "no docnames to write!"
+#: domains/changeset.py:32
+#, python-format
+msgid "Added in version %s"
msgstr ""
-#: builders/__init__.py:728
-msgid "preparing documents"
-msgstr ""
+#: domains/changeset.py:33
+#, python-format
+msgid "Changed in version %s"
+msgstr "Geändert in Version %s"
-#: builders/__init__.py:731
-msgid "copying assets"
-msgstr ""
+#: domains/changeset.py:34
+#, python-format
+msgid "Deprecated since version %s"
+msgstr "Veraltet ab Version %s"
-#: builders/__init__.py:883
+#: domains/changeset.py:35
#, python-format
-msgid "undecodable source characters, replacing with \"?\": %r"
+msgid "Removed in version %s"
msgstr ""
-#: builders/epub3.py:84
+#: domains/__init__.py:322
#, python-format
-msgid "The ePub file is in %(outdir)s."
-msgstr ""
+msgid "%s %s"
+msgstr "%s-%s"
-#: builders/epub3.py:189
-msgid "writing nav.xhtml file..."
+#: cmd/build.py:64
+msgid "job number should be a positive number"
msgstr ""
-#: builders/epub3.py:221
-msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
+#: cmd/build.py:73 cmd/quickstart.py:582 ext/apidoc/_cli.py:27
+#: ext/autosummary/generate.py:876
+msgid "For more information, visit ."
msgstr ""
-#: builders/epub3.py:227
-msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
+#: cmd/build.py:74
+msgid ""
+"\n"
+"Generate documentation from source files.\n"
+"\n"
+"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
+"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
+"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
+"including 'conf.py'\n"
+"\n"
+"sphinx-build can create documentation in different formats. A format is\n"
+"selected by specifying the builder name on the command line; it defaults to\n"
+"HTML. Builders can also perform other tasks related to documentation\n"
+"processing.\n"
+"\n"
+"By default, everything that is outdated is built. Output only for selected\n"
+"files can be built by specifying individual filenames.\n"
msgstr ""
-#: builders/epub3.py:232
-msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
+#: cmd/build.py:100
+msgid "path to documentation source files"
msgstr ""
-#: builders/epub3.py:238
-msgid "conf value \"epub_author\" should not be empty for EPUB3"
+#: cmd/build.py:103
+msgid "path to output directory"
msgstr ""
-#: builders/epub3.py:242
-msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
+#: cmd/build.py:109
+msgid ""
+"(optional) a list of specific files to rebuild. Ignored if --write-all is "
+"specified"
msgstr ""
-#: builders/epub3.py:247
-msgid "conf value \"epub_description\" should not be empty for EPUB3"
+#: cmd/build.py:114
+msgid "general options"
msgstr ""
-#: builders/epub3.py:251
-msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+#: cmd/build.py:121
+msgid "builder to use (default: 'html')"
msgstr ""
-#: builders/epub3.py:256
-msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+#: cmd/build.py:131
+msgid ""
+"run in parallel with N processes, when possible. 'auto' uses the number of "
+"CPU cores"
msgstr ""
-#: builders/epub3.py:262
-msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+#: cmd/build.py:140
+msgid "write all files (default: only write new and changed files)"
msgstr ""
-#: builders/epub3.py:265
-msgid "conf value \"version\" should not be empty for EPUB3"
+#: cmd/build.py:147
+msgid "don't use a saved environment, always read all files"
msgstr ""
-#: builders/epub3.py:279 builders/html/__init__.py:1291
-#, python-format
-msgid "invalid css_file: %r, ignored"
+#: cmd/build.py:150
+msgid "path options"
msgstr ""
-#: builders/xml.py:31
-#, python-format
-msgid "The XML files are in %(outdir)s."
+#: cmd/build.py:157
+msgid ""
+"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
msgstr ""
-#: builders/html/__init__.py:1241 builders/text.py:76 builders/xml.py:90
-#, python-format
-msgid "error writing file %s: %s"
+#: cmd/build.py:166
+msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
msgstr ""
-#: builders/xml.py:101
-#, python-format
-msgid "The pseudo-XML files are in %(outdir)s."
+#: cmd/build.py:175
+msgid "use no configuration file, only use settings from -D options"
msgstr ""
-#: builders/texinfo.py:45
-#, python-format
-msgid "The Texinfo files are in %(outdir)s."
+#: cmd/build.py:184
+msgid "override a setting in configuration file"
msgstr ""
-#: builders/texinfo.py:48
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through makeinfo\n"
-"(use 'make info' here to do that automatically)."
+#: cmd/build.py:193
+msgid "pass a value into HTML templates"
msgstr ""
-#: builders/texinfo.py:77
-msgid "no \"texinfo_documents\" config value found; no documents will be written"
+#: cmd/build.py:202
+msgid "define tag: include \"only\" blocks with TAG"
msgstr ""
-#: builders/texinfo.py:89
-#, python-format
-msgid "\"texinfo_documents\" config value references unknown document %s"
+#: cmd/build.py:209
+msgid "nitpicky mode: warn about all missing references"
msgstr ""
-#: builders/latex/__init__.py:325 builders/texinfo.py:113
-#, python-format
-msgid "processing %s"
+#: cmd/build.py:212
+msgid "console output options"
msgstr ""
-#: builders/latex/__init__.py:405 builders/texinfo.py:172
-msgid "resolving references..."
+#: cmd/build.py:219
+msgid "increase verbosity (can be repeated)"
msgstr ""
-#: builders/latex/__init__.py:416 builders/texinfo.py:182
-msgid " (in "
-msgstr " (in "
-
-#: builders/_epub_base.py:422 builders/html/__init__.py:779
-#: builders/latex/__init__.py:481 builders/texinfo.py:198
-msgid "copying images... "
+#: cmd/build.py:226 ext/apidoc/_cli.py:66
+msgid "no output on stdout, just warnings on stderr"
msgstr ""
-#: builders/_epub_base.py:444 builders/latex/__init__.py:496
-#: builders/texinfo.py:215
-#, python-format
-msgid "cannot copy image file %r: %s"
+#: cmd/build.py:233
+msgid "no output at all, not even warnings"
msgstr ""
-#: builders/texinfo.py:222
-msgid "copying Texinfo support files"
+#: cmd/build.py:241
+msgid "do emit colored output (default: auto-detect)"
msgstr ""
-#: builders/texinfo.py:230
-#, python-format
-msgid "error writing file Makefile: %s"
+#: cmd/build.py:249
+msgid "do not emit colored output (default: auto-detect)"
msgstr ""
-#: builders/_epub_base.py:223
-#, python-format
-msgid "duplicated ToC entry found: %s"
+#: cmd/build.py:252
+msgid "warning control options"
msgstr ""
-#: builders/_epub_base.py:433
-#, python-format
-msgid "cannot read image file %r: copying it instead"
+#: cmd/build.py:258
+msgid "write warnings (and errors) to given file"
msgstr ""
-#: builders/_epub_base.py:464
-#, python-format
-msgid "cannot write image file %r: %s"
+#: cmd/build.py:265
+msgid "turn warnings into errors"
msgstr ""
-#: builders/_epub_base.py:476
-msgid "Pillow not found - copying image files"
+#: cmd/build.py:273
+msgid "show full traceback on exception"
msgstr ""
-#: builders/_epub_base.py:511
-msgid "writing mimetype file..."
+#: cmd/build.py:276
+msgid "run Pdb on exception"
msgstr ""
-#: builders/_epub_base.py:520
-msgid "writing META-INF/container.xml file..."
+#: cmd/build.py:282
+msgid "raise an exception on warnings"
msgstr ""
-#: builders/_epub_base.py:558
-msgid "writing content.opf file..."
+#: cmd/build.py:325
+msgid "cannot combine -a option and filenames"
msgstr ""
-#: builders/_epub_base.py:591
+#: cmd/build.py:357
#, python-format
-msgid "unknown mimetype for %s, ignoring"
+msgid "cannot open warning file '%s': %s"
msgstr ""
-#: builders/_epub_base.py:745
-msgid "node has an invalid level"
+#: cmd/build.py:376
+msgid "-D option argument must be in the form name=value"
msgstr ""
-#: builders/_epub_base.py:765
-msgid "writing toc.ncx file..."
+#: cmd/build.py:383
+msgid "-A option argument must be in the form name=value"
msgstr ""
-#: builders/_epub_base.py:794
-#, python-format
-msgid "writing %s file..."
+#: cmd/quickstart.py:52
+msgid "automatically insert docstrings from modules"
msgstr ""
-#: builders/dummy.py:19
-msgid "The dummy builder generates no files."
+#: cmd/quickstart.py:53
+msgid "automatically test code snippets in doctest blocks"
msgstr ""
-#: builders/gettext.py:244
-#, python-format
-msgid "The message catalogs are in %(outdir)s."
+#: cmd/quickstart.py:54
+msgid "link between Sphinx documentation of different projects"
msgstr ""
-#: builders/gettext.py:266
-#, python-format
-msgid "targets for %d template files"
+#: cmd/quickstart.py:55
+msgid "write \"todo\" entries that can be shown or hidden on build"
msgstr ""
-#: builders/gettext.py:271
-msgid "reading templates... "
+#: cmd/quickstart.py:56
+msgid "checks for documentation coverage"
msgstr ""
-#: builders/gettext.py:307
-msgid "writing message catalogs... "
+#: cmd/quickstart.py:57
+msgid "include math, rendered as PNG or SVG images"
msgstr ""
-#: builders/singlehtml.py:35
-#, python-format
-msgid "The HTML page is in %(outdir)s."
+#: cmd/quickstart.py:58
+msgid "include math, rendered in the browser by MathJax"
msgstr ""
-#: builders/singlehtml.py:171
-msgid "assembling single document"
+#: cmd/quickstart.py:59
+msgid "conditional inclusion of content based on config values"
msgstr ""
-#: builders/singlehtml.py:189
-msgid "writing additional files"
+#: cmd/quickstart.py:60
+msgid "include links to the source code of documented Python objects"
msgstr ""
-#: builders/linkcheck.py:77
-#, python-format
-msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
+#: cmd/quickstart.py:61
+msgid "create .nojekyll file to publish the document on GitHub pages"
msgstr ""
-#: builders/linkcheck.py:149
-#, python-format
-msgid "broken link: %s (%s)"
+#: cmd/quickstart.py:111
+msgid "Please enter a valid path name."
msgstr ""
-#: builders/linkcheck.py:548
-#, python-format
-msgid "Anchor '%s' not found"
+#: cmd/quickstart.py:127
+msgid "Please enter some text."
msgstr ""
-#: builders/linkcheck.py:758
+#: cmd/quickstart.py:134
#, python-format
-msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
+msgid "Please enter one of %s."
+msgstr ""
+
+#: cmd/quickstart.py:142
+msgid "Please enter either 'y' or 'n'."
+msgstr ""
+
+#: cmd/quickstart.py:148
+msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
msgstr ""
-#: builders/text.py:29
+#: cmd/quickstart.py:230
#, python-format
-msgid "The text files are in %(outdir)s."
+msgid "Welcome to the Sphinx %s quickstart utility."
msgstr ""
-#: transforms/i18n.py:227 transforms/i18n.py:302
-#, python-brace-format
+#: cmd/quickstart.py:235
msgid ""
-"inconsistent footnote references in translated message. original: {0}, "
-"translated: {1}"
+"Please enter values for the following settings (just press Enter to\n"
+"accept a default value, if one is given in brackets)."
msgstr ""
-#: transforms/i18n.py:272
-#, python-brace-format
-msgid ""
-"inconsistent references in translated message. original: {0}, translated: "
-"{1}"
+#: cmd/quickstart.py:242
+#, python-format
+msgid "Selected root path: %s"
msgstr ""
-#: transforms/i18n.py:322
-#, python-brace-format
-msgid ""
-"inconsistent citation references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:245
+msgid "Enter the root path for documentation."
msgstr ""
-#: transforms/i18n.py:344
-#, python-brace-format
-msgid ""
-"inconsistent term references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:246
+msgid "Root path for the documentation"
msgstr ""
-#: builders/html/__init__.py:486 builders/latex/__init__.py:199
-#: transforms/__init__.py:129 writers/manpage.py:98 writers/texinfo.py:220
-#, python-format
-msgid "%b %d, %Y"
-msgstr "%d.%m.%Y"
+#: cmd/quickstart.py:255
+msgid "Error: an existing conf.py has been found in the selected root path."
+msgstr ""
-#: transforms/__init__.py:139
-msgid "could not calculate translation progress!"
+#: cmd/quickstart.py:260
+msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
msgstr ""
-#: transforms/__init__.py:144
-msgid "no translated elements!"
+#: cmd/quickstart.py:263
+msgid "Please enter a new root path (or just Enter to exit)"
msgstr ""
-#: transforms/__init__.py:253
-#, python-format
+#: cmd/quickstart.py:274
msgid ""
-"4 column based index found. It might be a bug of extensions you use: %r"
+"You have two options for placing the build directory for Sphinx output.\n"
+"Either, you use a directory \"_build\" within the root path, or you separate\n"
+"\"source\" and \"build\" directories within the root path."
msgstr ""
-#: transforms/__init__.py:294
-#, python-format
-msgid "Footnote [%s] is not referenced."
+#: cmd/quickstart.py:280
+msgid "Separate source and build directories (y/n)"
msgstr ""
-#: transforms/__init__.py:303
-msgid "Footnote [*] is not referenced."
+#: cmd/quickstart.py:287
+msgid ""
+"Inside the root directory, two more directories will be created; \"_templates\"\n"
+"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
+"files. You can enter another prefix (such as \".\") to replace the underscore."
msgstr ""
-#: transforms/__init__.py:314
-msgid "Footnote [#] is not referenced."
+#: cmd/quickstart.py:292
+msgid "Name prefix for templates and static dir"
msgstr ""
-#: _cli/__init__.py:73
-msgid "Usage:"
+#: cmd/quickstart.py:298
+msgid ""
+"The project name will occur in several places in the built documentation."
msgstr ""
-#: _cli/__init__.py:75
-#, python-brace-format
-msgid "{0} [OPTIONS] []"
+#: cmd/quickstart.py:301
+msgid "Project name"
msgstr ""
-#: _cli/__init__.py:78
-msgid " The Sphinx documentation generator."
+#: cmd/quickstart.py:303
+msgid "Author name(s)"
msgstr ""
-#: _cli/__init__.py:87
-msgid "Commands:"
+#: cmd/quickstart.py:309
+msgid ""
+"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
+"software. Each version can have multiple releases. For example, for\n"
+"Python the version is something like 2.5 or 3.0, while the release is\n"
+"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
+"just set both to the same value."
msgstr ""
-#: _cli/__init__.py:98
-msgid "Options"
+#: cmd/quickstart.py:316
+msgid "Project version"
msgstr ""
-#: _cli/__init__.py:113 _cli/__init__.py:181
-msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
+#: cmd/quickstart.py:318
+msgid "Project release"
msgstr ""
-#: _cli/__init__.py:171
-#, python-brace-format
+#: cmd/quickstart.py:324
msgid ""
-"{0}: error: {1}\n"
-"Run '{0} --help' for information"
+"If the documents are to be written in a language other than English,\n"
+"you can select a language here by its language code. Sphinx will then\n"
+"translate text that it generates into that language.\n"
+"\n"
+"For a list of supported codes, see\n"
+"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
msgstr ""
-#: _cli/__init__.py:179
-msgid " Manage documentation with Sphinx."
+#: cmd/quickstart.py:332
+msgid "Project language"
msgstr ""
-#: _cli/__init__.py:191
-msgid "Show the version and exit."
+#: cmd/quickstart.py:340
+msgid ""
+"The file name suffix for source files. Commonly, this is either \".txt\"\n"
+"or \".rst\". Only files with this suffix are considered documents."
msgstr ""
-#: _cli/__init__.py:199
-msgid "Show this message and exit."
-msgstr ""
-
-#: _cli/__init__.py:203
-msgid "Logging"
-msgstr ""
-
-#: _cli/__init__.py:210
-msgid "Increase verbosity (can be repeated)"
-msgstr ""
-
-#: _cli/__init__.py:218
-msgid "Only print errors and warnings."
-msgstr ""
-
-#: _cli/__init__.py:225
-msgid "No output at all"
-msgstr ""
-
-#: _cli/__init__.py:231
-msgid ""
-msgstr ""
-
-#: _cli/__init__.py:263
-msgid "See 'sphinx --help'.\n"
-msgstr ""
-
-#: environment/__init__.py:86
-msgid "new config"
-msgstr ""
-
-#: environment/__init__.py:87
-msgid "config changed"
-msgstr ""
-
-#: environment/__init__.py:88
-msgid "extensions changed"
-msgstr ""
-
-#: environment/__init__.py:253
-msgid "build environment version not current"
-msgstr ""
-
-#: environment/__init__.py:255
-msgid "source directory has changed"
-msgstr ""
-
-#: environment/__init__.py:325
-#, python-format
-msgid "The configuration has changed (1 option: %r)"
-msgstr ""
-
-#: environment/__init__.py:330
-#, python-format
-msgid "The configuration has changed (%d options: %s)"
-msgstr ""
-
-#: environment/__init__.py:336
-#, python-format
-msgid "The configuration has changed (%d options: %s, ...)"
-msgstr ""
-
-#: environment/__init__.py:379
-msgid ""
-"This environment is incompatible with the selected builder, please choose "
-"another doctree directory."
-msgstr ""
-
-#: environment/__init__.py:493
-#, python-format
-msgid "Failed to scan documents in %s: %r"
-msgstr ""
-
-#: environment/__init__.py:658 ext/intersphinx/_resolve.py:234
-#, python-format
-msgid "Domain %r is not registered"
-msgstr ""
-
-#: environment/__init__.py:813
-msgid "document isn't included in any toctree"
-msgstr ""
-
-#: environment/__init__.py:859
-msgid "self referenced toctree found. Ignored."
-msgstr ""
-
-#: environment/__init__.py:889
-#, python-format
-msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
-msgstr ""
-
-#: util/i18n.py:100
-#, python-format
-msgid "reading error: %s, %s"
-msgstr ""
-
-#: util/i18n.py:113
-#, python-format
-msgid "writing error: %s, %s"
-msgstr ""
-
-#: util/i18n.py:146
-#, python-format
-msgid "locale_dir %s does not exist"
-msgstr ""
-
-#: util/i18n.py:236
-#, python-format
-msgid "Invalid Babel locale: %r."
+#: cmd/quickstart.py:344
+msgid "Source file suffix"
msgstr ""
-#: util/i18n.py:245
-#, python-format
+#: cmd/quickstart.py:350
msgid ""
-"Invalid date format. Quote the string by single quote if you want to output "
-"it directly: %s"
+"One document is special in that it is considered the top node of the\n"
+"\"contents tree\", that is, it is the root of the hierarchical structure\n"
+"of the documents. Normally, this is \"index\", but if your \"index\"\n"
+"document is a custom template, you can also set this to another filename."
msgstr ""
-#: util/docfields.py:103
-#, python-format
-msgid ""
-"Problem in %s domain: field is supposed to use role '%s', but that role is "
-"not in the domain."
+#: cmd/quickstart.py:357
+msgid "Name of your master document (without suffix)"
msgstr ""
-#: util/nodes.py:423
+#: cmd/quickstart.py:368
#, python-format
msgid ""
-"%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead."
-msgstr ""
-
-#: util/nodes.py:490
-#, python-format
-msgid "toctree contains ref to nonexisting file %r"
-msgstr ""
-
-#: util/nodes.py:706
-#, python-format
-msgid "exception while evaluating only directive expression: %s"
-msgstr ""
-
-#: util/display.py:82
-msgid "skipped"
+"Error: the master file %s has already been found in the selected root path."
msgstr ""
-#: util/display.py:87
-msgid "failed"
+#: cmd/quickstart.py:374
+msgid "sphinx-quickstart will not overwrite the existing file."
msgstr ""
-#: util/osutil.py:131
-#, python-format
+#: cmd/quickstart.py:378
msgid ""
-"Aborted attempted copy from %s to %s (the destination path has existing "
-"data)."
-msgstr ""
-
-#: util/docutils.py:309
-#, python-format
-msgid "unknown directive name: %s"
-msgstr ""
-
-#: util/docutils.py:345
-#, python-format
-msgid "unknown role name: %s"
+"Please enter a new file name, or rename the existing file and press Enter"
msgstr ""
-#: util/docutils.py:789
-#, python-format
-msgid "unknown node type: %r"
+#: cmd/quickstart.py:386
+msgid "Indicate which of the following Sphinx extensions should be enabled:"
msgstr ""
-#: util/fileutil.py:76
-#, python-format
+#: cmd/quickstart.py:397
msgid ""
-"Aborted attempted copy from rendered template %s to %s (the destination path"
-" has existing data)."
-msgstr ""
-
-#: util/fileutil.py:89
-#, python-format
-msgid "Writing evaluated template result to %s"
-msgstr ""
-
-#: util/rst.py:73
-#, python-format
-msgid "default role %s not found"
-msgstr ""
-
-#: util/inventory.py:147
-#, python-format
-msgid "inventory <%s> contains duplicate definitions of %s"
-msgstr ""
-
-#: util/inventory.py:166
-#, python-format
-msgid "inventory <%s> contains multiple definitions for %s"
+"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
+"been deselected."
msgstr ""
-#: writers/latex.py:1097 writers/manpage.py:259 writers/texinfo.py:663
-msgid "Footnotes"
-msgstr "Fußnoten"
-
-#: writers/manpage.py:289 writers/text.py:945
-#, python-format
-msgid "[image: %s]"
-msgstr "[Bild: %s]"
-
-#: writers/manpage.py:290 writers/text.py:946
-msgid "[image]"
-msgstr "[Bild]"
-
-#: builders/latex/__init__.py:206 domains/std/__init__.py:771
-#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:106
-#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
-#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
-#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
-#: themes/basic/genindex.html:59 themes/basic/layout.html:127
-#: writers/texinfo.py:514
-msgid "Index"
-msgstr "Stichwortverzeichnis"
-
-#: writers/latex.py:743 writers/texinfo.py:646
+#: cmd/quickstart.py:407
msgid ""
-"encountered title node not in section, topic, table, admonition or sidebar"
-msgstr ""
-
-#: writers/texinfo.py:1217
-msgid "caption not inside a figure."
+"A Makefile and a Windows command file can be generated for you so that you\n"
+"only have to run e.g. `make html' instead of invoking sphinx-build\n"
+"directly."
msgstr ""
-#: writers/texinfo.py:1303
-#, python-format
-msgid "unimplemented node type: %r"
+#: cmd/quickstart.py:412
+msgid "Create Makefile? (y/n)"
msgstr ""
-#: writers/latex.py:361
-#, python-format
-msgid "unknown %r toplevel_sectioning for class %r"
+#: cmd/quickstart.py:416
+msgid "Create Windows command file? (y/n)"
msgstr ""
-#: builders/latex/__init__.py:224 writers/latex.py:411
+#: cmd/quickstart.py:468 ext/apidoc/_generate.py:76
#, python-format
-msgid "no Babel option known for language %r"
-msgstr ""
-
-#: writers/latex.py:429
-msgid "too large :maxdepth:, ignored."
+msgid "Creating file %s."
msgstr ""
-#: writers/latex.py:591
+#: cmd/quickstart.py:473 ext/apidoc/_generate.py:73
#, python-format
-msgid "template %s not found; loading from legacy %s instead"
+msgid "File %s already exists, skipping."
msgstr ""
-#: writers/latex.py:707
-msgid "document title is not a single Text node"
+#: cmd/quickstart.py:516
+msgid "Finished: An initial directory structure has been created."
msgstr ""
-#: writers/html5.py:572 writers/latex.py:1106
+#: cmd/quickstart.py:520
#, python-format
-msgid "unsupported rubric heading level: %s"
-msgstr ""
-
-#: writers/latex.py:1183
msgid ""
-"both tabularcolumns and :widths: option are given. :widths: is ignored."
-msgstr ""
-
-#: writers/latex.py:1580
-#, python-format
-msgid "dimension unit %s is invalid. Ignored."
-msgstr ""
-
-#: writers/latex.py:1939
-#, python-format
-msgid "unknown index entry type %s found"
-msgstr ""
-
-#: domains/math.py:128 writers/latex.py:2495
-#, python-format
-msgid "Invalid math_eqref_format: %r"
-msgstr ""
-
-#: writers/html5.py:96 writers/html5.py:105
-msgid "Link to this definition"
-msgstr ""
-
-#: writers/html5.py:431
-#, python-format
-msgid "numfig_format is not defined for %s"
-msgstr ""
-
-#: writers/html5.py:441
-#, python-format
-msgid "Any IDs not assigned for %s node"
-msgstr ""
-
-#: writers/html5.py:496
-msgid "Link to this term"
-msgstr ""
-
-#: writers/html5.py:548 writers/html5.py:553
-msgid "Link to this heading"
-msgstr ""
-
-#: writers/html5.py:558
-msgid "Link to this table"
-msgstr ""
-
-#: writers/html5.py:636
-msgid "Link to this code"
-msgstr ""
-
-#: writers/html5.py:638
-msgid "Link to this image"
-msgstr ""
-
-#: writers/html5.py:640
-msgid "Link to this toctree"
+"You should now populate your master file %s and create other documentation\n"
+"source files. "
msgstr ""
-#: writers/html5.py:766
-msgid "Could not obtain image size. :scale: option is ignored."
+#: cmd/quickstart.py:527
+msgid ""
+"Use the Makefile to build the docs, like so:\n"
+" make builder"
msgstr ""
-#: domains/__init__.py:322
-#, python-format
-msgid "%s %s"
-msgstr "%s-%s"
-
-#: domains/math.py:73
+#: cmd/quickstart.py:531
#, python-format
-msgid "duplicate label of equation %s, other instance in %s"
+msgid ""
+"Use the sphinx-build command to build the docs, like so:\n"
+" sphinx-build -b builder %s %s"
msgstr ""
-#: domains/javascript.py:182
-#, python-format
-msgid "%s() (built-in function)"
-msgstr "%s() (Standard-Funktion)"
-
-#: domains/javascript.py:183 domains/python/__init__.py:287
-#, python-format
-msgid "%s() (%s method)"
-msgstr "%s() (Methode von %s)"
-
-#: domains/javascript.py:185
-#, python-format
-msgid "%s() (class)"
-msgstr "%s() (Klasse)"
-
-#: domains/javascript.py:187
-#, python-format
-msgid "%s (global variable or constant)"
-msgstr "%s (globale Variable oder Konstante)"
-
-#: domains/javascript.py:189 domains/python/__init__.py:378
-#, python-format
-msgid "%s (%s attribute)"
-msgstr "%s (Attribut von %s)"
-
-#: domains/javascript.py:273
-msgid "Arguments"
-msgstr "Parameter"
-
-#: domains/cpp/__init__.py:489 domains/javascript.py:280
-msgid "Throws"
-msgstr "Wirft"
-
-#: domains/c/__init__.py:339 domains/cpp/__init__.py:502
-#: domains/javascript.py:287 domains/python/_object.py:221
-msgid "Returns"
-msgstr "Rückgabe"
-
-#: domains/c/__init__.py:345 domains/javascript.py:293
-#: domains/python/_object.py:227
-msgid "Return type"
-msgstr "Rückgabetyp"
-
-#: domains/javascript.py:370
-#, python-format
-msgid "%s (module)"
-msgstr "%s (Modul)"
-
-#: domains/c/__init__.py:751 domains/cpp/__init__.py:941
-#: domains/javascript.py:415 domains/python/__init__.py:740
-msgid "function"
-msgstr "Funktion"
-
-#: domains/javascript.py:416 domains/python/__init__.py:744
-msgid "method"
-msgstr "Methode"
-
-#: domains/cpp/__init__.py:939 domains/javascript.py:417
-#: domains/python/__init__.py:742
-msgid "class"
-msgstr "Klasse"
-
-#: domains/javascript.py:418 domains/python/__init__.py:741
-msgid "data"
-msgstr "Wert"
-
-#: domains/javascript.py:419 domains/python/__init__.py:747
-msgid "attribute"
-msgstr "Attribut"
-
-#: domains/javascript.py:420 domains/python/__init__.py:750
-msgid "module"
-msgstr "Modul"
-
-#: domains/javascript.py:454
-#, python-format
-msgid "duplicate %s description of %s, other %s in %s"
+#: cmd/quickstart.py:538
+msgid ""
+"where \"builder\" is one of the supported builders, e.g. html, latex or "
+"linkcheck."
msgstr ""
-#: domains/changeset.py:26
-#, python-format
-msgid "Added in version %s"
+#: cmd/quickstart.py:573
+msgid ""
+"\n"
+"Generate required files for a Sphinx project.\n"
+"\n"
+"sphinx-quickstart is an interactive tool that asks some questions about your\n"
+"project and then generates a complete documentation directory and sample\n"
+"Makefile to be used with sphinx-build.\n"
msgstr ""
-#: domains/changeset.py:27
-#, python-format
-msgid "Changed in version %s"
-msgstr "Geändert in Version %s"
-
-#: domains/changeset.py:28
-#, python-format
-msgid "Deprecated since version %s"
-msgstr "Veraltet ab Version %s"
-
-#: domains/changeset.py:29
-#, python-format
-msgid "Removed in version %s"
+#: cmd/quickstart.py:592
+msgid "quiet mode"
msgstr ""
-#: domains/rst.py:131 domains/rst.py:190
-#, python-format
-msgid "%s (directive)"
-msgstr "%s (Direktive)"
-
-#: domains/rst.py:191 domains/rst.py:202
-#, python-format
-msgid ":%s: (directive option)"
+#: cmd/quickstart.py:602
+msgid "project root"
msgstr ""
-#: domains/rst.py:224
-#, python-format
-msgid "%s (role)"
-msgstr "%s (Rolle)"
-
-#: domains/rst.py:234
-msgid "directive"
-msgstr "Direktive"
-
-#: domains/rst.py:235
-msgid "directive-option"
+#: cmd/quickstart.py:605
+msgid "Structure options"
msgstr ""
-#: domains/rst.py:236
-msgid "role"
-msgstr "Rolle"
-
-#: domains/rst.py:262
-#, python-format
-msgid "duplicate description of %s %s, other instance in %s"
+#: cmd/quickstart.py:611
+msgid "if specified, separate source and build dirs"
msgstr ""
-#: domains/citation.py:75
-#, python-format
-msgid "duplicate citation %s, other instance in %s"
+#: cmd/quickstart.py:617
+msgid "if specified, create build dir under source dir"
msgstr ""
-#: domains/citation.py:92
-#, python-format
-msgid "Citation [%s] is not referenced."
+#: cmd/quickstart.py:623
+msgid "replacement for dot in _templates etc."
msgstr ""
-#: locale/__init__.py:228
-msgid "Attention"
-msgstr "Achtung"
-
-#: locale/__init__.py:229
-msgid "Caution"
-msgstr "Vorsicht"
-
-#: locale/__init__.py:230
-msgid "Danger"
-msgstr "Gefahr"
-
-#: locale/__init__.py:231
-msgid "Error"
-msgstr "Fehler"
-
-#: locale/__init__.py:232
-msgid "Hint"
-msgstr "Hinweis"
+#: cmd/quickstart.py:626
+msgid "Project basic options"
+msgstr ""
-#: locale/__init__.py:233
-msgid "Important"
-msgstr "Wichtig"
+#: cmd/quickstart.py:628
+msgid "project name"
+msgstr ""
-#: locale/__init__.py:234
-msgid "Note"
-msgstr "Bemerkung"
+#: cmd/quickstart.py:631
+msgid "author names"
+msgstr ""
-#: locale/__init__.py:235
-msgid "See also"
-msgstr "Siehe auch"
+#: cmd/quickstart.py:638
+msgid "version of project"
+msgstr ""
-#: locale/__init__.py:236
-msgid "Tip"
-msgstr "Tipp"
+#: cmd/quickstart.py:645
+msgid "release of project"
+msgstr ""
-#: locale/__init__.py:237
-msgid "Warning"
-msgstr "Warnung"
+#: cmd/quickstart.py:652
+msgid "document language"
+msgstr ""
-#: cmd/quickstart.py:52
-msgid "automatically insert docstrings from modules"
+#: cmd/quickstart.py:655
+msgid "source file suffix"
msgstr ""
-#: cmd/quickstart.py:53
-msgid "automatically test code snippets in doctest blocks"
+#: cmd/quickstart.py:658
+msgid "master document name"
msgstr ""
-#: cmd/quickstart.py:54
-msgid "link between Sphinx documentation of different projects"
+#: cmd/quickstart.py:661
+msgid "use epub"
msgstr ""
-#: cmd/quickstart.py:55
-msgid "write \"todo\" entries that can be shown or hidden on build"
+#: cmd/quickstart.py:664
+msgid "Extension options"
msgstr ""
-#: cmd/quickstart.py:56
-msgid "checks for documentation coverage"
+#: cmd/quickstart.py:671
+#, python-format
+msgid "enable %s extension"
msgstr ""
-#: cmd/quickstart.py:57
-msgid "include math, rendered as PNG or SVG images"
+#: cmd/quickstart.py:678
+msgid "enable arbitrary extensions"
msgstr ""
-#: cmd/quickstart.py:58
-msgid "include math, rendered in the browser by MathJax"
+#: cmd/quickstart.py:681
+msgid "Makefile and Batchfile creation"
msgstr ""
-#: cmd/quickstart.py:59
-msgid "conditional inclusion of content based on config values"
+#: cmd/quickstart.py:687
+msgid "create makefile"
msgstr ""
-#: cmd/quickstart.py:60
-msgid "include links to the source code of documented Python objects"
+#: cmd/quickstart.py:693
+msgid "do not create makefile"
msgstr ""
-#: cmd/quickstart.py:61
-msgid "create .nojekyll file to publish the document on GitHub pages"
+#: cmd/quickstart.py:700
+msgid "create batchfile"
msgstr ""
-#: cmd/quickstart.py:110
-msgid "Please enter a valid path name."
+#: cmd/quickstart.py:706
+msgid "do not create batchfile"
msgstr ""
-#: cmd/quickstart.py:126
-msgid "Please enter some text."
+#: cmd/quickstart.py:715
+msgid "use make-mode for Makefile/make.bat"
msgstr ""
-#: cmd/quickstart.py:133
-#, python-format
-msgid "Please enter one of %s."
+#: cmd/quickstart.py:718 ext/apidoc/_cli.py:243
+msgid "Project templating"
msgstr ""
-#: cmd/quickstart.py:141
-msgid "Please enter either 'y' or 'n'."
+#: cmd/quickstart.py:724 ext/apidoc/_cli.py:249
+msgid "template directory for template files"
msgstr ""
-#: cmd/quickstart.py:147
-msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
+#: cmd/quickstart.py:731
+msgid "define a template variable"
msgstr ""
-#: cmd/quickstart.py:229
-#, python-format
-msgid "Welcome to the Sphinx %s quickstart utility."
+#: cmd/quickstart.py:767
+msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
msgstr ""
-#: cmd/quickstart.py:234
+#: cmd/quickstart.py:786
msgid ""
-"Please enter values for the following settings (just press Enter to\n"
-"accept a default value, if one is given in brackets)."
+"Error: specified path is not a directory, or sphinx files already exist."
msgstr ""
-#: cmd/quickstart.py:241
-#, python-format
-msgid "Selected root path: %s"
+#: cmd/quickstart.py:793
+msgid ""
+"sphinx-quickstart only generate into a empty directory. Please specify a new"
+" root path."
msgstr ""
-#: cmd/quickstart.py:244
-msgid "Enter the root path for documentation."
+#: cmd/quickstart.py:810
+#, python-format
+msgid "Invalid template variable: %s"
msgstr ""
-#: cmd/quickstart.py:245
-msgid "Root path for the documentation"
+#: directives/other.py:119
+#, python-format
+msgid "toctree glob pattern %r didn't match any documents"
msgstr ""
-#: cmd/quickstart.py:254
-msgid "Error: an existing conf.py has been found in the selected root path."
+#: directives/other.py:153 environment/adapters/toctree.py:372
+#, python-format
+msgid "toctree contains reference to excluded document %r"
msgstr ""
-#: cmd/quickstart.py:259
-msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
+#: directives/other.py:156
+#, python-format
+msgid "toctree contains reference to nonexisting document %r"
msgstr ""
-#: cmd/quickstart.py:262
-msgid "Please enter a new root path (or just Enter to exit)"
+#: directives/other.py:169
+#, python-format
+msgid "duplicated entry found in toctree: %s"
msgstr ""
-#: cmd/quickstart.py:273
-msgid ""
-"You have two options for placing the build directory for Sphinx output.\n"
-"Either, you use a directory \"_build\" within the root path, or you separate\n"
-"\"source\" and \"build\" directories within the root path."
+#: directives/other.py:203
+msgid "Section author: "
+msgstr "Autor des Abschnitts: "
+
+#: directives/other.py:205
+msgid "Module author: "
+msgstr "Autor des Moduls: "
+
+#: directives/other.py:207
+msgid "Code author: "
+msgstr "Autor des Quellcode: "
+
+#: directives/other.py:209
+msgid "Author: "
+msgstr "Autor: "
+
+#: directives/other.py:269
+msgid ".. acks content is not a list"
msgstr ""
-#: cmd/quickstart.py:279
-msgid "Separate source and build directories (y/n)"
+#: directives/other.py:292
+msgid ".. hlist content is not a list"
msgstr ""
-#: cmd/quickstart.py:286
+#: directives/patches.py:70
msgid ""
-"Inside the root directory, two more directories will be created; \"_templates\"\n"
-"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
-"files. You can enter another prefix (such as \".\") to replace the underscore."
+"\":file:\" option for csv-table directive now recognizes an absolute path as"
+" a relative path from source directory. Please update your document."
msgstr ""
-#: cmd/quickstart.py:291
-msgid "Name prefix for templates and static dir"
+#: directives/code.py:66
+msgid "non-whitespace stripped by dedent"
msgstr ""
-#: cmd/quickstart.py:297
-msgid ""
-"The project name will occur in several places in the built documentation."
+#: directives/code.py:87
+#, python-format
+msgid "Invalid caption: %s"
msgstr ""
-#: cmd/quickstart.py:300
-msgid "Project name"
+#: directives/code.py:131 directives/code.py:297 directives/code.py:483
+#, python-format
+msgid "line number spec is out of range(1-%d): %r"
msgstr ""
-#: cmd/quickstart.py:302
-msgid "Author name(s)"
+#: directives/code.py:216
+#, python-format
+msgid "Cannot use both \"%s\" and \"%s\" options"
msgstr ""
-#: cmd/quickstart.py:308
-msgid ""
-"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
-"software. Each version can have multiple releases. For example, for\n"
-"Python the version is something like 2.5 or 3.0, while the release is\n"
-"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
-"just set both to the same value."
+#: directives/code.py:231
+#, python-format
+msgid "Include file '%s' not found or reading it failed"
msgstr ""
-#: cmd/quickstart.py:315
-msgid "Project version"
+#: directives/code.py:235
+#, python-format
+msgid ""
+"Encoding %r used for reading included file '%s' seems to be wrong, try "
+"giving an :encoding: option"
msgstr ""
-#: cmd/quickstart.py:317
-msgid "Project release"
+#: directives/code.py:276
+#, python-format
+msgid "Object named %r not found in include file %r"
msgstr ""
-#: cmd/quickstart.py:323
-msgid ""
-"If the documents are to be written in a language other than English,\n"
-"you can select a language here by its language code. Sphinx will then\n"
-"translate text that it generates into that language.\n"
-"\n"
-"For a list of supported codes, see\n"
-"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
+#: directives/code.py:309
+msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
msgstr ""
-#: cmd/quickstart.py:331
-msgid "Project language"
+#: directives/code.py:314
+#, python-format
+msgid "Line spec %r: no lines pulled from include file %r"
msgstr ""
-#: cmd/quickstart.py:339
+#: builders/html/__init__.py:475 builders/latex/__init__.py:196
+#: transforms/__init__.py:134 writers/manpage.py:97 writers/texinfo.py:220
+#, python-format
+msgid "%b %d, %Y"
+msgstr "%d.%m.%Y"
+
+#: builders/latex/__init__.py:203 domains/std/__init__.py:771
+#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:107
+#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
+#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
+#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
+#: themes/basic/genindex.html:59 themes/basic/layout.html:127
+#: writers/texinfo.py:514
+msgid "Index"
+msgstr "Stichwortverzeichnis"
+
+#: writers/latex.py:768 writers/texinfo.py:646
msgid ""
-"The file name suffix for source files. Commonly, this is either \".txt\"\n"
-"or \".rst\". Only files with this suffix are considered documents."
+"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
-#: cmd/quickstart.py:343
-msgid "Source file suffix"
+#: writers/latex.py:1118 writers/manpage.py:258 writers/texinfo.py:663
+msgid "Footnotes"
+msgstr "Fußnoten"
+
+#: writers/texinfo.py:1217
+msgid "caption not inside a figure."
msgstr ""
-#: cmd/quickstart.py:349
-msgid ""
-"One document is special in that it is considered the top node of the\n"
-"\"contents tree\", that is, it is the root of the hierarchical structure\n"
-"of the documents. Normally, this is \"index\", but if your \"index\"\n"
-"document is a custom template, you can also set this to another filename."
+#: writers/texinfo.py:1303
+#, python-format
+msgid "unimplemented node type: %r"
msgstr ""
-#: cmd/quickstart.py:356
-msgid "Name of your master document (without suffix)"
+#: writers/manpage.py:288 writers/text.py:971
+#, python-format
+msgid "[image: %s]"
+msgstr "[Bild: %s]"
+
+#: writers/manpage.py:289 writers/text.py:972
+msgid "[image]"
+msgstr "[Bild]"
+
+#: writers/html5.py:96 writers/html5.py:105
+msgid "Link to this definition"
msgstr ""
-#: cmd/quickstart.py:367
+#: writers/html5.py:431
#, python-format
-msgid ""
-"Error: the master file %s has already been found in the selected root path."
+msgid "numfig_format is not defined for %s"
msgstr ""
-#: cmd/quickstart.py:373
-msgid "sphinx-quickstart will not overwrite the existing file."
+#: writers/html5.py:441
+#, python-format
+msgid "Any IDs not assigned for %s node"
msgstr ""
-#: cmd/quickstart.py:377
-msgid ""
-"Please enter a new file name, or rename the existing file and press Enter"
+#: writers/html5.py:496
+msgid "Link to this term"
msgstr ""
-#: cmd/quickstart.py:385
-msgid "Indicate which of the following Sphinx extensions should be enabled:"
+#: writers/html5.py:548 writers/html5.py:553
+msgid "Link to this heading"
msgstr ""
-#: cmd/quickstart.py:396
-msgid ""
-"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
-"been deselected."
+#: writers/html5.py:558
+msgid "Link to this table"
msgstr ""
-#: cmd/quickstart.py:406
-msgid ""
-"A Makefile and a Windows command file can be generated for you so that you\n"
-"only have to run e.g. `make html' instead of invoking sphinx-build\n"
-"directly."
+#: writers/html5.py:572 writers/latex.py:1127
+#, python-format
+msgid "unsupported rubric heading level: %s"
msgstr ""
-#: cmd/quickstart.py:411
-msgid "Create Makefile? (y/n)"
+#: writers/html5.py:636
+msgid "Link to this code"
msgstr ""
-#: cmd/quickstart.py:415
-msgid "Create Windows command file? (y/n)"
+#: writers/html5.py:638
+msgid "Link to this image"
+msgstr ""
+
+#: writers/html5.py:640
+msgid "Link to this toctree"
+msgstr ""
+
+#: writers/html5.py:766
+msgid "Could not obtain image size. :scale: option is ignored."
msgstr ""
-#: cmd/quickstart.py:467 ext/apidoc/_generate.py:76
+#: writers/latex.py:386
#, python-format
-msgid "Creating file %s."
+msgid "unknown %r toplevel_sectioning for class %r"
msgstr ""
-#: cmd/quickstart.py:472 ext/apidoc/_generate.py:73
+#: builders/latex/__init__.py:221 writers/latex.py:436
#, python-format
-msgid "File %s already exists, skipping."
+msgid "no Babel option known for language %r"
msgstr ""
-#: cmd/quickstart.py:515
-msgid "Finished: An initial directory structure has been created."
+#: writers/latex.py:454
+msgid "too large :maxdepth:, ignored."
msgstr ""
-#: cmd/quickstart.py:519
+#: writers/latex.py:616
#, python-format
-msgid ""
-"You should now populate your master file %s and create other documentation\n"
-"source files. "
+msgid "template %s not found; loading from legacy %s instead"
+msgstr ""
+
+#: writers/latex.py:732
+msgid "document title is not a single Text node"
msgstr ""
-#: cmd/quickstart.py:526
+#: writers/latex.py:1198
msgid ""
-"Use the Makefile to build the docs, like so:\n"
-" make builder"
+"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
-#: cmd/quickstart.py:530
+#: writers/latex.py:1228
#, python-format
msgid ""
-"Use the sphinx-build command to build the docs, like so:\n"
-" sphinx-build -b builder %s %s"
+"colspec %s was given which appears to use tabulary syntax. But this table "
+"can not be rendered as a tabulary; the given colspec will be ignored."
msgstr ""
-#: cmd/quickstart.py:537
-msgid ""
-"where \"builder\" is one of the supported builders, e.g. html, latex or "
-"linkcheck."
+#: writers/latex.py:1615
+#, python-format
+msgid "dimension unit %s is invalid. Ignored."
msgstr ""
-#: cmd/quickstart.py:572
-msgid ""
-"\n"
-"Generate required files for a Sphinx project.\n"
-"\n"
-"sphinx-quickstart is an interactive tool that asks some questions about your\n"
-"project and then generates a complete documentation directory and sample\n"
-"Makefile to be used with sphinx-build.\n"
+#: writers/latex.py:1950
+#, python-format
+msgid "unknown index entry type %s found"
msgstr ""
-#: cmd/build.py:73 cmd/quickstart.py:581 ext/apidoc/_cli.py:27
-#: ext/autosummary/generate.py:835
-msgid "For more information, visit ."
+#: _cli/__init__.py:73
+msgid "Usage:"
msgstr ""
-#: cmd/quickstart.py:591
-msgid "quiet mode"
+#: _cli/__init__.py:75
+#, python-brace-format
+msgid "{0} [OPTIONS] []"
msgstr ""
-#: cmd/quickstart.py:601
-msgid "project root"
+#: _cli/__init__.py:78
+msgid " The Sphinx documentation generator."
msgstr ""
-#: cmd/quickstart.py:604
-msgid "Structure options"
+#: _cli/__init__.py:87
+msgid "Commands:"
msgstr ""
-#: cmd/quickstart.py:610
-msgid "if specified, separate source and build dirs"
+#: _cli/__init__.py:98
+msgid "Options"
msgstr ""
-#: cmd/quickstart.py:616
-msgid "if specified, create build dir under source dir"
+#: _cli/__init__.py:113 _cli/__init__.py:181
+msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
msgstr ""
-#: cmd/quickstart.py:622
-msgid "replacement for dot in _templates etc."
+#: _cli/__init__.py:171
+#, python-brace-format
+msgid ""
+"{0}: error: {1}\n"
+"Run '{0} --help' for information"
msgstr ""
-#: cmd/quickstart.py:625
-msgid "Project basic options"
+#: _cli/__init__.py:179
+msgid " Manage documentation with Sphinx."
msgstr ""
-#: cmd/quickstart.py:627
-msgid "project name"
+#: _cli/__init__.py:191
+msgid "Show the version and exit."
msgstr ""
-#: cmd/quickstart.py:630
-msgid "author names"
+#: _cli/__init__.py:199
+msgid "Show this message and exit."
msgstr ""
-#: cmd/quickstart.py:637
-msgid "version of project"
+#: _cli/__init__.py:203
+msgid "Logging"
msgstr ""
-#: cmd/quickstart.py:644
-msgid "release of project"
+#: _cli/__init__.py:210
+msgid "Increase verbosity (can be repeated)"
msgstr ""
-#: cmd/quickstart.py:651
-msgid "document language"
+#: _cli/__init__.py:218
+msgid "Only print errors and warnings."
msgstr ""
-#: cmd/quickstart.py:654
-msgid "source file suffix"
+#: _cli/__init__.py:225
+msgid "No output at all"
msgstr ""
-#: cmd/quickstart.py:657
-msgid "master document name"
+#: _cli/__init__.py:231
+msgid ""
msgstr ""
-#: cmd/quickstart.py:660
-msgid "use epub"
+#: _cli/__init__.py:263
+msgid "See 'sphinx --help'.\n"
msgstr ""
-#: cmd/quickstart.py:663
-msgid "Extension options"
+#: transforms/i18n.py:230 transforms/i18n.py:305
+#, python-brace-format
+msgid ""
+"inconsistent footnote references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:670
-#, python-format
-msgid "enable %s extension"
+#: transforms/i18n.py:275
+#, python-brace-format
+msgid ""
+"inconsistent references in translated message. original: {0}, translated: "
+"{1}"
msgstr ""
-#: cmd/quickstart.py:677
-msgid "enable arbitrary extensions"
+#: transforms/i18n.py:325
+#, python-brace-format
+msgid ""
+"inconsistent citation references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:680
-msgid "Makefile and Batchfile creation"
+#: transforms/i18n.py:347
+#, python-brace-format
+msgid ""
+"inconsistent term references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: cmd/quickstart.py:686
-msgid "create makefile"
+#: transforms/__init__.py:144
+msgid "could not calculate translation progress!"
msgstr ""
-#: cmd/quickstart.py:692
-msgid "do not create makefile"
+#: transforms/__init__.py:149
+msgid "no translated elements!"
msgstr ""
-#: cmd/quickstart.py:699
-msgid "create batchfile"
+#: transforms/__init__.py:258
+#, python-format
+msgid ""
+"4 column based index found. It might be a bug of extensions you use: %r"
msgstr ""
-#: cmd/quickstart.py:705
-msgid "do not create batchfile"
+#: transforms/__init__.py:299
+#, python-format
+msgid "Footnote [%s] is not referenced."
msgstr ""
-#: cmd/quickstart.py:714
-msgid "use make-mode for Makefile/make.bat"
+#: transforms/__init__.py:308
+msgid "Footnote [*] is not referenced."
msgstr ""
-#: cmd/quickstart.py:717 ext/apidoc/_cli.py:243
-msgid "Project templating"
+#: transforms/__init__.py:319
+msgid "Footnote [#] is not referenced."
msgstr ""
-#: cmd/quickstart.py:723 ext/apidoc/_cli.py:249
-msgid "template directory for template files"
+#: util/inventory.py:147
+#, python-format
+msgid "inventory <%s> contains duplicate definitions of %s"
msgstr ""
-#: cmd/quickstart.py:730
-msgid "define a template variable"
+#: util/inventory.py:166
+#, python-format
+msgid "inventory <%s> contains multiple definitions for %s"
msgstr ""
-#: cmd/quickstart.py:766
-msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
+#: util/i18n.py:100
+#, python-format
+msgid "reading error: %s, %s"
msgstr ""
-#: cmd/quickstart.py:785
-msgid ""
-"Error: specified path is not a directory, or sphinx files already exist."
+#: util/i18n.py:113
+#, python-format
+msgid "writing error: %s, %s"
msgstr ""
-#: cmd/quickstart.py:792
-msgid ""
-"sphinx-quickstart only generate into a empty directory. Please specify a new"
-" root path."
+#: util/i18n.py:146
+#, python-format
+msgid "locale_dir %s does not exist"
msgstr ""
-#: cmd/quickstart.py:809
+#: util/i18n.py:244
#, python-format
-msgid "Invalid template variable: %s"
+msgid "Invalid Babel locale: %r."
msgstr ""
-#: cmd/build.py:64
-msgid "job number should be a positive number"
+#: util/i18n.py:253
+#, python-format
+msgid ""
+"Invalid date format. Quote the string by single quote if you want to output "
+"it directly: %s"
msgstr ""
-#: cmd/build.py:74
+#: util/osutil.py:131
+#, python-format
msgid ""
-"\n"
-"Generate documentation from source files.\n"
-"\n"
-"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
-"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
-"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
-"including 'conf.py'\n"
-"\n"
-"sphinx-build can create documentation in different formats. A format is\n"
-"selected by specifying the builder name on the command line; it defaults to\n"
-"HTML. Builders can also perform other tasks related to documentation\n"
-"processing.\n"
-"\n"
-"By default, everything that is outdated is built. Output only for selected\n"
-"files can be built by specifying individual filenames.\n"
+"Aborted attempted copy from %s to %s (the destination path has existing "
+"data)."
msgstr ""
-#: cmd/build.py:100
-msgid "path to documentation source files"
+#: util/display.py:82
+msgid "skipped"
msgstr ""
-#: cmd/build.py:103
-msgid "path to output directory"
+#: util/display.py:87
+msgid "failed"
msgstr ""
-#: cmd/build.py:109
-msgid ""
-"(optional) a list of specific files to rebuild. Ignored if --write-all is "
-"specified"
+#: util/docutils.py:325
+#, python-format
+msgid "unknown directive name: %s"
msgstr ""
-#: cmd/build.py:114
-msgid "general options"
+#: util/docutils.py:361
+#, python-format
+msgid "unknown role name: %s"
msgstr ""
-#: cmd/build.py:121
-msgid "builder to use (default: 'html')"
+#: util/docutils.py:805
+#, python-format
+msgid "unknown node type: %r"
msgstr ""
-#: cmd/build.py:131
+#: util/fileutil.py:76
+#, python-format
msgid ""
-"run in parallel with N processes, when possible. 'auto' uses the number of "
-"CPU cores"
+"Aborted attempted copy from rendered template %s to %s (the destination path"
+" has existing data)."
msgstr ""
-#: cmd/build.py:140
-msgid "write all files (default: only write new and changed files)"
+#: util/fileutil.py:89
+#, python-format
+msgid "Writing evaluated template result to %s"
msgstr ""
-#: cmd/build.py:147
-msgid "don't use a saved environment, always read all files"
+#: util/docfields.py:103
+#, python-format
+msgid ""
+"Problem in %s domain: field is supposed to use role '%s', but that role is "
+"not in the domain."
msgstr ""
-#: cmd/build.py:150
-msgid "path options"
+#: util/rst.py:73
+#, python-format
+msgid "default role %s not found"
msgstr ""
-#: cmd/build.py:157
+#: util/nodes.py:462
+#, python-format
msgid ""
-"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
+"%r is no longer supported for index entries (from entry %r). Use 'pair: %s' "
+"instead."
msgstr ""
-#: cmd/build.py:166
-msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
+#: util/nodes.py:523
+#, python-format
+msgid "toctree contains ref to nonexisting file %r"
msgstr ""
-#: cmd/build.py:175
-msgid "use no configuration file, only use settings from -D options"
+#: util/nodes.py:739
+#, python-format
+msgid "exception while evaluating only directive expression: %s"
msgstr ""
-#: cmd/build.py:184
-msgid "override a setting in configuration file"
-msgstr ""
+#: templates/latex/longtable.tex.jinja:52
+#: templates/latex/sphinxmessages.sty.jinja:8
+msgid "continued from previous page"
+msgstr "Fortsetzung der vorherigen Seite"
-#: cmd/build.py:193
-msgid "pass a value into HTML templates"
+#: templates/latex/longtable.tex.jinja:63
+#: templates/latex/sphinxmessages.sty.jinja:9
+msgid "continues on next page"
+msgstr "Fortsetzung auf der nächsten Seite"
+
+#: templates/latex/sphinxmessages.sty.jinja:10
+msgid "Non-alphabetical"
msgstr ""
-#: cmd/build.py:202
-msgid "define tag: include \"only\" blocks with TAG"
+#: environment/adapters/indexentries.py:267
+#: templates/latex/sphinxmessages.sty.jinja:11
+msgid "Symbols"
+msgstr "Sonderzeichen"
+
+#: templates/latex/sphinxmessages.sty.jinja:12
+msgid "Numbers"
msgstr ""
-#: cmd/build.py:209
-msgid "nitpicky mode: warn about all missing references"
-msgstr ""
+#: templates/latex/sphinxmessages.sty.jinja:13
+msgid "page"
+msgstr "Seite"
+
+#: builders/latex/__init__.py:206 templates/latex/latex.tex.jinja:92
+msgid "Release"
+msgstr "Release"
-#: cmd/build.py:212
-msgid "console output options"
+#: transforms/post_transforms/images.py:79
+#, python-format
+msgid "Could not fetch remote image: %s [%s]"
msgstr ""
-#: cmd/build.py:219
-msgid "increase verbosity (can be repeated)"
+#: transforms/post_transforms/images.py:96
+#, python-format
+msgid "Could not fetch remote image: %s [%d]"
msgstr ""
-#: cmd/build.py:226 ext/apidoc/_cli.py:66
-msgid "no output on stdout, just warnings on stderr"
+#: transforms/post_transforms/images.py:143
+#, python-format
+msgid "Unknown image format: %s..."
msgstr ""
-#: cmd/build.py:233
-msgid "no output at all, not even warnings"
+#: transforms/post_transforms/__init__.py:88
+msgid ""
+"Could not determine the fallback text for the cross-reference. Might be a "
+"bug."
msgstr ""
-#: cmd/build.py:241
-msgid "do emit colored output (default: auto-detect)"
+#: transforms/post_transforms/__init__.py:233
+#, python-format
+msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr ""
-#: cmd/build.py:249
-msgid "do not emit colored output (default: auto-detect)"
+#: transforms/post_transforms/__init__.py:291
+#, python-format
+msgid "%s:%s reference target not found: %s"
msgstr ""
-#: cmd/build.py:252
-msgid "warning control options"
+#: transforms/post_transforms/__init__.py:297
+#, python-format
+msgid "%r reference target not found: %s"
msgstr ""
-#: cmd/build.py:258
-msgid "write warnings (and errors) to given file"
+#: _cli/util/errors.py:190
+msgid "Interrupted!"
msgstr ""
-#: cmd/build.py:265
-msgid "turn warnings into errors"
+#: _cli/util/errors.py:194
+msgid "reStructuredText markup error!"
msgstr ""
-#: cmd/build.py:273
-msgid "show full traceback on exception"
+#: _cli/util/errors.py:200
+msgid "Encoding error!"
msgstr ""
-#: cmd/build.py:276
-msgid "run Pdb on exception"
+#: _cli/util/errors.py:203
+msgid "Recursion error!"
msgstr ""
-#: cmd/build.py:282
-msgid "raise an exception on warnings"
+#: _cli/util/errors.py:207
+msgid ""
+"This can happen with very large or deeply nested source files. You can "
+"carefully increase the default Python recursion limit of 1,000 in conf.py "
+"with e.g.:"
msgstr ""
-#: cmd/build.py:325
-msgid "cannot combine -a option and filenames"
+#: _cli/util/errors.py:227
+msgid "Starting debugger:"
msgstr ""
-#: cmd/build.py:357
-#, python-format
-msgid "cannot open warning file '%s': %s"
+#: _cli/util/errors.py:235
+msgid "The full traceback has been saved in:"
msgstr ""
-#: cmd/build.py:376
-msgid "-D option argument must be in the form name=value"
+#: _cli/util/errors.py:240
+msgid ""
+"To report this error to the developers, please open an issue at "
+". Thanks!"
msgstr ""
-#: cmd/build.py:383
-msgid "-A option argument must be in the form name=value"
+#: _cli/util/errors.py:246
+msgid ""
+"Please also report this if it was a user error, so that a better error "
+"message can be provided next time."
msgstr ""
#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
msgid "Collapse sidebar"
msgstr "Seitenleiste einklappen"
-#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
-#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
-msgid "Table of Contents"
-msgstr "Inhaltsverzeichnis"
+#: themes/basic/layout.html:18
+msgid "Navigation"
+msgstr "Navigation"
+
+#: themes/basic/layout.html:115
+#, python-format
+msgid "Search within %(docstitle)s"
+msgstr "Suche in %(docstitle)s"
+
+#: themes/basic/layout.html:124
+msgid "About these documents"
+msgstr "Über dieses Dokument"
#: themes/agogo/layout.html:34 themes/basic/layout.html:130
#: themes/basic/search.html:3 themes/basic/search.html:15
msgid "Search"
msgstr "Suche"
-#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
-#: themes/basic/searchfield.html:12
-msgid "Go"
-msgstr "Los"
+#: themes/basic/layout.html:133 themes/basic/layout.html:177
+#: themes/basic/layout.html:179
+msgid "Copyright"
+msgstr "Copyright"
+
+#: themes/basic/layout.html:183 themes/basic/layout.html:189
+#, python-format
+msgid "© %(copyright_prefix)s %(copyright)s."
+msgstr ""
+
+#: themes/basic/layout.html:201
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "Zuletzt aktualisiert am %(last_updated)s."
+
+#: themes/basic/layout.html:204
+#, python-format
+msgid ""
+"Created using Sphinx "
+"%(sphinx_version)s."
+msgstr ""
+
+#: themes/basic/relations.html:4
+msgid "Previous topic"
+msgstr "Vorheriges Thema"
+
+#: themes/basic/relations.html:6
+msgid "previous chapter"
+msgstr "vorheriges Kapitel"
+
+#: themes/basic/relations.html:11
+msgid "Next topic"
+msgstr "Nächstes Thema"
+
+#: themes/basic/relations.html:13
+msgid "next chapter"
+msgstr "nächstes Kapitel"
+
+#: themes/basic/genindex-single.html:26
+#, python-format
+msgid "Index – %(key)s"
+msgstr ""
+
+#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
+#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
+msgid "Full index on one page"
+msgstr "Gesamtes Stichwortverzeichnis auf einer Seite"
+
+#: themes/basic/sourcelink.html:4
+msgid "This Page"
+msgstr "Diese Seite"
#: themes/agogo/layout.html:81 themes/basic/sourcelink.html:7
msgid "Show Source"
msgstr "Quellcode anzeigen"
-#: themes/haiku/layout.html:16
-msgid "Contents"
-msgstr "Inhalt"
+#: themes/basic/searchbox.html:4
+msgid "Quick search"
+msgstr "Schnellsuche"
-#: themes/basic/opensearch.xml:4
-#, python-format
-msgid "Search %(docstitle)s"
-msgstr "Suche in %(docstitle)s"
+#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
+#: themes/basic/searchfield.html:12
+msgid "Go"
+msgstr "Los"
#: themes/basic/defindex.html:4
msgid "Overview"
@@ -2685,7 +2885,7 @@ msgstr "Globaler Modulindex"
msgid "quick access to all modules"
msgstr "schneller Zugriff auf alle Module"
-#: builders/html/__init__.py:507 themes/basic/defindex.html:23
+#: builders/html/__init__.py:496 themes/basic/defindex.html:23
msgid "General Index"
msgstr "Stichwortverzeichnis"
@@ -2693,23 +2893,15 @@ msgstr "Stichwortverzeichnis"
msgid "all functions, classes, terms"
msgstr "alle Funktionen, Klassen, Begriffe"
-#: themes/basic/sourcelink.html:4
-msgid "This Page"
-msgstr "Diese Seite"
+#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
+#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
+msgid "Table of Contents"
+msgstr "Inhaltsverzeichnis"
-#: themes/basic/genindex-single.html:26
+#: themes/basic/opensearch.xml:4
#, python-format
-msgid "Index – %(key)s"
-msgstr ""
-
-#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
-#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
-msgid "Full index on one page"
-msgstr "Gesamtes Stichwortverzeichnis auf einer Seite"
-
-#: themes/basic/searchbox.html:4
-msgid "Quick search"
-msgstr "Schnellsuche"
+msgid "Search %(docstitle)s"
+msgstr "Suche in %(docstitle)s"
#: themes/basic/genindex-split.html:8
msgid "Index pages by letter"
@@ -2719,57 +2911,6 @@ msgstr "Stichwortverzeichnis nach Anfangsbuchstabe"
msgid "can be huge"
msgstr "kann groß sein"
-#: themes/basic/relations.html:4
-msgid "Previous topic"
-msgstr "Vorheriges Thema"
-
-#: themes/basic/relations.html:6
-msgid "previous chapter"
-msgstr "vorheriges Kapitel"
-
-#: themes/basic/relations.html:11
-msgid "Next topic"
-msgstr "Nächstes Thema"
-
-#: themes/basic/relations.html:13
-msgid "next chapter"
-msgstr "nächstes Kapitel"
-
-#: themes/basic/layout.html:18
-msgid "Navigation"
-msgstr "Navigation"
-
-#: themes/basic/layout.html:115
-#, python-format
-msgid "Search within %(docstitle)s"
-msgstr "Suche in %(docstitle)s"
-
-#: themes/basic/layout.html:124
-msgid "About these documents"
-msgstr "Über dieses Dokument"
-
-#: themes/basic/layout.html:133 themes/basic/layout.html:177
-#: themes/basic/layout.html:179
-msgid "Copyright"
-msgstr "Copyright"
-
-#: themes/basic/layout.html:183 themes/basic/layout.html:189
-#, python-format
-msgid "© %(copyright_prefix)s %(copyright)s."
-msgstr ""
-
-#: themes/basic/layout.html:201
-#, python-format
-msgid "Last updated on %(last_updated)s."
-msgstr "Zuletzt aktualisiert am %(last_updated)s."
-
-#: themes/basic/layout.html:204
-#, python-format
-msgid ""
-"Created using Sphinx "
-"%(sphinx_version)s."
-msgstr ""
-
#: themes/basic/search.html:20
msgid ""
"Please activate JavaScript to enable the search\n"
@@ -2786,21 +2927,21 @@ msgstr ""
msgid "search"
msgstr "suchen"
-#: themes/basic/static/sphinx_highlight.js:112
-msgid "Hide Search Matches"
-msgstr "Suchergebnisse ausblenden"
+#: themes/haiku/layout.html:16
+msgid "Contents"
+msgstr "Inhalt"
-#: themes/basic/static/searchtools.js:117
+#: themes/basic/static/searchtools.js:132
msgid "Search Results"
msgstr "Suchergebnisse"
-#: themes/basic/static/searchtools.js:119
+#: themes/basic/static/searchtools.js:134
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
msgstr "Ihre Suche ergab keine Treffer. Bitte stellen Sie sicher, dass alle Wörter richtig geschrieben sind und genügend Kategorien ausgewählt sind."
-#: themes/basic/static/searchtools.js:123
+#: themes/basic/static/searchtools.js:138
#, python-brace-format
msgid "Search finished, found one page matching the search query."
msgid_plural ""
@@ -2808,27 +2949,31 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: themes/basic/static/searchtools.js:253
+#: themes/basic/static/searchtools.js:276
msgid "Searching"
msgstr "Suchen"
-#: themes/basic/static/searchtools.js:270
+#: themes/basic/static/searchtools.js:293
msgid "Preparing search..."
msgstr "Suche wird vorbereitet..."
-#: themes/basic/static/searchtools.js:474
+#: themes/basic/static/searchtools.js:526
msgid ", in "
msgstr ", in "
-#: themes/basic/changes/rstsource.html:5
-#, python-format
-msgid "%(filename)s — %(docstitle)s"
-msgstr ""
+#: themes/basic/static/sphinx_highlight.js:112
+msgid "Hide Search Matches"
+msgstr "Suchergebnisse ausblenden"
#: themes/basic/changes/frameset.html:5
#: themes/basic/changes/versionchanges.html:12
#, python-format
-msgid "Changes in Version %(version)s — %(docstitle)s"
+msgid "Changes in Version %(version)s — %(docstitle)s"
+msgstr ""
+
+#: themes/basic/changes/rstsource.html:5
+#, python-format
+msgid "%(filename)s — %(docstitle)s"
msgstr ""
#: themes/basic/changes/versionchanges.html:17
@@ -2852,120 +2997,127 @@ msgstr "Andere Änderungen"
msgid "Expand sidebar"
msgstr "Seitenleiste ausklappen"
-#: domains/python/_annotations.py:529
+#: domains/python/_annotations.py:522
msgid "Positional-only parameter separator (PEP 570)"
msgstr ""
-#: domains/python/_annotations.py:540
+#: domains/python/_annotations.py:533
msgid "Keyword-only parameters separator (PEP 3102)"
msgstr ""
-#: domains/python/__init__.py:113 domains/python/__init__.py:278
+#: domains/c/__init__.py:354 domains/cpp/__init__.py:485
+#: domains/python/_object.py:190 ext/napoleon/docstring.py:980
+msgid "Parameters"
+msgstr "Parameter"
+
+#: domains/python/_object.py:206
+msgid "Variables"
+msgstr "Variablen"
+
+#: domains/python/_object.py:214
+msgid "Raises"
+msgstr "Verursacht"
+
+#: domains/python/__init__.py:105 domains/python/__init__.py:270
#, python-format
msgid "%s() (in module %s)"
msgstr "%s() (im Modul %s)"
-#: domains/python/__init__.py:180 domains/python/__init__.py:374
-#: domains/python/__init__.py:434 domains/python/__init__.py:474
+#: domains/python/__init__.py:172 domains/python/__init__.py:366
+#: domains/python/__init__.py:426 domains/python/__init__.py:466
#, python-format
msgid "%s (in module %s)"
msgstr "%s (in Modul %s)"
-#: domains/python/__init__.py:182
+#: domains/python/__init__.py:174
#, python-format
msgid "%s (built-in variable)"
msgstr "%s (Standard-Variable)"
-#: domains/python/__init__.py:217
+#: domains/python/__init__.py:209
#, python-format
msgid "%s (built-in class)"
msgstr "%s (Builtin-Klasse)"
-#: domains/python/__init__.py:218
+#: domains/python/__init__.py:210
#, python-format
msgid "%s (class in %s)"
msgstr "%s (Klasse in %s)"
-#: domains/python/__init__.py:283
+#: domains/python/__init__.py:275
#, python-format
msgid "%s() (%s class method)"
msgstr "%s() (Klassenmethode von %s)"
-#: domains/python/__init__.py:285
+#: domains/python/__init__.py:277
#, python-format
msgid "%s() (%s static method)"
msgstr "%s() (statische Methode von %s)"
-#: domains/python/__init__.py:438
+#: domains/python/__init__.py:430
#, python-format
msgid "%s (%s property)"
msgstr ""
-#: domains/python/__init__.py:478
+#: domains/python/__init__.py:470
#, python-format
msgid "%s (type alias in %s)"
msgstr ""
-#: domains/python/__init__.py:638
+#: domains/python/__init__.py:624
msgid "Python Module Index"
msgstr "Python-Modulindex"
-#: domains/python/__init__.py:639
+#: domains/python/__init__.py:625
msgid "modules"
msgstr "Module"
-#: domains/python/__init__.py:717
+#: domains/python/__init__.py:703
msgid "Deprecated"
msgstr "Veraltet"
-#: domains/python/__init__.py:743
+#: domains/python/__init__.py:729
msgid "exception"
msgstr "Exception"
-#: domains/python/__init__.py:745
+#: domains/python/__init__.py:731
msgid "class method"
msgstr "Klassenmethode"
-#: domains/python/__init__.py:746
+#: domains/python/__init__.py:732
msgid "static method"
msgstr "statische Methode"
-#: domains/python/__init__.py:748
+#: domains/python/__init__.py:734
msgid "property"
msgstr ""
-#: domains/python/__init__.py:749
+#: domains/python/__init__.py:735
msgid "type alias"
msgstr ""
-#: domains/python/__init__.py:818
+#: domains/python/__init__.py:804
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :no-index: for"
" one of them"
msgstr ""
-#: domains/python/__init__.py:978
+#: domains/python/__init__.py:974
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
-#: domains/python/__init__.py:1052
+#: domains/python/__init__.py:1048
msgid " (deprecated)"
msgstr " (veraltet)"
-#: domains/c/__init__.py:326 domains/cpp/__init__.py:483
-#: domains/python/_object.py:190 ext/napoleon/docstring.py:974
-msgid "Parameters"
-msgstr "Parameter"
-
-#: domains/python/_object.py:206
-msgid "Variables"
-msgstr "Variablen"
-
-#: domains/python/_object.py:214
-msgid "Raises"
-msgstr "Verursacht"
+#: domains/cpp/__init__.py:394 domains/cpp/_symbol.py:946
+#, python-format
+msgid ""
+"Duplicate C++ declaration, also defined at %s:%s.\n"
+"Declaration is '.. cpp:%s:: %s'."
+msgstr ""
#: domains/cpp/__init__.py:159
msgid "Template Parameters"
@@ -2976,746 +3128,526 @@ msgstr "Template Parameter"
msgid "%s (C++ %s)"
msgstr ""
-#: domains/cpp/__init__.py:392 domains/cpp/_symbol.py:942
-#, python-format
-msgid ""
-"Duplicate C++ declaration, also defined at %s:%s.\n"
-"Declaration is '.. cpp:%s:: %s'."
-msgstr ""
-
-#: domains/c/__init__.py:333 domains/cpp/__init__.py:496
+#: domains/c/__init__.py:361 domains/cpp/__init__.py:498
msgid "Return values"
msgstr ""
-#: domains/c/__init__.py:754 domains/cpp/__init__.py:940
+#: domains/c/__init__.py:782 domains/cpp/__init__.py:942
msgid "union"
msgstr ""
-#: domains/c/__init__.py:749 domains/cpp/__init__.py:942
+#: domains/c/__init__.py:777 domains/cpp/__init__.py:944
msgid "member"
msgstr "Member"
-#: domains/c/__init__.py:757 domains/cpp/__init__.py:943
+#: domains/c/__init__.py:785 domains/cpp/__init__.py:945
msgid "type"
msgstr "Typ"
-#: domains/cpp/__init__.py:944
+#: domains/cpp/__init__.py:946
msgid "concept"
msgstr ""
-#: domains/c/__init__.py:755 domains/cpp/__init__.py:945
+#: domains/c/__init__.py:783 domains/cpp/__init__.py:947
msgid "enum"
msgstr "Aufzählung"
-#: domains/c/__init__.py:756 domains/cpp/__init__.py:946
+#: domains/c/__init__.py:784 domains/cpp/__init__.py:948
msgid "enumerator"
msgstr "Enumerator"
-#: domains/c/__init__.py:760 domains/cpp/__init__.py:949
+#: domains/c/__init__.py:788 domains/cpp/__init__.py:951
msgid "function parameter"
msgstr ""
-#: domains/cpp/__init__.py:952
+#: domains/cpp/__init__.py:954
msgid "template parameter"
msgstr ""
-#: domains/c/__init__.py:211
-#, python-format
-msgid "%s (C %s)"
-msgstr ""
-
-#: domains/c/__init__.py:277 domains/c/_symbol.py:557
+#: domains/c/__init__.py:279 domains/c/_symbol.py:569
#, python-format
msgid ""
"Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'."
msgstr ""
-#: domains/c/__init__.py:750
+#: domains/c/__init__.py:211
+#, python-format
+msgid "%s (C %s)"
+msgstr ""
+
+#: domains/c/__init__.py:778
msgid "variable"
msgstr "Variable"
-#: domains/c/__init__.py:752
+#: domains/c/__init__.py:780
msgid "macro"
msgstr "Makro"
-#: domains/c/__init__.py:753
+#: domains/c/__init__.py:781
msgid "struct"
msgstr ""
-#: domains/std/__init__.py:91 domains/std/__init__.py:111
-#, python-format
-msgid "environment variable; %s"
-msgstr "Umgebungsvariable; %s"
-
-#: domains/std/__init__.py:119
-#, python-format
-msgid "%s; configuration value"
-msgstr ""
-
-#: domains/std/__init__.py:175
-msgid "Type"
-msgstr ""
-
-#: domains/std/__init__.py:185
-msgid "Default"
-msgstr ""
-
-#: domains/std/__init__.py:242
-#, python-format
-msgid ""
-"Malformed option description %r, should look like \"opt\", \"-opt args\", \""
-"--opt args\", \"/opt args\" or \"+opt args\""
-msgstr ""
-
-#: domains/std/__init__.py:319
-#, python-format
-msgid "%s command line option"
-msgstr ""
-
-#: domains/std/__init__.py:321
-msgid "command line option"
-msgstr ""
-
-#: domains/std/__init__.py:461
-msgid "glossary term must be preceded by empty line"
-msgstr ""
-
-#: domains/std/__init__.py:474
-msgid "glossary terms must not be separated by empty lines"
-msgstr ""
-
-#: domains/std/__init__.py:486 domains/std/__init__.py:504
-msgid "glossary seems to be misformatted, check indentation"
-msgstr ""
-
-#: domains/std/__init__.py:729
-msgid "glossary term"
-msgstr "Glossareintrag"
-
-#: domains/std/__init__.py:730
-msgid "grammar token"
-msgstr "Grammatik-Token"
-
-#: domains/std/__init__.py:731
-msgid "reference label"
-msgstr "Referenz-Label"
-
-#: domains/std/__init__.py:733
-msgid "environment variable"
-msgstr "Umgebungsvariable"
-
-#: domains/std/__init__.py:734
-msgid "program option"
-msgstr "Programmoption"
-
-#: domains/std/__init__.py:735
-msgid "document"
-msgstr ""
-
-#: domains/std/__init__.py:772 domains/std/__init__.py:785
-msgid "Module Index"
-msgstr "Modulindex"
-
-#: domains/std/__init__.py:857
-#, python-format
-msgid "duplicate %s description of %s, other instance in %s"
-msgstr ""
-
-#: domains/std/__init__.py:1113
-msgid "numfig is disabled. :numref: is ignored."
-msgstr ""
-
-#: domains/std/__init__.py:1124
-#, python-format
-msgid "Failed to create a cross reference. Any number is not assigned: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1138
-#, python-format
-msgid "the link has no caption: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1153
-#, python-format
-msgid "invalid numfig_format: %s (%r)"
-msgstr ""
-
-#: domains/std/__init__.py:1157
-#, python-format
-msgid "invalid numfig_format: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1453
-#, python-format
-msgid "undefined label: %r"
-msgstr ""
-
-#: domains/std/__init__.py:1456
-#, python-format
-msgid "Failed to create a cross reference. A title or caption not found: %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:324
-#, python-format
-msgid "circular toctree references detected, ignoring: %s <- %s"
-msgstr ""
-
-#: environment/adapters/toctree.py:349
-#, python-format
-msgid ""
-"toctree contains reference to document %r that doesn't have a title: no link"
-" will be generated"
-msgstr ""
-
-#: environment/adapters/toctree.py:364
-#, python-format
-msgid "toctree contains reference to non-included document %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:367
-#, python-format
-msgid "toctree contains reference to non-existing document %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:123
-#, python-format
-msgid "see %s"
-msgstr "siehe %s"
-
-#: environment/adapters/indexentries.py:133
-#, python-format
-msgid "see also %s"
-msgstr "siehe auch %s"
-
-#: environment/adapters/indexentries.py:141
-#, python-format
-msgid "unknown index entry type %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:268
-#: templates/latex/sphinxmessages.sty.jinja:11
-msgid "Symbols"
-msgstr "Sonderzeichen"
-
-#: environment/collectors/asset.py:98
-#, python-format
-msgid "image file not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:126
-#, python-format
-msgid "image file %s not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:163
-#, python-format
-msgid "download file not readable: %s"
-msgstr ""
-
-#: environment/collectors/toctree.py:259
-#, python-format
-msgid "%s is already assigned section numbers (nested numbered toctree?)"
-msgstr ""
-
-#: _cli/util/errors.py:190
-msgid "Interrupted!"
-msgstr ""
-
-#: _cli/util/errors.py:194
-msgid "reStructuredText markup error!"
-msgstr ""
-
-#: _cli/util/errors.py:200
-msgid "Encoding error!"
-msgstr ""
-
-#: _cli/util/errors.py:203
-msgid "Recursion error!"
-msgstr ""
-
-#: _cli/util/errors.py:207
-msgid ""
-"This can happen with very large or deeply nested source files. You can "
-"carefully increase the default Python recursion limit of 1,000 in conf.py "
-"with e.g.:"
-msgstr ""
-
-#: _cli/util/errors.py:227
-msgid "Starting debugger:"
-msgstr ""
-
-#: _cli/util/errors.py:235
-msgid "The full traceback has been saved in:"
-msgstr ""
-
-#: _cli/util/errors.py:240
-msgid ""
-"To report this error to the developers, please open an issue at "
-". Thanks!"
-msgstr ""
-
-#: _cli/util/errors.py:246
-msgid ""
-"Please also report this if it was a user error, so that a better error "
-"message can be provided next time."
-msgstr ""
-
-#: transforms/post_transforms/__init__.py:88
-msgid ""
-"Could not determine the fallback text for the cross-reference. Might be a "
-"bug."
-msgstr ""
-
-#: transforms/post_transforms/__init__.py:237
+#: domains/std/__init__.py:88 domains/std/__init__.py:108
#, python-format
-msgid "more than one target found for 'any' cross-reference %r: could be %s"
-msgstr ""
+msgid "environment variable; %s"
+msgstr "Umgebungsvariable; %s"
-#: transforms/post_transforms/__init__.py:299
+#: domains/std/__init__.py:116
#, python-format
-msgid "%s:%s reference target not found: %s"
+msgid "%s; configuration value"
msgstr ""
-#: transforms/post_transforms/__init__.py:305
-#, python-format
-msgid "%r reference target not found: %s"
+#: domains/std/__init__.py:172
+msgid "Type"
msgstr ""
-#: transforms/post_transforms/images.py:79
-#, python-format
-msgid "Could not fetch remote image: %s [%s]"
+#: domains/std/__init__.py:182
+msgid "Default"
msgstr ""
-#: transforms/post_transforms/images.py:96
+#: domains/std/__init__.py:239
#, python-format
-msgid "Could not fetch remote image: %s [%d]"
+msgid ""
+"Malformed option description %r, should look like \"opt\", \"-opt args\", \""
+"--opt args\", \"/opt args\" or \"+opt args\""
msgstr ""
-#: transforms/post_transforms/images.py:143
+#: domains/std/__init__.py:319
#, python-format
-msgid "Unknown image format: %s..."
+msgid "%s command line option"
msgstr ""
-#: builders/html/__init__.py:113
-#, python-format
-msgid "The HTML pages are in %(outdir)s."
+#: domains/std/__init__.py:321
+msgid "command line option"
msgstr ""
-#: builders/html/__init__.py:348
-#, python-format
-msgid "Failed to read build info file: %r"
+#: domains/std/__init__.py:461
+msgid "glossary term must be preceded by empty line"
msgstr ""
-#: builders/html/__init__.py:364
-msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+#: domains/std/__init__.py:474
+msgid "glossary terms must not be separated by empty lines"
msgstr ""
-#: builders/html/__init__.py:366
-msgid "building [html]: "
+#: domains/std/__init__.py:486 domains/std/__init__.py:504
+msgid "glossary seems to be misformatted, check indentation"
msgstr ""
-#: builders/html/__init__.py:383
-#, python-format
-msgid ""
-"template %s has been changed since the previous build, all docs will be "
-"rebuilt"
-msgstr ""
+#: domains/std/__init__.py:729
+msgid "glossary term"
+msgstr "Glossareintrag"
-#: builders/html/__init__.py:507
-msgid "index"
-msgstr "Index"
+#: domains/std/__init__.py:730
+msgid "grammar token"
+msgstr "Grammatik-Token"
-#: builders/html/__init__.py:560
-#, python-format
-msgid "Logo of %s"
-msgstr ""
+#: domains/std/__init__.py:731
+msgid "reference label"
+msgstr "Referenz-Label"
-#: builders/html/__init__.py:589
-msgid "next"
-msgstr "weiter"
+#: domains/std/__init__.py:733
+msgid "environment variable"
+msgstr "Umgebungsvariable"
-#: builders/html/__init__.py:598
-msgid "previous"
-msgstr "zurück"
+#: domains/std/__init__.py:734
+msgid "program option"
+msgstr "Programmoption"
-#: builders/html/__init__.py:696
-msgid "generating indices"
+#: domains/std/__init__.py:735
+msgid "document"
msgstr ""
-#: builders/html/__init__.py:711
-msgid "writing additional pages"
-msgstr ""
+#: domains/std/__init__.py:772 domains/std/__init__.py:785
+msgid "Module Index"
+msgstr "Modulindex"
-#: builders/html/__init__.py:794
+#: domains/std/__init__.py:857
#, python-format
-msgid "cannot copy image file '%s': %s"
+msgid "duplicate %s description of %s, other instance in %s"
msgstr ""
-#: builders/html/__init__.py:806
-msgid "copying downloadable files... "
+#: domains/std/__init__.py:1113
+msgid "numfig is disabled. :numref: is ignored."
msgstr ""
-#: builders/html/__init__.py:818
+#: domains/std/__init__.py:1124
#, python-format
-msgid "cannot copy downloadable file %r: %s"
+msgid "Failed to create a cross reference. Any number is not assigned: %s"
msgstr ""
-#: builders/html/__init__.py:864
+#: domains/std/__init__.py:1138
#, python-format
-msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
+msgid "the link has no caption: %s"
msgstr ""
-#: builders/html/__init__.py:882
+#: domains/std/__init__.py:1153
#, python-format
-msgid "Failed to copy a file in html_static_file: %s: %r"
+msgid "invalid numfig_format: %s (%r)"
msgstr ""
-#: builders/html/__init__.py:917
-msgid "copying static files"
+#: domains/std/__init__.py:1157
+#, python-format
+msgid "invalid numfig_format: %s"
msgstr ""
-#: builders/html/__init__.py:934
+#: domains/std/__init__.py:1453
#, python-format
-msgid "cannot copy static file %r"
+msgid "undefined label: %r"
msgstr ""
-#: builders/html/__init__.py:939
-msgid "copying extra files"
+#: domains/std/__init__.py:1456
+#, python-format
+msgid "Failed to create a cross reference. A title or caption not found: %r"
msgstr ""
-#: builders/html/__init__.py:949
+#: ext/napoleon/docstring.py:178
#, python-format
-msgid "cannot copy extra file %r"
+msgid "invalid value set (missing closing brace): %s"
msgstr ""
-#: builders/html/__init__.py:955
+#: ext/napoleon/docstring.py:185
#, python-format
-msgid "Failed to write build info file: %r"
+msgid "invalid value set (missing opening brace): %s"
msgstr ""
-#: builders/html/__init__.py:1005
-msgid ""
-"search index couldn't be loaded, but not all documents will be built: the "
-"index will be incomplete."
+#: ext/napoleon/docstring.py:192
+#, python-format
+msgid "malformed string literal (missing closing quote): %s"
msgstr ""
-#: builders/html/__init__.py:1052
+#: ext/napoleon/docstring.py:199
#, python-format
-msgid "page %s matches two patterns in html_sidebars: %r and %r"
+msgid "malformed string literal (missing opening quote): %s"
msgstr ""
-#: builders/html/__init__.py:1216
-#, python-format
-msgid ""
-"a Unicode error occurred when rendering the page %s. Please make sure all "
-"config values that contain non-ASCII content are Unicode strings."
+#: ext/napoleon/docstring.py:902
+msgid "Example"
msgstr ""
-#: builders/html/__init__.py:1224
-#, python-format
-msgid ""
-"An error happened in rendering the page %s.\n"
-"Reason: %r"
+#: ext/napoleon/docstring.py:903
+msgid "Examples"
msgstr ""
-#: builders/html/__init__.py:1257
-msgid "dumping object inventory"
+#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:947
+msgid "Keyword Arguments"
msgstr ""
-#: builders/html/__init__.py:1265
-#, python-format
-msgid "dumping search index in %s"
+#: ext/napoleon/docstring.py:962
+msgid "Notes"
msgstr ""
-#: builders/html/__init__.py:1308
-#, python-format
-msgid "invalid js_file: %r, ignored"
+#: ext/napoleon/docstring.py:971
+msgid "Other Parameters"
msgstr ""
-#: builders/html/__init__.py:1342
-msgid "Many math_renderers are registered. But no math_renderer is selected."
+#: ext/napoleon/docstring.py:1007
+msgid "Receives"
msgstr ""
-#: builders/html/__init__.py:1346
-#, python-format
-msgid "Unknown math_renderer %r is given."
+#: ext/napoleon/docstring.py:1011
+msgid "References"
msgstr ""
-#: builders/html/__init__.py:1360
-#, python-format
-msgid "html_extra_path entry %r is placed inside outdir"
+#: ext/napoleon/docstring.py:1043
+msgid "Warns"
msgstr ""
-#: builders/html/__init__.py:1365
+#: ext/napoleon/docstring.py:1047
+msgid "Yields"
+msgstr ""
+
+#: ext/autodoc/_generate.py:151
+#: ext/autodoc/_legacy_class_based/_documenters.py:859
#, python-format
-msgid "html_extra_path entry %r does not exist"
+msgid "A mocked object is detected: %r"
msgstr ""
-#: builders/html/__init__.py:1380
+#: ext/autodoc/_generate.py:334 ext/autodoc/_generate.py:348
+#: ext/autodoc/_generate.py:370 ext/autodoc/_generate.py:386
+#: ext/autodoc/_legacy_class_based/_documenters.py:1860
+#: ext/autodoc/_legacy_class_based/_documenters.py:1889
+#: ext/autodoc/_legacy_class_based/_documenters.py:1983
#, python-format
-msgid "html_static_path entry %r is placed inside outdir"
+msgid "alias of %s"
msgstr ""
-#: builders/html/__init__.py:1385
+#: ext/autodoc/_legacy_class_based/_documenters.py:1745
+#: ext/autodoc/_renderer.py:88
#, python-format
-msgid "html_static_path entry %r does not exist"
+msgid "Bases: %s"
msgstr ""
-#: builders/html/__init__.py:1396 builders/latex/__init__.py:504
+#: ext/autodoc/_directive_options.py:226
+#: ext/autodoc/_legacy_class_based/_directive_options.py:47
#, python-format
-msgid "logo file %r does not exist"
+msgid "invalid value for member-order option: %s"
msgstr ""
-#: builders/html/__init__.py:1407
+#: ext/autodoc/_directive_options.py:233
+#: ext/autodoc/_legacy_class_based/_directive_options.py:55
#, python-format
-msgid "favicon file %r does not exist"
+msgid "invalid value for class-doc-from option: %s"
msgstr ""
-#: builders/html/__init__.py:1420
+#: ext/autodoc/_legacy_class_based/_documenters.py:239
+#: ext/autodoc/_names.py:45
#, python-format
-msgid ""
-"Values in 'html_sidebars' must be a list of strings. At least one pattern "
-"has a string value: %s. Change to `html_sidebars = %r`."
+msgid "invalid signature for auto%s (%r)"
msgstr ""
-#: builders/html/__init__.py:1433
+#: ext/autodoc/_legacy_class_based/_documenters.py:800
+#: ext/autodoc/_names.py:53 ext/autodoc/_names.py:101
+#, python-format
msgid ""
-"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
-"configuration options)"
+"don't know which module to import for autodocumenting %r (try placing a "
+"\"module\" or \"currentmodule\" directive in the document, or giving an "
+"explicit module name)"
msgstr ""
-#: builders/html/__init__.py:1449
+#: ext/autodoc/_names.py:89
#, python-format
-msgid "%s %s documentation"
-msgstr "%s %s Dokumentation"
+msgid "signature arguments given for automodule: '%s'"
+msgstr ""
-#: builders/html/_build_info.py:32
-msgid "failed to read broken build info file (unknown version)"
+#: ext/autodoc/_names.py:93
+#, python-format
+msgid "return annotation given for automodule: '%s'"
msgstr ""
-#: builders/html/_build_info.py:36
-msgid "failed to read broken build info file (missing config entry)"
+#: ext/autodoc/_legacy_class_based/_documenters.py:956
+#: ext/autodoc/_names.py:134
+msgid "\"::\" in automodule name doesn't make sense"
msgstr ""
-#: builders/html/_build_info.py:39
-msgid "failed to read broken build info file (missing tags entry)"
+#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:984
+#, python-format
+msgid "Failed to remove %s: %s"
msgstr ""
-#: builders/latex/__init__.py:118
+#: ext/apidoc/_generate.py:69
#, python-format
-msgid "The LaTeX files are in %(outdir)s."
+msgid "Would create file %s."
msgstr ""
-#: builders/latex/__init__.py:121
+#: ext/apidoc/_cli.py:28
msgid ""
"\n"
-"Run 'make' in that directory to run these through (pdf)latex\n"
-"(use `make latexpdf' here to do that automatically)."
+"Look recursively in for Python modules and packages and create\n"
+"one reST file with automodule directives per package in the .\n"
+"\n"
+"The s can be file and/or directory patterns that will be\n"
+"excluded from generation.\n"
+"\n"
+"Note: By default this script will not overwrite already created files."
msgstr ""
-#: builders/latex/__init__.py:159
-msgid "no \"latex_documents\" config value found; no documents will be written"
+#: ext/apidoc/_cli.py:45
+msgid "path to module to document"
msgstr ""
-#: builders/latex/__init__.py:170
-#, python-format
-msgid "\"latex_documents\" config value references unknown document %s"
+#: ext/apidoc/_cli.py:50
+msgid ""
+"fnmatch-style file and/or directory patterns to exclude from generation"
msgstr ""
-#: builders/latex/__init__.py:209 templates/latex/latex.tex.jinja:91
-msgid "Release"
-msgstr "Release"
+#: ext/apidoc/_cli.py:60
+msgid "directory to place all output"
+msgstr ""
-#: builders/latex/__init__.py:428
-msgid "copying TeX support files"
+#: ext/apidoc/_cli.py:75
+msgid "maximum depth of submodules to show in the TOC (default: 4)"
msgstr ""
-#: builders/latex/__init__.py:465
-msgid "copying additional files"
+#: ext/apidoc/_cli.py:82
+msgid "overwrite existing files"
msgstr ""
-#: builders/latex/__init__.py:536
-#, python-format
-msgid "Unknown configure key: latex_elements[%r], ignored."
+#: ext/apidoc/_cli.py:91
+msgid ""
+"follow symbolic links. Powerful when combined with "
+"collective.recipe.omelette."
msgstr ""
-#: builders/latex/__init__.py:544
-#, python-format
-msgid "Unknown theme option: latex_theme_options[%r], ignored."
+#: ext/apidoc/_cli.py:99
+msgid "run the script without creating files"
msgstr ""
-#: builders/latex/transforms.py:120
-msgid "Failed to get a docname!"
+#: ext/apidoc/_cli.py:106
+msgid "put documentation for each module on its own page"
msgstr ""
-#: builders/latex/transforms.py:121
-#, python-format
-msgid "Failed to get a docname for source %r!"
+#: ext/apidoc/_cli.py:113
+msgid "include \"_private\" modules"
msgstr ""
-#: builders/latex/transforms.py:487
-#, python-format
-msgid "No footnote was found for given reference node %r"
+#: ext/apidoc/_cli.py:120
+msgid "filename of table of contents (default: modules)"
msgstr ""
-#: builders/latex/theming.py:88
-#, python-format
-msgid "%r doesn't have \"theme\" setting"
+#: ext/apidoc/_cli.py:127
+msgid "don't create a table of contents file"
msgstr ""
-#: builders/latex/theming.py:91
-#, python-format
-msgid "%r doesn't have \"%s\" setting"
+#: ext/apidoc/_cli.py:135
+msgid ""
+"don't create headings for the module/package packages (e.g. when the "
+"docstrings already contain them)"
+msgstr ""
+
+#: ext/apidoc/_cli.py:145
+msgid "put module documentation before submodule documentation"
+msgstr ""
+
+#: ext/apidoc/_cli.py:152
+msgid ""
+"interpret module paths according to PEP-0420 implicit namespaces "
+"specification"
+msgstr ""
+
+#: ext/apidoc/_cli.py:160
+msgid ""
+"Comma-separated list of options to pass to automodule directive (or use "
+"SPHINX_APIDOC_OPTIONS)."
msgstr ""
-#: templates/latex/longtable.tex.jinja:52
-#: templates/latex/sphinxmessages.sty.jinja:8
-msgid "continued from previous page"
-msgstr "Fortsetzung der vorherigen Seite"
-
-#: templates/latex/longtable.tex.jinja:63
-#: templates/latex/sphinxmessages.sty.jinja:9
-msgid "continues on next page"
-msgstr "Fortsetzung auf der nächsten Seite"
+#: ext/apidoc/_cli.py:170
+msgid "file suffix (default: rst)"
+msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:10
-msgid "Non-alphabetical"
+#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:950
+msgid "Remove existing files in the output directory that were not generated"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:12
-msgid "Numbers"
+#: ext/apidoc/_cli.py:186
+msgid "generate a full project with sphinx-quickstart"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:13
-msgid "page"
-msgstr "Seite"
+#: ext/apidoc/_cli.py:193
+msgid "append module_path to sys.path, used when --full is given"
+msgstr ""
-#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:940
-msgid "Keyword Arguments"
+#: ext/apidoc/_cli.py:200
+msgid "project name (default: root module name)"
msgstr ""
-#: ext/napoleon/docstring.py:176
-#, python-format
-msgid "invalid value set (missing closing brace): %s"
+#: ext/apidoc/_cli.py:207
+msgid "project author(s), used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:183
-#, python-format
-msgid "invalid value set (missing opening brace): %s"
+#: ext/apidoc/_cli.py:214
+msgid "project version, used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:190
-#, python-format
-msgid "malformed string literal (missing closing quote): %s"
+#: ext/apidoc/_cli.py:222
+msgid "project release, used when --full is given, defaults to --doc-version"
msgstr ""
-#: ext/napoleon/docstring.py:197
-#, python-format
-msgid "malformed string literal (missing opening quote): %s"
+#: ext/apidoc/_cli.py:226
+msgid "extension options"
msgstr ""
-#: ext/napoleon/docstring.py:895
-msgid "Example"
+#: ext/apidoc/_cli.py:232
+msgid "enable arbitrary extensions, used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:896
-msgid "Examples"
+#: ext/apidoc/_cli.py:240
+#, python-format
+msgid "enable %s extension, used when --full is given"
msgstr ""
-#: ext/napoleon/docstring.py:956
-msgid "Notes"
+#: ext/apidoc/_cli.py:291
+#, python-format
+msgid "%s is not a directory."
msgstr ""
-#: ext/napoleon/docstring.py:965
-msgid "Other Parameters"
+#: ext/apidoc/_extension.py:50
+msgid "Running apidoc"
msgstr ""
-#: ext/napoleon/docstring.py:1001
-msgid "Receives"
+#: ext/apidoc/_extension.py:102
+#, python-format
+msgid "apidoc_modules item %i must be a dict"
msgstr ""
-#: ext/napoleon/docstring.py:1005
-msgid "References"
+#: ext/apidoc/_extension.py:110
+#, python-format
+msgid "apidoc_modules item %i must have a 'path' key"
msgstr ""
-#: ext/napoleon/docstring.py:1037
-msgid "Warns"
+#: ext/apidoc/_extension.py:115
+#, python-format
+msgid "apidoc_modules item %i 'path' must be a string"
msgstr ""
-#: ext/napoleon/docstring.py:1041
-msgid "Yields"
+#: ext/apidoc/_extension.py:121
+#, python-format
+msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
msgstr ""
-#: ext/autosummary/__init__.py:284
+#: ext/apidoc/_extension.py:133
#, python-format
-msgid "autosummary references excluded document %r. Ignored."
+msgid "apidoc_modules item %i must have a 'destination' key"
msgstr ""
-#: ext/autosummary/__init__.py:288
+#: ext/apidoc/_extension.py:140
#, python-format
-msgid ""
-"autosummary: stub file not found %r. Check your autosummary_generate "
-"setting."
+msgid "apidoc_modules item %i 'destination' must be a string"
msgstr ""
-#: ext/autosummary/__init__.py:309
-msgid "A captioned autosummary requires :toctree: option. ignored."
+#: ext/apidoc/_extension.py:147
+#, python-format
+msgid "apidoc_modules item %i 'destination' should be a relative path"
msgstr ""
-#: ext/autosummary/__init__.py:384
+#: ext/apidoc/_extension.py:157
#, python-format
-msgid ""
-"autosummary: failed to import %s.\n"
-"Possible hints:\n"
-"%s"
+msgid "apidoc_modules item %i cannot create destination directory: %s"
msgstr ""
-#: ext/autosummary/__init__.py:404
+#: ext/apidoc/_extension.py:178
#, python-format
-msgid "failed to parse name %s"
+msgid "apidoc_modules item %i '%s' must be an int"
msgstr ""
-#: ext/autosummary/__init__.py:412
+#: ext/apidoc/_extension.py:192
#, python-format
-msgid "failed to import object %s"
+msgid "apidoc_modules item %i '%s' must be a boolean"
msgstr ""
-#: ext/autosummary/__init__.py:730
+#: ext/apidoc/_extension.py:210
#, python-format
-msgid ""
-"Summarised items should not include the current module. Replace %r with %r."
+msgid "apidoc_modules item %i has unexpected keys: %s"
msgstr ""
-#: ext/autosummary/__init__.py:927
+#: ext/apidoc/_extension.py:248
#, python-format
-msgid "autosummary_generate: file not found: %s"
+msgid "apidoc_modules item %i '%s' must be a sequence"
msgstr ""
-#: ext/autosummary/__init__.py:937
-msgid ""
-"autosummary generates .rst files internally. But your source_suffix does not"
-" contain .rst. Skipped."
+#: ext/apidoc/_extension.py:257
+#, python-format
+msgid "apidoc_modules item %i '%s' must contain strings"
msgstr ""
-#: ext/autosummary/generate.py:232 ext/autosummary/generate.py:450
+#: ext/autosummary/generate.py:212 ext/autosummary/generate.py:425
#, python-format
msgid ""
"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
"%s"
msgstr ""
-#: ext/autosummary/generate.py:588
+#: ext/autosummary/generate.py:630
#, python-format
msgid "[autosummary] generating autosummary for: %s"
msgstr ""
-#: ext/autosummary/generate.py:592
+#: ext/autosummary/generate.py:634
#, python-format
msgid "[autosummary] writing to %s"
msgstr ""
-#: ext/autosummary/generate.py:637
+#: ext/autosummary/generate.py:679
#, python-format
msgid ""
"[autosummary] failed to import %s.\n"
@@ -3723,7 +3655,7 @@ msgid ""
"%s"
msgstr ""
-#: ext/autosummary/generate.py:836
+#: ext/autosummary/generate.py:877
msgid ""
"\n"
"Generate ReStructuredText using autosummary directives.\n"
@@ -3738,481 +3670,639 @@ msgid ""
" pydoc sphinx.ext.autosummary\n"
msgstr ""
-#: ext/autosummary/generate.py:858
+#: ext/autosummary/generate.py:899
msgid "source files to generate rST files for"
msgstr ""
-#: ext/autosummary/generate.py:866
+#: ext/autosummary/generate.py:907
msgid "directory to place all output in"
msgstr ""
-#: ext/autosummary/generate.py:874
+#: ext/autosummary/generate.py:915
#, python-format
msgid "default suffix for files (default: %(default)s)"
msgstr ""
-#: ext/autosummary/generate.py:882
+#: ext/autosummary/generate.py:923
#, python-format
msgid "custom template directory (default: %(default)s)"
msgstr ""
-#: ext/autosummary/generate.py:890
+#: ext/autosummary/generate.py:931
#, python-format
msgid "document imported members (default: %(default)s)"
msgstr ""
-#: ext/autosummary/generate.py:899
+#: ext/autosummary/generate.py:940
#, python-format
msgid ""
"document exactly the members in module __all__ attribute. (default: "
"%(default)s)"
msgstr ""
-#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:909
-msgid "Remove existing files in the output directory that were not generated"
+#: ext/autosummary/__init__.py:235
+#, python-format
+msgid "autosummary references excluded document %r. Ignored."
msgstr ""
-#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:944
+#: ext/autosummary/__init__.py:239
#, python-format
-msgid "Failed to remove %s: %s"
+msgid ""
+"autosummary: stub file not found %r. Check your autosummary_generate "
+"setting."
msgstr ""
-#: ext/apidoc/_cli.py:28
+#: ext/autosummary/__init__.py:260
+msgid "A captioned autosummary requires :toctree: option. ignored."
+msgstr ""
+
+#: ext/autosummary/__init__.py:329
+#, python-format
msgid ""
-"\n"
-"Look recursively in for Python modules and packages and create\n"
-"one reST file with automodule directives per package in the .\n"
-"\n"
-"The s can be file and/or directory patterns that will be\n"
-"excluded from generation.\n"
-"\n"
-"Note: By default this script will not overwrite already created files."
+"autosummary: failed to import %s.\n"
+"Possible hints:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:45
-msgid "path to module to document"
+#: ext/autosummary/__init__.py:358
+#, python-format
+msgid "failed to import object %s"
msgstr ""
-#: ext/apidoc/_cli.py:50
+#: ext/autosummary/__init__.py:652
+#, python-format
msgid ""
-"fnmatch-style file and/or directory patterns to exclude from generation"
+"Summarised items should not include the current module. Replace %r with %r."
msgstr ""
-#: ext/apidoc/_cli.py:60
-msgid "directory to place all output"
+#: ext/autosummary/__init__.py:850
+#, python-format
+msgid "autosummary_generate: file not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:75
-msgid "maximum depth of submodules to show in the TOC (default: 4)"
+#: ext/autosummary/__init__.py:860
+msgid ""
+"autosummary generates .rst files internally. But your source_suffix does not"
+" contain .rst. Skipped."
msgstr ""
-#: ext/apidoc/_cli.py:82
-msgid "overwrite existing files"
+#: ext/intersphinx/_load.py:61
+#, python-format
+msgid ""
+"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
+"identifiers must be non-empty strings."
msgstr ""
-#: ext/apidoc/_cli.py:91
+#: ext/intersphinx/_load.py:72
+#, python-format
msgid ""
-"follow symbolic links. Powerful when combined with "
-"collective.recipe.omelette."
+"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
+"or list."
msgstr ""
-#: ext/apidoc/_cli.py:99
-msgid "run the script without creating files"
+#: ext/intersphinx/_load.py:83
+#, python-format
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
+" inventory locations) pair."
msgstr ""
-#: ext/apidoc/_cli.py:106
-msgid "put documentation for each module on its own page"
+#: ext/intersphinx/_load.py:94
+#, python-format
+msgid ""
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique non-empty strings."
msgstr ""
-#: ext/apidoc/_cli.py:113
-msgid "include \"_private\" modules"
+#: ext/intersphinx/_load.py:103
+#, python-format
+msgid ""
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique (other instance in intersphinx_mapping[%r])."
msgstr ""
-#: ext/apidoc/_cli.py:120
-msgid "filename of table of contents (default: modules)"
+#: ext/intersphinx/_load.py:122
+#, python-format
+msgid ""
+"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
+"Inventory locations must be non-empty strings or None."
msgstr ""
-#: ext/apidoc/_cli.py:127
-msgid "don't create a table of contents file"
+#: ext/intersphinx/_load.py:132
+msgid "Invalid `intersphinx_mapping` configuration (1 error)."
msgstr ""
-#: ext/apidoc/_cli.py:135
-msgid ""
-"don't create headings for the module/package packages (e.g. when the "
-"docstrings already contain them)"
+#: ext/intersphinx/_load.py:135
+#, python-format
+msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
msgstr ""
-#: ext/apidoc/_cli.py:145
-msgid "put module documentation before submodule documentation"
+#: ext/intersphinx/_load.py:158
+msgid "An invalid intersphinx_mapping entry was added after normalisation."
msgstr ""
-#: ext/apidoc/_cli.py:152
+#: ext/intersphinx/_load.py:297
+#, python-format
+msgid "loading intersphinx inventory '%s' from %s ..."
+msgstr ""
+
+#: ext/intersphinx/_load.py:324
msgid ""
-"interpret module paths according to PEP-0420 implicit namespaces "
-"specification"
+"encountered some issues with some of the inventories, but they had working "
+"alternatives:"
msgstr ""
-#: ext/apidoc/_cli.py:160
+#: ext/intersphinx/_load.py:332
+#, python-format
msgid ""
-"Comma-separated list of options to pass to automodule directive (or use "
-"SPHINX_APIDOC_OPTIONS)."
+"failed to reach any of the inventories with the following issues:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:170
-msgid "file suffix (default: rst)"
+#: ext/intersphinx/_load.py:411
+#, python-format
+msgid "intersphinx inventory has moved: %s -> %s"
msgstr ""
-#: ext/apidoc/_cli.py:186
-msgid "generate a full project with sphinx-quickstart"
+#: ext/intersphinx/_resolve.py:53
+#, python-format
+msgid "(in %s %s)"
msgstr ""
-#: ext/apidoc/_cli.py:193
-msgid "append module_path to sys.path, used when --full is given"
+#: ext/intersphinx/_resolve.py:55
+#, python-format
+msgid "(in %s)"
msgstr ""
-#: ext/apidoc/_cli.py:200
-msgid "project name (default: root module name)"
+#: ext/intersphinx/_resolve.py:112
+#, python-format
+msgid "inventory '%s': duplicate matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:207
-msgid "project author(s), used when --full is given"
+#: ext/intersphinx/_resolve.py:122
+#, python-format
+msgid "inventory '%s': multiple matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:214
-msgid "project version, used when --full is given"
+#: ext/intersphinx/_resolve.py:387
+#, python-format
+msgid "inventory for external cross-reference not found: %r"
msgstr ""
-#: ext/apidoc/_cli.py:222
-msgid "project release, used when --full is given, defaults to --doc-version"
+#: ext/intersphinx/_resolve.py:396
+#, python-format
+msgid "invalid external cross-reference suffix: %r"
msgstr ""
-#: ext/apidoc/_cli.py:226
-msgid "extension options"
+#: ext/intersphinx/_resolve.py:407
+#, python-format
+msgid "domain for external cross-reference not found: %r"
+msgstr ""
+
+#: ext/intersphinx/_resolve.py:561
+#, python-format
+msgid "external %s:%s reference target not found: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_loader.py:144
+#: ext/autodoc/_legacy_class_based/_documenters.py:882
+#, python-format
+msgid "error while formatting signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_loader.py:193
+#, python-format
+msgid "Ignoring invalid __all__ in module %s: %r"
msgstr ""
-#: ext/apidoc/_cli.py:232
-msgid "enable arbitrary extensions, used when --full is given"
+#: ext/autodoc/_dynamic/_loader.py:332 ext/autodoc/_dynamic/_signatures.py:496
+#: ext/autodoc/_dynamic/_signatures.py:612
+#: ext/autodoc/_legacy_class_based/_documenters.py:1284
+#: ext/autodoc/_legacy_class_based/_documenters.py:1372
+#: ext/autodoc/_legacy_class_based/_documenters.py:2906
+#, python-format
+msgid "Failed to get a function signature for %s: %s"
msgstr ""
-#: ext/apidoc/_cli.py:240
+#: ext/autodoc/_dynamic/_type_comments.py:120
#, python-format
-msgid "enable %s extension, used when --full is given"
+msgid "Failed to update signature for %r: parameter not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:291
+#: ext/autodoc/_dynamic/_type_comments.py:123
#, python-format
-msgid "%s is not a directory."
+msgid "Failed to parse type_comment for %r: %s"
msgstr ""
-#: ext/apidoc/_extension.py:50
-msgid "Running apidoc"
+#: ext/autodoc/_dynamic/_docstrings.py:268
+#: ext/autodoc/_legacy_class_based/_documenters.py:2499
+#, python-format
+msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
-#: ext/apidoc/_extension.py:102
+#: ext/autodoc/_dynamic/_signatures.py:102
+#: ext/autodoc/_legacy_class_based/_documenters.py:358
#, python-format
-msgid "apidoc_modules item %i must be a dict"
+msgid "error while formatting arguments for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:110
+#: ext/autodoc/_dynamic/_signatures.py:494
+#: ext/autodoc/_legacy_class_based/_documenters.py:1607
#, python-format
-msgid "apidoc_modules item %i must have a 'path' key"
+msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:115
+#: ext/autodoc/_dynamic/_signatures.py:498
+#: ext/autodoc/_legacy_class_based/_documenters.py:2235
+#: ext/autodoc/_legacy_class_based/_documenters.py:2355
#, python-format
-msgid "apidoc_modules item %i 'path' must be a string"
+msgid "Failed to get a method signature for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:121
+#: ext/autodoc/_dynamic/_signatures.py:500
#, python-format
-msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
+msgid "Failed to get a signature for %s: %s"
msgstr ""
-#: ext/apidoc/_extension.py:133
+#: ext/autodoc/_dynamic/_preserve_defaults.py:156
#, python-format
-msgid "apidoc_modules item %i must have a 'destination' key"
+msgid "Failed to parse a default argument value for %r: %s"
msgstr ""
-#: ext/apidoc/_extension.py:140
+#: ext/autodoc/_dynamic/_member_finder.py:420
#, python-format
-msgid "apidoc_modules item %i 'destination' must be a string"
+msgid ""
+"attribute %s is listed in :members: but is missing as it was not found in "
+"object %r"
msgstr ""
-#: ext/apidoc/_extension.py:147
+#: ext/autodoc/_dynamic/_member_finder.py:473
+#: ext/autodoc/_legacy_class_based/_documenters.py:677
#, python-format
-msgid "apidoc_modules item %i 'destination' should be a relative path"
+msgid ""
+"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_extension.py:157
+#: ext/autodoc/_legacy_class_based/_documenters.py:964
#, python-format
-msgid "apidoc_modules item %i cannot create destination directory: %s"
+msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
-#: ext/apidoc/_extension.py:178
+#: ext/autodoc/_legacy_class_based/_documenters.py:980
#, python-format
-msgid "apidoc_modules item %i '%s' must be an int"
+msgid ""
+"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
+"__all__"
msgstr ""
-#: ext/apidoc/_extension.py:192
+#: ext/autodoc/_legacy_class_based/_documenters.py:1057
#, python-format
-msgid "apidoc_modules item %i '%s' must be a boolean"
+msgid ""
+"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
-#: ext/apidoc/_extension.py:210
+#: ext/autodoc/_legacy_class_based/_documenters.py:1764
#, python-format
-msgid "apidoc_modules item %i has unexpected keys: %s"
+msgid "missing attribute %s in object %s"
msgstr ""
-#: ext/apidoc/_extension.py:247
+#: ext/autodoc/_legacy_class_based/_documenters.py:1876
#, python-format
-msgid "apidoc_modules item %i '%s' must be a sequence"
+msgid "alias of TypeVar(%s)"
msgstr ""
-#: ext/apidoc/_extension.py:256
-#, python-format
-msgid "apidoc_modules item %i '%s' must contain strings"
+#: builders/html/_build_info.py:32
+msgid "failed to read broken build info file (unknown version)"
msgstr ""
-#: ext/apidoc/_generate.py:69
+#: builders/html/_build_info.py:36
+msgid "failed to read broken build info file (missing config entry)"
+msgstr ""
+
+#: builders/html/_build_info.py:39
+msgid "failed to read broken build info file (missing tags entry)"
+msgstr ""
+
+#: builders/html/__init__.py:114
#, python-format
-msgid "Would create file %s."
+msgid "The HTML pages are in %(outdir)s."
msgstr ""
-#: ext/intersphinx/_resolve.py:49
+#: builders/html/__init__.py:337
#, python-format
-msgid "(in %s v%s)"
-msgstr "(in %s v%s)"
+msgid "Failed to read build info file: %r"
+msgstr ""
+
+#: builders/html/__init__.py:353
+msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+msgstr ""
+
+#: builders/html/__init__.py:355
+msgid "building [html]: "
+msgstr ""
-#: ext/intersphinx/_resolve.py:51
+#: builders/html/__init__.py:372
#, python-format
-msgid "(in %s)"
+msgid ""
+"template %s has been changed since the previous build, all docs will be "
+"rebuilt"
msgstr ""
-#: ext/intersphinx/_resolve.py:108
+#: builders/html/__init__.py:496
+msgid "index"
+msgstr "Index"
+
+#: builders/html/__init__.py:549
#, python-format
-msgid "inventory '%s': duplicate matches found for %s:%s"
+msgid "Logo of %s"
+msgstr ""
+
+#: builders/html/__init__.py:578
+msgid "next"
+msgstr "weiter"
+
+#: builders/html/__init__.py:587
+msgid "previous"
+msgstr "zurück"
+
+#: builders/html/__init__.py:685
+msgid "generating indices"
+msgstr ""
+
+#: builders/html/__init__.py:700
+msgid "writing additional pages"
msgstr ""
-#: ext/intersphinx/_resolve.py:118
+#: builders/html/__init__.py:783
#, python-format
-msgid "inventory '%s': multiple matches found for %s:%s"
+msgid "cannot copy image file '%s': %s"
+msgstr ""
+
+#: builders/html/__init__.py:795
+msgid "copying downloadable files... "
msgstr ""
-#: ext/intersphinx/_resolve.py:383
+#: builders/html/__init__.py:807
#, python-format
-msgid "inventory for external cross-reference not found: %r"
+msgid "cannot copy downloadable file %r: %s"
msgstr ""
-#: ext/intersphinx/_resolve.py:392
+#: builders/html/__init__.py:853
#, python-format
-msgid "invalid external cross-reference suffix: %r"
+msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:403
+#: builders/html/__init__.py:871
#, python-format
-msgid "domain for external cross-reference not found: %r"
+msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:619
+#: builders/html/__init__.py:906
+msgid "copying static files"
+msgstr ""
+
+#: builders/html/__init__.py:923
#, python-format
-msgid "external %s:%s reference target not found: %s"
+msgid "cannot copy static file %r"
+msgstr ""
+
+#: builders/html/__init__.py:928
+msgid "copying extra files"
msgstr ""
-#: ext/intersphinx/_load.py:60
+#: builders/html/__init__.py:938
#, python-format
-msgid ""
-"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
-"identifiers must be non-empty strings."
+msgid "cannot copy extra file %r"
msgstr ""
-#: ext/intersphinx/_load.py:71
+#: builders/html/__init__.py:944
#, python-format
+msgid "Failed to write build info file: %r"
+msgstr ""
+
+#: builders/html/__init__.py:994
msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
-"or list."
+"search index couldn't be loaded, but not all documents will be built: the "
+"index will be incomplete."
msgstr ""
-#: ext/intersphinx/_load.py:82
+#: builders/html/__init__.py:1038
#, python-format
-msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
-" inventory locations) pair."
+msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr ""
-#: ext/intersphinx/_load.py:93
+#: builders/html/__init__.py:1204
#, python-format
msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique non-empty strings."
+"a Unicode error occurred when rendering the page %s. Please make sure all "
+"config values that contain non-ASCII content are Unicode strings."
msgstr ""
-#: ext/intersphinx/_load.py:102
+#: builders/html/__init__.py:1217
#, python-format
msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique (other instance in intersphinx_mapping[%r])."
+"The '%s' theme does not support this version of Sphinx, because it uses the "
+"'style' field in HTML templates, which was was deprecated in Sphinx 5.1 and"
+" removed in Sphinx 7.0. The theme must be updated to use the 'styles' field "
+"instead. See https://www.sphinx-"
+"doc.org/en/master/development/html_themes/templating.html#styles"
msgstr ""
-#: ext/intersphinx/_load.py:121
+#: builders/html/__init__.py:1225
#, python-format
msgid ""
-"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
-"Inventory locations must be non-empty strings or None."
+"An error happened in rendering the page %s.\n"
+"Reason: %r"
msgstr ""
-#: ext/intersphinx/_load.py:131
-msgid "Invalid `intersphinx_mapping` configuration (1 error)."
+#: builders/html/__init__.py:1258
+msgid "dumping object inventory"
msgstr ""
-#: ext/intersphinx/_load.py:134
+#: builders/html/__init__.py:1266
#, python-format
-msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
+msgid "dumping search index in %s"
msgstr ""
-#: ext/intersphinx/_load.py:157
-msgid "An invalid intersphinx_mapping entry was added after normalisation."
+#: builders/html/__init__.py:1313
+#, python-format
+msgid "invalid js_file: %r, ignored"
msgstr ""
-#: ext/intersphinx/_load.py:261
-#, python-format
-msgid "loading intersphinx inventory '%s' from %s ..."
+#: builders/html/__init__.py:1347
+msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr ""
-#: ext/intersphinx/_load.py:287
-msgid ""
-"encountered some issues with some of the inventories, but they had working "
-"alternatives:"
+#: builders/html/__init__.py:1351
+#, python-format
+msgid "Unknown math_renderer %r is given."
msgstr ""
-#: ext/intersphinx/_load.py:297
-msgid "failed to reach any of the inventories with the following issues:"
+#: builders/html/__init__.py:1365
+#, python-format
+msgid "html_extra_path entry %r is placed inside outdir"
msgstr ""
-#: ext/intersphinx/_load.py:361
+#: builders/html/__init__.py:1370
#, python-format
-msgid "intersphinx inventory has moved: %s -> %s"
+msgid "html_extra_path entry %r does not exist"
msgstr ""
-#: ext/autodoc/__init__.py:150
+#: builders/html/__init__.py:1385
#, python-format
-msgid "invalid value for member-order option: %s"
+msgid "html_static_path entry %r is placed inside outdir"
msgstr ""
-#: ext/autodoc/__init__.py:158
+#: builders/html/__init__.py:1390
#, python-format
-msgid "invalid value for class-doc-from option: %s"
+msgid "html_static_path entry %r does not exist"
msgstr ""
-#: ext/autodoc/__init__.py:460
+#: builders/html/__init__.py:1401 builders/latex/__init__.py:497
#, python-format
-msgid "invalid signature for auto%s (%r)"
+msgid "logo file %r does not exist"
msgstr ""
-#: ext/autodoc/__init__.py:579
+#: builders/html/__init__.py:1412
#, python-format
-msgid "error while formatting arguments for %s: %s"
+msgid "favicon file %r does not exist"
msgstr ""
-#: ext/autodoc/__init__.py:898
+#: builders/html/__init__.py:1425
#, python-format
msgid ""
-"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
-"%s"
+"Values in 'html_sidebars' must be a list of strings. At least one pattern "
+"has a string value: %s. Change to `html_sidebars = %r`."
msgstr ""
-#: ext/autodoc/__init__.py:1021
-#, python-format
+#: builders/html/__init__.py:1438
msgid ""
-"don't know which module to import for autodocumenting %r (try placing a "
-"\"module\" or \"currentmodule\" directive in the document, or giving an "
-"explicit module name)"
+"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
+"configuration options)"
msgstr ""
-#: ext/autodoc/__init__.py:1080
+#: builders/html/__init__.py:1454
#, python-format
-msgid "A mocked object is detected: %r"
+msgid "%s %s documentation"
+msgstr "%s %s Dokumentation"
+
+#: builders/latex/theming.py:87
+#, python-format
+msgid "%r doesn't have \"theme\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:1103
+#: builders/latex/theming.py:90
#, python-format
-msgid "error while formatting signature for %s: %s"
+msgid "%r doesn't have \"%s\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:1177
-msgid "\"::\" in automodule name doesn't make sense"
+#: builders/latex/transforms.py:120
+msgid "Failed to get a docname!"
msgstr ""
-#: ext/autodoc/__init__.py:1185
+#: builders/latex/transforms.py:121
#, python-format
-msgid "signature arguments or return annotation given for automodule %s"
+msgid "Failed to get a docname for source %r!"
msgstr ""
-#: ext/autodoc/__init__.py:1201
+#: builders/latex/transforms.py:487
#, python-format
-msgid ""
-"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
-"__all__"
+msgid "No footnote was found for given reference node %r"
msgstr ""
-#: ext/autodoc/__init__.py:1278
+#: builders/latex/__init__.py:115
#, python-format
+msgid "The LaTeX files are in %(outdir)s."
+msgstr ""
+
+#: builders/latex/__init__.py:118
msgid ""
-"missing attribute mentioned in :members: option: module %s, attribute %s"
+"\n"
+"Run 'make' in that directory to run these through (pdf)latex\n"
+"(use `make latexpdf' here to do that automatically)."
msgstr ""
-#: ext/autodoc/__init__.py:1505 ext/autodoc/__init__.py:1593
-#: ext/autodoc/__init__.py:3127
+#: builders/latex/__init__.py:156
+msgid "no \"latex_documents\" config value found; no documents will be written"
+msgstr ""
+
+#: builders/latex/__init__.py:167
#, python-format
-msgid "Failed to get a function signature for %s: %s"
+msgid "\"latex_documents\" config value references unknown document %s"
+msgstr ""
+
+#: builders/latex/__init__.py:421
+msgid "copying TeX support files"
msgstr ""
-#: ext/autodoc/__init__.py:1828
+#: builders/latex/__init__.py:458
+msgid "copying additional files"
+msgstr ""
+
+#: builders/latex/__init__.py:529
#, python-format
-msgid "Failed to get a constructor signature for %s: %s"
+msgid "Unknown configure key: latex_elements[%r], ignored."
msgstr ""
-#: ext/autodoc/__init__.py:1966
+#: builders/latex/__init__.py:537
#, python-format
-msgid "Bases: %s"
+msgid "Unknown theme option: latex_theme_options[%r], ignored."
+msgstr ""
+
+#: environment/collectors/toctree.py:259
+#, python-format
+msgid "%s is already assigned section numbers (nested numbered toctree?)"
msgstr ""
-#: ext/autodoc/__init__.py:1985
+#: environment/collectors/asset.py:98
#, python-format
-msgid "missing attribute %s in object %s"
+msgid "image file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2081 ext/autodoc/__init__.py:2110
-#: ext/autodoc/__init__.py:2204
+#: environment/collectors/asset.py:126
#, python-format
-msgid "alias of %s"
+msgid "image file %s not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2097
+#: environment/collectors/asset.py:165
#, python-format
-msgid "alias of TypeVar(%s)"
+msgid "download file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2456 ext/autodoc/__init__.py:2576
+#: environment/adapters/toctree.py:335
#, python-format
-msgid "Failed to get a method signature for %s: %s"
+msgid "circular toctree references detected, ignoring: %s <- %s"
msgstr ""
-#: ext/autodoc/__init__.py:2720
+#: environment/adapters/toctree.py:360
#, python-format
-msgid "Invalid __slots__ found on %s. Ignored."
+msgid ""
+"toctree contains reference to document %r that doesn't have a title: no link"
+" will be generated"
msgstr ""
-#: ext/autodoc/preserve_defaults.py:195
+#: environment/adapters/toctree.py:375
#, python-format
-msgid "Failed to parse a default argument value for %r: %s"
+msgid "toctree contains reference to non-included document %r"
msgstr ""
-#: ext/autodoc/type_comment.py:151
+#: environment/adapters/toctree.py:378
#, python-format
-msgid "Failed to update signature for %r: parameter not found: %s"
+msgid "toctree contains reference to non-existing document %r"
msgstr ""
-#: ext/autodoc/type_comment.py:154
+#: environment/adapters/indexentries.py:122
#, python-format
-msgid "Failed to parse type_comment for %r: %s"
+msgid "see %s"
+msgstr "siehe %s"
+
+#: environment/adapters/indexentries.py:132
+#, python-format
+msgid "see also %s"
+msgstr "siehe auch %s"
+
+#: environment/adapters/indexentries.py:140
+#, python-format
+msgid "unknown index entry type %r"
msgstr ""
diff --git a/sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo b/sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo
index a8e26342d4b..91619ffc82b 100644
Binary files a/sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo and b/sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo differ
diff --git a/sphinx/locale/de_DE/LC_MESSAGES/sphinx.po b/sphinx/locale/de_DE/LC_MESSAGES/sphinx.po
index 7c1421aa99f..43b75f34443 100644
--- a/sphinx/locale/de_DE/LC_MESSAGES/sphinx.po
+++ b/sphinx/locale/de_DE/LC_MESSAGES/sphinx.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2025-02-18 00:38+0000\n"
+"POT-Creation-Date: 2025-12-01 16:14+0000\n"
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
"Last-Translator: FULL NAME \n"
"Language-Team: German (Germany) (http://app.transifex.com/sphinx-doc/sphinx-1/language/de_DE/)\n"
@@ -18,6 +18,127 @@ msgstr ""
"Language: de_DE\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: roles.py:205
+#, python-format
+msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgstr ""
+
+#: roles.py:228
+#, python-format
+msgid "invalid CVE number %s"
+msgstr ""
+
+#: roles.py:250
+#, python-format
+msgid "Common Weakness Enumeration; CWE %s"
+msgstr ""
+
+#: roles.py:273
+#, python-format
+msgid "invalid CWE number %s"
+msgstr ""
+
+#: roles.py:293
+#, python-format
+msgid "Python Enhancement Proposals; PEP %s"
+msgstr ""
+
+#: roles.py:316
+#, python-format
+msgid "invalid PEP number %s"
+msgstr ""
+
+#: roles.py:354
+#, python-format
+msgid "invalid RFC number %s"
+msgstr ""
+
+#: theming.py:117
+#, python-format
+msgid ""
+"Theme configuration sections other than [theme] and [options] are not "
+"supported (tried to get a value from %r)."
+msgstr ""
+
+#: theming.py:122
+#, python-format
+msgid "setting %s.%s occurs in none of the searched theme configs"
+msgstr ""
+
+#: theming.py:137
+#, python-format
+msgid "unsupported theme option %r given"
+msgstr ""
+
+#: theming.py:218
+#, python-format
+msgid "file %r on theme path is not a valid zipfile or contains no theme"
+msgstr ""
+
+#: theming.py:238
+#, python-format
+msgid "no theme named %r found (missing theme.toml?)"
+msgstr ""
+
+#: theming.py:278
+#, python-format
+msgid "The %r theme has circular inheritance"
+msgstr ""
+
+#: theming.py:286
+#, python-format
+msgid ""
+"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
+"are: %s"
+msgstr ""
+
+#: theming.py:292
+#, python-format
+msgid "The %r theme has too many ancestors"
+msgstr ""
+
+#: theming.py:320
+#, python-format
+msgid "no theme configuration file found in %r"
+msgstr ""
+
+#: theming.py:345 theming.py:398
+#, python-format
+msgid "theme %r doesn't have the \"theme\" table"
+msgstr ""
+
+#: theming.py:349
+#, python-format
+msgid "The %r theme \"[theme]\" table is not a table"
+msgstr ""
+
+#: theming.py:353 theming.py:401
+#, python-format
+msgid "The %r theme must define the \"theme.inherit\" setting"
+msgstr ""
+
+#: theming.py:357
+#, python-format
+msgid "The %r theme \"[options]\" table is not a table"
+msgstr ""
+
+#: theming.py:376
+#, python-format
+msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+msgstr ""
+
+#: project.py:72
+#, python-format
+msgid ""
+"multiple files found for the document \"%s\": %s\n"
+"Use %r for the build."
+msgstr ""
+
+#: project.py:87
+#, python-format
+msgid "Ignored unreadable document %r."
+msgstr ""
+
#: extension.py:58
#, python-format
msgid ""
@@ -32,127 +153,154 @@ msgid ""
"cannot be built with the loaded version (%s)."
msgstr ""
-#: application.py:212
+#: highlighting.py:170
+#, python-format
+msgid "Pygments lexer name %r is not known"
+msgstr ""
+
+#: highlighting.py:209
+#, python-format
+msgid ""
+"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
+"Retrying in relaxed mode."
+msgstr ""
+
+#: events.py:92
+#, python-format
+msgid "Event %r already present"
+msgstr ""
+
+#: events.py:386
+#, python-format
+msgid "Unknown event name: %s"
+msgstr ""
+
+#: events.py:451
+#, python-format
+msgid "Handler %r for event %r threw an exception"
+msgstr ""
+
+#: application.py:218
#, python-format
msgid "Cannot find source directory (%s)"
msgstr ""
-#: application.py:217
+#: application.py:223
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
-#: application.py:222
+#: application.py:228
msgid "Source directory and destination directory cannot be identical"
msgstr ""
-#: application.py:252
+#: application.py:258
#, python-format
msgid "Running Sphinx v%s"
msgstr ""
-#: application.py:278
+#: application.py:286
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr ""
-#: application.py:297
+#: application.py:305
msgid "making output directory"
msgstr ""
-#: application.py:302 registry.py:538
+#: application.py:310 registry.py:540
#, python-format
msgid "while setting up extension %s:"
msgstr ""
-#: application.py:309
+#: application.py:317
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
-#: application.py:346
+#: application.py:360
#, python-format
msgid "loading translations [%s]... "
msgstr ""
-#: application.py:370 util/display.py:89
+#: application.py:384 util/display.py:89
msgid "done"
msgstr ""
-#: application.py:372
+#: application.py:386
msgid "not available for built-in messages"
msgstr ""
-#: application.py:386
+#: application.py:400
msgid "loading pickled environment"
msgstr ""
-#: application.py:394
+#: application.py:408
#, python-format
msgid "failed: %s"
msgstr ""
-#: application.py:407
+#: application.py:423
msgid "No builder selected, using default: html"
msgstr ""
-#: application.py:439
+#: application.py:455
msgid "build finished with problems."
msgstr ""
-#: application.py:441
+#: application.py:457
msgid "build succeeded."
msgstr ""
-#: application.py:446
+#: application.py:462
msgid ""
"build finished with problems, 1 warning (with warnings treated as errors)."
msgstr ""
-#: application.py:450
+#: application.py:466
msgid "build finished with problems, 1 warning."
msgstr ""
-#: application.py:452
+#: application.py:468
msgid "build succeeded, 1 warning."
msgstr ""
-#: application.py:458
+#: application.py:474
#, python-format
msgid ""
"build finished with problems, %s warnings (with warnings treated as errors)."
msgstr ""
-#: application.py:462
+#: application.py:478
#, python-format
msgid "build finished with problems, %s warnings."
msgstr ""
-#: application.py:464
+#: application.py:480
#, python-format
msgid "build succeeded, %s warnings."
msgstr ""
-#: application.py:1026
+#: application.py:1020
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
-#: application.py:1119
+#: application.py:1113
#, python-format
msgid "directive %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1145 application.py:1173
+#: application.py:1139 application.py:1167
#, python-format
msgid "role %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1770
+#: application.py:1766
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@@ -160,12 +308,12 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1775
+#: application.py:1771
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
-#: application.py:1779
+#: application.py:1775
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@@ -173,82 +321,214 @@ msgid ""
"explicit"
msgstr ""
-#: application.py:1784
+#: application.py:1780
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
-#: application.py:1792 application.py:1796
+#: application.py:1788 application.py:1792
#, python-format
msgid "doing serial %s"
msgstr ""
-#: config.py:355
+#: registry.py:162
#, python-format
-msgid "config directory doesn't contain a conf.py file (%s)"
+msgid "Builder class %s has no \"name\" attribute"
+msgstr ""
+
+#: registry.py:166
+#, python-format
+msgid "Builder %r already exists (in module %s)"
+msgstr ""
+
+#: registry.py:182
+#, python-format
+msgid "Builder name %s not registered or available through entry point"
+msgstr ""
+
+#: registry.py:192
+#, python-format
+msgid "Builder name %s not registered"
+msgstr ""
+
+#: registry.py:199
+#, python-format
+msgid "domain %s already registered"
+msgstr ""
+
+#: registry.py:223 registry.py:244 registry.py:257
+#, python-format
+msgid "domain %s not yet registered"
+msgstr ""
+
+#: registry.py:230
+#, python-format
+msgid "The %r directive is already registered to domain %s"
+msgstr ""
+
+#: registry.py:248
+#, python-format
+msgid "The %r role is already registered to domain %s"
+msgstr ""
+
+#: registry.py:261
+#, python-format
+msgid "The %r index is already registered to domain %s"
+msgstr ""
+
+#: registry.py:308
+#, python-format
+msgid "The %r object_type is already registered"
+msgstr ""
+
+#: registry.py:339
+#, python-format
+msgid "The %r crossref_type is already registered"
+msgstr ""
+
+#: registry.py:348
+#, python-format
+msgid "source_suffix %r is already registered"
+msgstr ""
+
+#: registry.py:358
+#, python-format
+msgid "source_parser for %r is already registered"
+msgstr ""
+
+#: registry.py:367
+#, python-format
+msgid "Source parser for %s not registered"
+msgstr ""
+
+#: registry.py:388
+#, python-format
+msgid "Translator for %r already exists"
+msgstr ""
+
+#: registry.py:405
+#, python-format
+msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
msgstr ""
-#: config.py:366
+#: registry.py:498
+#, python-format
+msgid "enumerable_node %r already registered"
+msgstr ""
+
+#: registry.py:514
+#, python-format
+msgid "math renderer %s is already registered"
+msgstr ""
+
+#: registry.py:531
+#, python-format
msgid ""
-"Invalid configuration value found: 'language = None'. Update your "
-"configuration to a valid language code. Falling back to 'en' (English)."
+"the extension %r was already merged with Sphinx since version %s; this "
+"extension is ignored."
+msgstr ""
+
+#: registry.py:545
+msgid "Original exception:\n"
+msgstr ""
+
+#: registry.py:547
+#, python-format
+msgid "Could not import extension %s"
+msgstr ""
+
+#: registry.py:554
+#, python-format
+msgid ""
+"extension %r has no setup() function; is it really a Sphinx extension "
+"module?"
+msgstr ""
+
+#: registry.py:567
+#, python-format
+msgid ""
+"The %s extension used by this project needs at least Sphinx v%s; it "
+"therefore cannot be built with this version."
+msgstr ""
+
+#: registry.py:579
+#, python-format
+msgid ""
+"extension %r returned an unsupported object from its setup() function; it "
+"should return None or a metadata dictionary"
+msgstr ""
+
+#: registry.py:605
+#, python-format
+msgid "`None` is not a valid filetype for %r."
+msgstr ""
+
+#: config.py:351
+#, python-format
+msgid "config directory doesn't contain a conf.py file (%s)"
msgstr ""
-#: config.py:394
+#: config.py:374
#, python-format
msgid "'%s' must be '0' or '1', got '%s'"
msgstr ""
-#: config.py:399
+#: config.py:379
#, python-format
msgid ""
"cannot override dictionary config setting %r, ignoring (use %r to set "
"individual elements)"
msgstr ""
-#: config.py:411
+#: config.py:391
#, python-format
msgid "invalid number %r for config value %r, ignoring"
msgstr ""
-#: config.py:419
+#: config.py:399
#, python-format
msgid "cannot override config setting %r with unsupported type, ignoring"
msgstr ""
-#: config.py:442
+#: config.py:422
#, python-format
msgid "unknown config value %r in override, ignoring"
msgstr ""
-#: config.py:496
+#: config.py:476
#, python-format
msgid "No such config value: %r"
msgstr ""
-#: config.py:524
+#: config.py:504
#, python-format
msgid "Config value %r already present"
msgstr ""
-#: config.py:561
+#: config.py:541
#, python-format
msgid ""
"cannot cache unpickleable configuration value: %r (because it contains a "
"function, class, or module object)"
msgstr ""
-#: config.py:603
+#: config.py:577
+msgid ""
+"Invalid configuration value found: 'language = None'. Update your "
+"configuration to a valid language code. Falling back to 'en' (English)."
+msgstr ""
+
+#: config.py:599
#, python-format
msgid "There is a syntax error in your configuration file: %s\n"
msgstr ""
-#: config.py:607
+#: config.py:603
msgid ""
"The configuration file (or one of the modules it imports) called sys.exit()"
msgstr ""
-#: config.py:615
+#: config.py:611
#, python-format
msgid ""
"There is a programmable error in your configuration file:\n"
@@ -256,491 +536,648 @@ msgid ""
"%s"
msgstr ""
-#: config.py:637
+#: config.py:633
#, python-format
msgid "Failed to convert %r to a frozenset"
msgstr ""
-#: config.py:655 config.py:663
+#: config.py:651 config.py:659
#, python-format
msgid "Converting `source_suffix = %r` to `source_suffix = %r`."
msgstr ""
-#: config.py:669
+#: config.py:665
#, python-format
msgid ""
"The config value `source_suffix' expects a dictionary, a string, or a list "
"of strings. Got `%r' instead (type %s)."
msgstr ""
-#: config.py:690
+#: config.py:686
#, python-format
msgid "Section %s"
msgstr ""
-#: config.py:691
+#: config.py:687
#, python-format
msgid "Fig. %s"
msgstr ""
-#: config.py:692
+#: config.py:688
#, python-format
msgid "Table %s"
msgstr ""
-#: config.py:693
+#: config.py:689
#, python-format
msgid "Listing %s"
msgstr ""
-#: config.py:802
+#: config.py:798
#, python-brace-format
msgid ""
"The config value `{name}` has to be a one of {candidates}, but `{current}` "
"is given."
msgstr ""
-#: config.py:833
+#: config.py:829
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}'; expected "
"{permitted}."
msgstr ""
-#: config.py:850
+#: config.py:846
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}', defaults to "
"`{default.__name__}'."
msgstr ""
-#: config.py:862
+#: config.py:858
#, python-format
msgid "primary_domain %r not found, ignored."
msgstr ""
-#: config.py:882
+#: config.py:878
msgid ""
"Sphinx now uses \"index\" as the master document by default. To keep pre-2.0"
" behaviour, set \"master_doc = 'contents'\"."
msgstr ""
-#: highlighting.py:170
-#, python-format
-msgid "Pygments lexer name %r is not known"
+#: config.py:892
+msgid ""
+"Support for source encodings other than UTF-8 is deprecated and will be "
+"removed in Sphinx 10. Please comment at https://github.com/sphinx-"
+"doc/sphinx/issues/13665 if this causes a problem."
msgstr ""
-#: highlighting.py:209
-#, python-format
-msgid ""
-"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
-"Retrying in relaxed mode."
+#: environment/__init__.py:89
+msgid "new config"
msgstr ""
-#: theming.py:115
-#, python-format
-msgid ""
-"Theme configuration sections other than [theme] and [options] are not "
-"supported (tried to get a value from %r)."
+#: environment/__init__.py:90
+msgid "config changed"
msgstr ""
-#: theming.py:120
-#, python-format
-msgid "setting %s.%s occurs in none of the searched theme configs"
+#: environment/__init__.py:91
+msgid "extensions changed"
msgstr ""
-#: theming.py:135
-#, python-format
-msgid "unsupported theme option %r given"
+#: environment/__init__.py:261
+msgid "build environment version not current"
msgstr ""
-#: theming.py:208
-#, python-format
-msgid "file %r on theme path is not a valid zipfile or contains no theme"
+#: environment/__init__.py:263
+msgid "source directory has changed"
msgstr ""
-#: theming.py:228
+#: environment/__init__.py:350
#, python-format
-msgid "no theme named %r found (missing theme.toml?)"
+msgid "The configuration has changed (1 option: %r)"
msgstr ""
-#: theming.py:268
+#: environment/__init__.py:355
#, python-format
-msgid "The %r theme has circular inheritance"
+msgid "The configuration has changed (%d options: %s)"
msgstr ""
-#: theming.py:276
+#: environment/__init__.py:361
#, python-format
+msgid "The configuration has changed (%d options: %s, ...)"
+msgstr ""
+
+#: environment/__init__.py:404
msgid ""
-"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
-"are: %s"
+"This environment is incompatible with the selected builder, please choose "
+"another doctree directory."
msgstr ""
-#: theming.py:282
+#: environment/__init__.py:518
#, python-format
-msgid "The %r theme has too many ancestors"
+msgid "Failed to scan documents in %s: %r"
msgstr ""
-#: theming.py:310
+#: environment/__init__.py:645 ext/intersphinx/_resolve.py:238
#, python-format
-msgid "no theme configuration file found in %r"
+msgid "Domain %r is not registered"
msgstr ""
-#: theming.py:335 theming.py:388
-#, python-format
-msgid "theme %r doesn't have the \"theme\" table"
+#: environment/__init__.py:811
+msgid "document isn't included in any toctree"
msgstr ""
-#: theming.py:339
-#, python-format
-msgid "The %r theme \"[theme]\" table is not a table"
+#: environment/__init__.py:922
+msgid "self referenced toctree found. Ignored."
msgstr ""
-#: theming.py:343 theming.py:391
+#: environment/__init__.py:952
#, python-format
-msgid "The %r theme must define the \"theme.inherit\" setting"
+msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
msgstr ""
-#: theming.py:347
-#, python-format
-msgid "The %r theme \"[options]\" table is not a table"
+#: locale/__init__.py:229
+msgid "Attention"
msgstr ""
-#: theming.py:366
-#, python-format
-msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+#: locale/__init__.py:230
+msgid "Caution"
msgstr ""
-#: events.py:77
-#, python-format
-msgid "Event %r already present"
+#: locale/__init__.py:231
+msgid "Danger"
msgstr ""
-#: events.py:370
-#, python-format
-msgid "Unknown event name: %s"
+#: locale/__init__.py:232
+msgid "Error"
msgstr ""
-#: events.py:416
-#, python-format
-msgid "Handler %r for event %r threw an exception"
+#: locale/__init__.py:233
+msgid "Hint"
msgstr ""
-#: project.py:72
-#, python-format
-msgid ""
-"multiple files found for the document \"%s\": %s\n"
-"Use %r for the build."
+#: locale/__init__.py:234
+msgid "Important"
msgstr ""
-#: project.py:87
-#, python-format
-msgid "Ignored unreadable document %r."
+#: locale/__init__.py:235
+msgid "Note"
msgstr ""
-#: registry.py:167
-#, python-format
-msgid "Builder class %s has no \"name\" attribute"
+#: locale/__init__.py:236
+msgid "See also"
msgstr ""
-#: registry.py:171
-#, python-format
-msgid "Builder %r already exists (in module %s)"
+#: locale/__init__.py:237
+msgid "Tip"
msgstr ""
-#: registry.py:187
-#, python-format
-msgid "Builder name %s not registered or available through entry point"
+#: locale/__init__.py:238
+msgid "Warning"
msgstr ""
-#: registry.py:197
+#: builders/texinfo.py:41
#, python-format
-msgid "Builder name %s not registered"
+msgid "The Texinfo files are in %(outdir)s."
msgstr ""
-#: registry.py:204
-#, python-format
-msgid "domain %s already registered"
+#: builders/texinfo.py:44
+msgid ""
+"\n"
+"Run 'make' in that directory to run these through makeinfo\n"
+"(use 'make info' here to do that automatically)."
msgstr ""
-#: registry.py:228 registry.py:249 registry.py:262
-#, python-format
-msgid "domain %s not yet registered"
+#: builders/texinfo.py:73
+msgid "no \"texinfo_documents\" config value found; no documents will be written"
msgstr ""
-#: registry.py:235
+#: builders/texinfo.py:85
#, python-format
-msgid "The %r directive is already registered to domain %s"
+msgid "\"texinfo_documents\" config value references unknown document %s"
msgstr ""
-#: registry.py:253
+#: builders/latex/__init__.py:310 builders/texinfo.py:105
#, python-format
-msgid "The %r role is already registered to domain %s"
+msgid "processing %s"
msgstr ""
-#: registry.py:266
-#, python-format
-msgid "The %r index is already registered to domain %s"
+#: builders/latex/__init__.py:332 builders/manpage.py:54
+#: builders/singlehtml.py:176 builders/texinfo.py:111
+msgid "writing"
msgstr ""
-#: registry.py:313
-#, python-format
-msgid "The %r object_type is already registered"
+#: builders/latex/__init__.py:398 builders/texinfo.py:160
+msgid "resolving references..."
msgstr ""
-#: registry.py:344
-#, python-format
-msgid "The %r crossref_type is already registered"
+#: builders/latex/__init__.py:409 builders/texinfo.py:170
+msgid " (in "
msgstr ""
-#: registry.py:353
-#, python-format
-msgid "source_suffix %r is already registered"
+#: builders/_epub_base.py:425 builders/html/__init__.py:768
+#: builders/latex/__init__.py:474 builders/texinfo.py:186
+msgid "copying images... "
msgstr ""
-#: registry.py:363
+#: builders/_epub_base.py:447 builders/latex/__init__.py:489
+#: builders/texinfo.py:203
#, python-format
-msgid "source_parser for %r is already registered"
+msgid "cannot copy image file %r: %s"
msgstr ""
-#: registry.py:372
-#, python-format
-msgid "Source parser for %s not registered"
+#: builders/texinfo.py:210
+msgid "copying Texinfo support files"
msgstr ""
-#: registry.py:390
+#: builders/texinfo.py:218
#, python-format
-msgid "Translator for %r already exists"
+msgid "error writing file Makefile: %s"
msgstr ""
-#: registry.py:407
+#: builders/manpage.py:37
#, python-format
-msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
+msgid "The manual pages are in %(outdir)s."
msgstr ""
-#: registry.py:496
-#, python-format
-msgid "enumerable_node %r already registered"
+#: builders/manpage.py:45
+msgid "no \"man_pages\" config value found; no manual pages will be written"
msgstr ""
-#: registry.py:512
+#: builders/manpage.py:64
#, python-format
-msgid "math renderer %s is already registered"
+msgid "\"man_pages\" config value references unknown document %s"
msgstr ""
-#: registry.py:529
+#: builders/singlehtml.py:35
#, python-format
-msgid ""
-"the extension %r was already merged with Sphinx since version %s; this "
-"extension is ignored."
+msgid "The HTML page is in %(outdir)s."
msgstr ""
-#: registry.py:543
-msgid "Original exception:\n"
+#: builders/singlehtml.py:171
+msgid "assembling single document"
msgstr ""
-#: registry.py:545
-#, python-format
-msgid "Could not import extension %s"
+#: builders/singlehtml.py:189
+msgid "writing additional files"
msgstr ""
-#: registry.py:552
-#, python-format
-msgid ""
-"extension %r has no setup() function; is it really a Sphinx extension "
-"module?"
+#: builders/dummy.py:19
+msgid "The dummy builder generates no files."
msgstr ""
-#: registry.py:565
+#: builders/gettext.py:243
#, python-format
-msgid ""
-"The %s extension used by this project needs at least Sphinx v%s; it "
-"therefore cannot be built with this version."
+msgid "The message catalogs are in %(outdir)s."
msgstr ""
-#: registry.py:577
+#: builders/__init__.py:400 builders/gettext.py:264
#, python-format
-msgid ""
-"extension %r returned an unsupported object from its setup() function; it "
-"should return None or a metadata dictionary"
+msgid "building [%s]: "
msgstr ""
-#: registry.py:612
+#: builders/gettext.py:265
#, python-format
-msgid "`None` is not a valid filetype for %r."
+msgid "targets for %d template files"
msgstr ""
-#: roles.py:206
-#, python-format
-msgid "Common Vulnerabilities and Exposures; CVE %s"
+#: builders/gettext.py:271
+msgid "reading templates... "
msgstr ""
-#: roles.py:229
-#, python-format
-msgid "invalid CVE number %s"
+#: builders/gettext.py:310
+msgid "writing message catalogs... "
msgstr ""
-#: roles.py:251
+#: builders/linkcheck.py:87
#, python-format
-msgid "Common Weakness Enumeration; CWE %s"
+msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
msgstr ""
-#: roles.py:274
+#: builders/linkcheck.py:159
#, python-format
-msgid "invalid CWE number %s"
+msgid "broken link: %s (%s)"
msgstr ""
-#: roles.py:294
+#: builders/linkcheck.py:561
#, python-format
-msgid "Python Enhancement Proposals; PEP %s"
+msgid "Anchor '%s' not found"
msgstr ""
-#: roles.py:317
-#, python-format
-msgid "invalid PEP number %s"
+#: builders/linkcheck.py:789
+msgid "linkcheck_allowed_redirects. Expected a dictionary."
msgstr ""
-#: roles.py:355
+#: builders/linkcheck.py:799
#, python-format
-msgid "invalid RFC number %s"
+msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
-#: ext/linkcode.py:86 ext/viewcode.py:226
-msgid "[source]"
+#: builders/epub3.py:83
+#, python-format
+msgid "The ePub file is in %(outdir)s."
msgstr ""
-#: ext/viewcode.py:289
-msgid "highlighting module code... "
+#: builders/epub3.py:188
+msgid "writing nav.xhtml file..."
msgstr ""
-#: ext/viewcode.py:320
-msgid "[docs]"
+#: builders/epub3.py:224
+msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:346
-msgid "Module code"
+#: builders/epub3.py:230
+msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
msgstr ""
-#: ext/viewcode.py:353
-#, python-format
-msgid "Source code for %s
"
+#: builders/epub3.py:235
+msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:380
-msgid "Overview: module code"
+#: builders/epub3.py:241
+msgid "conf value \"epub_author\" should not be empty for EPUB3"
msgstr ""
-#: ext/viewcode.py:381
-msgid "All modules for which code is available
"
+#: builders/epub3.py:245
+msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
msgstr ""
-#: ext/extlinks.py:82
-#, python-format
-msgid ""
-"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+#: builders/epub3.py:250
+msgid "conf value \"epub_description\" should not be empty for EPUB3"
msgstr ""
-#: ext/autosectionlabel.py:52
-#, python-format
-msgid "section \"%s\" gets labeled as \"%s\""
+#: builders/epub3.py:254
+msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
msgstr ""
-#: domains/std/__init__.py:833 domains/std/__init__.py:960
-#: ext/autosectionlabel.py:61
-#, python-format
-msgid "duplicate label %s, other instance in %s"
+#: builders/epub3.py:259
+msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
msgstr ""
-#: ext/imgmath.py:387 ext/mathjax.py:60
-msgid "Link to this equation"
+#: builders/epub3.py:265
+msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
msgstr ""
-#: ext/duration.py:90
-msgid ""
-"====================== slowest reading durations ======================="
+#: builders/epub3.py:268
+msgid "conf value \"version\" should not be empty for EPUB3"
msgstr ""
-#: ext/doctest.py:118
+#: builders/epub3.py:282 builders/html/__init__.py:1296
#, python-format
-msgid "missing '+' or '-' in '%s' option."
+msgid "invalid css_file: %r, ignored"
msgstr ""
-#: ext/doctest.py:124
+#: builders/xml.py:29
#, python-format
-msgid "'%s' is not a valid option."
+msgid "The XML files are in %(outdir)s."
msgstr ""
-#: ext/doctest.py:139
+#: builders/html/__init__.py:1242 builders/text.py:71 builders/xml.py:81
#, python-format
-msgid "'%s' is not a valid pyversion option"
+msgid "error writing file %s: %s"
msgstr ""
-#: ext/doctest.py:226
-msgid "invalid TestCode type"
+#: builders/xml.py:103
+#, python-format
+msgid "The pseudo-XML files are in %(outdir)s."
msgstr ""
-#: ext/doctest.py:297
+#: builders/_epub_base.py:223
#, python-format
-msgid ""
-"Testing of doctests in the sources finished, look at the results in "
-"%(outdir)s/output.txt."
+msgid "duplicated ToC entry found: %s"
msgstr ""
-#: ext/doctest.py:457
+#: builders/_epub_base.py:436
#, python-format
-msgid "no code/output in %s block at %s:%s"
+msgid "cannot read image file %r: copying it instead"
msgstr ""
-#: ext/doctest.py:568
+#: builders/_epub_base.py:467
#, python-format
-msgid "ignoring invalid doctest code: %r"
+msgid "cannot write image file %r: %s"
msgstr ""
-#: ext/imgmath.py:162
-#, python-format
-msgid ""
-"LaTeX command %r cannot be run (needed for math display), check the "
-"imgmath_latex setting"
+#: builders/_epub_base.py:479
+msgid "Pillow not found - copying image files"
msgstr ""
-#: ext/imgmath.py:181
-#, python-format
-msgid ""
-"%s command %r cannot be run (needed for math display), check the imgmath_%s "
-"setting"
+#: builders/_epub_base.py:514
+msgid "writing mimetype file..."
msgstr ""
-#: ext/imgmath.py:344
-#, python-format
-msgid "display latex %r: %s"
+#: builders/_epub_base.py:523
+msgid "writing META-INF/container.xml file..."
msgstr ""
-#: ext/imgmath.py:380
-#, python-format
-msgid "inline latex %r: %s"
+#: builders/_epub_base.py:561
+msgid "writing content.opf file..."
msgstr ""
-#: ext/coverage.py:48
+#: builders/_epub_base.py:594
#, python-format
-msgid "invalid regex %r in %s"
+msgid "unknown mimetype for %s, ignoring"
msgstr ""
-#: ext/coverage.py:140 ext/coverage.py:301
-#, python-format
-msgid "module %s could not be imported: %s"
+#: builders/_epub_base.py:749
+msgid "node has an invalid level"
msgstr ""
-#: ext/coverage.py:148
-#, python-format
+#: builders/_epub_base.py:769
+msgid "writing toc.ncx file..."
+msgstr ""
+
+#: builders/_epub_base.py:802
+#, python-format
+msgid "writing %s file..."
+msgstr ""
+
+#: builders/text.py:27
+#, python-format
+msgid "The text files are in %(outdir)s."
+msgstr ""
+
+#: builders/__init__.py:229
+#, python-format
+msgid "a suitable image for %s builder not found: %s (%s)"
+msgstr ""
+
+#: builders/__init__.py:237
+#, python-format
+msgid "a suitable image for %s builder not found: %s"
+msgstr ""
+
+#: builders/__init__.py:260
+msgid "building [mo]: "
+msgstr ""
+
+#: builders/__init__.py:263 builders/__init__.py:771 builders/__init__.py:795
+msgid "writing output... "
+msgstr ""
+
+#: builders/__init__.py:280
+#, python-format
+msgid "all of %d po files"
+msgstr ""
+
+#: builders/__init__.py:302
+#, python-format
+msgid "targets for %d po files that are specified"
+msgstr ""
+
+#: builders/__init__.py:314
+#, python-format
+msgid "targets for %d po files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:324
+msgid "all source files"
+msgstr ""
+
+#: builders/__init__.py:335
+#, python-format
+msgid "file %r given on command line does not exist, "
+msgstr ""
+
+#: builders/__init__.py:342
+#, python-format
+msgid ""
+"file %r given on command line is not under the source directory, ignoring"
+msgstr ""
+
+#: builders/__init__.py:353
+#, python-format
+msgid "file %r given on command line is not a valid document, ignoring"
+msgstr ""
+
+#: builders/__init__.py:366
+#, python-format
+msgid "%d source files given on command line"
+msgstr ""
+
+#: builders/__init__.py:382
+#, python-format
+msgid "targets for %d source files that are out of date"
+msgstr ""
+
+#: builders/__init__.py:411
+msgid "looking for now-outdated files... "
+msgstr ""
+
+#: builders/__init__.py:415
+#, python-format
+msgid "%d found"
+msgstr ""
+
+#: builders/__init__.py:417
+msgid "none found"
+msgstr ""
+
+#: builders/__init__.py:424
+msgid "pickling environment"
+msgstr ""
+
+#: builders/__init__.py:431
+msgid "checking consistency"
+msgstr ""
+
+#: builders/__init__.py:435
+msgid "no targets are out of date."
+msgstr ""
+
+#: builders/__init__.py:474
+msgid "updating environment: "
+msgstr ""
+
+#: builders/__init__.py:499
+#, python-format
+msgid "%s added, %s changed, %s removed"
+msgstr ""
+
+#: builders/__init__.py:536
+#, python-format
+msgid ""
+"Sphinx is unable to load the master document (%s) because it matches a "
+"built-in exclude pattern %r. Please move your master document to a different"
+" location."
+msgstr ""
+
+#: builders/__init__.py:545
+#, python-format
+msgid ""
+"Sphinx is unable to load the master document (%s) because it matches an "
+"exclude pattern specified in conf.py, %r. Please remove this pattern from "
+"conf.py."
+msgstr ""
+
+#: builders/__init__.py:556
+#, python-format
+msgid ""
+"Sphinx is unable to load the master document (%s) because it is not included"
+" in the custom include_patterns = %r. Ensure that a pattern in "
+"include_patterns matches the master document."
+msgstr ""
+
+#: builders/__init__.py:563
+#, python-format
+msgid ""
+"Sphinx is unable to load the master document (%s). The master document must "
+"be within the source directory or a subdirectory of it."
+msgstr ""
+
+#: builders/__init__.py:581 builders/__init__.py:598
+msgid "reading sources... "
+msgstr ""
+
+#: builders/__init__.py:725
+#, python-format
+msgid "docnames to write: %s"
+msgstr ""
+
+#: builders/__init__.py:727
+msgid "no docnames to write!"
+msgstr ""
+
+#: builders/__init__.py:740
+msgid "preparing documents"
+msgstr ""
+
+#: builders/__init__.py:743
+msgid "copying assets"
+msgstr ""
+
+#: builders/changes.py:29
+#, python-format
+msgid "The overview file is in %(outdir)s."
+msgstr ""
+
+#: builders/changes.py:65
+#, python-format
+msgid "no changes in version %s."
+msgstr ""
+
+#: builders/changes.py:67
+msgid "writing summary file..."
+msgstr ""
+
+#: builders/changes.py:79
+msgid "Builtins"
+msgstr ""
+
+#: builders/changes.py:81
+msgid "Module level"
+msgstr ""
+
+#: builders/changes.py:137
+msgid "copying source files..."
+msgstr ""
+
+#: builders/changes.py:146
+#, python-format
+msgid "could not read %r for changelog creation"
+msgstr ""
+
+#: ext/coverage.py:48
+#, python-format
+msgid "invalid regex %r in %s"
+msgstr ""
+
+#: ext/coverage.py:140 ext/coverage.py:301
+#, python-format
+msgid "module %s could not be imported: %s"
+msgstr ""
+
+#: ext/coverage.py:148
+#, python-format
msgid ""
"the following modules are documented but were not specified in "
"coverage_modules: %s"
msgstr ""
#: ext/coverage.py:158
+#, python-format
msgid ""
"the following modules are specified in coverage_modules but were not "
-"documented"
+"documented: %s"
msgstr ""
#: ext/coverage.py:172
@@ -775,6 +1212,34 @@ msgstr ""
msgid "undocumented python method: %s :: %s :: %s"
msgstr ""
+#: ext/extlinks.py:82
+#, python-format
+msgid ""
+"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgstr ""
+
+#: ext/todo.py:61
+msgid "Todo"
+msgstr ""
+
+#: ext/todo.py:94
+#, python-format
+msgid "TODO entry found: %s"
+msgstr ""
+
+#: ext/todo.py:152
+msgid "<>"
+msgstr ""
+
+#: ext/todo.py:154
+#, python-format
+msgid "(The <> is located in %s, line %d.)"
+msgstr ""
+
+#: ext/todo.py:166
+msgid "original entry"
+msgstr ""
+
#: ext/imgconverter.py:44
#, python-format
msgid ""
@@ -862,947 +1327,993 @@ msgstr ""
msgid "[graph]"
msgstr ""
-#: ext/todo.py:61
-msgid "Todo"
-msgstr ""
-
-#: ext/todo.py:94
+#: ext/imgmath.py:148
#, python-format
-msgid "TODO entry found: %s"
+msgid ""
+"LaTeX command %r cannot be run (needed for math display), check the "
+"imgmath_latex setting"
msgstr ""
-#: ext/todo.py:152
-msgid "<>"
+#: ext/imgmath.py:167
+#, python-format
+msgid ""
+"%s command %r cannot be run (needed for math display), check the imgmath_%s "
+"setting"
msgstr ""
-#: ext/todo.py:154
+#: ext/imgmath.py:326
#, python-format
-msgid "(The <> is located in %s, line %d.)"
+msgid "display latex %r: %s"
msgstr ""
-#: ext/todo.py:166
-msgid "original entry"
+#: ext/imgmath.py:362
+#, python-format
+msgid "inline latex %r: %s"
msgstr ""
-#: directives/code.py:66
-msgid "non-whitespace stripped by dedent"
+#: ext/imgmath.py:369 ext/mathjax.py:60
+msgid "Link to this equation"
msgstr ""
-#: directives/code.py:87
+#: ext/doctest.py:118
#, python-format
-msgid "Invalid caption: %s"
+msgid "missing '+' or '-' in '%s' option."
msgstr ""
-#: directives/code.py:131 directives/code.py:297 directives/code.py:483
+#: ext/doctest.py:124
#, python-format
-msgid "line number spec is out of range(1-%d): %r"
+msgid "'%s' is not a valid option."
msgstr ""
-#: directives/code.py:216
+#: ext/doctest.py:139
#, python-format
-msgid "Cannot use both \"%s\" and \"%s\" options"
+msgid "'%s' is not a valid pyversion option"
msgstr ""
-#: directives/code.py:231
-#, python-format
-msgid "Include file '%s' not found or reading it failed"
+#: ext/doctest.py:226
+msgid "invalid TestCode type"
msgstr ""
-#: directives/code.py:235
+#: ext/doctest.py:297
#, python-format
msgid ""
-"Encoding %r used for reading included file '%s' seems to be wrong, try "
-"giving an :encoding: option"
+"Testing of doctests in the sources finished, look at the results in "
+"%(outdir)s/output.txt."
msgstr ""
-#: directives/code.py:276
+#: ext/doctest.py:451
#, python-format
-msgid "Object named %r not found in include file %r"
+msgid "no code/output in %s block at %s:%s"
msgstr ""
-#: directives/code.py:309
-msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
+#: ext/doctest.py:568
+#, python-format
+msgid "ignoring invalid doctest code: %r"
msgstr ""
-#: directives/code.py:314
+#: ext/autosectionlabel.py:52
#, python-format
-msgid "Line spec %r: no lines pulled from include file %r"
+msgid "section \"%s\" gets labeled as \"%s\""
msgstr ""
-#: directives/patches.py:71
-msgid ""
-"\":file:\" option for csv-table directive now recognizes an absolute path as"
-" a relative path from source directory. Please update your document."
-msgstr ""
-
-#: directives/other.py:119
+#: domains/std/__init__.py:833 domains/std/__init__.py:960
+#: ext/autosectionlabel.py:61
#, python-format
-msgid "toctree glob pattern %r didn't match any documents"
+msgid "duplicate label %s, other instance in %s"
msgstr ""
-#: directives/other.py:153 environment/adapters/toctree.py:361
+#: ext/duration.py:47
#, python-format
-msgid "toctree contains reference to excluded document %r"
+msgid "Reading duration %.3fs exceeded the duration limit %.3fs"
msgstr ""
-#: directives/other.py:156
-#, python-format
-msgid "toctree contains reference to nonexisting document %r"
+#: ext/duration.py:117
+msgid ""
+"====================== total reading duration =========================="
msgstr ""
-#: directives/other.py:169
+#: ext/duration.py:124
#, python-format
-msgid "duplicated entry found in toctree: %s"
-msgstr ""
-
-#: directives/other.py:203
-msgid "Section author: "
+msgid "Total time reading %d file%s: %dm %.3fs"
msgstr ""
-#: directives/other.py:205
-msgid "Module author: "
+#: ext/duration.py:136
+msgid ""
+"====================== slowest reading durations ======================="
msgstr ""
-#: directives/other.py:207
-msgid "Code author: "
+#: ext/duration.py:139
+#, python-format
+msgid "%.3fs %s"
msgstr ""
-#: directives/other.py:209
-msgid "Author: "
+#: ext/linkcode.py:86 ext/viewcode.py:232
+msgid "[source]"
msgstr ""
-#: directives/other.py:269
-msgid ".. acks content is not a list"
+#: ext/viewcode.py:295
+msgid "highlighting module code... "
msgstr ""
-#: directives/other.py:292
-msgid ".. hlist content is not a list"
+#: ext/viewcode.py:326
+msgid "[docs]"
msgstr ""
-#: builders/changes.py:29
-#, python-format
-msgid "The overview file is in %(outdir)s."
+#: ext/viewcode.py:352
+msgid "Module code"
msgstr ""
-#: builders/changes.py:56
+#: ext/viewcode.py:359
#, python-format
-msgid "no changes in version %s."
+msgid "Source code for %s
"
msgstr ""
-#: builders/changes.py:58
-msgid "writing summary file..."
+#: ext/viewcode.py:386
+msgid "Overview: module code"
msgstr ""
-#: builders/changes.py:70
-msgid "Builtins"
+#: ext/viewcode.py:387
+msgid "All modules for which code is available
"
msgstr ""
-#: builders/changes.py:72
-msgid "Module level"
+#: domains/citation.py:75
+#, python-format
+msgid "duplicate citation %s, other instance in %s"
msgstr ""
-#: builders/changes.py:124
-msgid "copying source files..."
+#: domains/citation.py:92
+#, python-format
+msgid "Citation [%s] is not referenced."
msgstr ""
-#: builders/changes.py:133
+#: domains/math.py:73
#, python-format
-msgid "could not read %r for changelog creation"
+msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
-#: builders/manpage.py:37
+#: domains/math.py:130 writers/latex.py:2500
#, python-format
-msgid "The manual pages are in %(outdir)s."
+msgid "Invalid math_eqref_format: %r"
msgstr ""
-#: builders/manpage.py:45
-msgid "no \"man_pages\" config value found; no manual pages will be written"
+#: domains/javascript.py:183
+#, python-format
+msgid "%s() (built-in function)"
msgstr ""
-#: builders/latex/__init__.py:347 builders/manpage.py:54
-#: builders/singlehtml.py:176 builders/texinfo.py:119
-msgid "writing"
+#: domains/javascript.py:184 domains/python/__init__.py:279
+#, python-format
+msgid "%s() (%s method)"
msgstr ""
-#: builders/manpage.py:71
+#: domains/javascript.py:186
#, python-format
-msgid "\"man_pages\" config value references unknown document %s"
+msgid "%s() (class)"
msgstr ""
-#: builders/__init__.py:224
+#: domains/javascript.py:188
#, python-format
-msgid "a suitable image for %s builder not found: %s (%s)"
+msgid "%s (global variable or constant)"
msgstr ""
-#: builders/__init__.py:232
+#: domains/javascript.py:190 domains/python/__init__.py:370
#, python-format
-msgid "a suitable image for %s builder not found: %s"
+msgid "%s (%s attribute)"
msgstr ""
-#: builders/__init__.py:255
-msgid "building [mo]: "
+#: domains/javascript.py:274
+msgid "Arguments"
msgstr ""
-#: builders/__init__.py:258 builders/__init__.py:759 builders/__init__.py:791
-msgid "writing output... "
+#: domains/cpp/__init__.py:491 domains/javascript.py:281
+msgid "Throws"
msgstr ""
-#: builders/__init__.py:275
-#, python-format
-msgid "all of %d po files"
+#: domains/c/__init__.py:367 domains/cpp/__init__.py:504
+#: domains/javascript.py:288 domains/python/_object.py:221
+msgid "Returns"
msgstr ""
-#: builders/__init__.py:297
-#, python-format
-msgid "targets for %d po files that are specified"
+#: domains/c/__init__.py:373 domains/javascript.py:294
+#: domains/python/_object.py:227
+msgid "Return type"
msgstr ""
-#: builders/__init__.py:309
+#: domains/javascript.py:374
#, python-format
-msgid "targets for %d po files that are out of date"
+msgid "%s (module)"
msgstr ""
-#: builders/__init__.py:319
-msgid "all source files"
+#: domains/c/__init__.py:779 domains/cpp/__init__.py:943
+#: domains/javascript.py:419 domains/python/__init__.py:726
+msgid "function"
msgstr ""
-#: builders/__init__.py:330
-#, python-format
-msgid "file %r given on command line does not exist, "
+#: domains/javascript.py:420 domains/python/__init__.py:730
+msgid "method"
msgstr ""
-#: builders/__init__.py:337
-#, python-format
-msgid ""
-"file %r given on command line is not under the source directory, ignoring"
+#: domains/cpp/__init__.py:941 domains/javascript.py:421
+#: domains/python/__init__.py:728
+msgid "class"
msgstr ""
-#: builders/__init__.py:348
-#, python-format
-msgid "file %r given on command line is not a valid document, ignoring"
+#: domains/javascript.py:422 domains/python/__init__.py:727
+msgid "data"
msgstr ""
-#: builders/__init__.py:361
-#, python-format
-msgid "%d source files given on command line"
+#: domains/javascript.py:423 domains/python/__init__.py:733
+msgid "attribute"
msgstr ""
-#: builders/__init__.py:377
-#, python-format
-msgid "targets for %d source files that are out of date"
+#: domains/javascript.py:424 domains/python/__init__.py:736
+msgid "module"
msgstr ""
-#: builders/__init__.py:395 builders/gettext.py:265
+#: domains/javascript.py:458
#, python-format
-msgid "building [%s]: "
+msgid "duplicate %s description of %s, other %s in %s"
msgstr ""
-#: builders/__init__.py:406
-msgid "looking for now-outdated files... "
+#: domains/rst.py:131 domains/rst.py:190
+#, python-format
+msgid "%s (directive)"
msgstr ""
-#: builders/__init__.py:410
+#: domains/rst.py:191 domains/rst.py:202
#, python-format
-msgid "%d found"
+msgid ":%s: (directive option)"
msgstr ""
-#: builders/__init__.py:412
-msgid "none found"
+#: domains/rst.py:224
+#, python-format
+msgid "%s (role)"
msgstr ""
-#: builders/__init__.py:419
-msgid "pickling environment"
+#: domains/rst.py:234
+msgid "directive"
msgstr ""
-#: builders/__init__.py:426
-msgid "checking consistency"
+#: domains/rst.py:235
+msgid "directive-option"
msgstr ""
-#: builders/__init__.py:430
-msgid "no targets are out of date."
+#: domains/rst.py:236
+msgid "role"
msgstr ""
-#: builders/__init__.py:469
-msgid "updating environment: "
+#: domains/rst.py:262
+#, python-format
+msgid "duplicate description of %s %s, other instance in %s"
msgstr ""
-#: builders/__init__.py:494
+#: domains/changeset.py:32
#, python-format
-msgid "%s added, %s changed, %s removed"
+msgid "Added in version %s"
msgstr ""
-#: builders/__init__.py:531
+#: domains/changeset.py:33
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches a "
-"built-in exclude pattern %r. Please move your master document to a different"
-" location."
+msgid "Changed in version %s"
msgstr ""
-#: builders/__init__.py:540
+#: domains/changeset.py:34
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches an "
-"exclude pattern specified in conf.py, %r. Please remove this pattern from "
-"conf.py."
+msgid "Deprecated since version %s"
msgstr ""
-#: builders/__init__.py:551
+#: domains/changeset.py:35
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it is not included"
-" in the custom include_patterns = %r. Ensure that a pattern in "
-"include_patterns matches the master document."
+msgid "Removed in version %s"
msgstr ""
-#: builders/__init__.py:558
+#: domains/__init__.py:322
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s). The master document must "
-"be within the source directory or a subdirectory of it."
+msgid "%s %s"
msgstr ""
-#: builders/__init__.py:576 builders/__init__.py:592
-msgid "reading sources... "
+#: cmd/build.py:64
+msgid "job number should be a positive number"
msgstr ""
-#: builders/__init__.py:713
-#, python-format
-msgid "docnames to write: %s"
+#: cmd/build.py:73 cmd/quickstart.py:582 ext/apidoc/_cli.py:27
+#: ext/autosummary/generate.py:876
+msgid "For more information, visit ."
msgstr ""
-#: builders/__init__.py:715
-msgid "no docnames to write!"
+#: cmd/build.py:74
+msgid ""
+"\n"
+"Generate documentation from source files.\n"
+"\n"
+"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
+"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
+"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
+"including 'conf.py'\n"
+"\n"
+"sphinx-build can create documentation in different formats. A format is\n"
+"selected by specifying the builder name on the command line; it defaults to\n"
+"HTML. Builders can also perform other tasks related to documentation\n"
+"processing.\n"
+"\n"
+"By default, everything that is outdated is built. Output only for selected\n"
+"files can be built by specifying individual filenames.\n"
msgstr ""
-#: builders/__init__.py:728
-msgid "preparing documents"
+#: cmd/build.py:100
+msgid "path to documentation source files"
msgstr ""
-#: builders/__init__.py:731
-msgid "copying assets"
+#: cmd/build.py:103
+msgid "path to output directory"
msgstr ""
-#: builders/__init__.py:883
-#, python-format
-msgid "undecodable source characters, replacing with \"?\": %r"
+#: cmd/build.py:109
+msgid ""
+"(optional) a list of specific files to rebuild. Ignored if --write-all is "
+"specified"
msgstr ""
-#: builders/epub3.py:84
-#, python-format
-msgid "The ePub file is in %(outdir)s."
+#: cmd/build.py:114
+msgid "general options"
msgstr ""
-#: builders/epub3.py:189
-msgid "writing nav.xhtml file..."
+#: cmd/build.py:121
+msgid "builder to use (default: 'html')"
msgstr ""
-#: builders/epub3.py:221
-msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
+#: cmd/build.py:131
+msgid ""
+"run in parallel with N processes, when possible. 'auto' uses the number of "
+"CPU cores"
msgstr ""
-#: builders/epub3.py:227
-msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
+#: cmd/build.py:140
+msgid "write all files (default: only write new and changed files)"
msgstr ""
-#: builders/epub3.py:232
-msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
+#: cmd/build.py:147
+msgid "don't use a saved environment, always read all files"
msgstr ""
-#: builders/epub3.py:238
-msgid "conf value \"epub_author\" should not be empty for EPUB3"
+#: cmd/build.py:150
+msgid "path options"
msgstr ""
-#: builders/epub3.py:242
-msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
+#: cmd/build.py:157
+msgid ""
+"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
msgstr ""
-#: builders/epub3.py:247
-msgid "conf value \"epub_description\" should not be empty for EPUB3"
+#: cmd/build.py:166
+msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
msgstr ""
-#: builders/epub3.py:251
-msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+#: cmd/build.py:175
+msgid "use no configuration file, only use settings from -D options"
msgstr ""
-#: builders/epub3.py:256
-msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+#: cmd/build.py:184
+msgid "override a setting in configuration file"
msgstr ""
-#: builders/epub3.py:262
-msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+#: cmd/build.py:193
+msgid "pass a value into HTML templates"
msgstr ""
-#: builders/epub3.py:265
-msgid "conf value \"version\" should not be empty for EPUB3"
+#: cmd/build.py:202
+msgid "define tag: include \"only\" blocks with TAG"
msgstr ""
-#: builders/epub3.py:279 builders/html/__init__.py:1291
-#, python-format
-msgid "invalid css_file: %r, ignored"
+#: cmd/build.py:209
+msgid "nitpicky mode: warn about all missing references"
msgstr ""
-#: builders/xml.py:31
-#, python-format
-msgid "The XML files are in %(outdir)s."
+#: cmd/build.py:212
+msgid "console output options"
msgstr ""
-#: builders/html/__init__.py:1241 builders/text.py:76 builders/xml.py:90
-#, python-format
-msgid "error writing file %s: %s"
+#: cmd/build.py:219
+msgid "increase verbosity (can be repeated)"
msgstr ""
-#: builders/xml.py:101
-#, python-format
-msgid "The pseudo-XML files are in %(outdir)s."
+#: cmd/build.py:226 ext/apidoc/_cli.py:66
+msgid "no output on stdout, just warnings on stderr"
msgstr ""
-#: builders/texinfo.py:45
-#, python-format
-msgid "The Texinfo files are in %(outdir)s."
+#: cmd/build.py:233
+msgid "no output at all, not even warnings"
msgstr ""
-#: builders/texinfo.py:48
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through makeinfo\n"
-"(use 'make info' here to do that automatically)."
+#: cmd/build.py:241
+msgid "do emit colored output (default: auto-detect)"
msgstr ""
-#: builders/texinfo.py:77
-msgid "no \"texinfo_documents\" config value found; no documents will be written"
-msgstr ""
-
-#: builders/texinfo.py:89
-#, python-format
-msgid "\"texinfo_documents\" config value references unknown document %s"
-msgstr ""
-
-#: builders/latex/__init__.py:325 builders/texinfo.py:113
-#, python-format
-msgid "processing %s"
+#: cmd/build.py:249
+msgid "do not emit colored output (default: auto-detect)"
msgstr ""
-#: builders/latex/__init__.py:405 builders/texinfo.py:172
-msgid "resolving references..."
+#: cmd/build.py:252
+msgid "warning control options"
msgstr ""
-#: builders/latex/__init__.py:416 builders/texinfo.py:182
-msgid " (in "
+#: cmd/build.py:258
+msgid "write warnings (and errors) to given file"
msgstr ""
-#: builders/_epub_base.py:422 builders/html/__init__.py:779
-#: builders/latex/__init__.py:481 builders/texinfo.py:198
-msgid "copying images... "
+#: cmd/build.py:265
+msgid "turn warnings into errors"
msgstr ""
-#: builders/_epub_base.py:444 builders/latex/__init__.py:496
-#: builders/texinfo.py:215
-#, python-format
-msgid "cannot copy image file %r: %s"
+#: cmd/build.py:273
+msgid "show full traceback on exception"
msgstr ""
-#: builders/texinfo.py:222
-msgid "copying Texinfo support files"
+#: cmd/build.py:276
+msgid "run Pdb on exception"
msgstr ""
-#: builders/texinfo.py:230
-#, python-format
-msgid "error writing file Makefile: %s"
+#: cmd/build.py:282
+msgid "raise an exception on warnings"
msgstr ""
-#: builders/_epub_base.py:223
-#, python-format
-msgid "duplicated ToC entry found: %s"
+#: cmd/build.py:325
+msgid "cannot combine -a option and filenames"
msgstr ""
-#: builders/_epub_base.py:433
+#: cmd/build.py:357
#, python-format
-msgid "cannot read image file %r: copying it instead"
+msgid "cannot open warning file '%s': %s"
msgstr ""
-#: builders/_epub_base.py:464
-#, python-format
-msgid "cannot write image file %r: %s"
+#: cmd/build.py:376
+msgid "-D option argument must be in the form name=value"
msgstr ""
-#: builders/_epub_base.py:476
-msgid "Pillow not found - copying image files"
+#: cmd/build.py:383
+msgid "-A option argument must be in the form name=value"
msgstr ""
-#: builders/_epub_base.py:511
-msgid "writing mimetype file..."
+#: cmd/quickstart.py:52
+msgid "automatically insert docstrings from modules"
msgstr ""
-#: builders/_epub_base.py:520
-msgid "writing META-INF/container.xml file..."
+#: cmd/quickstart.py:53
+msgid "automatically test code snippets in doctest blocks"
msgstr ""
-#: builders/_epub_base.py:558
-msgid "writing content.opf file..."
+#: cmd/quickstart.py:54
+msgid "link between Sphinx documentation of different projects"
msgstr ""
-#: builders/_epub_base.py:591
-#, python-format
-msgid "unknown mimetype for %s, ignoring"
+#: cmd/quickstart.py:55
+msgid "write \"todo\" entries that can be shown or hidden on build"
msgstr ""
-#: builders/_epub_base.py:745
-msgid "node has an invalid level"
+#: cmd/quickstart.py:56
+msgid "checks for documentation coverage"
msgstr ""
-#: builders/_epub_base.py:765
-msgid "writing toc.ncx file..."
+#: cmd/quickstart.py:57
+msgid "include math, rendered as PNG or SVG images"
msgstr ""
-#: builders/_epub_base.py:794
-#, python-format
-msgid "writing %s file..."
+#: cmd/quickstart.py:58
+msgid "include math, rendered in the browser by MathJax"
msgstr ""
-#: builders/dummy.py:19
-msgid "The dummy builder generates no files."
+#: cmd/quickstart.py:59
+msgid "conditional inclusion of content based on config values"
msgstr ""
-#: builders/gettext.py:244
-#, python-format
-msgid "The message catalogs are in %(outdir)s."
+#: cmd/quickstart.py:60
+msgid "include links to the source code of documented Python objects"
msgstr ""
-#: builders/gettext.py:266
-#, python-format
-msgid "targets for %d template files"
+#: cmd/quickstart.py:61
+msgid "create .nojekyll file to publish the document on GitHub pages"
msgstr ""
-#: builders/gettext.py:271
-msgid "reading templates... "
+#: cmd/quickstart.py:111
+msgid "Please enter a valid path name."
msgstr ""
-#: builders/gettext.py:307
-msgid "writing message catalogs... "
+#: cmd/quickstart.py:127
+msgid "Please enter some text."
msgstr ""
-#: builders/singlehtml.py:35
+#: cmd/quickstart.py:134
#, python-format
-msgid "The HTML page is in %(outdir)s."
+msgid "Please enter one of %s."
msgstr ""
-#: builders/singlehtml.py:171
-msgid "assembling single document"
+#: cmd/quickstart.py:142
+msgid "Please enter either 'y' or 'n'."
msgstr ""
-#: builders/singlehtml.py:189
-msgid "writing additional files"
+#: cmd/quickstart.py:148
+msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
msgstr ""
-#: builders/linkcheck.py:77
+#: cmd/quickstart.py:230
#, python-format
-msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
+msgid "Welcome to the Sphinx %s quickstart utility."
msgstr ""
-#: builders/linkcheck.py:149
-#, python-format
-msgid "broken link: %s (%s)"
+#: cmd/quickstart.py:235
+msgid ""
+"Please enter values for the following settings (just press Enter to\n"
+"accept a default value, if one is given in brackets)."
msgstr ""
-#: builders/linkcheck.py:548
+#: cmd/quickstart.py:242
#, python-format
-msgid "Anchor '%s' not found"
+msgid "Selected root path: %s"
msgstr ""
-#: builders/linkcheck.py:758
-#, python-format
-msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
+#: cmd/quickstart.py:245
+msgid "Enter the root path for documentation."
msgstr ""
-#: builders/text.py:29
-#, python-format
-msgid "The text files are in %(outdir)s."
+#: cmd/quickstart.py:246
+msgid "Root path for the documentation"
msgstr ""
-#: transforms/i18n.py:227 transforms/i18n.py:302
-#, python-brace-format
-msgid ""
-"inconsistent footnote references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:255
+msgid "Error: an existing conf.py has been found in the selected root path."
msgstr ""
-#: transforms/i18n.py:272
-#, python-brace-format
-msgid ""
-"inconsistent references in translated message. original: {0}, translated: "
-"{1}"
+#: cmd/quickstart.py:260
+msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
msgstr ""
-#: transforms/i18n.py:322
-#, python-brace-format
-msgid ""
-"inconsistent citation references in translated message. original: {0}, "
-"translated: {1}"
+#: cmd/quickstart.py:263
+msgid "Please enter a new root path (or just Enter to exit)"
msgstr ""
-#: transforms/i18n.py:344
-#, python-brace-format
+#: cmd/quickstart.py:274
msgid ""
-"inconsistent term references in translated message. original: {0}, "
-"translated: {1}"
-msgstr ""
-
-#: builders/html/__init__.py:486 builders/latex/__init__.py:199
-#: transforms/__init__.py:129 writers/manpage.py:98 writers/texinfo.py:220
-#, python-format
-msgid "%b %d, %Y"
-msgstr ""
-
-#: transforms/__init__.py:139
-msgid "could not calculate translation progress!"
+"You have two options for placing the build directory for Sphinx output.\n"
+"Either, you use a directory \"_build\" within the root path, or you separate\n"
+"\"source\" and \"build\" directories within the root path."
msgstr ""
-#: transforms/__init__.py:144
-msgid "no translated elements!"
+#: cmd/quickstart.py:280
+msgid "Separate source and build directories (y/n)"
msgstr ""
-#: transforms/__init__.py:253
-#, python-format
+#: cmd/quickstart.py:287
msgid ""
-"4 column based index found. It might be a bug of extensions you use: %r"
+"Inside the root directory, two more directories will be created; \"_templates\"\n"
+"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
+"files. You can enter another prefix (such as \".\") to replace the underscore."
msgstr ""
-#: transforms/__init__.py:294
-#, python-format
-msgid "Footnote [%s] is not referenced."
+#: cmd/quickstart.py:292
+msgid "Name prefix for templates and static dir"
msgstr ""
-#: transforms/__init__.py:303
-msgid "Footnote [*] is not referenced."
+#: cmd/quickstart.py:298
+msgid ""
+"The project name will occur in several places in the built documentation."
msgstr ""
-#: transforms/__init__.py:314
-msgid "Footnote [#] is not referenced."
+#: cmd/quickstart.py:301
+msgid "Project name"
msgstr ""
-#: _cli/__init__.py:73
-msgid "Usage:"
+#: cmd/quickstart.py:303
+msgid "Author name(s)"
msgstr ""
-#: _cli/__init__.py:75
-#, python-brace-format
-msgid "{0} [OPTIONS] []"
+#: cmd/quickstart.py:309
+msgid ""
+"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
+"software. Each version can have multiple releases. For example, for\n"
+"Python the version is something like 2.5 or 3.0, while the release is\n"
+"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
+"just set both to the same value."
msgstr ""
-#: _cli/__init__.py:78
-msgid " The Sphinx documentation generator."
+#: cmd/quickstart.py:316
+msgid "Project version"
msgstr ""
-#: _cli/__init__.py:87
-msgid "Commands:"
+#: cmd/quickstart.py:318
+msgid "Project release"
msgstr ""
-#: _cli/__init__.py:98
-msgid "Options"
+#: cmd/quickstart.py:324
+msgid ""
+"If the documents are to be written in a language other than English,\n"
+"you can select a language here by its language code. Sphinx will then\n"
+"translate text that it generates into that language.\n"
+"\n"
+"For a list of supported codes, see\n"
+"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
msgstr ""
-#: _cli/__init__.py:113 _cli/__init__.py:181
-msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
+#: cmd/quickstart.py:332
+msgid "Project language"
msgstr ""
-#: _cli/__init__.py:171
-#, python-brace-format
+#: cmd/quickstart.py:340
msgid ""
-"{0}: error: {1}\n"
-"Run '{0} --help' for information"
+"The file name suffix for source files. Commonly, this is either \".txt\"\n"
+"or \".rst\". Only files with this suffix are considered documents."
msgstr ""
-#: _cli/__init__.py:179
-msgid " Manage documentation with Sphinx."
+#: cmd/quickstart.py:344
+msgid "Source file suffix"
msgstr ""
-#: _cli/__init__.py:191
-msgid "Show the version and exit."
+#: cmd/quickstart.py:350
+msgid ""
+"One document is special in that it is considered the top node of the\n"
+"\"contents tree\", that is, it is the root of the hierarchical structure\n"
+"of the documents. Normally, this is \"index\", but if your \"index\"\n"
+"document is a custom template, you can also set this to another filename."
msgstr ""
-#: _cli/__init__.py:199
-msgid "Show this message and exit."
+#: cmd/quickstart.py:357
+msgid "Name of your master document (without suffix)"
msgstr ""
-#: _cli/__init__.py:203
-msgid "Logging"
+#: cmd/quickstart.py:368
+#, python-format
+msgid ""
+"Error: the master file %s has already been found in the selected root path."
msgstr ""
-#: _cli/__init__.py:210
-msgid "Increase verbosity (can be repeated)"
+#: cmd/quickstart.py:374
+msgid "sphinx-quickstart will not overwrite the existing file."
msgstr ""
-#: _cli/__init__.py:218
-msgid "Only print errors and warnings."
+#: cmd/quickstart.py:378
+msgid ""
+"Please enter a new file name, or rename the existing file and press Enter"
msgstr ""
-#: _cli/__init__.py:225
-msgid "No output at all"
+#: cmd/quickstart.py:386
+msgid "Indicate which of the following Sphinx extensions should be enabled:"
msgstr ""
-#: _cli/__init__.py:231
-msgid ""
+#: cmd/quickstart.py:397
+msgid ""
+"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
+"been deselected."
msgstr ""
-#: _cli/__init__.py:263
-msgid "See 'sphinx --help'.\n"
+#: cmd/quickstart.py:407
+msgid ""
+"A Makefile and a Windows command file can be generated for you so that you\n"
+"only have to run e.g. `make html' instead of invoking sphinx-build\n"
+"directly."
msgstr ""
-#: environment/__init__.py:86
-msgid "new config"
+#: cmd/quickstart.py:412
+msgid "Create Makefile? (y/n)"
msgstr ""
-#: environment/__init__.py:87
-msgid "config changed"
+#: cmd/quickstart.py:416
+msgid "Create Windows command file? (y/n)"
msgstr ""
-#: environment/__init__.py:88
-msgid "extensions changed"
+#: cmd/quickstart.py:468 ext/apidoc/_generate.py:76
+#, python-format
+msgid "Creating file %s."
msgstr ""
-#: environment/__init__.py:253
-msgid "build environment version not current"
+#: cmd/quickstart.py:473 ext/apidoc/_generate.py:73
+#, python-format
+msgid "File %s already exists, skipping."
msgstr ""
-#: environment/__init__.py:255
-msgid "source directory has changed"
+#: cmd/quickstart.py:516
+msgid "Finished: An initial directory structure has been created."
msgstr ""
-#: environment/__init__.py:325
+#: cmd/quickstart.py:520
#, python-format
-msgid "The configuration has changed (1 option: %r)"
+msgid ""
+"You should now populate your master file %s and create other documentation\n"
+"source files. "
msgstr ""
-#: environment/__init__.py:330
-#, python-format
-msgid "The configuration has changed (%d options: %s)"
+#: cmd/quickstart.py:527
+msgid ""
+"Use the Makefile to build the docs, like so:\n"
+" make builder"
msgstr ""
-#: environment/__init__.py:336
+#: cmd/quickstart.py:531
#, python-format
-msgid "The configuration has changed (%d options: %s, ...)"
+msgid ""
+"Use the sphinx-build command to build the docs, like so:\n"
+" sphinx-build -b builder %s %s"
msgstr ""
-#: environment/__init__.py:379
+#: cmd/quickstart.py:538
msgid ""
-"This environment is incompatible with the selected builder, please choose "
-"another doctree directory."
+"where \"builder\" is one of the supported builders, e.g. html, latex or "
+"linkcheck."
msgstr ""
-#: environment/__init__.py:493
-#, python-format
-msgid "Failed to scan documents in %s: %r"
+#: cmd/quickstart.py:573
+msgid ""
+"\n"
+"Generate required files for a Sphinx project.\n"
+"\n"
+"sphinx-quickstart is an interactive tool that asks some questions about your\n"
+"project and then generates a complete documentation directory and sample\n"
+"Makefile to be used with sphinx-build.\n"
msgstr ""
-#: environment/__init__.py:658 ext/intersphinx/_resolve.py:234
-#, python-format
-msgid "Domain %r is not registered"
+#: cmd/quickstart.py:592
+msgid "quiet mode"
msgstr ""
-#: environment/__init__.py:813
-msgid "document isn't included in any toctree"
+#: cmd/quickstart.py:602
+msgid "project root"
msgstr ""
-#: environment/__init__.py:859
-msgid "self referenced toctree found. Ignored."
+#: cmd/quickstart.py:605
+msgid "Structure options"
msgstr ""
-#: environment/__init__.py:889
-#, python-format
-msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
+#: cmd/quickstart.py:611
+msgid "if specified, separate source and build dirs"
msgstr ""
-#: util/i18n.py:100
-#, python-format
-msgid "reading error: %s, %s"
+#: cmd/quickstart.py:617
+msgid "if specified, create build dir under source dir"
msgstr ""
-#: util/i18n.py:113
-#, python-format
-msgid "writing error: %s, %s"
+#: cmd/quickstart.py:623
+msgid "replacement for dot in _templates etc."
msgstr ""
-#: util/i18n.py:146
-#, python-format
-msgid "locale_dir %s does not exist"
+#: cmd/quickstart.py:626
+msgid "Project basic options"
msgstr ""
-#: util/i18n.py:236
-#, python-format
-msgid "Invalid Babel locale: %r."
+#: cmd/quickstart.py:628
+msgid "project name"
msgstr ""
-#: util/i18n.py:245
-#, python-format
-msgid ""
-"Invalid date format. Quote the string by single quote if you want to output "
-"it directly: %s"
+#: cmd/quickstart.py:631
+msgid "author names"
msgstr ""
-#: util/docfields.py:103
-#, python-format
-msgid ""
-"Problem in %s domain: field is supposed to use role '%s', but that role is "
-"not in the domain."
+#: cmd/quickstart.py:638
+msgid "version of project"
msgstr ""
-#: util/nodes.py:423
-#, python-format
-msgid ""
-"%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead."
+#: cmd/quickstart.py:645
+msgid "release of project"
msgstr ""
-#: util/nodes.py:490
-#, python-format
-msgid "toctree contains ref to nonexisting file %r"
+#: cmd/quickstart.py:652
+msgid "document language"
msgstr ""
-#: util/nodes.py:706
-#, python-format
-msgid "exception while evaluating only directive expression: %s"
+#: cmd/quickstart.py:655
+msgid "source file suffix"
msgstr ""
-#: util/display.py:82
-msgid "skipped"
+#: cmd/quickstart.py:658
+msgid "master document name"
msgstr ""
-#: util/display.py:87
-msgid "failed"
+#: cmd/quickstart.py:661
+msgid "use epub"
msgstr ""
-#: util/osutil.py:131
+#: cmd/quickstart.py:664
+msgid "Extension options"
+msgstr ""
+
+#: cmd/quickstart.py:671
#, python-format
+msgid "enable %s extension"
+msgstr ""
+
+#: cmd/quickstart.py:678
+msgid "enable arbitrary extensions"
+msgstr ""
+
+#: cmd/quickstart.py:681
+msgid "Makefile and Batchfile creation"
+msgstr ""
+
+#: cmd/quickstart.py:687
+msgid "create makefile"
+msgstr ""
+
+#: cmd/quickstart.py:693
+msgid "do not create makefile"
+msgstr ""
+
+#: cmd/quickstart.py:700
+msgid "create batchfile"
+msgstr ""
+
+#: cmd/quickstart.py:706
+msgid "do not create batchfile"
+msgstr ""
+
+#: cmd/quickstart.py:715
+msgid "use make-mode for Makefile/make.bat"
+msgstr ""
+
+#: cmd/quickstart.py:718 ext/apidoc/_cli.py:243
+msgid "Project templating"
+msgstr ""
+
+#: cmd/quickstart.py:724 ext/apidoc/_cli.py:249
+msgid "template directory for template files"
+msgstr ""
+
+#: cmd/quickstart.py:731
+msgid "define a template variable"
+msgstr ""
+
+#: cmd/quickstart.py:767
+msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
+msgstr ""
+
+#: cmd/quickstart.py:786
msgid ""
-"Aborted attempted copy from %s to %s (the destination path has existing "
-"data)."
+"Error: specified path is not a directory, or sphinx files already exist."
msgstr ""
-#: util/docutils.py:309
-#, python-format
-msgid "unknown directive name: %s"
+#: cmd/quickstart.py:793
+msgid ""
+"sphinx-quickstart only generate into a empty directory. Please specify a new"
+" root path."
msgstr ""
-#: util/docutils.py:345
+#: cmd/quickstart.py:810
#, python-format
-msgid "unknown role name: %s"
+msgid "Invalid template variable: %s"
msgstr ""
-#: util/docutils.py:789
+#: directives/other.py:119
#, python-format
-msgid "unknown node type: %r"
+msgid "toctree glob pattern %r didn't match any documents"
msgstr ""
-#: util/fileutil.py:76
+#: directives/other.py:153 environment/adapters/toctree.py:372
#, python-format
-msgid ""
-"Aborted attempted copy from rendered template %s to %s (the destination path"
-" has existing data)."
+msgid "toctree contains reference to excluded document %r"
msgstr ""
-#: util/fileutil.py:89
+#: directives/other.py:156
#, python-format
-msgid "Writing evaluated template result to %s"
+msgid "toctree contains reference to nonexisting document %r"
msgstr ""
-#: util/rst.py:73
+#: directives/other.py:169
#, python-format
-msgid "default role %s not found"
+msgid "duplicated entry found in toctree: %s"
msgstr ""
-#: util/inventory.py:147
-#, python-format
-msgid "inventory <%s> contains duplicate definitions of %s"
+#: directives/other.py:203
+msgid "Section author: "
msgstr ""
-#: util/inventory.py:166
-#, python-format
-msgid "inventory <%s> contains multiple definitions for %s"
+#: directives/other.py:205
+msgid "Module author: "
msgstr ""
-#: writers/latex.py:1097 writers/manpage.py:259 writers/texinfo.py:663
-msgid "Footnotes"
+#: directives/other.py:207
+msgid "Code author: "
msgstr ""
-#: writers/manpage.py:289 writers/text.py:945
-#, python-format
-msgid "[image: %s]"
+#: directives/other.py:209
+msgid "Author: "
msgstr ""
-#: writers/manpage.py:290 writers/text.py:946
-msgid "[image]"
+#: directives/other.py:269
+msgid ".. acks content is not a list"
msgstr ""
-#: builders/latex/__init__.py:206 domains/std/__init__.py:771
-#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:106
-#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
-#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
-#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
-#: themes/basic/genindex.html:59 themes/basic/layout.html:127
-#: writers/texinfo.py:514
-msgid "Index"
+#: directives/other.py:292
+msgid ".. hlist content is not a list"
msgstr ""
-#: writers/latex.py:743 writers/texinfo.py:646
+#: directives/patches.py:70
msgid ""
-"encountered title node not in section, topic, table, admonition or sidebar"
+"\":file:\" option for csv-table directive now recognizes an absolute path as"
+" a relative path from source directory. Please update your document."
msgstr ""
-#: writers/texinfo.py:1217
-msgid "caption not inside a figure."
+#: directives/code.py:66
+msgid "non-whitespace stripped by dedent"
msgstr ""
-#: writers/texinfo.py:1303
+#: directives/code.py:87
#, python-format
-msgid "unimplemented node type: %r"
+msgid "Invalid caption: %s"
msgstr ""
-#: writers/latex.py:361
+#: directives/code.py:131 directives/code.py:297 directives/code.py:483
#, python-format
-msgid "unknown %r toplevel_sectioning for class %r"
+msgid "line number spec is out of range(1-%d): %r"
msgstr ""
-#: builders/latex/__init__.py:224 writers/latex.py:411
+#: directives/code.py:216
#, python-format
-msgid "no Babel option known for language %r"
+msgid "Cannot use both \"%s\" and \"%s\" options"
msgstr ""
-#: writers/latex.py:429
-msgid "too large :maxdepth:, ignored."
+#: directives/code.py:231
+#, python-format
+msgid "Include file '%s' not found or reading it failed"
msgstr ""
-#: writers/latex.py:591
+#: directives/code.py:235
#, python-format
-msgid "template %s not found; loading from legacy %s instead"
+msgid ""
+"Encoding %r used for reading included file '%s' seems to be wrong, try "
+"giving an :encoding: option"
msgstr ""
-#: writers/latex.py:707
-msgid "document title is not a single Text node"
+#: directives/code.py:276
+#, python-format
+msgid "Object named %r not found in include file %r"
+msgstr ""
+
+#: directives/code.py:309
+msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
msgstr ""
-#: writers/html5.py:572 writers/latex.py:1106
+#: directives/code.py:314
#, python-format
-msgid "unsupported rubric heading level: %s"
+msgid "Line spec %r: no lines pulled from include file %r"
+msgstr ""
+
+#: builders/html/__init__.py:475 builders/latex/__init__.py:196
+#: transforms/__init__.py:134 writers/manpage.py:97 writers/texinfo.py:220
+#, python-format
+msgid "%b %d, %Y"
+msgstr ""
+
+#: builders/latex/__init__.py:203 domains/std/__init__.py:771
+#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:107
+#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
+#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
+#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
+#: themes/basic/genindex.html:59 themes/basic/layout.html:127
+#: writers/texinfo.py:514
+msgid "Index"
msgstr ""
-#: writers/latex.py:1183
+#: writers/latex.py:768 writers/texinfo.py:646
msgid ""
-"both tabularcolumns and :widths: option are given. :widths: is ignored."
+"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
-#: writers/latex.py:1580
-#, python-format
-msgid "dimension unit %s is invalid. Ignored."
+#: writers/latex.py:1118 writers/manpage.py:258 writers/texinfo.py:663
+msgid "Footnotes"
+msgstr ""
+
+#: writers/texinfo.py:1217
+msgid "caption not inside a figure."
msgstr ""
-#: writers/latex.py:1939
+#: writers/texinfo.py:1303
#, python-format
-msgid "unknown index entry type %s found"
+msgid "unimplemented node type: %r"
msgstr ""
-#: domains/math.py:128 writers/latex.py:2495
+#: writers/manpage.py:288 writers/text.py:971
#, python-format
-msgid "Invalid math_eqref_format: %r"
+msgid "[image: %s]"
+msgstr ""
+
+#: writers/manpage.py:289 writers/text.py:972
+msgid "[image]"
msgstr ""
#: writers/html5.py:96 writers/html5.py:105
@@ -1831,6 +2342,11 @@ msgstr ""
msgid "Link to this table"
msgstr ""
+#: writers/html5.py:572 writers/latex.py:1127
+#, python-format
+msgid "unsupported rubric heading level: %s"
+msgstr ""
+
#: writers/html5.py:636
msgid "Link to this code"
msgstr ""
@@ -1847,793 +2363,477 @@ msgstr ""
msgid "Could not obtain image size. :scale: option is ignored."
msgstr ""
-#: domains/__init__.py:322
+#: writers/latex.py:386
#, python-format
-msgid "%s %s"
+msgid "unknown %r toplevel_sectioning for class %r"
msgstr ""
-#: domains/math.py:73
+#: builders/latex/__init__.py:221 writers/latex.py:436
#, python-format
-msgid "duplicate label of equation %s, other instance in %s"
+msgid "no Babel option known for language %r"
msgstr ""
-#: domains/javascript.py:182
-#, python-format
-msgid "%s() (built-in function)"
+#: writers/latex.py:454
+msgid "too large :maxdepth:, ignored."
msgstr ""
-#: domains/javascript.py:183 domains/python/__init__.py:287
+#: writers/latex.py:616
#, python-format
-msgid "%s() (%s method)"
+msgid "template %s not found; loading from legacy %s instead"
msgstr ""
-#: domains/javascript.py:185
-#, python-format
-msgid "%s() (class)"
+#: writers/latex.py:732
+msgid "document title is not a single Text node"
msgstr ""
-#: domains/javascript.py:187
-#, python-format
-msgid "%s (global variable or constant)"
+#: writers/latex.py:1198
+msgid ""
+"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
-#: domains/javascript.py:189 domains/python/__init__.py:378
+#: writers/latex.py:1228
#, python-format
-msgid "%s (%s attribute)"
+msgid ""
+"colspec %s was given which appears to use tabulary syntax. But this table "
+"can not be rendered as a tabulary; the given colspec will be ignored."
msgstr ""
-#: domains/javascript.py:273
-msgid "Arguments"
+#: writers/latex.py:1615
+#, python-format
+msgid "dimension unit %s is invalid. Ignored."
msgstr ""
-#: domains/cpp/__init__.py:489 domains/javascript.py:280
-msgid "Throws"
+#: writers/latex.py:1950
+#, python-format
+msgid "unknown index entry type %s found"
msgstr ""
-#: domains/c/__init__.py:339 domains/cpp/__init__.py:502
-#: domains/javascript.py:287 domains/python/_object.py:221
-msgid "Returns"
+#: _cli/__init__.py:73
+msgid "Usage:"
msgstr ""
-#: domains/c/__init__.py:345 domains/javascript.py:293
-#: domains/python/_object.py:227
-msgid "Return type"
+#: _cli/__init__.py:75
+#, python-brace-format
+msgid "{0} [OPTIONS] []"
msgstr ""
-#: domains/javascript.py:370
-#, python-format
-msgid "%s (module)"
+#: _cli/__init__.py:78
+msgid " The Sphinx documentation generator."
msgstr ""
-#: domains/c/__init__.py:751 domains/cpp/__init__.py:941
-#: domains/javascript.py:415 domains/python/__init__.py:740
-msgid "function"
+#: _cli/__init__.py:87
+msgid "Commands:"
msgstr ""
-#: domains/javascript.py:416 domains/python/__init__.py:744
-msgid "method"
+#: _cli/__init__.py:98
+msgid "Options"
msgstr ""
-#: domains/cpp/__init__.py:939 domains/javascript.py:417
-#: domains/python/__init__.py:742
-msgid "class"
+#: _cli/__init__.py:113 _cli/__init__.py:181
+msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
msgstr ""
-#: domains/javascript.py:418 domains/python/__init__.py:741
-msgid "data"
+#: _cli/__init__.py:171
+#, python-brace-format
+msgid ""
+"{0}: error: {1}\n"
+"Run '{0} --help' for information"
msgstr ""
-#: domains/javascript.py:419 domains/python/__init__.py:747
-msgid "attribute"
+#: _cli/__init__.py:179
+msgid " Manage documentation with Sphinx."
msgstr ""
-#: domains/javascript.py:420 domains/python/__init__.py:750
-msgid "module"
+#: _cli/__init__.py:191
+msgid "Show the version and exit."
msgstr ""
-#: domains/javascript.py:454
-#, python-format
-msgid "duplicate %s description of %s, other %s in %s"
+#: _cli/__init__.py:199
+msgid "Show this message and exit."
msgstr ""
-#: domains/changeset.py:26
-#, python-format
-msgid "Added in version %s"
+#: _cli/__init__.py:203
+msgid "Logging"
msgstr ""
-#: domains/changeset.py:27
-#, python-format
-msgid "Changed in version %s"
+#: _cli/__init__.py:210
+msgid "Increase verbosity (can be repeated)"
msgstr ""
-#: domains/changeset.py:28
-#, python-format
-msgid "Deprecated since version %s"
+#: _cli/__init__.py:218
+msgid "Only print errors and warnings."
msgstr ""
-#: domains/changeset.py:29
-#, python-format
-msgid "Removed in version %s"
+#: _cli/__init__.py:225
+msgid "No output at all"
msgstr ""
-#: domains/rst.py:131 domains/rst.py:190
-#, python-format
-msgid "%s (directive)"
+#: _cli/__init__.py:231
+msgid ""
msgstr ""
-#: domains/rst.py:191 domains/rst.py:202
-#, python-format
-msgid ":%s: (directive option)"
+#: _cli/__init__.py:263
+msgid "See 'sphinx --help'.\n"
msgstr ""
-#: domains/rst.py:224
-#, python-format
-msgid "%s (role)"
+#: transforms/i18n.py:230 transforms/i18n.py:305
+#, python-brace-format
+msgid ""
+"inconsistent footnote references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: domains/rst.py:234
-msgid "directive"
+#: transforms/i18n.py:275
+#, python-brace-format
+msgid ""
+"inconsistent references in translated message. original: {0}, translated: "
+"{1}"
msgstr ""
-#: domains/rst.py:235
-msgid "directive-option"
+#: transforms/i18n.py:325
+#, python-brace-format
+msgid ""
+"inconsistent citation references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: domains/rst.py:236
-msgid "role"
+#: transforms/i18n.py:347
+#, python-brace-format
+msgid ""
+"inconsistent term references in translated message. original: {0}, "
+"translated: {1}"
msgstr ""
-#: domains/rst.py:262
-#, python-format
-msgid "duplicate description of %s %s, other instance in %s"
+#: transforms/__init__.py:144
+msgid "could not calculate translation progress!"
msgstr ""
-#: domains/citation.py:75
-#, python-format
-msgid "duplicate citation %s, other instance in %s"
+#: transforms/__init__.py:149
+msgid "no translated elements!"
msgstr ""
-#: domains/citation.py:92
+#: transforms/__init__.py:258
#, python-format
-msgid "Citation [%s] is not referenced."
+msgid ""
+"4 column based index found. It might be a bug of extensions you use: %r"
msgstr ""
-#: locale/__init__.py:228
-msgid "Attention"
+#: transforms/__init__.py:299
+#, python-format
+msgid "Footnote [%s] is not referenced."
msgstr ""
-#: locale/__init__.py:229
-msgid "Caution"
+#: transforms/__init__.py:308
+msgid "Footnote [*] is not referenced."
msgstr ""
-#: locale/__init__.py:230
-msgid "Danger"
+#: transforms/__init__.py:319
+msgid "Footnote [#] is not referenced."
msgstr ""
-#: locale/__init__.py:231
-msgid "Error"
+#: util/inventory.py:147
+#, python-format
+msgid "inventory <%s> contains duplicate definitions of %s"
msgstr ""
-#: locale/__init__.py:232
-msgid "Hint"
+#: util/inventory.py:166
+#, python-format
+msgid "inventory <%s> contains multiple definitions for %s"
msgstr ""
-#: locale/__init__.py:233
-msgid "Important"
+#: util/i18n.py:100
+#, python-format
+msgid "reading error: %s, %s"
msgstr ""
-#: locale/__init__.py:234
-msgid "Note"
+#: util/i18n.py:113
+#, python-format
+msgid "writing error: %s, %s"
msgstr ""
-#: locale/__init__.py:235
-msgid "See also"
+#: util/i18n.py:146
+#, python-format
+msgid "locale_dir %s does not exist"
msgstr ""
-#: locale/__init__.py:236
-msgid "Tip"
+#: util/i18n.py:244
+#, python-format
+msgid "Invalid Babel locale: %r."
msgstr ""
-#: locale/__init__.py:237
-msgid "Warning"
+#: util/i18n.py:253
+#, python-format
+msgid ""
+"Invalid date format. Quote the string by single quote if you want to output "
+"it directly: %s"
msgstr ""
-#: cmd/quickstart.py:52
-msgid "automatically insert docstrings from modules"
+#: util/osutil.py:131
+#, python-format
+msgid ""
+"Aborted attempted copy from %s to %s (the destination path has existing "
+"data)."
msgstr ""
-#: cmd/quickstart.py:53
-msgid "automatically test code snippets in doctest blocks"
+#: util/display.py:82
+msgid "skipped"
msgstr ""
-#: cmd/quickstart.py:54
-msgid "link between Sphinx documentation of different projects"
+#: util/display.py:87
+msgid "failed"
msgstr ""
-#: cmd/quickstart.py:55
-msgid "write \"todo\" entries that can be shown or hidden on build"
+#: util/docutils.py:325
+#, python-format
+msgid "unknown directive name: %s"
msgstr ""
-#: cmd/quickstart.py:56
-msgid "checks for documentation coverage"
+#: util/docutils.py:361
+#, python-format
+msgid "unknown role name: %s"
msgstr ""
-#: cmd/quickstart.py:57
-msgid "include math, rendered as PNG or SVG images"
+#: util/docutils.py:805
+#, python-format
+msgid "unknown node type: %r"
msgstr ""
-#: cmd/quickstart.py:58
-msgid "include math, rendered in the browser by MathJax"
+#: util/fileutil.py:76
+#, python-format
+msgid ""
+"Aborted attempted copy from rendered template %s to %s (the destination path"
+" has existing data)."
msgstr ""
-#: cmd/quickstart.py:59
-msgid "conditional inclusion of content based on config values"
+#: util/fileutil.py:89
+#, python-format
+msgid "Writing evaluated template result to %s"
msgstr ""
-#: cmd/quickstart.py:60
-msgid "include links to the source code of documented Python objects"
+#: util/docfields.py:103
+#, python-format
+msgid ""
+"Problem in %s domain: field is supposed to use role '%s', but that role is "
+"not in the domain."
msgstr ""
-#: cmd/quickstart.py:61
-msgid "create .nojekyll file to publish the document on GitHub pages"
+#: util/rst.py:73
+#, python-format
+msgid "default role %s not found"
msgstr ""
-#: cmd/quickstart.py:110
-msgid "Please enter a valid path name."
+#: util/nodes.py:462
+#, python-format
+msgid ""
+"%r is no longer supported for index entries (from entry %r). Use 'pair: %s' "
+"instead."
msgstr ""
-#: cmd/quickstart.py:126
-msgid "Please enter some text."
+#: util/nodes.py:523
+#, python-format
+msgid "toctree contains ref to nonexisting file %r"
msgstr ""
-#: cmd/quickstart.py:133
+#: util/nodes.py:739
#, python-format
-msgid "Please enter one of %s."
+msgid "exception while evaluating only directive expression: %s"
msgstr ""
-#: cmd/quickstart.py:141
-msgid "Please enter either 'y' or 'n'."
+#: templates/latex/longtable.tex.jinja:52
+#: templates/latex/sphinxmessages.sty.jinja:8
+msgid "continued from previous page"
msgstr ""
-#: cmd/quickstart.py:147
-msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
+#: templates/latex/longtable.tex.jinja:63
+#: templates/latex/sphinxmessages.sty.jinja:9
+msgid "continues on next page"
msgstr ""
-#: cmd/quickstart.py:229
-#, python-format
-msgid "Welcome to the Sphinx %s quickstart utility."
+#: templates/latex/sphinxmessages.sty.jinja:10
+msgid "Non-alphabetical"
msgstr ""
-#: cmd/quickstart.py:234
-msgid ""
-"Please enter values for the following settings (just press Enter to\n"
-"accept a default value, if one is given in brackets)."
+#: environment/adapters/indexentries.py:267
+#: templates/latex/sphinxmessages.sty.jinja:11
+msgid "Symbols"
msgstr ""
-#: cmd/quickstart.py:241
-#, python-format
-msgid "Selected root path: %s"
+#: templates/latex/sphinxmessages.sty.jinja:12
+msgid "Numbers"
msgstr ""
-#: cmd/quickstart.py:244
-msgid "Enter the root path for documentation."
+#: templates/latex/sphinxmessages.sty.jinja:13
+msgid "page"
msgstr ""
-#: cmd/quickstart.py:245
-msgid "Root path for the documentation"
+#: builders/latex/__init__.py:206 templates/latex/latex.tex.jinja:92
+msgid "Release"
msgstr ""
-#: cmd/quickstart.py:254
-msgid "Error: an existing conf.py has been found in the selected root path."
+#: transforms/post_transforms/images.py:79
+#, python-format
+msgid "Could not fetch remote image: %s [%s]"
msgstr ""
-#: cmd/quickstart.py:259
-msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
+#: transforms/post_transforms/images.py:96
+#, python-format
+msgid "Could not fetch remote image: %s [%d]"
msgstr ""
-#: cmd/quickstart.py:262
-msgid "Please enter a new root path (or just Enter to exit)"
+#: transforms/post_transforms/images.py:143
+#, python-format
+msgid "Unknown image format: %s..."
msgstr ""
-#: cmd/quickstart.py:273
+#: transforms/post_transforms/__init__.py:88
msgid ""
-"You have two options for placing the build directory for Sphinx output.\n"
-"Either, you use a directory \"_build\" within the root path, or you separate\n"
-"\"source\" and \"build\" directories within the root path."
+"Could not determine the fallback text for the cross-reference. Might be a "
+"bug."
msgstr ""
-#: cmd/quickstart.py:279
-msgid "Separate source and build directories (y/n)"
+#: transforms/post_transforms/__init__.py:233
+#, python-format
+msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr ""
-#: cmd/quickstart.py:286
-msgid ""
-"Inside the root directory, two more directories will be created; \"_templates\"\n"
-"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
-"files. You can enter another prefix (such as \".\") to replace the underscore."
+#: transforms/post_transforms/__init__.py:291
+#, python-format
+msgid "%s:%s reference target not found: %s"
msgstr ""
-#: cmd/quickstart.py:291
-msgid "Name prefix for templates and static dir"
-msgstr ""
-
-#: cmd/quickstart.py:297
-msgid ""
-"The project name will occur in several places in the built documentation."
-msgstr ""
-
-#: cmd/quickstart.py:300
-msgid "Project name"
-msgstr ""
-
-#: cmd/quickstart.py:302
-msgid "Author name(s)"
-msgstr ""
-
-#: cmd/quickstart.py:308
-msgid ""
-"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
-"software. Each version can have multiple releases. For example, for\n"
-"Python the version is something like 2.5 or 3.0, while the release is\n"
-"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
-"just set both to the same value."
-msgstr ""
-
-#: cmd/quickstart.py:315
-msgid "Project version"
-msgstr ""
-
-#: cmd/quickstart.py:317
-msgid "Project release"
-msgstr ""
-
-#: cmd/quickstart.py:323
-msgid ""
-"If the documents are to be written in a language other than English,\n"
-"you can select a language here by its language code. Sphinx will then\n"
-"translate text that it generates into that language.\n"
-"\n"
-"For a list of supported codes, see\n"
-"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
-msgstr ""
-
-#: cmd/quickstart.py:331
-msgid "Project language"
+#: transforms/post_transforms/__init__.py:297
+#, python-format
+msgid "%r reference target not found: %s"
msgstr ""
-#: cmd/quickstart.py:339
-msgid ""
-"The file name suffix for source files. Commonly, this is either \".txt\"\n"
-"or \".rst\". Only files with this suffix are considered documents."
+#: _cli/util/errors.py:190
+msgid "Interrupted!"
msgstr ""
-#: cmd/quickstart.py:343
-msgid "Source file suffix"
+#: _cli/util/errors.py:194
+msgid "reStructuredText markup error!"
msgstr ""
-#: cmd/quickstart.py:349
-msgid ""
-"One document is special in that it is considered the top node of the\n"
-"\"contents tree\", that is, it is the root of the hierarchical structure\n"
-"of the documents. Normally, this is \"index\", but if your \"index\"\n"
-"document is a custom template, you can also set this to another filename."
+#: _cli/util/errors.py:200
+msgid "Encoding error!"
msgstr ""
-#: cmd/quickstart.py:356
-msgid "Name of your master document (without suffix)"
+#: _cli/util/errors.py:203
+msgid "Recursion error!"
msgstr ""
-#: cmd/quickstart.py:367
-#, python-format
+#: _cli/util/errors.py:207
msgid ""
-"Error: the master file %s has already been found in the selected root path."
-msgstr ""
-
-#: cmd/quickstart.py:373
-msgid "sphinx-quickstart will not overwrite the existing file."
+"This can happen with very large or deeply nested source files. You can "
+"carefully increase the default Python recursion limit of 1,000 in conf.py "
+"with e.g.:"
msgstr ""
-#: cmd/quickstart.py:377
-msgid ""
-"Please enter a new file name, or rename the existing file and press Enter"
+#: _cli/util/errors.py:227
+msgid "Starting debugger:"
msgstr ""
-#: cmd/quickstart.py:385
-msgid "Indicate which of the following Sphinx extensions should be enabled:"
+#: _cli/util/errors.py:235
+msgid "The full traceback has been saved in:"
msgstr ""
-#: cmd/quickstart.py:396
+#: _cli/util/errors.py:240
msgid ""
-"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
-"been deselected."
+"To report this error to the developers, please open an issue at "
+". Thanks!"
msgstr ""
-#: cmd/quickstart.py:406
+#: _cli/util/errors.py:246
msgid ""
-"A Makefile and a Windows command file can be generated for you so that you\n"
-"only have to run e.g. `make html' instead of invoking sphinx-build\n"
-"directly."
-msgstr ""
-
-#: cmd/quickstart.py:411
-msgid "Create Makefile? (y/n)"
+"Please also report this if it was a user error, so that a better error "
+"message can be provided next time."
msgstr ""
-#: cmd/quickstart.py:415
-msgid "Create Windows command file? (y/n)"
+#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
+msgid "Collapse sidebar"
msgstr ""
-#: cmd/quickstart.py:467 ext/apidoc/_generate.py:76
-#, python-format
-msgid "Creating file %s."
+#: themes/basic/layout.html:18
+msgid "Navigation"
msgstr ""
-#: cmd/quickstart.py:472 ext/apidoc/_generate.py:73
+#: themes/basic/layout.html:115
#, python-format
-msgid "File %s already exists, skipping."
+msgid "Search within %(docstitle)s"
msgstr ""
-#: cmd/quickstart.py:515
-msgid "Finished: An initial directory structure has been created."
+#: themes/basic/layout.html:124
+msgid "About these documents"
msgstr ""
-#: cmd/quickstart.py:519
-#, python-format
-msgid ""
-"You should now populate your master file %s and create other documentation\n"
-"source files. "
+#: themes/agogo/layout.html:34 themes/basic/layout.html:130
+#: themes/basic/search.html:3 themes/basic/search.html:15
+msgid "Search"
msgstr ""
-#: cmd/quickstart.py:526
-msgid ""
-"Use the Makefile to build the docs, like so:\n"
-" make builder"
+#: themes/basic/layout.html:133 themes/basic/layout.html:177
+#: themes/basic/layout.html:179
+msgid "Copyright"
msgstr ""
-#: cmd/quickstart.py:530
+#: themes/basic/layout.html:183 themes/basic/layout.html:189
#, python-format
-msgid ""
-"Use the sphinx-build command to build the docs, like so:\n"
-" sphinx-build -b builder %s %s"
-msgstr ""
-
-#: cmd/quickstart.py:537
-msgid ""
-"where \"builder\" is one of the supported builders, e.g. html, latex or "
-"linkcheck."
-msgstr ""
-
-#: cmd/quickstart.py:572
-msgid ""
-"\n"
-"Generate required files for a Sphinx project.\n"
-"\n"
-"sphinx-quickstart is an interactive tool that asks some questions about your\n"
-"project and then generates a complete documentation directory and sample\n"
-"Makefile to be used with sphinx-build.\n"
-msgstr ""
-
-#: cmd/build.py:73 cmd/quickstart.py:581 ext/apidoc/_cli.py:27
-#: ext/autosummary/generate.py:835
-msgid "For more information, visit ."
-msgstr ""
-
-#: cmd/quickstart.py:591
-msgid "quiet mode"
-msgstr ""
-
-#: cmd/quickstart.py:601
-msgid "project root"
-msgstr ""
-
-#: cmd/quickstart.py:604
-msgid "Structure options"
-msgstr ""
-
-#: cmd/quickstart.py:610
-msgid "if specified, separate source and build dirs"
-msgstr ""
-
-#: cmd/quickstart.py:616
-msgid "if specified, create build dir under source dir"
-msgstr ""
-
-#: cmd/quickstart.py:622
-msgid "replacement for dot in _templates etc."
-msgstr ""
-
-#: cmd/quickstart.py:625
-msgid "Project basic options"
-msgstr ""
-
-#: cmd/quickstart.py:627
-msgid "project name"
-msgstr ""
-
-#: cmd/quickstart.py:630
-msgid "author names"
-msgstr ""
-
-#: cmd/quickstart.py:637
-msgid "version of project"
-msgstr ""
-
-#: cmd/quickstart.py:644
-msgid "release of project"
-msgstr ""
-
-#: cmd/quickstart.py:651
-msgid "document language"
-msgstr ""
-
-#: cmd/quickstart.py:654
-msgid "source file suffix"
-msgstr ""
-
-#: cmd/quickstart.py:657
-msgid "master document name"
-msgstr ""
-
-#: cmd/quickstart.py:660
-msgid "use epub"
-msgstr ""
-
-#: cmd/quickstart.py:663
-msgid "Extension options"
+msgid "© %(copyright_prefix)s %(copyright)s."
msgstr ""
-#: cmd/quickstart.py:670
+#: themes/basic/layout.html:201
#, python-format
-msgid "enable %s extension"
-msgstr ""
-
-#: cmd/quickstart.py:677
-msgid "enable arbitrary extensions"
-msgstr ""
-
-#: cmd/quickstart.py:680
-msgid "Makefile and Batchfile creation"
-msgstr ""
-
-#: cmd/quickstart.py:686
-msgid "create makefile"
-msgstr ""
-
-#: cmd/quickstart.py:692
-msgid "do not create makefile"
-msgstr ""
-
-#: cmd/quickstart.py:699
-msgid "create batchfile"
-msgstr ""
-
-#: cmd/quickstart.py:705
-msgid "do not create batchfile"
-msgstr ""
-
-#: cmd/quickstart.py:714
-msgid "use make-mode for Makefile/make.bat"
-msgstr ""
-
-#: cmd/quickstart.py:717 ext/apidoc/_cli.py:243
-msgid "Project templating"
-msgstr ""
-
-#: cmd/quickstart.py:723 ext/apidoc/_cli.py:249
-msgid "template directory for template files"
-msgstr ""
-
-#: cmd/quickstart.py:730
-msgid "define a template variable"
-msgstr ""
-
-#: cmd/quickstart.py:766
-msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
-msgstr ""
-
-#: cmd/quickstart.py:785
-msgid ""
-"Error: specified path is not a directory, or sphinx files already exist."
-msgstr ""
-
-#: cmd/quickstart.py:792
-msgid ""
-"sphinx-quickstart only generate into a empty directory. Please specify a new"
-" root path."
+msgid "Last updated on %(last_updated)s."
msgstr ""
-#: cmd/quickstart.py:809
+#: themes/basic/layout.html:204
#, python-format
-msgid "Invalid template variable: %s"
-msgstr ""
-
-#: cmd/build.py:64
-msgid "job number should be a positive number"
-msgstr ""
-
-#: cmd/build.py:74
msgid ""
-"\n"
-"Generate documentation from source files.\n"
-"\n"
-"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
-"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
-"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
-"including 'conf.py'\n"
-"\n"
-"sphinx-build can create documentation in different formats. A format is\n"
-"selected by specifying the builder name on the command line; it defaults to\n"
-"HTML. Builders can also perform other tasks related to documentation\n"
-"processing.\n"
-"\n"
-"By default, everything that is outdated is built. Output only for selected\n"
-"files can be built by specifying individual filenames.\n"
-msgstr ""
-
-#: cmd/build.py:100
-msgid "path to documentation source files"
-msgstr ""
-
-#: cmd/build.py:103
-msgid "path to output directory"
-msgstr ""
-
-#: cmd/build.py:109
-msgid ""
-"(optional) a list of specific files to rebuild. Ignored if --write-all is "
-"specified"
-msgstr ""
-
-#: cmd/build.py:114
-msgid "general options"
-msgstr ""
-
-#: cmd/build.py:121
-msgid "builder to use (default: 'html')"
-msgstr ""
-
-#: cmd/build.py:131
-msgid ""
-"run in parallel with N processes, when possible. 'auto' uses the number of "
-"CPU cores"
-msgstr ""
-
-#: cmd/build.py:140
-msgid "write all files (default: only write new and changed files)"
-msgstr ""
-
-#: cmd/build.py:147
-msgid "don't use a saved environment, always read all files"
-msgstr ""
-
-#: cmd/build.py:150
-msgid "path options"
-msgstr ""
-
-#: cmd/build.py:157
-msgid ""
-"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
-msgstr ""
-
-#: cmd/build.py:166
-msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
-msgstr ""
-
-#: cmd/build.py:175
-msgid "use no configuration file, only use settings from -D options"
-msgstr ""
-
-#: cmd/build.py:184
-msgid "override a setting in configuration file"
-msgstr ""
-
-#: cmd/build.py:193
-msgid "pass a value into HTML templates"
-msgstr ""
-
-#: cmd/build.py:202
-msgid "define tag: include \"only\" blocks with TAG"
-msgstr ""
-
-#: cmd/build.py:209
-msgid "nitpicky mode: warn about all missing references"
-msgstr ""
-
-#: cmd/build.py:212
-msgid "console output options"
-msgstr ""
-
-#: cmd/build.py:219
-msgid "increase verbosity (can be repeated)"
-msgstr ""
-
-#: cmd/build.py:226 ext/apidoc/_cli.py:66
-msgid "no output on stdout, just warnings on stderr"
-msgstr ""
-
-#: cmd/build.py:233
-msgid "no output at all, not even warnings"
-msgstr ""
-
-#: cmd/build.py:241
-msgid "do emit colored output (default: auto-detect)"
-msgstr ""
-
-#: cmd/build.py:249
-msgid "do not emit colored output (default: auto-detect)"
-msgstr ""
-
-#: cmd/build.py:252
-msgid "warning control options"
-msgstr ""
-
-#: cmd/build.py:258
-msgid "write warnings (and errors) to given file"
-msgstr ""
-
-#: cmd/build.py:265
-msgid "turn warnings into errors"
+"Created using Sphinx "
+"%(sphinx_version)s."
msgstr ""
-#: cmd/build.py:273
-msgid "show full traceback on exception"
+#: themes/basic/relations.html:4
+msgid "Previous topic"
msgstr ""
-#: cmd/build.py:276
-msgid "run Pdb on exception"
+#: themes/basic/relations.html:6
+msgid "previous chapter"
msgstr ""
-#: cmd/build.py:282
-msgid "raise an exception on warnings"
+#: themes/basic/relations.html:11
+msgid "Next topic"
msgstr ""
-#: cmd/build.py:325
-msgid "cannot combine -a option and filenames"
+#: themes/basic/relations.html:13
+msgid "next chapter"
msgstr ""
-#: cmd/build.py:357
+#: themes/basic/genindex-single.html:26
#, python-format
-msgid "cannot open warning file '%s': %s"
-msgstr ""
-
-#: cmd/build.py:376
-msgid "-D option argument must be in the form name=value"
-msgstr ""
-
-#: cmd/build.py:383
-msgid "-A option argument must be in the form name=value"
-msgstr ""
-
-#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
-msgid "Collapse sidebar"
-msgstr ""
-
-#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
-#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
-msgid "Table of Contents"
+msgid "Index – %(key)s"
msgstr ""
-#: themes/agogo/layout.html:34 themes/basic/layout.html:130
-#: themes/basic/search.html:3 themes/basic/search.html:15
-msgid "Search"
+#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
+#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
+msgid "Full index on one page"
msgstr ""
-#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
-#: themes/basic/searchfield.html:12
-msgid "Go"
+#: themes/basic/sourcelink.html:4
+msgid "This Page"
msgstr ""
#: themes/agogo/layout.html:81 themes/basic/sourcelink.html:7
msgid "Show Source"
msgstr ""
-#: themes/haiku/layout.html:16
-msgid "Contents"
+#: themes/basic/searchbox.html:4
+msgid "Quick search"
msgstr ""
-#: themes/basic/opensearch.xml:4
-#, python-format
-msgid "Search %(docstitle)s"
+#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
+#: themes/basic/searchfield.html:12
+msgid "Go"
msgstr ""
#: themes/basic/defindex.html:4
@@ -2681,7 +2881,7 @@ msgstr ""
msgid "quick access to all modules"
msgstr ""
-#: builders/html/__init__.py:507 themes/basic/defindex.html:23
+#: builders/html/__init__.py:496 themes/basic/defindex.html:23
msgid "General Index"
msgstr ""
@@ -2689,22 +2889,14 @@ msgstr ""
msgid "all functions, classes, terms"
msgstr ""
-#: themes/basic/sourcelink.html:4
-msgid "This Page"
+#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
+#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
+msgid "Table of Contents"
msgstr ""
-#: themes/basic/genindex-single.html:26
+#: themes/basic/opensearch.xml:4
#, python-format
-msgid "Index – %(key)s"
-msgstr ""
-
-#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
-#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
-msgid "Full index on one page"
-msgstr ""
-
-#: themes/basic/searchbox.html:4
-msgid "Quick search"
+msgid "Search %(docstitle)s"
msgstr ""
#: themes/basic/genindex-split.html:8
@@ -2715,57 +2907,6 @@ msgstr ""
msgid "can be huge"
msgstr ""
-#: themes/basic/relations.html:4
-msgid "Previous topic"
-msgstr ""
-
-#: themes/basic/relations.html:6
-msgid "previous chapter"
-msgstr ""
-
-#: themes/basic/relations.html:11
-msgid "Next topic"
-msgstr ""
-
-#: themes/basic/relations.html:13
-msgid "next chapter"
-msgstr ""
-
-#: themes/basic/layout.html:18
-msgid "Navigation"
-msgstr ""
-
-#: themes/basic/layout.html:115
-#, python-format
-msgid "Search within %(docstitle)s"
-msgstr ""
-
-#: themes/basic/layout.html:124
-msgid "About these documents"
-msgstr ""
-
-#: themes/basic/layout.html:133 themes/basic/layout.html:177
-#: themes/basic/layout.html:179
-msgid "Copyright"
-msgstr ""
-
-#: themes/basic/layout.html:183 themes/basic/layout.html:189
-#, python-format
-msgid "© %(copyright_prefix)s %(copyright)s."
-msgstr ""
-
-#: themes/basic/layout.html:201
-#, python-format
-msgid "Last updated on %(last_updated)s."
-msgstr ""
-
-#: themes/basic/layout.html:204
-#, python-format
-msgid ""
-"Created using Sphinx "
-"%(sphinx_version)s."
-msgstr ""
-
#: themes/basic/search.html:20
msgid ""
"Please activate JavaScript to enable the search\n"
@@ -2782,21 +2923,21 @@ msgstr ""
msgid "search"
msgstr ""
-#: themes/basic/static/sphinx_highlight.js:112
-msgid "Hide Search Matches"
+#: themes/haiku/layout.html:16
+msgid "Contents"
msgstr ""
-#: themes/basic/static/searchtools.js:117
+#: themes/basic/static/searchtools.js:132
msgid "Search Results"
msgstr ""
-#: themes/basic/static/searchtools.js:119
+#: themes/basic/static/searchtools.js:134
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
msgstr ""
-#: themes/basic/static/searchtools.js:123
+#: themes/basic/static/searchtools.js:138
#, python-brace-format
msgid "Search finished, found one page matching the search query."
msgid_plural ""
@@ -2804,21 +2945,20 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: themes/basic/static/searchtools.js:253
+#: themes/basic/static/searchtools.js:276
msgid "Searching"
msgstr ""
-#: themes/basic/static/searchtools.js:270
+#: themes/basic/static/searchtools.js:293
msgid "Preparing search..."
msgstr ""
-#: themes/basic/static/searchtools.js:474
+#: themes/basic/static/searchtools.js:526
msgid ", in "
msgstr ""
-#: themes/basic/changes/rstsource.html:5
-#, python-format
-msgid "%(filename)s — %(docstitle)s"
+#: themes/basic/static/sphinx_highlight.js:112
+msgid "Hide Search Matches"
msgstr ""
#: themes/basic/changes/frameset.html:5
@@ -2827,6 +2967,11 @@ msgstr ""
msgid "Changes in Version %(version)s — %(docstitle)s"
msgstr ""
+#: themes/basic/changes/rstsource.html:5
+#, python-format
+msgid "%(filename)s — %(docstitle)s"
+msgstr ""
+
#: themes/basic/changes/versionchanges.html:17
#, python-format
msgid "Automatically generated list of changes in version %(version)s"
@@ -2848,119 +2993,126 @@ msgstr ""
msgid "Expand sidebar"
msgstr ""
-#: domains/python/_annotations.py:529
+#: domains/python/_annotations.py:522
msgid "Positional-only parameter separator (PEP 570)"
msgstr ""
-#: domains/python/_annotations.py:540
+#: domains/python/_annotations.py:533
msgid "Keyword-only parameters separator (PEP 3102)"
msgstr ""
-#: domains/python/__init__.py:113 domains/python/__init__.py:278
+#: domains/c/__init__.py:354 domains/cpp/__init__.py:485
+#: domains/python/_object.py:190 ext/napoleon/docstring.py:980
+msgid "Parameters"
+msgstr ""
+
+#: domains/python/_object.py:206
+msgid "Variables"
+msgstr ""
+
+#: domains/python/_object.py:214
+msgid "Raises"
+msgstr ""
+
+#: domains/python/__init__.py:105 domains/python/__init__.py:270
#, python-format
msgid "%s() (in module %s)"
msgstr ""
-#: domains/python/__init__.py:180 domains/python/__init__.py:374
-#: domains/python/__init__.py:434 domains/python/__init__.py:474
+#: domains/python/__init__.py:172 domains/python/__init__.py:366
+#: domains/python/__init__.py:426 domains/python/__init__.py:466
#, python-format
msgid "%s (in module %s)"
msgstr ""
-#: domains/python/__init__.py:182
+#: domains/python/__init__.py:174
#, python-format
msgid "%s (built-in variable)"
msgstr ""
-#: domains/python/__init__.py:217
+#: domains/python/__init__.py:209
#, python-format
msgid "%s (built-in class)"
msgstr ""
-#: domains/python/__init__.py:218
+#: domains/python/__init__.py:210
#, python-format
msgid "%s (class in %s)"
msgstr ""
-#: domains/python/__init__.py:283
+#: domains/python/__init__.py:275
#, python-format
msgid "%s() (%s class method)"
msgstr ""
-#: domains/python/__init__.py:285
+#: domains/python/__init__.py:277
#, python-format
msgid "%s() (%s static method)"
msgstr ""
-#: domains/python/__init__.py:438
+#: domains/python/__init__.py:430
#, python-format
msgid "%s (%s property)"
msgstr ""
-#: domains/python/__init__.py:478
+#: domains/python/__init__.py:470
#, python-format
msgid "%s (type alias in %s)"
msgstr ""
-#: domains/python/__init__.py:638
+#: domains/python/__init__.py:624
msgid "Python Module Index"
msgstr ""
-#: domains/python/__init__.py:639
+#: domains/python/__init__.py:625
msgid "modules"
msgstr ""
-#: domains/python/__init__.py:717
+#: domains/python/__init__.py:703
msgid "Deprecated"
msgstr ""
-#: domains/python/__init__.py:743
+#: domains/python/__init__.py:729
msgid "exception"
msgstr ""
-#: domains/python/__init__.py:745
+#: domains/python/__init__.py:731
msgid "class method"
msgstr ""
-#: domains/python/__init__.py:746
+#: domains/python/__init__.py:732
msgid "static method"
msgstr ""
-#: domains/python/__init__.py:748
+#: domains/python/__init__.py:734
msgid "property"
msgstr ""
-#: domains/python/__init__.py:749
+#: domains/python/__init__.py:735
msgid "type alias"
msgstr ""
-#: domains/python/__init__.py:818
+#: domains/python/__init__.py:804
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :no-index: for"
" one of them"
msgstr ""
-#: domains/python/__init__.py:978
+#: domains/python/__init__.py:974
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
-#: domains/python/__init__.py:1052
+#: domains/python/__init__.py:1048
msgid " (deprecated)"
msgstr ""
-#: domains/c/__init__.py:326 domains/cpp/__init__.py:483
-#: domains/python/_object.py:190 ext/napoleon/docstring.py:974
-msgid "Parameters"
-msgstr ""
-
-#: domains/python/_object.py:206
-msgid "Variables"
-msgstr ""
-
-#: domains/python/_object.py:214
-msgid "Raises"
+#: domains/cpp/__init__.py:394 domains/cpp/_symbol.py:946
+#, python-format
+msgid ""
+"Duplicate C++ declaration, also defined at %s:%s.\n"
+"Declaration is '.. cpp:%s:: %s'."
msgstr ""
#: domains/cpp/__init__.py:159
@@ -2972,92 +3124,85 @@ msgstr ""
msgid "%s (C++ %s)"
msgstr ""
-#: domains/cpp/__init__.py:392 domains/cpp/_symbol.py:942
-#, python-format
-msgid ""
-"Duplicate C++ declaration, also defined at %s:%s.\n"
-"Declaration is '.. cpp:%s:: %s'."
-msgstr ""
-
-#: domains/c/__init__.py:333 domains/cpp/__init__.py:496
+#: domains/c/__init__.py:361 domains/cpp/__init__.py:498
msgid "Return values"
msgstr ""
-#: domains/c/__init__.py:754 domains/cpp/__init__.py:940
+#: domains/c/__init__.py:782 domains/cpp/__init__.py:942
msgid "union"
msgstr ""
-#: domains/c/__init__.py:749 domains/cpp/__init__.py:942
+#: domains/c/__init__.py:777 domains/cpp/__init__.py:944
msgid "member"
msgstr ""
-#: domains/c/__init__.py:757 domains/cpp/__init__.py:943
+#: domains/c/__init__.py:785 domains/cpp/__init__.py:945
msgid "type"
msgstr ""
-#: domains/cpp/__init__.py:944
+#: domains/cpp/__init__.py:946
msgid "concept"
msgstr ""
-#: domains/c/__init__.py:755 domains/cpp/__init__.py:945
+#: domains/c/__init__.py:783 domains/cpp/__init__.py:947
msgid "enum"
msgstr ""
-#: domains/c/__init__.py:756 domains/cpp/__init__.py:946
+#: domains/c/__init__.py:784 domains/cpp/__init__.py:948
msgid "enumerator"
msgstr ""
-#: domains/c/__init__.py:760 domains/cpp/__init__.py:949
+#: domains/c/__init__.py:788 domains/cpp/__init__.py:951
msgid "function parameter"
msgstr ""
-#: domains/cpp/__init__.py:952
+#: domains/cpp/__init__.py:954
msgid "template parameter"
msgstr ""
-#: domains/c/__init__.py:211
-#, python-format
-msgid "%s (C %s)"
-msgstr ""
-
-#: domains/c/__init__.py:277 domains/c/_symbol.py:557
+#: domains/c/__init__.py:279 domains/c/_symbol.py:569
#, python-format
msgid ""
"Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'."
msgstr ""
-#: domains/c/__init__.py:750
+#: domains/c/__init__.py:211
+#, python-format
+msgid "%s (C %s)"
+msgstr ""
+
+#: domains/c/__init__.py:778
msgid "variable"
msgstr ""
-#: domains/c/__init__.py:752
+#: domains/c/__init__.py:780
msgid "macro"
msgstr ""
-#: domains/c/__init__.py:753
+#: domains/c/__init__.py:781
msgid "struct"
msgstr ""
-#: domains/std/__init__.py:91 domains/std/__init__.py:111
+#: domains/std/__init__.py:88 domains/std/__init__.py:108
#, python-format
msgid "environment variable; %s"
msgstr ""
-#: domains/std/__init__.py:119
+#: domains/std/__init__.py:116
#, python-format
msgid "%s; configuration value"
msgstr ""
-#: domains/std/__init__.py:175
+#: domains/std/__init__.py:172
msgid "Type"
msgstr ""
-#: domains/std/__init__.py:185
+#: domains/std/__init__.py:182
msgid "Default"
msgstr ""
-#: domains/std/__init__.py:242
+#: domains/std/__init__.py:239
#, python-format
msgid ""
"Malformed option description %r, should look like \"opt\", \"-opt args\", \""
@@ -3085,581 +3230,489 @@ msgstr ""
msgid "glossary seems to be misformatted, check indentation"
msgstr ""
-#: domains/std/__init__.py:729
-msgid "glossary term"
-msgstr ""
-
-#: domains/std/__init__.py:730
-msgid "grammar token"
-msgstr ""
-
-#: domains/std/__init__.py:731
-msgid "reference label"
-msgstr ""
-
-#: domains/std/__init__.py:733
-msgid "environment variable"
-msgstr ""
-
-#: domains/std/__init__.py:734
-msgid "program option"
-msgstr ""
-
-#: domains/std/__init__.py:735
-msgid "document"
-msgstr ""
-
-#: domains/std/__init__.py:772 domains/std/__init__.py:785
-msgid "Module Index"
-msgstr ""
-
-#: domains/std/__init__.py:857
-#, python-format
-msgid "duplicate %s description of %s, other instance in %s"
-msgstr ""
-
-#: domains/std/__init__.py:1113
-msgid "numfig is disabled. :numref: is ignored."
-msgstr ""
-
-#: domains/std/__init__.py:1124
-#, python-format
-msgid "Failed to create a cross reference. Any number is not assigned: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1138
-#, python-format
-msgid "the link has no caption: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1153
-#, python-format
-msgid "invalid numfig_format: %s (%r)"
-msgstr ""
-
-#: domains/std/__init__.py:1157
-#, python-format
-msgid "invalid numfig_format: %s"
-msgstr ""
-
-#: domains/std/__init__.py:1453
-#, python-format
-msgid "undefined label: %r"
-msgstr ""
-
-#: domains/std/__init__.py:1456
-#, python-format
-msgid "Failed to create a cross reference. A title or caption not found: %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:324
-#, python-format
-msgid "circular toctree references detected, ignoring: %s <- %s"
-msgstr ""
-
-#: environment/adapters/toctree.py:349
-#, python-format
-msgid ""
-"toctree contains reference to document %r that doesn't have a title: no link"
-" will be generated"
-msgstr ""
-
-#: environment/adapters/toctree.py:364
-#, python-format
-msgid "toctree contains reference to non-included document %r"
-msgstr ""
-
-#: environment/adapters/toctree.py:367
-#, python-format
-msgid "toctree contains reference to non-existing document %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:123
-#, python-format
-msgid "see %s"
-msgstr ""
-
-#: environment/adapters/indexentries.py:133
-#, python-format
-msgid "see also %s"
-msgstr ""
-
-#: environment/adapters/indexentries.py:141
-#, python-format
-msgid "unknown index entry type %r"
-msgstr ""
-
-#: environment/adapters/indexentries.py:268
-#: templates/latex/sphinxmessages.sty.jinja:11
-msgid "Symbols"
-msgstr ""
-
-#: environment/collectors/asset.py:98
-#, python-format
-msgid "image file not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:126
-#, python-format
-msgid "image file %s not readable: %s"
-msgstr ""
-
-#: environment/collectors/asset.py:163
-#, python-format
-msgid "download file not readable: %s"
-msgstr ""
-
-#: environment/collectors/toctree.py:259
-#, python-format
-msgid "%s is already assigned section numbers (nested numbered toctree?)"
+#: domains/std/__init__.py:729
+msgid "glossary term"
msgstr ""
-#: _cli/util/errors.py:190
-msgid "Interrupted!"
+#: domains/std/__init__.py:730
+msgid "grammar token"
msgstr ""
-#: _cli/util/errors.py:194
-msgid "reStructuredText markup error!"
+#: domains/std/__init__.py:731
+msgid "reference label"
msgstr ""
-#: _cli/util/errors.py:200
-msgid "Encoding error!"
+#: domains/std/__init__.py:733
+msgid "environment variable"
msgstr ""
-#: _cli/util/errors.py:203
-msgid "Recursion error!"
+#: domains/std/__init__.py:734
+msgid "program option"
msgstr ""
-#: _cli/util/errors.py:207
-msgid ""
-"This can happen with very large or deeply nested source files. You can "
-"carefully increase the default Python recursion limit of 1,000 in conf.py "
-"with e.g.:"
+#: domains/std/__init__.py:735
+msgid "document"
msgstr ""
-#: _cli/util/errors.py:227
-msgid "Starting debugger:"
+#: domains/std/__init__.py:772 domains/std/__init__.py:785
+msgid "Module Index"
msgstr ""
-#: _cli/util/errors.py:235
-msgid "The full traceback has been saved in:"
+#: domains/std/__init__.py:857
+#, python-format
+msgid "duplicate %s description of %s, other instance in %s"
msgstr ""
-#: _cli/util/errors.py:240
-msgid ""
-"To report this error to the developers, please open an issue at "
-". Thanks!"
+#: domains/std/__init__.py:1113
+msgid "numfig is disabled. :numref: is ignored."
msgstr ""
-#: _cli/util/errors.py:246
-msgid ""
-"Please also report this if it was a user error, so that a better error "
-"message can be provided next time."
+#: domains/std/__init__.py:1124
+#, python-format
+msgid "Failed to create a cross reference. Any number is not assigned: %s"
msgstr ""
-#: transforms/post_transforms/__init__.py:88
-msgid ""
-"Could not determine the fallback text for the cross-reference. Might be a "
-"bug."
+#: domains/std/__init__.py:1138
+#, python-format
+msgid "the link has no caption: %s"
msgstr ""
-#: transforms/post_transforms/__init__.py:237
+#: domains/std/__init__.py:1153
#, python-format
-msgid "more than one target found for 'any' cross-reference %r: could be %s"
+msgid "invalid numfig_format: %s (%r)"
msgstr ""
-#: transforms/post_transforms/__init__.py:299
+#: domains/std/__init__.py:1157
#, python-format
-msgid "%s:%s reference target not found: %s"
+msgid "invalid numfig_format: %s"
msgstr ""
-#: transforms/post_transforms/__init__.py:305
+#: domains/std/__init__.py:1453
#, python-format
-msgid "%r reference target not found: %s"
+msgid "undefined label: %r"
msgstr ""
-#: transforms/post_transforms/images.py:79
+#: domains/std/__init__.py:1456
#, python-format
-msgid "Could not fetch remote image: %s [%s]"
+msgid "Failed to create a cross reference. A title or caption not found: %r"
msgstr ""
-#: transforms/post_transforms/images.py:96
+#: ext/napoleon/docstring.py:178
#, python-format
-msgid "Could not fetch remote image: %s [%d]"
+msgid "invalid value set (missing closing brace): %s"
msgstr ""
-#: transforms/post_transforms/images.py:143
+#: ext/napoleon/docstring.py:185
#, python-format
-msgid "Unknown image format: %s..."
+msgid "invalid value set (missing opening brace): %s"
msgstr ""
-#: builders/html/__init__.py:113
+#: ext/napoleon/docstring.py:192
#, python-format
-msgid "The HTML pages are in %(outdir)s."
+msgid "malformed string literal (missing closing quote): %s"
msgstr ""
-#: builders/html/__init__.py:348
+#: ext/napoleon/docstring.py:199
#, python-format
-msgid "Failed to read build info file: %r"
+msgid "malformed string literal (missing opening quote): %s"
msgstr ""
-#: builders/html/__init__.py:364
-msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
+#: ext/napoleon/docstring.py:902
+msgid "Example"
msgstr ""
-#: builders/html/__init__.py:366
-msgid "building [html]: "
+#: ext/napoleon/docstring.py:903
+msgid "Examples"
msgstr ""
-#: builders/html/__init__.py:383
-#, python-format
-msgid ""
-"template %s has been changed since the previous build, all docs will be "
-"rebuilt"
+#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:947
+msgid "Keyword Arguments"
msgstr ""
-#: builders/html/__init__.py:507
-msgid "index"
+#: ext/napoleon/docstring.py:962
+msgid "Notes"
msgstr ""
-#: builders/html/__init__.py:560
-#, python-format
-msgid "Logo of %s"
+#: ext/napoleon/docstring.py:971
+msgid "Other Parameters"
msgstr ""
-#: builders/html/__init__.py:589
-msgid "next"
+#: ext/napoleon/docstring.py:1007
+msgid "Receives"
msgstr ""
-#: builders/html/__init__.py:598
-msgid "previous"
+#: ext/napoleon/docstring.py:1011
+msgid "References"
msgstr ""
-#: builders/html/__init__.py:696
-msgid "generating indices"
+#: ext/napoleon/docstring.py:1043
+msgid "Warns"
msgstr ""
-#: builders/html/__init__.py:711
-msgid "writing additional pages"
+#: ext/napoleon/docstring.py:1047
+msgid "Yields"
msgstr ""
-#: builders/html/__init__.py:794
+#: ext/autodoc/_generate.py:151
+#: ext/autodoc/_legacy_class_based/_documenters.py:859
#, python-format
-msgid "cannot copy image file '%s': %s"
-msgstr ""
-
-#: builders/html/__init__.py:806
-msgid "copying downloadable files... "
+msgid "A mocked object is detected: %r"
msgstr ""
-#: builders/html/__init__.py:818
+#: ext/autodoc/_generate.py:334 ext/autodoc/_generate.py:348
+#: ext/autodoc/_generate.py:370 ext/autodoc/_generate.py:386
+#: ext/autodoc/_legacy_class_based/_documenters.py:1860
+#: ext/autodoc/_legacy_class_based/_documenters.py:1889
+#: ext/autodoc/_legacy_class_based/_documenters.py:1983
#, python-format
-msgid "cannot copy downloadable file %r: %s"
+msgid "alias of %s"
msgstr ""
-#: builders/html/__init__.py:864
+#: ext/autodoc/_legacy_class_based/_documenters.py:1745
+#: ext/autodoc/_renderer.py:88
#, python-format
-msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
+msgid "Bases: %s"
msgstr ""
-#: builders/html/__init__.py:882
+#: ext/autodoc/_directive_options.py:226
+#: ext/autodoc/_legacy_class_based/_directive_options.py:47
#, python-format
-msgid "Failed to copy a file in html_static_file: %s: %r"
+msgid "invalid value for member-order option: %s"
msgstr ""
-#: builders/html/__init__.py:917
-msgid "copying static files"
+#: ext/autodoc/_directive_options.py:233
+#: ext/autodoc/_legacy_class_based/_directive_options.py:55
+#, python-format
+msgid "invalid value for class-doc-from option: %s"
msgstr ""
-#: builders/html/__init__.py:934
+#: ext/autodoc/_legacy_class_based/_documenters.py:239
+#: ext/autodoc/_names.py:45
#, python-format
-msgid "cannot copy static file %r"
+msgid "invalid signature for auto%s (%r)"
msgstr ""
-#: builders/html/__init__.py:939
-msgid "copying extra files"
+#: ext/autodoc/_legacy_class_based/_documenters.py:800
+#: ext/autodoc/_names.py:53 ext/autodoc/_names.py:101
+#, python-format
+msgid ""
+"don't know which module to import for autodocumenting %r (try placing a "
+"\"module\" or \"currentmodule\" directive in the document, or giving an "
+"explicit module name)"
msgstr ""
-#: builders/html/__init__.py:949
+#: ext/autodoc/_names.py:89
#, python-format
-msgid "cannot copy extra file %r"
+msgid "signature arguments given for automodule: '%s'"
msgstr ""
-#: builders/html/__init__.py:955
+#: ext/autodoc/_names.py:93
#, python-format
-msgid "Failed to write build info file: %r"
+msgid "return annotation given for automodule: '%s'"
msgstr ""
-#: builders/html/__init__.py:1005
-msgid ""
-"search index couldn't be loaded, but not all documents will be built: the "
-"index will be incomplete."
+#: ext/autodoc/_legacy_class_based/_documenters.py:956
+#: ext/autodoc/_names.py:134
+msgid "\"::\" in automodule name doesn't make sense"
msgstr ""
-#: builders/html/__init__.py:1052
+#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:984
#, python-format
-msgid "page %s matches two patterns in html_sidebars: %r and %r"
+msgid "Failed to remove %s: %s"
msgstr ""
-#: builders/html/__init__.py:1216
+#: ext/apidoc/_generate.py:69
#, python-format
+msgid "Would create file %s."
+msgstr ""
+
+#: ext/apidoc/_cli.py:28
msgid ""
-"a Unicode error occurred when rendering the page %s. Please make sure all "
-"config values that contain non-ASCII content are Unicode strings."
+"\n"
+"Look recursively in for Python modules and packages and create\n"
+"one reST file with automodule directives per package in the .\n"
+"\n"
+"The s can be file and/or directory patterns that will be\n"
+"excluded from generation.\n"
+"\n"
+"Note: By default this script will not overwrite already created files."
msgstr ""
-#: builders/html/__init__.py:1224
-#, python-format
+#: ext/apidoc/_cli.py:45
+msgid "path to module to document"
+msgstr ""
+
+#: ext/apidoc/_cli.py:50
msgid ""
-"An error happened in rendering the page %s.\n"
-"Reason: %r"
+"fnmatch-style file and/or directory patterns to exclude from generation"
msgstr ""
-#: builders/html/__init__.py:1257
-msgid "dumping object inventory"
+#: ext/apidoc/_cli.py:60
+msgid "directory to place all output"
msgstr ""
-#: builders/html/__init__.py:1265
-#, python-format
-msgid "dumping search index in %s"
+#: ext/apidoc/_cli.py:75
+msgid "maximum depth of submodules to show in the TOC (default: 4)"
msgstr ""
-#: builders/html/__init__.py:1308
-#, python-format
-msgid "invalid js_file: %r, ignored"
+#: ext/apidoc/_cli.py:82
+msgid "overwrite existing files"
msgstr ""
-#: builders/html/__init__.py:1342
-msgid "Many math_renderers are registered. But no math_renderer is selected."
+#: ext/apidoc/_cli.py:91
+msgid ""
+"follow symbolic links. Powerful when combined with "
+"collective.recipe.omelette."
msgstr ""
-#: builders/html/__init__.py:1346
-#, python-format
-msgid "Unknown math_renderer %r is given."
+#: ext/apidoc/_cli.py:99
+msgid "run the script without creating files"
msgstr ""
-#: builders/html/__init__.py:1360
-#, python-format
-msgid "html_extra_path entry %r is placed inside outdir"
+#: ext/apidoc/_cli.py:106
+msgid "put documentation for each module on its own page"
msgstr ""
-#: builders/html/__init__.py:1365
-#, python-format
-msgid "html_extra_path entry %r does not exist"
+#: ext/apidoc/_cli.py:113
+msgid "include \"_private\" modules"
msgstr ""
-#: builders/html/__init__.py:1380
-#, python-format
-msgid "html_static_path entry %r is placed inside outdir"
+#: ext/apidoc/_cli.py:120
+msgid "filename of table of contents (default: modules)"
msgstr ""
-#: builders/html/__init__.py:1385
-#, python-format
-msgid "html_static_path entry %r does not exist"
+#: ext/apidoc/_cli.py:127
+msgid "don't create a table of contents file"
msgstr ""
-#: builders/html/__init__.py:1396 builders/latex/__init__.py:504
-#, python-format
-msgid "logo file %r does not exist"
+#: ext/apidoc/_cli.py:135
+msgid ""
+"don't create headings for the module/package packages (e.g. when the "
+"docstrings already contain them)"
msgstr ""
-#: builders/html/__init__.py:1407
-#, python-format
-msgid "favicon file %r does not exist"
+#: ext/apidoc/_cli.py:145
+msgid "put module documentation before submodule documentation"
msgstr ""
-#: builders/html/__init__.py:1420
-#, python-format
+#: ext/apidoc/_cli.py:152
msgid ""
-"Values in 'html_sidebars' must be a list of strings. At least one pattern "
-"has a string value: %s. Change to `html_sidebars = %r`."
+"interpret module paths according to PEP-0420 implicit namespaces "
+"specification"
msgstr ""
-#: builders/html/__init__.py:1433
+#: ext/apidoc/_cli.py:160
msgid ""
-"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
-"configuration options)"
+"Comma-separated list of options to pass to automodule directive (or use "
+"SPHINX_APIDOC_OPTIONS)."
msgstr ""
-#: builders/html/__init__.py:1449
-#, python-format
-msgid "%s %s documentation"
+#: ext/apidoc/_cli.py:170
+msgid "file suffix (default: rst)"
msgstr ""
-#: builders/html/_build_info.py:32
-msgid "failed to read broken build info file (unknown version)"
+#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:950
+msgid "Remove existing files in the output directory that were not generated"
msgstr ""
-#: builders/html/_build_info.py:36
-msgid "failed to read broken build info file (missing config entry)"
+#: ext/apidoc/_cli.py:186
+msgid "generate a full project with sphinx-quickstart"
msgstr ""
-#: builders/html/_build_info.py:39
-msgid "failed to read broken build info file (missing tags entry)"
+#: ext/apidoc/_cli.py:193
+msgid "append module_path to sys.path, used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:118
-#, python-format
-msgid "The LaTeX files are in %(outdir)s."
+#: ext/apidoc/_cli.py:200
+msgid "project name (default: root module name)"
msgstr ""
-#: builders/latex/__init__.py:121
-msgid ""
-"\n"
-"Run 'make' in that directory to run these through (pdf)latex\n"
-"(use `make latexpdf' here to do that automatically)."
+#: ext/apidoc/_cli.py:207
+msgid "project author(s), used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:159
-msgid "no \"latex_documents\" config value found; no documents will be written"
+#: ext/apidoc/_cli.py:214
+msgid "project version, used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:170
-#, python-format
-msgid "\"latex_documents\" config value references unknown document %s"
+#: ext/apidoc/_cli.py:222
+msgid "project release, used when --full is given, defaults to --doc-version"
+msgstr ""
+
+#: ext/apidoc/_cli.py:226
+msgid "extension options"
+msgstr ""
+
+#: ext/apidoc/_cli.py:232
+msgid "enable arbitrary extensions, used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:209 templates/latex/latex.tex.jinja:91
-msgid "Release"
+#: ext/apidoc/_cli.py:240
+#, python-format
+msgid "enable %s extension, used when --full is given"
msgstr ""
-#: builders/latex/__init__.py:428
-msgid "copying TeX support files"
+#: ext/apidoc/_cli.py:291
+#, python-format
+msgid "%s is not a directory."
msgstr ""
-#: builders/latex/__init__.py:465
-msgid "copying additional files"
+#: ext/apidoc/_extension.py:50
+msgid "Running apidoc"
msgstr ""
-#: builders/latex/__init__.py:536
+#: ext/apidoc/_extension.py:102
#, python-format
-msgid "Unknown configure key: latex_elements[%r], ignored."
+msgid "apidoc_modules item %i must be a dict"
msgstr ""
-#: builders/latex/__init__.py:544
+#: ext/apidoc/_extension.py:110
#, python-format
-msgid "Unknown theme option: latex_theme_options[%r], ignored."
-msgstr ""
-
-#: builders/latex/transforms.py:120
-msgid "Failed to get a docname!"
+msgid "apidoc_modules item %i must have a 'path' key"
msgstr ""
-#: builders/latex/transforms.py:121
+#: ext/apidoc/_extension.py:115
#, python-format
-msgid "Failed to get a docname for source %r!"
+msgid "apidoc_modules item %i 'path' must be a string"
msgstr ""
-#: builders/latex/transforms.py:487
+#: ext/apidoc/_extension.py:121
#, python-format
-msgid "No footnote was found for given reference node %r"
+msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
msgstr ""
-#: builders/latex/theming.py:88
+#: ext/apidoc/_extension.py:133
#, python-format
-msgid "%r doesn't have \"theme\" setting"
+msgid "apidoc_modules item %i must have a 'destination' key"
msgstr ""
-#: builders/latex/theming.py:91
+#: ext/apidoc/_extension.py:140
#, python-format
-msgid "%r doesn't have \"%s\" setting"
+msgid "apidoc_modules item %i 'destination' must be a string"
msgstr ""
-#: templates/latex/longtable.tex.jinja:52
-#: templates/latex/sphinxmessages.sty.jinja:8
-msgid "continued from previous page"
+#: ext/apidoc/_extension.py:147
+#, python-format
+msgid "apidoc_modules item %i 'destination' should be a relative path"
msgstr ""
-#: templates/latex/longtable.tex.jinja:63
-#: templates/latex/sphinxmessages.sty.jinja:9
-msgid "continues on next page"
+#: ext/apidoc/_extension.py:157
+#, python-format
+msgid "apidoc_modules item %i cannot create destination directory: %s"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:10
-msgid "Non-alphabetical"
+#: ext/apidoc/_extension.py:178
+#, python-format
+msgid "apidoc_modules item %i '%s' must be an int"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:12
-msgid "Numbers"
+#: ext/apidoc/_extension.py:192
+#, python-format
+msgid "apidoc_modules item %i '%s' must be a boolean"
msgstr ""
-#: templates/latex/sphinxmessages.sty.jinja:13
-msgid "page"
+#: ext/apidoc/_extension.py:210
+#, python-format
+msgid "apidoc_modules item %i has unexpected keys: %s"
msgstr ""
-#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:940
-msgid "Keyword Arguments"
+#: ext/apidoc/_extension.py:248
+#, python-format
+msgid "apidoc_modules item %i '%s' must be a sequence"
msgstr ""
-#: ext/napoleon/docstring.py:176
+#: ext/apidoc/_extension.py:257
#, python-format
-msgid "invalid value set (missing closing brace): %s"
+msgid "apidoc_modules item %i '%s' must contain strings"
msgstr ""
-#: ext/napoleon/docstring.py:183
+#: ext/autosummary/generate.py:212 ext/autosummary/generate.py:425
#, python-format
-msgid "invalid value set (missing opening brace): %s"
+msgid ""
+"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
+"%s"
msgstr ""
-#: ext/napoleon/docstring.py:190
+#: ext/autosummary/generate.py:630
#, python-format
-msgid "malformed string literal (missing closing quote): %s"
+msgid "[autosummary] generating autosummary for: %s"
msgstr ""
-#: ext/napoleon/docstring.py:197
+#: ext/autosummary/generate.py:634
#, python-format
-msgid "malformed string literal (missing opening quote): %s"
+msgid "[autosummary] writing to %s"
msgstr ""
-#: ext/napoleon/docstring.py:895
-msgid "Example"
+#: ext/autosummary/generate.py:679
+#, python-format
+msgid ""
+"[autosummary] failed to import %s.\n"
+"Possible hints:\n"
+"%s"
msgstr ""
-#: ext/napoleon/docstring.py:896
-msgid "Examples"
+#: ext/autosummary/generate.py:877
+msgid ""
+"\n"
+"Generate ReStructuredText using autosummary directives.\n"
+"\n"
+"sphinx-autogen is a frontend to sphinx.ext.autosummary.generate. It generates\n"
+"the reStructuredText files from the autosummary directives contained in the\n"
+"given input files.\n"
+"\n"
+"The format of the autosummary directive is documented in the\n"
+"``sphinx.ext.autosummary`` Python module and can be read using::\n"
+"\n"
+" pydoc sphinx.ext.autosummary\n"
msgstr ""
-#: ext/napoleon/docstring.py:956
-msgid "Notes"
+#: ext/autosummary/generate.py:899
+msgid "source files to generate rST files for"
msgstr ""
-#: ext/napoleon/docstring.py:965
-msgid "Other Parameters"
+#: ext/autosummary/generate.py:907
+msgid "directory to place all output in"
msgstr ""
-#: ext/napoleon/docstring.py:1001
-msgid "Receives"
+#: ext/autosummary/generate.py:915
+#, python-format
+msgid "default suffix for files (default: %(default)s)"
msgstr ""
-#: ext/napoleon/docstring.py:1005
-msgid "References"
+#: ext/autosummary/generate.py:923
+#, python-format
+msgid "custom template directory (default: %(default)s)"
msgstr ""
-#: ext/napoleon/docstring.py:1037
-msgid "Warns"
+#: ext/autosummary/generate.py:931
+#, python-format
+msgid "document imported members (default: %(default)s)"
msgstr ""
-#: ext/napoleon/docstring.py:1041
-msgid "Yields"
+#: ext/autosummary/generate.py:940
+#, python-format
+msgid ""
+"document exactly the members in module __all__ attribute. (default: "
+"%(default)s)"
msgstr ""
-#: ext/autosummary/__init__.py:284
+#: ext/autosummary/__init__.py:235
#, python-format
msgid "autosummary references excluded document %r. Ignored."
msgstr ""
-#: ext/autosummary/__init__.py:288
+#: ext/autosummary/__init__.py:239
#, python-format
msgid ""
"autosummary: stub file not found %r. Check your autosummary_generate "
"setting."
msgstr ""
-#: ext/autosummary/__init__.py:309
+#: ext/autosummary/__init__.py:260
msgid "A captioned autosummary requires :toctree: option. ignored."
msgstr ""
-#: ext/autosummary/__init__.py:384
+#: ext/autosummary/__init__.py:329
#, python-format
msgid ""
"autosummary: failed to import %s.\n"
@@ -3667,548 +3720,585 @@ msgid ""
"%s"
msgstr ""
-#: ext/autosummary/__init__.py:404
-#, python-format
-msgid "failed to parse name %s"
-msgstr ""
-
-#: ext/autosummary/__init__.py:412
+#: ext/autosummary/__init__.py:358
#, python-format
msgid "failed to import object %s"
msgstr ""
-#: ext/autosummary/__init__.py:730
+#: ext/autosummary/__init__.py:652
#, python-format
msgid ""
"Summarised items should not include the current module. Replace %r with %r."
msgstr ""
-#: ext/autosummary/__init__.py:927
+#: ext/autosummary/__init__.py:850
#, python-format
msgid "autosummary_generate: file not found: %s"
msgstr ""
-#: ext/autosummary/__init__.py:937
+#: ext/autosummary/__init__.py:860
msgid ""
"autosummary generates .rst files internally. But your source_suffix does not"
" contain .rst. Skipped."
msgstr ""
-#: ext/autosummary/generate.py:232 ext/autosummary/generate.py:450
+#: ext/intersphinx/_load.py:61
#, python-format
msgid ""
-"autosummary: failed to determine %r to be documented, the following exception was raised:\n"
-"%s"
+"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
+"identifiers must be non-empty strings."
msgstr ""
-#: ext/autosummary/generate.py:588
+#: ext/intersphinx/_load.py:72
#, python-format
-msgid "[autosummary] generating autosummary for: %s"
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
+"or list."
msgstr ""
-#: ext/autosummary/generate.py:592
+#: ext/intersphinx/_load.py:83
#, python-format
-msgid "[autosummary] writing to %s"
+msgid ""
+"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
+" inventory locations) pair."
msgstr ""
-#: ext/autosummary/generate.py:637
+#: ext/intersphinx/_load.py:94
#, python-format
msgid ""
-"[autosummary] failed to import %s.\n"
-"Possible hints:\n"
-"%s"
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique non-empty strings."
msgstr ""
-#: ext/autosummary/generate.py:836
+#: ext/intersphinx/_load.py:103
+#, python-format
msgid ""
-"\n"
-"Generate ReStructuredText using autosummary directives.\n"
-"\n"
-"sphinx-autogen is a frontend to sphinx.ext.autosummary.generate. It generates\n"
-"the reStructuredText files from the autosummary directives contained in the\n"
-"given input files.\n"
-"\n"
-"The format of the autosummary directive is documented in the\n"
-"``sphinx.ext.autosummary`` Python module and can be read using::\n"
-"\n"
-" pydoc sphinx.ext.autosummary\n"
+"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
+"must be unique (other instance in intersphinx_mapping[%r])."
msgstr ""
-#: ext/autosummary/generate.py:858
-msgid "source files to generate rST files for"
+#: ext/intersphinx/_load.py:122
+#, python-format
+msgid ""
+"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
+"Inventory locations must be non-empty strings or None."
msgstr ""
-#: ext/autosummary/generate.py:866
-msgid "directory to place all output in"
+#: ext/intersphinx/_load.py:132
+msgid "Invalid `intersphinx_mapping` configuration (1 error)."
msgstr ""
-#: ext/autosummary/generate.py:874
+#: ext/intersphinx/_load.py:135
#, python-format
-msgid "default suffix for files (default: %(default)s)"
+msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
msgstr ""
-#: ext/autosummary/generate.py:882
-#, python-format
-msgid "custom template directory (default: %(default)s)"
+#: ext/intersphinx/_load.py:158
+msgid "An invalid intersphinx_mapping entry was added after normalisation."
msgstr ""
-#: ext/autosummary/generate.py:890
+#: ext/intersphinx/_load.py:297
#, python-format
-msgid "document imported members (default: %(default)s)"
+msgid "loading intersphinx inventory '%s' from %s ..."
msgstr ""
-#: ext/autosummary/generate.py:899
+#: ext/intersphinx/_load.py:324
+msgid ""
+"encountered some issues with some of the inventories, but they had working "
+"alternatives:"
+msgstr ""
+
+#: ext/intersphinx/_load.py:332
#, python-format
msgid ""
-"document exactly the members in module __all__ attribute. (default: "
-"%(default)s)"
+"failed to reach any of the inventories with the following issues:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:178 ext/autosummary/generate.py:909
-msgid "Remove existing files in the output directory that were not generated"
+#: ext/intersphinx/_load.py:411
+#, python-format
+msgid "intersphinx inventory has moved: %s -> %s"
msgstr ""
-#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:944
+#: ext/intersphinx/_resolve.py:53
#, python-format
-msgid "Failed to remove %s: %s"
+msgid "(in %s %s)"
msgstr ""
-#: ext/apidoc/_cli.py:28
-msgid ""
-"\n"
-"Look recursively in for Python modules and packages and create\n"
-"one reST file with automodule directives per package in the .\n"
-"\n"
-"The s can be file and/or directory patterns that will be\n"
-"excluded from generation.\n"
-"\n"
-"Note: By default this script will not overwrite already created files."
+#: ext/intersphinx/_resolve.py:55
+#, python-format
+msgid "(in %s)"
msgstr ""
-#: ext/apidoc/_cli.py:45
-msgid "path to module to document"
+#: ext/intersphinx/_resolve.py:112
+#, python-format
+msgid "inventory '%s': duplicate matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:50
-msgid ""
-"fnmatch-style file and/or directory patterns to exclude from generation"
+#: ext/intersphinx/_resolve.py:122
+#, python-format
+msgid "inventory '%s': multiple matches found for %s:%s"
msgstr ""
-#: ext/apidoc/_cli.py:60
-msgid "directory to place all output"
+#: ext/intersphinx/_resolve.py:387
+#, python-format
+msgid "inventory for external cross-reference not found: %r"
msgstr ""
-#: ext/apidoc/_cli.py:75
-msgid "maximum depth of submodules to show in the TOC (default: 4)"
+#: ext/intersphinx/_resolve.py:396
+#, python-format
+msgid "invalid external cross-reference suffix: %r"
msgstr ""
-#: ext/apidoc/_cli.py:82
-msgid "overwrite existing files"
+#: ext/intersphinx/_resolve.py:407
+#, python-format
+msgid "domain for external cross-reference not found: %r"
msgstr ""
-#: ext/apidoc/_cli.py:91
-msgid ""
-"follow symbolic links. Powerful when combined with "
-"collective.recipe.omelette."
+#: ext/intersphinx/_resolve.py:561
+#, python-format
+msgid "external %s:%s reference target not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:99
-msgid "run the script without creating files"
+#: ext/autodoc/_dynamic/_loader.py:144
+#: ext/autodoc/_legacy_class_based/_documenters.py:882
+#, python-format
+msgid "error while formatting signature for %s: %s"
msgstr ""
-#: ext/apidoc/_cli.py:106
-msgid "put documentation for each module on its own page"
+#: ext/autodoc/_dynamic/_loader.py:193
+#, python-format
+msgid "Ignoring invalid __all__ in module %s: %r"
msgstr ""
-#: ext/apidoc/_cli.py:113
-msgid "include \"_private\" modules"
+#: ext/autodoc/_dynamic/_loader.py:332 ext/autodoc/_dynamic/_signatures.py:496
+#: ext/autodoc/_dynamic/_signatures.py:612
+#: ext/autodoc/_legacy_class_based/_documenters.py:1284
+#: ext/autodoc/_legacy_class_based/_documenters.py:1372
+#: ext/autodoc/_legacy_class_based/_documenters.py:2906
+#, python-format
+msgid "Failed to get a function signature for %s: %s"
msgstr ""
-#: ext/apidoc/_cli.py:120
-msgid "filename of table of contents (default: modules)"
+#: ext/autodoc/_dynamic/_type_comments.py:120
+#, python-format
+msgid "Failed to update signature for %r: parameter not found: %s"
msgstr ""
-#: ext/apidoc/_cli.py:127
-msgid "don't create a table of contents file"
+#: ext/autodoc/_dynamic/_type_comments.py:123
+#, python-format
+msgid "Failed to parse type_comment for %r: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_docstrings.py:268
+#: ext/autodoc/_legacy_class_based/_documenters.py:2499
+#, python-format
+msgid "Invalid __slots__ found on %s. Ignored."
+msgstr ""
+
+#: ext/autodoc/_dynamic/_signatures.py:102
+#: ext/autodoc/_legacy_class_based/_documenters.py:358
+#, python-format
+msgid "error while formatting arguments for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_signatures.py:494
+#: ext/autodoc/_legacy_class_based/_documenters.py:1607
+#, python-format
+msgid "Failed to get a constructor signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_signatures.py:498
+#: ext/autodoc/_legacy_class_based/_documenters.py:2235
+#: ext/autodoc/_legacy_class_based/_documenters.py:2355
+#, python-format
+msgid "Failed to get a method signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_signatures.py:500
+#, python-format
+msgid "Failed to get a signature for %s: %s"
+msgstr ""
+
+#: ext/autodoc/_dynamic/_preserve_defaults.py:156
+#, python-format
+msgid "Failed to parse a default argument value for %r: %s"
msgstr ""
-#: ext/apidoc/_cli.py:135
+#: ext/autodoc/_dynamic/_member_finder.py:420
+#, python-format
msgid ""
-"don't create headings for the module/package packages (e.g. when the "
-"docstrings already contain them)"
+"attribute %s is listed in :members: but is missing as it was not found in "
+"object %r"
msgstr ""
-#: ext/apidoc/_cli.py:145
-msgid "put module documentation before submodule documentation"
+#: ext/autodoc/_dynamic/_member_finder.py:473
+#: ext/autodoc/_legacy_class_based/_documenters.py:677
+#, python-format
+msgid ""
+"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
+"%s"
msgstr ""
-#: ext/apidoc/_cli.py:152
-msgid ""
-"interpret module paths according to PEP-0420 implicit namespaces "
-"specification"
+#: ext/autodoc/_legacy_class_based/_documenters.py:964
+#, python-format
+msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
-#: ext/apidoc/_cli.py:160
+#: ext/autodoc/_legacy_class_based/_documenters.py:980
+#, python-format
msgid ""
-"Comma-separated list of options to pass to automodule directive (or use "
-"SPHINX_APIDOC_OPTIONS)."
+"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
+"__all__"
msgstr ""
-#: ext/apidoc/_cli.py:170
-msgid "file suffix (default: rst)"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1057
+#, python-format
+msgid ""
+"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
-#: ext/apidoc/_cli.py:186
-msgid "generate a full project with sphinx-quickstart"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1764
+#, python-format
+msgid "missing attribute %s in object %s"
msgstr ""
-#: ext/apidoc/_cli.py:193
-msgid "append module_path to sys.path, used when --full is given"
+#: ext/autodoc/_legacy_class_based/_documenters.py:1876
+#, python-format
+msgid "alias of TypeVar(%s)"
msgstr ""
-#: ext/apidoc/_cli.py:200
-msgid "project name (default: root module name)"
+#: builders/html/_build_info.py:32
+msgid "failed to read broken build info file (unknown version)"
msgstr ""
-#: ext/apidoc/_cli.py:207
-msgid "project author(s), used when --full is given"
+#: builders/html/_build_info.py:36
+msgid "failed to read broken build info file (missing config entry)"
msgstr ""
-#: ext/apidoc/_cli.py:214
-msgid "project version, used when --full is given"
+#: builders/html/_build_info.py:39
+msgid "failed to read broken build info file (missing tags entry)"
msgstr ""
-#: ext/apidoc/_cli.py:222
-msgid "project release, used when --full is given, defaults to --doc-version"
+#: builders/html/__init__.py:114
+#, python-format
+msgid "The HTML pages are in %(outdir)s."
msgstr ""
-#: ext/apidoc/_cli.py:226
-msgid "extension options"
+#: builders/html/__init__.py:337
+#, python-format
+msgid "Failed to read build info file: %r"
msgstr ""
-#: ext/apidoc/_cli.py:232
-msgid "enable arbitrary extensions, used when --full is given"
+#: builders/html/__init__.py:353
+msgid "build_info mismatch, copying .buildinfo to .buildinfo.bak"
msgstr ""
-#: ext/apidoc/_cli.py:240
-#, python-format
-msgid "enable %s extension, used when --full is given"
+#: builders/html/__init__.py:355
+msgid "building [html]: "
msgstr ""
-#: ext/apidoc/_cli.py:291
+#: builders/html/__init__.py:372
#, python-format
-msgid "%s is not a directory."
+msgid ""
+"template %s has been changed since the previous build, all docs will be "
+"rebuilt"
msgstr ""
-#: ext/apidoc/_extension.py:50
-msgid "Running apidoc"
+#: builders/html/__init__.py:496
+msgid "index"
msgstr ""
-#: ext/apidoc/_extension.py:102
+#: builders/html/__init__.py:549
#, python-format
-msgid "apidoc_modules item %i must be a dict"
+msgid "Logo of %s"
msgstr ""
-#: ext/apidoc/_extension.py:110
-#, python-format
-msgid "apidoc_modules item %i must have a 'path' key"
+#: builders/html/__init__.py:578
+msgid "next"
msgstr ""
-#: ext/apidoc/_extension.py:115
-#, python-format
-msgid "apidoc_modules item %i 'path' must be a string"
+#: builders/html/__init__.py:587
+msgid "previous"
msgstr ""
-#: ext/apidoc/_extension.py:121
-#, python-format
-msgid "apidoc_modules item %i 'path' is not an existing folder: %s"
+#: builders/html/__init__.py:685
+msgid "generating indices"
msgstr ""
-#: ext/apidoc/_extension.py:133
-#, python-format
-msgid "apidoc_modules item %i must have a 'destination' key"
+#: builders/html/__init__.py:700
+msgid "writing additional pages"
msgstr ""
-#: ext/apidoc/_extension.py:140
+#: builders/html/__init__.py:783
#, python-format
-msgid "apidoc_modules item %i 'destination' must be a string"
+msgid "cannot copy image file '%s': %s"
msgstr ""
-#: ext/apidoc/_extension.py:147
-#, python-format
-msgid "apidoc_modules item %i 'destination' should be a relative path"
+#: builders/html/__init__.py:795
+msgid "copying downloadable files... "
msgstr ""
-#: ext/apidoc/_extension.py:157
+#: builders/html/__init__.py:807
#, python-format
-msgid "apidoc_modules item %i cannot create destination directory: %s"
+msgid "cannot copy downloadable file %r: %s"
msgstr ""
-#: ext/apidoc/_extension.py:178
+#: builders/html/__init__.py:853
#, python-format
-msgid "apidoc_modules item %i '%s' must be an int"
+msgid "Failed to copy a file in the theme's 'static' directory: %s: %r"
msgstr ""
-#: ext/apidoc/_extension.py:192
+#: builders/html/__init__.py:871
#, python-format
-msgid "apidoc_modules item %i '%s' must be a boolean"
+msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr ""
-#: ext/apidoc/_extension.py:210
-#, python-format
-msgid "apidoc_modules item %i has unexpected keys: %s"
+#: builders/html/__init__.py:906
+msgid "copying static files"
msgstr ""
-#: ext/apidoc/_extension.py:247
+#: builders/html/__init__.py:923
#, python-format
-msgid "apidoc_modules item %i '%s' must be a sequence"
+msgid "cannot copy static file %r"
msgstr ""
-#: ext/apidoc/_extension.py:256
-#, python-format
-msgid "apidoc_modules item %i '%s' must contain strings"
+#: builders/html/__init__.py:928
+msgid "copying extra files"
msgstr ""
-#: ext/apidoc/_generate.py:69
+#: builders/html/__init__.py:938
#, python-format
-msgid "Would create file %s."
+msgid "cannot copy extra file %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:49
+#: builders/html/__init__.py:944
#, python-format
-msgid "(in %s v%s)"
+msgid "Failed to write build info file: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:51
-#, python-format
-msgid "(in %s)"
+#: builders/html/__init__.py:994
+msgid ""
+"search index couldn't be loaded, but not all documents will be built: the "
+"index will be incomplete."
msgstr ""
-#: ext/intersphinx/_resolve.py:108
+#: builders/html/__init__.py:1038
#, python-format
-msgid "inventory '%s': duplicate matches found for %s:%s"
+msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:118
+#: builders/html/__init__.py:1204
#, python-format
-msgid "inventory '%s': multiple matches found for %s:%s"
+msgid ""
+"a Unicode error occurred when rendering the page %s. Please make sure all "
+"config values that contain non-ASCII content are Unicode strings."
msgstr ""
-#: ext/intersphinx/_resolve.py:383
+#: builders/html/__init__.py:1217
#, python-format
-msgid "inventory for external cross-reference not found: %r"
+msgid ""
+"The '%s' theme does not support this version of Sphinx, because it uses the "
+"'style' field in HTML templates, which was was deprecated in Sphinx 5.1 and"
+" removed in Sphinx 7.0. The theme must be updated to use the 'styles' field "
+"instead. See https://www.sphinx-"
+"doc.org/en/master/development/html_themes/templating.html#styles"
msgstr ""
-#: ext/intersphinx/_resolve.py:392
+#: builders/html/__init__.py:1225
#, python-format
-msgid "invalid external cross-reference suffix: %r"
+msgid ""
+"An error happened in rendering the page %s.\n"
+"Reason: %r"
msgstr ""
-#: ext/intersphinx/_resolve.py:403
-#, python-format
-msgid "domain for external cross-reference not found: %r"
+#: builders/html/__init__.py:1258
+msgid "dumping object inventory"
msgstr ""
-#: ext/intersphinx/_resolve.py:619
+#: builders/html/__init__.py:1266
#, python-format
-msgid "external %s:%s reference target not found: %s"
+msgid "dumping search index in %s"
msgstr ""
-#: ext/intersphinx/_load.py:60
+#: builders/html/__init__.py:1313
#, python-format
-msgid ""
-"Invalid intersphinx project identifier `%r` in intersphinx_mapping. Project "
-"identifiers must be non-empty strings."
+msgid "invalid js_file: %r, ignored"
msgstr ""
-#: ext/intersphinx/_load.py:71
-#, python-format
-msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Expected a two-element tuple "
-"or list."
+#: builders/html/__init__.py:1347
+msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr ""
-#: ext/intersphinx/_load.py:82
+#: builders/html/__init__.py:1351
#, python-format
-msgid ""
-"Invalid value `%r` in intersphinx_mapping[%r]. Values must be a (target URI,"
-" inventory locations) pair."
+msgid "Unknown math_renderer %r is given."
msgstr ""
-#: ext/intersphinx/_load.py:93
+#: builders/html/__init__.py:1365
#, python-format
-msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique non-empty strings."
+msgid "html_extra_path entry %r is placed inside outdir"
msgstr ""
-#: ext/intersphinx/_load.py:102
+#: builders/html/__init__.py:1370
#, python-format
-msgid ""
-"Invalid target URI value `%r` in intersphinx_mapping[%r][0]. Target URIs "
-"must be unique (other instance in intersphinx_mapping[%r])."
+msgid "html_extra_path entry %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:121
+#: builders/html/__init__.py:1385
#, python-format
-msgid ""
-"Invalid inventory location value `%r` in intersphinx_mapping[%r][1]. "
-"Inventory locations must be non-empty strings or None."
+msgid "html_static_path entry %r is placed inside outdir"
msgstr ""
-#: ext/intersphinx/_load.py:131
-msgid "Invalid `intersphinx_mapping` configuration (1 error)."
+#: builders/html/__init__.py:1390
+#, python-format
+msgid "html_static_path entry %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:134
+#: builders/html/__init__.py:1401 builders/latex/__init__.py:497
#, python-format
-msgid "Invalid `intersphinx_mapping` configuration (%s errors)."
+msgid "logo file %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:157
-msgid "An invalid intersphinx_mapping entry was added after normalisation."
+#: builders/html/__init__.py:1412
+#, python-format
+msgid "favicon file %r does not exist"
msgstr ""
-#: ext/intersphinx/_load.py:261
+#: builders/html/__init__.py:1425
#, python-format
-msgid "loading intersphinx inventory '%s' from %s ..."
+msgid ""
+"Values in 'html_sidebars' must be a list of strings. At least one pattern "
+"has a string value: %s. Change to `html_sidebars = %r`."
msgstr ""
-#: ext/intersphinx/_load.py:287
+#: builders/html/__init__.py:1438
msgid ""
-"encountered some issues with some of the inventories, but they had working "
-"alternatives:"
+"HTML 4 is no longer supported by Sphinx. (\"html4_writer=True\" detected in "
+"configuration options)"
msgstr ""
-#: ext/intersphinx/_load.py:297
-msgid "failed to reach any of the inventories with the following issues:"
+#: builders/html/__init__.py:1454
+#, python-format
+msgid "%s %s documentation"
msgstr ""
-#: ext/intersphinx/_load.py:361
+#: builders/latex/theming.py:87
#, python-format
-msgid "intersphinx inventory has moved: %s -> %s"
+msgid "%r doesn't have \"theme\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:150
+#: builders/latex/theming.py:90
#, python-format
-msgid "invalid value for member-order option: %s"
+msgid "%r doesn't have \"%s\" setting"
msgstr ""
-#: ext/autodoc/__init__.py:158
-#, python-format
-msgid "invalid value for class-doc-from option: %s"
+#: builders/latex/transforms.py:120
+msgid "Failed to get a docname!"
msgstr ""
-#: ext/autodoc/__init__.py:460
+#: builders/latex/transforms.py:121
#, python-format
-msgid "invalid signature for auto%s (%r)"
+msgid "Failed to get a docname for source %r!"
msgstr ""
-#: ext/autodoc/__init__.py:579
+#: builders/latex/transforms.py:487
#, python-format
-msgid "error while formatting arguments for %s: %s"
+msgid "No footnote was found for given reference node %r"
msgstr ""
-#: ext/autodoc/__init__.py:898
+#: builders/latex/__init__.py:115
#, python-format
-msgid ""
-"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n"
-"%s"
+msgid "The LaTeX files are in %(outdir)s."
msgstr ""
-#: ext/autodoc/__init__.py:1021
-#, python-format
+#: builders/latex/__init__.py:118
msgid ""
-"don't know which module to import for autodocumenting %r (try placing a "
-"\"module\" or \"currentmodule\" directive in the document, or giving an "
-"explicit module name)"
+"\n"
+"Run 'make' in that directory to run these through (pdf)latex\n"
+"(use `make latexpdf' here to do that automatically)."
msgstr ""
-#: ext/autodoc/__init__.py:1080
-#, python-format
-msgid "A mocked object is detected: %r"
+#: builders/latex/__init__.py:156
+msgid "no \"latex_documents\" config value found; no documents will be written"
msgstr ""
-#: ext/autodoc/__init__.py:1103
+#: builders/latex/__init__.py:167
#, python-format
-msgid "error while formatting signature for %s: %s"
+msgid "\"latex_documents\" config value references unknown document %s"
msgstr ""
-#: ext/autodoc/__init__.py:1177
-msgid "\"::\" in automodule name doesn't make sense"
+#: builders/latex/__init__.py:421
+msgid "copying TeX support files"
msgstr ""
-#: ext/autodoc/__init__.py:1185
-#, python-format
-msgid "signature arguments or return annotation given for automodule %s"
+#: builders/latex/__init__.py:458
+msgid "copying additional files"
msgstr ""
-#: ext/autodoc/__init__.py:1201
+#: builders/latex/__init__.py:529
#, python-format
-msgid ""
-"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
-"__all__"
+msgid "Unknown configure key: latex_elements[%r], ignored."
msgstr ""
-#: ext/autodoc/__init__.py:1278
+#: builders/latex/__init__.py:537
#, python-format
-msgid ""
-"missing attribute mentioned in :members: option: module %s, attribute %s"
+msgid "Unknown theme option: latex_theme_options[%r], ignored."
msgstr ""
-#: ext/autodoc/__init__.py:1505 ext/autodoc/__init__.py:1593
-#: ext/autodoc/__init__.py:3127
+#: environment/collectors/toctree.py:259
#, python-format
-msgid "Failed to get a function signature for %s: %s"
+msgid "%s is already assigned section numbers (nested numbered toctree?)"
msgstr ""
-#: ext/autodoc/__init__.py:1828
+#: environment/collectors/asset.py:98
#, python-format
-msgid "Failed to get a constructor signature for %s: %s"
+msgid "image file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:1966
+#: environment/collectors/asset.py:126
#, python-format
-msgid "Bases: %s"
+msgid "image file %s not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:1985
+#: environment/collectors/asset.py:165
#, python-format
-msgid "missing attribute %s in object %s"
+msgid "download file not readable: %s"
msgstr ""
-#: ext/autodoc/__init__.py:2081 ext/autodoc/__init__.py:2110
-#: ext/autodoc/__init__.py:2204
+#: environment/adapters/toctree.py:335
#, python-format
-msgid "alias of %s"
+msgid "circular toctree references detected, ignoring: %s <- %s"
msgstr ""
-#: ext/autodoc/__init__.py:2097
+#: environment/adapters/toctree.py:360
#, python-format
-msgid "alias of TypeVar(%s)"
+msgid ""
+"toctree contains reference to document %r that doesn't have a title: no link"
+" will be generated"
msgstr ""
-#: ext/autodoc/__init__.py:2456 ext/autodoc/__init__.py:2576
+#: environment/adapters/toctree.py:375
#, python-format
-msgid "Failed to get a method signature for %s: %s"
+msgid "toctree contains reference to non-included document %r"
msgstr ""
-#: ext/autodoc/__init__.py:2720
+#: environment/adapters/toctree.py:378
#, python-format
-msgid "Invalid __slots__ found on %s. Ignored."
+msgid "toctree contains reference to non-existing document %r"
msgstr ""
-#: ext/autodoc/preserve_defaults.py:195
+#: environment/adapters/indexentries.py:122
#, python-format
-msgid "Failed to parse a default argument value for %r: %s"
+msgid "see %s"
msgstr ""
-#: ext/autodoc/type_comment.py:151
+#: environment/adapters/indexentries.py:132
#, python-format
-msgid "Failed to update signature for %r: parameter not found: %s"
+msgid "see also %s"
msgstr ""
-#: ext/autodoc/type_comment.py:154
+#: environment/adapters/indexentries.py:140
#, python-format
-msgid "Failed to parse type_comment for %r: %s"
+msgid "unknown index entry type %r"
msgstr ""
diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo
index 5784c90a594..c5843c13d75 100644
Binary files a/sphinx/locale/el/LC_MESSAGES/sphinx.mo and b/sphinx/locale/el/LC_MESSAGES/sphinx.mo differ
diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po
index fc081cce481..3dcc383b65f 100644
--- a/sphinx/locale/el/LC_MESSAGES/sphinx.po
+++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po
@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2025-02-18 00:38+0000\n"
+"POT-Creation-Date: 2025-12-01 16:14+0000\n"
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
"Last-Translator: Komiya Takeshi , 2021\n"
"Language-Team: Greek (http://app.transifex.com/sphinx-doc/sphinx-1/language/el/)\n"
@@ -21,6 +21,127 @@ msgstr ""
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+#: roles.py:205
+#, python-format
+msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgstr ""
+
+#: roles.py:228
+#, python-format
+msgid "invalid CVE number %s"
+msgstr ""
+
+#: roles.py:250
+#, python-format
+msgid "Common Weakness Enumeration; CWE %s"
+msgstr ""
+
+#: roles.py:273
+#, python-format
+msgid "invalid CWE number %s"
+msgstr ""
+
+#: roles.py:293
+#, python-format
+msgid "Python Enhancement Proposals; PEP %s"
+msgstr "Python Enhancement Proposals; PEP %s"
+
+#: roles.py:316
+#, python-format
+msgid "invalid PEP number %s"
+msgstr ""
+
+#: roles.py:354
+#, python-format
+msgid "invalid RFC number %s"
+msgstr ""
+
+#: theming.py:117
+#, python-format
+msgid ""
+"Theme configuration sections other than [theme] and [options] are not "
+"supported (tried to get a value from %r)."
+msgstr ""
+
+#: theming.py:122
+#, python-format
+msgid "setting %s.%s occurs in none of the searched theme configs"
+msgstr "η ρύθμιση %s.%s δεν εμφανίζεται από τις παραμετροποιήσεις θέματος που αναζητήθηκαν"
+
+#: theming.py:137
+#, python-format
+msgid "unsupported theme option %r given"
+msgstr "δόθηκε μη υποστηριζόμενη επιλογή θέματος %r"
+
+#: theming.py:218
+#, python-format
+msgid "file %r on theme path is not a valid zipfile or contains no theme"
+msgstr "το αρχείο %r στο μονοπάτι θέματος δεν αποτελεί ένα έγκυρο zipfile ή δεν περιλαμβάνει ένα θέμα"
+
+#: theming.py:238
+#, python-format
+msgid "no theme named %r found (missing theme.toml?)"
+msgstr ""
+
+#: theming.py:278
+#, python-format
+msgid "The %r theme has circular inheritance"
+msgstr ""
+
+#: theming.py:286
+#, python-format
+msgid ""
+"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
+"are: %s"
+msgstr ""
+
+#: theming.py:292
+#, python-format
+msgid "The %r theme has too many ancestors"
+msgstr ""
+
+#: theming.py:320
+#, python-format
+msgid "no theme configuration file found in %r"
+msgstr ""
+
+#: theming.py:345 theming.py:398
+#, python-format
+msgid "theme %r doesn't have the \"theme\" table"
+msgstr ""
+
+#: theming.py:349
+#, python-format
+msgid "The %r theme \"[theme]\" table is not a table"
+msgstr ""
+
+#: theming.py:353 theming.py:401
+#, python-format
+msgid "The %r theme must define the \"theme.inherit\" setting"
+msgstr ""
+
+#: theming.py:357
+#, python-format
+msgid "The %r theme \"[options]\" table is not a table"
+msgstr ""
+
+#: theming.py:376
+#, python-format
+msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
+msgstr ""
+
+#: project.py:72
+#, python-format
+msgid ""
+"multiple files found for the document \"%s\": %s\n"
+"Use %r for the build."
+msgstr ""
+
+#: project.py:87
+#, python-format
+msgid "Ignored unreadable document %r."
+msgstr ""
+
#: extension.py:58
#, python-format
msgid ""
@@ -35,127 +156,154 @@ msgid ""
"cannot be built with the loaded version (%s)."
msgstr "Το έργο χρειάζεται την επέκταση %s τουλάχιστον στην έκδοση %s και επομένως δεν είναι δυνατή η μεταγλώττιση με τη φορτωμένη έκδοση (%s)."
-#: application.py:212
+#: highlighting.py:170
+#, python-format
+msgid "Pygments lexer name %r is not known"
+msgstr "Το όνομα %r δεν είναι γνωστό"
+
+#: highlighting.py:209
+#, python-format
+msgid ""
+"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
+"Retrying in relaxed mode."
+msgstr ""
+
+#: events.py:92
+#, python-format
+msgid "Event %r already present"
+msgstr "Το συμβάν %r υπάρχει ήδη"
+
+#: events.py:386
+#, python-format
+msgid "Unknown event name: %s"
+msgstr "Άγνωστο όνομα συμβάντος: %s"
+
+#: events.py:451
+#, python-format
+msgid "Handler %r for event %r threw an exception"
+msgstr ""
+
+#: application.py:218
#, python-format
msgid "Cannot find source directory (%s)"
msgstr "Δεν είναι δυνατή η εύρεση του καταλόγου πηγής (%s)"
-#: application.py:217
+#: application.py:223
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
-#: application.py:222
+#: application.py:228
msgid "Source directory and destination directory cannot be identical"
msgstr "Ο κατάλογος πηγής και ο κατάλογος προορισμού δεν είναι δυνατό να είναι ίδιοι"
-#: application.py:252
+#: application.py:258
#, python-format
msgid "Running Sphinx v%s"
msgstr "Εκτέλεση Sphinx έκδοση %s"
-#: application.py:278
+#: application.py:286
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr "Αυτό το έργο απαιτεί Sphinx έκδοσης τουλάχιστον %s και επομένως δεν είναι δυνατή η μεταγλωτισση με αυτή την έκδοση."
-#: application.py:297
+#: application.py:305
msgid "making output directory"
msgstr "δημιουργία καταλόγου εξόδου"
-#: application.py:302 registry.py:538
+#: application.py:310 registry.py:540
#, python-format
msgid "while setting up extension %s:"
msgstr "κατά τον καθορισμό της επέκτασης %s"
-#: application.py:309
+#: application.py:317
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr "η 'παραμετροποίηση' σύμφωνα με τον τρέχοντα ορισμό στο conf.py δεν αποτελεί καλέσιμο. Παρακαλείσθε να τροποποιήσετε τον ορισμό ώστε να το κάνετε μία καλέσιμη συνάρτηση. Αυτό απαιτείται προκειμένου το conf.py να συμπεριφέρεται ως μία επέκταση Sphinx."
-#: application.py:346
+#: application.py:360
#, python-format
msgid "loading translations [%s]... "
msgstr "φόρτωση μεταφράσεων [%s]..."
-#: application.py:370 util/display.py:89
+#: application.py:384 util/display.py:89
msgid "done"
msgstr "ολοκλήρωση"
-#: application.py:372
+#: application.py:386
msgid "not available for built-in messages"
msgstr "δεν είναι διαθέσιμο για εσωτερικά μηνύματα"
-#: application.py:386
+#: application.py:400
msgid "loading pickled environment"
msgstr "φόρτωση πακτωμένου περιβάλλοντος"
-#: application.py:394
+#: application.py:408
#, python-format
msgid "failed: %s"
msgstr "αποτυχία: %s"
-#: application.py:407
+#: application.py:423
msgid "No builder selected, using default: html"
msgstr "Δεν επιλέχθηκε μεταγλωττιστής, θα χρησιμοποιηθεί ο προεπιλεγμένος: html"
-#: application.py:439
+#: application.py:455
msgid "build finished with problems."
msgstr ""
-#: application.py:441
+#: application.py:457
msgid "build succeeded."
msgstr ""
-#: application.py:446
+#: application.py:462
msgid ""
"build finished with problems, 1 warning (with warnings treated as errors)."
msgstr ""
-#: application.py:450
+#: application.py:466
msgid "build finished with problems, 1 warning."
msgstr ""
-#: application.py:452
+#: application.py:468
msgid "build succeeded, 1 warning."
msgstr ""
-#: application.py:458
+#: application.py:474
#, python-format
msgid ""
"build finished with problems, %s warnings (with warnings treated as errors)."
msgstr ""
-#: application.py:462
+#: application.py:478
#, python-format
msgid "build finished with problems, %s warnings."
msgstr ""
-#: application.py:464
+#: application.py:480
#, python-format
msgid "build succeeded, %s warnings."
msgstr ""
-#: application.py:1026
+#: application.py:1020
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr "η κλάση κόμβου %r έχει ήδη καταχωρηθεί, οι επισκέπτες της θα υπερσκελιστούν"
-#: application.py:1119
+#: application.py:1113
#, python-format
msgid "directive %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1145 application.py:1173
+#: application.py:1139 application.py:1167
#, python-format
msgid "role %r is already registered and will not be overridden"
msgstr ""
-#: application.py:1770
+#: application.py:1766
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@@ -163,12 +311,12 @@ msgid ""
"explicit"
msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε από το δημιουργό της επέκτασης να το ελέγχει και να το κάνει σαφές"
-#: application.py:1775
+#: application.py:1771
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
-#: application.py:1779
+#: application.py:1775
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@@ -176,82 +324,214 @@ msgid ""
"explicit"
msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε το δημιουργό της επέκτασης να το ελέγξει και να το κάνει σαφές"
-#: application.py:1784
+#: application.py:1780
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
-#: application.py:1792 application.py:1796
+#: application.py:1788 application.py:1792
#, python-format
msgid "doing serial %s"
msgstr "εκτέλεση σειριακής %s"
-#: config.py:355
+#: registry.py:162
#, python-format
-msgid "config directory doesn't contain a conf.py file (%s)"
-msgstr "ο κατάλογος παραμετροποίησης δεν περιλαμβάνει κανένα αρχείο conf.py (%s)"
+msgid "Builder class %s has no \"name\" attribute"
+msgstr "Η κλάση μεταγλώττισης %s δεν έχει χαρακτηριστικό \"name\" "
+
+#: registry.py:166
+#, python-format
+msgid "Builder %r already exists (in module %s)"
+msgstr "Ο μεταγλωττιστής %r υφίσταται ήδη (στο δομοστοιχείο %s)"
+
+#: registry.py:182
+#, python-format
+msgid "Builder name %s not registered or available through entry point"
+msgstr "Το όνομα μεταγλωττιστή %s δεν είναι καταχωρημένο ή διαθέσιμο δια μέσου του σημείου εισαγωγής"
+
+#: registry.py:192
+#, python-format
+msgid "Builder name %s not registered"
+msgstr "Το όνομα μεταγλωττιστή %sδεν είναι καταχορημένο"
+
+#: registry.py:199
+#, python-format
+msgid "domain %s already registered"
+msgstr "ο τομέας %s είναι ήδη καταχωρημένος"
+
+#: registry.py:223 registry.py:244 registry.py:257
+#, python-format
+msgid "domain %s not yet registered"
+msgstr "ο τομέας %s δεν έχει καταχωρηθεί ακόμη"
+
+#: registry.py:230
+#, python-format
+msgid "The %r directive is already registered to domain %s"
+msgstr "Η οδηγία %r είναι ήδη καταχωρημένη στον τομέα %s"
+
+#: registry.py:248
+#, python-format
+msgid "The %r role is already registered to domain %s"
+msgstr "Ο ρόλος %r είναι ήδη καταχωρημένος στον τομέα %s"
+
+#: registry.py:261
+#, python-format
+msgid "The %r index is already registered to domain %s"
+msgstr "Ο δείκτης %r είναι ήδη καταχωρημένος στον τομέα %s"
+
+#: registry.py:308
+#, python-format
+msgid "The %r object_type is already registered"
+msgstr "Το object_type %r είναι ήδη καταχωρημένο"
+
+#: registry.py:339
+#, python-format
+msgid "The %r crossref_type is already registered"
+msgstr "Το crossref_type %r είναι ήδη καταχωρημένο"
+
+#: registry.py:348
+#, python-format
+msgid "source_suffix %r is already registered"
+msgstr "το source_suffix %r είναι ήδη καταχωρημένο"
+
+#: registry.py:358
+#, python-format
+msgid "source_parser for %r is already registered"
+msgstr "το source_parser για το %r είναι ήδη καταχωρημένο"
+
+#: registry.py:367
+#, python-format
+msgid "Source parser for %s not registered"
+msgstr "Ο αναλυτής πηγής για το %s δεν είναι καταχωρημένος"
+
+#: registry.py:388
+#, python-format
+msgid "Translator for %r already exists"
+msgstr "Ο μεταφραστής για το %r υφίσταται ήδη"
+
+#: registry.py:405
+#, python-format
+msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
+msgstr "το kwargs για το add_node() πρέπει να είναι μία (visit, depart) συνάρτηση πλειάδας: %r=%r"
+
+#: registry.py:498
+#, python-format
+msgid "enumerable_node %r already registered"
+msgstr "το enumerable_node %r είναι ήδη καταχωρημένο"
+
+#: registry.py:514
+#, python-format
+msgid "math renderer %s is already registered"
+msgstr ""
-#: config.py:366
+#: registry.py:531
+#, python-format
msgid ""
-"Invalid configuration value found: 'language = None'. Update your "
-"configuration to a valid language code. Falling back to 'en' (English)."
+"the extension %r was already merged with Sphinx since version %s; this "
+"extension is ignored."
+msgstr "η επέκταση %r συγχωνεύθηκε ήδη με το Sphinx από την έκδοση %s; η επέκταση αυτή θα αγνοηθεί."
+
+#: registry.py:545
+msgid "Original exception:\n"
+msgstr "Αρχική εξαίρεση:\n"
+
+#: registry.py:547
+#, python-format
+msgid "Could not import extension %s"
+msgstr "Δεν ήταν δυνατή η εισαγωγή της επέκτασης %s"
+
+#: registry.py:554
+#, python-format
+msgid ""
+"extension %r has no setup() function; is it really a Sphinx extension "
+"module?"
+msgstr "η επέκταση %r δεν έχει συνάρτηση setup(); αποτελεί δομοστοιχείο επέκτασης του Sphinx;"
+
+#: registry.py:567
+#, python-format
+msgid ""
+"The %s extension used by this project needs at least Sphinx v%s; it "
+"therefore cannot be built with this version."
+msgstr "Η επέκταση %s η οποία χρησιμοποιείται από αυτό το έργο απαιτεί Sphinx έκδοσης τουλάχιστον %s: επομένως δεν είναι δυνατή η μεταγλώττιση με αυτή την έκδοση."
+
+#: registry.py:579
+#, python-format
+msgid ""
+"extension %r returned an unsupported object from its setup() function; it "
+"should return None or a metadata dictionary"
+msgstr "η επέκταση %r επιστρέφει ένα μη υποστηριζόμενο αντικείμενο από τη συνάρτησή της setup(): θα έπρεπε να επιστρέφει None ή έναν κατάλογο μεταδεδομένων"
+
+#: registry.py:605
+#, python-format
+msgid "`None` is not a valid filetype for %r."
msgstr ""
-#: config.py:394
+#: config.py:351
+#, python-format
+msgid "config directory doesn't contain a conf.py file (%s)"
+msgstr "ο κατάλογος παραμετροποίησης δεν περιλαμβάνει κανένα αρχείο conf.py (%s)"
+
+#: config.py:374
#, python-format
msgid "'%s' must be '0' or '1', got '%s'"
msgstr ""
-#: config.py:399
+#: config.py:379
#, python-format
msgid ""
"cannot override dictionary config setting %r, ignoring (use %r to set "
"individual elements)"
msgstr "δεν είναι δυνατή η υπερσκέλιση της ρύθμισης παραμετροποίησης καταλόγου %r, θα αγνοηθεί (χρησιμοποιήστε το %r για να καθορίσετε τα επιμέρους στοιχεία)"
-#: config.py:411
+#: config.py:391
#, python-format
msgid "invalid number %r for config value %r, ignoring"
msgstr "ανέγκυρος αριθμός %r για τιμή παραμετροποίησης %r, θα αγνοηθεί"
-#: config.py:419
+#: config.py:399
#, python-format
msgid "cannot override config setting %r with unsupported type, ignoring"
msgstr "δεν είναι δυνατή η υπερσκέλιση της ρύθμισης παραμετροποίησης %r με τύπο ο οποίος δεν υποστηρίζεται, θα αγνοηθεί"
-#: config.py:442
+#: config.py:422
#, python-format
msgid "unknown config value %r in override, ignoring"
msgstr "άγνωστη τιμή παραμετροποίσης %r στην υπερσκέλιση, θα αγνοηθεί"
-#: config.py:496
+#: config.py:476
#, python-format
msgid "No such config value: %r"
msgstr ""
-#: config.py:524
+#: config.py:504
#, python-format
msgid "Config value %r already present"
msgstr "Η τιμή παραμετροποίησης %r υφίσταται ήδη."
-#: config.py:561
+#: config.py:541
#, python-format
msgid ""
"cannot cache unpickleable configuration value: %r (because it contains a "
"function, class, or module object)"
msgstr ""
-#: config.py:603
+#: config.py:577
+msgid ""
+"Invalid configuration value found: 'language = None'. Update your "
+"configuration to a valid language code. Falling back to 'en' (English)."
+msgstr ""
+
+#: config.py:599
#, python-format
msgid "There is a syntax error in your configuration file: %s\n"
msgstr "Υπάρχει ένα συντακτικό λάθος στο αρχείο παραμετροποίησής σας: %s\n"
-#: config.py:607
+#: config.py:603
msgid ""
"The configuration file (or one of the modules it imports) called sys.exit()"
msgstr "Το αρχείο παραμετροποίησης (ή ένα από τα στοιχεία που εισάγει) κάλεσε την sys.exit()"
-#: config.py:615
+#: config.py:611
#, python-format
msgid ""
"There is a programmable error in your configuration file:\n"
@@ -259,469 +539,625 @@ msgid ""
"%s"
msgstr "Υπάρχει ένα προγραμματιστικό λάθος στο αρχείο παραμετροποίησής σας:\n\n%s"
-#: config.py:637
+#: config.py:633
#, python-format
msgid "Failed to convert %r to a frozenset"
msgstr ""
-#: config.py:655 config.py:663
+#: config.py:651 config.py:659
#, python-format
msgid "Converting `source_suffix = %r` to `source_suffix = %r`."
msgstr ""
-#: config.py:669
+#: config.py:665
#, python-format
msgid ""
"The config value `source_suffix' expects a dictionary, a string, or a list "
"of strings. Got `%r' instead (type %s)."
msgstr ""
-#: config.py:690
+#: config.py:686
#, python-format
msgid "Section %s"
msgstr "Τομέας %s"
-#: config.py:691
+#: config.py:687
#, python-format
msgid "Fig. %s"
msgstr "Εικ. %s"
-#: config.py:692
+#: config.py:688
#, python-format
msgid "Table %s"
msgstr "Πίνακας %s"
-#: config.py:693
+#: config.py:689
#, python-format
msgid "Listing %s"
msgstr "Λίστα %s"
-#: config.py:802
+#: config.py:798
#, python-brace-format
msgid ""
"The config value `{name}` has to be a one of {candidates}, but `{current}` "
"is given."
msgstr "Η τιμή παραμετροποίησης '{name}' πρέπει να λαμβάνει μία από τις {candidates} αλλά εκχωρήθηκε η '{current}'."
-#: config.py:833
+#: config.py:829
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}'; expected "
"{permitted}."
msgstr "Η τιμή παραμετροποίησης '{name]' έχει τύπο '[current__name__}'; αναμενόμενη {permitted}."
-#: config.py:850
+#: config.py:846
#, python-brace-format
msgid ""
"The config value `{name}' has type `{current.__name__}', defaults to "
"`{default.__name__}'."
msgstr "Η τιμή παραμετροποίησης '{name}' έχει τύπο '{current__name__}', αρχικοποίηση σε '{default__name__}'."
-#: config.py:862
+#: config.py:858
#, python-format
msgid "primary_domain %r not found, ignored."
msgstr "το primary_domain %r δεν βρέθηκε, θα αγνοηθεί."
-#: config.py:882
+#: config.py:878
msgid ""
"Sphinx now uses \"index\" as the master document by default. To keep pre-2.0"
" behaviour, set \"master_doc = 'contents'\"."
msgstr ""
-#: highlighting.py:170
-#, python-format
-msgid "Pygments lexer name %r is not known"
-msgstr "Το όνομα %r δεν είναι γνωστό"
+#: config.py:892
+msgid ""
+"Support for source encodings other than UTF-8 is deprecated and will be "
+"removed in Sphinx 10. Please comment at https://github.com/sphinx-"
+"doc/sphinx/issues/13665 if this causes a problem."
+msgstr ""
-#: highlighting.py:209
-#, python-format
-msgid ""
-"Lexing literal_block %r as \"%s\" resulted in an error at token: %r. "
-"Retrying in relaxed mode."
-msgstr ""
+#: environment/__init__.py:89
+msgid "new config"
+msgstr "νέα παραμετροποίηση"
-#: theming.py:115
-#, python-format
-msgid ""
-"Theme configuration sections other than [theme] and [options] are not "
-"supported (tried to get a value from %r)."
-msgstr ""
+#: environment/__init__.py:90
+msgid "config changed"
+msgstr "η παραμετροποίηση άλλαξε"
-#: theming.py:120
-#, python-format
-msgid "setting %s.%s occurs in none of the searched theme configs"
-msgstr "η ρύθμιση %s.%s δεν εμφανίζεται από τις παραμετροποιήσεις θέματος που αναζητήθηκαν"
+#: environment/__init__.py:91
+msgid "extensions changed"
+msgstr "αλλαγμένες επεκτάσεις"
-#: theming.py:135
-#, python-format
-msgid "unsupported theme option %r given"
-msgstr "δόθηκε μη υποστηριζόμενη επιλογή θέματος %r"
+#: environment/__init__.py:261
+msgid "build environment version not current"
+msgstr "η έκδοση του περιβάλλοντος μεταλώττισης δεν είναι η τρέχουσα"
-#: theming.py:208
-#, python-format
-msgid "file %r on theme path is not a valid zipfile or contains no theme"
-msgstr "το αρχείο %r στο μονοπάτι θέματος δεν αποτελεί ένα έγκυρο zipfile ή δεν περιλαμβάνει ένα θέμα"
+#: environment/__init__.py:263
+msgid "source directory has changed"
+msgstr "ο πηγαίος κατάλογος έχει αλλάξει"
-#: theming.py:228
+#: environment/__init__.py:350
#, python-format
-msgid "no theme named %r found (missing theme.toml?)"
+msgid "The configuration has changed (1 option: %r)"
msgstr ""
-#: theming.py:268
+#: environment/__init__.py:355
#, python-format
-msgid "The %r theme has circular inheritance"
+msgid "The configuration has changed (%d options: %s)"
msgstr ""
-#: theming.py:276
+#: environment/__init__.py:361
#, python-format
-msgid ""
-"The %r theme inherits from %r, which is not a loaded theme. Loaded themes "
-"are: %s"
+msgid "The configuration has changed (%d options: %s, ...)"
msgstr ""
-#: theming.py:282
-#, python-format
-msgid "The %r theme has too many ancestors"
-msgstr ""
+#: environment/__init__.py:404
+msgid ""
+"This environment is incompatible with the selected builder, please choose "
+"another doctree directory."
+msgstr "Το περιβάλλον δεν είναι συμβατό με τον επιλεγμένο μεταγλωττιστή, παρακαλείστε να επιλέξετε ένα διαφορετικό κατάλογο toctree."
-#: theming.py:310
+#: environment/__init__.py:518
#, python-format
-msgid "no theme configuration file found in %r"
-msgstr ""
+msgid "Failed to scan documents in %s: %r"
+msgstr "Αδυναμία σάρωσης εγγράφων σε %s: %r"
-#: theming.py:335 theming.py:388
+#: environment/__init__.py:645 ext/intersphinx/_resolve.py:238
#, python-format
-msgid "theme %r doesn't have the \"theme\" table"
-msgstr ""
+msgid "Domain %r is not registered"
+msgstr "Ο τομέας %r δεν είναι καταχωρημένος"
-#: theming.py:339
-#, python-format
-msgid "The %r theme \"[theme]\" table is not a table"
-msgstr ""
+#: environment/__init__.py:811
+msgid "document isn't included in any toctree"
+msgstr "το έγγραφο δεν συμπεριλαμβάνεται σε κανένα toctree"
-#: theming.py:343 theming.py:391
-#, python-format
-msgid "The %r theme must define the \"theme.inherit\" setting"
-msgstr ""
+#: environment/__init__.py:922
+msgid "self referenced toctree found. Ignored."
+msgstr "Βρέθηκε αυτοαναφερόμενο toctree. Θα αγνοηθεί."
-#: theming.py:347
+#: environment/__init__.py:952
#, python-format
-msgid "The %r theme \"[options]\" table is not a table"
+msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
msgstr ""
-#: theming.py:366
-#, python-format
-msgid "The \"theme.pygments_style\" setting must be a table. Hint: \"%s\""
-msgstr ""
+#: locale/__init__.py:229
+msgid "Attention"
+msgstr "Προσοχή"
-#: events.py:77
-#, python-format
-msgid "Event %r already present"
-msgstr "Το συμβάν %r υπάρχει ήδη"
+#: locale/__init__.py:230
+msgid "Caution"
+msgstr "Προσοχή"
-#: events.py:370
-#, python-format
-msgid "Unknown event name: %s"
-msgstr "Άγνωστο όνομα συμβάντος: %s"
+#: locale/__init__.py:231
+msgid "Danger"
+msgstr "Κίνδυνος"
-#: events.py:416
-#, python-format
-msgid "Handler %r for event %r threw an exception"
-msgstr ""
+#: locale/__init__.py:232
+msgid "Error"
+msgstr "Σφάλμα"
-#: project.py:72
+#: locale/__init__.py:233
+msgid "Hint"
+msgstr "Συμβουλή"
+
+#: locale/__init__.py:234
+msgid "Important"
+msgstr "Σημαντικό"
+
+#: locale/__init__.py:235
+msgid "Note"
+msgstr "Σημείωση"
+
+#: locale/__init__.py:236
+msgid "See also"
+msgstr "Δείτε επίσης"
+
+#: locale/__init__.py:237
+msgid "Tip"
+msgstr "Πρακτική συμβουλή"
+
+#: locale/__init__.py:238
+msgid "Warning"
+msgstr "Προειδοποίηση"
+
+#: builders/texinfo.py:41
#, python-format
+msgid "The Texinfo files are in %(outdir)s."
+msgstr "Τα αρχεία Texinfo βρίσκονται σε %(outdir)s."
+
+#: builders/texinfo.py:44
msgid ""
-"multiple files found for the document \"%s\": %s\n"
-"Use %r for the build."
-msgstr ""
+"\n"
+"Run 'make' in that directory to run these through makeinfo\n"
+"(use 'make info' here to do that automatically)."
+msgstr "\nΕκτελέστε 'make' σε αυτό τον κατάλογο για να εκτελέσετε αυτά μέσω του makeinfo\n(χρησιμοποιήστε το 'make info' εδώ για να το κάνετε αυτόματα)."
-#: project.py:87
-#, python-format
-msgid "Ignored unreadable document %r."
-msgstr ""
+#: builders/texinfo.py:73
+msgid "no \"texinfo_documents\" config value found; no documents will be written"
+msgstr "δεν βρέθηκε τιμή \"texinfo_documents\": δεν θα γίνει εγγραφή κανενός κειμένου"
-#: registry.py:167
+#: builders/texinfo.py:85
#, python-format
-msgid "Builder class %s has no \"name\" attribute"
-msgstr "Η κλάση μεταγλώττισης %s δεν έχει χαρακτηριστικό \"name\" "
+msgid "\"texinfo_documents\" config value references unknown document %s"
+msgstr "η τιμή παραμετροποίησης \"texninfo_documents\" αναφέρεται σε άγνωστο κείμενο %s"
-#: registry.py:171
+#: builders/latex/__init__.py:310 builders/texinfo.py:105
#, python-format
-msgid "Builder %r already exists (in module %s)"
-msgstr "Ο μεταγλωττιστής %r υφίσταται ήδη (στο δομοστοιχείο %s)"
+msgid "processing %s"
+msgstr "επεξεργασία %s"
-#: registry.py:187
-#, python-format
-msgid "Builder name %s not registered or available through entry point"
-msgstr "Το όνομα μεταγλωττιστή %s δεν είναι καταχωρημένο ή διαθέσιμο δια μέσου του σημείου εισαγωγής"
+#: builders/latex/__init__.py:332 builders/manpage.py:54
+#: builders/singlehtml.py:176 builders/texinfo.py:111
+msgid "writing"
+msgstr "εγγραφή"
-#: registry.py:197
-#, python-format
-msgid "Builder name %s not registered"
-msgstr "Το όνομα μεταγλωττιστή %sδεν είναι καταχορημένο"
+#: builders/latex/__init__.py:398 builders/texinfo.py:160
+msgid "resolving references..."
+msgstr "επίλυση αναφορών..."
-#: registry.py:204
-#, python-format
-msgid "domain %s already registered"
-msgstr "ο τομέας %s είναι ήδη καταχωρημένος"
+#: builders/latex/__init__.py:409 builders/texinfo.py:170
+msgid " (in "
+msgstr " (σε "
-#: registry.py:228 registry.py:249 registry.py:262
-#, python-format
-msgid "domain %s not yet registered"
-msgstr "ο τομέας %s δεν έχει καταχωρηθεί ακόμη"
+#: builders/_epub_base.py:425 builders/html/__init__.py:768
+#: builders/latex/__init__.py:474 builders/texinfo.py:186
+msgid "copying images... "
+msgstr "αντιγραφή εικόνων..."
-#: registry.py:235
+#: builders/_epub_base.py:447 builders/latex/__init__.py:489
+#: builders/texinfo.py:203
#, python-format
-msgid "The %r directive is already registered to domain %s"
-msgstr "Η οδηγία %r είναι ήδη καταχωρημένη στον τομέα %s"
+msgid "cannot copy image file %r: %s"
+msgstr "δεν είναι δυνατή η αντιγραφή αρχείου εικόνας %r: %s"
-#: registry.py:253
-#, python-format
-msgid "The %r role is already registered to domain %s"
-msgstr "Ο ρόλος %r είναι ήδη καταχωρημένος στον τομέα %s"
+#: builders/texinfo.py:210
+msgid "copying Texinfo support files"
+msgstr "αντιγραφή αρχείων υποστήριξης Texinfo"
-#: registry.py:266
+#: builders/texinfo.py:218
#, python-format
-msgid "The %r index is already registered to domain %s"
-msgstr "Ο δείκτης %r είναι ήδη καταχωρημένος στον τομέα %s"
+msgid "error writing file Makefile: %s"
+msgstr "σφάλμα κατά την εγγραφή του αρχείου Makefile: %s"
-#: registry.py:313
+#: builders/manpage.py:37
#, python-format
-msgid "The %r object_type is already registered"
-msgstr "Το object_type %r είναι ήδη καταχωρημένο"
+msgid "The manual pages are in %(outdir)s."
+msgstr "Οι σελίδες manual βρίσκονται σε %(outdir)s."
-#: registry.py:344
-#, python-format
-msgid "The %r crossref_type is already registered"
-msgstr "Το crossref_type %r είναι ήδη καταχωρημένο"
+#: builders/manpage.py:45
+msgid "no \"man_pages\" config value found; no manual pages will be written"
+msgstr "δεν βρέθηκε τιμή παραμετροποίησης \"man_pages\"; δεν θα καταγραφούν manual pages"
-#: registry.py:353
+#: builders/manpage.py:64
#, python-format
-msgid "source_suffix %r is already registered"
-msgstr "το source_suffix %r είναι ήδη καταχωρημένο"
+msgid "\"man_pages\" config value references unknown document %s"
+msgstr "η τιμή παραμετροποίησης \"man_pages\" κάνει αναφορά το άγνωστο κείμενο %s"
-#: registry.py:363
+#: builders/singlehtml.py:35
#, python-format
-msgid "source_parser for %r is already registered"
-msgstr "το source_parser για το %r είναι ήδη καταχωρημένο"
+msgid "The HTML page is in %(outdir)s."
+msgstr "Η σελίδα HTML είναι στο %(outdir)s."
-#: registry.py:372
-#, python-format
-msgid "Source parser for %s not registered"
-msgstr "Ο αναλυτής πηγής για το %s δεν είναι καταχωρημένος"
+#: builders/singlehtml.py:171
+msgid "assembling single document"
+msgstr "συναρμολόγηση απλού κειμένου"
-#: registry.py:390
-#, python-format
-msgid "Translator for %r already exists"
-msgstr "Ο μεταφραστής για το %r υφίσταται ήδη"
+#: builders/singlehtml.py:189
+msgid "writing additional files"
+msgstr "εγγραφή επιπρόσθετων αρχείων"
-#: registry.py:407
-#, python-format
-msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r"
-msgstr "το kwargs για το add_node() πρέπει να είναι μία (visit, depart) συνάρτηση πλειάδας: %r=%r"
+#: builders/dummy.py:19
+msgid "The dummy builder generates no files."
+msgstr "Ο προσωρινός μεταγλωττιστής δεν δημιουργεί αρχεία."
-#: registry.py:496
+#: builders/gettext.py:243
#, python-format
-msgid "enumerable_node %r already registered"
-msgstr "το enumerable_node %r είναι ήδη καταχωρημένο"
+msgid "The message catalogs are in %(outdir)s."
+msgstr "Οι κατάλογοι των μηνυμάτων είναι στο %(outdir)s."
-#: registry.py:512
+#: builders/__init__.py:400 builders/gettext.py:264
#, python-format
-msgid "math renderer %s is already registered"
-msgstr ""
+msgid "building [%s]: "
+msgstr "μεταγλώττιση [%s]:"
-#: registry.py:529
+#: builders/gettext.py:265
#, python-format
-msgid ""
-"the extension %r was already merged with Sphinx since version %s; this "
-"extension is ignored."
-msgstr "η επέκταση %r συγχωνεύθηκε ήδη με το Sphinx από την έκδοση %s; η επέκταση αυτή θα αγνοηθεί."
+msgid "targets for %d template files"
+msgstr "στόχοι για %d πρότυπα αρχεία"
-#: registry.py:543
-msgid "Original exception:\n"
-msgstr "Αρχική εξαίρεση:\n"
+#: builders/gettext.py:271
+msgid "reading templates... "
+msgstr "ανάγνωση προτύπων..."
-#: registry.py:545
-#, python-format
-msgid "Could not import extension %s"
-msgstr "Δεν ήταν δυνατή η εισαγωγή της επέκτασης %s"
+#: builders/gettext.py:310
+msgid "writing message catalogs... "
+msgstr "εγγραφή καταλόγων μηνύματος..."
-#: registry.py:552
+#: builders/linkcheck.py:87
#, python-format
-msgid ""
-"extension %r has no setup() function; is it really a Sphinx extension "
-"module?"
-msgstr "η επέκταση %r δεν έχει συνάρτηση setup(); αποτελεί δομοστοιχείο επέκτασης του Sphinx;"
+msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
+msgstr "Αναζητήστε οποιαδήποτε λάθη στο παραπάνω αποτέλεσμα ή σε %(outdir)s/output.txt"
-#: registry.py:565
+#: builders/linkcheck.py:159
#, python-format
-msgid ""
-"The %s extension used by this project needs at least Sphinx v%s; it "
-"therefore cannot be built with this version."
-msgstr "Η επέκταση %s η οποία χρησιμοποιείται από αυτό το έργο απαιτεί Sphinx έκδοσης τουλάχιστον %s: επομένως δεν είναι δυνατή η μεταγλώττιση με αυτή την έκδοση."
+msgid "broken link: %s (%s)"
+msgstr "λανθασμένος σύνδεσμος: %s (%s)"
-#: registry.py:577
+#: builders/linkcheck.py:561
#, python-format
-msgid ""
-"extension %r returned an unsupported object from its setup() function; it "
-"should return None or a metadata dictionary"
-msgstr "η επέκταση %r επιστρέφει ένα μη υποστηριζόμενο αντικείμενο από τη συνάρτησή της setup(): θα έπρεπε να επιστρέφει None ή έναν κατάλογο μεταδεδομένων"
+msgid "Anchor '%s' not found"
+msgstr "Δεν βρέθηκε το anchor '%s'"
-#: registry.py:612
-#, python-format
-msgid "`None` is not a valid filetype for %r."
+#: builders/linkcheck.py:789
+msgid "linkcheck_allowed_redirects. Expected a dictionary."
msgstr ""
-#: roles.py:206
+#: builders/linkcheck.py:799
#, python-format
-msgid "Common Vulnerabilities and Exposures; CVE %s"
+msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
-#: roles.py:229
+#: builders/epub3.py:83
#, python-format
-msgid "invalid CVE number %s"
+msgid "The ePub file is in %(outdir)s."
+msgstr "Το αρχείο ePub βρίσκεται σε %(outdir)s."
+
+#: builders/epub3.py:188
+msgid "writing nav.xhtml file..."
msgstr ""
-#: roles.py:251
+#: builders/epub3.py:224
+msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
+msgstr "η τιμή παραμετροποίησης \"epub_language\" (ή \"language\") δεν πρέπει να είναι κενή για EPUB3"
+
+#: builders/epub3.py:230
+msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
+msgstr "η τιμή παραμετροποίησης \"epub_uid\" πρέπει να είναι XML NAME για EPUB3"
+
+#: builders/epub3.py:235
+msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
+msgstr "η τιμή παραμετροποίησης \"epub_title\" (ή \"html_title\") δεν πρέπει να είναι κενή για EPUB3"
+
+#: builders/epub3.py:241
+msgid "conf value \"epub_author\" should not be empty for EPUB3"
+msgstr "η τιμή παραμετροποίησης \"epub_author\" δεν πρέπει να είναι κενή για EPUB3"
+
+#: builders/epub3.py:245
+msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
+msgstr "η τιμή παραμετροποίησης \"epub_contributor\" δεν πρέπει να είναι κενή για EPUB3"
+
+#: builders/epub3.py:250
+msgid "conf value \"epub_description\" should not be empty for EPUB3"
+msgstr "η τιμή παραμετροποίησης \"epub_description\" δεν πρέπει να είναι κενή για EPUB3"
+
+#: builders/epub3.py:254
+msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
+msgstr "η τιμή παραμετροποίησης \"epub_publisher\" δεν πρέπει να είναι κενή για EPUB3"
+
+#: builders/epub3.py:259
+msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
+msgstr "η τιμή παραμετροποίησης \"epub_copyright\" (ή \"copyright\") δεν πρέπει να είναι κενή για EPUB3"
+
+#: builders/epub3.py:265
+msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
+msgstr "η τιμή παραμετροποίησης \"epub_identifier\" δεν πρέπει να είναι κενή για EPUB3"
+
+#: builders/epub3.py:268
+msgid "conf value \"version\" should not be empty for EPUB3"
+msgstr "η τιμή παραμετροποίησης \"version\" δεν πρέπει να είναι κενή για EPUB3"
+
+#: builders/epub3.py:282 builders/html/__init__.py:1296
#, python-format
-msgid "Common Weakness Enumeration; CWE %s"
-msgstr ""
+msgid "invalid css_file: %r, ignored"
+msgstr "ανέγκυρο css_file: %r, θα αγνοηθεί"
-#: roles.py:274
+#: builders/xml.py:29
#, python-format
-msgid "invalid CWE number %s"
-msgstr ""
+msgid "The XML files are in %(outdir)s."
+msgstr "Τα αρχεία XML βρίσκονται σε %(outdir)s."
-#: roles.py:294
+#: builders/html/__init__.py:1242 builders/text.py:71 builders/xml.py:81
#, python-format
-msgid "Python Enhancement Proposals; PEP %s"
-msgstr "Python Enhancement Proposals; PEP %s"
+msgid "error writing file %s: %s"
+msgstr "σφάλμα καταγραφής αρχείου %s: %s"
-#: roles.py:317
+#: builders/xml.py:103
#, python-format
-msgid "invalid PEP number %s"
+msgid "The pseudo-XML files are in %(outdir)s."
+msgstr "Τα αρχεία XML βρίσκονται σε %(outdir)s."
+
+#: builders/_epub_base.py:223
+#, python-format
+msgid "duplicated ToC entry found: %s"
+msgstr "βρέθηκε διπλότυπη εγγραφή ToC: %s"
+
+#: builders/_epub_base.py:436
+#, python-format
+msgid "cannot read image file %r: copying it instead"
+msgstr "δεν είναι δυνατή η ανάγωνση αρχείου εικόνας %r: αντί αυτού θα αντιγραφεί"
+
+#: builders/_epub_base.py:467
+#, python-format
+msgid "cannot write image file %r: %s"
+msgstr "δεν είναι δυνατή η εγγραφή αρχείου %r: %s"
+
+#: builders/_epub_base.py:479
+msgid "Pillow not found - copying image files"
+msgstr "Το pillow δεν βρέθηκε - αντιγραφή αρχείων εικόνας"
+
+#: builders/_epub_base.py:514
+msgid "writing mimetype file..."
+msgstr ""
+
+#: builders/_epub_base.py:523
+msgid "writing META-INF/container.xml file..."
+msgstr ""
+
+#: builders/_epub_base.py:561
+msgid "writing content.opf file..."
msgstr ""
-#: roles.py:355
+#: builders/_epub_base.py:594
#, python-format
-msgid "invalid RFC number %s"
+msgid "unknown mimetype for %s, ignoring"
+msgstr "άγνωστο mimetype για %s, θα ανγοηθεί"
+
+#: builders/_epub_base.py:749
+msgid "node has an invalid level"
msgstr ""
-#: ext/linkcode.py:86 ext/viewcode.py:226
-msgid "[source]"
-msgstr "[πηγή]"
+#: builders/_epub_base.py:769
+msgid "writing toc.ncx file..."
+msgstr ""
-#: ext/viewcode.py:289
-msgid "highlighting module code... "
-msgstr "επισήμανση κώδικα δομοστοιχείου..."
+#: builders/_epub_base.py:802
+#, python-format
+msgid "writing %s file..."
+msgstr "εγγραφή %s αρχείου..."
-#: ext/viewcode.py:320
-msgid "[docs]"
-msgstr "[τεκμηρίωση]"
+#: builders/text.py:27
+#, python-format
+msgid "The text files are in %(outdir)s."
+msgstr "Τα αρχεία κειένου βρίσκονται σε %(outdir)s."
-#: ext/viewcode.py:346
-msgid "Module code"
-msgstr "Κώδικας μονάδας"
+#: builders/__init__.py:229
+#, python-format
+msgid "a suitable image for %s builder not found: %s (%s)"
+msgstr "δεν βρέθηκε μία κατάλληλη εικόνα για τον μεταγλωττιστή %s: %s (%s)"
-#: ext/viewcode.py:353
+#: builders/__init__.py:237
#, python-format
-msgid "Source code for %s
"
-msgstr "Πηγαίος κώδικας για το %s
"
+msgid "a suitable image for %s builder not found: %s"
+msgstr "δεν βρέθηκε μία κατάλληλη εικόνα για τον μεταγλωττιστή %s: %s"
-#: ext/viewcode.py:380
-msgid "Overview: module code"
-msgstr "Επισκόπηση: κώδικας της μονάδας"
+#: builders/__init__.py:260
+msgid "building [mo]: "
+msgstr "μεταγλώττιση [mo]:"
-#: ext/viewcode.py:381
-msgid "All modules for which code is available
"
-msgstr "Όλες οι μονάδες για τις οποίες υπάρχει διαθέσιμος κώδικας
"
+#: builders/__init__.py:263 builders/__init__.py:771 builders/__init__.py:795
+msgid "writing output... "
+msgstr "εγγραφή εξόδου..."
-#: ext/extlinks.py:82
+#: builders/__init__.py:280
#, python-format
-msgid ""
-"hardcoded link %r could be replaced by an extlink (try using %r instead)"
-msgstr ""
+msgid "all of %d po files"
+msgstr "όλα τα αρχεία po του %d"
-#: ext/autosectionlabel.py:52
+#: builders/__init__.py:302
#, python-format
-msgid "section \"%s\" gets labeled as \"%s\""
-msgstr ""
+msgid "targets for %d po files that are specified"
+msgstr "στόχοι για τα αρχεία po του %d οι οποίοι έχουν καθοριστεί"
-#: domains/std/__init__.py:833 domains/std/__init__.py:960
-#: ext/autosectionlabel.py:61
+#: builders/__init__.py:314
#, python-format
-msgid "duplicate label %s, other instance in %s"
-msgstr "διπλότυπη ετικέτα %s, άλλη εμφάνιση στο %s"
+msgid "targets for %d po files that are out of date"
+msgstr "στόχοι για τα αρχεία po του %d τα οποία είναι ξεπερασμένα"
-#: ext/imgmath.py:387 ext/mathjax.py:60
-msgid "Link to this equation"
+#: builders/__init__.py:324
+msgid "all source files"
+msgstr "όλα τα αρχεία πηγής"
+
+#: builders/__init__.py:335
+#, python-format
+msgid "file %r given on command line does not exist, "
msgstr ""
-#: ext/duration.py:90
+#: builders/__init__.py:342
+#, python-format
msgid ""
-"====================== slowest reading durations ======================="
+"file %r given on command line is not under the source directory, ignoring"
+msgstr "το αρχείο %r που δόθηκε στη γραμμή εντολής δεν βρίσκεται κάτω από τον κατάλογο πηγής, θα αγνοηθεί"
+
+#: builders/__init__.py:353
+#, python-format
+msgid "file %r given on command line is not a valid document, ignoring"
msgstr ""
-#: ext/doctest.py:118
+#: builders/__init__.py:366
#, python-format
-msgid "missing '+' or '-' in '%s' option."
-msgstr "λείπει '+' ή '-' στην επιλογή '%s'."
+msgid "%d source files given on command line"
+msgstr "τα αρχεία πηγής %d που δόθηκαν στη γραμμή εντολής"
-#: ext/doctest.py:124
+#: builders/__init__.py:382
#, python-format
-msgid "'%s' is not a valid option."
-msgstr "Η '%s δεν είναι μία έγκυρη επιλογή."
+msgid "targets for %d source files that are out of date"
+msgstr "στόχοι για τα αρχεία πηγής %d τα οποία είναι ξεπερασμένα"
-#: ext/doctest.py:139
+#: builders/__init__.py:411
+msgid "looking for now-outdated files... "
+msgstr "αναζήτηση για νεοξεπερασμένα αρχεία..."
+
+#: builders/__init__.py:415
#, python-format
-msgid "'%s' is not a valid pyversion option"
-msgstr "'%s' δεν αποτελεί μία έγκυρη επιλογή για pyversion"
+msgid "%d found"
+msgstr "βρέθηκε %d"
-#: ext/doctest.py:226
-msgid "invalid TestCode type"
-msgstr "ανέγκυρος τύπος TestCode"
+#: builders/__init__.py:417
+msgid "none found"
+msgstr "δεν βρέθηκε κανένα"
-#: ext/doctest.py:297
+#: builders/__init__.py:424
+msgid "pickling environment"
+msgstr "Περιβάλλον μετατροπής αντικειμένων Python σε ροή bytes"
+
+#: builders/__init__.py:431
+msgid "checking consistency"
+msgstr "έλεγχος συνοχής"
+
+#: builders/__init__.py:435
+msgid "no targets are out of date."
+msgstr "κανένας στόχος δεν είναι ξεπερασμένος."
+
+#: builders/__init__.py:474
+msgid "updating environment: "
+msgstr "αναβάθμιση περιβάλλοντος:"
+
+#: builders/__init__.py:499
#, python-format
-msgid ""
-"Testing of doctests in the sources finished, look at the results in "
-"%(outdir)s/output.txt."
-msgstr "Ολοκληρώθηκε η δοκιμή των doctests στις πηγές, δείτε τα αποτελέσματα σε %(outdir)s/output.txt."
+msgid "%s added, %s changed, %s removed"
+msgstr "%s προστέθηκε, %s άλλαξε, %s απομακρύνθηκε"
-#: ext/doctest.py:457
+#: builders/__init__.py:536
#, python-format
-msgid "no code/output in %s block at %s:%s"
-msgstr "δεν υπάρχει κώδικας/αποτέλεσμα στο τμήμα %s στο %s:%s"
+msgid ""
+"Sphinx is unable to load the master document (%s) because it matches a "
+"built-in exclude pattern %r. Please move your master document to a different"
+" location."
+msgstr ""
-#: ext/doctest.py:568
+#: builders/__init__.py:545
#, python-format
-msgid "ignoring invalid doctest code: %r"
-msgstr "Ο ανέγκυρος κώδικας doctest θα αγνοηθεί: %r"
+msgid ""
+"Sphinx is unable to load the master document (%s) because it matches an "
+"exclude pattern specified in conf.py, %r. Please remove this pattern from "
+"conf.py."
+msgstr ""
-#: ext/imgmath.py:162
+#: builders/__init__.py:556
#, python-format
msgid ""
-"LaTeX command %r cannot be run (needed for math display), check the "
-"imgmath_latex setting"
-msgstr "Η εντολή LaTex %r δεν είναι δυνατό να εκτελεστεί (απαιτείται για απεικόνιση μαθηματικών), ελέγξτε τη ρύθμιση imgmath_latex"
+"Sphinx is unable to load the master document (%s) because it is not included"
+" in the custom include_patterns = %r. Ensure that a pattern in "
+"include_patterns matches the master document."
+msgstr ""
-#: ext/imgmath.py:181
+#: builders/__init__.py:563
#, python-format
msgid ""
-"%s command %r cannot be run (needed for math display), check the imgmath_%s "
-"setting"
-msgstr "%s η εντολή %r δεν είναι δυνατό να εκτελεστεί (απαιτείται για μαθηματική απεικόνιση), ελέγξτε τη ρύθμιση imgmath_%s"
+"Sphinx is unable to load the master document (%s). The master document must "
+"be within the source directory or a subdirectory of it."
+msgstr ""
+
+#: builders/__init__.py:581 builders/__init__.py:598
+msgid "reading sources... "
+msgstr "ανάγνωση πηγών..."
-#: ext/imgmath.py:344
+#: builders/__init__.py:725
#, python-format
-msgid "display latex %r: %s"
-msgstr "απεικόνιση latex %r: %s"
+msgid "docnames to write: %s"
+msgstr "docname προς εγγραφή: %s"
+
+#: builders/__init__.py:727
+msgid "no docnames to write!"
+msgstr ""
+
+#: builders/__init__.py:740
+msgid "preparing documents"
+msgstr "προετοιμασία κειμένων"
+
+#: builders/__init__.py:743
+msgid "copying assets"
+msgstr ""
-#: ext/imgmath.py:380
+#: builders/changes.py:29
#, python-format
-msgid "inline latex %r: %s"
-msgstr "σε σειρά latex %r: %s"
+msgid "The overview file is in %(outdir)s."
+msgstr "Το αρχείο επισκόπησης είναι σε %(outdir)s."
+
+#: builders/changes.py:65
+#, python-format
+msgid "no changes in version %s."
+msgstr "καμία αλλαγή στην έκδοση %s."
+
+#: builders/changes.py:67
+msgid "writing summary file..."
+msgstr "εγγραφή αρχείου σύνοψης"
+
+#: builders/changes.py:79
+msgid "Builtins"
+msgstr "Ενσωματωμένες λειτουργίες"
+
+#: builders/changes.py:81
+msgid "Module level"
+msgstr "Επίπεδο μονάδας λειτουργίας"
+
+#: builders/changes.py:137
+msgid "copying source files..."
+msgstr "αντιγραφή αρχείων πηγής..."
+
+#: builders/changes.py:146
+#, python-format
+msgid "could not read %r for changelog creation"
+msgstr "δεν ήταν δυνατή η ανάγνωση %r για τη δημιουργία changelog"
#: ext/coverage.py:48
#, python-format
@@ -741,9 +1177,10 @@ msgid ""
msgstr ""
#: ext/coverage.py:158
+#, python-format
msgid ""
"the following modules are specified in coverage_modules but were not "
-"documented"
+"documented: %s"
msgstr ""
#: ext/coverage.py:172
@@ -778,11 +1215,39 @@ msgstr ""
msgid "undocumented python method: %s :: %s :: %s"
msgstr ""
-#: ext/imgconverter.py:44
+#: ext/extlinks.py:82
#, python-format
msgid ""
-"Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n"
-"\n"
+"hardcoded link %r could be replaced by an extlink (try using %r instead)"
+msgstr ""
+
+#: ext/todo.py:61
+msgid "Todo"
+msgstr "Εκκρεμότητα"
+
+#: ext/todo.py:94
+#, python-format
+msgid "TODO entry found: %s"
+msgstr "βρέθηκε εγγραφή TODO:%s"
+
+#: ext/todo.py:152
+msgid "<>"
+msgstr "<>"
+
+#: ext/todo.py:154
+#, python-format
+msgid "(The <> is located in %s, line %d.)"
+msgstr "(Το <> βρίσκεται στο %s, γραμή %d.)"
+
+#: ext/todo.py:166
+msgid "original entry"
+msgstr "αρχική εγγραφή"
+
+#: ext/imgconverter.py:44
+#, python-format
+msgid ""
+"Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n"
+"\n"
"Traceback: %s"
msgstr ""
@@ -865,948 +1330,994 @@ msgstr "[γράφημα: %s]"
msgid "[graph]"
msgstr "[γράφημα]"
-#: ext/todo.py:61
-msgid "Todo"
-msgstr "Εκκρεμότητα"
-
-#: ext/todo.py:94
+#: ext/imgmath.py:148
#, python-format
-msgid "TODO entry found: %s"
-msgstr "βρέθηκε εγγραφή TODO:%s"
+msgid ""
+"LaTeX command %r cannot be run (needed for math display), check the "
+"imgmath_latex setting"
+msgstr "Η εντολή LaTex %r δεν είναι δυνατό να εκτελεστεί (απαιτείται για απεικόνιση μαθηματικών), ελέγξτε τη ρύθμιση imgmath_latex"
-#: ext/todo.py:152
-msgid "<>"
-msgstr "<>"
+#: ext/imgmath.py:167
+#, python-format
+msgid ""
+"%s command %r cannot be run (needed for math display), check the imgmath_%s "
+"setting"
+msgstr "%s η εντολή %r δεν είναι δυνατό να εκτελεστεί (απαιτείται για μαθηματική απεικόνιση), ελέγξτε τη ρύθμιση imgmath_%s"
-#: ext/todo.py:154
+#: ext/imgmath.py:326
#, python-format
-msgid "(The <> is located in %s, line %d.)"
-msgstr "(Το <> βρίσκεται στο %s, γραμή %d.)"
+msgid "display latex %r: %s"
+msgstr "απεικόνιση latex %r: %s"
-#: ext/todo.py:166
-msgid "original entry"
-msgstr "αρχική εγγραφή"
+#: ext/imgmath.py:362
+#, python-format
+msgid "inline latex %r: %s"
+msgstr "σε σειρά latex %r: %s"
-#: directives/code.py:66
-msgid "non-whitespace stripped by dedent"
+#: ext/imgmath.py:369 ext/mathjax.py:60
+msgid "Link to this equation"
msgstr ""
-#: directives/code.py:87
+#: ext/doctest.py:118
#, python-format
-msgid "Invalid caption: %s"
-msgstr "Ανέγκυρη λεζάντα: %s"
+msgid "missing '+' or '-' in '%s' option."
+msgstr "λείπει '+' ή '-' στην επιλογή '%s'."
-#: directives/code.py:131 directives/code.py:297 directives/code.py:483
+#: ext/doctest.py:124
#, python-format
-msgid "line number spec is out of range(1-%d): %r"
-msgstr "η προδιαγραφή αριθμού σειράς είναι εκτός e;yroyw (1-%d): %r"
+msgid "'%s' is not a valid option."
+msgstr "Η '%s δεν είναι μία έγκυρη επιλογή."
-#: directives/code.py:216
+#: ext/doctest.py:139
#, python-format
-msgid "Cannot use both \"%s\" and \"%s\" options"
-msgstr "Δεν είναι δυνατή η ταυτόχρονη χρήση των επιλογών \"%s\" και \"%s\""
+msgid "'%s' is not a valid pyversion option"
+msgstr "'%s' δεν αποτελεί μία έγκυρη επιλογή για pyversion"
-#: directives/code.py:231
-#, python-format
-msgid "Include file '%s' not found or reading it failed"
-msgstr ""
+#: ext/doctest.py:226
+msgid "invalid TestCode type"
+msgstr "ανέγκυρος τύπος TestCode"
-#: directives/code.py:235
+#: ext/doctest.py:297
#, python-format
msgid ""
-"Encoding %r used for reading included file '%s' seems to be wrong, try "
-"giving an :encoding: option"
-msgstr ""
+"Testing of doctests in the sources finished, look at the results in "
+"%(outdir)s/output.txt."
+msgstr "Ολοκληρώθηκε η δοκιμή των doctests στις πηγές, δείτε τα αποτελέσματα σε %(outdir)s/output.txt."
-#: directives/code.py:276
+#: ext/doctest.py:451
#, python-format
-msgid "Object named %r not found in include file %r"
-msgstr "Το αντικείμενο με όνομα %r δεν βρέθηκε στο συμπεριληφθέν αρχείο %r"
-
-#: directives/code.py:309
-msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
-msgstr "Δεν είναι δυνατή η χρήση \"leneno-match\" με ένα κομματιασμένο σετ απο \"lines\""
+msgid "no code/output in %s block at %s:%s"
+msgstr "δεν υπάρχει κώδικας/αποτέλεσμα στο τμήμα %s στο %s:%s"
-#: directives/code.py:314
+#: ext/doctest.py:568
#, python-format
-msgid "Line spec %r: no lines pulled from include file %r"
-msgstr "Προσδιορισμός γραμμής %r: δεν ελήφθησαν γραμμές από το συμπεριληφθέν αρχείο %r"
-
-#: directives/patches.py:71
-msgid ""
-"\":file:\" option for csv-table directive now recognizes an absolute path as"
-" a relative path from source directory. Please update your document."
-msgstr ""
+msgid "ignoring invalid doctest code: %r"
+msgstr "Ο ανέγκυρος κώδικας doctest θα αγνοηθεί: %r"
-#: directives/other.py:119
+#: ext/autosectionlabel.py:52
#, python-format
-msgid "toctree glob pattern %r didn't match any documents"
+msgid "section \"%s\" gets labeled as \"%s\""
msgstr ""
-#: directives/other.py:153 environment/adapters/toctree.py:361
-#, python-format
-msgid "toctree contains reference to excluded document %r"
-msgstr "Το toctree περιλαμβάνει αναφορά στο αποκλεισμένο κείμενο %r"
-
-#: directives/other.py:156
+#: domains/std/__init__.py:833 domains/std/__init__.py:960
+#: ext/autosectionlabel.py:61
#, python-format
-msgid "toctree contains reference to nonexisting document %r"
-msgstr "το toctree περιλαμβάνει αναφορά στο μη υπαρκτό έγγραφο %r"
+msgid "duplicate label %s, other instance in %s"
+msgstr "διπλότυπη ετικέτα %s, άλλη εμφάνιση στο %s"
-#: directives/other.py:169
+#: ext/duration.py:47
#, python-format
-msgid "duplicated entry found in toctree: %s"
+msgid "Reading duration %.3fs exceeded the duration limit %.3fs"
msgstr ""
-#: directives/other.py:203
-msgid "Section author: "
-msgstr "Συντάκτης τμήματος: "
-
-#: directives/other.py:205
-msgid "Module author: "
-msgstr "Συντάκτης μονάδας: "
-
-#: directives/other.py:207
-msgid "Code author: "
-msgstr "Συντάκτης κώδικα: "
-
-#: directives/other.py:209
-msgid "Author: "
-msgstr "Συντάκτης: "
-
-#: directives/other.py:269
-msgid ".. acks content is not a list"
+#: ext/duration.py:117
+msgid ""
+"====================== total reading duration =========================="
msgstr ""
-#: directives/other.py:292
-msgid ".. hlist content is not a list"
+#: ext/duration.py:124
+#, python-format
+msgid "Total time reading %d file%s: %dm %.3fs"
msgstr ""
-#: builders/changes.py:29
-#, python-format
-msgid "The overview file is in %(outdir)s."
-msgstr "Το αρχείο επισκόπησης είναι σε %(outdir)s."
+#: ext/duration.py:136
+msgid ""
+"====================== slowest reading durations ======================="
+msgstr ""
-#: builders/changes.py:56
+#: ext/duration.py:139
#, python-format
-msgid "no changes in version %s."
-msgstr "καμία αλλαγή στην έκδοση %s."
-
-#: builders/changes.py:58
-msgid "writing summary file..."
-msgstr "εγγραφή αρχείου σύνοψης"
+msgid "%.3fs %s"
+msgstr ""
-#: builders/changes.py:70
-msgid "Builtins"
-msgstr "Ενσωματωμένες λειτουργίες"
+#: ext/linkcode.py:86 ext/viewcode.py:232
+msgid "[source]"
+msgstr "[πηγή]"
-#: builders/changes.py:72
-msgid "Module level"
-msgstr "Επίπεδο μονάδας λειτουργίας"
+#: ext/viewcode.py:295
+msgid "highlighting module code... "
+msgstr "επισήμανση κώδικα δομοστοιχείου..."
-#: builders/changes.py:124
-msgid "copying source files..."
-msgstr "αντιγραφή αρχείων πηγής..."
+#: ext/viewcode.py:326
+msgid "[docs]"
+msgstr "[τεκμηρίωση]"
-#: builders/changes.py:133
-#, python-format
-msgid "could not read %r for changelog creation"
-msgstr "δεν ήταν δυνατή η ανάγνωση %r για τη δημιουργία changelog"
+#: ext/viewcode.py:352
+msgid "Module code"
+msgstr "Κώδικας μονάδας"
-#: builders/manpage.py:37
+#: ext/viewcode.py:359
#, python-format
-msgid "The manual pages are in %(outdir)s."
-msgstr "Οι σελίδες manual βρίσκονται σε %(outdir)s."
+msgid "Source code for %s
"
+msgstr "Πηγαίος κώδικας για το %s
"
-#: builders/manpage.py:45
-msgid "no \"man_pages\" config value found; no manual pages will be written"
-msgstr "δεν βρέθηκε τιμή παραμετροποίησης \"man_pages\"; δεν θα καταγραφούν manual pages"
+#: ext/viewcode.py:386
+msgid "Overview: module code"
+msgstr "Επισκόπηση: κώδικας της μονάδας"
-#: builders/latex/__init__.py:347 builders/manpage.py:54
-#: builders/singlehtml.py:176 builders/texinfo.py:119
-msgid "writing"
-msgstr "εγγραφή"
+#: ext/viewcode.py:387
+msgid "All modules for which code is available
"
+msgstr "Όλες οι μονάδες για τις οποίες υπάρχει διαθέσιμος κώδικας
"
-#: builders/manpage.py:71
+#: domains/citation.py:75
#, python-format
-msgid "\"man_pages\" config value references unknown document %s"
-msgstr "η τιμή παραμετροποίησης \"man_pages\" κάνει αναφορά το άγνωστο κείμενο %s"
+msgid "duplicate citation %s, other instance in %s"
+msgstr "διπλότυπη ετικέτα %s, άλλη εμφάνιση στο %s"
-#: builders/__init__.py:224
+#: domains/citation.py:92
#, python-format
-msgid "a suitable image for %s builder not found: %s (%s)"
-msgstr "δεν βρέθηκε μία κατάλληλη εικόνα για τον μεταγλωττιστή %s: %s (%s)"
+msgid "Citation [%s] is not referenced."
+msgstr "Η παραπομπή [%s] δεν αναφέρεται."
-#: builders/__init__.py:232
+#: domains/math.py:73
#, python-format
-msgid "a suitable image for %s builder not found: %s"
-msgstr "δεν βρέθηκε μία κατάλληλη εικόνα για τον μεταγλωττιστή %s: %s"
-
-#: builders/__init__.py:255
-msgid "building [mo]: "
-msgstr "μεταγλώττιση [mo]:"
-
-#: builders/__init__.py:258 builders/__init__.py:759 builders/__init__.py:791
-msgid "writing output... "
-msgstr "εγγραφή εξόδου..."
+msgid "duplicate label of equation %s, other instance in %s"
+msgstr "διπλότυπη ετικέτα της εξίσωσης %s, άλλη εμφάνιση στο %s"
-#: builders/__init__.py:275
+#: domains/math.py:130 writers/latex.py:2500
#, python-format
-msgid "all of %d po files"
-msgstr "όλα τα αρχεία po του %d"
+msgid "Invalid math_eqref_format: %r"
+msgstr "Ανέγκυρο math_eqref_format: %r"
-#: builders/__init__.py:297
+#: domains/javascript.py:183
#, python-format
-msgid "targets for %d po files that are specified"
-msgstr "στόχοι για τα αρχεία po του %d οι οποίοι έχουν καθοριστεί"
+msgid "%s() (built-in function)"
+msgstr "%s() (ενσωματωμένη συνάρτηση)"
-#: builders/__init__.py:309
+#: domains/javascript.py:184 domains/python/__init__.py:279
#, python-format
-msgid "targets for %d po files that are out of date"
-msgstr "στόχοι για τα αρχεία po του %d τα οποία είναι ξεπερασμένα"
-
-#: builders/__init__.py:319
-msgid "all source files"
-msgstr "όλα τα αρχεία πηγής"
+msgid "%s() (%s method)"
+msgstr "%s() (μέθοδος της %s)"
-#: builders/__init__.py:330
+#: domains/javascript.py:186
#, python-format
-msgid "file %r given on command line does not exist, "
-msgstr ""
+msgid "%s() (class)"
+msgstr "%s() (κλάση)"
-#: builders/__init__.py:337
+#: domains/javascript.py:188
#, python-format
-msgid ""
-"file %r given on command line is not under the source directory, ignoring"
-msgstr "το αρχείο %r που δόθηκε στη γραμμή εντολής δεν βρίσκεται κάτω από τον κατάλογο πηγής, θα αγνοηθεί"
+msgid "%s (global variable or constant)"
+msgstr "%s (καθολική μεταβλητή ή σταθερά)"
-#: builders/__init__.py:348
+#: domains/javascript.py:190 domains/python/__init__.py:370
#, python-format
-msgid "file %r given on command line is not a valid document, ignoring"
-msgstr ""
+msgid "%s (%s attribute)"
+msgstr "%s (ιδιότητα της %s)"
-#: builders/__init__.py:361
-#, python-format
-msgid "%d source files given on command line"
-msgstr "τα αρχεία πηγής %d που δόθηκαν στη γραμμή εντολής"
+#: domains/javascript.py:274
+msgid "Arguments"
+msgstr "Παράμετροι"
-#: builders/__init__.py:377
-#, python-format
-msgid "targets for %d source files that are out of date"
-msgstr "στόχοι για τα αρχεία πηγής %d τα οποία είναι ξεπερασμένα"
+#: domains/cpp/__init__.py:491 domains/javascript.py:281
+msgid "Throws"
+msgstr "Προκαλεί"
-#: builders/__init__.py:395 builders/gettext.py:265
-#, python-format
-msgid "building [%s]: "
-msgstr "μεταγλώττιση [%s]:"
+#: domains/c/__init__.py:367 domains/cpp/__init__.py:504
+#: domains/javascript.py:288 domains/python/_object.py:221
+msgid "Returns"
+msgstr "Επιστρέφει"
-#: builders/__init__.py:406
-msgid "looking for now-outdated files... "
-msgstr "αναζήτηση για νεοξεπερασμένα αρχεία..."
+#: domains/c/__init__.py:373 domains/javascript.py:294
+#: domains/python/_object.py:227
+msgid "Return type"
+msgstr "Επιστρεφόμενος τύπος"
-#: builders/__init__.py:410
+#: domains/javascript.py:374
#, python-format
-msgid "%d found"
-msgstr "βρέθηκε %d"
+msgid "%s (module)"
+msgstr "%s (μονάδα)"
-#: builders/__init__.py:412
-msgid "none found"
-msgstr "δεν βρέθηκε κανένα"
+#: domains/c/__init__.py:779 domains/cpp/__init__.py:943
+#: domains/javascript.py:419 domains/python/__init__.py:726
+msgid "function"
+msgstr "συνάρτηση"
-#: builders/__init__.py:419
-msgid "pickling environment"
-msgstr "Περιβάλλον μετατροπής αντικειμένων Python σε ροή bytes"
+#: domains/javascript.py:420 domains/python/__init__.py:730
+msgid "method"
+msgstr "μέθοδος"
-#: builders/__init__.py:426
-msgid "checking consistency"
-msgstr "έλεγχος συνοχής"
+#: domains/cpp/__init__.py:941 domains/javascript.py:421
+#: domains/python/__init__.py:728
+msgid "class"
+msgstr "κλάση"
-#: builders/__init__.py:430
-msgid "no targets are out of date."
-msgstr "κανένας στόχος δεν είναι ξεπερασμένος."
+#: domains/javascript.py:422 domains/python/__init__.py:727
+msgid "data"
+msgstr "δεδομένα"
-#: builders/__init__.py:469
-msgid "updating environment: "
-msgstr "αναβάθμιση περιβάλλοντος:"
+#: domains/javascript.py:423 domains/python/__init__.py:733
+msgid "attribute"
+msgstr "ιδιότητα"
-#: builders/__init__.py:494
-#, python-format
-msgid "%s added, %s changed, %s removed"
-msgstr "%s προστέθηκε, %s άλλαξε, %s απομακρύνθηκε"
+#: domains/javascript.py:424 domains/python/__init__.py:736
+msgid "module"
+msgstr "μονάδα"
-#: builders/__init__.py:531
+#: domains/javascript.py:458
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches a "
-"built-in exclude pattern %r. Please move your master document to a different"
-" location."
+msgid "duplicate %s description of %s, other %s in %s"
msgstr ""
-#: builders/__init__.py:540
+#: domains/rst.py:131 domains/rst.py:190
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it matches an "
-"exclude pattern specified in conf.py, %r. Please remove this pattern from "
-"conf.py."
-msgstr ""
+msgid "%s (directive)"
+msgstr "%s (οδηγία)"
-#: builders/__init__.py:551
+#: domains/rst.py:191 domains/rst.py:202
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s) because it is not included"
-" in the custom include_patterns = %r. Ensure that a pattern in "
-"include_patterns matches the master document."
+msgid ":%s: (directive option)"
msgstr ""
-#: builders/__init__.py:558
+#: domains/rst.py:224
#, python-format
-msgid ""
-"Sphinx is unable to load the master document (%s). The master document must "
-"be within the source directory or a subdirectory of it."
-msgstr ""
-
-#: builders/__init__.py:576 builders/__init__.py:592
-msgid "reading sources... "
-msgstr "ανάγνωση πηγών..."
+msgid "%s (role)"
+msgstr "%s (ρόλος)"
-#: builders/__init__.py:713
-#, python-format
-msgid "docnames to write: %s"
-msgstr "docname προς εγγραφή: %s"
+#: domains/rst.py:234
+msgid "directive"
+msgstr "οδηγία"
-#: builders/__init__.py:715
-msgid "no docnames to write!"
+#: domains/rst.py:235
+msgid "directive-option"
msgstr ""
-#: builders/__init__.py:728
-msgid "preparing documents"
-msgstr "προετοιμασία κειμένων"
-
-#: builders/__init__.py:731
-msgid "copying assets"
-msgstr ""
+#: domains/rst.py:236
+msgid "role"
+msgstr "ρόλος"
-#: builders/__init__.py:883
+#: domains/rst.py:262
#, python-format
-msgid "undecodable source characters, replacing with \"?\": %r"
-msgstr "μη κωδικοποιήσιμοι χαρακτήρες πηγής, θα αντικατασταθούν με \"?\": %r"
+msgid "duplicate description of %s %s, other instance in %s"
+msgstr ""
-#: builders/epub3.py:84
+#: domains/changeset.py:32
#, python-format
-msgid "The ePub file is in %(outdir)s."
-msgstr "Το αρχείο ePub βρίσκεται σε %(outdir)s."
-
-#: builders/epub3.py:189
-msgid "writing nav.xhtml file..."
+msgid "Added in version %s"
msgstr ""
-#: builders/epub3.py:221
-msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3"
-msgstr "η τιμή παραμετροποίησης \"epub_language\" (ή \"language\") δεν πρέπει να είναι κενή για EPUB3"
-
-#: builders/epub3.py:227
-msgid "conf value \"epub_uid\" should be XML NAME for EPUB3"
-msgstr "η τιμή παραμετροποίησης \"epub_uid\" πρέπει να είναι XML NAME για EPUB3"
-
-#: builders/epub3.py:232
-msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3"
-msgstr "η τιμή παραμετροποίησης \"epub_title\" (ή \"html_title\") δεν πρέπει να είναι κενή για EPUB3"
-
-#: builders/epub3.py:238
-msgid "conf value \"epub_author\" should not be empty for EPUB3"
-msgstr "η τιμή παραμετροποίησης \"epub_author\" δεν πρέπει να είναι κενή για EPUB3"
-
-#: builders/epub3.py:242
-msgid "conf value \"epub_contributor\" should not be empty for EPUB3"
-msgstr "η τιμή παραμετροποίησης \"epub_contributor\" δεν πρέπει να είναι κενή για EPUB3"
-
-#: builders/epub3.py:247
-msgid "conf value \"epub_description\" should not be empty for EPUB3"
-msgstr "η τιμή παραμετροποίησης \"epub_description\" δεν πρέπει να είναι κενή για EPUB3"
-
-#: builders/epub3.py:251
-msgid "conf value \"epub_publisher\" should not be empty for EPUB3"
-msgstr "η τιμή παραμετροποίησης \"epub_publisher\" δεν πρέπει να είναι κενή για EPUB3"
-
-#: builders/epub3.py:256
-msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3"
-msgstr "η τιμή παραμετροποίησης \"epub_copyright\" (ή \"copyright\") δεν πρέπει να είναι κενή για EPUB3"
-
-#: builders/epub3.py:262
-msgid "conf value \"epub_identifier\" should not be empty for EPUB3"
-msgstr "η τιμή παραμετροποίησης \"epub_identifier\" δεν πρέπει να είναι κενή για EPUB3"
-
-#: builders/epub3.py:265
-msgid "conf value \"version\" should not be empty for EPUB3"
-msgstr "η τιμή παραμετροποίησης \"version\" δεν πρέπει να είναι κενή για EPUB3"
-
-#: builders/epub3.py:279 builders/html/__init__.py:1291
+#: domains/changeset.py:33
#, python-format
-msgid "invalid css_file: %r, ignored"
-msgstr "ανέγκυρο css_file: %r, θα αγνοηθεί"
+msgid "Changed in version %s"
+msgstr "Άλλαξε στην έκδοση %s"
-#: builders/xml.py:31
+#: domains/changeset.py:34
#, python-format
-msgid "The XML files are in %(outdir)s."
-msgstr "Τα αρχεία XML βρίσκονται σε %(outdir)s."
+msgid "Deprecated since version %s"
+msgstr "Αποσύρθηκε στην έκδοση %s"
-#: builders/html/__init__.py:1241 builders/text.py:76 builders/xml.py:90
+#: domains/changeset.py:35
#, python-format
-msgid "error writing file %s: %s"
-msgstr "σφάλμα καταγραφής αρχείου %s: %s"
+msgid "Removed in version %s"
+msgstr ""
-#: builders/xml.py:101
+#: domains/__init__.py:322
#, python-format
-msgid "The pseudo-XML files are in %(outdir)s."
-msgstr "Τα αρχεία XML βρίσκονται σε %(outdir)s."
+msgid "%s %s"
+msgstr "%s %s"
-#: builders/texinfo.py:45
-#, python-format
-msgid "The Texinfo files are in %(outdir)s."
-msgstr "Τα αρχεία Texinfo βρίσκονται σε %(outdir)s."
+#: cmd/build.py:64
+msgid "job number should be a positive number"
+msgstr "ο αριθμός εργασίας θα πρέπει να είναι θετικός αριθμός"
+
+#: cmd/build.py:73 cmd/quickstart.py:582 ext/apidoc/_cli.py:27
+#: ext/autosummary/generate.py:876
+msgid "For more information, visit ."
+msgstr ""
-#: builders/texinfo.py:48
+#: cmd/build.py:74
msgid ""
"\n"
-"Run 'make' in that directory to run these through makeinfo\n"
-"(use 'make info' here to do that automatically)."
-msgstr "\nΕκτελέστε 'make' σε αυτό τον κατάλογο για να εκτελέσετε αυτά μέσω του makeinfo\n(χρησιμοποιήστε το 'make info' εδώ για να το κάνετε αυτόματα)."
-
-#: builders/texinfo.py:77
-msgid "no \"texinfo_documents\" config value found; no documents will be written"
-msgstr "δεν βρέθηκε τιμή \"texinfo_documents\": δεν θα γίνει εγγραφή κανενός κειμένου"
-
-#: builders/texinfo.py:89
-#, python-format
-msgid "\"texinfo_documents\" config value references unknown document %s"
-msgstr "η τιμή παραμετροποίησης \"texninfo_documents\" αναφέρεται σε άγνωστο κείμενο %s"
-
-#: builders/latex/__init__.py:325 builders/texinfo.py:113
-#, python-format
-msgid "processing %s"
-msgstr "επεξεργασία %s"
-
-#: builders/latex/__init__.py:405 builders/texinfo.py:172
-msgid "resolving references..."
-msgstr "επίλυση αναφορών..."
-
-#: builders/latex/__init__.py:416 builders/texinfo.py:182
-msgid " (in "
-msgstr " (σε "
+"Generate documentation from source files.\n"
+"\n"
+"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
+"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
+"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
+"including 'conf.py'\n"
+"\n"
+"sphinx-build can create documentation in different formats. A format is\n"
+"selected by specifying the builder name on the command line; it defaults to\n"
+"HTML. Builders can also perform other tasks related to documentation\n"
+"processing.\n"
+"\n"
+"By default, everything that is outdated is built. Output only for selected\n"
+"files can be built by specifying individual filenames.\n"
+msgstr ""
-#: builders/_epub_base.py:422 builders/html/__init__.py:779
-#: builders/latex/__init__.py:481 builders/texinfo.py:198
-msgid "copying images... "
-msgstr "αντιγραφή εικόνων..."
+#: cmd/build.py:100
+msgid "path to documentation source files"
+msgstr "μονοπάτι για τα αρχεία πηγής τεκμηρίωσης"
-#: builders/_epub_base.py:444 builders/latex/__init__.py:496
-#: builders/texinfo.py:215
-#, python-format
-msgid "cannot copy image file %r: %s"
-msgstr "δεν είναι δυνατή η αντιγραφή αρχείου εικόνας %r: %s"
+#: cmd/build.py:103
+msgid "path to output directory"
+msgstr "μονοπάτι στον κατάλογο εξόδου"
-#: builders/texinfo.py:222
-msgid "copying Texinfo support files"
-msgstr "αντιγραφή αρχείων υποστήριξης Texinfo"
+#: cmd/build.py:109
+msgid ""
+"(optional) a list of specific files to rebuild. Ignored if --write-all is "
+"specified"
+msgstr ""
-#: builders/texinfo.py:230
-#, python-format
-msgid "error writing file Makefile: %s"
-msgstr "σφάλμα κατά την εγγραφή του αρχείου Makefile: %s"
+#: cmd/build.py:114
+msgid "general options"
+msgstr "γενικές επιλογές"
-#: builders/_epub_base.py:223
-#, python-format
-msgid "duplicated ToC entry found: %s"
-msgstr "βρέθηκε διπλότυπη εγγραφή ToC: %s"
+#: cmd/build.py:121
+msgid "builder to use (default: 'html')"
+msgstr ""
-#: builders/_epub_base.py:433
-#, python-format
-msgid "cannot read image file %r: copying it instead"
-msgstr "δεν είναι δυνατή η ανάγωνση αρχείου εικόνας %r: αντί αυτού θα αντιγραφεί"
+#: cmd/build.py:131
+msgid ""
+"run in parallel with N processes, when possible. 'auto' uses the number of "
+"CPU cores"
+msgstr ""
-#: builders/_epub_base.py:464
-#, python-format
-msgid "cannot write image file %r: %s"
-msgstr "δεν είναι δυνατή η εγγραφή αρχείου %r: %s"
+#: cmd/build.py:140
+msgid "write all files (default: only write new and changed files)"
+msgstr "εγγραφή όλων των αρχείων (προεπιλογή: εγγραφή μόνο νέων και αλλαγμένων αρχείων)"
-#: builders/_epub_base.py:476
-msgid "Pillow not found - copying image files"
-msgstr "Το pillow δεν βρέθηκε - αντιγραφή αρχείων εικόνας"
+#: cmd/build.py:147
+msgid "don't use a saved environment, always read all files"
+msgstr "μην χρησιμοποιείτε ένα αποθηκευμένο περιβάλλον, πάντα να διαβάζετε όλα τα αρχεία"
-#: builders/_epub_base.py:511
-msgid "writing mimetype file..."
+#: cmd/build.py:150
+msgid "path options"
msgstr ""
-#: builders/_epub_base.py:520
-msgid "writing META-INF/container.xml file..."
+#: cmd/build.py:157
+msgid ""
+"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
msgstr ""
-#: builders/_epub_base.py:558
-msgid "writing content.opf file..."
+#: cmd/build.py:166
+msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
msgstr ""
-#: builders/_epub_base.py:591
-#, python-format
-msgid "unknown mimetype for %s, ignoring"
-msgstr "άγνωστο mimetype για %s, θα ανγοηθεί"
-
-#: builders/_epub_base.py:745
-msgid "node has an invalid level"
+#: cmd/build.py:175
+msgid "use no configuration file, only use settings from -D options"
msgstr ""
-#: builders/_epub_base.py:765
-msgid "writing toc.ncx file..."
+#: cmd/build.py:184
+msgid "override a setting in configuration file"
+msgstr "παράκαμψη ρύθμισης στο αρχείο παραμετροποίησης"
+
+#: cmd/build.py:193
+msgid "pass a value into HTML templates"
+msgstr "μεταφορά τιμής στα πρότυπα HTML"
+
+#: cmd/build.py:202
+msgid "define tag: include \"only\" blocks with TAG"
+msgstr "ορίστε ετικέτα: συμπεριλάβατε \"only\" τμήματα με TAG"
+
+#: cmd/build.py:209
+msgid "nitpicky mode: warn about all missing references"
msgstr ""
-#: builders/_epub_base.py:794
-#, python-format
-msgid "writing %s file..."
-msgstr "εγγραφή %s αρχείου..."
+#: cmd/build.py:212
+msgid "console output options"
+msgstr "επιλογές εξόδου κονσόλας"
-#: builders/dummy.py:19
-msgid "The dummy builder generates no files."
-msgstr "Ο προσωρινός μεταγλωττιστής δεν δημιουργεί αρχεία."
+#: cmd/build.py:219
+msgid "increase verbosity (can be repeated)"
+msgstr "αυξήστε τον βερμπαλισμό (μπορεί να επαναληφθεί)"
-#: builders/gettext.py:244
-#, python-format
-msgid "The message catalogs are in %(outdir)s."
-msgstr "Οι κατάλογοι των μηνυμάτων είναι στο %(outdir)s."
+#: cmd/build.py:226 ext/apidoc/_cli.py:66
+msgid "no output on stdout, just warnings on stderr"
+msgstr "καμία έξοδος στο stdout, μόνο προειδοποιήσεις στο stderr"
-#: builders/gettext.py:266
-#, python-format
-msgid "targets for %d template files"
-msgstr "στόχοι για %d πρότυπα αρχεία"
+#: cmd/build.py:233
+msgid "no output at all, not even warnings"
+msgstr "κανένα αποτέλεσμα ούτε προειδοποιήσεις"
-#: builders/gettext.py:271
-msgid "reading templates... "
-msgstr "ανάγνωση προτύπων..."
+#: cmd/build.py:241
+msgid "do emit colored output (default: auto-detect)"
+msgstr "να γίνεται εκπομπή χρωματιστής εξόδου (προεπιλογή: auto-detect)"
-#: builders/gettext.py:307
-msgid "writing message catalogs... "
-msgstr "εγγραφή καταλόγων μηνύματος..."
+#: cmd/build.py:249
+msgid "do not emit colored output (default: auto-detect)"
+msgstr "να μην παρουσιάζεται έγχρωμο αποτέλεσμα (προεπιλογή: αυτόματη αναγνώριση)"
-#: builders/singlehtml.py:35
-#, python-format
-msgid "The HTML page is in %(outdir)s."
-msgstr "Η σελίδα HTML είναι στο %(outdir)s."
+#: cmd/build.py:252
+msgid "warning control options"
+msgstr ""
-#: builders/singlehtml.py:171
-msgid "assembling single document"
-msgstr "συναρμολόγηση απλού κειμένου"
+#: cmd/build.py:258
+msgid "write warnings (and errors) to given file"
+msgstr "προειδοποιήσεις εγγραφής (και σφάλματα) στο δοθέν αρχείο"
-#: builders/singlehtml.py:189
-msgid "writing additional files"
-msgstr "εγγραφή επιπρόσθετων αρχείων"
+#: cmd/build.py:265
+msgid "turn warnings into errors"
+msgstr "μετατροπή προειδοποιήσεων σε σφάλματα"
-#: builders/linkcheck.py:77
-#, python-format
-msgid "Look for any errors in the above output or in %(outdir)s/output.txt"
-msgstr "Αναζητήστε οποιαδήποτε λάθη στο παραπάνω αποτέλεσμα ή σε %(outdir)s/output.txt"
+#: cmd/build.py:273
+msgid "show full traceback on exception"
+msgstr "απεικόνιση πλήρους ιστορικού σε περίπτωση εξαίρεσης"
-#: builders/linkcheck.py:149
-#, python-format
-msgid "broken link: %s (%s)"
-msgstr "λανθασμένος σύνδεσμος: %s (%s)"
+#: cmd/build.py:276
+msgid "run Pdb on exception"
+msgstr "εκτέλεση Pdb σε περίπτωση εξαίρεσης"
-#: builders/linkcheck.py:548
-#, python-format
-msgid "Anchor '%s' not found"
-msgstr "Δεν βρέθηκε το anchor '%s'"
+#: cmd/build.py:282
+msgid "raise an exception on warnings"
+msgstr ""
+
+#: cmd/build.py:325
+msgid "cannot combine -a option and filenames"
+msgstr "δεν γίνεται συνδιασμός της επιλογής -a και των ονομάτων αρχείων"
-#: builders/linkcheck.py:758
+#: cmd/build.py:357
#, python-format
-msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
+msgid "cannot open warning file '%s': %s"
msgstr ""
-#: builders/text.py:29
-#, python-format
-msgid "The text files are in %(outdir)s."
-msgstr "Τα αρχεία κειένου βρίσκονται σε %(outdir)s."
+#: cmd/build.py:376
+msgid "-D option argument must be in the form name=value"
+msgstr "Το όρισμα -D πρέπει να είναι της μορφής όνομα=τιμέ"
-#: transforms/i18n.py:227 transforms/i18n.py:302
-#, python-brace-format
-msgid ""
-"inconsistent footnote references in translated message. original: {0}, "
-"translated: {1}"
-msgstr "ασυνεπείς αναφορές υποσημείωσης στα μεταφρασμένα μηνύματα. original: {0}, translated: {1}"
+#: cmd/build.py:383
+msgid "-A option argument must be in the form name=value"
+msgstr "Το όρισμα -Α πρέπει να είναι της μορφής όνομα=τιμή"
-#: transforms/i18n.py:272
-#, python-brace-format
-msgid ""
-"inconsistent references in translated message. original: {0}, translated: "
-"{1}"
-msgstr "ασυνεπείς αναφορές στα μεταφρασμένα μηνύματα. αρχικό: {0}, μεταφρασμένο: {1}"
+#: cmd/quickstart.py:52
+msgid "automatically insert docstrings from modules"
+msgstr "αυτόματη εισαγωγή docstrings από τα δομοστοιχεία"
-#: transforms/i18n.py:322
-#, python-brace-format
-msgid ""
-"inconsistent citation references in translated message. original: {0}, "
-"translated: {1}"
-msgstr "ασυνεπείς αναφορές παραπομπής στο μεταφρασμένο μήνυμα. αρχικό: {0}, μεταφρασμένο: {1}"
+#: cmd/quickstart.py:53
+msgid "automatically test code snippets in doctest blocks"
+msgstr "αυτόματα κομμάτια δοκιμαστικού κώδικα σε τμήματα doctest"
-#: transforms/i18n.py:344
-#, python-brace-format
-msgid ""
-"inconsistent term references in translated message. original: {0}, "
-"translated: {1}"
-msgstr "ασυνεπείς αναφορές όρων στα μεταφρασμένα μηνύματα. αρχικό: {0}, μεταφρασμένο: {1}"
+#: cmd/quickstart.py:54
+msgid "link between Sphinx documentation of different projects"
+msgstr "σύνδεσμος μεταξύ τεκμηρίωσης Sphinx διαφόρων έργων"
-#: builders/html/__init__.py:486 builders/latex/__init__.py:199
-#: transforms/__init__.py:129 writers/manpage.py:98 writers/texinfo.py:220
-#, python-format
-msgid "%b %d, %Y"
-msgstr "%d %B %Y"
+#: cmd/quickstart.py:55
+msgid "write \"todo\" entries that can be shown or hidden on build"
+msgstr "γράψτε εγγραφές \"todo\" οι οποίες μπορούν αν εμφανίζονται ή να αποκρύπτονται κατά τη μεταγλώττιση"
-#: transforms/__init__.py:139
-msgid "could not calculate translation progress!"
-msgstr ""
+#: cmd/quickstart.py:56
+msgid "checks for documentation coverage"
+msgstr "αναζήτηση για κάλυψη βιβλιογραφίας"
-#: transforms/__init__.py:144
-msgid "no translated elements!"
-msgstr ""
+#: cmd/quickstart.py:57
+msgid "include math, rendered as PNG or SVG images"
+msgstr "να συμπεριληφθεί το math, απεικονισμένο ως εικόνες PNG η SVG"
-#: transforms/__init__.py:253
-#, python-format
-msgid ""
-"4 column based index found. It might be a bug of extensions you use: %r"
-msgstr "βρέθηκε ευρετήριο βασιζόμενο σε 4 στήλες. Μπορεί να αποτελεί σφάλμα της επέκτασης που χρησιμοποιείτε: %r"
+#: cmd/quickstart.py:58
+msgid "include math, rendered in the browser by MathJax"
+msgstr "να συμπεριληφθεί το math, απεικονισμένο στο φυλλομετρηρή απο το MathJax"
-#: transforms/__init__.py:294
-#, python-format
-msgid "Footnote [%s] is not referenced."
-msgstr "Δεν υπάρχει αναφορά για την υποσημείωση [%s]."
+#: cmd/quickstart.py:59
+msgid "conditional inclusion of content based on config values"
+msgstr "υποθετική εισαγωγή περιεχομένου βασισμένη στις τιμές παραμετροποίησης"
-#: transforms/__init__.py:303
-msgid "Footnote [*] is not referenced."
-msgstr ""
+#: cmd/quickstart.py:60
+msgid "include links to the source code of documented Python objects"
+msgstr "να συμπεριληφθούν σύνδεσμοι στον πηγαίο κώδικα των τεκμηριωμένων αντικειμένων Python"
-#: transforms/__init__.py:314
-msgid "Footnote [#] is not referenced."
-msgstr "Η υποσημείωση [#] δεν αναφέρεται."
+#: cmd/quickstart.py:61
+msgid "create .nojekyll file to publish the document on GitHub pages"
+msgstr "δημιουργία αρχείου .nojekyll για έκδοση του εγγράφου στις σελίδες GitHub "
-#: _cli/__init__.py:73
-msgid "Usage:"
-msgstr ""
+#: cmd/quickstart.py:111
+msgid "Please enter a valid path name."
+msgstr "Παρακαλείστε να εισάγετε ένα έγκυρο όνομα μονοπατιού."
-#: _cli/__init__.py:75
-#, python-brace-format
-msgid "{0} [OPTIONS] []"
-msgstr ""
+#: cmd/quickstart.py:127
+msgid "Please enter some text."
+msgstr "Παρακαλείστε να εισάγετε κάποιο κείμενο."
-#: _cli/__init__.py:78
-msgid " The Sphinx documentation generator."
-msgstr ""
+#: cmd/quickstart.py:134
+#, python-format
+msgid "Please enter one of %s."
+msgstr "Παρακαλείστε να εισάγετε ένα από τα %s."
-#: _cli/__init__.py:87
-msgid "Commands:"
-msgstr ""
+#: cmd/quickstart.py:142
+msgid "Please enter either 'y' or 'n'."
+msgstr "Παρακαλείστε να εισάγετε είτε 'y' είτε 'n'."
-#: _cli/__init__.py:98
-msgid "Options"
-msgstr ""
+#: cmd/quickstart.py:148
+msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
+msgstr "Παρακαλείστε να εισάγετε μία επέκταση αρχείου, π.χ. '.rst' ή '.txt'."
-#: _cli/__init__.py:113 _cli/__init__.py:181
-msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
-msgstr ""
+#: cmd/quickstart.py:230
+#, python-format
+msgid "Welcome to the Sphinx %s quickstart utility."
+msgstr "Καλώς ήρθατε στο εργαλείο γρήγορης εκκίνησης Sphinx %s."
-#: _cli/__init__.py:171
-#, python-brace-format
+#: cmd/quickstart.py:235
msgid ""
-"{0}: error: {1}\n"
-"Run '{0} --help' for information"
+"Please enter values for the following settings (just press Enter to\n"
+"accept a default value, if one is given in brackets)."
msgstr ""
-#: _cli/__init__.py:179
-msgid " Manage documentation with Sphinx."
+#: cmd/quickstart.py:242
+#, python-format
+msgid "Selected root path: %s"
msgstr ""
-#: _cli/__init__.py:191
-msgid "Show the version and exit."
+#: cmd/quickstart.py:245
+msgid "Enter the root path for documentation."
msgstr ""
-#: _cli/__init__.py:199
-msgid "Show this message and exit."
-msgstr ""
+#: cmd/quickstart.py:246
+msgid "Root path for the documentation"
+msgstr "Ριζικό μονοπάτι για την τεκμηρίωση"
-#: _cli/__init__.py:203
-msgid "Logging"
-msgstr ""
+#: cmd/quickstart.py:255
+msgid "Error: an existing conf.py has been found in the selected root path."
+msgstr "Σφάλμα: ένα υπάρχον conf.py έχει βρεθεί στοn επιλεγμένο ριζικό κατάλογο."
-#: _cli/__init__.py:210
-msgid "Increase verbosity (can be repeated)"
-msgstr ""
+#: cmd/quickstart.py:260
+msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
+msgstr "το sphinx-quickstart δεν θα αντικαταστήσει υπάρχοντα έργα Sphinx."
-#: _cli/__init__.py:218
-msgid "Only print errors and warnings."
-msgstr ""
+#: cmd/quickstart.py:263
+msgid "Please enter a new root path (or just Enter to exit)"
+msgstr "Παρακαλείστε να εισάγετε ένα νέο ριζικό μονοπάτι (ή απλά πιέστε το Enter για έξοδο)"
-#: _cli/__init__.py:225
-msgid "No output at all"
+#: cmd/quickstart.py:274
+msgid ""
+"You have two options for placing the build directory for Sphinx output.\n"
+"Either, you use a directory \"_build\" within the root path, or you separate\n"
+"\"source\" and \"build\" directories within the root path."
msgstr ""
-#: _cli/__init__.py:231
-msgid ""
-msgstr ""
+#: cmd/quickstart.py:280
+msgid "Separate source and build directories (y/n)"
+msgstr "Ξεχωριστοί κατάλογοι για πηγή και μεταγλώττιση (y/n)"
-#: _cli/__init__.py:263
-msgid "See 'sphinx --help'.\n"
+#: cmd/quickstart.py:287
+msgid ""
+"Inside the root directory, two more directories will be created; \"_templates\"\n"
+"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
+"files. You can enter another prefix (such as \".\") to replace the underscore."
msgstr ""
-#: environment/__init__.py:86
-msgid "new config"
-msgstr "νέα παραμετροποίηση"
-
-#: environment/__init__.py:87
-msgid "config changed"
-msgstr "η παραμετροποίηση άλλαξε"
+#: cmd/quickstart.py:292
+msgid "Name prefix for templates and static dir"
+msgstr "Πρόθεμα ονόματος για πρότυπα και στατικούς καταλόγους"
-#: environment/__init__.py:88
-msgid "extensions changed"
-msgstr "αλλαγμένες επεκτάσεις"
+#: cmd/quickstart.py:298
+msgid ""
+"The project name will occur in several places in the built documentation."
+msgstr ""
-#: environment/__init__.py:253
-msgid "build environment version not current"
-msgstr "η έκδοση του περιβάλλοντος μεταλώττισης δεν είναι η τρέχουσα"
+#: cmd/quickstart.py:301
+msgid "Project name"
+msgstr "Όνομα έργου"
-#: environment/__init__.py:255
-msgid "source directory has changed"
-msgstr "ο πηγαίος κατάλογος έχει αλλάξει"
+#: cmd/quickstart.py:303
+msgid "Author name(s)"
+msgstr "Όνομα(τα) συγγραφέα"
-#: environment/__init__.py:325
-#, python-format
-msgid "The configuration has changed (1 option: %r)"
+#: cmd/quickstart.py:309
+msgid ""
+"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
+"software. Each version can have multiple releases. For example, for\n"
+"Python the version is something like 2.5 or 3.0, while the release is\n"
+"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
+"just set both to the same value."
msgstr ""
-#: environment/__init__.py:330
-#, python-format
-msgid "The configuration has changed (%d options: %s)"
-msgstr ""
+#: cmd/quickstart.py:316
+msgid "Project version"
+msgstr "Έκδοση έργου"
-#: environment/__init__.py:336
-#, python-format
-msgid "The configuration has changed (%d options: %s, ...)"
-msgstr ""
+#: cmd/quickstart.py:318
+msgid "Project release"
+msgstr "Κυκλοφορία έργου"
-#: environment/__init__.py:379
+#: cmd/quickstart.py:324
msgid ""
-"This environment is incompatible with the selected builder, please choose "
-"another doctree directory."
-msgstr "Το περιβάλλον δεν είναι συμβατό με τον επιλεγμένο μεταγλωττιστή, παρακαλείστε να επιλέξετε ένα διαφορετικό κατάλογο toctree."
-
-#: environment/__init__.py:493
-#, python-format
-msgid "Failed to scan documents in %s: %r"
-msgstr "Αδυναμία σάρωσης εγγράφων σε %s: %r"
+"If the documents are to be written in a language other than English,\n"
+"you can select a language here by its language code. Sphinx will then\n"
+"translate text that it generates into that language.\n"
+"\n"
+"For a list of supported codes, see\n"
+"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
+msgstr ""
-#: environment/__init__.py:658 ext/intersphinx/_resolve.py:234
-#, python-format
-msgid "Domain %r is not registered"
-msgstr "Ο τομέας %r δεν είναι καταχωρημένος"
+#: cmd/quickstart.py:332
+msgid "Project language"
+msgstr "Γλώσσα έργου"
-#: environment/__init__.py:813
-msgid "document isn't included in any toctree"
-msgstr "το έγγραφο δεν συμπεριλαμβάνεται σε κανένα toctree"
+#: cmd/quickstart.py:340
+msgid ""
+"The file name suffix for source files. Commonly, this is either \".txt\"\n"
+"or \".rst\". Only files with this suffix are considered documents."
+msgstr ""
-#: environment/__init__.py:859
-msgid "self referenced toctree found. Ignored."
-msgstr "Βρέθηκε αυτοαναφερόμενο toctree. Θα αγνοηθεί."
+#: cmd/quickstart.py:344
+msgid "Source file suffix"
+msgstr "Επέκταση αρχείου πηγής"
-#: environment/__init__.py:889
-#, python-format
-msgid "document is referenced in multiple toctrees: %s, selecting: %s <- %s"
+#: cmd/quickstart.py:350
+msgid ""
+"One document is special in that it is considered the top node of the\n"
+"\"contents tree\", that is, it is the root of the hierarchical structure\n"
+"of the documents. Normally, this is \"index\", but if your \"index\"\n"
+"document is a custom template, you can also set this to another filename."
msgstr ""
-#: util/i18n.py:100
-#, python-format
-msgid "reading error: %s, %s"
-msgstr "σφάλμα ανάγνωσης: %s, %s"
-
-#: util/i18n.py:113
-#, python-format
-msgid "writing error: %s, %s"
-msgstr "καταγραφή λάθους: %s, %s"
+#: cmd/quickstart.py:357
+msgid "Name of your master document (without suffix)"
+msgstr "Όνομα του κυρίους σας εγγράφου (χωρίς επέκταση)"
-#: util/i18n.py:146
+#: cmd/quickstart.py:368
#, python-format
-msgid "locale_dir %s does not exist"
-msgstr ""
+msgid ""
+"Error: the master file %s has already been found in the selected root path."
+msgstr "Σφάλμα: το κύριο αρχείο %s έχει ήδη βρεθεί στο επιλεγμένο ριζικό κατάλογο."
-#: util/i18n.py:236
-#, python-format
-msgid "Invalid Babel locale: %r."
-msgstr ""
+#: cmd/quickstart.py:374
+msgid "sphinx-quickstart will not overwrite the existing file."
+msgstr "το sphinx-quickstart δεν θα αντικαταστήσει υπάρχοντα αρχεία."
-#: util/i18n.py:245
-#, python-format
+#: cmd/quickstart.py:378
msgid ""
-"Invalid date format. Quote the string by single quote if you want to output "
-"it directly: %s"
-msgstr "Ανέγκυρος τύπος ημερομηνίας. Τοποθετείστε στη στοιχειοσειρά μονά εισαγωγικά εάν θέλετε να το εξάγετε απευθείας: %s"
+"Please enter a new file name, or rename the existing file and press Enter"
+msgstr "Παρακαλείσθε να εισάγετε ένα νέο όνομα αρχείου, ή να μεταονομάσετε το υπάρχον αρχείο και να πιέσετε το Enter"
-#: util/docfields.py:103
-#, python-format
+#: cmd/quickstart.py:386
+msgid "Indicate which of the following Sphinx extensions should be enabled:"
+msgstr "Υποδείξτε ποιά απο τις ακόλουθες επεκτάσεις Sphinx πρέπει να ενεργοποιηθούν:"
+
+#: cmd/quickstart.py:397
msgid ""
-"Problem in %s domain: field is supposed to use role '%s', but that role is "
-"not in the domain."
-msgstr ""
+"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
+"been deselected."
+msgstr "Σημείωση: τα imgmath και mathjax δεν είναι δυνατό να ενεργοποιηθούν ταυτόχρονα. Το imgmath έχει αποεπιλεγθεί. "
-#: util/nodes.py:423
-#, python-format
+#: cmd/quickstart.py:407
msgid ""
-"%r is deprecated for index entries (from entry %r). Use 'pair: %s' instead."
+"A Makefile and a Windows command file can be generated for you so that you\n"
+"only have to run e.g. `make html' instead of invoking sphinx-build\n"
+"directly."
msgstr ""
-#: util/nodes.py:490
-#, python-format
-msgid "toctree contains ref to nonexisting file %r"
-msgstr "το toctree περιλαμβάνει αναφορά σε άγνωστο αρχείο %r"
+#: cmd/quickstart.py:412
+msgid "Create Makefile? (y/n)"
+msgstr "Δημιουργία Makefile; (y/n)"
+
+#: cmd/quickstart.py:416
+msgid "Create Windows command file? (y/n)"
+msgstr "Δημιουργία αρχείου εντολών Windows; (y/n)"
-#: util/nodes.py:706
+#: cmd/quickstart.py:468 ext/apidoc/_generate.py:76
#, python-format
-msgid "exception while evaluating only directive expression: %s"
-msgstr "εξαίρεση κατά την αξιολόγηση μόνο της έκφρασης οδηγίας: %s"
+msgid "Creating file %s."
+msgstr "Δημιουργία αρχείου %s."
-#: util/display.py:82
-msgid "skipped"
-msgstr "παράβλεψη"
+#: cmd/quickstart.py:473 ext/apidoc/_generate.py:73
+#, python-format
+msgid "File %s already exists, skipping."
+msgstr "Το αρχείο %s υπάρχει ήδη, παραλείπεται."
-#: util/display.py:87
-msgid "failed"
-msgstr "αποτυχία"
+#: cmd/quickstart.py:516
+msgid "Finished: An initial directory structure has been created."
+msgstr "Ολοκλήρωση: μία αρχική δομή καταλόγου δημιουργήθηκε."
-#: util/osutil.py:131
+#: cmd/quickstart.py:520
#, python-format
msgid ""
-"Aborted attempted copy from %s to %s (the destination path has existing "
-"data)."
+"You should now populate your master file %s and create other documentation\n"
+"source files. "
msgstr ""
-#: util/docutils.py:309
-#, python-format
-msgid "unknown directive name: %s"
+#: cmd/quickstart.py:527
+msgid ""
+"Use the Makefile to build the docs, like so:\n"
+" make builder"
msgstr ""
-#: util/docutils.py:345
+#: cmd/quickstart.py:531
#, python-format
-msgid "unknown role name: %s"
+msgid ""
+"Use the sphinx-build command to build the docs, like so:\n"
+" sphinx-build -b builder %s %s"
msgstr ""
-#: util/docutils.py:789
-#, python-format
-msgid "unknown node type: %r"
-msgstr "άγνωστος τύπος κόμβου: %r"
-
-#: util/fileutil.py:76
-#, python-format
+#: cmd/quickstart.py:538
msgid ""
-"Aborted attempted copy from rendered template %s to %s (the destination path"
-" has existing data)."
+"where \"builder\" is one of the supported builders, e.g. html, latex or "
+"linkcheck."
msgstr ""
-#: util/fileutil.py:89
-#, python-format
-msgid "Writing evaluated template result to %s"
-msgstr ""
+#: cmd/quickstart.py:573
+msgid ""
+"\n"
+"Generate required files for a Sphinx project.\n"
+"\n"
+"sphinx-quickstart is an interactive tool that asks some questions about your\n"
+"project and then generates a complete documentation directory and sample\n"
+"Makefile to be used with sphinx-build.\n"
+msgstr "\nΔημιουργία απαιτούμενων αρχείων για ένα έργο Sphinx.\n\nΤο sphinx-quickstart είναι ένα διαδραστικό εργαλείο το οποίο κάνει κάποιες ερωτήσεις για το δικό σας \nέργο και μετά δημιουργεί έναν πλήρη κατάλογο τεκμηρίωσης και δείγμα \nMakefile για να χρησιμοποιηθεί με το sphinx-build.\n"
-#: util/rst.py:73
-#, python-format
-msgid "default role %s not found"
-msgstr "ο προεπιλεγμένος ρόλος %s δεν βρέθηκε"
+#: cmd/quickstart.py:592
+msgid "quiet mode"
+msgstr "ήσυχος τρόπος"
-#: util/inventory.py:147
-#, python-format
-msgid "inventory <%s> contains duplicate definitions of %s"
+#: cmd/quickstart.py:602
+msgid "project root"
msgstr ""
-#: util/inventory.py:166
-#, python-format
-msgid "inventory <%s> contains multiple definitions for %s"
-msgstr ""
+#: cmd/quickstart.py:605
+msgid "Structure options"
+msgstr "Επιλογές δομής"
-#: writers/latex.py:1097 writers/manpage.py:259 writers/texinfo.py:663
-msgid "Footnotes"
-msgstr "Σημειώσεις υποσέλιδου"
+#: cmd/quickstart.py:611
+msgid "if specified, separate source and build dirs"
+msgstr "αν ορίζεται, θα ξεχωρίσουν οι κατάλογοι πηγής και μεταγλώττισης"
-#: writers/manpage.py:289 writers/text.py:945
-#, python-format
-msgid "[image: %s]"
-msgstr "[εικόνα: %s]"
+#: cmd/quickstart.py:617
+msgid "if specified, create build dir under source dir"
+msgstr ""
-#: writers/manpage.py:290 writers/text.py:946
-msgid "[image]"
-msgstr "[εικόνα]"
+#: cmd/quickstart.py:623
+msgid "replacement for dot in _templates etc."
+msgstr "αντικατάσταση για τελεία σε _templates κλπ."
-#: builders/latex/__init__.py:206 domains/std/__init__.py:771
-#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:106
-#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
-#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
-#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
-#: themes/basic/genindex.html:59 themes/basic/layout.html:127
-#: writers/texinfo.py:514
-msgid "Index"
-msgstr "Ευρετήριο"
+#: cmd/quickstart.py:626
+msgid "Project basic options"
+msgstr "Βασικές επιλογές έργου"
-#: writers/latex.py:743 writers/texinfo.py:646
-msgid ""
-"encountered title node not in section, topic, table, admonition or sidebar"
-msgstr "ο ανακαλυφθέν τίτλος κόμβος δεν βρίσκεται σε τομέα, θέμα, πίνακα, προειδοποίηση ή πλαϊνή μπάρα"
+#: cmd/quickstart.py:628
+msgid "project name"
+msgstr "όνομα έργου"
-#: writers/texinfo.py:1217
-msgid "caption not inside a figure."
-msgstr "η λεζάντα δεν βρίσκεται εντός μίας εικόνας."
+#: cmd/quickstart.py:631
+msgid "author names"
+msgstr "ονόματα συγγραφέων"
-#: writers/texinfo.py:1303
-#, python-format
-msgid "unimplemented node type: %r"
-msgstr "μη υλοποιημένος τύπος κόμβου: %r"
+#: cmd/quickstart.py:638
+msgid "version of project"
+msgstr "έκδοση του έργου"
-#: writers/latex.py:361
-#, python-format
-msgid "unknown %r toplevel_sectioning for class %r"
-msgstr "άγνωστο toplevel_sectioning %r για την κλάσση %r"
+#: cmd/quickstart.py:645
+msgid "release of project"
+msgstr "δημοσίευση του έργου"
-#: builders/latex/__init__.py:224 writers/latex.py:411
-#, python-format
-msgid "no Babel option known for language %r"
-msgstr "καμία γνωστή επιλογή Babel για τη γλώσσα %r"
+#: cmd/quickstart.py:652
+msgid "document language"
+msgstr "γλώσσα εγγράφου"
-#: writers/latex.py:429
-msgid "too large :maxdepth:, ignored."
-msgstr "πολύ μεγάλο :maxdepth:, θα αγνοηθεί."
+#: cmd/quickstart.py:655
+msgid "source file suffix"
+msgstr "επέκταση αρχείου πηγής"
-#: writers/latex.py:591
-#, python-format
-msgid "template %s not found; loading from legacy %s instead"
-msgstr ""
+#: cmd/quickstart.py:658
+msgid "master document name"
+msgstr "κύριο όνομα εγγράφου"
-#: writers/latex.py:707
-msgid "document title is not a single Text node"
-msgstr "ο τίτλος του εγγράφου δεν είναι μονός κόμβος κειμένου"
+#: cmd/quickstart.py:661
+msgid "use epub"
+msgstr "χρηση epub"
-#: writers/html5.py:572 writers/latex.py:1106
+#: cmd/quickstart.py:664
+msgid "Extension options"
+msgstr "Επιλογές επέκτασης"
+
+#: cmd/quickstart.py:671
#, python-format
-msgid "unsupported rubric heading level: %s"
+msgid "enable %s extension"
+msgstr "ενεργοποίηση της επέκτασης %s"
+
+#: cmd/quickstart.py:678
+msgid "enable arbitrary extensions"
+msgstr "ενεργοποίηση αυθαίρετων επεκτάσεων"
+
+#: cmd/quickstart.py:681
+msgid "Makefile and Batchfile creation"
+msgstr "Δημιουργία Makefile και Batchfile"
+
+#: cmd/quickstart.py:687
+msgid "create makefile"
+msgstr "δημιουργία makefile"
+
+#: cmd/quickstart.py:693
+msgid "do not create makefile"
+msgstr "να μη δημιουργηθεί makefile"
+
+#: cmd/quickstart.py:700
+msgid "create batchfile"
+msgstr "δημιουργία batchfile"
+
+#: cmd/quickstart.py:706
+msgid "do not create batchfile"
+msgstr "να μη δημιουργηθεί batchfile"
+
+#: cmd/quickstart.py:715
+msgid "use make-mode for Makefile/make.bat"
+msgstr "χρησιμοποιήστε το make-mode για το Makefile/make.bat"
+
+#: cmd/quickstart.py:718 ext/apidoc/_cli.py:243
+msgid "Project templating"
+msgstr "Προτυποποίηση έργου"
+
+#: cmd/quickstart.py:724 ext/apidoc/_cli.py:249
+msgid "template directory for template files"
+msgstr "πρότυπος κατάλογος για πρότυπα αρχεία"
+
+#: cmd/quickstart.py:731
+msgid "define a template variable"
+msgstr "ορίστε μία τιμή προτύπου"
+
+#: cmd/quickstart.py:767
+msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
+msgstr "καθορίστηκε το \"quiet\", αλλά δεν καθορίστηκε είτε το \"project\" είτε το \"author\"."
+
+#: cmd/quickstart.py:786
+msgid ""
+"Error: specified path is not a directory, or sphinx files already exist."
+msgstr "Σφάλμα: το καθορισθέν μονοπάτι δεν είναι κατάλογος, ή τα αρχεία sphinx υπάρχουν ήδη."
+
+#: cmd/quickstart.py:793
+msgid ""
+"sphinx-quickstart only generate into a empty directory. Please specify a new"
+" root path."
+msgstr "Το sphinx-quickstart δημιουργεί μόνο εντός ενός κενού καταλόγου. Παρακαλείσθε να καθορίσετε ένα νέο ριζικό μονοπάτι."
+
+#: cmd/quickstart.py:810
+#, python-format
+msgid "Invalid template variable: %s"
+msgstr "Ανέγκυρη μεταβλητή προτύπου: %s"
+
+#: directives/other.py:119
+#, python-format
+msgid "toctree glob pattern %r didn't match any documents"
+msgstr ""
+
+#: directives/other.py:153 environment/adapters/toctree.py:372
+#, python-format
+msgid "toctree contains reference to excluded document %r"
+msgstr "Το toctree περιλαμβάνει αναφορά στο αποκλεισμένο κείμενο %r"
+
+#: directives/other.py:156
+#, python-format
+msgid "toctree contains reference to nonexisting document %r"
+msgstr "το toctree περιλαμβάνει αναφορά στο μη υπαρκτό έγγραφο %r"
+
+#: directives/other.py:169
+#, python-format
+msgid "duplicated entry found in toctree: %s"
+msgstr ""
+
+#: directives/other.py:203
+msgid "Section author: "
+msgstr "Συντάκτης τμήματος: "
+
+#: directives/other.py:205
+msgid "Module author: "
+msgstr "Συντάκτης μονάδας: "
+
+#: directives/other.py:207
+msgid "Code author: "
+msgstr "Συντάκτης κώδικα: "
+
+#: directives/other.py:209
+msgid "Author: "
+msgstr "Συντάκτης: "
+
+#: directives/other.py:269
+msgid ".. acks content is not a list"
+msgstr ""
+
+#: directives/other.py:292
+msgid ".. hlist content is not a list"
msgstr ""
-#: writers/latex.py:1183
+#: directives/patches.py:70
msgid ""
-"both tabularcolumns and :widths: option are given. :widths: is ignored."
-msgstr "τόσο η επιλογή για tabularcolumns όσο και για :widths: δίνονται. Η επιλογή :widths: θα αγνοηθεί."
+"\":file:\" option for csv-table directive now recognizes an absolute path as"
+" a relative path from source directory. Please update your document."
+msgstr ""
+
+#: directives/code.py:66
+msgid "non-whitespace stripped by dedent"
+msgstr ""
-#: writers/latex.py:1580
+#: directives/code.py:87
#, python-format
-msgid "dimension unit %s is invalid. Ignored."
-msgstr "η μονάδα διάστασης %s δεν είναι έγκυρη. Θα αγνοηθεί."
+msgid "Invalid caption: %s"
+msgstr "Ανέγκυρη λεζάντα: %s"
-#: writers/latex.py:1939
+#: directives/code.py:131 directives/code.py:297 directives/code.py:483
#, python-format
-msgid "unknown index entry type %s found"
-msgstr "βρέθηκε άγνωστος τύπος εγγραφής ευρετηρίου %s"
+msgid "line number spec is out of range(1-%d): %r"
+msgstr "η προδιαγραφή αριθμού σειράς είναι εκτός e;yroyw (1-%d): %r"
-#: domains/math.py:128 writers/latex.py:2495
+#: directives/code.py:216
#, python-format
-msgid "Invalid math_eqref_format: %r"
-msgstr "Ανέγκυρο math_eqref_format: %r"
+msgid "Cannot use both \"%s\" and \"%s\" options"
+msgstr "Δεν είναι δυνατή η ταυτόχρονη χρήση των επιλογών \"%s\" και \"%s\""
+
+#: directives/code.py:231
+#, python-format
+msgid "Include file '%s' not found or reading it failed"
+msgstr ""
+
+#: directives/code.py:235
+#, python-format
+msgid ""
+"Encoding %r used for reading included file '%s' seems to be wrong, try "
+"giving an :encoding: option"
+msgstr ""
+
+#: directives/code.py:276
+#, python-format
+msgid "Object named %r not found in include file %r"
+msgstr "Το αντικείμενο με όνομα %r δεν βρέθηκε στο συμπεριληφθέν αρχείο %r"
+
+#: directives/code.py:309
+msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\""
+msgstr "Δεν είναι δυνατή η χρήση \"leneno-match\" με ένα κομματιασμένο σετ απο \"lines\""
+
+#: directives/code.py:314
+#, python-format
+msgid "Line spec %r: no lines pulled from include file %r"
+msgstr "Προσδιορισμός γραμμής %r: δεν ελήφθησαν γραμμές από το συμπεριληφθέν αρχείο %r"
+
+#: builders/html/__init__.py:475 builders/latex/__init__.py:196
+#: transforms/__init__.py:134 writers/manpage.py:97 writers/texinfo.py:220
+#, python-format
+msgid "%b %d, %Y"
+msgstr "%d %B %Y"
+
+#: builders/latex/__init__.py:203 domains/std/__init__.py:771
+#: domains/std/__init__.py:784 templates/latex/latex.tex.jinja:107
+#: themes/basic/genindex-single.html:22 themes/basic/genindex-single.html:48
+#: themes/basic/genindex-split.html:3 themes/basic/genindex-split.html:6
+#: themes/basic/genindex.html:3 themes/basic/genindex.html:26
+#: themes/basic/genindex.html:59 themes/basic/layout.html:127
+#: writers/texinfo.py:514
+msgid "Index"
+msgstr "Ευρετήριο"
+
+#: writers/latex.py:768 writers/texinfo.py:646
+msgid ""
+"encountered title node not in section, topic, table, admonition or sidebar"
+msgstr "ο ανακαλυφθέν τίτλος κόμβος δεν βρίσκεται σε τομέα, θέμα, πίνακα, προειδοποίηση ή πλαϊνή μπάρα"
+
+#: writers/latex.py:1118 writers/manpage.py:258 writers/texinfo.py:663
+msgid "Footnotes"
+msgstr "Σημειώσεις υποσέλιδου"
+
+#: writers/texinfo.py:1217
+msgid "caption not inside a figure."
+msgstr "η λεζάντα δεν βρίσκεται εντός μίας εικόνας."
+
+#: writers/texinfo.py:1303
+#, python-format
+msgid "unimplemented node type: %r"
+msgstr "μη υλοποιημένος τύπος κόμβου: %r"
+
+#: writers/manpage.py:288 writers/text.py:971
+#, python-format
+msgid "[image: %s]"
+msgstr "[εικόνα: %s]"
+
+#: writers/manpage.py:289 writers/text.py:972
+msgid "[image]"
+msgstr "[εικόνα]"
#: writers/html5.py:96 writers/html5.py:105
msgid "Link to this definition"
@@ -1834,6 +2345,11 @@ msgstr ""
msgid "Link to this table"
msgstr ""
+#: writers/html5.py:572 writers/latex.py:1127
+#, python-format
+msgid "unsupported rubric heading level: %s"
+msgstr ""
+
#: writers/html5.py:636
msgid "Link to this code"
msgstr ""
@@ -1850,795 +2366,479 @@ msgstr ""
msgid "Could not obtain image size. :scale: option is ignored."
msgstr "Δεν ήταν δυνατή η λήψη του μεγέθους της εικόνας. Η επιλογή :scale: θα αγνοηθεί."
-#: domains/__init__.py:322
+#: writers/latex.py:386
#, python-format
-msgid "%s %s"
-msgstr "%s %s"
+msgid "unknown %r toplevel_sectioning for class %r"
+msgstr "άγνωστο toplevel_sectioning %r για την κλάσση %r"
-#: domains/math.py:73
+#: builders/latex/__init__.py:221 writers/latex.py:436
#, python-format
-msgid "duplicate label of equation %s, other instance in %s"
-msgstr "διπλότυπη ετικέτα της εξίσωσης %s, άλλη εμφάνιση στο %s"
+msgid "no Babel option known for language %r"
+msgstr "καμία γνωστή επιλογή Babel για τη γλώσσα %r"
-#: domains/javascript.py:182
-#, python-format
-msgid "%s() (built-in function)"
-msgstr "%s() (ενσωματωμένη συνάρτηση)"
+#: writers/latex.py:454
+msgid "too large :maxdepth:, ignored."
+msgstr "πολύ μεγάλο :maxdepth:, θα αγνοηθεί."
-#: domains/javascript.py:183 domains/python/__init__.py:287
+#: writers/latex.py:616
#, python-format
-msgid "%s() (%s method)"
-msgstr "%s() (μέθοδος της %s)"
+msgid "template %s not found; loading from legacy %s instead"
+msgstr ""
-#: domains/javascript.py:185
-#, python-format
-msgid "%s() (class)"
-msgstr "%s() (κλάση)"
+#: writers/latex.py:732
+msgid "document title is not a single Text node"
+msgstr "ο τίτλος του εγγράφου δεν είναι μονός κόμβος κειμένου"
-#: domains/javascript.py:187
-#, python-format
-msgid "%s (global variable or constant)"
-msgstr "%s (καθολική μεταβλητή ή σταθερά)"
+#: writers/latex.py:1198
+msgid ""
+"both tabularcolumns and :widths: option are given. :widths: is ignored."
+msgstr "τόσο η επιλογή για tabularcolumns όσο και για :widths: δίνονται. Η επιλογή :widths: θα αγνοηθεί."
-#: domains/javascript.py:189 domains/python/__init__.py:378
+#: writers/latex.py:1228
#, python-format
-msgid "%s (%s attribute)"
-msgstr "%s (ιδιότητα της %s)"
+msgid ""
+"colspec %s was given which appears to use tabulary syntax. But this table "
+"can not be rendered as a tabulary; the given colspec will be ignored."
+msgstr ""
-#: domains/javascript.py:273
-msgid "Arguments"
-msgstr "Παράμετροι"
+#: writers/latex.py:1615
+#, python-format
+msgid "dimension unit %s is invalid. Ignored."
+msgstr "η μονάδα διάστασης %s δεν είναι έγκυρη. Θα αγνοηθεί."
-#: domains/cpp/__init__.py:489 domains/javascript.py:280
-msgid "Throws"
-msgstr "Προκαλεί"
+#: writers/latex.py:1950
+#, python-format
+msgid "unknown index entry type %s found"
+msgstr "βρέθηκε άγνωστος τύπος εγγραφής ευρετηρίου %s"
-#: domains/c/__init__.py:339 domains/cpp/__init__.py:502
-#: domains/javascript.py:287 domains/python/_object.py:221
-msgid "Returns"
-msgstr "Επιστρέφει"
+#: _cli/__init__.py:73
+msgid "Usage:"
+msgstr ""
-#: domains/c/__init__.py:345 domains/javascript.py:293
-#: domains/python/_object.py:227
-msgid "Return type"
-msgstr "Επιστρεφόμενος τύπος"
+#: _cli/__init__.py:75
+#, python-brace-format
+msgid "{0} [OPTIONS] []"
+msgstr ""
-#: domains/javascript.py:370
-#, python-format
-msgid "%s (module)"
-msgstr "%s (μονάδα)"
+#: _cli/__init__.py:78
+msgid " The Sphinx documentation generator."
+msgstr ""
-#: domains/c/__init__.py:751 domains/cpp/__init__.py:941
-#: domains/javascript.py:415 domains/python/__init__.py:740
-msgid "function"
-msgstr "συνάρτηση"
+#: _cli/__init__.py:87
+msgid "Commands:"
+msgstr ""
-#: domains/javascript.py:416 domains/python/__init__.py:744
-msgid "method"
-msgstr "μέθοδος"
+#: _cli/__init__.py:98
+msgid "Options"
+msgstr ""
-#: domains/cpp/__init__.py:939 domains/javascript.py:417
-#: domains/python/__init__.py:742
-msgid "class"
-msgstr "κλάση"
+#: _cli/__init__.py:113 _cli/__init__.py:181
+msgid "For more information, visit https://www.sphinx-doc.org/en/master/man/."
+msgstr ""
-#: domains/javascript.py:418 domains/python/__init__.py:741
-msgid "data"
-msgstr "δεδομένα"
-
-#: domains/javascript.py:419 domains/python/__init__.py:747
-msgid "attribute"
-msgstr "ιδιότητα"
-
-#: domains/javascript.py:420 domains/python/__init__.py:750
-msgid "module"
-msgstr "μονάδα"
-
-#: domains/javascript.py:454
-#, python-format
-msgid "duplicate %s description of %s, other %s in %s"
+#: _cli/__init__.py:171
+#, python-brace-format
+msgid ""
+"{0}: error: {1}\n"
+"Run '{0} --help' for information"
msgstr ""
-#: domains/changeset.py:26
-#, python-format
-msgid "Added in version %s"
+#: _cli/__init__.py:179
+msgid " Manage documentation with Sphinx."
msgstr ""
-#: domains/changeset.py:27
-#, python-format
-msgid "Changed in version %s"
-msgstr "Άλλαξε στην έκδοση %s"
-
-#: domains/changeset.py:28
-#, python-format
-msgid "Deprecated since version %s"
-msgstr "Αποσύρθηκε στην έκδοση %s"
-
-#: domains/changeset.py:29
-#, python-format
-msgid "Removed in version %s"
+#: _cli/__init__.py:191
+msgid "Show the version and exit."
msgstr ""
-#: domains/rst.py:131 domains/rst.py:190
-#, python-format
-msgid "%s (directive)"
-msgstr "%s (οδηγία)"
-
-#: domains/rst.py:191 domains/rst.py:202
-#, python-format
-msgid ":%s: (directive option)"
+#: _cli/__init__.py:199
+msgid "Show this message and exit."
msgstr ""
-#: domains/rst.py:224
-#, python-format
-msgid "%s (role)"
-msgstr "%s (ρόλος)"
-
-#: domains/rst.py:234
-msgid "directive"
-msgstr "οδηγία"
-
-#: domains/rst.py:235
-msgid "directive-option"
+#: _cli/__init__.py:203
+msgid "Logging"
msgstr ""
-#: domains/rst.py:236
-msgid "role"
-msgstr "ρόλος"
-
-#: domains/rst.py:262
-#, python-format
-msgid "duplicate description of %s %s, other instance in %s"
+#: _cli/__init__.py:210
+msgid "Increase verbosity (can be repeated)"
msgstr ""
-#: domains/citation.py:75
-#, python-format
-msgid "duplicate citation %s, other instance in %s"
-msgstr "διπλότυπη ετικέτα %s, άλλη εμφάνιση στο %s"
-
-#: domains/citation.py:92
-#, python-format
-msgid "Citation [%s] is not referenced."
-msgstr "Η παραπομπή [%s] δεν αναφέρεται."
-
-#: locale/__init__.py:228
-msgid "Attention"
-msgstr "Προσοχή"
-
-#: locale/__init__.py:229
-msgid "Caution"
-msgstr "Προσοχή"
-
-#: locale/__init__.py:230
-msgid "Danger"
-msgstr "Κίνδυνος"
-
-#: locale/__init__.py:231
-msgid "Error"
-msgstr "Σφάλμα"
-
-#: locale/__init__.py:232
-msgid "Hint"
-msgstr "Συμβουλή"
-
-#: locale/__init__.py:233
-msgid "Important"
-msgstr "Σημαντικό"
-
-#: locale/__init__.py:234
-msgid "Note"
-msgstr "Σημείωση"
-
-#: locale/__init__.py:235
-msgid "See also"
-msgstr "Δείτε επίσης"
-
-#: locale/__init__.py:236
-msgid "Tip"
-msgstr "Πρακτική συμβουλή"
-
-#: locale/__init__.py:237
-msgid "Warning"
-msgstr "Προειδοποίηση"
-
-#: cmd/quickstart.py:52
-msgid "automatically insert docstrings from modules"
-msgstr "αυτόματη εισαγωγή docstrings από τα δομοστοιχεία"
-
-#: cmd/quickstart.py:53
-msgid "automatically test code snippets in doctest blocks"
-msgstr "αυτόματα κομμάτια δοκιμαστικού κώδικα σε τμήματα doctest"
-
-#: cmd/quickstart.py:54
-msgid "link between Sphinx documentation of different projects"
-msgstr "σύνδεσμος μεταξύ τεκμηρίωσης Sphinx διαφόρων έργων"
-
-#: cmd/quickstart.py:55
-msgid "write \"todo\" entries that can be shown or hidden on build"
-msgstr "γράψτε εγγραφές \"todo\" οι οποίες μπορούν αν εμφανίζονται ή να αποκρύπτονται κατά τη μεταγλώττιση"
-
-#: cmd/quickstart.py:56
-msgid "checks for documentation coverage"
-msgstr "αναζήτηση για κάλυψη βιβλιογραφίας"
-
-#: cmd/quickstart.py:57
-msgid "include math, rendered as PNG or SVG images"
-msgstr "να συμπεριληφθεί το math, απεικονισμένο ως εικόνες PNG η SVG"
-
-#: cmd/quickstart.py:58
-msgid "include math, rendered in the browser by MathJax"
-msgstr "να συμπεριληφθεί το math, απεικονισμένο στο φυλλομετρηρή απο το MathJax"
-
-#: cmd/quickstart.py:59
-msgid "conditional inclusion of content based on config values"
-msgstr "υποθετική εισαγωγή περιεχομένου βασισμένη στις τιμές παραμετροποίησης"
-
-#: cmd/quickstart.py:60
-msgid "include links to the source code of documented Python objects"
-msgstr "να συμπεριληφθούν σύνδεσμοι στον πηγαίο κώδικα των τεκμηριωμένων αντικειμένων Python"
-
-#: cmd/quickstart.py:61
-msgid "create .nojekyll file to publish the document on GitHub pages"
-msgstr "δημιουργία αρχείου .nojekyll για έκδοση του εγγράφου στις σελίδες GitHub "
-
-#: cmd/quickstart.py:110
-msgid "Please enter a valid path name."
-msgstr "Παρακαλείστε να εισάγετε ένα έγκυρο όνομα μονοπατιού."
-
-#: cmd/quickstart.py:126
-msgid "Please enter some text."
-msgstr "Παρακαλείστε να εισάγετε κάποιο κείμενο."
-
-#: cmd/quickstart.py:133
-#, python-format
-msgid "Please enter one of %s."
-msgstr "Παρακαλείστε να εισάγετε ένα από τα %s."
-
-#: cmd/quickstart.py:141
-msgid "Please enter either 'y' or 'n'."
-msgstr "Παρακαλείστε να εισάγετε είτε 'y' είτε 'n'."
-
-#: cmd/quickstart.py:147
-msgid "Please enter a file suffix, e.g. '.rst' or '.txt'."
-msgstr "Παρακαλείστε να εισάγετε μία επέκταση αρχείου, π.χ. '.rst' ή '.txt'."
-
-#: cmd/quickstart.py:229
-#, python-format
-msgid "Welcome to the Sphinx %s quickstart utility."
-msgstr "Καλώς ήρθατε στο εργαλείο γρήγορης εκκίνησης Sphinx %s."
-
-#: cmd/quickstart.py:234
-msgid ""
-"Please enter values for the following settings (just press Enter to\n"
-"accept a default value, if one is given in brackets)."
+#: _cli/__init__.py:218
+msgid "Only print errors and warnings."
msgstr ""
-#: cmd/quickstart.py:241
-#, python-format
-msgid "Selected root path: %s"
+#: _cli/__init__.py:225
+msgid "No output at all"
msgstr ""
-#: cmd/quickstart.py:244
-msgid "Enter the root path for documentation."
+#: _cli/__init__.py:231
+msgid ""
msgstr ""
-#: cmd/quickstart.py:245
-msgid "Root path for the documentation"
-msgstr "Ριζικό μονοπάτι για την τεκμηρίωση"
-
-#: cmd/quickstart.py:254
-msgid "Error: an existing conf.py has been found in the selected root path."
-msgstr "Σφάλμα: ένα υπάρχον conf.py έχει βρεθεί στοn επιλεγμένο ριζικό κατάλογο."
-
-#: cmd/quickstart.py:259
-msgid "sphinx-quickstart will not overwrite existing Sphinx projects."
-msgstr "το sphinx-quickstart δεν θα αντικαταστήσει υπάρχοντα έργα Sphinx."
-
-#: cmd/quickstart.py:262
-msgid "Please enter a new root path (or just Enter to exit)"
-msgstr "Παρακαλείστε να εισάγετε ένα νέο ριζικό μονοπάτι (ή απλά πιέστε το Enter για έξοδο)"
-
-#: cmd/quickstart.py:273
-msgid ""
-"You have two options for placing the build directory for Sphinx output.\n"
-"Either, you use a directory \"_build\" within the root path, or you separate\n"
-"\"source\" and \"build\" directories within the root path."
+#: _cli/__init__.py:263
+msgid "See 'sphinx --help'.\n"
msgstr ""
-#: cmd/quickstart.py:279
-msgid "Separate source and build directories (y/n)"
-msgstr "Ξεχωριστοί κατάλογοι για πηγή και μεταγλώττιση (y/n)"
-
-#: cmd/quickstart.py:286
+#: transforms/i18n.py:230 transforms/i18n.py:305
+#, python-brace-format
msgid ""
-"Inside the root directory, two more directories will be created; \"_templates\"\n"
-"for custom HTML templates and \"_static\" for custom stylesheets and other static\n"
-"files. You can enter another prefix (such as \".\") to replace the underscore."
-msgstr ""
-
-#: cmd/quickstart.py:291
-msgid "Name prefix for templates and static dir"
-msgstr "Πρόθεμα ονόματος για πρότυπα και στατικούς καταλόγους"
+"inconsistent footnote references in translated message. original: {0}, "
+"translated: {1}"
+msgstr "ασυνεπείς αναφορές υποσημείωσης στα μεταφρασμένα μηνύματα. original: {0}, translated: {1}"
-#: cmd/quickstart.py:297
+#: transforms/i18n.py:275
+#, python-brace-format
msgid ""
-"The project name will occur in several places in the built documentation."
-msgstr ""
-
-#: cmd/quickstart.py:300
-msgid "Project name"
-msgstr "Όνομα έργου"
-
-#: cmd/quickstart.py:302
-msgid "Author name(s)"
-msgstr "Όνομα(τα) συγγραφέα"
+"inconsistent references in translated message. original: {0}, translated: "
+"{1}"
+msgstr "ασυνεπείς αναφορές στα μεταφρασμένα μηνύματα. αρχικό: {0}, μεταφρασμένο: {1}"
-#: cmd/quickstart.py:308
+#: transforms/i18n.py:325
+#, python-brace-format
msgid ""
-"Sphinx has the notion of a \"version\" and a \"release\" for the\n"
-"software. Each version can have multiple releases. For example, for\n"
-"Python the version is something like 2.5 or 3.0, while the release is\n"
-"something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n"
-"just set both to the same value."
-msgstr ""
-
-#: cmd/quickstart.py:315
-msgid "Project version"
-msgstr "Έκδοση έργου"
-
-#: cmd/quickstart.py:317
-msgid "Project release"
-msgstr "Κυκλοφορία έργου"
+"inconsistent citation references in translated message. original: {0}, "
+"translated: {1}"
+msgstr "ασυνεπείς αναφορές παραπομπής στο μεταφρασμένο μήνυμα. αρχικό: {0}, μεταφρασμένο: {1}"
-#: cmd/quickstart.py:323
+#: transforms/i18n.py:347
+#, python-brace-format
msgid ""
-"If the documents are to be written in a language other than English,\n"
-"you can select a language here by its language code. Sphinx will then\n"
-"translate text that it generates into that language.\n"
-"\n"
-"For a list of supported codes, see\n"
-"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language."
-msgstr ""
-
-#: cmd/quickstart.py:331
-msgid "Project language"
-msgstr "Γλώσσα έργου"
+"inconsistent term references in translated message. original: {0}, "
+"translated: {1}"
+msgstr "ασυνεπείς αναφορές όρων στα μεταφρασμένα μηνύματα. αρχικό: {0}, μεταφρασμένο: {1}"
-#: cmd/quickstart.py:339
-msgid ""
-"The file name suffix for source files. Commonly, this is either \".txt\"\n"
-"or \".rst\". Only files with this suffix are considered documents."
+#: transforms/__init__.py:144
+msgid "could not calculate translation progress!"
msgstr ""
-#: cmd/quickstart.py:343
-msgid "Source file suffix"
-msgstr "Επέκταση αρχείου πηγής"
-
-#: cmd/quickstart.py:349
-msgid ""
-"One document is special in that it is considered the top node of the\n"
-"\"contents tree\", that is, it is the root of the hierarchical structure\n"
-"of the documents. Normally, this is \"index\", but if your \"index\"\n"
-"document is a custom template, you can also set this to another filename."
+#: transforms/__init__.py:149
+msgid "no translated elements!"
msgstr ""
-#: cmd/quickstart.py:356
-msgid "Name of your master document (without suffix)"
-msgstr "Όνομα του κυρίους σας εγγράφου (χωρίς επέκταση)"
-
-#: cmd/quickstart.py:367
+#: transforms/__init__.py:258
#, python-format
msgid ""
-"Error: the master file %s has already been found in the selected root path."
-msgstr "Σφάλμα: το κύριο αρχείο %s έχει ήδη βρεθεί στο επιλεγμένο ριζικό κατάλογο."
-
-#: cmd/quickstart.py:373
-msgid "sphinx-quickstart will not overwrite the existing file."
-msgstr "το sphinx-quickstart δεν θα αντικαταστήσει υπάρχοντα αρχεία."
-
-#: cmd/quickstart.py:377
-msgid ""
-"Please enter a new file name, or rename the existing file and press Enter"
-msgstr "Παρακαλείσθε να εισάγετε ένα νέο όνομα αρχείου, ή να μεταονομάσετε το υπάρχον αρχείο και να πιέσετε το Enter"
-
-#: cmd/quickstart.py:385
-msgid "Indicate which of the following Sphinx extensions should be enabled:"
-msgstr "Υποδείξτε ποιά απο τις ακόλουθες επεκτάσεις Sphinx πρέπει να ενεργοποιηθούν:"
+"4 column based index found. It might be a bug of extensions you use: %r"
+msgstr "βρέθηκε ευρετήριο βασιζόμενο σε 4 στήλες. Μπορεί να αποτελεί σφάλμα της επέκτασης που χρησιμοποιείτε: %r"
-#: cmd/quickstart.py:396
-msgid ""
-"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has "
-"been deselected."
-msgstr "Σημείωση: τα imgmath και mathjax δεν είναι δυνατό να ενεργοποιηθούν ταυτόχρονα. Το imgmath έχει αποεπιλεγθεί. "
+#: transforms/__init__.py:299
+#, python-format
+msgid "Footnote [%s] is not referenced."
+msgstr "Δεν υπάρχει αναφορά για την υποσημείωση [%s]."
-#: cmd/quickstart.py:406
-msgid ""
-"A Makefile and a Windows command file can be generated for you so that you\n"
-"only have to run e.g. `make html' instead of invoking sphinx-build\n"
-"directly."
+#: transforms/__init__.py:308
+msgid "Footnote [*] is not referenced."
msgstr ""
-#: cmd/quickstart.py:411
-msgid "Create Makefile? (y/n)"
-msgstr "Δημιουργία Makefile; (y/n)"
+#: transforms/__init__.py:319
+msgid "Footnote [#] is not referenced."
+msgstr "Η υποσημείωση [#] δεν αναφέρεται."
-#: cmd/quickstart.py:415
-msgid "Create Windows command file? (y/n)"
-msgstr "Δημιουργία αρχείου εντολών Windows; (y/n)"
+#: util/inventory.py:147
+#, python-format
+msgid "inventory <%s> contains duplicate definitions of %s"
+msgstr ""
-#: cmd/quickstart.py:467 ext/apidoc/_generate.py:76
+#: util/inventory.py:166
#, python-format
-msgid "Creating file %s."
-msgstr "Δημιουργία αρχείου %s."
+msgid "inventory <%s> contains multiple definitions for %s"
+msgstr ""
-#: cmd/quickstart.py:472 ext/apidoc/_generate.py:73
+#: util/i18n.py:100
#, python-format
-msgid "File %s already exists, skipping."
-msgstr "Το αρχείο %s υπάρχει ήδη, παραλείπεται."
+msgid "reading error: %s, %s"
+msgstr "σφάλμα ανάγνωσης: %s, %s"
-#: cmd/quickstart.py:515
-msgid "Finished: An initial directory structure has been created."
-msgstr "Ολοκλήρωση: μία αρχική δομή καταλόγου δημιουργήθηκε."
+#: util/i18n.py:113
+#, python-format
+msgid "writing error: %s, %s"
+msgstr "καταγραφή λάθους: %s, %s"
-#: cmd/quickstart.py:519
+#: util/i18n.py:146
#, python-format
-msgid ""
-"You should now populate your master file %s and create other documentation\n"
-"source files. "
+msgid "locale_dir %s does not exist"
msgstr ""
-#: cmd/quickstart.py:526
-msgid ""
-"Use the Makefile to build the docs, like so:\n"
-" make builder"
+#: util/i18n.py:244
+#, python-format
+msgid "Invalid Babel locale: %r."
msgstr ""
-#: cmd/quickstart.py:530
+#: util/i18n.py:253
#, python-format
msgid ""
-"Use the sphinx-build command to build the docs, like so:\n"
-" sphinx-build -b builder %s %s"
-msgstr ""
+"Invalid date format. Quote the string by single quote if you want to output "
+"it directly: %s"
+msgstr "Ανέγκυρος τύπος ημερομηνίας. Τοποθετείστε στη στοιχειοσειρά μονά εισαγωγικά εάν θέλετε να το εξάγετε απευθείας: %s"
-#: cmd/quickstart.py:537
+#: util/osutil.py:131
+#, python-format
msgid ""
-"where \"builder\" is one of the supported builders, e.g. html, latex or "
-"linkcheck."
+"Aborted attempted copy from %s to %s (the destination path has existing "
+"data)."
msgstr ""
-#: cmd/quickstart.py:572
-msgid ""
-"\n"
-"Generate required files for a Sphinx project.\n"
-"\n"
-"sphinx-quickstart is an interactive tool that asks some questions about your\n"
-"project and then generates a complete documentation directory and sample\n"
-"Makefile to be used with sphinx-build.\n"
-msgstr "\nΔημιουργία απαιτούμενων αρχείων για ένα έργο Sphinx.\n\nΤο sphinx-quickstart είναι ένα διαδραστικό εργαλείο το οποίο κάνει κάποιες ερωτήσεις για το δικό σας \nέργο και μετά δημιουργεί έναν πλήρη κατάλογο τεκμηρίωσης και δείγμα \nMakefile για να χρησιμοποιηθεί με το sphinx-build.\n"
-
-#: cmd/build.py:73 cmd/quickstart.py:581 ext/apidoc/_cli.py:27
-#: ext/autosummary/generate.py:835
-msgid "For more information, visit ."
-msgstr ""
+#: util/display.py:82
+msgid "skipped"
+msgstr "παράβλεψη"
-#: cmd/quickstart.py:591
-msgid "quiet mode"
-msgstr "ήσυχος τρόπος"
+#: util/display.py:87
+msgid "failed"
+msgstr "αποτυχία"
-#: cmd/quickstart.py:601
-msgid "project root"
+#: util/docutils.py:325
+#, python-format
+msgid "unknown directive name: %s"
msgstr ""
-#: cmd/quickstart.py:604
-msgid "Structure options"
-msgstr "Επιλογές δομής"
-
-#: cmd/quickstart.py:610
-msgid "if specified, separate source and build dirs"
-msgstr "αν ορίζεται, θα ξεχωρίσουν οι κατάλογοι πηγής και μεταγλώττισης"
-
-#: cmd/quickstart.py:616
-msgid "if specified, create build dir under source dir"
+#: util/docutils.py:361
+#, python-format
+msgid "unknown role name: %s"
msgstr ""
-#: cmd/quickstart.py:622
-msgid "replacement for dot in _templates etc."
-msgstr "αντικατάσταση για τελεία σε _templates κλπ."
-
-#: cmd/quickstart.py:625
-msgid "Project basic options"
-msgstr "Βασικές επιλογές έργου"
-
-#: cmd/quickstart.py:627
-msgid "project name"
-msgstr "όνομα έργου"
-
-#: cmd/quickstart.py:630
-msgid "author names"
-msgstr "ονόματα συγγραφέων"
-
-#: cmd/quickstart.py:637
-msgid "version of project"
-msgstr "έκδοση του έργου"
-
-#: cmd/quickstart.py:644
-msgid "release of project"
-msgstr "δημοσίευση του έργου"
-
-#: cmd/quickstart.py:651
-msgid "document language"
-msgstr "γλώσσα εγγράφου"
-
-#: cmd/quickstart.py:654
-msgid "source file suffix"
-msgstr "επέκταση αρχείου πηγής"
-
-#: cmd/quickstart.py:657
-msgid "master document name"
-msgstr "κύριο όνομα εγγράφου"
-
-#: cmd/quickstart.py:660
-msgid "use epub"
-msgstr "χρηση epub"
+#: util/docutils.py:805
+#, python-format
+msgid "unknown node type: %r"
+msgstr "άγνωστος τύπος κόμβου: %r"
-#: cmd/quickstart.py:663
-msgid "Extension options"
-msgstr "Επιλογές επέκτασης"
+#: util/fileutil.py:76
+#, python-format
+msgid ""
+"Aborted attempted copy from rendered template %s to %s (the destination path"
+" has existing data)."
+msgstr ""
-#: cmd/quickstart.py:670
+#: util/fileutil.py:89
#, python-format
-msgid "enable %s extension"
-msgstr "ενεργοποίηση της επέκτασης %s"
+msgid "Writing evaluated template result to %s"
+msgstr ""
-#: cmd/quickstart.py:677
-msgid "enable arbitrary extensions"
-msgstr "ενεργοποίηση αυθαίρετων επεκτάσεων"
+#: util/docfields.py:103
+#, python-format
+msgid ""
+"Problem in %s domain: field is supposed to use role '%s', but that role is "
+"not in the domain."
+msgstr ""
-#: cmd/quickstart.py:680
-msgid "Makefile and Batchfile creation"
-msgstr "Δημιουργία Makefile και Batchfile"
+#: util/rst.py:73
+#, python-format
+msgid "default role %s not found"
+msgstr "ο προεπιλεγμένος ρόλος %s δεν βρέθηκε"
-#: cmd/quickstart.py:686
-msgid "create makefile"
-msgstr "δημιουργία makefile"
+#: util/nodes.py:462
+#, python-format
+msgid ""
+"%r is no longer supported for index entries (from entry %r). Use 'pair: %s' "
+"instead."
+msgstr ""
-#: cmd/quickstart.py:692
-msgid "do not create makefile"
-msgstr "να μη δημιουργηθεί makefile"
+#: util/nodes.py:523
+#, python-format
+msgid "toctree contains ref to nonexisting file %r"
+msgstr "το toctree περιλαμβάνει αναφορά σε άγνωστο αρχείο %r"
-#: cmd/quickstart.py:699
-msgid "create batchfile"
-msgstr "δημιουργία batchfile"
+#: util/nodes.py:739
+#, python-format
+msgid "exception while evaluating only directive expression: %s"
+msgstr "εξαίρεση κατά την αξιολόγηση μόνο της έκφρασης οδηγίας: %s"
-#: cmd/quickstart.py:705
-msgid "do not create batchfile"
-msgstr "να μη δημιουργηθεί batchfile"
+#: templates/latex/longtable.tex.jinja:52
+#: templates/latex/sphinxmessages.sty.jinja:8
+msgid "continued from previous page"
+msgstr "συνεχίζεται από την προηγούμενη σελίδα"
-#: cmd/quickstart.py:714
-msgid "use make-mode for Makefile/make.bat"
-msgstr "χρησιμοποιήστε το make-mode για το Makefile/make.bat"
+#: templates/latex/longtable.tex.jinja:63
+#: templates/latex/sphinxmessages.sty.jinja:9
+msgid "continues on next page"
+msgstr "συνέχεια στην επόμενη σελίδα"
-#: cmd/quickstart.py:717 ext/apidoc/_cli.py:243
-msgid "Project templating"
-msgstr "Προτυποποίηση έργου"
+#: templates/latex/sphinxmessages.sty.jinja:10
+msgid "Non-alphabetical"
+msgstr "μη-αλφαβιτικά"
-#: cmd/quickstart.py:723 ext/apidoc/_cli.py:249
-msgid "template directory for template files"
-msgstr "πρότυπος κατάλογος για πρότυπα αρχεία"
+#: environment/adapters/indexentries.py:267
+#: templates/latex/sphinxmessages.sty.jinja:11
+msgid "Symbols"
+msgstr "Σύμβολα"
-#: cmd/quickstart.py:730
-msgid "define a template variable"
-msgstr "ορίστε μία τιμή προτύπου"
+#: templates/latex/sphinxmessages.sty.jinja:12
+msgid "Numbers"
+msgstr "Αριιθμοί"
-#: cmd/quickstart.py:766
-msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified."
-msgstr "καθορίστηκε το \"quiet\", αλλά δεν καθορίστηκε είτε το \"project\" είτε το \"author\"."
+#: templates/latex/sphinxmessages.sty.jinja:13
+msgid "page"
+msgstr "σελίδα"
-#: cmd/quickstart.py:785
-msgid ""
-"Error: specified path is not a directory, or sphinx files already exist."
-msgstr "Σφάλμα: το καθορισθέν μονοπάτι δεν είναι κατάλογος, ή τα αρχεία sphinx υπάρχουν ήδη."
+#: builders/latex/__init__.py:206 templates/latex/latex.tex.jinja:92
+msgid "Release"
+msgstr "Δημοσίευση"
-#: cmd/quickstart.py:792
-msgid ""
-"sphinx-quickstart only generate into a empty directory. Please specify a new"
-" root path."
-msgstr "Το sphinx-quickstart δημιουργεί μόνο εντός ενός κενού καταλόγου. Παρακαλείσθε να καθορίσετε ένα νέο ριζικό μονοπάτι."
+#: transforms/post_transforms/images.py:79
+#, python-format
+msgid "Could not fetch remote image: %s [%s]"
+msgstr "Δεν ήταν δυνατή η λήψη απομακρυσμένης εικόνας: %s [%s]"
-#: cmd/quickstart.py:809
+#: transforms/post_transforms/images.py:96
#, python-format
-msgid "Invalid template variable: %s"
-msgstr "Ανέγκυρη μεταβλητή προτύπου: %s"
+msgid "Could not fetch remote image: %s [%d]"
+msgstr "Δεν ήταν δυνατή η λήψη απομακρυσμένης εικόνας: %s [%d]"
-#: cmd/build.py:64
-msgid "job number should be a positive number"
-msgstr "ο αριθμός εργασίας θα πρέπει να είναι θετικός αριθμός"
+#: transforms/post_transforms/images.py:143
+#, python-format
+msgid "Unknown image format: %s..."
+msgstr "Άγνωστος τύπος αρχείου: %s..."
-#: cmd/build.py:74
+#: transforms/post_transforms/__init__.py:88
msgid ""
-"\n"
-"Generate documentation from source files.\n"
-"\n"
-"sphinx-build generates documentation from the files in SOURCEDIR and places it\n"
-"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n"
-"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n"
-"including 'conf.py'\n"
-"\n"
-"sphinx-build can create documentation in different formats. A format is\n"
-"selected by specifying the builder name on the command line; it defaults to\n"
-"HTML. Builders can also perform other tasks related to documentation\n"
-"processing.\n"
-"\n"
-"By default, everything that is outdated is built. Output only for selected\n"
-"files can be built by specifying individual filenames.\n"
+"Could not determine the fallback text for the cross-reference. Might be a "
+"bug."
msgstr ""
-#: cmd/build.py:100
-msgid "path to documentation source files"
-msgstr "μονοπάτι για τα αρχεία πηγής τεκμηρίωσης"
-
-#: cmd/build.py:103
-msgid "path to output directory"
-msgstr "μονοπάτι στον κατάλογο εξόδου"
+#: transforms/post_transforms/__init__.py:233
+#, python-format
+msgid "more than one target found for 'any' cross-reference %r: could be %s"
+msgstr "περισσότεροι από ένας στόχοι βρέθηκαν για 'οποιαδήποτε' παραπομπή %r: θα μπορούσε να είναι %s"
-#: cmd/build.py:109
-msgid ""
-"(optional) a list of specific files to rebuild. Ignored if --write-all is "
-"specified"
+#: transforms/post_transforms/__init__.py:291
+#, python-format
+msgid "%s:%s reference target not found: %s"
msgstr ""
-#: cmd/build.py:114
-msgid "general options"
-msgstr "γενικές επιλογές"
-
-#: cmd/build.py:121
-msgid "builder to use (default: 'html')"
+#: transforms/post_transforms/__init__.py:297
+#, python-format
+msgid "%r reference target not found: %s"
msgstr ""
-#: cmd/build.py:131
-msgid ""
-"run in parallel with N processes, when possible. 'auto' uses the number of "
-"CPU cores"
+#: _cli/util/errors.py:190
+msgid "Interrupted!"
msgstr ""
-#: cmd/build.py:140
-msgid "write all files (default: only write new and changed files)"
-msgstr "εγγραφή όλων των αρχείων (προεπιλογή: εγγραφή μόνο νέων και αλλαγμένων αρχείων)"
+#: _cli/util/errors.py:194
+msgid "reStructuredText markup error!"
+msgstr ""
-#: cmd/build.py:147
-msgid "don't use a saved environment, always read all files"
-msgstr "μην χρησιμοποιείτε ένα αποθηκευμένο περιβάλλον, πάντα να διαβάζετε όλα τα αρχεία"
+#: _cli/util/errors.py:200
+msgid "Encoding error!"
+msgstr ""
-#: cmd/build.py:150
-msgid "path options"
+#: _cli/util/errors.py:203
+msgid "Recursion error!"
msgstr ""
-#: cmd/build.py:157
+#: _cli/util/errors.py:207
msgid ""
-"directory for doctree and environment files (default: OUTPUT_DIR/.doctrees)"
+"This can happen with very large or deeply nested source files. You can "
+"carefully increase the default Python recursion limit of 1,000 in conf.py "
+"with e.g.:"
msgstr ""
-#: cmd/build.py:166
-msgid "directory for the configuration file (conf.py) (default: SOURCE_DIR)"
+#: _cli/util/errors.py:227
+msgid "Starting debugger:"
msgstr ""
-#: cmd/build.py:175
-msgid "use no configuration file, only use settings from -D options"
+#: _cli/util/errors.py:235
+msgid "The full traceback has been saved in:"
msgstr ""
-#: cmd/build.py:184
-msgid "override a setting in configuration file"
-msgstr "παράκαμψη ρύθμισης στο αρχείο παραμετροποίησης"
-
-#: cmd/build.py:193
-msgid "pass a value into HTML templates"
-msgstr "μεταφορά τιμής στα πρότυπα HTML"
-
-#: cmd/build.py:202
-msgid "define tag: include \"only\" blocks with TAG"
-msgstr "ορίστε ετικέτα: συμπεριλάβατε \"only\" τμήματα με TAG"
-
-#: cmd/build.py:209
-msgid "nitpicky mode: warn about all missing references"
+#: _cli/util/errors.py:240
+msgid ""
+"To report this error to the developers, please open an issue at "
+". Thanks!"
msgstr ""
-#: cmd/build.py:212
-msgid "console output options"
-msgstr "επιλογές εξόδου κονσόλας"
+#: _cli/util/errors.py:246
+msgid ""
+"Please also report this if it was a user error, so that a better error "
+"message can be provided next time."
+msgstr "Παρακαλείστε να το αναφέρετε αν ήταν ένα σφάλμα χρήσης, ώστε ένα καλύτερο μήνυμα σφάλματος να δοθεί την επόμενη φορά."
-#: cmd/build.py:219
-msgid "increase verbosity (can be repeated)"
-msgstr "αυξήστε τον βερμπαλισμό (μπορεί να επαναληφθεί)"
+#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
+msgid "Collapse sidebar"
+msgstr "Κλείσιμο πλαϊνής μπάρας"
-#: cmd/build.py:226 ext/apidoc/_cli.py:66
-msgid "no output on stdout, just warnings on stderr"
-msgstr "καμία έξοδος στο stdout, μόνο προειδοποιήσεις στο stderr"
+#: themes/basic/layout.html:18
+msgid "Navigation"
+msgstr "Πλοήγηση"
-#: cmd/build.py:233
-msgid "no output at all, not even warnings"
-msgstr "κανένα αποτέλεσμα ούτε προειδοποιήσεις"
+#: themes/basic/layout.html:115
+#, python-format
+msgid "Search within %(docstitle)s"
+msgstr "Αναζήτηση στο %(docstitle)s"
-#: cmd/build.py:241
-msgid "do emit colored output (default: auto-detect)"
-msgstr "να γίνεται εκπομπή χρωματιστής εξόδου (προεπιλογή: auto-detect)"
+#: themes/basic/layout.html:124
+msgid "About these documents"
+msgstr "Σχετικά με αυτά τα κείμενα"
-#: cmd/build.py:249
-msgid "do not emit colored output (default: auto-detect)"
-msgstr "να μην παρουσιάζεται έγχρωμο αποτέλεσμα (προεπιλογή: αυτόματη αναγνώριση)"
+#: themes/agogo/layout.html:34 themes/basic/layout.html:130
+#: themes/basic/search.html:3 themes/basic/search.html:15
+msgid "Search"
+msgstr "Αναζήτηση"
-#: cmd/build.py:252
-msgid "warning control options"
+#: themes/basic/layout.html:133 themes/basic/layout.html:177
+#: themes/basic/layout.html:179
+msgid "Copyright"
+msgstr "Copyright"
+
+#: themes/basic/layout.html:183 themes/basic/layout.html:189
+#, python-format
+msgid "© %(copyright_prefix)s %(copyright)s."
msgstr ""
-#: cmd/build.py:258
-msgid "write warnings (and errors) to given file"
-msgstr "προειδοποιήσεις εγγραφής (και σφάλματα) στο δοθέν αρχείο"
+#: themes/basic/layout.html:201
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "Τελευταία ενημέρωση στις %(last_updated)s."
-#: cmd/build.py:265
-msgid "turn warnings into errors"
-msgstr "μετατροπή προειδοποιήσεων σε σφάλματα"
+#: themes/basic/layout.html:204
+#, python-format
+msgid ""
+"Created using Sphinx "
+"%(sphinx_version)s."
+msgstr ""
-#: cmd/build.py:273
-msgid "show full traceback on exception"
-msgstr "απεικόνιση πλήρους ιστορικού σε περίπτωση εξαίρεσης"
+#: themes/basic/relations.html:4
+msgid "Previous topic"
+msgstr "Προηγούμενο θέμα"
-#: cmd/build.py:276
-msgid "run Pdb on exception"
-msgstr "εκτέλεση Pdb σε περίπτωση εξαίρεσης"
+#: themes/basic/relations.html:6
+msgid "previous chapter"
+msgstr "προηγούμενο κεφάλαιο"
-#: cmd/build.py:282
-msgid "raise an exception on warnings"
-msgstr ""
+#: themes/basic/relations.html:11
+msgid "Next topic"
+msgstr "Επόμενο θέμα"
-#: cmd/build.py:325
-msgid "cannot combine -a option and filenames"
-msgstr "δεν γίνεται συνδιασμός της επιλογής -a και των ονομάτων αρχείων"
+#: themes/basic/relations.html:13
+msgid "next chapter"
+msgstr "επόμενο κεφάλαιο"
-#: cmd/build.py:357
+#: themes/basic/genindex-single.html:26
#, python-format
-msgid "cannot open warning file '%s': %s"
+msgid "Index – %(key)s"
msgstr ""
-#: cmd/build.py:376
-msgid "-D option argument must be in the form name=value"
-msgstr "Το όρισμα -D πρέπει να είναι της μορφής όνομα=τιμέ"
-
-#: cmd/build.py:383
-msgid "-A option argument must be in the form name=value"
-msgstr "Το όρισμα -Α πρέπει να είναι της μορφής όνομα=τιμή"
+#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
+#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
+msgid "Full index on one page"
+msgstr "Πλήρες ευρετήριο σε μία σελίδα"
-#: themes/classic/layout.html:12 themes/classic/static/sidebar.js.jinja:51
-msgid "Collapse sidebar"
-msgstr "Κλείσιμο πλαϊνής μπάρας"
+#: themes/basic/sourcelink.html:4
+msgid "This Page"
+msgstr "Αυτή η σελίδα"
-#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
-#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
-msgid "Table of Contents"
-msgstr "Πίνακας περιεχομένων"
+#: themes/agogo/layout.html:81 themes/basic/sourcelink.html:7
+msgid "Show Source"
+msgstr "Προβολή κώδικα"
-#: themes/agogo/layout.html:34 themes/basic/layout.html:130
-#: themes/basic/search.html:3 themes/basic/search.html:15
-msgid "Search"
-msgstr "Αναζήτηση"
+#: themes/basic/searchbox.html:4
+msgid "Quick search"
+msgstr "Σύντομη αναζήτηση"
#: themes/agogo/layout.html:37 themes/basic/searchbox.html:8
#: themes/basic/searchfield.html:12
msgid "Go"
msgstr "Πάμε"
-#: themes/agogo/layout.html:81 themes/basic/sourcelink.html:7
-msgid "Show Source"
-msgstr "Προβολή κώδικα"
-
-#: themes/haiku/layout.html:16
-msgid "Contents"
-msgstr "Περιεχόμενα"
-
-#: themes/basic/opensearch.xml:4
-#, python-format
-msgid "Search %(docstitle)s"
-msgstr "Αναζήτηση %(docstitle)s"
-
#: themes/basic/defindex.html:4
msgid "Overview"
msgstr "Επισκόπηση"
@@ -2684,7 +2884,7 @@ msgstr "Καθολικό Ευρετήριο Μονάδων"
msgid "quick access to all modules"
msgstr "γρήγορη πρόσβαση σε όλες τις μονάδες"
-#: builders/html/__init__.py:507 themes/basic/defindex.html:23
+#: builders/html/__init__.py:496 themes/basic/defindex.html:23
msgid "General Index"
msgstr "Κεντρικό Ευρετήριοο"
@@ -2692,23 +2892,15 @@ msgstr "Κεντρικό Ευρετήριοο"
msgid "all functions, classes, terms"
msgstr "όλες οι συναρτήσεις, κλάσεις, όροι"
-#: themes/basic/sourcelink.html:4
-msgid "This Page"
-msgstr "Αυτή η σελίδα"
+#: themes/agogo/layout.html:29 themes/basic/globaltoc.html:2
+#: themes/basic/localtoc.html:4 themes/scrolls/layout.html:32
+msgid "Table of Contents"
+msgstr "Πίνακας περιεχομένων"
-#: themes/basic/genindex-single.html:26
+#: themes/basic/opensearch.xml:4
#, python-format
-msgid "Index – %(key)s"
-msgstr ""
-
-#: themes/basic/genindex-single.html:54 themes/basic/genindex-split.html:16
-#: themes/basic/genindex-split.html:30 themes/basic/genindex.html:65
-msgid "Full index on one page"
-msgstr "Πλήρες ευρετήριο σε μία σελίδα"
-
-#: themes/basic/searchbox.html:4
-msgid "Quick search"
-msgstr "Σύντομη αναζήτηση"
+msgid "Search %(docstitle)s"
+msgstr "Αναζήτηση %(docstitle)s"
#: themes/basic/genindex-split.html:8
msgid "Index pages by letter"
@@ -2718,57 +2910,6 @@ msgstr "Σελίδες ευρετηρίου ανά γράμμα"
msgid "can be huge"
msgstr "μπορεί να είναι τεράστιο"
-#: themes/basic/relations.html:4
-msgid "Previous topic"
-msgstr "Προηγούμενο θέμα"
-
-#: themes/basic/relations.html:6
-msgid "previous chapter"
-msgstr "προηγούμενο κεφάλαιο"
-
-#: themes/basic/relations.html:11
-msgid "Next topic"
-msgstr "Επόμενο θέμα"
-
-#: themes/basic/relations.html:13
-msgid "next chapter"
-msgstr "επόμενο κεφάλαιο"
-
-#: themes/basic/layout.html:18
-msgid "Navigation"
-msgstr "Πλοήγηση"
-
-#: themes/basic/layout.html:115
-#, python-format
-msgid "Search within %(docstitle)s"
-msgstr "Αναζήτηση στο %(docstitle)s"
-
-#: themes/basic/layout.html:124
-msgid "About these documents"
-msgstr "Σχετικά με αυτά τα κείμενα"
-
-#: themes/basic/layout.html:133 themes/basic/layout.html:177
-#: themes/basic/layout.html:179
-msgid "Copyright"
-msgstr "Copyright"
-
-#: themes/basic/layout.html:183 themes/basic/layout.html:189
-#, python-format
-msgid "© %(copyright_prefix)s %(copyright)s."
-msgstr ""
-
-#: themes/basic/layout.html:201
-#, python-format
-msgid "Last updated on %(last_updated)s."
-msgstr "Τελευταία ενημέρωση στις %(last_updated)s."
-
-#: themes/basic/layout.html:204
-#, python-format
-msgid ""
-"Created using Sphinx "
-"%(sphinx_version)s."
-msgstr ""
-
#: themes/basic/search.html:20
msgid ""
"Please activate JavaScript to enable the search\n"
@@ -2785,21 +2926,21 @@ msgstr ""
msgid "search"
msgstr "αναζήτηση"
-#: themes/basic/static/sphinx_highlight.js:112
-msgid "Hide Search Matches"
-msgstr "Απόκρυψη Ευρεθέντων Αναζητήσεων"
+#: themes/haiku/layout.html:16
+msgid "Contents"
+msgstr "Περιεχόμενα"
-#: themes/basic/static/searchtools.js:117
+#: themes/basic/static/searchtools.js:132
msgid "Search Results"
msgstr "Αποτελέσματα Αναζήτησης"
-#: themes/basic/static/searchtools.js:119
+#: themes/basic/static/searchtools.js:134
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
msgstr "Η αναζήτησή σας δεν ταυτοποιήθηκε με κανένα κείμενο. Παρακαλώ, επιβεβαιώστε ότι όλες οι λέξεις έχουν τη σωστή ορθογραφία και ότι έχετε επιλέξεις αρκετές κατηγορίες."
-#: themes/basic/static/searchtools.js:123
+#: themes/basic/static/searchtools.js:138
#, python-brace-format
msgid "Search finished, found one page matching the search query."
msgid_plural ""
@@ -2807,22 +2948,21 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: themes/basic/static/searchtools.js:253
+#: themes/basic/static/searchtools.js:276
msgid "Searching"
msgstr "Εκτελείται η αναζήτηση"
-#: themes/basic/static/searchtools.js:270
+#: themes/basic/static/searchtools.js:293
msgid "Preparing search..."
msgstr "Προετοιμασία αναζήτησης..."
-#: themes/basic/static/searchtools.js:474
+#: themes/basic/static/searchtools.js:526
msgid ", in "
msgstr ", στο "
-#: themes/basic/changes/rstsource.html:5
-#, python-format
-msgid "%(filename)s — %(docstitle)s"
-msgstr "%(filename)s — %(docstitle)s"
+#: themes/basic/static/sphinx_highlight.js:112
+msgid "Hide Search Matches"
+msgstr "Απόκρυψη Ευρεθέντων Αναζητήσεων"
#: themes/basic/changes/frameset.html:5
#: themes/basic/changes/versionchanges.html:12
@@ -2830,6 +2970,11 @@ msgstr "%(filename)s — %(docstitle)s"
msgid "Changes in Version %(version)s — %(docstitle)s"
msgstr "Αλλαγές στην Έκδοση %(version)s —'\n%(docstitle)s"
+#: themes/basic/changes/rstsource.html:5
+#, python-format
+msgid "%(filename)s — %(docstitle)s"
+msgstr "%(filename)s — %(docstitle)s"
+
#: themes/basic/changes/versionchanges.html:17
#, python-format
msgid "Automatically generated list of changes in version %(version)s"
@@ -2851,120 +2996,127 @@ msgstr "Άλλες αλλαγές"
msgid "Expand sidebar"
msgstr "Άνοιγμα πλαϊνής μπάρας"
-#: domains/python/_annotations.py:529
+#: domains/python/_annotations.py:522
msgid "Positional-only parameter separator (PEP 570)"
msgstr ""
-#: domains/python/_annotations.py:540
+#: domains/python/_annotations.py:533
msgid "Keyword-only parameters separator (PEP 3102)"
msgstr ""
-#: domains/python/__init__.py:113 domains/python/__init__.py:278
+#: domains/c/__init__.py:354 domains/cpp/__init__.py:485
+#: domains/python/_object.py:190 ext/napoleon/docstring.py:980
+msgid "Parameters"
+msgstr "Παράμετροι"
+
+#: domains/python/_object.py:206
+msgid "Variables"
+msgstr "Μεταβλητές"
+
+#: domains/python/_object.py:214
+msgid "Raises"
+msgstr "Προκαλεί"
+
+#: domains/python/__init__.py:105 domains/python/__init__.py:270
#, python-format
msgid "%s() (in module %s)"
msgstr "%s() (στη μονάδα %s)"
-#: domains/python/__init__.py:180 domains/python/__init__.py:374
-#: domains/python/__init__.py:434 domains/python/__init__.py:474
+#: domains/python/__init__.py:172 domains/python/__init__.py:366
+#: domains/python/__init__.py:426 domains/python/__init__.py:466
#, python-format
msgid "%s (in module %s)"
msgstr "%s (στη μονάδα %s)"
-#: domains/python/__init__.py:182
+#: domains/python/__init__.py:174
#, python-format
msgid "%s (built-in variable)"
msgstr "%s (ενσωματωμένη μεταβλητή)"
-#: domains/python/__init__.py:217
+#: domains/python/__init__.py:209
#, python-format
msgid "%s (built-in class)"
msgstr "%s (ενσωματωμένη κλάση)"
-#: domains/python/__init__.py:218
+#: domains/python/__init__.py:210
#, python-format
msgid "%s (class in %s)"
msgstr "%s (κλάση σε %s)"
-#: domains/python/__init__.py:283
+#: domains/python/__init__.py:275
#, python-format
msgid "%s() (%s class method)"
msgstr "%s() (μέθοδος κλάσης της %s)"
-#: domains/python/__init__.py:285
+#: domains/python/__init__.py:277
#, python-format
msgid "%s() (%s static method)"
msgstr "%s() (στατική μέθοδος της %s)"
-#: domains/python/__init__.py:438
+#: domains/python/__init__.py:430
#, python-format
msgid "%s (%s property)"
msgstr ""
-#: domains/python/__init__.py:478
+#: domains/python/__init__.py:470
#, python-format
msgid "%s (type alias in %s)"
msgstr ""
-#: domains/python/__init__.py:638
+#: domains/python/__init__.py:624
msgid "Python Module Index"
msgstr "Ευρετήριο Μονάδων της Python"
-#: domains/python/__init__.py:639
+#: domains/python/__init__.py:625
msgid "modules"
msgstr "μονάδες"
-#: domains/python/__init__.py:717
+#: domains/python/__init__.py:703
msgid "Deprecated"
msgstr "Αποσύρθηκε"
-#: domains/python/__init__.py:743
+#: domains/python/__init__.py:729
msgid "exception"
msgstr "εξαίρεση"
-#: domains/python/__init__.py:745
+#: domains/python/__init__.py:731
msgid "class method"
msgstr "μέθοδος της κλάσης"
-#: domains/python/__init__.py:746
+#: domains/python/__init__.py:732
msgid "static method"
msgstr "στατική μέθοδος"
-#: domains/python/__init__.py:748
+#: domains/python/__init__.py:734
msgid "property"
msgstr ""
-#: domains/python/__init__.py:749
+#: domains/python/__init__.py:735
msgid "type alias"
msgstr ""
-#: domains/python/__init__.py:818
+#: domains/python/__init__.py:804
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :no-index: for"
" one of them"
msgstr ""
-#: domains/python/__init__.py:978
+#: domains/python/__init__.py:974
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr "περισσότεροι από έναν στόχοι βρέθηκα για την παραπομπή %r: %s"
-#: domains/python/__init__.py:1052
+#: domains/python/__init__.py:1048
msgid " (deprecated)"
msgstr " (αποσύρθηκε)"
-#: domains/c/__init__.py:326 domains/cpp/__init__.py:483
-#: domains/python/_object.py:190 ext/napoleon/docstring.py:974
-msgid "Parameters"
-msgstr "Παράμετροι"
-
-#: domains/python/_object.py:206
-msgid "Variables"
-msgstr "Μεταβλητές"
-
-#: domains/python/_object.py:214
-msgid "Raises"
-msgstr "Προκαλεί"
+#: domains/cpp/__init__.py:394 domains/cpp/_symbol.py:946
+#, python-format
+msgid ""
+"Duplicate C++ declaration, also defined at %s:%s.\n"
+"Declaration is '.. cpp:%s:: %s'."
+msgstr ""
#: domains/cpp/__init__.py:159
msgid "Template Parameters"
@@ -2975,92 +3127,85 @@ msgstr "Παράμετροι Προτύπου"
msgid "%s (C++ %s)"
msgstr "%s (C++ %s)"
-#: domains/cpp/__init__.py:392 domains/cpp/_symbol.py:942
-#, python-format
-msgid ""
-"Duplicate C++ declaration, also defined at %s:%s.\n"
-"Declaration is '.. cpp:%s:: %s'."
-msgstr ""
-
-#: domains/c/__init__.py:333 domains/cpp/__init__.py:496
+#: domains/c/__init__.py:361 domains/cpp/__init__.py:498
msgid "Return values"
msgstr ""
-#: domains/c/__init__.py:754 domains/cpp/__init__.py:940
+#: domains/c/__init__.py:782 domains/cpp/__init__.py:942
msgid "union"
msgstr "ένωση"
-#: domains/c/__init__.py:749 domains/cpp/__init__.py:942
+#: domains/c/__init__.py:777 domains/cpp/__init__.py:944
msgid "member"
msgstr "μέλος"
-#: domains/c/__init__.py:757 domains/cpp/__init__.py:943
+#: domains/c/__init__.py:785 domains/cpp/__init__.py:945
msgid "type"
msgstr "τύπος"
-#: domains/cpp/__init__.py:944
+#: domains/cpp/__init__.py:946
msgid "concept"
msgstr "έννοια"
-#: domains/c/__init__.py:755 domains/cpp/__init__.py:945
+#: domains/c/__init__.py:783 domains/cpp/__init__.py:947
msgid "enum"
msgstr "enum"
-#: domains/c/__init__.py:756 domains/cpp/__init__.py:946
+#: domains/c/__init__.py:784 domains/cpp/__init__.py:948
msgid "enumerator"
msgstr "enumerator"
-#: domains/c/__init__.py:760 domains/cpp/__init__.py:949
+#: domains/c/__init__.py:788 domains/cpp/__init__.py:951
msgid "function parameter"
msgstr ""
-#: domains/cpp/__init__.py:952
+#: domains/cpp/__init__.py:954
msgid "template parameter"
msgstr ""
-#: domains/c/__init__.py:211
-#, python-format
-msgid "%s (C %s)"
-msgstr ""
-
-#: domains/c/__init__.py:277 domains/c/_symbol.py:557
+#: domains/c/__init__.py:279 domains/c/_symbol.py:569
#, python-format
msgid ""
"Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'."
msgstr ""
-#: domains/c/__init__.py:750
+#: domains/c/__init__.py:211
+#, python-format
+msgid "%s (C %s)"
+msgstr ""
+
+#: domains/c/__init__.py:778
msgid "variable"
msgstr "μεταβλητή"
-#: domains/c/__init__.py:752
+#: domains/c/__init__.py:780
msgid "macro"
msgstr "μακροεντολή"
-#: domains/c/__init__.py:753
+#: domains/c/__init__.py:781
msgid "struct"
msgstr ""
-#: domains/std/__init__.py:91 domains/std/__init__.py:111
+#: domains/std/__init__.py:88 domains/std/__init__.py:108
#, python-format
msgid "environment variable; %s"
msgstr "μεταβλητή περιβάλλοντος; %s"
-#: domains/std/__init__.py:119
+#: domains/std/__init__.py:116
#, python-format
msgid "%s; configuration value"
msgstr ""
-#: domains/std/__init__.py:175
+#: domains/std/__init__.py:172
msgid "Type"
msgstr ""
-#: domains/std/__init__.py:185
+#: domains/std/__init__.py:182
msgid "Default"
msgstr ""
-#: domains/std/__init__.py:242
+#: domains/std/__init__.py:239
#, python-format
msgid ""
"Malformed option description %r, should look like \"opt\", \"-opt args\", \""
@@ -3130,1088 +3275,1033 @@ msgstr "το numfig έχει απενεργοποιηθεί. Το :numref: θα
msgid "Failed to create a cross reference. Any number is not assigned: %s"
msgstr ""
-#: domains/std/__init__.py:1138
+#: domains/std/__init__.py:1138
+#, python-format
+msgid "the link has no caption: %s"
+msgstr "ο σύνδεσμος δεν έχει λεζάντα: %s"
+
+#: domains/std/__init__.py:1153
+#, python-format
+msgid "invalid numfig_format: %s (%r)"
+msgstr "ανέγκυρο numfig_format: %s (%r)"
+
+#: domains/std/__init__.py:1157
+#, python-format
+msgid "invalid numfig_format: %s"
+msgstr "ανέγκυρο numfig_format: %s"
+
+#: domains/std/__init__.py:1453
+#, python-format
+msgid "undefined label: %r"
+msgstr ""
+
+#: domains/std/__init__.py:1456
+#, python-format
+msgid "Failed to create a cross reference. A title or caption not found: %r"
+msgstr ""
+
+#: ext/napoleon/docstring.py:178
+#, python-format
+msgid "invalid value set (missing closing brace): %s"
+msgstr ""
+
+#: ext/napoleon/docstring.py:185
+#, python-format
+msgid "invalid value set (missing opening brace): %s"
+msgstr ""
+
+#: ext/napoleon/docstring.py:192
+#, python-format
+msgid "malformed string literal (missing closing quote): %s"
+msgstr ""
+
+#: ext/napoleon/docstring.py:199
+#, python-format
+msgid "malformed string literal (missing opening quote): %s"
+msgstr ""
+
+#: ext/napoleon/docstring.py:902
+msgid "Example"
+msgstr "Παράδειγμα"
+
+#: ext/napoleon/docstring.py:903
+msgid "Examples"
+msgstr "Παραδείγματα"
+
+#: ext/napoleon/__init__.py:356 ext/napoleon/docstring.py:947
+msgid "Keyword Arguments"
+msgstr "Ορίσματα λέξης-κλειδί"
+
+#: ext/napoleon/docstring.py:962
+msgid "Notes"
+msgstr "Σημειώσεις"
+
+#: ext/napoleon/docstring.py:971
+msgid "Other Parameters"
+msgstr "Άλλες παράμετροι"
+
+#: ext/napoleon/docstring.py:1007
+msgid "Receives"
+msgstr ""
+
+#: ext/napoleon/docstring.py:1011
+msgid "References"
+msgstr "Αναφορές"
+
+#: ext/napoleon/docstring.py:1043
+msgid "Warns"
+msgstr "Προειδοποιήσεις"
+
+#: ext/napoleon/docstring.py:1047
+msgid "Yields"
+msgstr "Αποδόσεις"
+
+#: ext/autodoc/_generate.py:151
+#: ext/autodoc/_legacy_class_based/_documenters.py:859
#, python-format
-msgid "the link has no caption: %s"
-msgstr "ο σύνδεσμος δεν έχει λεζάντα: %s"
+msgid "A mocked object is detected: %r"
+msgstr ""
-#: domains/std/__init__.py:1153
+#: ext/autodoc/_generate.py:334 ext/autodoc/_generate.py:348
+#: ext/autodoc/_generate.py:370 ext/autodoc/_generate.py:386
+#: ext/autodoc/_legacy_class_based/_documenters.py:1860
+#: ext/autodoc/_legacy_class_based/_documenters.py:1889
+#: ext/autodoc/_legacy_class_based/_documenters.py:1983
#, python-format
-msgid "invalid numfig_format: %s (%r)"
-msgstr "ανέγκυρο numfig_format: %s (%r)"
+msgid "alias of %s"
+msgstr ""
-#: domains/std/__init__.py:1157
+#: ext/autodoc/_legacy_class_based/_documenters.py:1745
+#: ext/autodoc/_renderer.py:88
#, python-format
-msgid "invalid numfig_format: %s"
-msgstr "ανέγκυρο numfig_format: %s"
+msgid "Bases: %s"
+msgstr "Βάσεις: %s"
-#: domains/std/__init__.py:1453
+#: ext/autodoc/_directive_options.py:226
+#: ext/autodoc/_legacy_class_based/_directive_options.py:47
#, python-format
-msgid "undefined label: %r"
+msgid "invalid value for member-order option: %s"
msgstr ""
-#: domains/std/__init__.py:1456
+#: ext/autodoc/_directive_options.py:233
+#: ext/autodoc/_legacy_class_based/_directive_options.py:55
#, python-format
-msgid "Failed to create a cross reference. A title or caption not found: %r"
+msgid "invalid value for class-doc-from option: %s"
msgstr ""
-#: environment/adapters/toctree.py:324
+#: ext/autodoc/_legacy_class_based/_documenters.py:239
+#: ext/autodoc/_names.py:45
#, python-format
-msgid "circular toctree references detected, ignoring: %s <- %s"
-msgstr "αναγνωρίστηκαν κυκλικές αναφορές toctree, θα αγνοηθούν: %s <- %s"
+msgid "invalid signature for auto%s (%r)"
+msgstr "ανέγκυρη υπογραφή για αυτόματο %s (%r)"
-#: environment/adapters/toctree.py:349
+#: ext/autodoc/_legacy_class_based/_documenters.py:800
+#: ext/autodoc/_names.py:53 ext/autodoc/_names.py:101
#, python-format
msgid ""
-"toctree contains reference to document %r that doesn't have a title: no link"
-" will be generated"
-msgstr "το toctree περιλαμβάνει αναφορά στο έγγραφο %r η οποία δεν έχει τίτλο: δεν θα δημιουργηθεί σύνδεσμος"
+"don't know which module to import for autodocumenting %r (try placing a "
+"\"module\" or \"currentmodule\" directive in the document, or giving an "
+"explicit module name)"
+msgstr "δεν γνωρίζω ποιο δομοστοιχείο να εισάγω για αυτόματη τεκμηρίωση %r (προσπαθήστε να τοποθετήσετε μία οδηγία \"module\" ή \"currentmodule\" στο έγγραφο, ή να δώσετε ένα σαφές όνομα δομοστοιχείου)"
-#: environment/adapters/toctree.py:364
+#: ext/autodoc/_names.py:89
#, python-format
-msgid "toctree contains reference to non-included document %r"
+msgid "signature arguments given for automodule: '%s'"
msgstr ""
-#: environment/adapters/toctree.py:367
+#: ext/autodoc/_names.py:93
#, python-format
-msgid "toctree contains reference to non-existing document %r"
+msgid "return annotation given for automodule: '%s'"
msgstr ""
-#: environment/adapters/indexentries.py:123
-#, python-format
-msgid "see %s"
-msgstr "δείτε %s"
+#: ext/autodoc/_legacy_class_based/_documenters.py:956
+#: ext/autodoc/_names.py:134
+msgid "\"::\" in automodule name doesn't make sense"
+msgstr "\"::\" στο όνομα automodule δεν βγάζει νόημα"
-#: environment/adapters/indexentries.py:133
+#: ext/apidoc/_shared.py:29 ext/autosummary/generate.py:984
#, python-format
-msgid "see also %s"
-msgstr "δείτε επίσης %s"
+msgid "Failed to remove %s: %s"
+msgstr ""
-#: environment/adapters/indexentries.py:141
+#: ext/apidoc/_generate.py:69
#, python-format
-msgid "unknown index entry type %r"
-msgstr "άγνωστος τύπος εγγραφής ευρετηρίου %r"
+msgid "Would create file %s."
+msgstr "Θα δημιουργούσε το αρχείο %s."
-#: environment/adapters/indexentries.py:268
-#: templates/latex/sphinxmessages.sty.jinja:11
-msgid "Symbols"
-msgstr "Σύμβολα"
+#: ext/apidoc/_cli.py:28
+msgid ""
+"\n"
+"Look recursively in for Python modules and packages and create\n"
+"one reST file with automodule directives per package in the .\n"
+"\n"
+"The